-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.folderstamp1
executable file
·6557 lines (6555 loc) · 326 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/danimesq/Entertainment/YT-TTK/Mesquito/&meta
folderstamp version: r5
Method: Recursive
Current Git Branch: main
First Git Remote: origin - URL: https://github.com/Mesquito/meta.git
File: ./Private/noempty.txt
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 8,20 Inode: 3096648 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-05-23 23:20:32.680568100 -0300
Modify: 2023-01-02 19:15:30.779914600 -0300
Change: 2023-06-29 15:36:36.854576300 -0300
Birth: 2023-06-29 15:36:36.849134900 -0300
IPFS hash: QmbFMke1KXqnYyBBWxB74N4c5SBnJMVAiMNRcGu6x1AwQH
------------------------------
File: ./.folderstamp
Size: 700 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4257972 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-28 02:12:56.707944800 -0300
Modify: 2024-03-19 22:40:42.467791200 -0300
Change: 2024-03-19 22:40:42.467791200 -0300
Birth: 2023-10-20 22:07:13.196428200 -0300
IPFS hash: QmS62uyntyxK4f8QfuobVCjXNYCHrLXgbj4u9YAT2u5YdL
------------------------------
File: ./.git/COMMIT_EDITMSG
Size: 24 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073974 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-12 02:47:33.353570200 -0300
Modify: 2023-11-12 02:47:33.346620300 -0300
Change: 2023-11-12 02:47:33.346620300 -0300
Birth: 2023-10-08 23:46:43.944518700 -0300
IPFS hash: QmY6Bnu8a6uKMbEnDLHdJNd3VfHodw3fHEa2pbvVPCCT6r
------------------------------
File: ./.git/config
Size: 215 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 1326445 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-19 22:40:13.756508000 -0300
Modify: 2023-10-09 15:50:29.385696700 -0300
Change: 2023-10-09 15:50:29.386389600 -0300
Birth: 2023-10-09 15:50:29.384839100 -0300
IPFS hash: QmXXUdgmUxxCexre7VrwWv52Vvf35gnFByafvrnEx2yN4R
------------------------------
File: ./.git/description
Size: 73 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3144887 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:17.007986600 -0300
Modify: 2023-10-07 19:15:11.092667000 -0300
Change: 2023-10-07 19:15:11.092667000 -0300
Birth: 2023-10-07 19:15:11.092427400 -0300
IPFS hash: Qmdy135ZFG4kUALkaMhr6Cy3VhhkxyAh264kyg3725x8be
------------------------------
File: ./.git/HEAD
Size: 21 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3144861 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-19 22:40:13.756508000 -0300
Modify: 2023-10-07 19:15:11.091740500 -0300
Change: 2023-10-07 19:15:11.091740500 -0300
Birth: 2023-10-07 19:15:11.091003100 -0300
IPFS hash: QmbRUdVtdtxcpdqyJE3iZwTJq7FPcXR1ErQRFB76sQCg9H
------------------------------
File: ./.git/hooks/.eth
Size: 42 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 2028751 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-16 05:08:19.922411900 -0300
Modify: 2024-03-16 05:08:19.938412200 -0300
Change: 2024-03-16 05:08:19.938412200 -0300
Birth: 2024-03-16 05:08:19.922411900 -0300
IPFS hash: QmZj8bwUdLdXmNuYVUgXMSA7p5ceJDgcBuJavLuGtSZKUf
------------------------------
File: ./.git/hooks/applypatch-msg.sample
Size: 478 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3144790 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.414243200 -0300
Modify: 2023-10-07 19:15:10.992236800 -0300
Change: 2023-10-07 19:15:10.992236800 -0300
Birth: 2023-10-07 19:15:10.991984600 -0300
IPFS hash: QmY2duvZ5Resxt8astYUgQ8RXQz1N9axe77gCb5j6M95Gf
------------------------------
File: ./.git/hooks/commit-msg.sample
Size: 896 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 3143061 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.412743200 -0300
Modify: 2023-10-07 19:15:10.944992400 -0300
Change: 2023-10-07 19:15:10.944992400 -0300
Birth: 2023-10-07 19:15:10.925579100 -0300
IPFS hash: QmQbraCfKaCTZkqtdXCJPc11CWEiZGw1yYGwtbA6nbXWeh
------------------------------
File: ./.git/hooks/fsmonitor-watchman.sample
Size: 4655 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 3143036 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:18:56.683355700 -0300
Modify: 2023-10-07 19:15:10.880647400 -0300
Change: 2023-10-07 19:15:10.880647400 -0300
Birth: 2023-10-07 19:15:10.850789200 -0300
IPFS hash: QmNuzc8ypDCeoqfQffuasAjbdeFcj8o8kwuLq4eSUfYFkS
------------------------------
File: ./.git/hooks/post-update.sample
Size: 189 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3142896 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.410340900 -0300
Modify: 2023-10-07 19:15:10.838585100 -0300
Change: 2023-10-07 19:15:10.838585100 -0300
Birth: 2023-10-07 19:15:10.838316200 -0300
IPFS hash: QmQjYxVj9iwitDGkmR48Cemr1JTgc6pvwo5cFkumNWqnjm
------------------------------
File: ./.git/hooks/pre-applypatch.sample
Size: 424 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3142767 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.408390500 -0300
Modify: 2023-10-07 19:15:10.836621700 -0300
Change: 2023-10-07 19:15:10.836621700 -0300
Birth: 2023-10-07 19:15:10.836354800 -0300
IPFS hash: QmdzjzkpM31jTKd5YBJkWsbDXJeeW1Uy1UxVPwfKFxwy89
------------------------------
File: ./.git/hooks/pre-commit.sample
Size: 1643 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 3142681 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.403635500 -0300
Modify: 2023-10-07 19:15:10.807819800 -0300
Change: 2023-10-07 19:15:10.807819800 -0300
Birth: 2023-10-07 19:15:10.807577300 -0300
IPFS hash: QmY33NoK9jzqitkPK1QdWTnNQt7m6DsE4fYvyohjdbyfju
------------------------------
File: ./.git/hooks/pre-merge-commit.sample
Size: 416 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3142687 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.406001100 -0300
Modify: 2023-10-07 19:15:10.809090600 -0300
Change: 2023-10-07 19:15:10.809090600 -0300
Birth: 2023-10-07 19:15:10.808920100 -0300
IPFS hash: QmPte81MJoXgCngK75SVZTn2DAXskuo9gdVr2uR5PfVVQE
------------------------------
File: ./.git/hooks/pre-push.sample
Size: 1348 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 3142680 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.401557300 -0300
Modify: 2023-10-07 19:15:10.784266600 -0300
Change: 2023-10-07 19:15:10.784266600 -0300
Birth: 2023-10-07 19:15:10.760050700 -0300
IPFS hash: QmXprUtrWGYLRETUvuA89HjwUGdufGrwJxYaXyGwQ7TMvQ
------------------------------
File: ./.git/hooks/pre-rebase.sample
Size: 4850 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 3142663 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:18:57.172279300 -0300
Modify: 2023-10-07 19:15:10.744860700 -0300
Change: 2023-10-07 19:15:10.744860700 -0300
Birth: 2023-10-07 19:15:10.728320800 -0300
IPFS hash: QmfUUWWehKQYqGWXi32pzS9iPaSMiMTTB9uZHzpmZ3Z87x
------------------------------
File: ./.git/hooks/pre-receive.sample
Size: 544 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 3142612 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.397169400 -0300
Modify: 2023-10-07 19:15:10.726978300 -0300
Change: 2023-10-07 19:15:10.726978300 -0300
Birth: 2023-10-07 19:15:10.726741300 -0300
IPFS hash: QmRKbU9DFRNWjR1UwV4nC6MXPnrNanfsBM5579t4HLUuig
------------------------------
File: ./.git/hooks/prepare-commit-msg.sample
Size: 1492 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 3142422 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.391754000 -0300
Modify: 2023-10-07 19:15:10.659857100 -0300
Change: 2023-10-07 19:15:10.659857100 -0300
Birth: 2023-10-07 19:15:10.659477100 -0300
IPFS hash: QmPku8ai5p4sSCDHe19n9Ekfo21xM5urFdkq9Rg1wBHjcV
------------------------------
File: ./.git/hooks/update.sample
Size: 3635 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 3142181 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-07 19:15:18.385500600 -0300
Modify: 2023-10-07 19:15:10.639202500 -0300
Change: 2023-10-07 19:15:10.639202500 -0300
Birth: 2023-10-07 19:15:10.639001500 -0300
IPFS hash: QmV7QB3DHmN59g58DH4YFJMSsFsUCdc9PHK1uAdq2wk1wH
------------------------------
File: ./.git/index
Size: 10709 Blocks: 24 IO Block: 4096 regular file
Device: 8,20 Inode: 2497702 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-19 22:40:15.856449800 -0300
Modify: 2024-03-19 22:40:15.776452000 -0300
Change: 2024-03-19 22:40:15.776452000 -0300
Birth: 2024-03-19 22:40:15.776452000 -0300
IPFS hash: QmaESLcHgHUiqymcf4SxaQSKWeavZcoY51cDUMyLtgBtV8
------------------------------
File: ./.git/info/exclude
Size: 240 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3142107 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-19 22:40:14.608484300 -0300
Modify: 2023-10-07 19:15:10.611688900 -0300
Change: 2023-10-07 19:15:10.611688900 -0300
Birth: 2023-10-07 19:15:10.611402800 -0300
IPFS hash: QmcfzxUpw36y8fu2GR3s7Vgq7RBgooKtc6BgsqFnadsDLc
------------------------------
File: ./.git/logs/HEAD
Size: 7283 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 4073983 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:46:43.955002500 -0300
Modify: 2023-11-12 02:47:33.359884600 -0300
Change: 2023-11-12 02:47:33.359884600 -0300
Birth: 2023-10-08 23:46:43.955002500 -0300
IPFS hash: QmanGtTiAPyPeimboWGLrmg4vkke51bwyAWmwhByW13Ppo
------------------------------
File: ./.git/logs/refs/heads/main
Size: 7283 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 4073986 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:46:43.955810800 -0300
Modify: 2023-11-12 02:47:33.360420200 -0300
Change: 2023-11-12 02:47:33.360420200 -0300
Birth: 2023-10-08 23:46:43.955810800 -0300
IPFS hash: QmanGtTiAPyPeimboWGLrmg4vkke51bwyAWmwhByW13Ppo
------------------------------
File: ./.git/logs/refs/remotes/origin/main
Size: 644 Blocks: 1 IO Block: 4096 regular file
Device: 8,20 Inode: 1910737 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-09 15:50:29.452779700 -0300
Modify: 2023-10-20 22:10:02.770321000 -0300
Change: 2023-10-20 22:10:02.770321000 -0300
Birth: 2023-10-09 15:50:29.452779700 -0300
IPFS hash: QmbKbaCv3Cd8RLFHahuigEe4iGZtj1i9ULg6JSJNDbQX37
------------------------------
File: ./.git/objects/00/22470e5c665c4e2faa118ed625ad22e6de2b28
Size: 156 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4260288 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-13 20:44:17.672315400 -0300
Modify: 2023-10-13 20:44:17.483554800 -0300
Change: 2023-10-13 20:44:17.484371500 -0300
Birth: 2023-10-13 20:44:17.483216100 -0300
IPFS hash: QmdMbZnR3q8SvotdBVEfsqEYeT1JwYGqeVumhKdLqNPmZ4
------------------------------
File: ./.git/objects/00/3a68d516ef3c2746bd1bdbdef7b77beababb5e
Size: 371 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265895 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:08:16.885011800 -0300
Modify: 2023-10-20 22:08:16.882683100 -0300
Change: 2023-10-20 22:08:16.883791600 -0300
Birth: 2023-10-20 22:08:16.882220500 -0300
IPFS hash: QmdLqJtoSP9uGP6HDZeWNUtyrWMbUygXiVsYBsKnqLCwMA
------------------------------
File: ./.git/objects/00/893653297b72f215cb091e1e436b2f756f97ab
Size: 116 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129724 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:29:54.055487400 -0300
Modify: 2023-11-05 20:29:54.055923100 -0300
Change: 2023-11-05 20:29:54.057024500 -0300
Birth: 2023-11-05 20:29:54.055487400 -0300
IPFS hash: QmcRK1CaB9ZssAHfh29EXZHBbXPT4Rcjm512AFYzUAGCAL
------------------------------
File: ./.git/objects/00/98d135aa8faf88feb9f2ae9348566e8c4de23d
Size: 709 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4265857 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:10:01.406361000 -0300
Modify: 2023-10-20 22:08:15.398651600 -0300
Change: 2023-10-20 22:08:15.399558500 -0300
Birth: 2023-10-20 22:08:15.398096100 -0300
IPFS hash: QmTKQAoUGeNoteQknjXr5C6QmLYzrtSeceQRPe9MpqtgQD
------------------------------
File: ./.git/objects/01/3df76d5d4f4ecd1d29b7d98498ec897ca4a64e
Size: 64 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4074164 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-09 00:14:12.767501500 -0300
Modify: 2023-10-09 00:14:12.767501500 -0300
Change: 2023-10-09 00:14:12.767501500 -0300
Birth: 2023-10-09 00:04:04.955847200 -0300
IPFS hash: QmZvctBJPn8ipsAsd6azWiPjRfYrAF6deefCTpghkj22Jp
------------------------------
File: ./.git/objects/01/63c7ca9c4f36d09fefb8e9854172c5894f8573
Size: 2246 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4260380 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 04:11:08.236458200 -0300
Modify: 2023-10-13 21:06:36.889942500 -0300
Change: 2023-10-13 21:06:36.890436500 -0300
Birth: 2023-10-13 21:06:36.889460100 -0300
IPFS hash: QmUP5GtZbdnzYmcwVqepQvjvdfUGkjrewGux63TeGeGoRX
------------------------------
File: ./.git/objects/02/2a213633e16a2fa67bf15ff64bb5d2c3fc3a01
Size: 66 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073952 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:46:43.969733800 -0300
Modify: 2023-10-08 23:46:41.042306000 -0300
Change: 2023-10-08 23:46:41.042639800 -0300
Birth: 2023-10-08 23:46:41.042165200 -0300
IPFS hash: QmZCk214eExrBsRWNP42SHVk39rYNF82PfaznBBFb3gWC8
------------------------------
File: ./.git/objects/02/9fb63cc4e35ed7c2360db90871fc16079d9e48
Size: 232 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4259854 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 17:03:32.379369200 -0300
Modify: 2023-10-14 17:03:32.192339300 -0300
Change: 2023-10-14 17:03:32.193119200 -0300
Birth: 2023-10-14 17:03:32.192104300 -0300
IPFS hash: QmPtW5JAN2BVNpevPZhv5zakUbM2rKXtDRVJp1nrBGzQcb
------------------------------
File: ./.git/objects/02/b73839e7098d209fa751ba50e2c4565eb62e92
Size: 5304 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 4264671 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-17 21:59:00.198527200 -0300
Modify: 2023-10-17 21:41:12.909254600 -0300
Change: 2023-10-17 21:41:12.910288300 -0300
Birth: 2023-10-17 21:41:12.907934000 -0300
IPFS hash: QmQ8Yf2EubBg29wqyvZxKpRxpH43QdjamunLeS8FLt9tcJ
------------------------------
File: ./.git/objects/02/fed79db7bdfdcebff0b61d56845a2b877ad7d9
Size: 288 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4260297 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-13 20:44:17.660708600 -0300
Modify: 2023-10-13 20:44:17.660050000 -0300
Change: 2023-10-13 20:44:17.660344000 -0300
Birth: 2023-10-13 20:44:17.659868300 -0300
IPFS hash: QmdqdCp5fio7zBSNmiG6rkdTea5QC5jJyQ5f96qzvrQaVp
------------------------------
File: ./.git/objects/03/8520523e6559a0f2083024da0f8aae70ecb41f
Size: 265 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129674 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:30:12.618605100 -0300
Modify: 2023-11-05 20:25:04.148254100 -0300
Change: 2023-11-05 20:25:04.148972300 -0300
Birth: 2023-11-05 20:25:04.147958400 -0300
IPFS hash: QmSqF7fkWMi8JDnev4CEQg3JpcVT1ZuEfB9dyZVJH4BZ7T
------------------------------
File: ./.git/objects/03/f9801bf75711c54c97428555d349f8d59790c3
Size: 3128 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4265932 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-12 02:47:19.111987500 -0300
Modify: 2023-11-12 02:47:19.111987500 -0300
Change: 2023-11-12 02:47:19.111987500 -0300
Birth: 2023-10-20 22:08:56.361175700 -0300
IPFS hash: QmcRBeA5H2pkQN3KmLmfeNaujq5sex2ZJoSPSCnEwKWAcQ
------------------------------
File: ./.git/objects/04/2ec676f26c15d3daf89c5ebeeba51bd40a0194
Size: 177 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4264960 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-17 21:41:13.561025700 -0300
Modify: 2023-10-17 21:41:13.390128300 -0300
Change: 2023-10-17 21:41:13.391195800 -0300
Birth: 2023-10-17 21:41:13.389338700 -0300
IPFS hash: Qmanb32Xd2XGruz135ciFNNFW3eVKha3v5H5V6mYs6EDen
------------------------------
File: ./.git/objects/04/953e71dd8a6dd1b13210e88ad168abcada1ef6
Size: 1740 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 3145208 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-10 22:12:58.197463500 -0300
Modify: 2023-10-10 22:12:58.197463500 -0300
Change: 2023-10-10 22:12:58.197463500 -0300
Birth: 2023-10-10 22:12:21.777672400 -0300
IPFS hash: QmV3hrosN7oz23KR3X24R4AjftaB8WktH1GNadR65CVXau
------------------------------
File: ./.git/objects/04/a9b4527e4278897b692073a9eae5c522a1208d
Size: 289 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265438 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-17 22:01:50.157197600 -0300
Modify: 2023-10-17 22:01:50.157385900 -0300
Change: 2023-10-17 22:01:50.157878500 -0300
Birth: 2023-10-17 22:01:50.157197600 -0300
IPFS hash: Qmf6A43WTg48SFt5r6Txn65mCaVonhA6vctsbYCAN2PnM2
------------------------------
File: ./.git/objects/04/e4b2f94887bbfa21a0565da4efc3e47b1b3856
Size: 288 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4259856 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 17:03:32.197435100 -0300
Modify: 2023-10-14 17:03:32.197671100 -0300
Change: 2023-10-14 17:03:32.198349700 -0300
Birth: 2023-10-14 17:03:32.197435100 -0300
IPFS hash: QmaospKBizLBYyBWmRQSYybemjVp3ZsekqLEG2MTARxs6Z
------------------------------
File: ./.git/objects/04/f1d99ee3b508e06c0e0063763c45db0eaea8f8
Size: 375 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4260143 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 04:11:08.237588100 -0300
Modify: 2023-10-13 20:33:54.946647700 -0300
Change: 2023-10-13 20:33:54.947442900 -0300
Birth: 2023-10-13 20:33:54.946235200 -0300
IPFS hash: QmZxUDXrknjPphtBvK4D1xqabWCCdeBAKCMMPHSAdfemw6
------------------------------
File: ./.git/objects/05/2e548aee214b51a80563a17874b97659a9e07c
Size: 258 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129627 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:25:04.112391000 -0300
Modify: 2023-11-05 20:23:17.249680500 -0300
Change: 2023-11-05 20:23:17.250673600 -0300
Birth: 2023-11-05 20:23:17.249253200 -0300
IPFS hash: QmWns7xySFcDQGAz3okTuA1Cg8DcwrHohKSs4j5EM5RfQa
------------------------------
File: ./.git/objects/05/67e296103be0ef9a5eb2b880c23336979c7a1c
Size: 190 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265542 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:08:15.667920600 -0300
Modify: 2023-10-20 22:08:15.667920600 -0300
Change: 2023-10-20 22:08:15.667920600 -0300
Birth: 2023-10-20 22:07:54.385705500 -0300
IPFS hash: QmcnXHgDLGsLDfBj5amvZYENEPmzdPh2nGTrAftM2Nm82t
------------------------------
File: ./.git/objects/05/924310b7de05fa5bdbeb33efdde07ac27a9660
Size: 325 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073821 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.806207800 -0300
Modify: 2023-10-08 23:45:09.769704700 -0300
Change: 2023-10-08 23:45:09.770080900 -0300
Birth: 2023-10-08 23:45:09.769532600 -0300
IPFS hash: QmSKaNoG9gkA7hfmJWUkLYRQQwHB2BMSzDgB9MHbHoLaxL
------------------------------
File: ./.git/objects/05/ef0db4694a6d13fa5e42d5c6efed8104530b79
Size: 254 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265860 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:10:01.407729700 -0300
Modify: 2023-10-20 22:08:15.434079900 -0300
Change: 2023-10-20 22:08:15.435097000 -0300
Birth: 2023-10-20 22:08:15.433722200 -0300
IPFS hash: QmatEkkkJVQPDJBqahrRfAnE4F3baLVvouV9aFoH5h5nue
------------------------------
File: ./.git/objects/07/6269d2c1b7812695ca59a12f5bb8dc4a3a8afd
Size: 126 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4273288 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-28 02:15:10.725835000 -0300
Modify: 2023-10-28 02:15:10.106598000 -0300
Change: 2023-10-28 02:15:10.107286200 -0300
Birth: 2023-10-28 02:15:10.106156900 -0300
IPFS hash: QmZfWTrQY17DhoQu4tA7a6GprZ9iH9AANif2LEajRuHgkS
------------------------------
File: ./.git/objects/07/f8e1f4f14ecec94b9d78f6e2b48d047cc082c0
Size: 3491 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4073741 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.830589800 -0300
Modify: 2023-10-08 23:44:55.908720300 -0300
Change: 2023-10-08 23:44:55.909248500 -0300
Birth: 2023-10-08 23:44:55.908144100 -0300
IPFS hash: QmYNSGhmTJALf848VscxP9gCNywCSfUuApGBrangzQMiHE
------------------------------
File: ./.git/objects/08/22f5537ac063bcbb7df0c08987eee8bb2f703c
Size: 169 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129641 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-19 22:40:14.764480000 -0300
Modify: 2023-11-05 20:23:17.296192000 -0300
Change: 2023-11-05 20:23:17.297295900 -0300
Birth: 2023-11-05 20:23:17.295844800 -0300
IPFS hash: QmNd5YwgvoN2rhkt1Gs3qYiJYCrmn7FtNRnwG2nqymk2fi
------------------------------
File: ./.git/objects/08/7f92859508372fcbd6282c880a25d9ade8b05b
Size: 264 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073815 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.804928200 -0300
Modify: 2023-10-08 23:45:09.767274100 -0300
Change: 2023-10-08 23:45:09.767649100 -0300
Birth: 2023-10-08 23:45:09.767111800 -0300
IPFS hash: QmaZuLZuLGNxvRJ4zr9SPuyEhW1StZZAvirKiD5irZsM4F
------------------------------
File: ./.git/objects/08/bb6b1aba35c3921433e19692aba2288afb95a5
Size: 289 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265384 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-17 21:58:59.943909800 -0300
Modify: 2023-10-17 21:58:59.944369700 -0300
Change: 2023-10-17 21:58:59.945393100 -0300
Birth: 2023-10-17 21:58:59.943909800 -0300
IPFS hash: QmNngh2h3hDF564vdrcFiX67zDjCBhrZpqcRCJyNyyk4ei
------------------------------
File: ./.git/objects/08/c55e2c488e8d41b2dd40696cbf6d901f5c23b5
Size: 3110 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4073791 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.798423300 -0300
Modify: 2023-10-08 23:45:09.419596800 -0300
Change: 2023-10-08 23:45:09.421170100 -0300
Birth: 2023-10-08 23:45:09.418925300 -0300
IPFS hash: QmaFumjUcYi9Eyhczkg2wgHAsanvSrKdeEEfKhcmtUq41t
------------------------------
File: ./.git/objects/09/4b0377f79abf82d29d86941e0fdfd3dfa600ae
Size: 346 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073844 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.812192500 -0300
Modify: 2023-10-08 23:45:10.449464100 -0300
Change: 2023-10-08 23:45:10.449793400 -0300
Birth: 2023-10-08 23:45:10.449313000 -0300
IPFS hash: QmbrKyCRjB96ZqXuoftgXoACfkY93nVc54JKaziHdsFDnf
------------------------------
File: ./.git/objects/09/ae6ff8be10e664440ff23b2898a9ee8b137443
Size: 400 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265956 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:09:40.115980100 -0300
Modify: 2023-10-20 22:09:40.116246500 -0300
Change: 2023-10-20 22:09:40.116911700 -0300
Birth: 2023-10-20 22:09:40.115980100 -0300
IPFS hash: QmTJV9ceG152rfeo1YqqgVN4uf1TQVYGrkbkHQGdhdw88w
------------------------------
File: ./.git/objects/09/c1bea3868c5cd0a46795582868d0f0bf41a06c
Size: 84 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129665 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:24:52.241597400 -0300
Modify: 2023-11-05 20:24:52.242029300 -0300
Change: 2023-11-05 20:24:52.242752200 -0300
Birth: 2023-11-05 20:24:52.241597400 -0300
IPFS hash: QmZE37ky1oaECJsQjrb5bn4zdZficLkoVTN4GTg7XYTdBc
------------------------------
File: ./.git/objects/0a/7a05d5ccac76800f49fc6f55d9e559fe288caf
Size: 62 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073937 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:46:43.967605900 -0300
Modify: 2023-10-08 23:46:41.030899700 -0300
Change: 2023-10-08 23:46:41.031555300 -0300
Birth: 2023-10-08 23:46:41.030606900 -0300
IPFS hash: QmfDueBWJAS2wwkdBhPBmV577PdzrKcHquEkrDJKXL3iSt
------------------------------
File: ./.git/objects/0a/b2c475a71d44a400e6ce25e590af9310d293eb
Size: 201 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265379 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:08:15.411082800 -0300
Modify: 2023-10-20 22:08:15.411082800 -0300
Change: 2023-10-20 22:08:15.411082800 -0300
Birth: 2023-10-20 22:07:54.109507900 -0300
IPFS hash: QmWbyDTqd9ea2kRgtCEBmGohHbspRTuWX9oinXKjTumCMW
------------------------------
File: ./.git/objects/0a/d649205cebf052d16d8ef9549f2327ebfb707d
Size: 6491 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 4265337 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:08:15.306751500 -0300
Modify: 2023-10-20 22:08:15.306751500 -0300
Change: 2023-10-20 22:08:15.306751500 -0300
Birth: 2023-10-20 22:07:53.287033500 -0300
IPFS hash: QmPyrpqNL2S3bJnvC2cTLFvCJzvVAMZVALrk3vM7QLDARr
------------------------------
File: ./.git/objects/0a/fe943bbeaf3bb8fdf5c2f41feafd5ac01834ab
Size: 289 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4042958 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-15 00:40:55.315461900 -0300
Modify: 2023-10-15 00:40:55.315864600 -0300
Change: 2023-10-15 00:40:55.316754500 -0300
Birth: 2023-10-15 00:40:55.315461900 -0300
IPFS hash: QmdyPkrvQUZDH6HN4xk1vetmM35Gs1FatkuLwt3xSVhU2y
------------------------------
File: ./.git/objects/0b/0f6f1150c99108c85dccd6811794a583e8d9bc
Size: 166 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265704 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:07:58.376874000 -0300
Modify: 2023-10-20 22:07:54.407673000 -0300
Change: 2023-10-20 22:07:54.408686500 -0300
Birth: 2023-10-20 22:07:54.407294100 -0300
IPFS hash: QmQD4qW3FYg2rXjr3QAu7ZSTQDqF5Ku1krSExbZRdsxupw
------------------------------
File: ./.git/objects/0b/4f292d164540e358d9ad25399b6945f018446a
Size: 262 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265443 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-17 22:18:59.191860900 -0300
Modify: 2023-10-17 22:01:50.334175800 -0300
Change: 2023-10-17 22:01:50.334880600 -0300
Birth: 2023-10-17 22:01:50.333894200 -0300
IPFS hash: QmPxtDQeh4oFXYyXVc7i9GUUVNdrFnAFHaXT31ERfio9pD
------------------------------
File: ./.git/objects/0c/823d91d3d83528ef3f6fce714fb200ae5121b4
Size: 756 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4074095 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-09 00:04:05.182852200 -0300
Modify: 2023-10-08 23:49:17.526608200 -0300
Change: 2023-10-08 23:49:17.526985500 -0300
Birth: 2023-10-08 23:49:17.526245100 -0300
IPFS hash: QmaKqFJx3hmjYmUW9Mmh76h8G7Xv9wFeREkXrTh1vH2Ezz
------------------------------
File: ./.git/objects/0d/3752b15bb35dd18bcb231924a064b000632b83
Size: 4978 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 4265345 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:08:15.314526400 -0300
Modify: 2023-10-20 22:08:15.314526400 -0300
Change: 2023-10-20 22:08:15.314526400 -0300
Birth: 2023-10-20 22:07:54.098699500 -0300
IPFS hash: QmU7ak8adGkvQBSunLkHu5aMK4BJdwvmXTkKxsB7hotVQN
------------------------------
File: ./.git/objects/0d/4e8c3f284d8bef9467d5d256e9c80b8cf52ea9
Size: 54 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4046638 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-12 02:46:37.501191000 -0300
Modify: 2023-11-12 02:46:36.980522800 -0300
Change: 2023-11-12 02:46:36.981612900 -0300
Birth: 2023-11-12 02:46:36.980033700 -0300
IPFS hash: QmYTm1Ku7AWS39Nyn3wUePSomKjcV7mfa8HvRH3qytXxqd
------------------------------
File: ./.git/objects/0d/8a4c945a63db8e652828f74a83f0fb5978e703
Size: 2591 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4073789 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.797901400 -0300
Modify: 2023-10-08 23:45:09.417548800 -0300
Change: 2023-10-08 23:45:09.418028000 -0300
Birth: 2023-10-08 23:45:09.416929000 -0300
IPFS hash: QmPdd2P141rL5HY5GHUGCL1SS5ZdsJDrCqEhMyg5EiHmNo
------------------------------
File: ./.git/objects/0d/9c9e6ca7dc426eb26cc079b02e9c69ad72627d
Size: 62 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4259853 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 19:39:17.497953200 -0300
Modify: 2023-10-14 17:03:32.189891400 -0300
Change: 2023-10-14 17:03:32.190498500 -0300
Birth: 2023-10-14 17:03:32.189570300 -0300
IPFS hash: QmVa6xTHNFE89Rq7xHBt5bT3s8UK4gGGsebePFEEGfqeTg
------------------------------
File: ./.git/objects/0e/4886a1f63d82243bc1e2f833bd9828bfd597bd
Size: 1722 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4265439 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:08:15.419066000 -0300
Modify: 2023-10-20 22:08:15.419066000 -0300
Change: 2023-10-20 22:08:15.419066000 -0300
Birth: 2023-10-20 22:07:54.170370600 -0300
IPFS hash: QmVnsWVbBQFbAStaVnTQ7dDT4av259Rn3j82dBtGipnNoQ
------------------------------
File: ./.git/objects/0e/5fab7bc99e7df943869587acdf35f528903143
Size: 93 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073800 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-09 00:14:05.763599400 -0300
Modify: 2023-10-09 00:14:05.763599400 -0300
Change: 2023-10-09 00:14:05.763599400 -0300
Birth: 2023-10-08 23:45:09.426622900 -0300
IPFS hash: QmXosws7SGj6rtNAHbjraLCSaf2Zcx7SuziZFXEh3Y3fN6
------------------------------
File: ./.git/objects/0f/0cd613271c188f1e74fab36e4c1659eaa45ef5
Size: 288 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073966 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 16:34:47.562320800 -0300
Modify: 2023-10-14 16:34:47.561527700 -0300
Change: 2023-10-14 16:34:47.561904600 -0300
Birth: 2023-10-14 16:34:47.561332100 -0300
IPFS hash: Qmcsga19n848YPpgpp8dMqYMvrim6vE1phEcBPQQgCmGxC
------------------------------
File: ./.git/objects/0f/15cfa6ca40bd10051298caab00e8102e8016b7
Size: 225 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4074021 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.563477400 -0300
Modify: 2023-10-08 23:49:16.943605000 -0300
Change: 2023-10-08 23:49:16.943911400 -0300
Birth: 2023-10-08 23:49:16.943460600 -0300
IPFS hash: QmUpw2M3DGdcFwVMGyEjcJ2ywrqPa17yLFqnxVsdADC7vi
------------------------------
File: ./.git/objects/0f/17c93b0c60b720ce50c196c206c23eaab9a5c4
Size: 1173 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4069197 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.706117500 -0300
Modify: 2023-10-07 21:14:43.899877900 -0300
Change: 2023-10-07 21:14:43.900788500 -0300
Birth: 2023-10-07 21:14:43.876399500 -0300
IPFS hash: QmR1kXdS2LGU9D1U1ntL157YkfBtNb5mCUwmrtabB8wuwJ
------------------------------
File: ./.git/objects/0f/1dcdec957f0c18af376bc0115eacfcf194e678
Size: 167 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265969 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-19 22:40:14.632483600 -0300
Modify: 2023-10-20 22:09:40.775973100 -0300
Change: 2023-10-20 22:09:40.777144100 -0300
Birth: 2023-10-20 22:09:40.775456500 -0300
IPFS hash: QmSWhFvKsNacV2ZGessvMuaQfRNmkcvM3kLzquVfuQGLWF
------------------------------
File: ./.git/objects/10/7f40a8d69accd55603cf8164a85198c8efc6dc
Size: 37 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265946 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:10:01.412109700 -0300
Modify: 2023-10-20 22:09:27.551831600 -0300
Change: 2023-10-20 22:09:27.552684100 -0300
Birth: 2023-10-20 22:09:27.551439300 -0300
IPFS hash: QmQTYas77Y9fNa28jY6doB3j4QyY1pfL9fWbMN1wL8RDZ7
------------------------------
File: ./.git/objects/11/f0db3bae4af1e8fabde0505e7e600b184f4634
Size: 4704 Blocks: 16 IO Block: 4096 regular file
Device: 8,20 Inode: 4261294 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-17 21:41:13.586773100 -0300
Modify: 2023-10-17 21:21:45.449862200 -0300
Change: 2023-10-17 21:21:45.451009900 -0300
Birth: 2023-10-17 21:21:45.448563000 -0300
IPFS hash: QmTNy3UmLFDFt5ca11hB7Hk5Wi7MJeDhPEAYQa14qaRT2Y
------------------------------
File: ./.git/objects/12/7e605acf2feb1d6e1d9eefb6f920d86dbf940b
Size: 87 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3140999 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-10 22:12:37.849596800 -0300
Modify: 2023-10-10 21:57:38.787994000 -0300
Change: 2023-10-10 21:57:38.788382500 -0300
Birth: 2023-10-10 21:57:38.787806700 -0300
IPFS hash: QmbPF6rNSnwUKPnv5P1we6sh18Rwg54CY9J9evVogBZYg6
------------------------------
File: ./.git/objects/12/c2bc8b0b3d69590632d3aa32cb85665f201ea5
Size: 232 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4261296 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-17 21:21:46.352340100 -0300
Modify: 2023-10-17 21:21:45.624245800 -0300
Change: 2023-10-17 21:21:45.625324000 -0300
Birth: 2023-10-17 21:21:45.623830900 -0300
IPFS hash: QmaN5tXir8PtG48iRtZ9o6hz7uxKPgyndccj1N1UEWtzPT
------------------------------
File: ./.git/objects/12/cb788ba6e8f616c472091f5b1242922c87aa2f
Size: 264 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4259638 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 16:58:39.883752500 -0300
Modify: 2023-10-14 16:52:09.733618400 -0300
Change: 2023-10-14 16:52:09.733987800 -0300
Birth: 2023-10-14 16:52:09.733386000 -0300
IPFS hash: QmTN2cAdmtwveihsZAYyMwkf1yBzqGmPNfRGZZrcWFHsS9
------------------------------
File: ./.git/objects/12/ffc8a04c13b5ee3ca7f8c9d8a2339140a71719
Size: 109 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129738 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:30:12.763858600 -0300
Modify: 2023-11-05 20:30:11.776384100 -0300
Change: 2023-11-05 20:30:11.777241900 -0300
Birth: 2023-11-05 20:30:11.775986300 -0300
IPFS hash: QmYqYqKa7qMm4CHNhUkhkM7zk6ESrLppvS15rwsDizoQLZ
------------------------------
File: ./.git/objects/13/bd7fd4cecdcf4f4bfaa738277a7d64bfc736f0
Size: 289 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 3141007 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-10 21:57:38.796667900 -0300
Modify: 2023-10-10 21:57:38.795955100 -0300
Change: 2023-10-10 21:57:38.796256000 -0300
Birth: 2023-10-10 21:57:38.795762600 -0300
IPFS hash: QmcNtvXgurreFjv2CijyxYnGUuKLphLdLu78DrAFzkkW9x
------------------------------
File: ./.git/objects/14/2e118383a0fd3fa800abfc33f0e676fdb8fb81
Size: 175 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129753 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-19 22:40:14.736480700 -0300
Modify: 2023-11-05 20:30:12.689158400 -0300
Change: 2023-11-05 20:30:12.689780600 -0300
Birth: 2023-11-05 20:30:12.688917200 -0300
IPFS hash: QmP1HknsQibvfxKogk1VnZjBz1JK4GaiPGdft15PZEA2P1
------------------------------
File: ./.git/objects/14/5f63b581d5ffa42ed2bd9e47a8e395b6338303
Size: 339 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265878 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:08:16.909798600 -0300
Modify: 2023-10-20 22:08:15.701748900 -0300
Change: 2023-10-20 22:08:15.702491600 -0300
Birth: 2023-10-20 22:08:15.701466900 -0300
IPFS hash: QmWy5f2NuxAyNudw68jv4DahbGReDfqA4Ze8nwe2okbMbT
------------------------------
File: ./.git/objects/14/c74da07f9a648a0d21dcb2ad42b656623ab1db
Size: 344 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129539 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:21:53.268723800 -0300
Modify: 2023-11-05 20:18:50.762929200 -0300
Change: 2023-11-05 20:18:50.764123800 -0300
Birth: 2023-11-05 20:18:50.762502900 -0300
IPFS hash: QmWh8pKM4gPLum3HvZSHnWnEe2rReKwKnf5hAy7vMGXVrW
------------------------------
File: ./.git/objects/14/f700727757cac537922374bfbeb8f43553e091
Size: 156 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4260260 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-13 20:43:05.936065400 -0300
Modify: 2023-10-13 20:43:05.349191500 -0300
Change: 2023-10-13 20:43:05.349926800 -0300
Birth: 2023-10-13 20:43:05.348831900 -0300
IPFS hash: QmWRx5CfNRpF894UKdSjJWenQj4Yuw5CNss4qU4HozJ1iw
------------------------------
File: ./.git/objects/15/4e06475dd3dd9d2bfe97bbdc71423df22c681b
Size: 289 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4259578 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 16:44:23.662675300 -0300
Modify: 2023-10-14 16:44:23.661990400 -0300
Change: 2023-10-14 16:44:23.662282000 -0300
Birth: 2023-10-14 16:44:23.661806900 -0300
IPFS hash: QmR7ZJLF9nPtitBRyMtFzkytsKS8UkMp3DnWqHEZDPZTsM
------------------------------
File: ./.git/objects/17/264d8cea952fe68bc57adbef2e8d524ca416bf
Size: 12541 Blocks: 32 IO Block: 4096 regular file
Device: 8,20 Inode: 4265861 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:10:01.412998700 -0300
Modify: 2023-10-20 22:08:15.440374000 -0300
Change: 2023-10-20 22:08:15.441302700 -0300
Birth: 2023-10-20 22:08:15.437943100 -0300
IPFS hash: QmUEn3NKLE9mAPWHbfosEgNx24H8bCJR8djyzNnnnyo8fK
------------------------------
File: ./.git/objects/17/32ab792f674cb4d24532ac55943d34ac5abc13
Size: 288 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4259822 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 16:58:39.916397300 -0300
Modify: 2023-10-14 16:58:39.915602900 -0300
Change: 2023-10-14 16:58:39.915934600 -0300
Birth: 2023-10-14 16:58:39.915398500 -0300
IPFS hash: QmYDUCRdb8F8BoQge6TUaAsLXWab7KXkMdJKWZbRQXPzqT
------------------------------
File: ./.git/objects/17/4ece1528d559dabb1b5284f27bd16965b83a80
Size: 400 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129513 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:17:27.047658600 -0300
Modify: 2023-11-05 20:17:27.046277100 -0300
Change: 2023-11-05 20:17:27.046956500 -0300
Birth: 2023-11-05 20:17:27.045997400 -0300
IPFS hash: QmQBhSgnFewSrBQUWhCoANKBZ5Mupsi6RLbdUumnJwRGr1
------------------------------
File: ./.git/objects/17/6ffa6844fc9084cba7aa60a01815ed0e477039
Size: 399 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4046639 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-12 02:46:37.053944900 -0300
Modify: 2023-11-12 02:46:37.054398100 -0300
Change: 2023-11-12 02:46:37.055316000 -0300
Birth: 2023-11-12 02:46:37.053944900 -0300
IPFS hash: QmV6CCzNfoEtNA1ro4iKRsuRYAU6dH7RZHP6QKapT9G4ff
------------------------------
File: ./.git/objects/18/261edab9187c04ea18366a9ad19a08296f60e0
Size: 119 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129728 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:29:54.122765700 -0300
Modify: 2023-11-05 20:29:54.123091200 -0300
Change: 2023-11-05 20:29:54.124246600 -0300
Birth: 2023-11-05 20:29:54.122765700 -0300
IPFS hash: QmRy9y8HZJ3kupRMsfxh6r4dpdxi74GjocgjK7bZdfV3X4
------------------------------
File: ./.git/objects/18/7a226102cb24e0c8c74e7e3149bffd56928f1e
Size: 329 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4039279 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-14 16:07:50.944033900 -0300
Modify: 2023-10-14 15:40:43.319246900 -0300
Change: 2023-10-14 15:40:43.319978000 -0300
Birth: 2023-10-14 15:40:43.318844400 -0300
IPFS hash: QmT2Ri9WTHdBD15fw611Wgz6HV9AaJTov5xFVwvE5hJmLi
------------------------------
File: ./.git/objects/18/8870e04fdb6203b4081d4e75b6fb2afded7325
Size: 147 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073941 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:46:43.967812800 -0300
Modify: 2023-10-08 23:46:41.034332600 -0300
Change: 2023-10-08 23:46:41.034666800 -0300
Birth: 2023-10-08 23:46:41.034172100 -0300
IPFS hash: QmP7oY42XzfVJfmd4F2oepkJatPmAetWmd3DxwFBC7H8t3
------------------------------
File: ./.git/objects/1a/3e7a00380e764e8b6af9bd6eb3058a3b239304
Size: 181 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265458 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2024-03-19 22:40:14.868477100 -0300
Modify: 2023-10-17 22:01:50.503234100 -0300
Change: 2023-10-17 22:01:50.504086300 -0300
Birth: 2023-10-17 22:01:50.502965900 -0300
IPFS hash: QmehQAsMx7pVgHcCkZs7NjeabieZpgriQ2uRj2Soi6bebf
------------------------------
File: ./.git/objects/1a/6e76e79c2f142655033e606b4dcf8d364309ba
Size: 216 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4073956 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:46:43.970469800 -0300
Modify: 2023-10-08 23:46:41.050077400 -0300
Change: 2023-10-08 23:46:41.050415000 -0300
Birth: 2023-10-08 23:46:41.049912400 -0300
IPFS hash: QmNXzhnhDzqZxs5iW1EtGmVD3EMsu8yxzUcVC5T5YdUYCD
------------------------------
File: ./.git/objects/1a/83d94ba6ac9339b0030df9137ba5f58066dd27
Size: 1980 Blocks: 8 IO Block: 4096 regular file
Device: 8,20 Inode: 4073824 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-08 23:49:17.807392000 -0300
Modify: 2023-10-08 23:45:10.000695700 -0300
Change: 2023-10-08 23:45:10.001289100 -0300
Birth: 2023-10-08 23:45:10.000069300 -0300
IPFS hash: QmZH8eT6ErxP2XSMuXxrZqJ2nUYTS2qsUDkQsCXgPzQq7T
------------------------------
File: ./.git/objects/1a/ddf89ed3e51d88531b9a1fe12466839f64bf50
Size: 289 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4260684 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-18 19:15:41.166725100 -0300
Modify: 2023-10-18 19:15:41.167242200 -0300
Change: 2023-10-18 19:15:41.168252800 -0300
Birth: 2023-10-18 19:15:41.166725100 -0300
IPFS hash: QmXAYbRLAeLfEqojitAKs18mYwWfNVYzKa2vGE66t2DJkP
------------------------------
File: ./.git/objects/1a/de132cfc182bc1066b1ab531e23e3308672fca
Size: 232 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265382 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-17 21:59:00.196074000 -0300
Modify: 2023-10-17 21:58:59.935480700 -0300
Change: 2023-10-17 21:58:59.936783700 -0300
Birth: 2023-10-17 21:58:59.934855700 -0300
IPFS hash: QmPRm6W3dNc6kn7kawQLcDLJGDmTpf8h6H2yZNxrKSG8ZH
------------------------------
File: ./.git/objects/1a/e9386758eb058ef5bd069d4a5fbe74c27599cb
Size: 50 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4265536 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-20 22:08:15.663993800 -0300
Modify: 2023-10-20 22:08:15.663993800 -0300
Change: 2023-10-20 22:08:15.663993800 -0300
Birth: 2023-10-20 22:07:54.359376500 -0300
IPFS hash: QmRErECXnWnDbNEMDmi4iFrbMrBvrEANpJUcWGfJwjFZyp
------------------------------
File: ./.git/objects/1b/21e1f57a652ab49164f503130d109023bdaed1
Size: 315 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4260170 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-13 20:41:10.333635500 -0300
Modify: 2023-10-13 20:34:05.096727200 -0300
Change: 2023-10-13 20:34:05.097081000 -0300
Birth: 2023-10-13 20:34:05.096526100 -0300
IPFS hash: QmRJUFQ1oRfiasC3mnzihDdHXu7Z59iFL77aTByAasVcvB
------------------------------
File: ./.git/objects/1d/871e1f733880500fc0dfb2c044d4936dbb61a2
Size: 168 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4069175 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-10-15 00:40:55.682096100 -0300
Modify: 2023-10-15 00:40:55.678058400 -0300
Change: 2023-10-15 00:40:55.678603400 -0300
Birth: 2023-10-15 00:40:55.677826500 -0300
IPFS hash: QmNh3krscKbeyyp5LYkmCUd4NtgRsLD873KbytYRPY51vB
------------------------------
File: ./.git/objects/1d/bd64fd822e29c1af5764bc1ed770d85c63d52c
Size: 61 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 129505 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-11-05 20:17:27.115763400 -0300
Modify: 2023-11-05 20:17:26.106471700 -0300
Change: 2023-11-05 20:17:26.107239600 -0300
Birth: 2023-11-05 20:17:26.106137200 -0300
IPFS hash: QmeT7wbm2PuvUtoSLyjjnCypa1yq8cv2FDftphrK5VHpbG
------------------------------
File: ./.git/objects/1e/21c5ee9bfaec098b1c7e6412c43a8b56015946
Size: 29 Blocks: 0 IO Block: 4096 regular file
Device: 8,20 Inode: 4074258 Links: 1