Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

randomly freezes for 45 seconds when getDocs after update transaction #8474

Open
mochiya98 opened this issue Sep 3, 2024 · 14 comments
Open

Comments

@mochiya98
Copy link
Contributor

Operating System

macOS Sonoma 14.4

Environment (if applicable)

Chrome 127.0.6533.100

Firebase SDK Version

10.13.1

Firebase SDK Product(s)

Firestore

Project Tooling

No-bundle (using cdn to reproduce)

Detailed Problem Description

  • Update data.
  • GetDocs before updated data is fully reflected onSnapshot.
  • Random freeze.
  • persistentLocalCache and security rules trigger this defect with high probability.

Steps and code to reproduce issue

  1. create new firebase project, and setup firestore.
  2. set security rules as below:
rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    function getSheetRule(sheet_id) {
      return get(/databases/$(database)/documents/sheet_rules/$(sheet_id)).data;
    }
    match /sheets/{sheet_id}/{document=**} {
      allow read: if getSheetRule(sheet_id).read;
      allow create: if getSheetRule(sheet_id).create;
      allow update: if getSheetRule(sheet_id).update;
      allow delete: if getSheetRule(sheet_id).delete;
    }
    match /sheet_rules/{sheet_id} {
      allow read, write: if true;
    }
  }
}
  1. save the following as html, open it, and check the console in the developer Tools:
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <script type="module">
      import { initializeApp } from "https://www.gstatic.com/firebasejs/10.13.1/firebase-app.js";
      import {
        initializeFirestore,
        runTransaction,
        onSnapshot,
        setDoc,
        doc,
        collection,
        getDocs,
        where,
        deleteDoc,
        query,
        persistentLocalCache,
        persistentSingleTabManager,
      } from "https://www.gstatic.com/firebasejs/10.13.1/firebase-firestore.js";

      // TODO: Replace the following with your app's [Firebase project configuration](https://firebase.google.com/docs/web/learn-more?hl=ja#config-object)
      const firebaseConfig = {
        // ..
      };
      const app = initializeApp(firebaseConfig);
      const firestore = initializeFirestore(app, {
        localCache: persistentLocalCache({
          tabManager: persistentSingleTabManager({}),
        }),
      });

      const nanoid = () => {
        const chars =
          "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
        let id = "";
        for (let i = 0; i < 21; i++) {
          id += chars[Math.floor(Math.random() * chars.length)];
        }
        return id;
      };
      let idA = "TjmWMWv7YsteLgkRMcRgA";
      let idB = "rmRSk7ya35bZHssCncdlg";
      let idC = "OEYRzjFB5NqhejLOXixna";
      let firstRecv = true;
      const sheetId = "hxP3Qe7UywllnEPMqmn9F";
      const docSheet = doc(firestore, "sheets", sheetId);
      const docItem = (id) => doc(firestore, "sheets", sheetId, "items", id);
      const colItems = collection(firestore, "sheets", sheetId, "items");
      const flowLog = (msg, ct = false) =>
        console.log(
          `%c${msg}`,
          `color:#000;background-color:${ct ? "#ff0" : "#6ff"};padding:0 5px`
        );
      const resetTestData = async () => {
        /* A -> B -> C -> null */
        await setDoc(docItem(idA), {
          id: idA,
          next_id: idB,
        });
        await setDoc(docItem(idB), {
          id: idB,
          next_id: idC,
        });
        await setDoc(docItem(idC), {
          id: idC,
          next_id: null,
        });
      };
      let tryCount = 0;
      const testRun = async () => {
        flowLog(`(${++tryCount}) trying...`, true);
        await runTransaction(firestore, async (t) => {
          /*
            A -> B -> C -> null
            to
            A -> null
          */
          await t.delete(docItem(idB));
          await t.delete(docItem(idC));
          await t.set(docItem(idA), {
            id: idA,
            next_id: null,
          });
          await t.set(docSheet, {
            last_run: nanoid(),
          });
        });
        flowLog("transaction completed");
        idB = nanoid();
        idC = nanoid();
        let getDocsStarted = Date.now();
        await getDocs(query(colItems, where("next_id", "==", null)));
        const duration = Date.now() - getDocsStarted;
        flowLog(`getDocs took ${duration}ms`);
        return duration;
      };
      const main = async () => {
        flowLog("------ START ------");
        while (true) {
          const duration = await testRun();
          if (duration > 1000 * 5) {
            console.error(`getDocs took too long (${duration}ms). exit.`);
            break;
          }
          const randomWait = new Promise((r) =>
            setTimeout(r, 500 + 100 * Math.floor(Math.random() * 10))
          );
          await randomWait;
          await resetTestData();
        }
      };
      setDoc(doc(firestore, "sheet_rules", sheetId), {
        create: true,
        delete: true,
        read: true,
        update: true,
      }).then(() => {
        onSnapshot(colItems, async (qs) => {
          const r = [];
          qs.forEach((doc) => {
            r.push({ id: doc.id, ...doc.data() });
          });
          console.group(
            `onSnapshot(/sheets/${sheetId}/items) size=${r.length}`
          );
          qs.docChanges().forEach((change) => {
            console.log(
              `%c${change.type}`,
              `color:${
                {
                  added: "#0f0",
                  modified: "#0ff",
                  removed: "#f60",
                }[change.type]
              };background-color:#000;`,
              change.doc.data()
            );
          });
          console.groupEnd();
          if (firstRecv) {
            firstRecv = false;
            for (const { id } of r) {
              await deleteDoc(docItem(id));
            }
            await resetTestData();
            await new Promise((r) => setTimeout(r, 2000));
            //console.clear();
            main();
          }
        });
      });
    </script>
  </body>
</html>
  1. you should be able to confirm that an error has occurred.

image

@mochiya98 mochiya98 added new A new issue that hasn't be categoirzed as question, bug or feature request question labels Sep 3, 2024
@google-oss-bot
Copy link
Contributor

I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.

@jbalidiong jbalidiong added api: firestore needs-attention and removed needs-triage new A new issue that hasn't be categoirzed as question, bug or feature request labels Sep 3, 2024
@MarkDuckworth MarkDuckworth self-assigned this Sep 3, 2024
@MarkDuckworth
Copy link
Contributor

@mochiya98, thank you for the self-contained repro! I ran your code for about 200 iterations, but I did not reproduce the behavior. This included some testing with a throttled network.

Can you help me by providing the following:

  • Can you enable debug logging in the SDK (setLogLevel("debug")) and provide me with debug logs or any errors in the debug log from the test iteration that runs long?
  • What is your DB location? This can be found in Firebase Console > Firestore Database > bottom of page
  • What is the location of the machine running your script when reproducing the issue?

@mochiya98
Copy link
Contributor Author

mochiya98 commented Sep 3, 2024

This bug is very difficult to reproduce under reproducible conditions.
It may be falling back to the memory cache in some condition, please check if there is a warning at the beginning:

@firebase/firestore: Firestore (10.13.1): Error using user provided cache. Falling back to memory cache: FirebaseError: [code=failed-precondition]: Failed to obtain exclusive access to the persistence layer. To allow shared access, multi-tab synchronization has to be enabled in all tabs. If you are using experimentalForceOwningTab:true, make sure that only one tab has persistence enabled at any given time.

  • Can you enable debug logging in the SDK (setLogLevel("debug")) and provide me with debug logs or any errors in the debug log from the test iteration that runs long?
