-
Notifications
You must be signed in to change notification settings - Fork 0
/
.folderstamp
5662 lines (5661 loc) · 267 KB
/
.folderstamp
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: /usr/bin
File: ./.folderstamp
Size: 22 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1404183 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-06 23:29:03.941536000 -0300
Modify: 2023-04-06 23:29:03.940636100 -0300
Change: 2023-04-06 23:29:03.940636100 -0300
Birth: -
IPFS hash: QmavfEc27Ua6jV5HNkUj3WNPiMsxuH8a23QbcqbF5vRBa9
------------------------------
File: ./.git/config
Size: 297 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1404043 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-06 21:01:04.292312500 -0300
Modify: 2023-04-06 21:01:04.287031400 -0300
Change: 2023-04-06 21:01:04.287684800 -0300
Birth: -
IPFS hash: QmSenraRPDTGHjny21GnUaA5XqvkqFGMYQPTTc1EhxAzDb
------------------------------
File: ./.git/description
Size: 73 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248516 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 13:51:43.138092100 -0300
Modify: 2022-11-24 20:34:00.322841300 -0300
Change: 2022-11-24 20:34:00.322841300 -0300
Birth: -
IPFS hash: Qmdy135ZFG4kUALkaMhr6Cy3VhhkxyAh264kyg3725x8be
------------------------------
File: ./.git/HEAD
Size: 21 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320529 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-05 15:17:26.765324600 -0300
Modify: 2022-11-24 20:34:01.553604900 -0300
Change: 2022-11-24 20:34:01.553914000 -0300
Birth: -
IPFS hash: QmbRUdVtdtxcpdqyJE3iZwTJq7FPcXR1ErQRFB76sQCg9H
------------------------------
File: ./.git/hooks/applypatch-msg.sample
Size: 478 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248527 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.612319700 -0300
Modify: 2022-11-24 20:34:00.367750500 -0300
Change: 2022-11-24 20:34:00.367750500 -0300
Birth: -
IPFS hash: QmY2duvZ5Resxt8astYUgQ8RXQz1N9axe77gCb5j6M95Gf
------------------------------
File: ./.git/hooks/commit-msg.sample
Size: 896 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248526 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.611785100 -0300
Modify: 2022-11-24 20:34:00.366925900 -0300
Change: 2022-11-24 20:34:00.366925900 -0300
Birth: -
IPFS hash: QmQbraCfKaCTZkqtdXCJPc11CWEiZGw1yYGwtbA6nbXWeh
------------------------------
File: ./.git/hooks/fsmonitor-watchman.sample
Size: 3079 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248522 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.589820800 -0300
Modify: 2022-11-24 20:34:00.363426000 -0300
Change: 2022-11-24 20:34:00.363426000 -0300
Birth: -
IPFS hash: QmTRjr8FhnRPHMZTTBF1vZ3NJmPB3pL2ekRTuiGYu19quX
------------------------------
File: ./.git/hooks/post-checkout
Size: 282 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320584 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-06 21:01:10.309471400 -0300
Modify: 2023-04-06 21:01:04.362119400 -0300
Change: 2023-04-06 21:01:04.362119400 -0300
Birth: -
IPFS hash: QmUR5PHYBCmq12skp76K57E7ZHde6XwWikQdDR655TceKx
------------------------------
File: ./.git/hooks/post-commit
Size: 278 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320585 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-06 21:01:10.310161600 -0300
Modify: 2023-04-06 21:01:04.362948400 -0300
Change: 2023-04-06 21:01:04.362948400 -0300
Birth: -
IPFS hash: QmeGjL9mBRz3WzxBnVQW7iLgxjz9vjKUD4HC2VpN7QLp2q
------------------------------
File: ./.git/hooks/post-merge
Size: 276 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320586 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-06 21:01:10.310947000 -0300
Modify: 2023-04-06 21:01:04.363740400 -0300
Change: 2023-04-06 21:01:04.363740400 -0300
Birth: -
IPFS hash: QmeMV37EFirqadhxKS9JjygKJjgwpxMxEgKbmnsY4Haw9J
------------------------------
File: ./.git/hooks/post-update.sample
Size: 189 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248524 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.590947500 -0300
Modify: 2022-11-24 20:34:00.365236200 -0300
Change: 2022-11-24 20:34:00.365236200 -0300
Birth: -
IPFS hash: QmQjYxVj9iwitDGkmR48Cemr1JTgc6pvwo5cFkumNWqnjm
------------------------------
File: ./.git/hooks/pre-applypatch.sample
Size: 424 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248529 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.613141000 -0300
Modify: 2022-11-24 20:34:00.369261400 -0300
Change: 2022-11-24 20:34:00.369261400 -0300
Birth: -
IPFS hash: QmdzjzkpM31jTKd5YBJkWsbDXJeeW1Uy1UxVPwfKFxwy89
------------------------------
File: ./.git/hooks/pre-commit.sample
Size: 1638 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248525 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.598783700 -0300
Modify: 2022-11-24 20:34:00.365990900 -0300
Change: 2022-11-24 20:34:00.365990900 -0300
Birth: -
IPFS hash: QmdzPLQANJjZton4gqoxXeX6yqchxQ4RMpE8P5DEiogThd
------------------------------
File: ./.git/hooks/pre-merge-commit.sample
Size: 416 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248528 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.612738100 -0300
Modify: 2022-11-24 20:34:00.368668800 -0300
Change: 2022-11-24 20:34:00.368668800 -0300
Birth: -
IPFS hash: QmPte81MJoXgCngK75SVZTn2DAXskuo9gdVr2uR5PfVVQE
------------------------------
File: ./.git/hooks/pre-push
Size: 272 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320583 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-06 21:01:10.308761700 -0300
Modify: 2023-04-06 21:01:04.361274400 -0300
Change: 2023-04-06 21:01:04.361274400 -0300
Birth: -
IPFS hash: Qmdt552b6VuTX4iHAyUxHBRK6fdHXjo5my8Awz6Dg1JLxM
------------------------------
File: ./.git/hooks/pre-push.sample
Size: 1348 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248518 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.544133400 -0300
Modify: 2022-11-24 20:34:00.358619400 -0300
Change: 2022-11-24 20:34:00.358619400 -0300
Birth: -
IPFS hash: QmXprUtrWGYLRETUvuA89HjwUGdufGrwJxYaXyGwQ7TMvQ
------------------------------
File: ./.git/hooks/pre-rebase.sample
Size: 4898 Blocks: 16 IO Block: 4096 regular file
Device: 8,4 Inode: 1248520 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.561288700 -0300
Modify: 2022-11-24 20:34:00.361677400 -0300
Change: 2022-11-24 20:34:00.361677400 -0300
Birth: -
IPFS hash: QmSQrei5kUrb4RaEp4c7oobLEHURhPJ8AFZS1uiRg4JfLv
------------------------------
File: ./.git/hooks/pre-receive.sample
Size: 544 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1248523 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.590357700 -0300
Modify: 2022-11-24 20:34:00.364381200 -0300
Change: 2022-11-24 20:34:00.364381200 -0300
Birth: -
IPFS hash: QmRKbU9DFRNWjR1UwV4nC6MXPnrNanfsBM5579t4HLUuig
------------------------------
File: ./.git/hooks/prepare-commit-msg.sample
Size: 1492 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248519 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.549162600 -0300
Modify: 2022-11-24 20:34:00.359270500 -0300
Change: 2022-11-24 20:34:00.359270500 -0300
Birth: -
IPFS hash: QmPku8ai5p4sSCDHe19n9Ekfo21xM5urFdkq9Rg1wBHjcV
------------------------------
File: ./.git/hooks/update.sample
Size: 3610 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248521 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.575544500 -0300
Modify: 2022-11-24 20:34:00.362225400 -0300
Change: 2022-11-24 20:34:00.362225400 -0300
Birth: -
IPFS hash: QmfKMgUdSUwrS1wF6yfkQ9B6Vdbomrx87vGhpvpLfxgVn2
------------------------------
File: ./.git/index
Size: 2174 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1404113 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-04-06 21:01:10.365234300 -0300
Modify: 2023-04-06 21:01:10.330044100 -0300
Change: 2023-04-06 21:01:10.330561700 -0300
Birth: -
IPFS hash: QmSXFBUJkkquCaSbFAJynrFytwNXZ5jQvAYLtgaik9j36s
------------------------------
File: ./.git/info/exclude
Size: 240 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248532 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:03.335192000 -0300
Modify: 2022-11-24 20:34:00.370825700 -0300
Change: 2022-11-24 20:34:00.370825700 -0300
Birth: -
IPFS hash: QmcfzxUpw36y8fu2GR3s7Vgq7RBgooKtc6BgsqFnadsDLc
------------------------------
File: ./.git/lfs/objects/39/1a/391a1cfb5686332918c35b47c5f981da5691a37bc3effe663a2e1aa9992b4580
Size: 432 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1321423 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.789534500 -0300
Modify: 2022-11-24 20:34:03.020377200 -0300
Change: 2022-11-24 20:34:03.021503700 -0300
Birth: -
IPFS hash: QmYysYN3wxKdbTFYWsq4pgzZDEZGq8ashXtpWsUk6oPdaL
------------------------------
File: ./.git/lfs/objects/3e/ba/3eba282fd153797e43da911c99e3c1d8ba5b26641d81de7d512ed11af61d12cd
Size: 514 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1321419 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.631905000 -0300
Modify: 2022-11-24 20:34:02.843704200 -0300
Change: 2022-11-24 20:34:02.844975700 -0300
Birth: -
IPFS hash: QmXuf9euMkf4ZmUpChhXewUinmn5aR5BdBqw9MQ3awuaXM
------------------------------
File: ./.git/lfs/objects/4f/72/4f72aedb28ea4eab3f486069f391374040ef036a385231dff901ded1ca094735
Size: 203622 Blocks: 400 IO Block: 4096 regular file
Device: 8,4 Inode: 1321336 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.762823000 -0300
Modify: 2022-11-24 20:34:02.758221500 -0300
Change: 2022-11-24 20:34:02.759683600 -0300
Birth: -
IPFS hash: QmXCjbD2yE1DHxzL9hVWSH1J9AcJMgQAeWun9fVp2w2GmU
------------------------------
File: ./.git/lfs/objects/64/70/64702aa0c528ca33943a87772582c75527ccf064736da5825abe724fc8e7c1fe
Size: 161 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1321426 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.809870000 -0300
Modify: 2022-11-24 20:34:03.289296100 -0300
Change: 2022-11-24 20:34:03.290730400 -0300
Birth: -
IPFS hash: QmedBZkdJrCfnFn6KgGKwjAZ4Bomq8XLyqWdjNQTMfC86Y
------------------------------
File: ./.git/lfs/objects/66/d1/66d11571771db6e8f61214d1a181ac059da55b2806652fba3c4260891acc1b6c
Size: 663 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1321415 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.598687300 -0300
Modify: 2022-11-24 20:34:02.847433100 -0300
Change: 2022-11-24 20:34:02.848352300 -0300
Birth: -
IPFS hash: QmPHgXNUHq75bLRm6BLX4gGuEZUD6E8uUPafKiVvR4zANi
------------------------------
File: ./.git/lfs/objects/74/8b/748b02975224464f6b0166fef6f0194db76814fc37d7961b66e804adfe4e0549
Size: 507 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1321421 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.760724300 -0300
Modify: 2022-11-24 20:34:03.000651100 -0300
Change: 2022-11-24 20:34:03.001580900 -0300
Birth: -
IPFS hash: QmVWjZuW2qnRnP2iMCdTbWPaDuGQuh9UjUVUUWrZZdZkWu
------------------------------
File: ./.git/lfs/objects/80/b4/80b49a4ae5fafad219a3e353f17a1e37e6d7c0306b415e63afe622854e7ec772
Size: 143579 Blocks: 288 IO Block: 4096 regular file
Device: 8,4 Inode: 1321413 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.815412900 -0300
Modify: 2022-11-24 20:34:02.806690200 -0300
Change: 2022-11-24 20:34:02.808094300 -0300
Birth: -
IPFS hash: QmSQDrpKLNVdiAYKQZ8raRspxrQDEVu9BLZTsA3ppZMdRS
------------------------------
File: ./.git/lfs/objects/8f/1d/8f1dac24e28751312f4f0923e8d0311f8ff3b851fe36f5db38ab2a284889b5e5
Size: 1862 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1321414 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.414322000 -0300
Modify: 2022-11-24 20:34:02.806389200 -0300
Change: 2022-11-24 20:34:02.807640700 -0300
Birth: -
IPFS hash: QmcRFBeCXRVC1TchhCwxNkF6sYJQFiNH1RH6qGsoponTJt
------------------------------
File: ./.git/lfs/objects/8f/f9/8ff9d0046ff2e05a78c1abb0440fb0ea81acfe927c592b84de8f9af32ed801d3
Size: 10299 Blocks: 24 IO Block: 4096 regular file
Device: 8,4 Inode: 1321341 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.633206700 -0300
Modify: 2022-11-24 20:34:02.630059800 -0300
Change: 2022-11-24 20:34:02.631022300 -0300
Birth: -
IPFS hash: QmVPBsdNNepua4w83Y4KcZhHXJ4SPP9c3q8nuj1fv64sCW
------------------------------
File: ./.git/lfs/objects/90/37/9037c8575bc995e55cf297490564de93034a133d4ff31e710d56b826bcc08b7a
Size: 311 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1321425 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.809630900 -0300
Modify: 2022-11-24 20:34:03.035785500 -0300
Change: 2022-11-24 20:34:03.036633300 -0300
Birth: -
IPFS hash: QmcT6CMyTU1C4gdAytU9Z9xDDSZTepKvwAgVPJrMmRyiaR
------------------------------
File: ./.git/lfs/objects/e3/10/e310c1a9c8c2346cc87430baa0c9f71b51965a74e51f4f3af8d2b33d991f3aff
Size: 58211 Blocks: 120 IO Block: 4096 regular file
Device: 8,4 Inode: 1321411 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.791479200 -0300
Modify: 2022-11-24 20:34:02.786675900 -0300
Change: 2022-11-24 20:34:02.788484000 -0300
Birth: -
IPFS hash: QmPhFT2r2mnhaixXn7ve6iucgNSY1N8Mij3STx8me9Qy8U
------------------------------
File: ./.git/lfs/objects/e9/c9/e9c9eccfbcde9a8fa4052203e941b22e3bdf7f619926bf3494a9328786ce6e64
Size: 2491 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1321410 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.412981300 -0300
Modify: 2022-11-24 20:34:02.806445000 -0300
Change: 2022-11-24 20:34:02.807849500 -0300
Birth: -
IPFS hash: QmVEhfeXTd4ZkqFLz1SsAaMvmDYscvgn6KRodKvBaNmDSM
------------------------------
File: ./.git/lfs/objects/ef/75/ef756ba00a23b36d2cc22c2fffe89bfce69c57a025836e8ba8c51d0b2c152c40
Size: 600 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1321417 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.623597800 -0300
Modify: 2022-11-24 20:34:02.863903100 -0300
Change: 2022-11-24 20:34:02.865028900 -0300
Birth: -
IPFS hash: QmWiA39sqdX6r86do8Luk7L5XMhkUiVSkTC7szkGp8KAki
------------------------------
File: ./.git/lfs/objects/f7/5f/f75f512bb7590b4d7c4c22d735c755e8411067148549d51bf0037560b2ac4a5e
Size: 3404 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1321412 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.413833200 -0300
Modify: 2022-11-24 20:34:02.621769200 -0300
Change: 2022-11-24 20:34:02.622696500 -0300
Birth: -
IPFS hash: QmW9e6UBHseeEFVCFYFwEXBT3xtbLQLXRSW5XTv7JuSnM6
------------------------------
File: ./.git/lfs/objects/f7/72/f77219eff07edcf3063afc219027e619015085c787d8cb48b2bd5da0724efd5c
Size: 413023 Blocks: 808 IO Block: 4096 regular file
Device: 8,4 Inode: 1321334 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:02.600552400 -0300
Modify: 2022-11-24 20:34:02.596418300 -0300
Change: 2022-11-24 20:34:02.597605500 -0300
Birth: -
IPFS hash: QmabAnRCqofpTsyrFqbAipCCAainEhf6CW4qFzKtiqbHzb
------------------------------
File: ./.git/logs/HEAD
Size: 199 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320532 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:03:01.682743000 -0300
Modify: 2022-11-24 20:34:01.557465800 -0300
Change: 2022-11-24 20:34:01.557465800 -0300
Birth: -
IPFS hash: QmaGTryZ5cce1FY2b3ik8YFsZyPR9uaSx9Gt2tNtNpttDZ
------------------------------
File: ./.git/logs/refs/heads/main
Size: 199 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320534 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.558434800 -0300
Modify: 2022-11-24 20:34:01.558541600 -0300
Change: 2022-11-24 20:34:01.558541600 -0300
Birth: -
IPFS hash: QmaGTryZ5cce1FY2b3ik8YFsZyPR9uaSx9Gt2tNtNpttDZ
------------------------------
File: ./.git/logs/refs/remotes/origin/HEAD
Size: 199 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320528 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.551809100 -0300
Modify: 2022-11-24 20:34:01.551973900 -0300
Change: 2022-11-24 20:34:01.551973900 -0300
Birth: -
IPFS hash: QmaGTryZ5cce1FY2b3ik8YFsZyPR9uaSx9Gt2tNtNpttDZ
------------------------------
File: ./.git/objects/88/45d9ef168ed5aebda2c16718ad42019514a22e
Size: 83 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248672 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-12-14 23:53:36.848990400 -0300
Modify: 2022-11-24 20:34:01.129813100 -0300
Change: 2022-11-24 20:34:01.130576100 -0300
Birth: -
IPFS hash: QmXjVMh6KGMhabmxL1d5x5L1DkcjpGB4ruRCSEwg7HGNLx
------------------------------
File: ./.git/objects/02/175c42ab2ada9c4d6fca1ce513531c4a7524f9
Size: 205 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248580 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.529063800 -0300
Modify: 2022-11-24 20:34:01.071067300 -0300
Change: 2022-11-24 20:34:01.071516200 -0300
Birth: -
IPFS hash: QmTjnes2xWc4e31ZyJJDbVY6rTC7L7dirfzcAJTzLA7BXc
------------------------------
File: ./.git/objects/02/ad956586b223f6ccbbc16a50b778ee60a23c18
Size: 205 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248579 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.528785600 -0300
Modify: 2022-11-24 20:34:01.070083600 -0300
Change: 2022-11-24 20:34:01.070569400 -0300
Birth: -
IPFS hash: QmSsq3XrCXTmDBL7qHARuZM7ym4u2Z8N1u7bCRDojvtQwa
------------------------------
File: ./.git/objects/05/b6209331fb7d8c1fffc2e6f943c042744d485c
Size: 514 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1286663 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.538712300 -0300
Modify: 2022-11-24 20:34:01.476480800 -0300
Change: 2022-11-24 20:34:01.477388500 -0300
Birth: -
IPFS hash: QmbEjjaQ6vCWwsFjA2kRbtXMBfDmb4aJxQwkP613JLg7wA
------------------------------
File: ./.git/objects/11/578017fa2c7f9c3553d107f6deb53074cbb2ff
Size: 2303 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248641 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.108712300 -0300
Modify: 2022-11-24 20:34:01.107832700 -0300
Change: 2022-11-24 20:34:01.108415800 -0300
Birth: -
IPFS hash: QmbXwaiBStZeWCiotdLbH6fcPHMEqMM4MWEm2cdyzQiXyp
------------------------------
File: ./.git/objects/11/a05c4c645e4e52f8f539d6adeb3af430234045
Size: 190 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248583 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.529304600 -0300
Modify: 2022-11-24 20:34:01.072116400 -0300
Change: 2022-11-24 20:34:01.072492700 -0300
Birth: -
IPFS hash: QmRVHoZwJKdXugjdWmkn9KCtXWcNQWyrXRDEZZzLqYe4VU
------------------------------
File: ./.git/objects/14/5ff792a8bcff45ddf5fe9acd42cd4709e1902b
Size: 124 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248694 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.638854600 -0300
Modify: 2022-11-24 20:34:01.139186100 -0300
Change: 2022-11-24 20:34:01.139723000 -0300
Birth: -
IPFS hash: Qmf7opj1gJ66HdFTtiQUZpiNERgTVy6QM4StgLWYC5Zows
------------------------------
File: ./.git/objects/15/39a1ca28c3de61f7b80be2797722a5aa9a77a8
Size: 199 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248596 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.530750600 -0300
Modify: 2022-11-24 20:34:01.079334000 -0300
Change: 2022-11-24 20:34:01.079720100 -0300
Birth: -
IPFS hash: QmcFgsn7bYFHWhMGYj5fmwYWNoPokBEqZoosYTjvGs5Ztw
------------------------------
File: ./.git/objects/1a/df093cf934aa6e70e7e3aec63b13d9dcac191e
Size: 121 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1285279 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.641516300 -0300
Modify: 2022-11-24 20:34:01.443556400 -0300
Change: 2022-11-24 20:34:01.444740200 -0300
Birth: -
IPFS hash: QmRNockCuq9kyKhF8TSg4Ut1SbCjaoqwZvjSXq5ifWzrky
------------------------------
File: ./.git/objects/1f/e561db537db3136393ee17ed11328c247ab48f
Size: 1844 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248667 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.124981700 -0300
Modify: 2022-11-24 20:34:01.124205700 -0300
Change: 2022-11-24 20:34:01.124729900 -0300
Birth: -
IPFS hash: QmSYEKU7S7BRFzCyXHhha45q8xQNt2bgox7KzYT5Rgtrou
------------------------------
File: ./.git/objects/24/556a01b29e5a94119ae1a7299d61722bf2b540
Size: 1837 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248668 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.126629800 -0300
Modify: 2022-11-24 20:34:01.125835200 -0300
Change: 2022-11-24 20:34:01.126348800 -0300
Birth: -
IPFS hash: QmNyPPEH9Lws4n6Qo9FhSj2qAud3UXsbV9FSLh2jZNL2JH
------------------------------
File: ./.git/objects/24/a8e87939aa53cdd833f6be7610cb4972e063ad
Size: 51 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248615 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.572608300 -0300
Modify: 2022-11-24 20:34:01.090673900 -0300
Change: 2022-11-24 20:34:01.090924200 -0300
Birth: -
IPFS hash: QmU6FY6yEGMfFDtx6QWLgi1SssMS6eLNZLsoNhukw1tZRW
------------------------------
File: ./.git/objects/25/10c92e1dfc663caafcb94a69328fc4dccbf4a4
Size: 193 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248598 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.530979600 -0300
Modify: 2022-11-24 20:34:01.080400500 -0300
Change: 2022-11-24 20:34:01.080847500 -0300
Birth: -
IPFS hash: QmbcjLj7efa3gftWdnR7iYPtm6aCBfr7AJDXtKHMHhnTzq
------------------------------
File: ./.git/objects/2a/5c07ed8f95cdfdb8f92e2cfc903893ad2568af
Size: 1118 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1286323 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.468926100 -0300
Modify: 2022-11-24 20:34:01.462014800 -0300
Change: 2022-11-24 20:34:01.462673800 -0300
Birth: -
IPFS hash: QmR28WKoM7MNHCpfAo4rLq4eBs1oF8nNnzpxr89LTfn65J
------------------------------
File: ./.git/objects/2c/002068fdec0bc189b79edda5b5d78f24bc562f
Size: 604 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1286325 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.466147600 -0300
Modify: 2022-11-24 20:34:01.463879300 -0300
Change: 2022-11-24 20:34:01.464430600 -0300
Birth: -
IPFS hash: QmdxzJqNf3YFGGuyVGoSaWo7NafhEn48vopzSFbW7nPNCm
------------------------------
File: ./.git/objects/2e/6cb70b690b5426768ba76a58677341471cea2b
Size: 542 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1248610 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.088674300 -0300
Modify: 2022-11-24 20:34:01.087872200 -0300
Change: 2022-11-24 20:34:01.088428200 -0300
Birth: -
IPFS hash: QmVBW3KXwfcF3h16CAbWAcWfi1mm3ntEdxTiMDzE1N1Rq2
------------------------------
File: ./.git/objects/31/ab8f24c9baeb274d1c714e1a7b67578c6f7e57
Size: 542 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1320357 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.542648900 -0300
Modify: 2022-11-24 20:34:01.512460100 -0300
Change: 2022-11-24 20:34:01.513380500 -0300
Birth: -
IPFS hash: QmWH6qKjE1R75ndKPGDorro28aPT49aACf25ainhbffhJN
------------------------------
File: ./.git/objects/34/09fe6628ebbdf0b72317b964554ee0ce0a5b72
Size: 170 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1286666 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.539278200 -0300
Modify: 2022-11-24 20:34:01.479140200 -0300
Change: 2022-11-24 20:34:01.479801200 -0300
Birth: -
IPFS hash: QmWNjYeNK89b1WdwBh5uJYN9VA4Fn56srDEQ5u9EnMHQJq
------------------------------
File: ./.git/objects/35/91d6c7f46eb8ef146e0afc431e4cb6c35dcce1
Size: 123 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248688 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.637082000 -0300
Modify: 2022-11-24 20:34:01.137727300 -0300
Change: 2022-11-24 20:34:01.138255600 -0300
Birth: -
IPFS hash: QmbqeSZeUQvvrJSS64hCZ52zLiHgogkR2DBG8xccLFQf1E
------------------------------
File: ./.git/objects/3a/a0e5111b8f61f1b8589199ebbc764114985cbd
Size: 124 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248633 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.614877800 -0300
Modify: 2022-11-24 20:34:01.103440800 -0300
Change: 2022-11-24 20:34:01.104058900 -0300
Birth: -
IPFS hash: QmQi78JMfssnadmzrVpWp5HD4gSXKT5eSa7DxwD47bSzen
------------------------------
File: ./.git/objects/3b/0d061d0026446a2dd4543feb07d742a09820d7
Size: 542 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1320353 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.504039500 -0300
Modify: 2022-11-24 20:34:01.501604300 -0300
Change: 2022-11-24 20:34:01.502222400 -0300
Birth: -
IPFS hash: QmQEtwArwL1qV3M5KxwTb4TsyMbEwi2haYtN8DsMxRDLZW
------------------------------
File: ./.git/objects/3b/17aa78642eef2d97ef0c66c5db79c8ec5c0f31
Size: 53 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248659 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-12-14 23:53:36.798614600 -0300
Modify: 2022-11-24 20:34:01.117741600 -0300
Change: 2022-11-24 20:34:01.118200200 -0300
Birth: -
IPFS hash: QmSj1yn4V8yxLs9d2WFg38sRnA8jiAqSzZt4wLcTWMVkxq
------------------------------
File: ./.git/objects/45/1b95461cbacb12fc5d94252c7ad9c8165537a3
Size: 123 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1286321 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.645953400 -0300
Modify: 2022-11-24 20:34:01.459670700 -0300
Change: 2022-11-24 20:34:01.460314700 -0300
Birth: -
IPFS hash: QmbF41aUBiCjn8zLQWaqmnG8ZuwaW38aymdeGUcb3FcTkH
------------------------------
File: ./.git/objects/48/36108c771c98837216864b73611056828b6c9d
Size: 170 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248655 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.115508500 -0300
Modify: 2022-11-24 20:34:01.114850100 -0300
Change: 2022-11-24 20:34:01.115298300 -0300
Birth: -
IPFS hash: QmNxdEyF583QjwE387DhqkRamRyqrzzMKQdMsVT9zWViEG
------------------------------
File: ./.git/objects/52/f1782b746a7e36d2af9111f70f649eab2e82d2
Size: 542 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1286701 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.490432800 -0300
Modify: 2022-11-24 20:34:01.489633300 -0300
Change: 2022-11-24 20:34:01.490189900 -0300
Birth: -
IPFS hash: QmdRSsa7AwyPWiktfx4r9mFpRuEgiJgTtevujui7MgzK38
------------------------------
File: ./.git/objects/58/10d998dbaa818a97e6ee91b9b2e916fffec595
Size: 545 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1286660 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.538301900 -0300
Modify: 2022-11-24 20:34:01.474233000 -0300
Change: 2022-11-24 20:34:01.475034900 -0300
Birth: -
IPFS hash: QmXAVUd4hmQ9JfB6u6TZYahvTH34FziFmcxMJDNWmFsqJM
------------------------------
File: ./.git/objects/58/bc982fc9058674cc8f69ba491b8d74c9f0d95d
Size: 185 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248606 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.085741400 -0300
Modify: 2022-11-24 20:34:01.085031900 -0300
Change: 2022-11-24 20:34:01.085486000 -0300
Birth: -
IPFS hash: QmYsqicRGLUkXsVagBXXDVEea4ZfGCJ5sNcBSRZiTjKYZ3
------------------------------
File: ./.git/objects/59/4053bbb88f8fbcc7070c9e8a0e4a0786c87531
Size: 1791 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248623 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.096532000 -0300
Modify: 2022-11-24 20:34:01.095590700 -0300
Change: 2022-11-24 20:34:01.096196400 -0300
Birth: -
IPFS hash: Qma3aGdxLDgp263nsRVBMFehPnYnQJ9tLR8rAopPMi3KGm
------------------------------
File: ./.git/objects/5f/fdd732ab6aed5dca16bc4c33e4f341207f6a35
Size: 123 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248653 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.617698300 -0300
Modify: 2022-11-24 20:34:01.113540700 -0300
Change: 2022-11-24 20:34:01.114050600 -0300
Birth: -
IPFS hash: Qmcpym3iuHhEEfQJPBgkka9J2n98dBQ3qzuFXFh63FyUnG
------------------------------
File: ./.git/objects/6e/c6d8220ffd5fc7ddf2d661175e9a904bd35795
Size: 174 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248577 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-12-14 23:53:36.568466300 -0300
Modify: 2022-11-24 20:34:01.068888800 -0300
Change: 2022-11-24 20:34:01.069344700 -0300
Birth: -
IPFS hash: QmbRBYFrfqdkJn1a3saZVRNpZFAdFLovVzrbTkyUzZMTBD
------------------------------
File: ./.git/objects/70/3cda318af1c0f4738737268512c2d68ba37a8b
Size: 787 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1286326 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:31:29.237592000 -0300
Modify: 2022-11-24 20:34:01.465416600 -0300
Change: 2022-11-24 20:34:01.465902700 -0300
Birth: -
IPFS hash: QmeCNAGr6dTFckAUVdR6gk2wbhpHWrbZtcSTqHzDGShQ3W
------------------------------
File: ./.git/objects/70/aa6a8a51faf67493388da973cb262a4b375346
Size: 1835 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248670 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.625136500 -0300
Modify: 2022-11-24 20:34:01.127758300 -0300
Change: 2022-11-24 20:34:01.128563200 -0300
Birth: -
IPFS hash: QmYKxa9VtmvfZ3jm6RJPM8aE63iKhzuqssJbkbmvWCjYNy
------------------------------
File: ./.git/objects/74/a7a3e8b9b51caa9ed04b60220654a1c2443981
Size: 2290 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248651 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.616803100 -0300
Modify: 2022-11-24 20:34:01.111953100 -0300
Change: 2022-11-24 20:34:01.112330200 -0300
Birth: -
IPFS hash: QmUhZ9jJDehoyNQmyqb91J3KSiEFSA1qM5B9rf7LgrPYpo
------------------------------
File: ./.git/objects/7a/ac4c4152497d02db0e9435646b6144cbf44046
Size: 177 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320362 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.543278000 -0300
Modify: 2022-11-24 20:34:01.517207000 -0300
Change: 2022-11-24 20:34:01.517699700 -0300
Birth: -
IPFS hash: QmQKqoEiu6zzP7PHx11ZjxVRa4sgkhsp4a1ceCRVHkDShY
------------------------------
File: ./.git/objects/7c/d5e8a2f2b20c2d3cc15363d1c0b431275275aa
Size: 133 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248608 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.532074100 -0300
Modify: 2022-11-24 20:34:01.086644600 -0300
Change: 2022-11-24 20:34:01.087109200 -0300
Birth: -
IPFS hash: QmQmwCf1X8nRSzHwbiwfpSAska7RtTwEXVbjPPwgcDDz7r
------------------------------
File: ./.git/objects/7f/4a8b6215d0a0c14e945db892eb82b5237b6004
Size: 124 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248665 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.623479600 -0300
Modify: 2022-11-24 20:34:01.122466500 -0300
Change: 2022-11-24 20:34:01.123022700 -0300
Birth: -
IPFS hash: QmeHqr4wf68SMcPZNAZhnx9LFuwTZkXDmeaf4wvXbnKJhP
------------------------------
File: ./.git/objects/80/64e1c2a43140c330728a23000e076ccd0ad950
Size: 124 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248663 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.621823500 -0300
Modify: 2022-11-24 20:34:01.121203500 -0300
Change: 2022-11-24 20:34:01.121689000 -0300
Birth: -
IPFS hash: QmUh6iNLdRKxpQuDZFTSEpaUxkLGwcfsut9x2kQL5Qp3VX
------------------------------
File: ./.git/objects/82/28a04504457f53613d971a9a9704e3f4b11774
Size: 192 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248602 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.531429100 -0300
Modify: 2022-11-24 20:34:01.082759500 -0300
Change: 2022-11-24 20:34:01.083205300 -0300
Birth: -
IPFS hash: QmRE3pASvnrkv25KYzWv8TqeYX5Mdnb5fLFD7Zo5VNX95z
------------------------------
File: ./.git/objects/85/d55a3deb611f52b7f43231aff1eefe3eacea81
Size: 82 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248661 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-12-14 23:53:36.827337700 -0300
Modify: 2022-11-24 20:34:01.119836600 -0300
Change: 2022-11-24 20:34:01.120411200 -0300
Birth: -
IPFS hash: QmfN5FBzAn1f8sfsYxCUbD4RvR3JX11q5FVcrDdawnfcZs
------------------------------
File: ./.git/objects/85/dd9102404c8c94778bee234887618dd031f4ab
Size: 204 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248587 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.529791700 -0300
Modify: 2022-11-24 20:34:01.074310700 -0300
Change: 2022-11-24 20:34:01.074773500 -0300
Birth: -
IPFS hash: QmRCKLnmYiwdPTYASieHW9CNJamZBJbQ1GGxfNXfG343cn
------------------------------
File: ./.git/objects/87/5132f97972c6076b2d09e94a0d5be5c3c9e4a7
Size: 124 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248631 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.613052200 -0300
Modify: 2022-11-24 20:34:01.102097000 -0300
Change: 2022-11-24 20:34:01.102592700 -0300
Birth: -
IPFS hash: QmSxiDG9HFvUh3QhNLKFHhs1ruSxvhbsBpUVobQKfy1Prn
------------------------------
File: ./.git/objects/8e/11e2f0875e15d6030cb29675a074b5e7bcc49e
Size: 1984 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248716 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.640523000 -0300
Modify: 2022-11-24 20:34:01.144067000 -0300
Change: 2022-11-24 20:34:01.144813700 -0300
Birth: -
IPFS hash: QmQuybQEX9ExCAPmGckmymBKezATcQVwgerdgG3U67kXhZ
------------------------------
File: ./.git/objects/8e/af6ecc7add5d9fde50328077350f599137fc70
Size: 124 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248678 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.632472700 -0300
Modify: 2022-11-24 20:34:01.134890100 -0300
Change: 2022-11-24 20:34:01.135364600 -0300
Birth: -
IPFS hash: QmZddYjgNWyCdy6NcyNXgkyAPohWvHHZeJwdXxjdgVAK5g
------------------------------
File: ./.git/objects/8f/95c903e14003c9f7326c54c84805ebdc035c1b
Size: 58 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320364 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.543829200 -0300
Modify: 2022-11-24 20:34:01.518462400 -0300
Change: 2022-11-24 20:34:01.518943600 -0300
Birth: -
IPFS hash: QmcrLibvF48bc5YXtKBZumcgj6s3w7Bi27TyDLrnUL4Cqs
------------------------------
File: ./.git/objects/95/eb7098ed426cf811aae4af8172f4284c9f443c
Size: 2149 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1286305 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.455787700 -0300
Modify: 2022-11-24 20:34:01.454882700 -0300
Change: 2022-11-24 20:34:01.455462800 -0300
Birth: -
IPFS hash: QmW8ri9pErSxKS7oGYbpQZm9jw6mV8oqNURchy1pzjfFMw
------------------------------
File: ./.git/objects/98/36ce77a83b44e7e54a3883cf000499a01f848d
Size: 573 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1286655 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.537975400 -0300
Modify: 2022-11-24 20:34:01.472212600 -0300
Change: 2022-11-24 20:34:01.473165600 -0300
Birth: -
IPFS hash: QmfLLjnZgh5BBbrZ1V6psVRbML5FhHhM2Q3KNfcwM8JkTe
------------------------------
File: ./.git/objects/99/8570f6a050da7244f06fa018c454dc1e92f234
Size: 122 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248629 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.582925100 -0300
Modify: 2022-11-24 20:34:01.100779400 -0300
Change: 2022-11-24 20:34:01.101260800 -0300
Birth: -
IPFS hash: Qmd4RvApF3J2fL8N11AkxEY6QPgvv2euNbrKXAzZhYjcRJ
------------------------------
File: ./.git/objects/99/ab143efc01ca0019a9abab3861bdff198779a6
Size: 123 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1320355 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:31:29.085096100 -0300
Modify: 2022-11-24 20:34:01.502994300 -0300
Change: 2022-11-24 20:34:01.503684700 -0300
Birth: -
IPFS hash: QmRveAGsujve6N6od5AD3p1CvncYYDui7UVtaNGcp2jzUN
------------------------------
File: ./.git/objects/a3/27d59fbe9ceb9ee25b303e4ef26c48430d89ce
Size: 2293 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248649 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.111123900 -0300
Modify: 2022-11-24 20:34:01.110192800 -0300
Change: 2022-11-24 20:34:01.110746000 -0300
Birth: -
IPFS hash: QmTdcA2xh92nMzQmvuqumYqLJoBpEnxk2nq4Rugvnnvcbw
------------------------------
File: ./.git/objects/a3/cfe5560b31569c21f137e56a9d89cbfc2a2d8a
Size: 122 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1290004 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-03-08 14:31:29.139872700 -0300
Modify: 2022-11-24 20:34:01.500079500 -0300
Change: 2022-11-24 20:34:01.500594000 -0300
Birth: -
IPFS hash: QmPswUNiBKYdaCpEwjScEc6MSsLh4oc99f89xBYKjNSNNz
------------------------------
File: ./.git/objects/a7/56a2c6df298042e4dfb19b4fe807b3ccca80e2
Size: 126 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248660 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.620053700 -0300
Modify: 2022-11-24 20:34:01.118696700 -0300
Change: 2022-11-24 20:34:01.119183500 -0300
Birth: -
IPFS hash: QmYipb4cMcM9NvCeZMzfhAyqeSxDjF5wo3xLkq7ku3YoP6
------------------------------
File: ./.git/objects/a7/5a42c64a2e064d611ed2cea9c41f7e1906edc1
Size: 194 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248594 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.530496000 -0300
Modify: 2022-11-24 20:34:01.077579400 -0300
Change: 2022-11-24 20:34:01.078214100 -0300
Birth: -
IPFS hash: QmVhi6xbcHDA4mWhUDeHxzWkPM5obX28syCGUvRj5Cj33i
------------------------------
File: ./.git/objects/a8/f238c1a97a82b2f7e305d36684d7232b29ffb0
Size: 1987 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248715 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.143326300 -0300
Modify: 2022-11-24 20:34:01.142638300 -0300
Change: 2022-11-24 20:34:01.143098900 -0300
Birth: -
IPFS hash: QmR9kQJYAVGAAYEMPS9dPjECGGMaDjJtrZMLBTMtvWKAdR
------------------------------
File: ./.git/objects/ad/bbb5f09b09e9a8050cef16401936b566984174
Size: 213 Blocks: 1 IO Block: 4096 regular file
Device: 8,4 Inode: 1248604 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.531650900 -0300
Modify: 2022-11-24 20:34:01.083903700 -0300
Change: 2022-11-24 20:34:01.084340900 -0300
Birth: -
IPFS hash: QmevuknnC8cAVzTFasyyoQ6PaZmvQgnLyxeYMhL4K9SDvA
------------------------------
File: ./.git/objects/b1/0139b4f74ac085fb9392de94e39c0890cd3b4b
Size: 2284 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248638 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.106754900 -0300
Modify: 2022-11-24 20:34:01.105694900 -0300
Change: 2022-11-24 20:34:01.106369100 -0300
Birth: -
IPFS hash: QmUeUQZStBjS98QqrQAE4L5ZU72fn2YYMBhUpgHYwict3E
------------------------------
File: ./.git/objects/b2/ca17093ace0e9ce06c8650c5e7b80483267050
Size: 1752 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248621 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.093911700 -0300
Modify: 2022-11-24 20:34:01.093368200 -0300
Change: 2022-11-24 20:34:01.093728600 -0300
Birth: -
IPFS hash: QmSezCmdhaejVd1y9Rn7WCD6JcPmQhRFbfoRiaMg7kZp9p
------------------------------
File: ./.git/objects/bb/f1e47efe53e9522983292e40e33c3d61b0dead
Size: 605 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248613 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-12-14 23:53:36.695918000 -0300
Modify: 2022-11-24 20:34:01.089435200 -0300
Change: 2022-11-24 20:34:01.089973800 -0300
Birth: -
IPFS hash: QmYTJAa3esVgGXamWYWTii25JngbL72kqXipqVj7zbukWb
------------------------------
File: ./.git/objects/bf/44572d619fe5d8ba9e28b2400e621631ea1b11
Size: 2078 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1285283 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.448076900 -0300
Modify: 2022-11-24 20:34:01.446849300 -0300
Change: 2022-11-24 20:34:01.447604800 -0300
Birth: -
IPFS hash: QmRq5H54QY1UiTuniTw4yQaidgypRy3TtYmKvcRZrziYBs
------------------------------
File: ./.git/objects/bf/ce0ec393014e5f3d39fb8c1d911a9cb410048e
Size: 1782 Blocks: 8 IO Block: 4096 regular file
Device: 8,4 Inode: 1248627 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.582071200 -0300
Modify: 2022-11-24 20:34:01.099299000 -0300
Change: 2022-11-24 20:34:01.099796000 -0300
Birth: -
IPFS hash: QmZDE2b8ozPsBdLUymNZsbHNWqqJ4sA9Xa738gqBqSx8rt
------------------------------
File: ./.git/objects/c3/df6d44d6cb159a09aa34d12ae8faaf5a2e5bc1
Size: 513 Blocks: 2 IO Block: 4096 regular file
Device: 8,4 Inode: 1286679 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2022-11-24 20:34:01.539827800 -0300
Modify: 2022-11-24 20:34:01.483002100 -0300
Change: 2022-11-24 20:34:01.483713900 -0300
Birth: -