-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.folderstamp1
4962 lines (4961 loc) · 248 KB
/
.folderstamp1
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
This folder: /media/daniella/B/git/Plasmmer/Plasmmer.github.io
File: ./.folderstamp
Size: 22 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 2322429 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:34.563442600 -0300
Modify: 2023-05-17 18:42:34.647443200 -0300
Change: 2023-05-17 18:42:34.647443200 -0300
Birth: 2023-05-17 18:42:34.563442600 -0300
IPFS hash: QmavfEc27Ua6jV5HNkUj3WNPiMsxuH8a23QbcqbF5vRBa9
------------------------------
File: ./.git/COMMIT_EDITMSG
Size: 15 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004368 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:54:08.837462300 -0300
Modify: 2023-04-20 23:54:08.836673000 -0300
Change: 2023-04-20 23:54:08.836673000 -0300
Birth: 2023-04-20 23:54:08.831369000 -0300
IPFS hash: QmRfkFAsj2gmsWGiUwEfNLwUMterH6yXv8fnsSAC4bqXMc
------------------------------
File: ./.git/config
Size: 382 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004392 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:31.747422500 -0300
Modify: 2023-04-20 23:54:28.676604900 -0300
Change: 2023-04-20 23:54:28.677163000 -0300
Birth: 2023-04-20 23:54:28.675837400 -0300
IPFS hash: QmXanPnrivyufLGM4pFt1zjFrPZFSrHy5CJjm21VGVLiY7
------------------------------
File: ./.git/description
Size: 73 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002523 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:09:37.168616500 -0300
Modify: 2023-04-20 22:08:16.027494000 -0300
Change: 2023-04-20 22:08:16.027494000 -0300
Birth: 2023-04-20 22:08:16.027177000 -0300
IPFS hash: Qmdy135ZFG4kUALkaMhr6Cy3VhhkxyAh264kyg3725x8be
------------------------------
File: ./.git/FETCH_HEAD
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 8,20 Inode: 1002744 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:34:37.098191000 -0300
Modify: 2023-04-20 23:43:22.290042300 -0300
Change: 2023-04-20 23:43:22.290042300 -0300
Birth: 2023-04-20 22:34:33.263203100 -0300
IPFS hash: QmbFMke1KXqnYyBBWxB74N4c5SBnJMVAiMNRcGu6x1AwQH
------------------------------
File: ./.git/HEAD
Size: 21 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004346 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:31.747422500 -0300
Modify: 2023-04-20 23:53:41.581049500 -0300
Change: 2023-04-20 23:53:41.581915800 -0300
Birth: 2023-04-20 23:53:41.579034300 -0300
IPFS hash: QmbRUdVtdtxcpdqyJE3iZwTJq7FPcXR1ErQRFB76sQCg9H
------------------------------
File: ./.git/hooks/applypatch-msg.sample
Size: 478 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002513 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.017080300 -0300
Modify: 2023-04-20 22:08:16.017525900 -0300
Change: 2023-04-20 22:08:16.017525900 -0300
Birth: 2023-04-20 22:08:16.017080300 -0300
IPFS hash: QmY2duvZ5Resxt8astYUgQ8RXQz1N9axe77gCb5j6M95Gf
------------------------------
File: ./.git/hooks/commit-msg.sample
Size: 896 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1002519 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.023233400 -0300
Modify: 2023-04-20 22:08:16.023859300 -0300
Change: 2023-04-20 22:08:16.023859300 -0300
Birth: 2023-04-20 22:08:16.023233400 -0300
IPFS hash: QmQbraCfKaCTZkqtdXCJPc11CWEiZGw1yYGwtbA6nbXWeh
------------------------------
File: ./.git/hooks/fsmonitor-watchman.sample
Size: 4726 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 1002518 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.021997500 -0300
Modify: 2023-04-20 22:08:16.022669900 -0300
Change: 2023-04-20 22:08:16.022669900 -0300
Birth: 2023-04-20 22:08:16.021997500 -0300
IPFS hash: QmfUn9iq4rWKhKyzcdN9EG4HPDqnrgiWy1gZb7zuo33Bjo
------------------------------
File: ./.git/hooks/post-update.sample
Size: 189 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002512 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.015952700 -0300
Modify: 2023-04-20 22:08:16.016610900 -0300
Change: 2023-04-20 22:08:16.016610900 -0300
Birth: 2023-04-20 22:08:16.015952700 -0300
IPFS hash: QmQjYxVj9iwitDGkmR48Cemr1JTgc6pvwo5cFkumNWqnjm
------------------------------
File: ./.git/hooks/pre-applypatch.sample
Size: 424 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002517 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.021043200 -0300
Modify: 2023-04-20 22:08:16.021421700 -0300
Change: 2023-04-20 22:08:16.021421700 -0300
Birth: 2023-04-20 22:08:16.021043200 -0300
IPFS hash: QmdzjzkpM31jTKd5YBJkWsbDXJeeW1Uy1UxVPwfKFxwy89
------------------------------
File: ./.git/hooks/pre-commit.sample
Size: 1643 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1002510 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.013944400 -0300
Modify: 2023-04-20 22:08:16.014451000 -0300
Change: 2023-04-20 22:08:16.014451000 -0300
Birth: 2023-04-20 22:08:16.013944400 -0300
IPFS hash: QmY33NoK9jzqitkPK1QdWTnNQt7m6DsE4fYvyohjdbyfju
------------------------------
File: ./.git/hooks/pre-merge-commit.sample
Size: 416 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002511 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.014889100 -0300
Modify: 2023-04-20 22:08:16.015402600 -0300
Change: 2023-04-20 22:08:16.015402600 -0300
Birth: 2023-04-20 22:08:16.014889100 -0300
IPFS hash: QmPte81MJoXgCngK75SVZTn2DAXskuo9gdVr2uR5PfVVQE
------------------------------
File: ./.git/hooks/pre-push.sample
Size: 1374 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1002520 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.024480100 -0300
Modify: 2023-04-20 22:08:16.025062500 -0300
Change: 2023-04-20 22:08:16.025062500 -0300
Birth: 2023-04-20 22:08:16.024480100 -0300
IPFS hash: QmQVg6D9VT3Ro9JWnUYECobpTvVVh4hgz9jNEmXKEok1S9
------------------------------
File: ./.git/hooks/pre-rebase.sample
Size: 4898 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 1002509 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.012745400 -0300
Modify: 2023-04-20 22:08:16.013412000 -0300
Change: 2023-04-20 22:08:16.013412000 -0300
Birth: 2023-04-20 22:08:16.012745400 -0300
IPFS hash: QmSQrei5kUrb4RaEp4c7oobLEHURhPJ8AFZS1uiRg4JfLv
------------------------------
File: ./.git/hooks/pre-receive.sample
Size: 544 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1002514 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.017994900 -0300
Modify: 2023-04-20 22:08:16.018315100 -0300
Change: 2023-04-20 22:08:16.018315100 -0300
Birth: 2023-04-20 22:08:16.017994900 -0300
IPFS hash: QmRKbU9DFRNWjR1UwV4nC6MXPnrNanfsBM5579t4HLUuig
------------------------------
File: ./.git/hooks/prepare-commit-msg.sample
Size: 1492 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1002508 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.011482100 -0300
Modify: 2023-04-20 22:08:16.012212200 -0300
Change: 2023-04-20 22:08:16.012212200 -0300
Birth: 2023-04-20 22:08:16.011482100 -0300
IPFS hash: QmPku8ai5p4sSCDHe19n9Ekfo21xM5urFdkq9Rg1wBHjcV
------------------------------
File: ./.git/hooks/push-to-checkout.sample
Size: 2783 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1002515 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.018854000 -0300
Modify: 2023-04-20 22:08:16.019400500 -0300
Change: 2023-04-20 22:08:16.019400500 -0300
Birth: 2023-04-20 22:08:16.018854000 -0300
IPFS hash: Qma763g2HDRav2QxLaAEWKiyE42Z3e2vcojWThMzYNHyRq
------------------------------
File: ./.git/hooks/update.sample
Size: 3650 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1002516 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:16.019957900 -0300
Modify: 2023-04-20 22:08:16.020443800 -0300
Change: 2023-04-20 22:08:16.020443800 -0300
Birth: 2023-04-20 22:08:16.019957900 -0300
IPFS hash: QmcV7YCAafpfa79M4Ys1Ffq4gbJEc8NukKxu4izEedgAno
------------------------------
File: ./.git/index
Size: 8623 Blocks: 24 IO Block: 4096 regular file
Device: 8,20 Inode: 1004424 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.147425400 -0300
Modify: 2023-04-20 23:59:17.951732300 -0300
Change: 2023-04-20 23:59:17.952236600 -0300
Birth: 2023-04-20 23:59:17.941873200 -0300
IPFS hash: QmRV48krhgW1tpNcUzSGKDawJwuJEdnuCkgEUkmo37AZgA
------------------------------
File: ./.git/info/exclude
Size: 240 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002522 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.315426600 -0300
Modify: 2023-04-20 22:08:16.026723700 -0300
Change: 2023-04-20 22:08:16.026723700 -0300
Birth: 2023-04-20 22:08:16.026407100 -0300
IPFS hash: QmcfzxUpw36y8fu2GR3s7Vgq7RBgooKtc6BgsqFnadsDLc
------------------------------
File: ./.git/logs/HEAD
Size: 561 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1002595 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:17.079083300 -0300
Modify: 2023-04-20 23:54:08.844282700 -0300
Change: 2023-04-20 23:54:08.844282700 -0300
Birth: 2023-04-20 22:08:17.079083300 -0300
IPFS hash: QmWkKnbyVj7xXYyFriKtHJLdzUH869Wai6d574DyNpwYLx
------------------------------
File: ./.git/logs/refs/heads/main
Size: 343 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004345 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:53:41.574348700 -0300
Modify: 2023-04-20 23:54:08.844799800 -0300
Change: 2023-04-20 23:54:08.844799800 -0300
Birth: 2023-04-20 23:53:41.574348700 -0300
IPFS hash: QmVsPZdmgxAPie5rbLZdXE2DD47FMiAbLkE2AYaCsZ5hYX
------------------------------
File: ./.git/logs/refs/remotes/origin/HEAD
Size: 209 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002591 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:08:17.072868700 -0300
Modify: 2023-04-20 22:08:17.073035700 -0300
Change: 2023-04-20 22:08:17.073035700 -0300
Birth: 2023-04-20 22:08:17.072868700 -0300
IPFS hash: Qma3tfYbpJQJy76K2FNbNY73k2zBoNDLdKr9Z8ZQHewzvJ
------------------------------
File: ./.git/logs/refs/remotes/origin/main
Size: 161 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004394 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:54:28.681826200 -0300
Modify: 2023-04-20 23:54:28.681999300 -0300
Change: 2023-04-20 23:54:28.681999300 -0300
Birth: 2023-04-20 23:54:28.681826200 -0300
IPFS hash: QmavkQDRQNXXTezZ9JLkhGYStwpLV1NjtXti5Qz9n9KchG
------------------------------
File: ./.git/objects/07/3631000363303943e98e4aa0b3e687128cef7f
Size: 582 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1004412 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:57:27.910712700 -0300
Modify: 2023-04-20 23:57:27.911088300 -0300
Change: 2023-04-20 23:57:27.912022000 -0300
Birth: 2023-04-20 23:57:27.910712700 -0300
IPFS hash: QmSqPn5s7YJpBZ8HCospjJSF1GuzYak1Fztt9madXLmwxW
------------------------------
File: ./.git/objects/1d/fe6fe5486bedbe051dc6fb2a24bf8d408b9277
Size: 169 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004370 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.295426400 -0300
Modify: 2023-04-20 23:54:08.839270700 -0300
Change: 2023-04-20 23:54:08.840178600 -0300
Birth: 2023-04-20 23:54:08.838941300 -0300
IPFS hash: QmakE2Eu9yo648Y34dE82fLc8NZJuFS4rb7yBWV3vcMotH
------------------------------
File: ./.git/objects/38/c149932d25ee5142ce292d0543395a2bd82bcc
Size: 387 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004366 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.315426600 -0300
Modify: 2023-04-20 23:54:08.828498000 -0300
Change: 2023-04-20 23:54:08.829200200 -0300
Birth: 2023-04-20 23:54:08.828141300 -0300
IPFS hash: QmejXrAfYKng8HnyUoChT9x8kA8SH6FtPcsfWtgPYayAFj
------------------------------
File: ./.git/objects/39/cfec26b2fb0dc6c5744f9d7ede9233819f4e0b
Size: 342 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004430 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:59:17.950539200 -0300
Modify: 2023-04-20 23:59:17.950749300 -0300
Change: 2023-04-20 23:59:17.951305200 -0300
Birth: 2023-04-20 23:59:17.950539200 -0300
IPFS hash: QmUktVWNYmBf81cd6EPpMVWYw3WmpgMRGHkB6h2cPA5rxs
------------------------------
File: ./.git/objects/6d/a8e992d9f80459abbb6174d6097a6a3dcdd850
Size: 11669 Blocks: 24 IO Block: 4096 regular file
Device: 8,20 Inode: 1004363 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:54:27.945019400 -0300
Modify: 2023-04-20 23:54:08.787257100 -0300
Change: 2023-04-20 23:54:08.787953600 -0300
Birth: 2023-04-20 23:54:08.785533900 -0300
IPFS hash: QmYbGEN8WwzyYA94KZCFWXi21WSiGKiYv5s5wQHRcXPLzN
------------------------------
File: ./.git/objects/88/087c765829293eb723d8021d1ae3e2511a0486
Size: 707 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004415 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:57:27.913517800 -0300
Modify: 2023-04-20 23:57:27.914041000 -0300
Change: 2023-04-20 23:57:27.914962000 -0300
Birth: 2023-04-20 23:57:27.913517800 -0300
IPFS hash: QmUyzwaPoGZ8A9zCXRp5HyRZoBcyUkthWk8ujuiwJVgY9A
------------------------------
File: ./.git/objects/94/9b540410b53bf46292bdfa651806a6bbbfda5e
Size: 42719 Blocks: 88 IO Block: 4096 regular file
Device: 8,20 Inode: 1004410 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:57:27.902520200 -0300
Modify: 2023-04-20 23:57:27.908281300 -0300
Change: 2023-04-20 23:57:27.909130900 -0300
Birth: 2023-04-20 23:57:27.902520200 -0300
IPFS hash: QmeRh3puaU4k2HTVDenuxsHsd7mKZ8WhRLwpargjFFi2ug
------------------------------
File: ./.git/objects/9d/13febeb2631138ad0ca9a2fab83d492ef67268
Size: 407 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004426 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:59:17.946955200 -0300
Modify: 2023-04-20 23:59:17.947274100 -0300
Change: 2023-04-20 23:59:17.947872200 -0300
Birth: 2023-04-20 23:59:17.946955200 -0300
IPFS hash: QmQi1c1r8Mbfae8dU9qpLSb7v2ePS33RHy86FUZEm7NJJD
------------------------------
File: ./.git/objects/b2/5ac9353acd2ad748a6125129641c35301a08e3
Size: 701 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004402 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:57:27.893212800 -0300
Modify: 2023-04-20 23:57:27.893645200 -0300
Change: 2023-04-20 23:57:27.894354800 -0300
Birth: 2023-04-20 23:57:27.893212800 -0300
IPFS hash: QmVGc6yeCKfv3h2YWKf8G4c5VpTtJzXSx3FcpHBQ5DdHhc
------------------------------
File: ./.git/objects/be/1f5e5f9296df8faedee4ca332d9613d919c628
Size: 597 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1004407 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:57:27.898929400 -0300
Modify: 2023-04-20 23:57:27.899382100 -0300
Change: 2023-04-20 23:57:27.900589300 -0300
Birth: 2023-04-20 23:57:27.898929400 -0300
IPFS hash: QmfHs5cQ8MNQRRcSyU2a2BogZi6kocuXe7MCETSTaavJs6
------------------------------
File: ./.git/objects/d4/faf4bc8791130da6a7a96ac02ee689debe1f1f
Size: 533 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1004404 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:57:27.895780500 -0300
Modify: 2023-04-20 23:57:27.896224600 -0300
Change: 2023-04-20 23:57:27.897158000 -0300
Birth: 2023-04-20 23:57:27.895780500 -0300
IPFS hash: Qmd7CfWgMTnZpwgwwfpMYVfrtkyagw3sg5TMD3NMraeX7Q
------------------------------
File: ./.git/objects/e6/1df2a4ec0a380cce00be021a4e15c87c6c9ef6
Size: 713 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004428 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:59:17.948678700 -0300
Modify: 2023-04-20 23:59:17.948993300 -0300
Change: 2023-04-20 23:59:17.949504200 -0300
Birth: 2023-04-20 23:59:17.948678700 -0300
IPFS hash: QmZ5oPcQyvZRLoF9vmtgWKiWiG8NVN8wpTrJZtTGvmEsyW
------------------------------
File: ./.git/objects/pack/pack-aa4dea7d4109beedea3bbba555bd03d6e94aaf5a.idx
Size: 4012 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1002578 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.271426300 -0300
Modify: 2023-04-20 22:08:16.995272800 -0300
Change: 2023-04-20 22:08:17.048420900 -0300
Birth: 2023-04-20 22:08:16.994940600 -0300
IPFS hash: QmYLbX7i14vFNsxfWiUWgaLYHikxMyuq9TaBW7YMeym4eG
------------------------------
File: ./.git/objects/pack/pack-aa4dea7d4109beedea3bbba555bd03d6e94aaf5a.pack
Size: 1048509 Blocks: 2048 IO Block: 4096 regular file
Device: 8,20 Inode: 1003600 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.339426700 -0300
Modify: 2023-04-20 22:08:16.994654000 -0300
Change: 2023-04-20 23:00:57.323214600 -0300
Birth: 2023-04-20 23:00:57.303768000 -0300
IPFS hash: QmaQSMNdeuU5XANZSwxuDQPiSWLmDaQtfE8d1w4mEAHtKC
------------------------------
File: ./.git/ORIG_HEAD
Size: 41 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002760 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:34:39.823695600 -0300
Modify: 2023-04-20 22:34:37.118825800 -0300
Change: 2023-04-20 22:34:37.119960400 -0300
Birth: 2023-04-20 22:34:37.118207800 -0300
IPFS hash: QmeUgiNS5NUavphAUTNRSccwCtd6y7kQH9ddeJ6GzLNVec
------------------------------
File: ./.git/packed-refs
Size: 114 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004348 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:31.747422500 -0300
Modify: 2023-04-20 23:53:41.600149400 -0300
Change: 2023-04-20 23:53:41.601089100 -0300
Birth: 2023-04-20 23:53:41.599911000 -0300
IPFS hash: QmPs3khpYB8Y3cqvjgqXB9QVK5L9WzvELKsKDkX8bdpbkN
------------------------------
File: ./.git/refs/heads/main
Size: 41 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004372 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.143425300 -0300
Modify: 2023-04-20 23:54:08.843732000 -0300
Change: 2023-04-20 23:54:08.845809600 -0300
Birth: 2023-04-20 23:54:08.842163900 -0300
IPFS hash: QmUBFMHuJacSDGM1KE7Mn6T7Fi26f5mXcdhDmNisavBdRG
------------------------------
File: ./.git/refs/remotes/origin/HEAD
Size: 32 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1002586 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 22:21:54.243487900 -0300
Modify: 2023-04-20 22:08:17.073313500 -0300
Change: 2023-04-20 22:08:17.073802200 -0300
Birth: 2023-04-20 22:08:17.068976700 -0300
IPFS hash: QmeXN3VRxp3675uN4fPGntt2CGbsganon2aZiM98DRuV6w
------------------------------
File: ./.git/refs/remotes/origin/main
Size: 41 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004393 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.399427200 -0300
Modify: 2023-04-20 23:54:28.681364600 -0300
Change: 2023-04-20 23:54:28.682666700 -0300
Birth: 2023-04-20 23:54:28.678913400 -0300
IPFS hash: QmUBFMHuJacSDGM1KE7Mn6T7Fi26f5mXcdhDmNisavBdRG
------------------------------
File: ./.gitignore
Size: 16 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004266 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-17 18:42:32.375427000 -0300
Modify: 2021-03-16 00:14:30.000000000 -0300
Change: 2023-04-20 23:17:52.719064900 -0300
Birth: 2023-04-20 23:17:52.717974500 -0300
IPFS hash: QmbAxhTzbL1VF1a9ay1c3Q2MuTKMXhB7QkuzKMFeHPis2s
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/COMMIT_EDITMSG
Size: 8 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003806 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:44:57.241069300 -0300
Modify: 2021-03-16 00:15:29.000000000 -0300
Change: 2023-04-20 23:17:50.792479600 -0300
Birth: 2023-04-20 23:17:50.789866800 -0300
IPFS hash: QmdV2vzaSt2FjAxyewZmRuvj2n6A4Vpi9fSXAAhuXtPben
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/config
Size: 313 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003809 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:44:52.473811500 -0300
Modify: 2021-03-16 00:15:30.000000000 -0300
Change: 2023-04-20 23:17:50.798749300 -0300
Birth: 2023-04-20 23:17:50.797238700 -0300
IPFS hash: QmeEc6yymGHzpc8LMvFHDhJb1d9HB7APGpoEx82GiENBXK
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/description
Size: 73 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003808 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:44:57.243165100 -0300
Modify: 2021-03-16 00:15:29.000000000 -0300
Change: 2023-04-20 23:17:50.796983300 -0300
Birth: 2023-04-20 23:17:50.795519100 -0300
IPFS hash: Qmdy135ZFG4kUALkaMhr6Cy3VhhkxyAh264kyg3725x8be
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/HEAD
Size: 23 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003805 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:44:52.472787000 -0300
Modify: 2021-03-16 00:15:30.000000000 -0300
Change: 2023-04-20 23:17:50.789332600 -0300
Birth: 2023-04-20 23:17:50.787797500 -0300
IPFS hash: QmWeKwYTKwBwVd7AKioXTmtpLFxTk3MBBk2ef2JtwCccAi
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/applypatch-msg.sample
Size: 478 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004229 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.159785300 -0300
Modify: 2021-03-16 00:15:37.000000000 -0300
Change: 2023-04-20 23:17:52.640126500 -0300
Birth: 2023-04-20 23:17:52.638856700 -0300
IPFS hash: QmY2duvZ5Resxt8astYUgQ8RXQz1N9axe77gCb5j6M95Gf
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/commit-msg.sample
Size: 896 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004235 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:37.000000000 -0300
Change: 2023-04-20 23:17:52.651122300 -0300
Birth: 2023-04-20 23:17:52.649685500 -0300
IPFS hash: QmQbraCfKaCTZkqtdXCJPc11CWEiZGw1yYGwtbA6nbXWeh
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/fsmonitor-watchman.sample
Size: 3327 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004237 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:34.000000000 -0300
Change: 2023-04-20 23:17:52.654809500 -0300
Birth: 2023-04-20 23:17:52.653295100 -0300
IPFS hash: QmQopPV9svGfagTR7eYkiBBtoTNm3JW4qbVgwNzsUecR64
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/post-update.sample
Size: 189 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004238 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:36.000000000 -0300
Change: 2023-04-20 23:17:52.656576400 -0300
Birth: 2023-04-20 23:17:52.655119800 -0300
IPFS hash: QmQjYxVj9iwitDGkmR48Cemr1JTgc6pvwo5cFkumNWqnjm
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/pre-applypatch.sample
Size: 424 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004233 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:38.000000000 -0300
Change: 2023-04-20 23:17:52.647523500 -0300
Birth: 2023-04-20 23:17:52.645987000 -0300
IPFS hash: QmdzjzkpM31jTKd5YBJkWsbDXJeeW1Uy1UxVPwfKFxwy89
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/pre-commit.sample
Size: 1642 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004231 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:36.000000000 -0300
Change: 2023-04-20 23:17:52.643949800 -0300
Birth: 2023-04-20 23:17:52.642258600 -0300
IPFS hash: QmYhXPftGXF32KjjThPvZTYWjJqHN4grSF11GvXh9NQbDc
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/pre-push.sample
Size: 1348 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004228 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.159785300 -0300
Modify: 2021-03-16 00:15:32.000000000 -0300
Change: 2023-04-20 23:17:52.638579000 -0300
Birth: 2023-04-20 23:17:52.637283700 -0300
IPFS hash: QmXprUtrWGYLRETUvuA89HjwUGdufGrwJxYaXyGwQ7TMvQ
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/pre-rebase.sample
Size: 4898 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 1004230 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:33.000000000 -0300
Change: 2023-04-20 23:17:52.641963800 -0300
Birth: 2023-04-20 23:17:52.640407000 -0300
IPFS hash: QmSQrei5kUrb4RaEp4c7oobLEHURhPJ8AFZS1uiRg4JfLv
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/pre-receive.sample
Size: 544 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1004232 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:35.000000000 -0300
Change: 2023-04-20 23:17:52.645688000 -0300
Birth: 2023-04-20 23:17:52.644342000 -0300
IPFS hash: QmRKbU9DFRNWjR1UwV4nC6MXPnrNanfsBM5579t4HLUuig
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/prepare-commit-msg.sample
Size: 1492 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004234 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:33.000000000 -0300
Change: 2023-04-20 23:17:52.649368100 -0300
Birth: 2023-04-20 23:17:52.647923800 -0300
IPFS hash: QmPku8ai5p4sSCDHe19n9Ekfo21xM5urFdkq9Rg1wBHjcV
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/hooks/update.sample
Size: 3610 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004236 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:34.000000000 -0300
Change: 2023-04-20 23:17:52.652956900 -0300
Birth: 2023-04-20 23:17:52.651430200 -0300
IPFS hash: QmfKMgUdSUwrS1wF6yfkQ9B6Vdbomrx87vGhpvpLfxgVn2
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/index
Size: 9973 Blocks: 24 IO Block: 4096 regular file
Device: 8,20 Inode: 1004337 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:47:22.712255700 -0300
Modify: 2023-04-20 23:46:43.203832900 -0300
Change: 2023-04-20 23:47:01.288703100 -0300
Birth: 2023-04-20 23:47:00.951888100 -0300
IPFS hash: QmXUNhwCW3K439TrKMUm7P9xL5VHX8492BZMLsnmB5bH7A
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/info/exclude
Size: 240 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004240 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.163785700 -0300
Modify: 2021-03-16 00:15:40.000000000 -0300
Change: 2023-04-20 23:17:52.659436600 -0300
Birth: 2023-04-20 23:17:52.657958800 -0300
IPFS hash: QmcfzxUpw36y8fu2GR3s7Vgq7RBgooKtc6BgsqFnadsDLc
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/logs/HEAD
Size: 2798 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1003812 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.059775800 -0300
Modify: 2021-03-16 00:15:41.000000000 -0300
Change: 2023-04-20 23:17:50.802969700 -0300
Birth: 2023-04-20 23:17:50.801469500 -0300
IPFS hash: QmQYm68hjpfGAmdKuYfw5wHaZ42tFpcmyThFvcEYYb2nTP
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/logs/refs/heads/master
Size: 2798 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1003815 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.059775800 -0300
Modify: 2021-03-16 00:19:44.000000000 -0300
Change: 2023-04-20 23:17:50.805985500 -0300
Birth: 2023-04-20 23:17:50.804393100 -0300
IPFS hash: QmQYm68hjpfGAmdKuYfw5wHaZ42tFpcmyThFvcEYYb2nTP
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/logs/refs/remotes/origin/master
Size: 164 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003818 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.059775800 -0300
Modify: 2021-03-16 00:19:46.000000000 -0300
Change: 2023-04-20 23:17:50.809793800 -0300
Birth: 2023-04-20 23:17:50.808142800 -0300
IPFS hash: QmbRqviTnZK3QRNRv8VGXmz1mncEmLX2VuPUfozpkbJF4d
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/00/c895f0f3fbb4b805d53213ee689fc0a38655f8
Size: 17078 Blocks: 40 IO Block: 4096 regular file
Device: 8,20 Inode: 1004158 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.143783800 -0300
Modify: 2021-03-16 00:17:58.000000000 -0300
Change: 2023-04-20 23:17:51.758037000 -0300
Birth: 2023-04-20 23:17:51.756405400 -0300
IPFS hash: QmeuN7RG2hKDecDxfWKSENfCZNSc2c1ti3PRqZt5pKrHmW
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/02/38bc882e9e24bc2680387666ae1584e662a152
Size: 387 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004138 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.139783400 -0300
Modify: 2021-03-16 00:19:09.000000000 -0300
Change: 2023-04-20 23:17:51.725703300 -0300
Birth: 2023-04-20 23:17:51.724022000 -0300
IPFS hash: QmYHXvR2YvF1kB3w2j19oyxf7jSHXNfevE6cSCDeHTV57d
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/02/d897d2765281a2b8b05532b46201d75810a9fa
Size: 121 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004139 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.139783400 -0300
Modify: 2021-03-16 00:19:09.000000000 -0300
Change: 2023-04-20 23:17:51.727264000 -0300
Birth: 2023-04-20 23:17:51.725979200 -0300
IPFS hash: QmXXsKBCg8PB3JV6eG4HfNxRQSUPmyg7M5UyjbrNdaMT2z
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/05/a5345ee2278e267119bf1bfb6c007b7e4985c1
Size: 121 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004071 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.123781900 -0300
Modify: 2021-03-16 00:17:40.000000000 -0300
Change: 2023-04-20 23:17:51.578743800 -0300
Birth: 2023-04-20 23:17:51.576388300 -0300
IPFS hash: QmeWmJoDSbfB6NvQGBVMHZ8yPDuNbKK4KrfdRz4kNBWRet
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/07/2be163986d3609da319688e6f42f62d0d5d028
Size: 2050 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004023 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.111780700 -0300
Modify: 2021-03-16 00:18:19.000000000 -0300
Change: 2023-04-20 23:17:51.254235200 -0300
Birth: 2023-04-20 23:17:51.252351900 -0300
IPFS hash: QmeyG56euGwut3TTwKaZAQajuL29FwLFkUdphzL2m39jyr
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/07/3631000363303943e98e4aa0b3e687128cef7f
Size: 579 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1004024 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.111780700 -0300
Modify: 2021-03-16 00:18:19.000000000 -0300
Change: 2023-04-20 23:17:51.256639500 -0300
Birth: 2023-04-20 23:17:51.254654900 -0300
IPFS hash: QmfUFHNGHBFDVVFeZZ6rRkdTV6rrLjvdcS8idoBz5xZaJJ
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/0a/71d7d1423f3ba84bac416ecebb46de85b9d6ed
Size: 28116 Blocks: 56 IO Block: 4096 regular file
Device: 8,20 Inode: 1003932 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.087778400 -0300
Modify: 2021-03-16 00:15:54.000000000 -0300
Change: 2023-04-20 23:17:51.045795900 -0300
Birth: 2023-04-20 23:17:51.043523700 -0300
IPFS hash: QmbvhYwgY1gLoZuXcAysUL8tTicEJ1DoGXcLJkSLgkAi2o
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/0b/7e1d06f5c6f94194a7c1ca0d575eaed6035359
Size: 2290 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004226 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.159785300 -0300
Modify: 2021-03-16 00:16:55.000000000 -0300
Change: 2023-04-20 23:17:52.635395100 -0300
Birth: 2023-04-20 23:17:52.633939500 -0300
IPFS hash: QmWsCKjTi9FMenThkx83J9EoXdZK25hNiFg1UuwX12fVRX
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/0c/7aec28f513926a7e749abc12863001e2f1b65c
Size: 11985 Blocks: 24 IO Block: 4096 regular file
Device: 8,20 Inode: 1003944 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.091778800 -0300
Modify: 2021-03-16 00:18:04.000000000 -0300
Change: 2023-04-20 23:17:51.067483000 -0300
Birth: 2023-04-20 23:17:51.065397100 -0300
IPFS hash: QmTotTz384muzEvTV9rMYavKSpmteWHFtdkJrSUpViYzcr
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/0d/97d9e9ac2935b860db5ba361753603ac313f2c
Size: 1228 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004040 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.115781100 -0300
Modify: 2021-03-16 00:18:00.000000000 -0300
Change: 2023-04-20 23:17:51.285983300 -0300
Birth: 2023-04-20 23:17:51.284181300 -0300
IPFS hash: QmRnHJgToQ3XJKFg3k9MEiDfhVLxSELq6KKJP1hEpVuQbS
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/11/c98a1b4ee1c7f8cfa79333c9bdf5f211883d77
Size: 562 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1004099 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.131782600 -0300
Modify: 2021-03-16 00:18:34.000000000 -0300
Change: 2023-04-20 23:17:51.647997300 -0300
Birth: 2023-04-20 23:17:51.646769600 -0300
IPFS hash: QmaVssSADx3BqvmGRkddbHRJtzH5debYJ61TDPSKvyrm2H
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/12/0796bb71997275eafef44818771a32bd857e12
Size: 14532 Blocks: 32 IO Block: 4096 regular file
Device: 8,20 Inode: 1003893 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.079777700 -0300
Modify: 2021-03-16 00:17:03.000000000 -0300
Change: 2023-04-20 23:17:50.954038800 -0300
Birth: 2023-04-20 23:17:50.952378800 -0300
IPFS hash: QmRybksEfcMXJUwzepMiDgAykZp9RBY8xtGwG9nyznoCdQ
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/12/b5c8fadf6dcec6e2842f502dd94c20de634e40
Size: 680 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1003892 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.079777700 -0300
Modify: 2021-03-16 00:17:02.000000000 -0300
Change: 2023-04-20 23:17:50.951988500 -0300
Birth: 2023-04-20 23:17:50.950387500 -0300
IPFS hash: QmTg3xJY7V6oyY5MZ7ssQsshVxwYSSZknz67sUBMsCL3AF
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/14/4cab3f63b4b88224f7b3e455b387f5e1584a44
Size: 58 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004089 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.127782300 -0300
Modify: 2021-03-16 00:16:46.000000000 -0300
Change: 2023-04-20 23:17:51.632486300 -0300
Birth: 2023-04-20 23:17:51.630920900 -0300
IPFS hash: QmfB6J83EpBH2ysFDRPfDDq9jcqJKSGru56X1guFkae8Sf
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/17/607b6d58e467f9760a66f1746ca242ee355f5d
Size: 646 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004152 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.143783800 -0300
Modify: 2021-03-16 00:18:51.000000000 -0300
Change: 2023-04-20 23:17:51.749156800 -0300
Birth: 2023-04-20 23:17:51.747814200 -0300
IPFS hash: QmewHEp57ggv3JoTu4LQUGTsLUgk5wEBK94n1tNU9UFEAE
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/17/8236dcff6fe3d986dfcae743eada0e1e29d812
Size: 13769 Blocks: 32 IO Block: 4096 regular file
Device: 8,20 Inode: 1004151 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.143783800 -0300
Modify: 2021-03-16 00:18:51.000000000 -0300
Change: 2023-04-20 23:17:51.747477400 -0300
Birth: 2023-04-20 23:17:51.745741200 -0300
IPFS hash: QmfVtDMa838u4b8u18uHjgSoC2HtKJX6ydMCEDJkE13esM
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/17/8b23319ffa68259e43d58fa2afb45a7fdb4c7e
Size: 420 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004150 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.143783800 -0300
Modify: 2021-03-16 00:18:52.000000000 -0300
Change: 2023-04-20 23:17:51.745429800 -0300
Birth: 2023-04-20 23:17:51.744037600 -0300
IPFS hash: QmaxnHcKADHXcLhaAUazZfiem6Mc1EQWm9FcrWfK1UyAWH
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/18/bd8f39743da3461020b7af60c5a808aeb8d222
Size: 167 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004036 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.115781100 -0300
Modify: 2021-03-16 00:15:58.000000000 -0300
Change: 2023-04-20 23:17:51.279397500 -0300
Birth: 2023-04-20 23:17:51.277696800 -0300
IPFS hash: QmcunhJfShSPYkKbh3gk27DXZbyaJkPBvALFfE6xJbgduh
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/1a/1eb52717efd707f7383e6917b8b844dcff8693
Size: 418 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003846 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.067776500 -0300
Modify: 2021-03-16 00:18:18.000000000 -0300
Change: 2023-04-20 23:17:50.857265300 -0300
Birth: 2023-04-20 23:17:50.855499700 -0300
IPFS hash: Qmf3sGFWpGeSUgrpFagtfXtyQv9sasizfh5JoPrKZgVsiH
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/1b/a048b6b316eec142f10f606fcb6c94a1e205fc
Size: 50 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003934 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.091778800 -0300
Modify: 2021-03-16 00:17:30.000000000 -0300
Change: 2023-04-20 23:17:51.049565900 -0300
Birth: 2023-04-20 23:17:51.047745000 -0300
IPFS hash: Qmc9EJrEFtWQD2u1Tdb3WXJ5sRN9xZcsfbUUdc33KuivgJ
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/1d/2d278055113a4018b4d2878cf6308cd4809c96
Size: 851 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004216 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.159785300 -0300
Modify: 2021-03-16 00:15:56.000000000 -0300
Change: 2023-04-20 23:17:51.851689300 -0300
Birth: 2023-04-20 23:17:51.850206100 -0300
IPFS hash: QmZj2Xpe4NmfX34hS4wYcyCzda3R9hBbKZQi1wRYmBKzzG
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/1d/8a3f74850af92d5fde99c2d28f4340476cccc0
Size: 90 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004215 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.159785300 -0300
Modify: 2021-03-16 00:15:56.000000000 -0300
Change: 2023-04-20 23:17:51.849892400 -0300
Birth: 2023-04-20 23:17:51.848505900 -0300
IPFS hash: Qmer9qNHrRZwbfKcBHZUwUoY27yXKAu4YWvCqBhebz5kEw
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/1e/c876cd96d0408e6dc3677a9b0298e306d2c2f7
Size: 345 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003940 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.091778800 -0300
Modify: 2021-03-16 00:15:47.000000000 -0300
Change: 2023-04-20 23:17:51.060490300 -0300
Birth: 2023-04-20 23:17:51.058961800 -0300
IPFS hash: QmX7XaGb7X1mCpghqpz62fLY2hhxTYvvowxSbKdD5bZrZZ
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/1e/d1adfc75656f5e5b046497aeb39aee00fabf74
Size: 445 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003939 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.091778800 -0300
Modify: 2021-03-16 00:15:48.000000000 -0300
Change: 2023-04-20 23:17:51.058597500 -0300
Birth: 2023-04-20 23:17:51.057219800 -0300
IPFS hash: QmUsY2K7rdtzQuS8fd3WY6p2Rgaa27TkjeADe89krUkvgW
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/1e/f8f6d68df64cd642e51c87057b81bd64471da1
Size: 176 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003938 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.091778800 -0300
Modify: 2021-03-16 00:15:48.000000000 -0300
Change: 2023-04-20 23:17:51.056857500 -0300
Birth: 2023-04-20 23:17:51.055339400 -0300
IPFS hash: QmYh3F8SFDGjLsTtQ1z5kRRm3Enb7EKteiH8vjW8HnaNef
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/1f/356e8df651ffc81acc42206ffd7ac4fa0b7e48
Size: 10713 Blocks: 24 IO Block: 4096 regular file
Device: 8,20 Inode: 1003901 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.079777700 -0300
Modify: 2021-03-16 00:19:01.000000000 -0300
Change: 2023-04-20 23:17:50.972274700 -0300
Birth: 2023-04-20 23:17:50.970327500 -0300
IPFS hash: QmZ8haLsphw6xnvMqr9uCmVmkLkzy6HtB5QhJZeHNFj4vH
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/20/37c6923c87f2388fdac3df9b77f2377f5b14bf
Size: 152 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004199 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.155784900 -0300
Modify: 2021-03-16 00:19:40.000000000 -0300
Change: 2023-04-20 23:17:51.821713900 -0300
Birth: 2023-04-20 23:17:51.820425100 -0300
IPFS hash: QmdAUtBtrMVHPvbnVmjWfXeeZEiGFtzNWZqFiUgxrQrhMe
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/20/7caba699fbab10729479e3924b6886be69a421
Size: 102 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004198 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.155784900 -0300
Modify: 2021-03-16 00:19:40.000000000 -0300
Change: 2023-04-20 23:17:51.819975700 -0300
Birth: 2023-04-20 23:17:51.818599100 -0300
IPFS hash: QmQ2bjgJ3ucwtne4Uf6tR8KFLsvXFVjtQnEFEgGNdoQtL7
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/23/93390395e431ad4c884308ab736a2054729354
Size: 897 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004115 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.135783000 -0300
Modify: 2021-03-16 00:19:01.000000000 -0300
Change: 2023-04-20 23:17:51.675900100 -0300
Birth: 2023-04-20 23:17:51.674179000 -0300
IPFS hash: QmUveyUyyDp2LUaiPB67huK8i5MLmn2yoqmAyc1zFnAwYW
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/24/3e79068c641a5d75d8c8e50512e1f2669a25b4
Size: 179 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003861 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:45:04.943578300 -0300
Modify: 2021-03-16 00:18:09.000000000 -0300
Change: 2023-04-20 23:17:50.887988600 -0300
Birth: 2023-04-20 23:17:50.886619500 -0300
IPFS hash: QmSX9yUWYVU5PZBpdN4sn4a3VEWQbvSTPkVBjzpaKvGUww
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/24/9ed02de862d0fab0b0da4c1d6d88cccddbb756
Size: 166 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1004336 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 23:45:47.720935200 -0300
Modify: 2023-04-20 23:45:30.094193400 -0300
Change: 2023-04-20 23:45:47.718758600 -0300
Birth: 2023-04-20 23:45:47.393801000 -0300
IPFS hash: QmSRxMu2gdpEZzmhLCij5CeQxEc622ZiBNzH7fHcXT3g4r
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/26/49b6b495895490e871cc6c0515c087b665d68f
Size: 646 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1004156 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.143783800 -0300
Modify: 2021-03-16 00:16:31.000000000 -0300
Change: 2023-04-20 23:17:51.754856000 -0300
Birth: 2023-04-20 23:17:51.753254700 -0300
IPFS hash: QmWsNvq1cFUFJSvsY8uJMpy5jQRfvXGjbK32gtR2FY4W2i
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/28/4d431c7d2e7434123f09faefd21b8364b4b066
Size: 2801 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 1003989 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.103780000 -0300
Modify: 2021-03-16 00:17:58.000000000 -0300
Change: 2023-04-20 23:17:51.172737500 -0300
Birth: 2023-04-20 23:17:51.170171000 -0300
IPFS hash: QmNSbPpVPyWJnkTRiZAbo4AW9NvRdpWNk7ZyAgGR19dnUE
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/28/d826582408df1804031080a88066541fcc47f2
Size: 151 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003988 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.103780000 -0300
Modify: 2021-03-16 00:17:59.000000000 -0300
Change: 2023-04-20 23:17:51.169707300 -0300
Birth: 2023-04-20 23:17:51.167786600 -0300
IPFS hash: QmRHvTpnwV5mixzrEFCj85EzWYBWgECQjLmv4CgsJAmA6k
------------------------------
File: ./.nostalgit[CORRUPTED-OBJS]/objects/2a/a6392c3852568f8ca81090623fe17b4dfbb713
Size: 426 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1003973 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-20 21:59:06.099779600 -0300
Modify: 2021-03-16 00:19:19.000000000 -0300
Change: 2023-04-20 23:17:51.137013600 -0300
Birth: 2023-04-20 23:17:51.134948600 -0300