full dump(too long)
logger.ts:117 [2024-09-03T16:16:55.594Z]  @firebase/firestore: Firestore (10.13.1): FirebaseAuthCredentialsProvider Auth not yet detected
logger.ts:117 [2024-09-03T16:16:55.594Z]  @firebase/firestore: Firestore (10.13.1): FirestoreClient Using user provided OnlineComponentProvider
logger.ts:117 [2024-09-03T16:16:55.594Z]  @firebase/firestore: Firestore (10.13.1): FirestoreClient Using user provided OfflineComponentProvider
logger.ts:117 [2024-09-03T16:16:55.594Z]  @firebase/firestore: Firestore (10.13.1): FirestoreClient Initializing OfflineComponentProvider
logger.ts:117 [2024-09-03T16:16:55.595Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:16:55.595Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb Opening database: firestore/[DEFAULT]/***/main
logger.ts:117 [2024-09-03T16:16:55.595Z]  @firebase/firestore: Firestore (10.13.1): FirebaseAppCheckTokenProvider AppCheck not yet detected
logger.ts:117 [2024-09-03T16:16:55.603Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"RLUU0J1QA6Y0nUVpnwno","allowTabSynchronization":false,"leaseTimestampMs":1725380215452}
logger.ts:117 [2024-09-03T16:16:55.605Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client 'RLUU0J1QA6Y0nUVpnwno' is zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.605Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380215605,"networkEnabled":true,"inForeground":false}
logger.ts:117 [2024-09-03T16:16:55.606Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"RLUU0J1QA6Y0nUVpnwno","allowTabSynchronization":false,"leaseTimestampMs":1725380215452}
logger.ts:117 [2024-09-03T16:16:55.606Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client 'RLUU0J1QA6Y0nUVpnwno' is zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.607Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.607Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client 'RLUU0J1QA6Y0nUVpnwno' is zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.607Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client is eligible for a primary lease.
logger.ts:117 [2024-09-03T16:16:55.607Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215607}
logger.ts:117 [2024-09-03T16:16:55.607Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: getHighestListenSequenceNumber
logger.ts:117 [2024-09-03T16:16:55.607Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215607}
logger.ts:117 [2024-09-03T16:16:55.607Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.608Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":4994,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":422382000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.610Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.611Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215607}
logger.ts:117 [2024-09-03T16:16:55.611Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.611Z]  @firebase/firestore: Firestore (10.13.1): LruGarbageCollector Garbage collection scheduled in 60000ms
logger.ts:117 [2024-09-03T16:16:55.611Z]  @firebase/firestore: Firestore (10.13.1): IndexBackfiller Scheduled in 15000ms
logger.ts:117 [2024-09-03T16:16:55.611Z]  @firebase/firestore: Firestore (10.13.1): FirestoreClient Initializing OnlineComponentProvider
logger.ts:117 [2024-09-03T16:16:55.612Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:55.612Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215607}
logger.ts:117 [2024-09-03T16:16:55.612Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheet_rules\u0001\u0001","hxP3Qe7UywllnEPMqmn9F"] null
logger.ts:117 [2024-09-03T16:16:55.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:55.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":242,"localWriteTimeMs":1725380215612,"baseMutations":[],"mutations":[{"update":{"name":"projects/***/databases/(default)/documents/sheet_rules/hxP3Qe7UywllnEPMqmn9F","fields":{"create":{"booleanValue":true},"delete":{"booleanValue":true},"read":{"booleanValue":true},"update":{"booleanValue":true}}}}]}
logger.ts:117 [2024-09-03T16:16:55.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheet_rules\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001",242] {}
logger.ts:117 [2024-09-03T16:16:55.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT collectionParents <auto-key> {"collectionId":"sheet_rules","parent":"\u0001\u0001"}
logger.ts:117 [2024-09-03T16:16:55.625Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheet_rules\u0001\u0001","documentId":"hxP3Qe7UywllnEPMqmn9F","collectionGroup":"sheet_rules","largestBatchId":242,"overlayMutation":{"update":{"name":"projects/***/databases/(default)/documents/sheet_rules/hxP3Qe7UywllnEPMqmn9F","fields":{"create":{"booleanValue":true},"delete":{"booleanValue":true},"read":{"booleanValue":true},"update":{"booleanValue":true}}}}}
logger.ts:117 [2024-09-03T16:16:55.626Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.626Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215607}
logger.ts:117 [2024-09-03T16:16:55.626Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.626Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.626Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215607}
logger.ts:117 [2024-09-03T16:16:55.626Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.627Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection Creating RPC 'Write' stream 0x7b073103: https://firestore.googleapis.com/google.firestore.v1.Firestore/Write/channel {"httpSessionIdParam":"gsessionid","initMessageHeaders":{"X-Goog-Api-Client":"gl-js/ fire/10.13.1","Content-Type":"text/plain","X-Firebase-GMPID":"1:720422489866:web:0d8fe653f86d6c9c02b4f3"},"messageUrlParams":{"database":"projects/***/databases/(default)"},"sendRawJson":true,"supportsCrossDomainXhr":true,"internalChannelParams":{"forwardChannelRequestTimeoutMs":600000},"forceLongPolling":false,"detectBufferingProxy":true,"xmlHttpFactory":{"l":null,"j":false},"encodeInitMessageHeaders":true}
logger.ts:117 [2024-09-03T16:16:55.627Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection Opening RPC 'Write' stream 0x7b073103 transport.
logger.ts:117 [2024-09-03T16:16:55.627Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"database":"projects/***/databases/(default)"}
logger.ts:117 [2024-09-03T16:16:55.644Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 transport opened.
logger.ts:117 [2024-09-03T16:16:55.654Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamId":"0","streamToken":"GRBoQgKB9LW1"}
logger.ts:117 [2024-09-03T16:16:55.654Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 detected no buffering proxy
logger.ts:117 [2024-09-03T16:16:55.654Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"GRBoQgKB9LW1","writes":[{"update":{"name":"projects/***/databases/(default)/documents/sheet_rules/hxP3Qe7UywllnEPMqmn9F","fields":{"create":{"booleanValue":true},"delete":{"booleanValue":true},"read":{"booleanValue":true},"update":{"booleanValue":true}}}}]}
logger.ts:117 [2024-09-03T16:16:55.671Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAEZEGhCAoH0tbU=","writeResults":[{"updateTime":"2024-09-03T01:02:37.605240Z"}],"commitTime":"2024-09-03T16:16:55.561672Z"}
logger.ts:117 [2024-09-03T16:16:55.671Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:55.672Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215607}
logger.ts:117 [2024-09-03T16:16:55.672Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheet_rules\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001",242]
logger.ts:117 [2024-09-03T16:16:55.673Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheet_rules\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001","sequenceNumber":4999}
logger.ts:117 [2024-09-03T16:16:55.673Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.673Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.673Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:55.674Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheet_rules\u0001\u0001","hxP3Qe7UywllnEPMqmn9F"] null
logger.ts:117 [2024-09-03T16:16:55.674Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.674Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.674Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.674Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.675Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Allocate target
logger.ts:117 [2024-09-03T16:16:55.675Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.675Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.676Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Execute query
logger.ts:117 [2024-09-03T16:16:55.676Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.677Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.677Z]  @firebase/firestore: Firestore (10.13.1): QueryEngine Using full collection scan to execute query: Query(target=Target(sheets/hxP3Qe7UywllnEPMqmn9F/items, orderBy: [__name__ (asc)]); limitType=F)
logger.ts:117 [2024-09-03T16:16:55.680Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection Creating RPC 'Listen' stream 0x7b073104: https://firestore.googleapis.com/google.firestore.v1.Firestore/Listen/channel {"httpSessionIdParam":"gsessionid","initMessageHeaders":{"X-Goog-Api-Client":"gl-js/ fire/10.13.1","Content-Type":"text/plain","X-Firebase-GMPID":"1:720422489866:web:0d8fe653f86d6c9c02b4f3"},"messageUrlParams":{"database":"projects/***/databases/(default)"},"sendRawJson":true,"supportsCrossDomainXhr":true,"internalChannelParams":{"forwardChannelRequestTimeoutMs":600000},"forceLongPolling":false,"detectBufferingProxy":true,"xmlHttpFactory":{"l":null,"j":false},"encodeInitMessageHeaders":true}
logger.ts:117 [2024-09-03T16:16:55.680Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection Opening RPC 'Listen' stream 0x7b073104 transport.
logger.ts:117 [2024-09-03T16:16:55.680Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","addTarget":{"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"},"targetId":2,"resumeToken":"CgkIrvvelpaniAM=","expectedCount":2}}
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=3
x.html:136 added {id: 'C4fkxcLsh1MExLwH0bN2L', next_id: null}
x.html:136 added {next_id: 'd2k5EvXsGh9QDoP4xgW1t', id: 'TjmWMWv7YsteLgkRMcRgA'}
x.html:136 added {id: 'd2k5EvXsGh9QDoP4xgW1t', next_id: 'C4fkxcLsh1MExLwH0bN2L'}
logger.ts:117 [2024-09-03T16:16:55.681Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:55.681Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.681Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.682Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","C4fkxcLsh1MExLwH0bN2L"] null
logger.ts:117 [2024-09-03T16:16:55.682Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:55.682Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":243,"localWriteTimeMs":1725380215681,"baseMutations":[],"mutations":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/C4fkxcLsh1MExLwH0bN2L"}]}
logger.ts:117 [2024-09-03T16:16:55.682Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001C4fkxcLsh1MExLwH0bN2L\u0001\u0001",243] {}
logger.ts:117 [2024-09-03T16:16:55.682Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT collectionParents <auto-key> {"collectionId":"items","parent":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001"}
logger.ts:117 [2024-09-03T16:16:55.682Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"C4fkxcLsh1MExLwH0bN2L","collectionGroup":"items","largestBatchId":243,"overlayMutation":{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/C4fkxcLsh1MExLwH0bN2L"}}
logger.ts:117 [2024-09-03T16:16:55.685Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=2
x.html:136 removed {id: 'C4fkxcLsh1MExLwH0bN2L', next_id: null}
logger.ts:117 [2024-09-03T16:16:55.686Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.686Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.686Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001C4fkxcLsh1MExLwH0bN2L\u0001\u0001","sequenceNumber":5004}
logger.ts:117 [2024-09-03T16:16:55.687Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.687Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.687Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.688Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAEZEGhCAoH0tbU=","writes":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/C4fkxcLsh1MExLwH0bN2L"}]}
logger.ts:117 [2024-09-03T16:16:55.688Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.688Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.688Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.690Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 transport opened.
logger.ts:117 [2024-09-03T16:16:55.699Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 detected no buffering proxy
logger.ts:117 [2024-09-03T16:16:55.699Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 detected no buffering proxy
logger.ts:117 [2024-09-03T16:16:55.700Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"ADD","targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.700Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIrvvelpaniAM=","readTime":"2024-09-03T16:16:55.422382Z"}}
logger.ts:117 [2024-09-03T16:16:55.700Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:55.701Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
logger.ts:117 [2024-09-03T16:16:55.701Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.701Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":4994,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":422382000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.701Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:55.701Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215674}
2logger.ts:117 [2024-09-03T16:16:55.701Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":4994,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":422382000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.701Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5008,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":422382000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.702Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.702Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.702Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215702}
logger.ts:117 [2024-09-03T16:16:55.702Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.702Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215702}
logger.ts:117 [2024-09-03T16:16:55.702Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.706Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAIZEGhCAoH0tbU=","writeResults":[{}],"commitTime":"2024-09-03T16:16:55.561672Z"}
logger.ts:117 [2024-09-03T16:16:55.706Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:55.706Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215702}
logger.ts:117 [2024-09-03T16:16:55.707Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001C4fkxcLsh1MExLwH0bN2L\u0001\u0001",243]
logger.ts:117 [2024-09-03T16:16:55.707Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001C4fkxcLsh1MExLwH0bN2L\u0001\u0001","sequenceNumber":5010}
logger.ts:117 [2024-09-03T16:16:55.707Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,455180000],"C4fkxcLsh1MExLwH0bN2L"]
logger.ts:117 [2024-09-03T16:16:55.707Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"C4fkxcLsh1MExLwH0bN2L","readTime":[1725380215,561672000],"hasCommittedMutations":true,"noDocument":{"path":["sheets","hxP3Qe7UywllnEPMqmn9F","items","C4fkxcLsh1MExLwH0bN2L"],"readTime":{"seconds":1725380215,"nanoseconds":561672000}}}
logger.ts:117 [2024-09-03T16:16:55.707Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.707Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19997}
logger.ts:117 [2024-09-03T16:16:55.708Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:55.708Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","C4fkxcLsh1MExLwH0bN2L"] null
logger.ts:117 [2024-09-03T16:16:55.708Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215708}
logger.ts:117 [2024-09-03T16:16:55.708Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215708}
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215708}
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215708}
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":244,"localWriteTimeMs":1725380215709,"baseMutations":[],"mutations":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA"}]}
logger.ts:117 [2024-09-03T16:16:55.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001",244] {}
logger.ts:117 [2024-09-03T16:16:55.710Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"TjmWMWv7YsteLgkRMcRgA","collectionGroup":"items","largestBatchId":244,"overlayMutation":{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA"}}
logger.ts:117 [2024-09-03T16:16:55.710Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=1
x.html:136 removed {next_id: 'd2k5EvXsGh9QDoP4xgW1t', id: 'TjmWMWv7YsteLgkRMcRgA'}
logger.ts:117 [2024-09-03T16:16:55.710Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215708}
logger.ts:117 [2024-09-03T16:16:55.710Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.710Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5014}
logger.ts:117 [2024-09-03T16:16:55.711Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.711Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215708}
logger.ts:117 [2024-09-03T16:16:55.711Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.711Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAIZEGhCAoH0tbU=","writes":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA"}]}
logger.ts:117 [2024-09-03T16:16:55.711Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.711Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215708}
logger.ts:117 [2024-09-03T16:16:55.711Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.740Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAMZEGhCAoH0tbU=","writeResults":[{}],"commitTime":"2024-09-03T16:16:55.745079Z"}
logger.ts:117 [2024-09-03T16:16:55.740Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:55.741Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215708}
logger.ts:117 [2024-09-03T16:16:55.741Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001",244]
logger.ts:117 [2024-09-03T16:16:55.741Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5017}
logger.ts:117 [2024-09-03T16:16:55.742Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,379970000],"TjmWMWv7YsteLgkRMcRgA"]
logger.ts:117 [2024-09-03T16:16:55.742Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"TjmWMWv7YsteLgkRMcRgA","readTime":[1725380215,745079000],"hasCommittedMutations":true,"noDocument":{"path":["sheets","hxP3Qe7UywllnEPMqmn9F","items","TjmWMWv7YsteLgkRMcRgA"],"readTime":{"seconds":1725380215,"nanoseconds":745079000}}}
logger.ts:117 [2024-09-03T16:16:55.742Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19997}
logger.ts:117 [2024-09-03T16:16:55.742Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19800}
logger.ts:117 [2024-09-03T16:16:55.742Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:55.743Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:55.743Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215743}
logger.ts:117 [2024-09-03T16:16:55.743Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.743Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215743}
logger.ts:117 [2024-09-03T16:16:55.743Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.743Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.743Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215743}
logger.ts:117 [2024-09-03T16:16:55.743Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215743}
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","d2k5EvXsGh9QDoP4xgW1t"] null
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":245,"localWriteTimeMs":1725380215744,"baseMutations":[],"mutations":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/d2k5EvXsGh9QDoP4xgW1t"}]}
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001d2k5EvXsGh9QDoP4xgW1t\u0001\u0001",245] {}
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"d2k5EvXsGh9QDoP4xgW1t","collectionGroup":"items","largestBatchId":245,"overlayMutation":{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/d2k5EvXsGh9QDoP4xgW1t"}}
logger.ts:117 [2024-09-03T16:16:55.744Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=0
x.html:136 removed {id: 'd2k5EvXsGh9QDoP4xgW1t', next_id: 'C4fkxcLsh1MExLwH0bN2L'}
logger.ts:117 [2024-09-03T16:16:55.745Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215743}
logger.ts:117 [2024-09-03T16:16:55.745Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.745Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001d2k5EvXsGh9QDoP4xgW1t\u0001\u0001","sequenceNumber":5021}
logger.ts:117 [2024-09-03T16:16:55.745Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.745Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215743}
logger.ts:117 [2024-09-03T16:16:55.745Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.745Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAMZEGhCAoH0tbU=","writes":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/d2k5EvXsGh9QDoP4xgW1t"}]}
logger.ts:117 [2024-09-03T16:16:55.745Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.746Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215743}
logger.ts:117 [2024-09-03T16:16:55.746Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.769Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAQZEGhCAoH0tbU=","writeResults":[{}],"commitTime":"2024-09-03T16:16:55.747439Z"}
logger.ts:117 [2024-09-03T16:16:55.769Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:55.769Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215743}
logger.ts:117 [2024-09-03T16:16:55.769Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001d2k5EvXsGh9QDoP4xgW1t\u0001\u0001",245]
logger.ts:117 [2024-09-03T16:16:55.769Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001d2k5EvXsGh9QDoP4xgW1t\u0001\u0001","sequenceNumber":5024}
logger.ts:117 [2024-09-03T16:16:55.770Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,422382000],"d2k5EvXsGh9QDoP4xgW1t"]
logger.ts:117 [2024-09-03T16:16:55.770Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"d2k5EvXsGh9QDoP4xgW1t","readTime":[1725380215,747439000],"hasCommittedMutations":true,"noDocument":{"path":["sheets","hxP3Qe7UywllnEPMqmn9F","items","d2k5EvXsGh9QDoP4xgW1t"],"readTime":{"seconds":1725380215,"nanoseconds":747439000}}}
logger.ts:117 [2024-09-03T16:16:55.770Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19800}
logger.ts:117 [2024-09-03T16:16:55.770Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19603}
logger.ts:117 [2024-09-03T16:16:55.770Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:55.771Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","d2k5EvXsGh9QDoP4xgW1t"] null
logger.ts:117 [2024-09-03T16:16:55.771Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215771}
logger.ts:117 [2024-09-03T16:16:55.771Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.771Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215771}
logger.ts:117 [2024-09-03T16:16:55.771Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.771Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.771Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215771}
logger.ts:117 [2024-09-03T16:16:55.771Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.772Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:55.772Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215771}
logger.ts:117 [2024-09-03T16:16:55.772Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.772Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:55.772Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:55.772Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":246,"localWriteTimeMs":1725380215772,"baseMutations":[],"mutations":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"rmRSk7ya35bZHssCncdlg"}}}}]}
logger.ts:117 [2024-09-03T16:16:55.772Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001",246] {}
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"TjmWMWv7YsteLgkRMcRgA","collectionGroup":"items","largestBatchId":246,"overlayMutation":{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"rmRSk7ya35bZHssCncdlg"}}}}}
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=1
x.html:136 added {id: 'TjmWMWv7YsteLgkRMcRgA', next_id: 'rmRSk7ya35bZHssCncdlg'}
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215771}
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5028}
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215771}
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.773Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAQZEGhCAoH0tbU=","writes":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"rmRSk7ya35bZHssCncdlg"}}}}]}
logger.ts:117 [2024-09-03T16:16:55.774Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.774Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215771}
logger.ts:117 [2024-09-03T16:16:55.774Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.801Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAUZEGhCAoH0tbU=","writeResults":[{"updateTime":"2024-09-03T16:16:55.805841Z"}],"commitTime":"2024-09-03T16:16:55.805841Z"}
logger.ts:117 [2024-09-03T16:16:55.801Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:55.801Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215771}
logger.ts:117 [2024-09-03T16:16:55.801Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001",246]
logger.ts:117 [2024-09-03T16:16:55.802Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5031}
logger.ts:117 [2024-09-03T16:16:55.802Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,745079000],"TjmWMWv7YsteLgkRMcRgA"]
logger.ts:117 [2024-09-03T16:16:55.802Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"TjmWMWv7YsteLgkRMcRgA","readTime":[1725380215,805841000],"hasCommittedMutations":true,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"rmRSk7ya35bZHssCncdlg"}},"updateTime":"2024-09-03T16:16:55.805841000Z","createTime":"2024-09-03T16:16:55.805841000Z"}}
logger.ts:117 [2024-09-03T16:16:55.802Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19603}
logger.ts:117 [2024-09-03T16:16:55.802Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19800}
logger.ts:117 [2024-09-03T16:16:55.803Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:55.803Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:55.803Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215803}
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215803}
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215803}
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215803}
logger.ts:117 [2024-09-03T16:16:55.804Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","rmRSk7ya35bZHssCncdlg"] null
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":247,"localWriteTimeMs":1725380215804,"baseMutations":[],"mutations":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","fields":{"id":{"stringValue":"rmRSk7ya35bZHssCncdlg"},"next_id":{"stringValue":"OEYRzjFB5NqhejLOXixna"}}}}]}
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001",247] {}
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"rmRSk7ya35bZHssCncdlg","collectionGroup":"items","largestBatchId":247,"overlayMutation":{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","fields":{"id":{"stringValue":"rmRSk7ya35bZHssCncdlg"},"next_id":{"stringValue":"OEYRzjFB5NqhejLOXixna"}}}}}
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=2
x.html:136 added {id: 'rmRSk7ya35bZHssCncdlg', next_id: 'OEYRzjFB5NqhejLOXixna'}
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215803}
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001","sequenceNumber":5035}
logger.ts:117 [2024-09-03T16:16:55.806Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.806Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215803}
logger.ts:117 [2024-09-03T16:16:55.806Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.806Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAUZEGhCAoH0tbU=","writes":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","fields":{"id":{"stringValue":"rmRSk7ya35bZHssCncdlg"},"next_id":{"stringValue":"OEYRzjFB5NqhejLOXixna"}}}}]}
logger.ts:117 [2024-09-03T16:16:55.806Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.806Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215803}
logger.ts:117 [2024-09-03T16:16:55.806Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.833Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAYZEGhCAoH0tbU=","writeResults":[{"updateTime":"2024-09-03T16:16:55.838398Z"}],"commitTime":"2024-09-03T16:16:55.838398Z"}
logger.ts:117 [2024-09-03T16:16:55.833Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:55.834Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215803}
logger.ts:117 [2024-09-03T16:16:55.834Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001",247]
logger.ts:117 [2024-09-03T16:16:55.834Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001","sequenceNumber":5038}
logger.ts:117 [2024-09-03T16:16:55.834Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380204,428579000],"rmRSk7ya35bZHssCncdlg"]
logger.ts:117 [2024-09-03T16:16:55.834Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"rmRSk7ya35bZHssCncdlg","readTime":[1725380215,838398000],"hasCommittedMutations":true,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","fields":{"id":{"stringValue":"rmRSk7ya35bZHssCncdlg"},"next_id":{"stringValue":"OEYRzjFB5NqhejLOXixna"}},"updateTime":"2024-09-03T16:16:55.838398000Z","createTime":"2024-09-03T16:16:55.838398000Z"}}
logger.ts:117 [2024-09-03T16:16:55.835Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19800}
logger.ts:117 [2024-09-03T16:16:55.835Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19997}
logger.ts:117 [2024-09-03T16:16:55.835Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:55.835Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","rmRSk7ya35bZHssCncdlg"] null
logger.ts:117 [2024-09-03T16:16:55.835Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","OEYRzjFB5NqhejLOXixna"] null
logger.ts:117 [2024-09-03T16:16:55.836Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:55.837Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":248,"localWriteTimeMs":1725380215836,"baseMutations":[],"mutations":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","fields":{"id":{"stringValue":"OEYRzjFB5NqhejLOXixna"},"next_id":{"nullValue":"NULL_VALUE"}}}}]}
logger.ts:117 [2024-09-03T16:16:55.837Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001",248] {}
logger.ts:117 [2024-09-03T16:16:55.837Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"OEYRzjFB5NqhejLOXixna","collectionGroup":"items","largestBatchId":248,"overlayMutation":{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","fields":{"id":{"stringValue":"OEYRzjFB5NqhejLOXixna"},"next_id":{"nullValue":"NULL_VALUE"}}}}}
logger.ts:117 [2024-09-03T16:16:55.837Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=3
x.html:136 added {id: 'OEYRzjFB5NqhejLOXixna', next_id: null}
logger.ts:117 [2024-09-03T16:16:55.837Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.837Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.837Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001","sequenceNumber":5042}
logger.ts:117 [2024-09-03T16:16:55.837Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.838Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.838Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.838Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAYZEGhCAoH0tbU=","writes":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","fields":{"id":{"stringValue":"OEYRzjFB5NqhejLOXixna"},"next_id":{"nullValue":"NULL_VALUE"}}}}]}
logger.ts:117 [2024-09-03T16:16:55.838Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.838Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.838Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.856Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"filter":{"targetId":2,"unchangedNames":{"bits":{"bitmap":"AA==","padding":6}}}}
logger.ts:117 [2024-09-03T16:16:55.856Z]  @firebase/firestore: Firestore (10.13.1): BloomFilter error:  {"name":"BloomFilterError"}
defaultLogHandler @ logger.ts:117
warn @ logger.ts:209
__PRIVATE_logWarn @ log.ts:76
Ze @ watch_change.ts:514
He @ watch_change.ts:451
__PRIVATE_onWatchStreamChange @ remote_store.ts:490
onNext @ persistent_stream.ts:684
(anonymous) @ persistent_stream.ts:554
(anonymous) @ persistent_stream.ts:599
(anonymous) @ async_queue_impl.ts:137
(anonymous) @ async_queue_impl.ts:329
Promise.then
Au @ async_queue_impl.ts:188
enqueue @ async_queue_impl.ts:135
enqueueAndForget @ async_queue_impl.ts:96
(anonymous) @ persistent_stream.ts:597
(anonymous) @ persistent_stream.ts:541
bo @ webchannel_connection.ts:57
(anonymous) @ webchannel_connection.ts:399
(anonymous) @ webchannel_connection.ts:299
ab @ webchannel_blob_es2018.js:25
F @ webchannel_blob_es2018.js:23
Z.ta @ webchannel_blob_es2018.js:85
Rb @ webchannel_blob_es2018.js:30
M.Y @ webchannel_blob_es2018.js:33
M.ca @ webchannel_blob_es2018.js:31
ab @ webchannel_blob_es2018.js:25
F @ webchannel_blob_es2018.js:23
Wc @ webchannel_blob_es2018.js:62
e.bb @ webchannel_blob_es2018.js:63
e.Ea @ webchannel_blob_es2018.js:63
Lc @ webchannel_blob_es2018.js:57
e.Pa @ webchannel_blob_es2018.js:56
Promise.then
Nc @ webchannel_blob_es2018.js:56
e.Pa @ webchannel_blob_es2018.js:56
Promise.then
Nc @ webchannel_blob_es2018.js:56
e.Pa @ webchannel_blob_es2018.js:56
Promise.then
Nc @ webchannel_blob_es2018.js:56
e.Sa @ webchannel_blob_es2018.js:55
Promise.then
e.send @ webchannel_blob_es2018.js:53
e.ea @ webchannel_blob_es2018.js:60
Jb @ webchannel_blob_es2018.js:26
fd @ webchannel_blob_es2018.js:76
e.Fa @ webchannel_blob_es2018.js:75
Da @ webchannel_blob_es2018.js:14
Promise.then
g @ webchannel_blob_es2018.js:14
ec @ webchannel_blob_es2018.js:75
Rb @ webchannel_blob_es2018.js:39
M.Y @ webchannel_blob_es2018.js:33
M.ca @ webchannel_blob_es2018.js:31
ab @ webchannel_blob_es2018.js:25
F @ webchannel_blob_es2018.js:23
Wc @ webchannel_blob_es2018.js:62
e.bb @ webchannel_blob_es2018.js:63
e.Ea @ webchannel_blob_es2018.js:63
Lc @ webchannel_blob_es2018.js:57
e.Pa @ webchannel_blob_es2018.js:56
Promise.then
Nc @ webchannel_blob_es2018.js:56
e.Sa @ webchannel_blob_es2018.js:55
Promise.then
e.send @ webchannel_blob_es2018.js:53
e.ea @ webchannel_blob_es2018.js:60
Jb @ webchannel_blob_es2018.js:30
Hb @ webchannel_blob_es2018.js:29
e.Ga @ webchannel_blob_es2018.js:72
Da @ webchannel_blob_es2018.js:14
Promise.then
g @ webchannel_blob_es2018.js:14
fc @ webchannel_blob_es2018.js:73
e.connect @ webchannel_blob_es2018.js:71
Y.m @ webchannel_blob_es2018.js:82
Io @ webchannel_connection.ts:266
send @ stream_bridge.ts:94
a_ @ persistent_stream.ts:330
A_ @ persistent_stream.ts:701
__PRIVATE_sendWatchRequest @ remote_store.ts:357
(anonymous) @ remote_store.ts:421
__PRIVATE_onWatchStreamOpen @ remote_store.ts:417
(anonymous) @ persistent_stream.ts:533
(anonymous) @ persistent_stream.ts:599
(anonymous) @ async_queue_impl.ts:137
(anonymous) @ async_queue_impl.ts:329
Promise.then
Au @ async_queue_impl.ts:188
enqueue @ async_queue_impl.ts:135
enqueueAndForget @ async_queue_impl.ts:96
(anonymous) @ persistent_stream.ts:597
(anonymous) @ persistent_stream.ts:518
wo @ webchannel_connection.ts:51
(anonymous) @ dom.ts:22
setTimeout
Bo @ dom.ts:19
T_ @ persistent_stream.ts:667
P_ @ persistent_stream.ts:505
(anonymous) @ persistent_stream.ts:482
Promise.then
auth @ persistent_stream.ts:480
start @ persistent_stream.ts:274
__PRIVATE_startWatchStream @ remote_store.ts:389
__PRIVATE_remoteStoreListen @ remote_store.ts:288
__PRIVATE_allocateTargetAndMaybeListen @ sync_engine_impl.ts:375
await in __PRIVATE_allocateTargetAndMaybeListen
__PRIVATE_syncEngineListen @ sync_engine_impl.ts:316
__PRIVATE_eventManagerListen @ event_manager.ts:176
(anonymous) @ firestore_client.ts:462
await in (anonymous)
(anonymous) @ async_queue_impl.ts:137
(anonymous) @ async_queue_impl.ts:329
Promise.then
Au @ async_queue_impl.ts:188
enqueue @ async_queue_impl.ts:135
enqueueAndForget @ async_queue_impl.ts:96
__PRIVATE_firestoreClientListen @ firestore_client.ts:463
onSnapshot @ reference_impl.ts:810
(anonymous) @ x.html:127
Promise.then
(anonymous) @ x.html:126
Show 49 more frames
Show lessUnderstand this warning
logger.ts:117 [2024-09-03T16:16:55.856Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"CURRENT","targetIds":[2],"resumeToken":"CgkItpf1lpaniAM=","readTime":"2024-09-03T16:16:55.786422Z"}}
logger.ts:117 [2024-09-03T16:16:55.856Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkItpf1lpaniAM=","readTime":"2024-09-03T16:16:55.786422Z"}}
logger.ts:117 [2024-09-03T16:16:55.856Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:55.857Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.857Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.857Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5008,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":422382000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.857Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","removeTarget":2}
logger.ts:117 [2024-09-03T16:16:55.857Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","addTarget":{"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"},"targetId":2},"labels":{"goog-listen-tags":"existence-filter-mismatch"}}
logger.ts:117 [2024-09-03T16:16:55.857Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:55.858Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215835}
logger.ts:117 [2024-09-03T16:16:55.858Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE targetDocuments [2,"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001"]
logger.ts:117 [2024-09-03T16:16:55.858Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5046}
logger.ts:117 [2024-09-03T16:16:55.858Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE targetDocuments [2,"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001d2k5EvXsGh9QDoP4xgW1t\u0001\u0001"]
logger.ts:117 [2024-09-03T16:16:55.858Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001d2k5EvXsGh9QDoP4xgW1t\u0001\u0001","sequenceNumber":5046}
logger.ts:117 [2024-09-03T16:16:55.858Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":2,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:|ob:__name__asc","readTime":{"seconds":0,"nanoseconds":0},"resumeToken":"","lastListenSequenceNumber":5046,"lastLimboFreeSnapshotVersion":{"seconds":0,"nanoseconds":0},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
2logger.ts:117 [2024-09-03T16:16:55.858Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5008,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":422382000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.858Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5046,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":786422000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.859Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19997}
logger.ts:117 [2024-09-03T16:16:55.859Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19997}
logger.ts:117 [2024-09-03T16:16:55.859Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215859}
logger.ts:117 [2024-09-03T16:16:55.859Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.859Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215859}
logger.ts:117 [2024-09-03T16:16:55.859Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.861Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAcZEGhCAoH0tbU=","writeResults":[{"updateTime":"2024-09-03T16:16:55.866631Z"}],"commitTime":"2024-09-03T16:16:55.866631Z"}
logger.ts:117 [2024-09-03T16:16:55.862Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:55.862Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215859}
logger.ts:117 [2024-09-03T16:16:55.862Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001",248]
logger.ts:117 [2024-09-03T16:16:55.862Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001","sequenceNumber":5048}
logger.ts:117 [2024-09-03T16:16:55.862Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380204,428579000],"OEYRzjFB5NqhejLOXixna"]
logger.ts:117 [2024-09-03T16:16:55.862Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"OEYRzjFB5NqhejLOXixna","readTime":[1725380215,866631000],"hasCommittedMutations":true,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","fields":{"id":{"stringValue":"OEYRzjFB5NqhejLOXixna"},"next_id":{"nullValue":"NULL_VALUE"}},"updateTime":"2024-09-03T16:16:55.866631000Z","createTime":"2024-09-03T16:16:55.866631000Z"}}
logger.ts:117 [2024-09-03T16:16:55.863Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19997}
logger.ts:117 [2024-09-03T16:16:55.863Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.863Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:55.863Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","OEYRzjFB5NqhejLOXixna"] null
logger.ts:117 [2024-09-03T16:16:55.863Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215863}
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"next_id":{"stringValue":"rmRSk7ya35bZHssCncdlg"},"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"}},"createTime":"2024-09-03T16:16:55.805841Z","updateTime":"2024-09-03T16:16:55.805841Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIka/2lpaniAM=","readTime":"2024-09-03T16:16:55.805841Z"}}
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215863}
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215863}
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): WatchChangeAggregator Detected inactive target 2
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): WatchChangeAggregator Detected inactive target 2
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215863}
logger.ts:117 [2024-09-03T16:16:55.864Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5046,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":786422000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215863}
2logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5046,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":786422000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5052,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":805841000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","fields":{"id":{"stringValue":"rmRSk7ya35bZHssCncdlg"},"next_id":{"stringValue":"OEYRzjFB5NqhejLOXixna"}},"createTime":"2024-09-03T16:16:55.838398Z","updateTime":"2024-09-03T16:16:55.838398Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIvq34lpaniAM=","readTime":"2024-09-03T16:16:55.838398Z"}}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","fields":{"id":{"stringValue":"OEYRzjFB5NqhejLOXixna"},"next_id":{"nullValue":null}},"createTime":"2024-09-03T16:16:55.866631Z","updateTime":"2024-09-03T16:16:55.866631Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIh4r6lpaniAM=","readTime":"2024-09-03T16:16:55.866631Z"}}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.865Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215865}
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"REMOVE","targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"ADD","targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215865}
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): WatchChangeAggregator Detected inactive target 2
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): WatchChangeAggregator Detected inactive target 2
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215865}
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5052,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":805841000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.866Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215865}
2logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5052,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":805841000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5055,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":838398000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215867}
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215867}
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): WatchChangeAggregator Detected inactive target 2
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): WatchChangeAggregator Detected inactive target 2
logger.ts:117 [2024-09-03T16:16:55.867Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215867}
logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5055,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":838398000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215867}
2logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5055,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":838398000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5058,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":866631000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.868Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.869Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215869}
logger.ts:117 [2024-09-03T16:16:55.869Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.869Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215869}
logger.ts:117 [2024-09-03T16:16:55.869Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.888Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","fields":{"next_id":{"nullValue":null},"id":{"stringValue":"OEYRzjFB5NqhejLOXixna"}},"createTime":"2024-09-03T16:16:55.866631Z","updateTime":"2024-09-03T16:16:55.866631Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.888Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"rmRSk7ya35bZHssCncdlg"}},"createTime":"2024-09-03T16:16:55.805841Z","updateTime":"2024-09-03T16:16:55.805841Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.888Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","fields":{"next_id":{"stringValue":"OEYRzjFB5NqhejLOXixna"},"id":{"stringValue":"rmRSk7ya35bZHssCncdlg"}},"createTime":"2024-09-03T16:16:55.838398Z","updateTime":"2024-09-03T16:16:55.838398Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:55.888Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"CURRENT","targetIds":[2],"resumeToken":"CgkIh/X6lpaniAM=","readTime":"2024-09-03T16:16:55.880327Z"}}
logger.ts:117 [2024-09-03T16:16:55.888Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIh/X6lpaniAM=","readTime":"2024-09-03T16:16:55.880327Z"}}
logger.ts:117 [2024-09-03T16:16:55.888Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:55.889Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215869}
logger.ts:117 [2024-09-03T16:16:55.889Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:55.889Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5058,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":866631000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.889Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:55.889Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215869}
logger.ts:117 [2024-09-03T16:16:55.889Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":2,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001"}
logger.ts:117 [2024-09-03T16:16:55.889Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001","sequenceNumber":5061}
logger.ts:117 [2024-09-03T16:16:55.889Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":2,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001"}
logger.ts:117 [2024-09-03T16:16:55.890Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5061}
logger.ts:117 [2024-09-03T16:16:55.890Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":2,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001"}
logger.ts:117 [2024-09-03T16:16:55.890Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001","sequenceNumber":5061}
logger.ts:117 [2024-09-03T16:16:55.890Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":2,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:|ob:__name__asc","readTime":{"seconds":1725380215,"nanoseconds":880327000},"resumeToken":"CgkIh/X6lpaniAM=","lastListenSequenceNumber":5061,"lastLimboFreeSnapshotVersion":{"seconds":0,"nanoseconds":0},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
2logger.ts:117 [2024-09-03T16:16:55.890Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5058,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":866631000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.890Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5061,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":880327000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:55.891Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,866631000],"OEYRzjFB5NqhejLOXixna"]
logger.ts:117 [2024-09-03T16:16:55.891Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"OEYRzjFB5NqhejLOXixna","readTime":[1725380215,880327000],"hasCommittedMutations":false,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","fields":{"next_id":{"nullValue":null},"id":{"stringValue":"OEYRzjFB5NqhejLOXixna"}},"updateTime":"2024-09-03T16:16:55.866631000Z","createTime":"2024-09-03T16:16:55.866631000Z"}}
logger.ts:117 [2024-09-03T16:16:55.891Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,805841000],"TjmWMWv7YsteLgkRMcRgA"]
logger.ts:117 [2024-09-03T16:16:55.891Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"TjmWMWv7YsteLgkRMcRgA","readTime":[1725380215,880327000],"hasCommittedMutations":false,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"rmRSk7ya35bZHssCncdlg"}},"updateTime":"2024-09-03T16:16:55.805841000Z","createTime":"2024-09-03T16:16:55.805841000Z"}}
logger.ts:117 [2024-09-03T16:16:55.891Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,838398000],"rmRSk7ya35bZHssCncdlg"]
logger.ts:117 [2024-09-03T16:16:55.891Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"rmRSk7ya35bZHssCncdlg","readTime":[1725380215,880327000],"hasCommittedMutations":false,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","fields":{"next_id":{"stringValue":"OEYRzjFB5NqhejLOXixna"},"id":{"stringValue":"rmRSk7ya35bZHssCncdlg"}},"updateTime":"2024-09-03T16:16:55.838398000Z","createTime":"2024-09-03T16:16:55.838398000Z"}}
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20181}
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20173}
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","OEYRzjFB5NqhejLOXixna"] null
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","rmRSk7ya35bZHssCncdlg"] null
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215892}
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215892}
logger.ts:117 [2024-09-03T16:16:55.892Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
x.html:59 ------ START ------
x.html:59 (1) trying...
logger.ts:117 [2024-09-03T16:16:57.866Z]  @firebase/firestore: Firestore (10.13.1): RestConnection Sending RPC 'Commit' 0x7b073105: https://firestore.googleapis.com/v1/projects/***/databases/(default)/documents:commit {"writes":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg"},{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna"},{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":"NULL_VALUE"}}}},{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F","fields":{"last_run":{"stringValue":"BgXjF7fvGQ3wwbtsLgsTd"}}}}]}
logger.ts:117 [2024-09-03T16:16:57.866Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Commit' 0x7b073106 sending request: {"writes":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg"},{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna"},{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":"NULL_VALUE"}}}},{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F","fields":{"last_run":{"stringValue":"BgXjF7fvGQ3wwbtsLgsTd"}}}}]}
logger.ts:117 [2024-09-03T16:16:57.982Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection XHR for RPC 'Commit' 0x7b073106 received: {"writeResults":[{},{},{"updateTime":"2024-09-03T16:16:57.984679Z"},{"updateTime":"2024-09-03T16:16:57.984679Z"}],"commitTime":"2024-09-03T16:16:57.984679Z"}
logger.ts:117 [2024-09-03T16:16:57.982Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Commit' 0x7b073106 completed.
logger.ts:117 [2024-09-03T16:16:57.982Z]  @firebase/firestore: Firestore (10.13.1): RestConnection Received RPC 'Commit' 0x7b073105:  {"writeResults":[{},{},{"updateTime":"2024-09-03T16:16:57.984679Z"},{"updateTime":"2024-09-03T16:16:57.984679Z"}],"commitTime":"2024-09-03T16:16:57.984679Z"}
x.html:59 transaction completed
logger.ts:117 [2024-09-03T16:16:57.982Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Allocate target
logger.ts:117 [2024-09-03T16:16:57.983Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215892}
logger.ts:117 [2024-09-03T16:16:57.983Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:57.983Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Execute query
logger.ts:117 [2024-09-03T16:16:57.983Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215892}
logger.ts:117 [2024-09-03T16:16:57.983Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:57.984Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:57.984Z]  @firebase/firestore: Firestore (10.13.1): QueryEngine Re-using previous result from %s to execute query: %s SnapshotVersion(Timestamp(seconds=1725380214, nanoseconds=730790000)) Query(target=Target(sheets/hxP3Qe7UywllnEPMqmn9F/items, filters: [next_id == null], orderBy: [__name__ (asc)]); limitType=F)
logger.ts:117 [2024-09-03T16:16:57.985Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","addTarget":{"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"where":{"unaryFilter":{"field":{"fieldPath":"next_id"},"op":"IS_NULL"}},"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"},"targetId":6,"resumeToken":"CgkIpuC0lpaniAM=","expectedCount":1}}
logger.ts:117 [2024-09-03T16:16:57.987Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentRemove":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","removedTargetIds":[2],"readTime":"2024-09-03T16:16:57.984679Z"}}
logger.ts:117 [2024-09-03T16:16:57.987Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":null}},"createTime":"2024-09-03T16:16:55.805841Z","updateTime":"2024-09-03T16:16:57.984679Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:57.988Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentRemove":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","removedTargetIds":[2],"readTime":"2024-09-03T16:16:57.984679Z"}}
logger.ts:117 [2024-09-03T16:16:57.988Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIp637l5aniAM=","readTime":"2024-09-03T16:16:57.984679Z"}}
logger.ts:117 [2024-09-03T16:16:57.988Z]  @firebase/firestore: Firestore (10.13.1): WatchChangeAggregator Detected inactive target 6
logger.ts:117 [2024-09-03T16:16:57.988Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:57.988Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215892}
logger.ts:117 [2024-09-03T16:16:57.988Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:57.988Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5061,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":880327000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:57.989Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:57.989Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380215892}
logger.ts:117 [2024-09-03T16:16:57.989Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE targetDocuments [2,"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001"]
logger.ts:117 [2024-09-03T16:16:57.989Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001","sequenceNumber":5066}
logger.ts:117 [2024-09-03T16:16:57.989Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE targetDocuments [2,"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001"]
logger.ts:117 [2024-09-03T16:16:57.989Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001","sequenceNumber":5066}
logger.ts:117 [2024-09-03T16:16:57.989Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":2,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:|ob:__name__asc","readTime":{"seconds":1725380217,"nanoseconds":984679000},"resumeToken":"CgkIp637l5aniAM=","lastListenSequenceNumber":5066,"lastLimboFreeSnapshotVersion":{"seconds":1725380215,"nanoseconds":880327000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
2logger.ts:117 [2024-09-03T16:16:57.990Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5061,"lastRemoteSnapshotVersion":{"seconds":1725380215,"nanoseconds":880327000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:57.990Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5066,"lastRemoteSnapshotVersion":{"seconds":1725380217,"nanoseconds":984679000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:57.990Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,880327000],"TjmWMWv7YsteLgkRMcRgA"]
logger.ts:117 [2024-09-03T16:16:57.990Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"TjmWMWv7YsteLgkRMcRgA","readTime":[1725380217,984679000],"hasCommittedMutations":false,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":null}},"updateTime":"2024-09-03T16:16:57.984679000Z","createTime":"2024-09-03T16:16:55.805841000Z"}}
logger.ts:117 [2024-09-03T16:16:57.990Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20173}
logger.ts:117 [2024-09-03T16:16:57.990Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20152}
logger.ts:117 [2024-09-03T16:16:57.991Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:57.991Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380217991}
logger.ts:117 [2024-09-03T16:16:57.991Z]  @firebase/firestore: Firestore (10.13.1): SyncEngine New document in limbo: sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna
logger.ts:117 [2024-09-03T16:16:57.991Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","addTarget":{"documents":{"documents":["projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna"]},"targetId":1},"labels":{"goog-listen-tags":"limbo-document"}}
logger.ts:117 [2024-09-03T16:16:57.991Z]  @firebase/firestore: Firestore (10.13.1): SyncEngine New document in limbo: sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg
logger.ts:117 [2024-09-03T16:16:57.991Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","addTarget":{"documents":{"documents":["projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg"]},"targetId":3},"labels":{"goog-listen-tags":"limbo-document"}}
logger.ts:117 [2024-09-03T16:16:57.991Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=3
x.html:136 modified {id: 'TjmWMWv7YsteLgkRMcRgA', next_id: null}
logger.ts:117 [2024-09-03T16:16:57.992Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380217991}
logger.ts:117 [2024-09-03T16:16:57.992Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:57.992Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5067}
logger.ts:117 [2024-09-03T16:16:57.997Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"ADD","targetIds":[6]}}
logger.ts:117 [2024-09-03T16:16:58.003Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"ADD","targetIds":[1]}}
logger.ts:117 [2024-09-03T16:16:58.004Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"ADD","targetIds":[3]}}
logger.ts:117 [2024-09-03T16:16:58.018Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentDelete":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna","readTime":"2024-09-03T16:16:58.018367Z","removedTargetIds":[1]}}
logger.ts:117 [2024-09-03T16:16:58.019Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"CURRENT","targetIds":[1],"resumeToken":"CgkIv7T9l5aniAM=","readTime":"2024-09-03T16:16:58.018367Z"}}
logger.ts:117 [2024-09-03T16:16:58.019Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetIds":[1,2],"resumeToken":"CgkIv7T9l5aniAM=","readTime":"2024-09-03T16:16:58.018367Z"}}
logger.ts:117 [2024-09-03T16:16:58.068Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetIds":[2,1],"resumeToken":"CgkIgOj9l5aniAM=","readTime":"2024-09-03T16:16:58.024960Z"}}
logger.ts:117 [2024-09-03T16:16:58.069Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentDelete":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg","readTime":"2024-09-03T16:16:58.018367Z","removedTargetIds":[3]}}
logger.ts:117 [2024-09-03T16:16:58.069Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"CURRENT","targetIds":[3],"resumeToken":"CgkIv7T9l5aniAM=","readTime":"2024-09-03T16:16:58.018367Z"}}
logger.ts:117 [2024-09-03T16:16:58.078Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetIds":[1,2,3],"resumeToken":"CgkIgOj9l5aniAM=","readTime":"2024-09-03T16:16:58.024960Z"}}
logger.ts:117 [2024-09-03T16:16:58.143Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":null}},"createTime":"2024-09-03T16:16:55.805841Z","updateTime":"2024-09-03T16:16:57.984679Z"},"targetIds":[6]}}
logger.ts:117 [2024-09-03T16:16:58.143Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"filter":{"targetId":6,"count":1,"unchangedNames":{"bits":{"bitmap":"stkA","padding":7},"hashCount":12}}}
logger.ts:117 [2024-09-03T16:16:58.143Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"CURRENT","targetIds":[6],"resumeToken":"CgkIgOj9l5aniAM=","readTime":"2024-09-03T16:16:58.024960Z"}}
logger.ts:117 [2024-09-03T16:16:58.143Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIgOj9l5aniAM=","readTime":"2024-09-03T16:16:58.024960Z"}}
logger.ts:117 [2024-09-03T16:16:58.144Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:58.144Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380217991}
logger.ts:117 [2024-09-03T16:16:58.144Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:58.144Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5066,"lastRemoteSnapshotVersion":{"seconds":1725380217,"nanoseconds":984679000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:58.144Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:58.144Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380217991}
logger.ts:117 [2024-09-03T16:16:58.144Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":6,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:next_id==null|ob:__name__asc","readTime":{"seconds":1725380218,"nanoseconds":24960000},"resumeToken":"CgkIgOj9l5aniAM=","lastListenSequenceNumber":5069,"lastLimboFreeSnapshotVersion":{"seconds":1725380214,"nanoseconds":730790000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"where":{"unaryFilter":{"field":{"fieldPath":"next_id"},"op":"IS_NULL"}},"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
logger.ts:117 [2024-09-03T16:16:58.145Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001","sequenceNumber":5069}
logger.ts:117 [2024-09-03T16:16:58.145Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001","sequenceNumber":5069}
2logger.ts:117 [2024-09-03T16:16:58.145Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5066,"lastRemoteSnapshotVersion":{"seconds":1725380217,"nanoseconds":984679000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:58.145Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5069,"lastRemoteSnapshotVersion":{"seconds":1725380218,"nanoseconds":24960000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:58.145Z]  @firebase/firestore: Firestore (10.13.1): LocalStore Ignoring outdated watch update for  {"path":{"segments":["projects","***","databases","(default)","documents","sheets","hxP3Qe7UywllnEPMqmn9F","items","TjmWMWv7YsteLgkRMcRgA"],"offset":5,"len":4}} . Current version: {"timestamp":{"seconds":1725380217,"nanoseconds":984679000}}  Watch version: {"timestamp":{"seconds":1725380217,"nanoseconds":984679000}}
logger.ts:117 [2024-09-03T16:16:58.145Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,880327000],"OEYRzjFB5NqhejLOXixna"]
logger.ts:117 [2024-09-03T16:16:58.145Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"OEYRzjFB5NqhejLOXixna","readTime":[1725380218,24960000],"hasCommittedMutations":false,"noDocument":{"path":["sheets","hxP3Qe7UywllnEPMqmn9F","items","OEYRzjFB5NqhejLOXixna"],"readTime":{"seconds":1725380218,"nanoseconds":18367000}}}
logger.ts:117 [2024-09-03T16:16:58.145Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380215,880327000],"rmRSk7ya35bZHssCncdlg"]
logger.ts:117 [2024-09-03T16:16:58.146Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"rmRSk7ya35bZHssCncdlg","readTime":[1725380218,24960000],"hasCommittedMutations":false,"noDocument":{"path":["sheets","hxP3Qe7UywllnEPMqmn9F","items","rmRSk7ya35bZHssCncdlg"],"readTime":{"seconds":1725380218,"nanoseconds":18367000}}}
logger.ts:117 [2024-09-03T16:16:58.146Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20152}
logger.ts:117 [2024-09-03T16:16:58.146Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19777}
logger.ts:117 [2024-09-03T16:16:58.146Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","OEYRzjFB5NqhejLOXixna"] null
logger.ts:117 [2024-09-03T16:16:58.146Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","rmRSk7ya35bZHssCncdlg"] null
logger.ts:117 [2024-09-03T16:16:58.146Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218146}
logger.ts:117 [2024-09-03T16:16:58.147Z]  @firebase/firestore: Firestore (10.13.1): SyncEngine Document no longer in limbo: sheets/hxP3Qe7UywllnEPMqmn9F/items/OEYRzjFB5NqhejLOXixna
logger.ts:117 [2024-09-03T16:16:58.147Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","removeTarget":1}
logger.ts:117 [2024-09-03T16:16:58.147Z]  @firebase/firestore: Firestore (10.13.1): SyncEngine Document no longer in limbo: sheets/hxP3Qe7UywllnEPMqmn9F/items/rmRSk7ya35bZHssCncdlg
logger.ts:117 [2024-09-03T16:16:58.147Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","removeTarget":3}
logger.ts:117 [2024-09-03T16:16:58.147Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=1
x.html:136 removed {next_id: null, id: 'OEYRzjFB5NqhejLOXixna'}
x.html:136 removed {next_id: 'OEYRzjFB5NqhejLOXixna', id: 'rmRSk7ya35bZHssCncdlg'}
x.html:59 getDocs took 166ms
logger.ts:117 [2024-09-03T16:16:58.148Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218146}
logger.ts:117 [2024-09-03T16:16:58.148Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:58.148Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001","sequenceNumber":5070}
logger.ts:117 [2024-09-03T16:16:58.148Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001rmRSk7ya35bZHssCncdlg\u0001\u0001","sequenceNumber":5070}
logger.ts:117 [2024-09-03T16:16:58.148Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001OEYRzjFB5NqhejLOXixna\u0001\u0001","sequenceNumber":5070}
logger.ts:117 [2024-09-03T16:16:58.148Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Release target
logger.ts:117 [2024-09-03T16:16:58.148Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218146}
logger.ts:117 [2024-09-03T16:16:58.149Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":6,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:next_id==null|ob:__name__asc","readTime":{"seconds":1725380218,"nanoseconds":24960000},"resumeToken":"CgkIgOj9l5aniAM=","lastListenSequenceNumber":5071,"lastLimboFreeSnapshotVersion":{"seconds":1725380218,"nanoseconds":24960000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"where":{"unaryFilter":{"field":{"fieldPath":"next_id"},"op":"IS_NULL"}},"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
logger.ts:117 [2024-09-03T16:16:58.149Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218149}
logger.ts:117 [2024-09-03T16:16:58.149Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","removeTarget":6}
logger.ts:117 [2024-09-03T16:16:58.155Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"REMOVE","targetIds":[1]}}
logger.ts:117 [2024-09-03T16:16:58.155Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"REMOVE","targetIds":[3]}}
logger.ts:117 [2024-09-03T16:16:58.163Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"REMOVE","targetIds":[6]}}
logger.ts:117 [2024-09-03T16:16:59.550Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:59.550Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218149}
logger.ts:117 [2024-09-03T16:16:59.550Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.550Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:59.550Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:59.551Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":249,"localWriteTimeMs":1725380219550,"baseMutations":[],"mutations":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"}}}}]}
logger.ts:117 [2024-09-03T16:16:59.551Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001",249] {}
logger.ts:117 [2024-09-03T16:16:59.551Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"TjmWMWv7YsteLgkRMcRgA","collectionGroup":"items","largestBatchId":249,"overlayMutation":{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"}}}}}
logger.ts:117 [2024-09-03T16:16:59.551Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=1
x.html:136 modified {id: 'TjmWMWv7YsteLgkRMcRgA', next_id: 'PtZBZsjQC01LrRSUO8i0h'}
logger.ts:117 [2024-09-03T16:16:59.552Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218149}
logger.ts:117 [2024-09-03T16:16:59.552Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.552Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.552Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218149}
logger.ts:117 [2024-09-03T16:16:59.552Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.552Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAcZEGhCAoH0tbU=","writes":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"}}}}]}
logger.ts:117 [2024-09-03T16:16:59.552Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.553Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218149}
logger.ts:117 [2024-09-03T16:16:59.553Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.581Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAgZEGhCAoH0tbU=","writeResults":[{"updateTime":"2024-09-03T16:16:59.584934Z"}],"commitTime":"2024-09-03T16:16:59.584934Z"}
logger.ts:117 [2024-09-03T16:16:59.581Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:59.581Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380218149}
logger.ts:117 [2024-09-03T16:16:59.581Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001",249]
logger.ts:117 [2024-09-03T16:16:59.582Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5076}
logger.ts:117 [2024-09-03T16:16:59.582Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380217,984679000],"TjmWMWv7YsteLgkRMcRgA"]
logger.ts:117 [2024-09-03T16:16:59.582Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"TjmWMWv7YsteLgkRMcRgA","readTime":[1725380219,584934000],"hasCommittedMutations":true,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"}},"updateTime":"2024-09-03T16:16:59.584934000Z","createTime":"2024-09-03T16:16:55.805841000Z"}}
logger.ts:117 [2024-09-03T16:16:59.582Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19777}
logger.ts:117 [2024-09-03T16:16:59.582Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19798}
logger.ts:117 [2024-09-03T16:16:59.582Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.583Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:59.584Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.584Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.584Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","PtZBZsjQC01LrRSUO8i0h"] null
logger.ts:117 [2024-09-03T16:16:59.584Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:59.584Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":250,"localWriteTimeMs":1725380219583,"baseMutations":[],"mutations":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h","fields":{"id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"},"next_id":{"stringValue":"En26wvPkC1W880XPFHYSa"}}}}]}
logger.ts:117 [2024-09-03T16:16:59.584Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001",250] {}
logger.ts:117 [2024-09-03T16:16:59.584Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"PtZBZsjQC01LrRSUO8i0h","collectionGroup":"items","largestBatchId":250,"overlayMutation":{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h","fields":{"id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"},"next_id":{"stringValue":"En26wvPkC1W880XPFHYSa"}}}}}
logger.ts:117 [2024-09-03T16:16:59.584Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=2
x.html:136 added {id: 'PtZBZsjQC01LrRSUO8i0h', next_id: 'En26wvPkC1W880XPFHYSa'}
logger.ts:117 [2024-09-03T16:16:59.585Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.585Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.585Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001","sequenceNumber":5080}
logger.ts:117 [2024-09-03T16:16:59.585Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.585Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.585Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.585Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAgZEGhCAoH0tbU=","writes":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h","fields":{"id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"},"next_id":{"stringValue":"En26wvPkC1W880XPFHYSa"}}}}]}
logger.ts:117 [2024-09-03T16:16:59.585Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.586Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.586Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"next_id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"},"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"}},"createTime":"2024-09-03T16:16:55.805841Z","updateTime":"2024-09-03T16:16:59.584934Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIpoPdmJaniAM=","readTime":"2024-09-03T16:16:59.584934Z"}}
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5069,"lastRemoteSnapshotVersion":{"seconds":1725380218,"nanoseconds":24960000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219583}
logger.ts:117 [2024-09-03T16:16:59.588Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":2,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:|ob:__name__asc","readTime":{"seconds":1725380219,"nanoseconds":584934000},"resumeToken":"CgkIpoPdmJaniAM=","lastListenSequenceNumber":5084,"lastLimboFreeSnapshotVersion":{"seconds":1725380218,"nanoseconds":24960000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
2logger.ts:117 [2024-09-03T16:16:59.589Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5069,"lastRemoteSnapshotVersion":{"seconds":1725380218,"nanoseconds":24960000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.589Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5084,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":584934000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.589Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380219,584934000],"TjmWMWv7YsteLgkRMcRgA"]
logger.ts:117 [2024-09-03T16:16:59.589Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"TjmWMWv7YsteLgkRMcRgA","readTime":[1725380219,584934000],"hasCommittedMutations":false,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"next_id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"},"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"}},"updateTime":"2024-09-03T16:16:59.584934000Z","createTime":"2024-09-03T16:16:55.805841000Z"}}
logger.ts:117 [2024-09-03T16:16:59.589Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19798}
logger.ts:117 [2024-09-03T16:16:59.589Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19798}
logger.ts:117 [2024-09-03T16:16:59.589Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:59.589Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219589}
logger.ts:117 [2024-09-03T16:16:59.590Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:59.590Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219589}
logger.ts:117 [2024-09-03T16:16:59.590Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.609Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:16:59.609Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219589}
logger.ts:117 [2024-09-03T16:16:59.609Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.609Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380219609,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:16:59.609Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219589}
logger.ts:117 [2024-09-03T16:16:59.609Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.609Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219609}
logger.ts:117 [2024-09-03T16:16:59.610Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: maybeGarbageCollectMultiClientState
logger.ts:117 [2024-09-03T16:16:59.610Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219609}
logger.ts:117 [2024-09-03T16:16:59.610Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.610Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client 'RLUU0J1QA6Y0nUVpnwno' is zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.610Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE clientMetadata RLUU0J1QA6Y0nUVpnwno
logger.ts:117 [2024-09-03T16:16:59.610Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219610}
logger.ts:117 [2024-09-03T16:16:59.613Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAkZEGhCAoH0tbU=","writeResults":[{"updateTime":"2024-09-03T16:16:59.617540Z"}],"commitTime":"2024-09-03T16:16:59.617540Z"}
logger.ts:117 [2024-09-03T16:16:59.613Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:59.613Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219610}
logger.ts:117 [2024-09-03T16:16:59.613Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001",250]
logger.ts:117 [2024-09-03T16:16:59.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001","sequenceNumber":5088}
logger.ts:117 [2024-09-03T16:16:59.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[0,0],"PtZBZsjQC01LrRSUO8i0h"]
logger.ts:117 [2024-09-03T16:16:59.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"PtZBZsjQC01LrRSUO8i0h","readTime":[1725380219,617540000],"hasCommittedMutations":true,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h","fields":{"id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"},"next_id":{"stringValue":"En26wvPkC1W880XPFHYSa"}},"updateTime":"2024-09-03T16:16:59.617540000Z","createTime":"2024-09-03T16:16:59.617540000Z"}}
logger.ts:117 [2024-09-03T16:16:59.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":19798}
logger.ts:117 [2024-09-03T16:16:59.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20128}
logger.ts:117 [2024-09-03T16:16:59.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:59.615Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","PtZBZsjQC01LrRSUO8i0h"] null
logger.ts:117 [2024-09-03T16:16:59.615Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.615Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:59.615Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.615Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.615Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Locally write mutations
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","En26wvPkC1W880XPFHYSa"] null
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb ADD mutations {} {}
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT mutations <auto-key> {"userId":"","batchId":251,"localWriteTimeMs":1725380219616,"baseMutations":[],"mutations":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","fields":{"id":{"stringValue":"En26wvPkC1W880XPFHYSa"},"next_id":{"nullValue":"NULL_VALUE"}}}}]}
logger.ts:117 [2024-09-03T16:16:59.616Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001",251] {}
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT documentOverlays <auto-key> {"userId":"","collectionPath":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","documentId":"En26wvPkC1W880XPFHYSa","collectionGroup":"items","largestBatchId":251,"overlayMutation":{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","fields":{"id":{"stringValue":"En26wvPkC1W880XPFHYSa"},"next_id":{"nullValue":"NULL_VALUE"}}}}}
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=3
x.html:136 added {id: 'En26wvPkC1W880XPFHYSa', next_id: null}
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001","sequenceNumber":5092}
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h","fields":{"next_id":{"stringValue":"En26wvPkC1W880XPFHYSa"},"id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"}},"createTime":"2024-09-03T16:16:59.617540Z","updateTime":"2024-09-03T16:16:59.617540Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.617Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.618Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIhILfmJaniAM=","readTime":"2024-09-03T16:16:59.617540Z"}}
logger.ts:117 [2024-09-03T16:16:59.618Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 sending: {"streamToken":"EAkZEGhCAoH0tbU=","writes":[{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","fields":{"id":{"stringValue":"En26wvPkC1W880XPFHYSa"},"next_id":{"nullValue":"NULL_VALUE"}}}}]}
logger.ts:117 [2024-09-03T16:16:59.618Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.618Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.618Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5084,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":584934000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219615}
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":2,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001"}
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001","sequenceNumber":5096}
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":2,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:|ob:__name__asc","readTime":{"seconds":1725380219,"nanoseconds":617540000},"resumeToken":"CgkIhILfmJaniAM=","lastListenSequenceNumber":5096,"lastLimboFreeSnapshotVersion":{"seconds":1725380219,"nanoseconds":584934000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
2logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5084,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":584934000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.619Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5096,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":617540000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380219,617540000],"PtZBZsjQC01LrRSUO8i0h"]
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"PtZBZsjQC01LrRSUO8i0h","readTime":[1725380219,617540000],"hasCommittedMutations":false,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h","fields":{"next_id":{"stringValue":"En26wvPkC1W880XPFHYSa"},"id":{"stringValue":"PtZBZsjQC01LrRSUO8i0h"}},"updateTime":"2024-09-03T16:16:59.617540000Z","createTime":"2024-09-03T16:16:59.617540000Z"}}
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20128}
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20128}
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","PtZBZsjQC01LrRSUO8i0h"] null
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219620}
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219620}
logger.ts:117 [2024-09-03T16:16:59.620Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.648Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Write' stream 0x7b073103 received: {"streamToken":"EAoZEGhCAoH0tbU=","writeResults":[{"updateTime":"2024-09-03T16:16:59.653376Z"}],"commitTime":"2024-09-03T16:16:59.653376Z"}
logger.ts:117 [2024-09-03T16:16:59.649Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Acknowledge batch
logger.ts:117 [2024-09-03T16:16:59.649Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219620}
logger.ts:117 [2024-09-03T16:16:59.649Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE documentMutations ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001",251]
logger.ts:117 [2024-09-03T16:16:59.649Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001","sequenceNumber":5098}
logger.ts:117 [2024-09-03T16:16:59.650Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[0,0],"En26wvPkC1W880XPFHYSa"]
logger.ts:117 [2024-09-03T16:16:59.650Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"En26wvPkC1W880XPFHYSa","readTime":[1725380219,653376000],"hasCommittedMutations":true,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","fields":{"id":{"stringValue":"En26wvPkC1W880XPFHYSa"},"next_id":{"nullValue":"NULL_VALUE"}},"updateTime":"2024-09-03T16:16:59.653376000Z","createTime":"2024-09-03T16:16:59.653376000Z"}}
logger.ts:117 [2024-09-03T16:16:59.650Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20128}
logger.ts:117 [2024-09-03T16:16:59.650Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20445}
logger.ts:117 [2024-09-03T16:16:59.650Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE ALL documentOverlays
logger.ts:117 [2024-09-03T16:16:59.651Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","En26wvPkC1W880XPFHYSa"] null
logger.ts:117 [2024-09-03T16:16:59.651Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219651}
x.html:59 (2) trying...
logger.ts:117 [2024-09-03T16:16:59.651Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:59.651Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219651}
logger.ts:117 [2024-09-03T16:16:59.651Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.652Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get next mutation batch
logger.ts:117 [2024-09-03T16:16:59.652Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219651}
logger.ts:117 [2024-09-03T16:16:59.652Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.652Z]  @firebase/firestore: Firestore (10.13.1): RestConnection Sending RPC 'Commit' 0x7b073107: https://firestore.googleapis.com/v1/projects/***/databases/(default)/documents:commit {"writes":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h"},{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa"},{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":"NULL_VALUE"}}}},{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F","fields":{"last_run":{"stringValue":"ukXLqRYJoZX6i5v69ZhqJ"}}}}]}
logger.ts:117 [2024-09-03T16:16:59.652Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Commit' 0x7b073108 sending request: {"writes":[{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h"},{"delete":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa"},{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":"NULL_VALUE"}}}},{"update":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F","fields":{"last_run":{"stringValue":"ukXLqRYJoZX6i5v69ZhqJ"}}}}]}
logger.ts:117 [2024-09-03T16:16:59.658Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","fields":{"next_id":{"nullValue":null},"id":{"stringValue":"En26wvPkC1W880XPFHYSa"}},"createTime":"2024-09-03T16:16:59.653376Z","updateTime":"2024-09-03T16:16:59.653376Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:59.658Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIgJrhmJaniAM=","readTime":"2024-09-03T16:16:59.653376Z"}}
logger.ts:117 [2024-09-03T16:16:59.707Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection XHR for RPC 'Commit' 0x7b073108 received: {"writeResults":[{},{},{"updateTime":"2024-09-03T16:16:59.710814Z"},{"updateTime":"2024-09-03T16:16:59.710814Z"}],"commitTime":"2024-09-03T16:16:59.710814Z"}
logger.ts:117 [2024-09-03T16:16:59.708Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Commit' 0x7b073108 completed.
logger.ts:117 [2024-09-03T16:16:59.708Z]  @firebase/firestore: Firestore (10.13.1): RestConnection Received RPC 'Commit' 0x7b073107:  {"writeResults":[{},{},{"updateTime":"2024-09-03T16:16:59.710814Z"},{"updateTime":"2024-09-03T16:16:59.710814Z"}],"commitTime":"2024-09-03T16:16:59.710814Z"}
x.html:59 transaction completed
logger.ts:117 [2024-09-03T16:16:59.708Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:59.708Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219651}
logger.ts:117 [2024-09-03T16:16:59.708Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.708Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5096,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":617540000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.708Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:59.709Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentRemove":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h","removedTargetIds":[2],"readTime":"2024-09-03T16:16:59.710814Z"}}
logger.ts:117 [2024-09-03T16:16:59.709Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentRemove":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","removedTargetIds":[2],"readTime":"2024-09-03T16:16:59.710814Z"}}
logger.ts:117 [2024-09-03T16:16:59.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219651}
logger.ts:117 [2024-09-03T16:16:59.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":2,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001"}
logger.ts:117 [2024-09-03T16:16:59.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001","sequenceNumber":5102}
logger.ts:117 [2024-09-03T16:16:59.709Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":2,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:|ob:__name__asc","readTime":{"seconds":1725380219,"nanoseconds":653376000},"resumeToken":"CgkIgJrhmJaniAM=","lastListenSequenceNumber":5102,"lastLimboFreeSnapshotVersion":{"seconds":1725380219,"nanoseconds":617540000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
logger.ts:117 [2024-09-03T16:16:59.709Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":null}},"createTime":"2024-09-03T16:16:55.805841Z","updateTime":"2024-09-03T16:16:59.710814Z"},"targetIds":[2]}}
logger.ts:117 [2024-09-03T16:16:59.710Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkI3trkmJaniAM=","readTime":"2024-09-03T16:16:59.710814Z"}}
2logger.ts:117 [2024-09-03T16:16:59.710Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5096,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":617540000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.710Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5102,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":653376000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.710Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380219,653376000],"En26wvPkC1W880XPFHYSa"]
logger.ts:117 [2024-09-03T16:16:59.710Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"En26wvPkC1W880XPFHYSa","readTime":[1725380219,653376000],"hasCommittedMutations":false,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","fields":{"next_id":{"nullValue":null},"id":{"stringValue":"En26wvPkC1W880XPFHYSa"}},"updateTime":"2024-09-03T16:16:59.653376000Z","createTime":"2024-09-03T16:16:59.653376000Z"}}
logger.ts:117 [2024-09-03T16:16:59.711Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20445}
logger.ts:117 [2024-09-03T16:16:59.711Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20437}
logger.ts:117 [2024-09-03T16:16:59.711Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","En26wvPkC1W880XPFHYSa"] null
logger.ts:117 [2024-09-03T16:16:59.711Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219711}
logger.ts:117 [2024-09-03T16:16:59.711Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
logger.ts:117 [2024-09-03T16:16:59.711Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219711}
logger.ts:117 [2024-09-03T16:16:59.711Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.712Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Allocate target
logger.ts:117 [2024-09-03T16:16:59.712Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219711}
logger.ts:117 [2024-09-03T16:16:59.712Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.712Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Execute query
logger.ts:117 [2024-09-03T16:16:59.712Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219711}
logger.ts:117 [2024-09-03T16:16:59.712Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.713Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:59.713Z]  @firebase/firestore: Firestore (10.13.1): QueryEngine Re-using previous result from %s to execute query: %s SnapshotVersion(Timestamp(seconds=1725380218, nanoseconds=24960000)) Query(target=Target(sheets/hxP3Qe7UywllnEPMqmn9F/items, filters: [next_id == null], orderBy: [__name__ (asc)]); limitType=F)
logger.ts:117 [2024-09-03T16:16:59.713Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","addTarget":{"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"where":{"unaryFilter":{"field":{"fieldPath":"next_id"},"op":"IS_NULL"}},"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"},"targetId":6,"resumeToken":"CgkIgOj9l5aniAM=","expectedCount":1}}
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): WatchChangeAggregator Detected inactive target 6
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219711}
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5102,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":653376000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219711}
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE targetDocuments [2,"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001"]
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001","sequenceNumber":5107}
logger.ts:117 [2024-09-03T16:16:59.714Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE targetDocuments [2,"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001"]
logger.ts:117 [2024-09-03T16:16:59.715Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001","sequenceNumber":5107}
logger.ts:117 [2024-09-03T16:16:59.715Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":2,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:|ob:__name__asc","readTime":{"seconds":1725380219,"nanoseconds":710814000},"resumeToken":"CgkI3trkmJaniAM=","lastListenSequenceNumber":5107,"lastLimboFreeSnapshotVersion":{"seconds":1725380219,"nanoseconds":653376000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
2logger.ts:117 [2024-09-03T16:16:59.715Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5102,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":653376000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.715Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5107,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":710814000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.715Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380219,584934000],"TjmWMWv7YsteLgkRMcRgA"]
logger.ts:117 [2024-09-03T16:16:59.715Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"TjmWMWv7YsteLgkRMcRgA","readTime":[1725380219,710814000],"hasCommittedMutations":false,"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"},"next_id":{"nullValue":null}},"updateTime":"2024-09-03T16:16:59.710814000Z","createTime":"2024-09-03T16:16:55.805841000Z"}}
logger.ts:117 [2024-09-03T16:16:59.715Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20437}
logger.ts:117 [2024-09-03T16:16:59.715Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20416}
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","TjmWMWv7YsteLgkRMcRgA"] null
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219716}
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): SyncEngine New document in limbo: sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","addTarget":{"documents":{"documents":["projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa"]},"targetId":5},"labels":{"goog-listen-tags":"limbo-document"}}
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): SyncEngine New document in limbo: sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","addTarget":{"documents":{"documents":["projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h"]},"targetId":7},"labels":{"goog-listen-tags":"limbo-document"}}
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=3
x.html:136 modified {id: 'TjmWMWv7YsteLgkRMcRgA', next_id: null}
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219716}
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.716Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001TjmWMWv7YsteLgkRMcRgA\u0001\u0001","sequenceNumber":5108}
logger.ts:117 [2024-09-03T16:16:59.721Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"ADD","targetIds":[6]}}
logger.ts:117 [2024-09-03T16:16:59.730Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"ADD","targetIds":[5]}}
logger.ts:117 [2024-09-03T16:16:59.730Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"ADD","targetIds":[7]}}
logger.ts:117 [2024-09-03T16:16:59.744Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentDelete":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","readTime":"2024-09-03T16:16:59.744183Z","removedTargetIds":[5]}}
logger.ts:117 [2024-09-03T16:16:59.745Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"CURRENT","targetIds":[5],"resumeToken":"CgkIt9/mmJaniAM=","readTime":"2024-09-03T16:16:59.744183Z"}}
logger.ts:117 [2024-09-03T16:16:59.745Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetIds":[5,2],"resumeToken":"CgkIt9/mmJaniAM=","readTime":"2024-09-03T16:16:59.744183Z"}}
logger.ts:117 [2024-09-03T16:16:59.789Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentRemove":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","removedTargetIds":[6],"readTime":"2024-09-03T16:16:59.584934Z"}}
logger.ts:117 [2024-09-03T16:16:59.789Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetIds":[6],"resumeToken":"CgkIpoPdmJaniAM=","readTime":"2024-09-03T16:16:59.584934Z"}}
logger.ts:117 [2024-09-03T16:16:59.790Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","fields":{"id":{"stringValue":"En26wvPkC1W880XPFHYSa"},"next_id":{"nullValue":null}},"createTime":"2024-09-03T16:16:59.653376Z","updateTime":"2024-09-03T16:16:59.653376Z"},"targetIds":[6]}}
logger.ts:117 [2024-09-03T16:16:59.790Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetIds":[6],"resumeToken":"CgkIgJrhmJaniAM=","readTime":"2024-09-03T16:16:59.653376Z"}}
logger.ts:117 [2024-09-03T16:16:59.790Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentRemove":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa","removedTargetIds":[6],"readTime":"2024-09-03T16:16:59.710814Z"}}
logger.ts:117 [2024-09-03T16:16:59.791Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentChange":{"document":{"name":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/TjmWMWv7YsteLgkRMcRgA","fields":{"next_id":{"nullValue":null},"id":{"stringValue":"TjmWMWv7YsteLgkRMcRgA"}},"createTime":"2024-09-03T16:16:55.805841Z","updateTime":"2024-09-03T16:16:59.710814Z"},"targetIds":[6]}}
logger.ts:117 [2024-09-03T16:16:59.791Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetIds":[6],"resumeToken":"CgkI3trkmJaniAM=","readTime":"2024-09-03T16:16:59.710814Z"}}
logger.ts:117 [2024-09-03T16:16:59.791Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"CURRENT","targetIds":[6],"resumeToken":"CgkIp+/mmJaniAM=","readTime":"2024-09-03T16:16:59.746215Z"}}
logger.ts:117 [2024-09-03T16:16:59.791Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetIds":[2,5],"resumeToken":"CgkIp+/mmJaniAM=","readTime":"2024-09-03T16:16:59.746215Z"}}
logger.ts:117 [2024-09-03T16:16:59.793Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"documentDelete":{"document":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h","readTime":"2024-09-03T16:16:59.744183Z","removedTargetIds":[7]}}
logger.ts:117 [2024-09-03T16:16:59.793Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"CURRENT","targetIds":[7],"resumeToken":"CgkIt9/mmJaniAM=","readTime":"2024-09-03T16:16:59.744183Z"}}
logger.ts:117 [2024-09-03T16:16:59.799Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIp+/mmJaniAM=","readTime":"2024-09-03T16:16:59.746215Z"}}
logger.ts:117 [2024-09-03T16:16:59.799Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:16:59.799Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219716}
logger.ts:117 [2024-09-03T16:16:59.799Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.800Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5107,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":710814000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.800Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:16:59.800Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219716}
logger.ts:117 [2024-09-03T16:16:59.800Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":6,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:next_id==null|ob:__name__asc","readTime":{"seconds":1725380219,"nanoseconds":746215000},"resumeToken":"CgkIp+/mmJaniAM=","lastListenSequenceNumber":5110,"lastLimboFreeSnapshotVersion":{"seconds":1725380218,"nanoseconds":24960000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"where":{"unaryFilter":{"field":{"fieldPath":"next_id"},"op":"IS_NULL"}},"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
logger.ts:117 [2024-09-03T16:16:59.800Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001","sequenceNumber":5110}
logger.ts:117 [2024-09-03T16:16:59.801Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001","sequenceNumber":5110}
2logger.ts:117 [2024-09-03T16:16:59.801Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5107,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":710814000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.801Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5110,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":746215000},"targetCount":3}
logger.ts:117 [2024-09-03T16:16:59.801Z]  @firebase/firestore: Firestore (10.13.1): LocalStore Ignoring outdated watch update for  {"path":{"segments":["projects","***","databases","(default)","documents","sheets","hxP3Qe7UywllnEPMqmn9F","items","En26wvPkC1W880XPFHYSa"],"offset":5,"len":4}} . Current version: {"timestamp":{"seconds":1725380219,"nanoseconds":653376000}}  Watch version: {"timestamp":{"seconds":1725380219,"nanoseconds":653376000}}
logger.ts:117 [2024-09-03T16:16:59.801Z]  @firebase/firestore: Firestore (10.13.1): LocalStore Ignoring outdated watch update for  {"path":{"segments":["projects","***","databases","(default)","documents","sheets","hxP3Qe7UywllnEPMqmn9F","items","TjmWMWv7YsteLgkRMcRgA"],"offset":5,"len":4}} . Current version: {"timestamp":{"seconds":1725380219,"nanoseconds":710814000}}  Watch version: {"timestamp":{"seconds":1725380219,"nanoseconds":710814000}}
logger.ts:117 [2024-09-03T16:16:59.801Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380219,617540000],"PtZBZsjQC01LrRSUO8i0h"]
logger.ts:117 [2024-09-03T16:16:59.802Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"PtZBZsjQC01LrRSUO8i0h","readTime":[1725380219,746215000],"hasCommittedMutations":false,"noDocument":{"path":["sheets","hxP3Qe7UywllnEPMqmn9F","items","PtZBZsjQC01LrRSUO8i0h"],"readTime":{"seconds":1725380219,"nanoseconds":744183000}}}
logger.ts:117 [2024-09-03T16:16:59.803Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20416}
logger.ts:117 [2024-09-03T16:16:59.803Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20219}
logger.ts:117 [2024-09-03T16:16:59.803Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","PtZBZsjQC01LrRSUO8i0h"] null
logger.ts:117 [2024-09-03T16:16:59.804Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219804}
logger.ts:117 [2024-09-03T16:16:59.804Z]  @firebase/firestore: Firestore (10.13.1): SyncEngine Document no longer in limbo: sheets/hxP3Qe7UywllnEPMqmn9F/items/PtZBZsjQC01LrRSUO8i0h
logger.ts:117 [2024-09-03T16:16:59.804Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","removeTarget":7}
logger.ts:117 [2024-09-03T16:16:59.804Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=2
x.html:136 removed {next_id: 'En26wvPkC1W880XPFHYSa', id: 'PtZBZsjQC01LrRSUO8i0h'}
logger.ts:117 [2024-09-03T16:16:59.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219804}
logger.ts:117 [2024-09-03T16:16:59.805Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:16:59.805Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001PtZBZsjQC01LrRSUO8i0h\u0001\u0001","sequenceNumber":5111}
logger.ts:117 [2024-09-03T16:16:59.812Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"REMOVE","targetIds":[7]}}
logger.ts:117 [2024-09-03T16:17:03.613Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:03.613Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219804}
logger.ts:117 [2024-09-03T16:17:03.613Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:03.613Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380223613,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:03.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380219804}
logger.ts:117 [2024-09-03T16:17:03.614Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:03.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380223614}
logger.ts:117 [2024-09-03T16:17:07.616Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:07.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380223614}
logger.ts:117 [2024-09-03T16:17:07.617Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:07.617Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380227617,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:07.618Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380223614}
logger.ts:117 [2024-09-03T16:17:07.618Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:07.618Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380227618}
logger.ts:117 [2024-09-03T16:17:10.613Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Backfill Indexes
logger.ts:117 [2024-09-03T16:17:10.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380227618}
logger.ts:117 [2024-09-03T16:17:10.614Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380230614}
logger.ts:117 [2024-09-03T16:17:10.615Z]  @firebase/firestore: Firestore (10.13.1): IndexBackfiller Documents written: 0
logger.ts:117 [2024-09-03T16:17:10.615Z]  @firebase/firestore: Firestore (10.13.1): IndexBackfiller Scheduled in 60000ms
logger.ts:117 [2024-09-03T16:17:11.620Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:11.621Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380230614}
logger.ts:117 [2024-09-03T16:17:11.621Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:11.621Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380231621,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:11.621Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380230614}
logger.ts:117 [2024-09-03T16:17:11.621Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:11.621Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380231621}
logger.ts:117 [2024-09-03T16:17:15.624Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:15.624Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380231621}
logger.ts:117 [2024-09-03T16:17:15.624Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:15.624Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380235624,"networkEnabled":true,"inForeground":true}
logger.ts:117 [2024-09-03T16:17:15.625Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380231621}
logger.ts:117 [2024-09-03T16:17:15.626Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380231621}
logger.ts:117 [2024-09-03T16:17:15.626Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:15.626Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380235626}
logger.ts:117 [2024-09-03T16:17:19.628Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:19.628Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380235626}
logger.ts:117 [2024-09-03T16:17:19.628Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:19.628Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380239628,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:19.629Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380235626}
logger.ts:117 [2024-09-03T16:17:19.629Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:19.629Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380239629}
logger.ts:117 [2024-09-03T16:17:23.631Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:23.632Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380239629}
logger.ts:117 [2024-09-03T16:17:23.632Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:23.632Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380243632,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:23.633Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380239629}
logger.ts:117 [2024-09-03T16:17:23.633Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:23.633Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380243633}
logger.ts:117 [2024-09-03T16:17:27.635Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:27.636Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380243633}
logger.ts:117 [2024-09-03T16:17:27.636Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:27.636Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380247636,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:27.636Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380243633}
logger.ts:117 [2024-09-03T16:17:27.636Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:27.636Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380247636}
logger.ts:117 [2024-09-03T16:17:31.638Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:31.638Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380247636}
logger.ts:117 [2024-09-03T16:17:31.638Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:31.638Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380251638,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:31.640Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380247636}
logger.ts:117 [2024-09-03T16:17:31.640Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:31.640Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380251640}
logger.ts:117 [2024-09-03T16:17:35.643Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:35.643Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380251640}
logger.ts:117 [2024-09-03T16:17:35.643Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:35.643Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380255643,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:35.644Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380251640}
logger.ts:117 [2024-09-03T16:17:35.644Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:35.644Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380255644}
logger.ts:117 [2024-09-03T16:17:39.647Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:39.647Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380255644}
logger.ts:117 [2024-09-03T16:17:39.647Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:39.647Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380259647,"networkEnabled":true,"inForeground":true}
2logger.ts:117 [2024-09-03T16:17:39.648Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380255644}
logger.ts:117 [2024-09-03T16:17:39.648Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:39.648Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380259648}
logger.ts:117 [2024-09-03T16:17:43.651Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:43.652Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380259648}
logger.ts:117 [2024-09-03T16:17:43.652Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:43.652Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380263652,"networkEnabled":true,"inForeground":true}
logger.ts:117 [2024-09-03T16:17:43.652Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380259648}
logger.ts:117 [2024-09-03T16:17:43.653Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380259648}
logger.ts:117 [2024-09-03T16:17:43.653Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:43.653Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380263653}
logger.ts:117 [2024-09-03T16:17:44.745Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIyemhrpaniAM=","readTime":"2024-09-03T16:17:44.752329Z"}}
logger.ts:117 [2024-09-03T16:17:44.745Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
logger.ts:117 [2024-09-03T16:17:44.747Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380263653}
logger.ts:117 [2024-09-03T16:17:44.747Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:44.747Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5110,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":746215000},"targetCount":3}
logger.ts:117 [2024-09-03T16:17:44.747Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Apply remote event
logger.ts:117 [2024-09-03T16:17:44.748Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380263653}
logger.ts:117 [2024-09-03T16:17:44.748Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001","sequenceNumber":5125}
2logger.ts:117 [2024-09-03T16:17:44.748Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5110,"lastRemoteSnapshotVersion":{"seconds":1725380219,"nanoseconds":746215000},"targetCount":3}
logger.ts:117 [2024-09-03T16:17:44.748Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetGlobal targetGlobalKey {"highestTargetId":6,"highestListenSequenceNumber":5125,"lastRemoteSnapshotVersion":{"seconds":1725380264,"nanoseconds":752329000},"targetCount":3}
logger.ts:117 [2024-09-03T16:17:44.749Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb DELETE remoteDocumentsV14 [["sheets","hxP3Qe7UywllnEPMqmn9F"],"items",[1725380219,653376000],"En26wvPkC1W880XPFHYSa"]
logger.ts:117 [2024-09-03T16:17:44.749Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentsV14 <auto-key> {"prefixPath":["sheets","hxP3Qe7UywllnEPMqmn9F"],"collectionGroup":"items","documentId":"En26wvPkC1W880XPFHYSa","readTime":[1725380264,752329000],"hasCommittedMutations":false,"noDocument":{"path":["sheets","hxP3Qe7UywllnEPMqmn9F","items","En26wvPkC1W880XPFHYSa"],"readTime":{"seconds":1725380264,"nanoseconds":752329000}}}
logger.ts:117 [2024-09-03T16:17:44.749Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20219}
logger.ts:117 [2024-09-03T16:17:44.749Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT remoteDocumentGlobal remoteDocumentGlobalKey {"byteSize":20043}
logger.ts:117 [2024-09-03T16:17:44.750Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET documentOverlays ["","sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001","En26wvPkC1W880XPFHYSa"] null
logger.ts:117 [2024-09-03T16:17:44.750Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380264750}
2logger.ts:117 [2024-09-03T16:17:44.750Z]  @firebase/firestore: Firestore (10.13.1): SyncEngine Document no longer in limbo: sheets/hxP3Qe7UywllnEPMqmn9F/items/En26wvPkC1W880XPFHYSa
logger.ts:117 [2024-09-03T16:17:44.750Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","removeTarget":5}
logger.ts:117 [2024-09-03T16:17:44.751Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges
x.html:132 onSnapshot(/sheets/hxP3Qe7UywllnEPMqmn9F/items) size=1
x.html:136 removed {next_id: null, id: 'En26wvPkC1W880XPFHYSa'}
x.html:59 getDocs took 45044ms
x.html:111 getDocs took too long (45044ms). exit.
main @ x.html:111
await in main
(anonymous) @ x.html:157
await in (anonymous)
next @ reference_impl.ts:749
(anonymous) @ bundle_reader_impl.ts:43
setTimeout
Ga @ bundle_reader_impl.ts:32
next @ async_observer.ts:45
oa @ event_manager.ts:567
X_ @ event_manager.ts:470
__PRIVATE_eventManagerListen @ event_manager.ts:211
await in __PRIVATE_eventManagerListen
(anonymous) @ firestore_client.ts:462
await in (anonymous)
(anonymous) @ async_queue_impl.ts:137
(anonymous) @ async_queue_impl.ts:329
Promise.then
Au @ async_queue_impl.ts:188
enqueue @ async_queue_impl.ts:135
enqueueAndForget @ async_queue_impl.ts:96
__PRIVATE_firestoreClientListen @ firestore_client.ts:463
onSnapshot @ reference_impl.ts:810
(anonymous) @ x.html:127
Promise.then
(anonymous) @ x.html:126Understand this error
logger.ts:117 [2024-09-03T16:17:44.752Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380264750}
logger.ts:117 [2024-09-03T16:17:44.752Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
2logger.ts:117 [2024-09-03T16:17:44.752Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targetDocuments <auto-key> {"targetId":0,"path":"sheets\u0001\u0001hxP3Qe7UywllnEPMqmn9F\u0001\u0001items\u0001\u0001En26wvPkC1W880XPFHYSa\u0001\u0001","sequenceNumber":5126}
logger.ts:117 [2024-09-03T16:17:44.752Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Release target
logger.ts:117 [2024-09-03T16:17:44.753Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380264750}
logger.ts:117 [2024-09-03T16:17:44.753Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT targets <auto-key> {"targetId":6,"canonicalId":"sheets/hxP3Qe7UywllnEPMqmn9F/items|f:next_id==null|ob:__name__asc","readTime":{"seconds":1725380264,"nanoseconds":752329000},"resumeToken":"CgkIyemhrpaniAM=","lastListenSequenceNumber":5127,"lastLimboFreeSnapshotVersion":{"seconds":1725380264,"nanoseconds":752329000},"query":{"structuredQuery":{"from":[{"collectionId":"items"}],"where":{"unaryFilter":{"field":{"fieldPath":"next_id"},"op":"IS_NULL"}},"orderBy":[{"field":{"fieldPath":"__name__"},"direction":"ASCENDING"}]},"parent":"projects/***/databases/(default)/documents/sheets/hxP3Qe7UywllnEPMqmn9F"}}
logger.ts:117 [2024-09-03T16:17:44.753Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380264753}
logger.ts:117 [2024-09-03T16:17:44.753Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 sending: {"database":"projects/***/databases/(default)","removeTarget":6}
logger.ts:117 [2024-09-03T16:17:44.760Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"REMOVE","targetIds":[5]}}
logger.ts:117 [2024-09-03T16:17:44.769Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"targetChangeType":"REMOVE","targetIds":[6]}}
logger.ts:117 [2024-09-03T16:17:47.657Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: updateClientMetadataAndTryBecomePrimary
logger.ts:117 [2024-09-03T16:17:47.657Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380264753}
logger.ts:117 [2024-09-03T16:17:47.658Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:47.658Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT clientMetadata <auto-key> {"clientId":"4sHCdgFyks2E9lRgg9qx","updateTimeMs":1725380267658,"networkEnabled":true,"inForeground":true}
logger.ts:117 [2024-09-03T16:17:47.658Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380264753}
logger.ts:117 [2024-09-03T16:17:47.659Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb GET owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380264753}
logger.ts:117 [2024-09-03T16:17:47.659Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Client '4sHCdgFyks2E9lRgg9qx' is not zombied in LocalStorage
logger.ts:117 [2024-09-03T16:17:47.659Z]  @firebase/firestore: Firestore (10.13.1): SimpleDb PUT owner owner {"ownerId":"4sHCdgFyks2E9lRgg9qx","allowTabSynchronization":false,"leaseTimestampMs":1725380267659}

important things: nothing error occouced. when the bug occurs, only the onSnapshot of the deletion of one of the two documents is returned; 45 seconds later, the onSnapshot of the other document is reflected with a delay.

[2024-09-03T16:16:59.804Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: notifyLocalViewChanges

// nothing occouced(45 seconds) (keepalive-only)

[2024-09-03T16:17:44.745Z]  @firebase/firestore: Firestore (10.13.1): WebChannelConnection RPC 'Listen' stream 0x7b073104 received: {"targetChange":{"resumeToken":"CgkIyemhrpaniAM=","readTime":"2024-09-03T16:17:44.752329Z"}}
logger.ts:117 [2024-09-03T16:17:44.745Z]  @firebase/firestore: Firestore (10.13.1): IndexedDbPersistence Starting transaction: Get last remote snapshot version
  • What is your DB location? This can be found in Firebase Console > Firestore Database > bottom of page
    • asia-northeast1 (tokyo).
  • What is the location of the machine running your script when reproducing the issue?
    • japan, tokyo.

@MarkDuckworth
Copy link
Contributor

MarkDuckworth commented Sep 3, 2024

Thanks for the logs, now I can also reproduce. This appears to be related to a client-side index. I don't have a root cause yet, but I do have a workaround. The workaround requires deleting any existing client side indexes and ensuring client side index auto creation is disabled for now.

  // Get client side index manager
  const indexManager = getPersistentCacheIndexManager(firestore);
  
  // Required to remove any client side indexes previously created
  deleteAllPersistentCacheIndexes(indexManager);
  
  // Should not be required because CSI auto creation is disabled by default,
  // but might be a good practice in case other areas of your app could
  // enable CSI
  disablePersistentCacheIndexAutoCreation(indexManager);

If you do need client side indexes for other collection, you could create those with the (deprecated) setIndexConfiguration(firestore, configuration).

@mochiya98
Copy link
Contributor Author

I have tried that code. I just added that code right after initializeFirestore in the reproduced code above, but the bug is still reproduced.

@MarkDuckworth
Copy link
Contributor

Interesting, can you confirm if there are any index configurations IndexedDB? Chrome Developer Tools > Application > Storage > IndexedDB > firestore/[DEFAULT]/yourprojectid/main > indexConfiguration.

@mochiya98
Copy link
Contributor Author

empty.

output.mp4

@MarkDuckworth
Copy link
Contributor

This error message is indicating issues with using persistent single tab cache in an app that is open in multiple tabs.

@firebase/firestore: Firestore (10.13.1): Error using user provided cache. Falling back to memory cache: FirebaseError: [code=failed-precondition]: Failed to obtain exclusive access to the persistence layer. To allow shared access, multi-tab synchronization has to be enabled in all tabs. ...

The slow getDocs() call may also be related to this.

Are you able to use the multi-tab persistence manager instead of the single-tab manager?

const firestore = initializeFirestore(app, {
  localCache: persistentLocalCache({
    tabManager: persistentMultipleTabManager({}),
  }),
});

@mochiya98
Copy link
Contributor Author

mochiya98 commented Sep 3, 2024

I was only illustrating that error as a possible fallback as to why the bug is not reproduced in your environment.
The bug occurs when there is no fallback and is completely unrelated.
I have tried many things. This is not a usage problem, it is a bug.
And I need to use a single tab manager. Because I am actually using this within SharedWorker. But don't get me wrong, this bug occurs regardless of whether it is a SharedWorker or not.

Just to be sure, I tried the persistentMultipleTabManager, but the bug still occurs.
Can you please report back to us after you confirm that the bug no longer occurs in your reproduction environment?

@mochiya98
Copy link
Contributor Author

Any update on this case?
I think there's a reason why it's exactly 45 seconds.

@MarkDuckworth
Copy link
Contributor

This one has been challenging to debug due to the frequency of occurrence. I believe it is triggered by an existence filter mismatch, which uses a probabilistic data structure and may explain the random occurrence.

The reproduction that you've provided has been helpful, but it's not clear if this rapid sequence of set/create, delete, getDocs is the only time it is seen. Do you use the same rapid sequence of calls in your app, or is this only for the reproduction? If so, what is the use case for this sequence of calls?

@mochiya98
Copy link
Contributor Author

This reproduces the actual processing flow of the product.
The collection is like a singly linked list. The problem is triggered when deleting multiple items, including the last item, and then trying to add an item at the end immediately after.
Waiting a few seconds will not cause problems, but the problem is that there is no way to determine how long to wait. Waiting too long is unacceptable because it detracts from the user experience.
This is a serious impediment to the use of firestore in our product and we hope that the problem will be fixed.

@mochiya98
Copy link
Contributor Author

Any update on this case?
It needs to be fixed as soon as possible.

@MarkDuckworth
Copy link
Contributor

@mochiya98, We've had a handful of people look at this issue. We are trying to move it forward. But given that the issue does not appear to be widespread, and that we have to prioritize the fix among other high-priority work, I can't provide you with a timeline for a fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants