-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
3634 lines (3634 loc) · 185 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
BraveSoftware/*
chromium/BrowserMetrics-spare.pma
chromium/chrome_debug.log
chromium/First Run
chromium/first_party_sets.db
chromium/first_party_sets.db-journal
chromium/Local State
chromium/SingletonCookie
chromium/SingletonLock
chromium/SingletonSocket
chromium/Variations
chromium/AutofillStates/2024.7.12.235938/AD
chromium/AutofillStates/2024.7.12.235938/AE
chromium/AutofillStates/2024.7.12.235938/AF
chromium/AutofillStates/2024.7.12.235938/AG
chromium/AutofillStates/2024.7.12.235938/AL
chromium/AutofillStates/2024.7.12.235938/AM
chromium/AutofillStates/2024.7.12.235938/AO
chromium/AutofillStates/2024.7.12.235938/AR
chromium/AutofillStates/2024.7.12.235938/AS
chromium/AutofillStates/2024.7.12.235938/AT
chromium/AutofillStates/2024.7.12.235938/AU
chromium/AutofillStates/2024.7.12.235938/AX
chromium/AutofillStates/2024.7.12.235938/AZ
chromium/AutofillStates/2024.7.12.235938/BA
chromium/AutofillStates/2024.7.12.235938/BB
chromium/AutofillStates/2024.7.12.235938/BD
chromium/AutofillStates/2024.7.12.235938/BE
chromium/AutofillStates/2024.7.12.235938/BF
chromium/AutofillStates/2024.7.12.235938/BG
chromium/AutofillStates/2024.7.12.235938/BH
chromium/AutofillStates/2024.7.12.235938/BI
chromium/AutofillStates/2024.7.12.235938/BJ
chromium/AutofillStates/2024.7.12.235938/BM
chromium/AutofillStates/2024.7.12.235938/BN
chromium/AutofillStates/2024.7.12.235938/BO
chromium/AutofillStates/2024.7.12.235938/BQ
chromium/AutofillStates/2024.7.12.235938/BR
chromium/AutofillStates/2024.7.12.235938/BS
chromium/AutofillStates/2024.7.12.235938/BT
chromium/AutofillStates/2024.7.12.235938/BW
chromium/AutofillStates/2024.7.12.235938/BY
chromium/AutofillStates/2024.7.12.235938/BZ
chromium/AutofillStates/2024.7.12.235938/CA
chromium/AutofillStates/2024.7.12.235938/CC
chromium/AutofillStates/2024.7.12.235938/CD
chromium/AutofillStates/2024.7.12.235938/CF
chromium/AutofillStates/2024.7.12.235938/CG
chromium/AutofillStates/2024.7.12.235938/CH
chromium/AutofillStates/2024.7.12.235938/CI
chromium/AutofillStates/2024.7.12.235938/CL
chromium/AutofillStates/2024.7.12.235938/CM
chromium/AutofillStates/2024.7.12.235938/CN
chromium/AutofillStates/2024.7.12.235938/CO
chromium/AutofillStates/2024.7.12.235938/CR
chromium/AutofillStates/2024.7.12.235938/CU
chromium/AutofillStates/2024.7.12.235938/CV
chromium/AutofillStates/2024.7.12.235938/CX
chromium/AutofillStates/2024.7.12.235938/CY
chromium/AutofillStates/2024.7.12.235938/CZ
chromium/AutofillStates/2024.7.12.235938/DE
chromium/AutofillStates/2024.7.12.235938/DJ
chromium/AutofillStates/2024.7.12.235938/DK
chromium/AutofillStates/2024.7.12.235938/DM
chromium/AutofillStates/2024.7.12.235938/DO
chromium/AutofillStates/2024.7.12.235938/DZ
chromium/AutofillStates/2024.7.12.235938/EC
chromium/AutofillStates/2024.7.12.235938/EE
chromium/AutofillStates/2024.7.12.235938/EG
chromium/AutofillStates/2024.7.12.235938/EH
chromium/AutofillStates/2024.7.12.235938/ER
chromium/AutofillStates/2024.7.12.235938/ES
chromium/AutofillStates/2024.7.12.235938/ET
chromium/AutofillStates/2024.7.12.235938/FI
chromium/AutofillStates/2024.7.12.235938/FJ
chromium/AutofillStates/2024.7.12.235938/FM
chromium/AutofillStates/2024.7.12.235938/FO
chromium/AutofillStates/2024.7.12.235938/FR
chromium/AutofillStates/2024.7.12.235938/GA
chromium/AutofillStates/2024.7.12.235938/GB
chromium/AutofillStates/2024.7.12.235938/GD
chromium/AutofillStates/2024.7.12.235938/GE
chromium/AutofillStates/2024.7.12.235938/GF
chromium/AutofillStates/2024.7.12.235938/GG
chromium/AutofillStates/2024.7.12.235938/GH
chromium/AutofillStates/2024.7.12.235938/GL
chromium/AutofillStates/2024.7.12.235938/GM
chromium/AutofillStates/2024.7.12.235938/GN
chromium/AutofillStates/2024.7.12.235938/GP
chromium/AutofillStates/2024.7.12.235938/GQ
chromium/AutofillStates/2024.7.12.235938/GR
chromium/AutofillStates/2024.7.12.235938/GT
chromium/AutofillStates/2024.7.12.235938/GW
chromium/AutofillStates/2024.7.12.235938/GY
chromium/AutofillStates/2024.7.12.235938/HK
chromium/AutofillStates/2024.7.12.235938/HN
chromium/AutofillStates/2024.7.12.235938/HR
chromium/AutofillStates/2024.7.12.235938/HT
chromium/AutofillStates/2024.7.12.235938/HU
chromium/AutofillStates/2024.7.12.235938/ID
chromium/AutofillStates/2024.7.12.235938/IE
chromium/AutofillStates/2024.7.12.235938/IL
chromium/AutofillStates/2024.7.12.235938/IM
chromium/AutofillStates/2024.7.12.235938/IN
chromium/AutofillStates/2024.7.12.235938/IQ
chromium/AutofillStates/2024.7.12.235938/IR
chromium/AutofillStates/2024.7.12.235938/IS
chromium/AutofillStates/2024.7.12.235938/IT
chromium/AutofillStates/2024.7.12.235938/JE
chromium/AutofillStates/2024.7.12.235938/JM
chromium/AutofillStates/2024.7.12.235938/JO
chromium/AutofillStates/2024.7.12.235938/JP
chromium/AutofillStates/2024.7.12.235938/KE
chromium/AutofillStates/2024.7.12.235938/KG
chromium/AutofillStates/2024.7.12.235938/KH
chromium/AutofillStates/2024.7.12.235938/KI
chromium/AutofillStates/2024.7.12.235938/KM
chromium/AutofillStates/2024.7.12.235938/KN
chromium/AutofillStates/2024.7.12.235938/KP
chromium/AutofillStates/2024.7.12.235938/KR
chromium/AutofillStates/2024.7.12.235938/KW
chromium/AutofillStates/2024.7.12.235938/KY
chromium/AutofillStates/2024.7.12.235938/KZ
chromium/AutofillStates/2024.7.12.235938/LA
chromium/AutofillStates/2024.7.12.235938/LB
chromium/AutofillStates/2024.7.12.235938/LC
chromium/AutofillStates/2024.7.12.235938/LI
chromium/AutofillStates/2024.7.12.235938/LK
chromium/AutofillStates/2024.7.12.235938/LR
chromium/AutofillStates/2024.7.12.235938/LS
chromium/AutofillStates/2024.7.12.235938/LT
chromium/AutofillStates/2024.7.12.235938/LU
chromium/AutofillStates/2024.7.12.235938/LV
chromium/AutofillStates/2024.7.12.235938/LY
chromium/AutofillStates/2024.7.12.235938/MA
chromium/AutofillStates/2024.7.12.235938/manifest.fingerprint
chromium/AutofillStates/2024.7.12.235938/manifest.json
chromium/AutofillStates/2024.7.12.235938/MD
chromium/AutofillStates/2024.7.12.235938/ME
chromium/AutofillStates/2024.7.12.235938/MG
chromium/AutofillStates/2024.7.12.235938/MH
chromium/AutofillStates/2024.7.12.235938/MK
chromium/AutofillStates/2024.7.12.235938/ML
chromium/AutofillStates/2024.7.12.235938/MM
chromium/AutofillStates/2024.7.12.235938/MN
chromium/AutofillStates/2024.7.12.235938/MP
chromium/AutofillStates/2024.7.12.235938/MQ
chromium/AutofillStates/2024.7.12.235938/MR
chromium/AutofillStates/2024.7.12.235938/MS
chromium/AutofillStates/2024.7.12.235938/MU
chromium/AutofillStates/2024.7.12.235938/MV
chromium/AutofillStates/2024.7.12.235938/MW
chromium/AutofillStates/2024.7.12.235938/MX
chromium/AutofillStates/2024.7.12.235938/MY
chromium/AutofillStates/2024.7.12.235938/MZ
chromium/AutofillStates/2024.7.12.235938/NA
chromium/AutofillStates/2024.7.12.235938/NC
chromium/AutofillStates/2024.7.12.235938/NE
chromium/AutofillStates/2024.7.12.235938/NG
chromium/AutofillStates/2024.7.12.235938/NI
chromium/AutofillStates/2024.7.12.235938/NL
chromium/AutofillStates/2024.7.12.235938/NO
chromium/AutofillStates/2024.7.12.235938/NP
chromium/AutofillStates/2024.7.12.235938/NR
chromium/AutofillStates/2024.7.12.235938/NU
chromium/AutofillStates/2024.7.12.235938/NZ
chromium/AutofillStates/2024.7.12.235938/OM
chromium/AutofillStates/2024.7.12.235938/PA
chromium/AutofillStates/2024.7.12.235938/PE
chromium/AutofillStates/2024.7.12.235938/PF
chromium/AutofillStates/2024.7.12.235938/PG
chromium/AutofillStates/2024.7.12.235938/PH
chromium/AutofillStates/2024.7.12.235938/PK
chromium/AutofillStates/2024.7.12.235938/PL
chromium/AutofillStates/2024.7.12.235938/PR
chromium/AutofillStates/2024.7.12.235938/PS
chromium/AutofillStates/2024.7.12.235938/PT
chromium/AutofillStates/2024.7.12.235938/PW
chromium/AutofillStates/2024.7.12.235938/PY
chromium/AutofillStates/2024.7.12.235938/QA
chromium/AutofillStates/2024.7.12.235938/RE
chromium/AutofillStates/2024.7.12.235938/RO
chromium/AutofillStates/2024.7.12.235938/RS
chromium/AutofillStates/2024.7.12.235938/RU
chromium/AutofillStates/2024.7.12.235938/RW
chromium/AutofillStates/2024.7.12.235938/SA
chromium/AutofillStates/2024.7.12.235938/SB
chromium/AutofillStates/2024.7.12.235938/SC
chromium/AutofillStates/2024.7.12.235938/SD
chromium/AutofillStates/2024.7.12.235938/SE
chromium/AutofillStates/2024.7.12.235938/SH
chromium/AutofillStates/2024.7.12.235938/SI
chromium/AutofillStates/2024.7.12.235938/SJ
chromium/AutofillStates/2024.7.12.235938/SK
chromium/AutofillStates/2024.7.12.235938/SL
chromium/AutofillStates/2024.7.12.235938/SM
chromium/AutofillStates/2024.7.12.235938/SN
chromium/AutofillStates/2024.7.12.235938/SO
chromium/AutofillStates/2024.7.12.235938/SR
chromium/AutofillStates/2024.7.12.235938/SS
chromium/AutofillStates/2024.7.12.235938/ST
chromium/AutofillStates/2024.7.12.235938/SV
chromium/AutofillStates/2024.7.12.235938/SY
chromium/AutofillStates/2024.7.12.235938/SZ
chromium/AutofillStates/2024.7.12.235938/TC
chromium/AutofillStates/2024.7.12.235938/TD
chromium/AutofillStates/2024.7.12.235938/TG
chromium/AutofillStates/2024.7.12.235938/TH
chromium/AutofillStates/2024.7.12.235938/TJ
chromium/AutofillStates/2024.7.12.235938/TK
chromium/AutofillStates/2024.7.12.235938/TL
chromium/AutofillStates/2024.7.12.235938/TM
chromium/AutofillStates/2024.7.12.235938/TN
chromium/AutofillStates/2024.7.12.235938/TO
chromium/AutofillStates/2024.7.12.235938/TR
chromium/AutofillStates/2024.7.12.235938/TT
chromium/AutofillStates/2024.7.12.235938/TV
chromium/AutofillStates/2024.7.12.235938/TW
chromium/AutofillStates/2024.7.12.235938/TZ
chromium/AutofillStates/2024.7.12.235938/UA
chromium/AutofillStates/2024.7.12.235938/UG
chromium/AutofillStates/2024.7.12.235938/US
chromium/AutofillStates/2024.7.12.235938/UY
chromium/AutofillStates/2024.7.12.235938/UZ
chromium/AutofillStates/2024.7.12.235938/VC
chromium/AutofillStates/2024.7.12.235938/VE
chromium/AutofillStates/2024.7.12.235938/VG
chromium/AutofillStates/2024.7.12.235938/VI
chromium/AutofillStates/2024.7.12.235938/VN
chromium/AutofillStates/2024.7.12.235938/VU
chromium/AutofillStates/2024.7.12.235938/WF
chromium/AutofillStates/2024.7.12.235938/WS
chromium/AutofillStates/2024.7.12.235938/XK
chromium/AutofillStates/2024.7.12.235938/YE
chromium/AutofillStates/2024.7.12.235938/YT
chromium/AutofillStates/2024.7.12.235938/ZA
chromium/AutofillStates/2024.7.12.235938/ZM
chromium/AutofillStates/2024.7.12.235938/ZW
chromium/AutofillStates/2024.7.12.235938/_metadata/verified_contents.json
chromium/CertificateRevocation/9332/crl-set
chromium/CertificateRevocation/9332/LICENSE
chromium/CertificateRevocation/9332/manifest.fingerprint
chromium/CertificateRevocation/9332/manifest.json
chromium/CertificateRevocation/9332/_metadata/verified_contents.json
chromium/Crowd Deny/2023.11.29.1201/manifest.fingerprint
chromium/Crowd Deny/2023.11.29.1201/manifest.json
chromium/Crowd Deny/2023.11.29.1201/Preload Data
chromium/Crowd Deny/2023.11.29.1201/_metadata/verified_contents.json
chromium/Default/Affiliation Database
chromium/Default/Affiliation Database-journal
chromium/Default/BrowsingTopicsSiteData
chromium/Default/BrowsingTopicsSiteData-journal
chromium/Default/BrowsingTopicsState
chromium/Default/Cookies
chromium/Default/Cookies-journal
chromium/Default/DIPS
chromium/Default/DIPS-journal
chromium/Default/Favicons
chromium/Default/Favicons-journal
chromium/Default/heavy_ad_intervention_opt_out.db
chromium/Default/heavy_ad_intervention_opt_out.db-journal
chromium/Default/History
chromium/Default/History-journal
chromium/Default/LOCK
chromium/Default/LOG
chromium/Default/LOG.old
chromium/Default/Login Data
chromium/Default/Login Data For Account
chromium/Default/Login Data For Account-journal
chromium/Default/Login Data-journal
chromium/Default/Network Action Predictor
chromium/Default/Network Action Predictor-journal
chromium/Default/Network Persistent State
chromium/Default/Preferences
chromium/Default/PreferredApps
chromium/Default/README
chromium/Default/Reporting and NEL
chromium/Default/Reporting and NEL-journal
chromium/Default/Safe Browsing Cookies
chromium/Default/Safe Browsing Cookies-journal
chromium/Default/SCT Auditing Pending Reports
chromium/Default/Secure Preferences
chromium/Default/SharedStorage
chromium/Default/SharedStorage-wal
chromium/Default/Shortcuts
chromium/Default/Shortcuts-journal
chromium/Default/Top Sites
chromium/Default/Top Sites-journal
chromium/Default/TransportSecurity
chromium/Default/Trust Tokens
chromium/Default/Trust Tokens-journal
chromium/Default/trusted_vault.pb
chromium/Default/Visited Links
chromium/Default/Web Data
chromium/Default/Web Data-journal
chromium/Default/AutofillStrikeDatabase/LOCK
chromium/Default/AutofillStrikeDatabase/LOG
chromium/Default/AutofillStrikeDatabase/LOG.old
chromium/Default/BudgetDatabase/LOCK
chromium/Default/BudgetDatabase/LOG
chromium/Default/BudgetDatabase/LOG.old
chromium/Default/ClientCertificates/LOCK
chromium/Default/ClientCertificates/LOG
chromium/Default/ClientCertificates/LOG.old
chromium/Default/DawnGraphiteCache/data_0
chromium/Default/DawnGraphiteCache/data_1
chromium/Default/DawnGraphiteCache/data_2
chromium/Default/DawnGraphiteCache/data_3
chromium/Default/DawnGraphiteCache/index
chromium/Default/DawnWebGPUCache/data_0
chromium/Default/DawnWebGPUCache/data_1
chromium/Default/DawnWebGPUCache/data_2
chromium/Default/DawnWebGPUCache/data_3
chromium/Default/DawnWebGPUCache/index
chromium/Default/Download Service/EntryDB/LOCK
chromium/Default/Download Service/EntryDB/LOG
chromium/Default/Download Service/EntryDB/LOG.old
chromium/Default/Extension Rules/000003.log
chromium/Default/Extension Rules/CURRENT
chromium/Default/Extension Rules/LOCK
chromium/Default/Extension Rules/LOG
chromium/Default/Extension Rules/MANIFEST-000001
chromium/Default/Extension Scripts/000003.log
chromium/Default/Extension Scripts/CURRENT
chromium/Default/Extension Scripts/LOCK
chromium/Default/Extension Scripts/LOG
chromium/Default/Extension Scripts/MANIFEST-000001
chromium/Default/Extension State/000003.log
chromium/Default/Extension State/CURRENT
chromium/Default/Extension State/LOCK
chromium/Default/Extension State/LOG
chromium/Default/Extension State/LOG.old
chromium/Default/Extension State/MANIFEST-000001
chromium/Default/Feature Engagement Tracker/AvailabilityDB/LOCK
chromium/Default/Feature Engagement Tracker/AvailabilityDB/LOG
chromium/Default/Feature Engagement Tracker/AvailabilityDB/LOG.old
chromium/Default/Feature Engagement Tracker/EventDB/LOCK
chromium/Default/Feature Engagement Tracker/EventDB/LOG
chromium/Default/Feature Engagement Tracker/EventDB/LOG.old
chromium/Default/GCM Store/Encryption/000003.log
chromium/Default/GCM Store/Encryption/CURRENT
chromium/Default/GCM Store/Encryption/LOCK
chromium/Default/GCM Store/Encryption/LOG
chromium/Default/GCM Store/Encryption/LOG.old
chromium/Default/GCM Store/Encryption/MANIFEST-000001
chromium/Default/GPUCache/data_0
chromium/Default/GPUCache/data_1
chromium/Default/GPUCache/data_2
chromium/Default/GPUCache/data_3
chromium/Default/GPUCache/index
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.blob/1/00/d2
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.leveldb/000013.ldb
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.leveldb/000014.log
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.leveldb/000015.ldb
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.leveldb/CURRENT
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.leveldb/LOCK
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.leveldb/LOG
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.leveldb/LOG.old
chromium/Default/IndexedDB/https_xpui.app.spotify.com_0.indexeddb.leveldb/MANIFEST-000001
chromium/Default/Local Storage/leveldb/000004.log
chromium/Default/Local Storage/leveldb/000005.ldb
chromium/Default/Local Storage/leveldb/CURRENT
chromium/Default/Local Storage/leveldb/LOCK
chromium/Default/Local Storage/leveldb/LOG
chromium/Default/Local Storage/leveldb/LOG.old
chromium/Default/Local Storage/leveldb/MANIFEST-000001
chromium/Default/PersistentOriginTrials/LOCK
chromium/Default/PersistentOriginTrials/LOG
chromium/Default/PersistentOriginTrials/LOG.old
chromium/Default/Segmentation Platform/SegmentInfoDB/LOCK
chromium/Default/Segmentation Platform/SegmentInfoDB/LOG
chromium/Default/Segmentation Platform/SegmentInfoDB/LOG.old
chromium/Default/Segmentation Platform/SignalDB/LOCK
chromium/Default/Segmentation Platform/SignalDB/LOG
chromium/Default/Segmentation Platform/SignalDB/LOG.old
chromium/Default/Segmentation Platform/SignalStorageConfigDB/LOCK
chromium/Default/Segmentation Platform/SignalStorageConfigDB/LOG
chromium/Default/Segmentation Platform/SignalStorageConfigDB/LOG.old
chromium/Default/Session Storage/000003.log
chromium/Default/Session Storage/CURRENT
chromium/Default/Session Storage/LOCK
chromium/Default/Session Storage/LOG
chromium/Default/Session Storage/LOG.old
chromium/Default/Session Storage/MANIFEST-000001
chromium/Default/Sessions/Session_13377010422291961
chromium/Default/Sessions/Session_13377011737802967
chromium/Default/Sessions/Tabs_13377011737824480
chromium/Default/Shared Dictionary/db
chromium/Default/Shared Dictionary/db-journal
chromium/Default/Shared Dictionary/cache/index
chromium/Default/Shared Dictionary/cache/index-dir/the-real-index
chromium/Default/Site Characteristics Database/000003.log
chromium/Default/Site Characteristics Database/CURRENT
chromium/Default/Site Characteristics Database/LOCK
chromium/Default/Site Characteristics Database/LOG
chromium/Default/Site Characteristics Database/LOG.old
chromium/Default/Site Characteristics Database/MANIFEST-000001
chromium/Default/Sync Data/LevelDB/000003.log
chromium/Default/Sync Data/LevelDB/CURRENT
chromium/Default/Sync Data/LevelDB/LOCK
chromium/Default/Sync Data/LevelDB/LOG
chromium/Default/Sync Data/LevelDB/LOG.old
chromium/Default/Sync Data/LevelDB/MANIFEST-000001
chromium/Default/WebStorage/QuotaManager
chromium/Default/WebStorage/QuotaManager-journal
chromium/Default/commerce_subscription_db/LOCK
chromium/Default/commerce_subscription_db/LOG
chromium/Default/commerce_subscription_db/LOG.old
chromium/Default/discounts_db/LOCK
chromium/Default/discounts_db/LOG
chromium/Default/discounts_db/LOG.old
chromium/Default/optimization_guide_hint_cache_store/LOCK
chromium/Default/optimization_guide_hint_cache_store/LOG
chromium/Default/optimization_guide_hint_cache_store/LOG.old
chromium/Default/parcel_tracking_db/LOCK
chromium/Default/parcel_tracking_db/LOG
chromium/Default/parcel_tracking_db/LOG.old
chromium/Default/shared_proto_db/000003.log
chromium/Default/shared_proto_db/CURRENT
chromium/Default/shared_proto_db/LOCK
chromium/Default/shared_proto_db/LOG
chromium/Default/shared_proto_db/LOG.old
chromium/Default/shared_proto_db/MANIFEST-000001
chromium/Default/shared_proto_db/metadata/000003.log
chromium/Default/shared_proto_db/metadata/CURRENT
chromium/Default/shared_proto_db/metadata/LOCK
chromium/Default/shared_proto_db/metadata/LOG
chromium/Default/shared_proto_db/metadata/LOG.old
chromium/Default/shared_proto_db/metadata/MANIFEST-000001
chromium/FileTypePolicies/67/download_file_types.pb
chromium/FileTypePolicies/67/manifest.fingerprint
chromium/FileTypePolicies/67/manifest.json
chromium/FileTypePolicies/67/_metadata/verified_contents.json
chromium/FirstPartySetsPreloaded/2024.11.8.0/LICENSE
chromium/FirstPartySetsPreloaded/2024.11.8.0/manifest.fingerprint
chromium/FirstPartySetsPreloaded/2024.11.8.0/manifest.json
chromium/FirstPartySetsPreloaded/2024.11.8.0/sets.json
chromium/FirstPartySetsPreloaded/2024.11.8.0/_metadata/verified_contents.json
chromium/GrShaderCache/data_0
chromium/GrShaderCache/data_1
chromium/GrShaderCache/data_2
chromium/GrShaderCache/data_3
chromium/GrShaderCache/index
chromium/GraphiteDawnCache/data_0
chromium/GraphiteDawnCache/data_1
chromium/GraphiteDawnCache/data_2
chromium/GraphiteDawnCache/data_3
chromium/GraphiteDawnCache/index
chromium/MEIPreload/1.0.7.1652906823/manifest.fingerprint
chromium/MEIPreload/1.0.7.1652906823/manifest.json
chromium/MEIPreload/1.0.7.1652906823/preloaded_data.pb
chromium/MEIPreload/1.0.7.1652906823/_metadata/verified_contents.json
chromium/OnDeviceHeadSuggestModel/20241111.695153350.14/cr_en-us_500000_index.bin
chromium/OnDeviceHeadSuggestModel/20241111.695153350.14/manifest.fingerprint
chromium/OnDeviceHeadSuggestModel/20241111.695153350.14/manifest.json
chromium/OnDeviceHeadSuggestModel/20241111.695153350.14/_metadata/verified_contents.json
chromium/OptimizationHints/476/manifest.fingerprint
chromium/OptimizationHints/476/manifest.json
chromium/OptimizationHints/476/optimization-hints.pb
chromium/OptimizationHints/476/_metadata/verified_contents.json
chromium/OriginTrials/1.0.0.17/manifest.fingerprint
chromium/OriginTrials/1.0.0.17/manifest.json
chromium/OriginTrials/1.0.0.17/_metadata/verified_contents.json
chromium/PKIMetadata/1143/crs.pb
chromium/PKIMetadata/1143/ct_config.pb
chromium/PKIMetadata/1143/kp_pinslist.pb
chromium/PKIMetadata/1143/manifest.fingerprint
chromium/PKIMetadata/1143/manifest.json
chromium/PKIMetadata/1143/_metadata/verified_contents.json
chromium/PrivacySandboxAttestationsPreloaded/2024.11.18.0/manifest.fingerprint
chromium/PrivacySandboxAttestationsPreloaded/2024.11.18.0/manifest.json
chromium/PrivacySandboxAttestationsPreloaded/2024.11.18.0/privacy-sandbox-attestations.dat
chromium/PrivacySandboxAttestationsPreloaded/2024.11.18.0/_metadata/verified_contents.json
chromium/SSLErrorAssistant/7/manifest.fingerprint
chromium/SSLErrorAssistant/7/manifest.json
chromium/SSLErrorAssistant/7/ssl_error_assistant.pb
chromium/SSLErrorAssistant/7/_metadata/verified_contents.json
chromium/SafetyTips/3051/manifest.fingerprint
chromium/SafetyTips/3051/manifest.json
chromium/SafetyTips/3051/safety_tips.pb
chromium/SafetyTips/3051/_metadata/verified_contents.json
chromium/ShaderCache/data_0
chromium/ShaderCache/data_1
chromium/ShaderCache/data_2
chromium/ShaderCache/data_3
chromium/ShaderCache/index
chromium/Subresource Filter/Indexed Rules/36/9.52.0/Ruleset Data
chromium/Subresource Filter/Unindexed Rules/9.52.0/Filtering Rules
chromium/Subresource Filter/Unindexed Rules/9.52.0/LICENSE.txt
chromium/Subresource Filter/Unindexed Rules/9.52.0/manifest.fingerprint
chromium/Subresource Filter/Unindexed Rules/9.52.0/manifest.json
chromium/Subresource Filter/Unindexed Rules/9.52.0/_metadata/verified_contents.json
chromium/TpcdMetadata/2024.11.23.1/manifest.fingerprint
chromium/TpcdMetadata/2024.11.23.1/manifest.json
chromium/TpcdMetadata/2024.11.23.1/metadata.pb
chromium/TpcdMetadata/2024.11.23.1/_metadata/verified_contents.json
chromium/TrustTokenKeyCommitments/2024.10.11.1/keys.json
chromium/TrustTokenKeyCommitments/2024.10.11.1/LICENSE
chromium/TrustTokenKeyCommitments/2024.10.11.1/manifest.fingerprint
chromium/TrustTokenKeyCommitments/2024.10.11.1/manifest.json
chromium/TrustTokenKeyCommitments/2024.10.11.1/_metadata/verified_contents.json
chromium/WidevineCdm/latest-component-updated-widevine-cdm
chromium/WidevineCdm/4.10.2830.0/LICENSE
chromium/WidevineCdm/4.10.2830.0/manifest.fingerprint
chromium/WidevineCdm/4.10.2830.0/manifest.json
chromium/WidevineCdm/4.10.2830.0/_metadata/verified_contents.json
chromium/WidevineCdm/4.10.2830.0/_platform_specific/linux_x64/libwidevinecdm.so
chromium/ZxcvbnData/3/english_wikipedia.txt
chromium/ZxcvbnData/3/female_names.txt
chromium/ZxcvbnData/3/male_names.txt
chromium/ZxcvbnData/3/manifest.fingerprint
chromium/ZxcvbnData/3/manifest.json
chromium/ZxcvbnData/3/passwords.txt
chromium/ZxcvbnData/3/ranked_dicts
chromium/ZxcvbnData/3/surnames.txt
chromium/ZxcvbnData/3/us_tv_and_film.txt
chromium/ZxcvbnData/3/_metadata/verified_contents.json
chromium/component_crx_cache/eeigpngbgcognadeebkilcpcaedhellh_1.8814cb6cab024b119ab991ad7acd74f4df7bc68bbf86c0903c8be9852a5baa55
chromium/component_crx_cache/efniojlnjndmcbiieegkicadnoecjjef_1.508b6db521e9fff5ab7a8944f9bcdf2a101eccfc6ad5f24bb05620001d376d7e
chromium/component_crx_cache/gcmjkmgdlgnkkcocmoeiminaijmmjnii_1.b48b30af5ce18c96128bfff9d2755c7932a1f32adc66f68322f7dd505db9626f
chromium/component_crx_cache/ggkkehgbnfjpeggfpleeakpidbkibbmn_1.905f83845e25579fd4c6ae4bdc81a2740a216023f856918045ced4508329c941
chromium/component_crx_cache/giekcmmlnklenlaomppkphknjmnnpneh_1.3eb16d6c28b502ac4cfee8f4a148df05f4d93229fa36a71db8b08d06329ff18a
chromium/component_crx_cache/gonpemdgkjcecdgbnaabipppbmgfggbe_1.03cccbb22b17080279ea1707c9ab093c59f4f4dd09580c841cfa794cb372228d
chromium/component_crx_cache/hfnkpimlhhgieaddgfemjhofmfblmnib_1.c7674ad0bd7d9430e3d88e68add688181b61f4c8cc24fb78f2b91109621394ad
chromium/component_crx_cache/jamhcnnkihinmdlkakkaopbjbbcngflc_1.c52c62a7c50daf7d3f73ec16977cd4b0ea401710807d5dbe3850941dd1b73a70
chromium/component_crx_cache/jflhchccmppkfebkiaminageehmchikm_1.8be46523b649fa0903faa7ba82030c5c60d29fa2016de59141a44b0e4a3dcdb7
chromium/component_crx_cache/jflookgnkcckhobaglndicnbbgbonegd_1.8373e1ca5f29e5a21b85269b50f71b9c927e639e58fdaf29fd1d6911f5843e3e
chromium/component_crx_cache/khaoiebndkojlmppeemjhbpbandiljpe_1.05399c5840405f4af2454470ceccaa3d097f07e271705cf37c1e5559ce793eeb
chromium/component_crx_cache/kiabhabjdbkjdpjbpigfodbdjmbglcoo_1.fbd0d7206f8650d442eb772a03839aabc778b0225aee04589ca8cdad2aa99cca
chromium/component_crx_cache/laoigpblnllgcgjnjnllmfolckpjlhki_1.29661be65c8fb50d3d4df2fe040a1cc6dd525f50a95850aae6a191301c3de744
chromium/component_crx_cache/llkgjffcdpffmhiakmfcdcblohccpfmo_1.2638e3c2d1fa1d417bfdc31dd21bc938f106d3b436a6488b41b014ca9e2b7541
chromium/component_crx_cache/lmelglejhemejginpboagddgdfbepgmp_1.b17482c18814a2faff9ab6765b437f06d036f883ad4ea2fd1134d74a9723b8ce
chromium/component_crx_cache/niikhdgajlphfehepabhhblakbdgeefj_1.48756b45c35801c6347be4597c0d5ff9871d37aa4d7a9376e84855f23a669475
chromium/component_crx_cache/obedbbhbpmojnkanicioggnmelmoomoc_1.8fd7862f4e0afbfdcffd0d997ed5cecee23a73206ab7620f16648326f3e2b960
chromium/component_crx_cache/oimompecagnajdejgnnjijobebaeigek_1.440875847b5cd49226587533608d33de7de4e906f446a63828cc3321a37db13e
chromium/component_crx_cache/ojhpjlocmbogdgmfpkhlaaeamibhnphh_1.545666a4efd056351597bb386aea1368105ededc976ed5650d8682daab9f37ff
chromium/hyphen-data/120.0.6050.0/hyph-af.hyb
chromium/hyphen-data/120.0.6050.0/hyph-as.hyb
chromium/hyphen-data/120.0.6050.0/hyph-be.hyb
chromium/hyphen-data/120.0.6050.0/hyph-bg.hyb
chromium/hyphen-data/120.0.6050.0/hyph-bn.hyb
chromium/hyphen-data/120.0.6050.0/hyph-cs.hyb
chromium/hyphen-data/120.0.6050.0/hyph-cu.hyb
chromium/hyphen-data/120.0.6050.0/hyph-cy.hyb
chromium/hyphen-data/120.0.6050.0/hyph-da.hyb
chromium/hyphen-data/120.0.6050.0/hyph-de-1901.hyb
chromium/hyphen-data/120.0.6050.0/hyph-de-1996.hyb
chromium/hyphen-data/120.0.6050.0/hyph-de-ch-1901.hyb
chromium/hyphen-data/120.0.6050.0/hyph-el.hyb
chromium/hyphen-data/120.0.6050.0/hyph-en-gb.hyb
chromium/hyphen-data/120.0.6050.0/hyph-en-us.hyb
chromium/hyphen-data/120.0.6050.0/hyph-es.hyb
chromium/hyphen-data/120.0.6050.0/hyph-et.hyb
chromium/hyphen-data/120.0.6050.0/hyph-eu.hyb
chromium/hyphen-data/120.0.6050.0/hyph-fr.hyb
chromium/hyphen-data/120.0.6050.0/hyph-ga.hyb
chromium/hyphen-data/120.0.6050.0/hyph-gl.hyb
chromium/hyphen-data/120.0.6050.0/hyph-gu.hyb
chromium/hyphen-data/120.0.6050.0/hyph-hi.hyb
chromium/hyphen-data/120.0.6050.0/hyph-hr.hyb
chromium/hyphen-data/120.0.6050.0/hyph-hu.hyb
chromium/hyphen-data/120.0.6050.0/hyph-hy.hyb
chromium/hyphen-data/120.0.6050.0/hyph-it.hyb
chromium/hyphen-data/120.0.6050.0/hyph-ka.hyb
chromium/hyphen-data/120.0.6050.0/hyph-kn.hyb
chromium/hyphen-data/120.0.6050.0/hyph-la.hyb
chromium/hyphen-data/120.0.6050.0/hyph-lt.hyb
chromium/hyphen-data/120.0.6050.0/hyph-lv.hyb
chromium/hyphen-data/120.0.6050.0/hyph-ml.hyb
chromium/hyphen-data/120.0.6050.0/hyph-mn-cyrl.hyb
chromium/hyphen-data/120.0.6050.0/hyph-mr.hyb
chromium/hyphen-data/120.0.6050.0/hyph-mul-ethi.hyb
chromium/hyphen-data/120.0.6050.0/hyph-nb.hyb
chromium/hyphen-data/120.0.6050.0/hyph-nl.hyb
chromium/hyphen-data/120.0.6050.0/hyph-nn.hyb
chromium/hyphen-data/120.0.6050.0/hyph-or.hyb
chromium/hyphen-data/120.0.6050.0/hyph-pa.hyb
chromium/hyphen-data/120.0.6050.0/hyph-pt.hyb
chromium/hyphen-data/120.0.6050.0/hyph-ru.hyb
chromium/hyphen-data/120.0.6050.0/hyph-sk.hyb
chromium/hyphen-data/120.0.6050.0/hyph-sl.hyb
chromium/hyphen-data/120.0.6050.0/hyph-sq.hyb
chromium/hyphen-data/120.0.6050.0/hyph-sv.hyb
chromium/hyphen-data/120.0.6050.0/hyph-ta.hyb
chromium/hyphen-data/120.0.6050.0/hyph-te.hyb
chromium/hyphen-data/120.0.6050.0/hyph-tk.hyb
chromium/hyphen-data/120.0.6050.0/hyph-uk.hyb
chromium/hyphen-data/120.0.6050.0/hyph-und-ethi.hyb
chromium/hyphen-data/120.0.6050.0/manifest.fingerprint
chromium/hyphen-data/120.0.6050.0/manifest.json
chromium/hyphen-data/120.0.6050.0/_metadata/verified_contents.json
chromium/segmentation_platform/ukm_db
chromium/segmentation_platform/ukm_db-journal
Code/code.lock
Code/Cookies
Code/Cookies-journal
Code/languagepacks.json
Code/machineid
Code/Network Persistent State
Code/Preferences
Code/SharedStorage
Code/SharedStorage-wal
Code/TransportSecurity
Code/Trust Tokens
Code/Trust Tokens-journal
Code/Backups/e00d37a2b4ce8f9c44e0cdee3d453be1/file/6bd39ce7
Code/Cache/Cache_Data/2b461ecc3b0499d0_0
Code/Cache/Cache_Data/3c8cb424f28fc424_0
Code/Cache/Cache_Data/8dacc9a2734db163_0
Code/Cache/Cache_Data/27bf32191b729620_0
Code/Cache/Cache_Data/28f0c4cef4ff65ef_0
Code/Cache/Cache_Data/46e01f0ef84596db_0
Code/Cache/Cache_Data/99e2810dbe29767b_0
Code/Cache/Cache_Data/871b509e324c8871_0
Code/Cache/Cache_Data/3499eb36cb1ad705_0
Code/Cache/Cache_Data/5283edf90cf4ab50_0
Code/Cache/Cache_Data/07148da4e4b72ebb_0
Code/Cache/Cache_Data/9818c4d091fff037_0
Code/Cache/Cache_Data/9978be12d61693a7_0
Code/Cache/Cache_Data/15651df7a7ad0fa5_0
Code/Cache/Cache_Data/62257a820c7c51ad_0
Code/Cache/Cache_Data/60559247bef46e27_0
Code/Cache/Cache_Data/6394910501faa091_0
Code/Cache/Cache_Data/a7a680228c3f99df_0
Code/Cache/Cache_Data/d121e2a6335b7510_0
Code/Cache/Cache_Data/d53137183293ab18_0
Code/Cache/Cache_Data/dd00ea7dd6990e28_0
Code/Cache/Cache_Data/ee0ad2b13b85cc7a_0
Code/Cache/Cache_Data/index
Code/Cache/Cache_Data/index-dir/the-real-index
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/0f8ca223e736446e_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/4e8de1b29bc0f2cb_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/4fdd3a3eceada445_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/9b7c28b1d7b50ead_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/9efd80ca052b6852_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/15b1b26c2c8e34e5_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/46dea7f9cc693b99_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/85e001fce41453b9_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/1062e0428397e737_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/9813c3bb6dfea3f6_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/b9b722dad3c969f6_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/b14312964efc6bbe_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/df9d88e25837fe85_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/e6661f6b5d4490f7_0
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/index
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/js/index-dir/the-real-index
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/wasm/index
Code/CachedData/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/chrome/wasm/index-dir/the-real-index
Code/CachedExtensionVSIXs/wakatime.vscode-wakatime-24.9.1
Code/CachedProfilesData/__default__profile__/extensions.builtin.cache
Code/CachedProfilesData/__default__profile__/extensions.user.cache
Code/Code Cache/js/index
Code/Code Cache/js/index-dir/the-real-index
Code/Code Cache/wasm/index
Code/Code Cache/wasm/index-dir/the-real-index
Code/Crashpad/client_id
Code/Crashpad/settings.dat
Code/Crashpad/completed/c83c28b9-cc59-4b5b-a7ec-903049884408.dmp
Code/Crashpad/completed/c83c28b9-cc59-4b5b-a7ec-903049884408.meta
Code/DawnGraphiteCache/data_0
Code/DawnGraphiteCache/data_1
Code/DawnGraphiteCache/data_2
Code/DawnGraphiteCache/data_3
Code/DawnGraphiteCache/index
Code/DawnWebGPUCache/data_0
Code/DawnWebGPUCache/data_1
Code/DawnWebGPUCache/data_2
Code/DawnWebGPUCache/data_3
Code/DawnWebGPUCache/index
Code/Dictionaries/en-US-10-1.bdic
Code/GPUCache/data_0
Code/GPUCache/data_1
Code/GPUCache/data_2
Code/GPUCache/data_3
Code/GPUCache/index
Code/Local Storage/leveldb/000003.log
Code/Local Storage/leveldb/CURRENT
Code/Local Storage/leveldb/LOCK
Code/Local Storage/leveldb/LOG
Code/Local Storage/leveldb/LOG.old
Code/Local Storage/leveldb/MANIFEST-000001
Code/Service Worker/Database/000003.log
Code/Service Worker/Database/CURRENT
Code/Service Worker/Database/LOCK
Code/Service Worker/Database/LOG
Code/Service Worker/Database/LOG.old
Code/Service Worker/Database/MANIFEST-000001
Code/Service Worker/ScriptCache/2cc80dabc69f58b6_0
Code/Service Worker/ScriptCache/2cc80dabc69f58b6_1
Code/Service Worker/ScriptCache/4cb013792b196a35_0
Code/Service Worker/ScriptCache/4cb013792b196a35_1
Code/Service Worker/ScriptCache/ba23d8ecda68de77_0
Code/Service Worker/ScriptCache/ba23d8ecda68de77_1
Code/Service Worker/ScriptCache/index
Code/Service Worker/ScriptCache/index-dir/the-real-index
Code/Session Storage/000003.log
Code/Session Storage/CURRENT
Code/Session Storage/LOCK
Code/Session Storage/LOG
Code/Session Storage/LOG.old
Code/Session Storage/MANIFEST-000001
Code/Shared Dictionary/db
Code/Shared Dictionary/db-journal
Code/Shared Dictionary/cache/index
Code/Shared Dictionary/cache/index-dir/the-real-index
Code/User/History/-1aacc9df/2rV2.json
Code/User/History/-1aacc9df/4Z87.json
Code/User/History/-1aacc9df/entries.json
Code/User/History/-1aacc9df/nduR.json
Code/User/History/-1d133c2/entries.json
Code/User/History/-1d133c2/kZCM.py
Code/User/History/1373615a/0m8A.css
Code/User/History/1373615a/3iPp.css
Code/User/History/1373615a/4VkN.css
Code/User/History/1373615a/4Y4u.css
Code/User/History/1373615a/7OQe.css
Code/User/History/1373615a/7Ti5.css
Code/User/History/1373615a/8AMH.css
Code/User/History/1373615a/8YeG.css
Code/User/History/1373615a/9Ild.css
Code/User/History/1373615a/BdIR.css
Code/User/History/1373615a/bF1d.css
Code/User/History/1373615a/EE99.css
Code/User/History/1373615a/entries.json
Code/User/History/1373615a/eOe7.css
Code/User/History/1373615a/eRJD.css
Code/User/History/1373615a/ETGd.css
Code/User/History/1373615a/Femg.css
Code/User/History/1373615a/fz1A.css
Code/User/History/1373615a/gKaL.css
Code/User/History/1373615a/jRd0.css
Code/User/History/1373615a/NcLF.css
Code/User/History/1373615a/nUXH.css
Code/User/History/1373615a/OkW1.css
Code/User/History/1373615a/qCFq.css
Code/User/History/1373615a/Rhbz.css
Code/User/History/1373615a/ScEg.css
Code/User/History/1373615a/spt9.css
Code/User/History/1373615a/SRbD.css
Code/User/History/1373615a/T4p3.css
Code/User/History/1373615a/Thpb.css
Code/User/History/1373615a/tIvc.css
Code/User/History/1373615a/trpr.css
Code/User/History/1373615a/TWh1.css
Code/User/History/1373615a/UdTK.css
Code/User/History/1373615a/wU1T.css
Code/User/History/1373615a/ylM5.css
Code/User/History/1373615a/zVmn.css
Code/User/History/19e51c77/1DLK.conf
Code/User/History/19e51c77/2Vas.conf
Code/User/History/19e51c77/7oL0.conf
Code/User/History/19e51c77/CRaW.conf
Code/User/History/19e51c77/e7aC.conf
Code/User/History/19e51c77/entries.json
Code/User/History/19e51c77/GkHE.conf
Code/User/History/19e51c77/gybL.conf
Code/User/History/19e51c77/MK52.conf
Code/User/History/19e51c77/PFkW.conf
Code/User/History/19e51c77/PpIK.conf
Code/User/History/19e51c77/w6Qx.conf
Code/User/History/1b584195/82b3
Code/User/History/1b584195/zaoN
Code/User/History/2f73853b/1iLc.jsonc
Code/User/History/2f73853b/3lhz.jsonc
Code/User/History/2f73853b/4qyl.jsonc
Code/User/History/2f73853b/7cEB.jsonc
Code/User/History/2f73853b/7vlN.jsonc
Code/User/History/2f73853b/9ubn.jsonc
Code/User/History/2f73853b/aL29.jsonc
Code/User/History/2f73853b/BCEo.jsonc
Code/User/History/2f73853b/BQ8Z.jsonc
Code/User/History/2f73853b/e4XU.jsonc
Code/User/History/2f73853b/entries.json
Code/User/History/2f73853b/GLkV.jsonc
Code/User/History/2f73853b/GV1u.jsonc
Code/User/History/2f73853b/H34u.jsonc
Code/User/History/2f73853b/I3sS.jsonc
Code/User/History/2f73853b/iCoC.jsonc
Code/User/History/2f73853b/kujU.jsonc
Code/User/History/2f73853b/kwv9.jsonc
Code/User/History/2f73853b/KyDQ.jsonc
Code/User/History/2f73853b/lyYx.jsonc
Code/User/History/2f73853b/qqa0.jsonc
Code/User/History/2f73853b/S8jv.jsonc
Code/User/History/2f73853b/SZNH.jsonc
Code/User/History/2f73853b/ve8M.jsonc
Code/User/History/2f73853b/W3VQ.jsonc
Code/User/History/2f73853b/wdGu.jsonc
Code/User/History/68f9e3e6/lxUZ.jsonc
Code/User/History/6922fd7b/5m7c.toml
Code/User/History/6922fd7b/entries.json
Code/User/History/6922fd7b/VUo5.toml
Code/User/History/6922fd7b/w6Wl.toml
Code/User/History/7027a8f/0BvC.css
Code/User/History/7027a8f/8EJP.css
Code/User/History/7027a8f/Ief6.css
Code/User/History/7027a8f/OvuK.css
Code/User/History/7027a8f/pBA6.css
Code/User/History/7027a8f/tF1N.css
Code/User/globalStorage/state.vscdb
Code/User/globalStorage/state.vscdb.backup
Code/User/globalStorage/storage.json
Code/User/workspaceStorage/a33c3c3e35c8b8522c791eadf0a1e06c/state.vscdb
Code/User/workspaceStorage/a33c3c3e35c8b8522c791eadf0a1e06c/state.vscdb.backup
Code/User/workspaceStorage/a33c3c3e35c8b8522c791eadf0a1e06c/workspace.json
Code/User/workspaceStorage/e00d37a2b4ce8f9c44e0cdee3d453be1/state.vscdb
Code/User/workspaceStorage/e00d37a2b4ce8f9c44e0cdee3d453be1/state.vscdb.backup
Code/User/workspaceStorage/e00d37a2b4ce8f9c44e0cdee3d453be1/workspace.json
Code/WebStorage/QuotaManager
Code/WebStorage/QuotaManager-journal
Code/WebStorage/1/CacheStorage/index.txt
Code/WebStorage/1/CacheStorage/57d9fef3-ffdb-401f-bef6-902e460721ab/1a3605a2f14629c9_0
Code/WebStorage/1/CacheStorage/57d9fef3-ffdb-401f-bef6-902e460721ab/60bb8a47e9d74ad7_0
Code/WebStorage/1/CacheStorage/57d9fef3-ffdb-401f-bef6-902e460721ab/b37b475c61418667_0
Code/WebStorage/1/CacheStorage/57d9fef3-ffdb-401f-bef6-902e460721ab/c231140332cf198b_0
Code/WebStorage/1/CacheStorage/57d9fef3-ffdb-401f-bef6-902e460721ab/index
Code/WebStorage/1/CacheStorage/57d9fef3-ffdb-401f-bef6-902e460721ab/index-dir/the-real-index
Code/WebStorage/2/CacheStorage/index.txt
Code/WebStorage/2/CacheStorage/e713ef32-fda1-4b87-ae7f-50c93d9dd95d/1a3605a2f14629c9_0
Code/WebStorage/2/CacheStorage/e713ef32-fda1-4b87-ae7f-50c93d9dd95d/60bb8a47e9d74ad7_0
Code/WebStorage/2/CacheStorage/e713ef32-fda1-4b87-ae7f-50c93d9dd95d/b37b475c61418667_0
Code/WebStorage/2/CacheStorage/e713ef32-fda1-4b87-ae7f-50c93d9dd95d/c231140332cf198b_0
Code/WebStorage/2/CacheStorage/e713ef32-fda1-4b87-ae7f-50c93d9dd95d/index
Code/WebStorage/2/CacheStorage/e713ef32-fda1-4b87-ae7f-50c93d9dd95d/index-dir/the-real-index
Code/WebStorage/3/CacheStorage/index.txt
Code/WebStorage/3/CacheStorage/590b0301-dbdc-4fe7-8a90-4dd2615050a4/1a3605a2f14629c9_0
Code/WebStorage/3/CacheStorage/590b0301-dbdc-4fe7-8a90-4dd2615050a4/60bb8a47e9d74ad7_0
Code/WebStorage/3/CacheStorage/590b0301-dbdc-4fe7-8a90-4dd2615050a4/b37b475c61418667_0
Code/WebStorage/3/CacheStorage/590b0301-dbdc-4fe7-8a90-4dd2615050a4/c231140332cf198b_0
Code/WebStorage/3/CacheStorage/590b0301-dbdc-4fe7-8a90-4dd2615050a4/index
Code/WebStorage/3/CacheStorage/590b0301-dbdc-4fe7-8a90-4dd2615050a4/index-dir/the-real-index
Code/Workspaces/1732482937463/workspace.json
Code/logs/20241125T081542/editSessions.log
Code/logs/20241125T081542/main.log
Code/logs/20241125T081542/remoteTunnelService.log
Code/logs/20241125T081542/sharedprocess.log
Code/logs/20241125T081542/telemetry.log
Code/logs/20241125T081542/terminal.log
Code/logs/20241125T081542/userDataSync.log
Code/logs/20241125T081542/window1/fileWatcher.log
Code/logs/20241125T081542/window1/notebook.rendering.log
Code/logs/20241125T081542/window1/renderer.log
Code/logs/20241125T081542/window1/views.log
Code/logs/20241125T081542/window1/exthost/extensionTelemetry.log
Code/logs/20241125T081542/window1/exthost/exthost.log
Code/logs/20241125T081542/window1/exthost/vscode.git/Git.log
Code/logs/20241125T081542/window1/exthost/vscode.github/GitHub.log
Code/logs/20241125T081542/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241125T081542/window1/output_20241125T081547/tasks.log
Code/logs/20241125T090916/editSessions.log
Code/logs/20241125T090916/main.log
Code/logs/20241125T090916/remoteTunnelService.log
Code/logs/20241125T090916/sharedprocess.log
Code/logs/20241125T090916/telemetry.log
Code/logs/20241125T090916/terminal.log
Code/logs/20241125T090916/userDataSync.log
Code/logs/20241125T090916/window1/notebook.rendering.log
Code/logs/20241125T090916/window1/renderer.log
Code/logs/20241125T090916/window1/views.log
Code/logs/20241125T090916/window1/exthost/extensionTelemetry.log
Code/logs/20241125T090916/window1/exthost/exthost.log
Code/logs/20241125T090916/window1/exthost/vscode.git/Git.log
Code/logs/20241125T090916/window1/exthost/vscode.github/GitHub.log
Code/logs/20241125T090916/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241125T090916/window1/output_20241125T090922/tasks.log
Code/logs/20241126T111621/editSessions.log
Code/logs/20241126T111621/main.log
Code/logs/20241126T111621/remoteTunnelService.log
Code/logs/20241126T111621/sharedprocess.log
Code/logs/20241126T111621/telemetry.log
Code/logs/20241126T111621/terminal.log
Code/logs/20241126T111621/userDataSync.log
Code/logs/20241126T111621/window1/notebook.rendering.log
Code/logs/20241126T111621/window1/renderer.log
Code/logs/20241126T111621/window1/views.log
Code/logs/20241126T111621/window1/exthost/extensionTelemetry.log
Code/logs/20241126T111621/window1/exthost/exthost.log
Code/logs/20241126T111621/window1/exthost/vscode.git/Git.log
Code/logs/20241126T111621/window1/exthost/vscode.github/GitHub.log
Code/logs/20241126T111621/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241126T111621/window1/output_20241126T111627/tasks.log
Code/logs/20241126T135207/editSessions.log
Code/logs/20241126T135207/main.log
Code/logs/20241126T135207/remoteTunnelService.log
Code/logs/20241126T135207/sharedprocess.log
Code/logs/20241126T135207/telemetry.log
Code/logs/20241126T135207/terminal.log
Code/logs/20241126T135207/userDataSync.log
Code/logs/20241126T135207/window1/notebook.rendering.log
Code/logs/20241126T135207/window1/renderer.log
Code/logs/20241126T135207/window1/views.log
Code/logs/20241126T135207/window1/exthost/extensionTelemetry.log
Code/logs/20241126T135207/window1/exthost/exthost.log
Code/logs/20241126T135207/window1/exthost/vscode.git/Git.log
Code/logs/20241126T135207/window1/exthost/vscode.github/GitHub.log
Code/logs/20241126T135207/window1/output_20241126T135212/tasks.log
Code/logs/20241126T140742/editSessions.log
Code/logs/20241126T140742/main.log
Code/logs/20241126T140742/remoteTunnelService.log
Code/logs/20241126T140742/sharedprocess.log
Code/logs/20241126T140742/telemetry.log
Code/logs/20241126T140742/terminal.log
Code/logs/20241126T140742/userDataSync.log
Code/logs/20241126T140742/window1/notebook.rendering.log
Code/logs/20241126T140742/window1/renderer.log
Code/logs/20241126T140742/window1/views.log
Code/logs/20241126T140742/window1/exthost/extensionTelemetry.log
Code/logs/20241126T140742/window1/exthost/exthost.log
Code/logs/20241126T140742/window1/exthost/vscode.git/Git.log
Code/logs/20241126T140742/window1/exthost/vscode.github/GitHub.log
Code/logs/20241126T140742/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241126T140742/window1/output_20241126T140748/tasks.log
Code/logs/20241127T082347/editSessions.log
Code/logs/20241127T082347/main.log
Code/logs/20241127T082347/remoteTunnelService.log
Code/logs/20241127T082347/sharedprocess.log
Code/logs/20241127T082347/telemetry.log
Code/logs/20241127T082347/terminal.log
Code/logs/20241127T082347/userDataSync.log
Code/logs/20241127T082347/window1/fileWatcher.log
Code/logs/20241127T082347/window1/notebook.rendering.log
Code/logs/20241127T082347/window1/renderer.log
Code/logs/20241127T082347/window1/views.log
Code/logs/20241127T082347/window1/exthost/extensionTelemetry.log
Code/logs/20241127T082347/window1/exthost/exthost.log
Code/logs/20241127T082347/window1/exthost/vscode.git/Git.log
Code/logs/20241127T082347/window1/exthost/vscode.github/GitHub.log
Code/logs/20241127T082347/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241127T082347/window1/exthost/webWorker/workerexthost.log
Code/logs/20241127T082347/window1/output_20241127T082351/tasks.log
Code/logs/20241127T084850/editSessions.log
Code/logs/20241127T084850/main.log
Code/logs/20241127T084850/remoteTunnelService.log
Code/logs/20241127T084850/sharedprocess.log
Code/logs/20241127T084850/telemetry.log
Code/logs/20241127T084850/terminal.log
Code/logs/20241127T084850/userDataSync.log
Code/logs/20241127T084850/window1/notebook.rendering.log
Code/logs/20241127T084850/window1/renderer.log
Code/logs/20241127T084850/window1/views.log
Code/logs/20241127T084850/window1/exthost/extensionTelemetry.log
Code/logs/20241127T084850/window1/exthost/exthost.log
Code/logs/20241127T084850/window1/exthost/vscode.git/Git.log
Code/logs/20241127T084850/window1/exthost/vscode.github/GitHub.log
Code/logs/20241127T084850/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241127T084850/window1/output_20241127T084854/tasks.log
Code/logs/20241127T102146/editSessions.log
Code/logs/20241127T102146/main.log
Code/logs/20241127T102146/remoteTunnelService.log
Code/logs/20241127T102146/sharedprocess.log
Code/logs/20241127T102146/telemetry.log
Code/logs/20241127T102146/terminal.log
Code/logs/20241127T102146/userDataSync.log
Code/logs/20241127T102146/window1/notebook.rendering.log
Code/logs/20241127T102146/window1/renderer.log
Code/logs/20241127T102146/window1/views.log
Code/logs/20241127T102146/window1/exthost/extensionTelemetry.log
Code/logs/20241127T102146/window1/exthost/exthost.log
Code/logs/20241127T102146/window1/exthost/vscode.git/Git.log
Code/logs/20241127T102146/window1/exthost/vscode.github/GitHub.log
Code/logs/20241127T102146/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241127T102146/window1/output_20241127T102151/tasks.log
Code/logs/20241127T111749/editSessions.log
Code/logs/20241127T111749/main.log
Code/logs/20241127T111749/remoteTunnelService.log
Code/logs/20241127T111749/sharedprocess.log
Code/logs/20241127T111749/telemetry.log
Code/logs/20241127T111749/terminal.log
Code/logs/20241127T111749/userDataSync.log
Code/logs/20241127T111749/window1/notebook.rendering.log
Code/logs/20241127T111749/window1/renderer.log
Code/logs/20241127T111749/window1/views.log
Code/logs/20241127T111749/window1/exthost/extensionTelemetry.log
Code/logs/20241127T111749/window1/exthost/exthost.log
Code/logs/20241127T111749/window1/exthost/vscode.git/Git.log
Code/logs/20241127T111749/window1/exthost/vscode.github/GitHub.log
Code/logs/20241127T111749/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241127T111749/window1/output_20241127T111753/tasks.log
Code/logs/20241127T125221/editSessions.log
Code/logs/20241127T125221/main.log
Code/logs/20241127T125221/remoteTunnelService.log
Code/logs/20241127T125221/sharedprocess.log
Code/logs/20241127T125221/telemetry.log
Code/logs/20241127T125221/terminal.log
Code/logs/20241127T125221/userDataSync.log
Code/logs/20241127T125221/window1/notebook.rendering.log
Code/logs/20241127T125221/window1/renderer.log
Code/logs/20241127T125221/window1/views.log
Code/logs/20241127T125221/window1/exthost/extensionTelemetry.log
Code/logs/20241127T125221/window1/exthost/exthost.log
Code/logs/20241127T125221/window1/exthost/vscode.git/Git.log
Code/logs/20241127T125221/window1/exthost/vscode.github/GitHub.log
Code/logs/20241127T125221/window1/exthost/vscode.json-language-features/JSON Language Server.log
Code/logs/20241127T125221/window1/output_20241127T125226/tasks.log
Code/User/History/1b584195/entries.json
dconf/user
byobu/.screenrc
byobu/.tmux.conf
byobu/backend
byobu/color