-
Notifications
You must be signed in to change notification settings - Fork 0
/
.folderstamp4
executable file
·3672 lines (3671 loc) · 182 KB
/
.folderstamp4
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: /home/daniella/firstlogon_tour
File: ./.folderstamp
Size: 44 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9836909 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:32:09.834931738 -0300
Modify: 2023-09-13 19:32:09.834931738 -0300
Change: 2023-09-13 19:32:09.834931738 -0300
Birth: 2023-09-13 19:32:09.834931738 -0300
IPFS hash: QmWL6yZN5e3z6SfeHaYjvWyXb1eAQdbzDbyNXChWkFG14J
------------------------------
File: ./legacy/initial-prompt.txt
Size: 979 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9845972 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 16:39:26.868149302 -0300
Modify: 2023-09-13 15:13:48.867843179 -0300
Change: 2023-09-13 16:39:13.955884981 -0300
Birth: 2023-09-13 15:13:48.843845234 -0300
IPFS hash: QmNizcxAr5CYiVJ1pWJ6dd5coaKd5zvg43xjKEgbSiCN2t
------------------------------
File: ./legacy/initial-response.txt
Size: 3478 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9845973 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 16:39:26.868149302 -0300
Modify: 2023-09-13 15:14:09.498104426 -0300
Change: 2023-09-13 16:39:13.955884981 -0300
Birth: 2023-09-13 15:14:09.490105089 -0300
IPFS hash: QmWik3oquPtJwHzBFqqbJUiYDYMGoAAwBDCrwfVV87BGnJ
------------------------------
File: ./lib/app.dart
Size: 810 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9836725 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:59.698244701 -0300
Modify: 2023-09-13 19:24:13.372662726 -0300
Change: 2023-09-13 19:24:13.380663005 -0300
Birth: 2023-09-13 19:24:13.368662587 -0300
IPFS hash: QmQQhUT4otvodzW4UghbNUttuLp4S1GsL2Vcc9oTF5cRCW
------------------------------
File: ./lib/screens/step2.dart.future
Size: 1601 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9874066 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:22:04.383936199 -0300
Modify: 2023-09-13 17:27:35.300062224 -0300
Change: 2023-09-13 19:21:56.415626734 -0300
Birth: 2023-09-13 17:27:35.296062110 -0300
IPFS hash: QmVg5cCbuJgf1LSi8MEHKcnVwfBuaM1qbmfESDxVbhwRFt
------------------------------
File: ./lib/screens/step3.dart.future
Size: 1176 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873979 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:22:04.383936199 -0300
Modify: 2023-09-13 17:25:38.920717728 -0300
Change: 2023-09-13 19:21:56.415626734 -0300
Birth: 2023-09-13 17:25:38.916717612 -0300
IPFS hash: QmPnvqJikzXx1pjadw1wd27FNLXaaE4dWc1zaoTs1aRm7R
------------------------------
File: ./lib/screens/welcome.dart
Size: 930 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9836743 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:00.182260943 -0300
Modify: 2023-09-13 19:24:37.841505180 -0300
Change: 2023-09-13 19:24:45.477764917 -0300
Birth: 2023-09-13 19:24:37.833504907 -0300
IPFS hash: QmbpkAmSfXtQtMjTTjbETMHN9TMW4dN2FjneDTSeMRWusi
------------------------------
File: ./lib/screens/step1.dart.future
Size: 1228 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9874061 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:22:04.383936199 -0300
Modify: 2023-09-13 17:23:02.620096949 -0300
Change: 2023-09-13 19:21:56.411626578 -0300
Birth: 2023-09-13 17:23:02.608096587 -0300
IPFS hash: QmT4PwENueCfgmSr7RobBVnUNsVhhucPCkiWXwbXnzcGbF
------------------------------
File: ./lib/screens/steps.dart
Size: 1916 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9836934 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:23.973029626 -0300
Modify: 2023-09-13 19:18:07.313620298 -0300
Change: 2023-09-13 19:24:21.556946260 -0300
Birth: 2023-09-13 19:18:07.305619905 -0300
IPFS hash: QmSM9rJgNVvfLz4mMJWtoEGHoKdHHqXLCAtmoDe7H98nYR
------------------------------
File: ./lib/executable.dart
Size: 267 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9845989 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:43:42.030365267 -0300
Modify: 2023-09-13 15:34:22.036009960 -0300
Change: 2023-09-13 15:40:10.403284066 -0300
Birth: 2023-09-13 15:34:22.036009960 -0300
IPFS hash: QmepA2cBUZV2xSuytdmaGQUscMCb6fLSh5w3i9ViGCDdJD
------------------------------
File: ./lib/main.dart
Size: 135 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9836735 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:59.698244701 -0300
Modify: 2023-09-13 19:24:14.104688161 -0300
Change: 2023-09-13 19:24:14.108688300 -0300
Birth: 2023-09-13 19:24:14.104688161 -0300
IPFS hash: QmRcQ8GYNR2P2LcptwW9w4twdVE6mP4gMnnYzGVDwNrKyz
------------------------------
File: ./Tasks.txt
Size: 987 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9836742 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:29:59.103379318 -0300
Modify: 2023-09-13 19:29:49.155100129 -0300
Change: 2023-09-13 19:29:49.175100692 -0300
Birth: 2023-09-13 19:29:49.151100017 -0300
IPFS hash: QmXhbgLbXiRQN5dVRHHFEJmtPV115eQnJdDafvzwyvznA8
------------------------------
File: ./init.sh
Size: 51 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9868373 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 16:32:53.277831084 -0300
Modify: 2023-09-13 16:32:03.196073415 -0300
Change: 2023-09-13 16:32:03.200073561 -0300
Birth: 2023-09-13 16:32:03.196073415 -0300
IPFS hash: QmehuXxnP12vJx5iTgsyzdPbfUrg5WfjcgXqftt6r7VN6x
------------------------------
File: ./.folderstamp3
Size: 152716 Blocks: 304 IO Block: 4096 regular file
Device: 8,38 Inode: 9836708 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:07:24.778209876 -0300
Modify: 2023-09-13 18:45:53.006084379 -0300
Change: 2023-09-13 18:46:03.374554828 -0300
Birth: 2023-09-13 18:45:39.237471167 -0300
IPFS hash: QmUGiKjWqgAZF1gQeYEGZ1Dym29ZUVtGF2Z5DoaaZRmJYa
------------------------------
File: ./build/lib/libapp.so
Size: 4031408 Blocks: 7880 IO Block: 4096 regular file
Device: 8,38 Inode: 10223979 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.147091004 -0300
Modify: 2023-09-13 19:25:25.131090477 -0300
Change: 2023-09-13 19:25:25.131090477 -0300
Birth: 2023-09-13 16:11:04.895027659 -0300
IPFS hash: QmSqe1Kz5JuFMfBSBEabkWxVZFHZSLjJppfHLCmzt2HQc4
------------------------------
File: ./build/linux/x64/release/build.ninja
Size: 27808 Blocks: 56 IO Block: 4096 regular file
Device: 8,38 Inode: 10224289 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:58.778213813 -0300
Modify: 2023-09-13 19:24:58.754213006 -0300
Change: 2023-09-13 19:24:58.754213006 -0300
Birth: 2023-09-13 19:24:58.746212737 -0300
IPFS hash: QmciMqNquxVSxtfTgVeCKd4avi66f19K9rywnTncikDkrJ
------------------------------
File: ./build/linux/x64/release/cmake_install.cmake
Size: 6836 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223647 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:40:14.627183694 -0300
Modify: 2023-09-13 15:39:33.676161228 -0300
Change: 2023-09-13 15:39:33.676161228 -0300
Birth: 2023-09-13 15:39:33.676161228 -0300
IPFS hash: QmS3tPDyAg5LkPbc9pCac6yFcVHfszrP52sY2VEzybc2Gm
------------------------------
File: ./build/linux/x64/release/rules.ninja
Size: 2004 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10224290 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:58.778213813 -0300
Modify: 2023-09-13 19:24:58.754213006 -0300
Change: 2023-09-13 19:24:58.754213006 -0300
Birth: 2023-09-13 19:24:58.746212737 -0300
IPFS hash: QmSEpo2Q5HuqP7xMw7MVAmYAtHvZdAvsPCuB5YHH5iq5y3
------------------------------
File: ./build/linux/x64/release/flutter/cmake_install.cmake
Size: 1184 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223648 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:40:14.627183694 -0300
Modify: 2023-09-13 15:39:33.676161228 -0300
Change: 2023-09-13 15:39:33.676161228 -0300
Birth: 2023-09-13 15:39:33.676161228 -0300
IPFS hash: QmeqcBVcyUU8bRMcJ9VcsKV5gFCkvfymXP4JzPRPgymGGB
------------------------------
File: ./build/linux/x64/release/bundle/lib/libflutter_linux_gtk.so
Size: 14554216 Blocks: 28432 IO Block: 4096 regular file
Device: 8,38 Inode: 10224001 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:42.499659341 -0300
Modify: 2023-09-13 15:39:34.000000000 -0300
Change: 2023-09-13 19:25:27.043153445 -0300
Birth: 2023-09-13 19:25:27.019152654 -0300
IPFS hash: QmVvU8rUqHKxLWbSsnarDCN7o5swQ3YCe6XqMhK8yvJ1bd
------------------------------
File: ./build/linux/x64/release/bundle/lib/libapp.so
Size: 4031408 Blocks: 7880 IO Block: 4096 regular file
Device: 8,38 Inode: 10224018 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:42.663664680 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.051153707 -0300
Birth: 2023-09-13 19:25:27.047153576 -0300
IPFS hash: QmSqe1Kz5JuFMfBSBEabkWxVZFHZSLjJppfHLCmzt2HQc4
------------------------------
File: ./build/linux/x64/release/bundle/ubuntu_tour
Size: 24256 Blocks: 48 IO Block: 4096 regular file
Device: 8,38 Inode: 10223995 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:42.499659341 -0300
Modify: 2023-09-13 19:25:26.000000000 -0300
Change: 2023-09-13 19:25:27.015152523 -0300
Birth: 2023-09-13 19:25:27.015152523 -0300
IPFS hash: QmS5f9iybrjPGLzSKKH1CvfZcQF3fjK7xhkkLC8Nq2Lfji
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/version.json
Size: 92 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10224003 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.000000000 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.043153445 -0300
Birth: 2023-09-13 19:25:27.043153445 -0300
IPFS hash: QmYPqhNc8pPAendHKb5auUnq5iqsr2Fedd2cL5cqStLbN1
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/FontManifest.json
Size: 208 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10224004 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:42.731666894 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.043153445 -0300
Birth: 2023-09-13 19:25:27.043153445 -0300
IPFS hash: Qmb3HYtsPoo7m8MahB3E4yt9ETmx1PPrT1FrbmM5wJi1Ch
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/AssetManifest.json
Size: 153 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10224005 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.000000000 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.043153445 -0300
Birth: 2023-09-13 19:25:27.043153445 -0300
IPFS hash: QmPKr2sbLEEwxFiKqFXiktNmKKxWUwyk6iSoSrX4RFpSGW
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/shaders/ink_sparkle.frag
Size: 13592 Blocks: 32 IO Block: 4096 regular file
Device: 8,38 Inode: 10224007 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.000000000 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.043153445 -0300
Birth: 2023-09-13 19:25:27.043153445 -0300
IPFS hash: Qmep5951ZLFkWfFVbGjoVuaowiKRm3Ti9aVsiEfYLTqBdG
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/NOTICES.Z
Size: 78316 Blocks: 160 IO Block: 4096 regular file
Device: 8,38 Inode: 10224008 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.000000000 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.043153445 -0300
Birth: 2023-09-13 19:25:27.043153445 -0300
IPFS hash: Qmamh2WPuJ8wZsDc5wcMCNhhLtDnpENnEmn8XUpRuFDfnC
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/images/noempty.txt
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 8,38 Inode: 10224010 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:27.000000000 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.043153445 -0300
Birth: 2023-09-13 19:25:27.043153445 -0300
IPFS hash: QmbFMke1KXqnYyBBWxB74N4c5SBnJMVAiMNRcGu6x1AwQH
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/fonts/MaterialIcons-Regular.otf
Size: 1645184 Blocks: 3216 IO Block: 4096 regular file
Device: 8,38 Inode: 10224012 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:45.531757945 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.043153445 -0300
Birth: 2023-09-13 19:25:27.043153445 -0300
IPFS hash: QmZzK8P64eRS2ZTbr39Js6bjiJC32MfpesrVGAQWCSxCrK
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf
Size: 283452 Blocks: 560 IO Block: 4096 regular file
Device: 8,38 Inode: 10224016 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.000000000 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.047153576 -0300
Birth: 2023-09-13 19:25:27.047153576 -0300
IPFS hash: QmWSKH6YMxa8iUWFGCiXJMp45jRy5XEZ8XxmPdqLia1K4E
------------------------------
File: ./build/linux/x64/release/bundle/data/flutter_assets/AssetManifest.bin
Size: 168 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10224017 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.000000000 -0300
Modify: 2023-09-13 19:25:25.000000000 -0300
Change: 2023-09-13 19:25:27.047153576 -0300
Birth: 2023-09-13 19:25:27.047153576 -0300
IPFS hash: QmT2pusgUzMyWoMANyfrwdDbwexZAJEYwkLPKthJLPP3jV
------------------------------
File: ./build/linux/x64/release/bundle/data/icudtl.dat
Size: 817168 Blocks: 1600 IO Block: 4096 regular file
Device: 8,38 Inode: 10223998 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:42.663664680 -0300
Modify: 2023-09-13 15:39:34.000000000 -0300
Change: 2023-09-13 19:25:27.015152523 -0300
Birth: 2023-09-13 19:25:27.015152523 -0300
IPFS hash: QmYKuv5iD5e9Q8MiWuLkta1ePvNV45Qh5YYvTvQkzRYh5f
------------------------------
File: ./build/linux/x64/release/.ninja_deps
Size: 112412 Blocks: 232 IO Block: 4096 regular file
Device: 8,38 Inode: 10223652 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:58.778213813 -0300
Modify: 2023-09-13 19:25:26.779144753 -0300
Change: 2023-09-13 19:25:26.779144753 -0300
Birth: 2023-09-13 15:39:33.696160748 -0300
IPFS hash: QmfHLdpMUzHL2d1oaQi8znnWx7mBaSJ31FE21ana7xTaZL
------------------------------
File: ./build/linux/x64/release/CMakeFiles/cmake.check_cache
Size: 85 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223641 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 17:33:22.633714322 -0300
Modify: 2023-09-13 19:24:58.754213006 -0300
Change: 2023-09-13 19:24:58.754213006 -0300
Birth: 2023-09-13 15:39:33.600163052 -0300
IPFS hash: QmVzXvp2xyxZSWvDEdiB2dvuubhrLZbsBWwBPHcQiL5WT8
------------------------------
File: ./build/linux/x64/release/CMakeFiles/CMakeOutput.log
Size: 22422 Blocks: 48 IO Block: 4096 regular file
Device: 8,38 Inode: 10223627 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:43:42.030365267 -0300
Modify: 2023-09-13 15:39:33.240171690 -0300
Change: 2023-09-13 15:39:33.240171690 -0300
Birth: 2023-09-13 15:39:31.728207979 -0300
IPFS hash: QmcdZrMJerG6b6FJa5eJwzkc9vkRw7mUMHLVZuV4iKda78
------------------------------
File: ./build/linux/x64/release/CMakeFiles/ubuntu_tour.dir/my_application.cc.o
Size: 9656 Blocks: 24 IO Block: 4096 regular file
Device: 8,38 Inode: 10224237 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:26.823146202 -0300
Modify: 2023-09-13 19:25:26.767144359 -0300
Change: 2023-09-13 19:25:26.767144359 -0300
Birth: 2023-09-13 19:25:25.991118810 -0300
IPFS hash: QmZrC8e3hJekQzpFvrq2J19KCPum44Wv4rwkSdNZ52gBs8
------------------------------
File: ./build/linux/x64/release/CMakeFiles/ubuntu_tour.dir/flutter/generated_plugin_registrant.cc.o
Size: 1000 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10224243 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:26.823146202 -0300
Modify: 2023-09-13 19:25:26.667141066 -0300
Change: 2023-09-13 19:25:26.667141066 -0300
Birth: 2023-09-13 19:25:25.991118810 -0300
IPFS hash: QmaNZUdQQk38ocHGpZMPpbrLag5AUKGWTZVhgTY7YQ7rjT
------------------------------
File: ./build/linux/x64/release/CMakeFiles/ubuntu_tour.dir/main.cc.o
Size: 2296 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223999 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 16:11:07.710987789 -0300
Modify: 2023-09-13 16:11:07.602989319 -0300
Change: 2023-09-13 16:11:07.606989261 -0300
Birth: 2023-09-13 16:11:05.915013221 -0300
IPFS hash: QmeD3kt8gMbfCrQdZT6psNjyZQrn1tb5qJWhW4BWD5Gd6z
------------------------------
File: ./build/linux/x64/release/CMakeFiles/CMakeError.log
Size: 923 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223633 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:43:42.030365267 -0300
Modify: 2023-09-13 15:39:32.584187432 -0300
Change: 2023-09-13 15:39:32.584187432 -0300
Birth: 2023-09-13 15:39:32.584187432 -0300
IPFS hash: Qmb2G9uWooXcr4vymFn3kuNRLVB53XgJ4JQ7Vmo1utazZk
------------------------------
File: ./build/linux/x64/release/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake
Size: 6131 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223637 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:40:14.599184359 -0300
Modify: 2023-09-13 15:39:33.244171594 -0300
Change: 2023-09-13 15:39:33.244171594 -0300
Birth: 2023-09-13 15:39:33.244171594 -0300
IPFS hash: QmPrudPpCRU2tukqvrLnS13wnpfPDKiN7tir9Jd33NtrTq
------------------------------
File: ./build/linux/x64/release/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp
Size: 20091 Blocks: 40 IO Block: 4096 regular file
Device: 8,38 Inode: 10223632 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:32.632186281 -0300
Modify: 2023-09-13 15:39:32.600187048 -0300
Change: 2023-09-13 15:39:32.600187048 -0300
Birth: 2023-09-13 15:39:32.600187048 -0300
IPFS hash: QmeKNAqZuYzbXNQAHjKPxVgNb5iaGv6g6Yn3wMTBHGMyWn
------------------------------
File: ./build/linux/x64/release/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.o
Size: 2064 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223635 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:32.652185800 -0300
Modify: 2023-09-13 15:39:32.644185993 -0300
Change: 2023-09-13 15:39:32.644185993 -0300
Birth: 2023-09-13 15:39:32.632186281 -0300
IPFS hash: QmNVgfY5y6DPTihrd6X6164bP6JG3HgcrC4HdMCYh9Zv7M
------------------------------
File: ./build/linux/x64/release/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin
Size: 16408 Blocks: 40 IO Block: 4096 regular file
Device: 8,38 Inode: 10223651 Links: 1
Access: (0775/-rwxrwxr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:43:42.034365176 -0300
Modify: 2023-09-13 15:39:33.224172074 -0300
Change: 2023-09-13 15:39:33.224172074 -0300
Birth: 2023-09-13 15:39:33.224172074 -0300
IPFS hash: QmfEWkPwqtfhb4feZKCraQAwPs4za5Fpw6kbRs4s9FJUGz
------------------------------
File: ./build/linux/x64/release/CMakeFiles/3.16.3/CMakeSystem.cmake
Size: 398 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223630 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:32.680185129 -0300
Modify: 2023-09-13 15:39:31.728207979 -0300
Change: 2023-09-13 15:39:31.728207979 -0300
Birth: 2023-09-13 15:39:31.728207979 -0300
IPFS hash: QmRGzMyqThiGXWhe7GwhPsk1AM9uC3r8Ub5eb1HzbtMY5S
------------------------------
File: ./build/linux/x64/release/CMakeFiles/TargetDirectories.txt
Size: 1179 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10224291 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:58.754213006 -0300
Modify: 2023-09-13 19:24:58.754213006 -0300
Change: 2023-09-13 19:24:58.754213006 -0300
Birth: 2023-09-13 19:24:58.754213006 -0300
IPFS hash: QmUM9ousH5iKhj83eRZnZPydKqJBp2X6CUBJFx31AiBs37
------------------------------
File: ./build/linux/x64/release/install_manifest.txt
Size: 1208 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10224022 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 18:45:41.521571963 -0300
Modify: 2023-09-13 19:25:27.051153707 -0300
Change: 2023-09-13 19:25:27.051153707 -0300
Birth: 2023-09-13 16:11:08.098982294 -0300
IPFS hash: QmaDAbtZrErvQkvBQCiUFH1NFNchjzpWcprfjNNRGFFBAo
------------------------------
File: ./build/linux/x64/release/intermediates_do_not_run/ubuntu_tour
Size: 24256 Blocks: 48 IO Block: 4096 regular file
Device: 8,38 Inode: 10223650 Links: 1
Access: (0775/-rwxrwxr-x) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:27.015152523 -0300
Modify: 2023-09-13 19:25:26.975151206 -0300
Change: 2023-09-13 19:25:26.975151206 -0300
Birth: 2023-09-13 19:25:26.811145807 -0300
IPFS hash: QmfXK7hBcbkkCSw9CuaBGfVgZP5jmrLLfkK9xDce7j9pod
------------------------------
File: ./build/linux/x64/release/CMakeCache.txt
Size: 30751 Blocks: 64 IO Block: 4096 regular file
Device: 8,38 Inode: 10223640 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:33.680161133 -0300
Modify: 2023-09-13 15:39:33.600163052 -0300
Change: 2023-09-13 15:39:33.600163052 -0300
Birth: 2023-09-13 15:39:33.600163052 -0300
IPFS hash: Qma2SAGLhHt9Szy6hnZ8DC12nHZo6r8dfKzAYw9WgX8MvD
------------------------------
File: ./build/linux/x64/release/.ninja_log
Size: 5561 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10224019 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:58.778213813 -0300
Modify: 2023-09-13 19:25:27.051153707 -0300
Change: 2023-09-13 19:25:27.051153707 -0300
Birth: 2023-09-13 19:24:58.778213813 -0300
IPFS hash: QmXc9Jn2DouPNQYVnUUa57eiyuvd8HRBjiXj2xvh2QKsow
------------------------------
File: ./build/flutter_assets/version.json
Size: 92 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223993 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.671108268 -0300
Modify: 2023-09-13 19:25:25.391099044 -0300
Change: 2023-09-13 19:25:25.391099044 -0300
Birth: 2023-09-13 16:11:05.127024376 -0300
IPFS hash: QmYPqhNc8pPAendHKb5auUnq5iqsr2Fedd2cL5cqStLbN1
------------------------------
File: ./build/flutter_assets/FontManifest.json
Size: 208 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223991 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.667108136 -0300
Modify: 2023-09-13 19:25:25.391099044 -0300
Change: 2023-09-13 19:25:25.391099044 -0300
Birth: 2023-09-13 16:11:05.127024376 -0300
IPFS hash: Qmb3HYtsPoo7m8MahB3E4yt9ETmx1PPrT1FrbmM5wJi1Ch
------------------------------
File: ./build/flutter_assets/AssetManifest.json
Size: 153 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223989 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.667108136 -0300
Modify: 2023-09-13 19:25:25.391099044 -0300
Change: 2023-09-13 19:25:25.391099044 -0300
Birth: 2023-09-13 16:11:05.127024376 -0300
IPFS hash: QmPKr2sbLEEwxFiKqFXiktNmKKxWUwyk6iSoSrX4RFpSGW
------------------------------
File: ./build/flutter_assets/shaders/ink_sparkle.frag
Size: 13592 Blocks: 32 IO Block: 4096 regular file
Device: 8,38 Inode: 10224241 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.667108136 -0300
Modify: 2023-09-13 19:25:25.643107346 -0300
Change: 2023-09-13 19:25:25.647107477 -0300
Birth: 2023-09-13 19:25:25.643107346 -0300
IPFS hash: Qmep5951ZLFkWfFVbGjoVuaowiKRm3Ti9aVsiEfYLTqBdG
------------------------------
File: ./build/flutter_assets/NOTICES.Z
Size: 78316 Blocks: 160 IO Block: 4096 regular file
Device: 8,38 Inode: 10223992 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.667108136 -0300
Modify: 2023-09-13 19:25:25.391099044 -0300
Change: 2023-09-13 19:25:25.391099044 -0300
Birth: 2023-09-13 16:11:05.127024376 -0300
IPFS hash: Qmamh2WPuJ8wZsDc5wcMCNhhLtDnpENnEmn8XUpRuFDfnC
------------------------------
File: ./build/flutter_assets/images/noempty.txt
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 8,38 Inode: 10223976 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:27.043153445 -0300
Modify: 2023-09-13 19:25:25.347097594 -0300
Change: 2023-09-13 19:25:25.347097594 -0300
Birth: 2023-09-13 16:11:41.918501323 -0300
IPFS hash: QmbFMke1KXqnYyBBWxB74N4c5SBnJMVAiMNRcGu6x1AwQH
------------------------------
File: ./build/flutter_assets/fonts/MaterialIcons-Regular.otf
Size: 1645184 Blocks: 3216 IO Block: 4096 regular file
Device: 8,38 Inode: 10223988 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.659107873 -0300
Modify: 2023-09-13 19:25:25.383098779 -0300
Change: 2023-09-13 19:25:25.383098779 -0300
Birth: 2023-09-13 16:11:05.127024376 -0300
IPFS hash: QmZzK8P64eRS2ZTbr39Js6bjiJC32MfpesrVGAQWCSxCrK
------------------------------
File: ./build/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf
Size: 283452 Blocks: 560 IO Block: 4096 regular file
Device: 8,38 Inode: 10223987 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.655107741 -0300
Modify: 2023-09-13 19:25:25.383098779 -0300
Change: 2023-09-13 19:25:25.383098779 -0300
Birth: 2023-09-13 16:11:05.127024376 -0300
IPFS hash: QmWSKH6YMxa8iUWFGCiXJMp45jRy5XEZ8XxmPdqLia1K4E
------------------------------
File: ./build/flutter_assets/AssetManifest.bin
Size: 168 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223990 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.667108136 -0300
Modify: 2023-09-13 19:25:25.391099044 -0300
Change: 2023-09-13 19:25:25.391099044 -0300
Birth: 2023-09-13 16:11:05.127024376 -0300
IPFS hash: QmT2pusgUzMyWoMANyfrwdDbwexZAJEYwkLPKthJLPP3jV
------------------------------
File: ./build/.last_build_id
Size: 32 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223851 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:40:28.550853542 -0300
Modify: 2023-09-13 15:39:47.451831277 -0300
Change: 2023-09-13 15:39:47.451831277 -0300
Birth: 2023-09-13 15:39:47.451831277 -0300
IPFS hash: QmUrz9m58LA3DKu3PKSadcPE18uxXHZ3KaQDXoVFZLxjVQ
------------------------------
File: ./pubspec.yaml
Size: 1710 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9836892 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:32:07.522870631 -0300
Modify: 2023-09-13 19:31:50.978431683 -0300
Change: 2023-09-13 19:31:50.982431789 -0300
Birth: 2023-09-13 19:31:50.974431576 -0300
IPFS hash: QmWzPbtxQJ4XXQjTUAzhscev2W1Y7kkt45GBuuF5BtzrGJ
------------------------------
File: ./linux/my_application.h
Size: 388 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873962 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:43:42.030365267 -0300
Modify: 2023-09-13 15:38:46.509300027 -0300
Change: 2023-09-13 15:38:46.509300027 -0300
Birth: 2023-09-13 15:38:46.509300027 -0300
IPFS hash: QmQ82gzYEqnyBB5VwEEaQLpqZqV3wws2dRk7J5pzbH6LAA
------------------------------
File: ./linux/flutter/generated_plugin_registrant.cc
Size: 161 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873974 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.991118810 -0300
Modify: 2023-09-13 19:24:58.582207228 -0300
Change: 2023-09-13 19:24:58.582207228 -0300
Birth: 2023-09-13 15:38:47.257281853 -0300
IPFS hash: QmP5xQkHc24E4pb1LohXCuqHXrpJgWzARGXRxDYcKkDYmC
------------------------------
File: ./linux/flutter/generated_plugin_registrant.h
Size: 303 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873973 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:25:25.995118942 -0300
Modify: 2023-09-13 19:24:58.578207094 -0300
Change: 2023-09-13 19:24:58.578207094 -0300
Birth: 2023-09-13 15:38:47.257281853 -0300
IPFS hash: QmdteFSD42RoTnwTXvC8N5nNZZ28o7nYAq3sa7Z9LVTCEg
------------------------------
File: ./linux/flutter/CMakeLists.txt
Size: 2815 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873964 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:31.632210283 -0300
Modify: 2023-09-13 15:38:46.509300027 -0300
Change: 2023-09-13 15:38:46.509300027 -0300
Birth: 2023-09-13 15:38:46.509300027 -0300
IPFS hash: QmbbAr1J3Yn7tYoQEpzYHRZp9fL7XWFwh3bJcHTjDz1coR
------------------------------
File: ./linux/flutter/generated_plugins.cmake
Size: 739 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873975 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:58.742212603 -0300
Modify: 2023-09-13 19:24:58.582207228 -0300
Change: 2023-09-13 19:24:58.582207228 -0300
Birth: 2023-09-13 15:38:47.257281853 -0300
IPFS hash: Qma6NqbcotKtWhqTScRkN3eefiAGrw2yQPCSNamvWobiZ7
------------------------------
File: ./linux/flutter/ephemeral/generated_config.cmake
Size: 772 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223618 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:24:58.718211797 -0300
Modify: 2023-09-13 19:24:58.638209109 -0300
Change: 2023-09-13 19:24:58.638209109 -0300
Birth: 2023-09-13 15:39:31.648209900 -0300
IPFS hash: QmQpKXmjLcuWKwL5SNMQZRXxfkzQhXUu3qpx5L46pjgypU
------------------------------
File: ./linux/flutter/ephemeral/icudtl.dat
Size: 817168 Blocks: 1600 IO Block: 4096 regular file
Device: 8,38 Inode: 10223658 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.736135799 -0300
Modify: 2023-09-13 15:39:34.516141077 -0300
Change: 2023-09-13 15:39:34.516141077 -0300
Birth: 2023-09-13 15:39:34.508141268 -0300
IPFS hash: QmYKuv5iD5e9Q8MiWuLkta1ePvNV45Qh5YYvTvQkzRYh5f
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_method_channel.h
Size: 7081 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223659 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.520140980 -0300
Change: 2023-09-13 15:39:34.520140980 -0300
Birth: 2023-09-13 15:39:34.520140980 -0300
IPFS hash: QmPfJoCASt33HqEMCfogyogcHFysVNvdxaDSFG8jd1PULn
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_event_channel.h
Size: 6654 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223660 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.524140884 -0300
Change: 2023-09-13 15:39:34.524140884 -0300
Birth: 2023-09-13 15:39:34.524140884 -0300
IPFS hash: QmPEhu8hBMgdnxBFbFjefXkypWmLmVJxKsaanXTnFQT3pc
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_texture_gl.h
Size: 3450 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223661 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.524140884 -0300
Change: 2023-09-13 15:39:34.524140884 -0300
Birth: 2023-09-13 15:39:34.524140884 -0300
IPFS hash: QmQsmijwPukZAMZWqd7FuxY6Y9R3W3qm4V3KnuNoPTAmyZ
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_engine.h
Size: 1475 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223662 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.524140884 -0300
Change: 2023-09-13 15:39:34.524140884 -0300
Birth: 2023-09-13 15:39:34.524140884 -0300
IPFS hash: QmPeUQePnQxcPbxWzND38BvVqtMfRVtcQG1DKSnMKuKihS
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_pixel_buffer_texture.h
Size: 3790 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223663 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.524140884 -0300
Change: 2023-09-13 15:39:34.524140884 -0300
Birth: 2023-09-13 15:39:34.524140884 -0300
IPFS hash: QmTTLaMZfPPRmYvAqhbdHo7ERxNzHEPfoKd2NwQCmKU6e2
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_binary_messenger.h
Size: 6732 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223664 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.528140788 -0300
Change: 2023-09-13 15:39:34.528140788 -0300
Birth: 2023-09-13 15:39:34.528140788 -0300
IPFS hash: QmWKg46FZDZ72hzir7XzH4wE9K52DWvC2pU4fF5APnD1iH
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_texture_registrar.h
Size: 2781 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223665 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.528140788 -0300
Change: 2023-09-13 15:39:34.528140788 -0300
Birth: 2023-09-13 15:39:34.528140788 -0300
IPFS hash: QmatkAUGK8GoGFA2WeLeMfEzqFQ46NgsLcuhxi4kpZw7TN
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_dart_project.h
Size: 3839 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223666 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.528140788 -0300
Change: 2023-09-13 15:39:34.528140788 -0300
Birth: 2023-09-13 15:39:34.528140788 -0300
IPFS hash: QmdR4eKhZfrYQ9fWgWsm2kmQ8qmStBS3U2PwcQ5iKBZtN2
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_plugin_registry.h
Size: 1676 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223683 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.528140788 -0300
Change: 2023-09-13 15:39:34.528140788 -0300
Birth: 2023-09-13 15:39:34.528140788 -0300
IPFS hash: QmdispJJ41REPMqgZFkdewMhCt9gKf6RRm41tPzgPCWsoD
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_message_codec.h
Size: 4275 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223684 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.532140692 -0300
Change: 2023-09-13 15:39:34.532140692 -0300
Birth: 2023-09-13 15:39:34.528140788 -0300
IPFS hash: QmbNEgHt8LGVP9jJZGwDUKbgDbzThdfDAGq9LAznBxG2dZ
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/flutter_linux.h
Size: 1472 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223685 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.532140692 -0300
Change: 2023-09-13 15:39:34.532140692 -0300
Birth: 2023-09-13 15:39:34.532140692 -0300
IPFS hash: QmSm7APtXjmHiNgdwFYMQSut82ZKQjBGzLF1GJySuUnaJj
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_json_message_codec.h
Size: 3058 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223686 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.532140692 -0300
Change: 2023-09-13 15:39:34.532140692 -0300
Birth: 2023-09-13 15:39:34.532140692 -0300
IPFS hash: QmWHiquDdeiDQnKJeedZNmnDP7cnfFMFk4KkdGicFHaRdm
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_standard_message_codec.h
Size: 1528 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223687 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.532140692 -0300
Change: 2023-09-13 15:39:34.532140692 -0300
Birth: 2023-09-13 15:39:34.532140692 -0300
IPFS hash: QmXh37aZJNb83LsfT78VuBcbNhep4mGA5HJssjCP3qDsNB
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_method_codec.h
Size: 4241 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223689 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.532140692 -0300
Change: 2023-09-13 15:39:34.532140692 -0300
Birth: 2023-09-13 15:39:34.532140692 -0300
IPFS hash: QmSGC7zcY2hrdD7MKM98kYHnsMPEhvoB9Uujw77XdZGgLk
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_method_call.h
Size: 3369 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223834 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.536140596 -0300
Change: 2023-09-13 15:39:34.536140596 -0300
Birth: 2023-09-13 15:39:34.536140596 -0300
IPFS hash: QmQed2X5ZLomC6u39zSzDyNTe7pEi8QT5wKT9MUWvjebQb
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_json_method_codec.h
Size: 1209 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223835 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.536140596 -0300
Change: 2023-09-13 15:39:34.536140596 -0300
Birth: 2023-09-13 15:39:34.536140596 -0300
IPFS hash: QmPnPb14s9FdpvWuK6uPFWLLaueUr1vEVXfQW8TdqT6pcp
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_view.h
Size: 1551 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223836 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.536140596 -0300
Change: 2023-09-13 15:39:34.536140596 -0300
Birth: 2023-09-13 15:39:34.536140596 -0300
IPFS hash: QmZ3QEetK65QCfE9sYekPQM5Cni3H54Gv9CoYtgsV8uvs8
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_method_response.h
Size: 6514 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223837 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.536140596 -0300
Change: 2023-09-13 15:39:34.536140596 -0300
Birth: 2023-09-13 15:39:34.536140596 -0300
IPFS hash: Qmb8QwAvhhnoWFXtQvXBus6AmgScJusunyDtw4ziEpYPTK
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_string_codec.h
Size: 1215 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223838 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.540140500 -0300
Change: 2023-09-13 15:39:34.540140500 -0300
Birth: 2023-09-13 15:39:34.536140596 -0300
IPFS hash: QmShuKyQdUotWWfac9DfzvCwG8qKten4s5TFidGiyY2T8e
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_binary_codec.h
Size: 1222 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223839 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.540140500 -0300
Change: 2023-09-13 15:39:34.540140500 -0300
Birth: 2023-09-13 15:39:34.540140500 -0300
IPFS hash: QmUreHxpzimVstqXmzrcq9nDnkyxsKc8ZEx4USEJT4uESQ
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_plugin_registrar.h
Size: 2036 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223840 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.540140500 -0300
Change: 2023-09-13 15:39:34.540140500 -0300
Birth: 2023-09-13 15:39:34.540140500 -0300
IPFS hash: QmYqztBCjhHPv5F15N4GFJtiVavCZ91rsMUCBKyMGkFEmr
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_value.h
Size: 18972 Blocks: 40 IO Block: 4096 regular file
Device: 8,38 Inode: 10223841 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.740135703 -0300
Modify: 2023-09-13 15:39:34.540140500 -0300
Change: 2023-09-13 15:39:34.540140500 -0300
Birth: 2023-09-13 15:39:34.540140500 -0300
IPFS hash: QmSBUkXSuJW5XCMr3xKzdcVH9YU68uZbaUEJmTE2cJWhAi
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_basic_message_channel.h
Size: 7353 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 10223842 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.744135607 -0300
Modify: 2023-09-13 15:39:34.544140405 -0300
Change: 2023-09-13 15:39:34.544140405 -0300
Birth: 2023-09-13 15:39:34.540140500 -0300
IPFS hash: QmW3Ur8XVfRMfSZT5Rpf3bzXDv8XaeFLMcHParDkibDDpB
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_standard_method_codec.h
Size: 1271 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223843 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.744135607 -0300
Modify: 2023-09-13 15:39:34.544140405 -0300
Change: 2023-09-13 15:39:34.544140405 -0300
Birth: 2023-09-13 15:39:34.544140405 -0300
IPFS hash: QmWoPQ1e17e7iSc1DSRKNzo3MvUaMKxHpracMAjXRGPS1P
------------------------------
File: ./linux/flutter/ephemeral/flutter_linux/fl_texture.h
Size: 1262 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 10223844 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.744135607 -0300
Modify: 2023-09-13 15:39:34.544140405 -0300
Change: 2023-09-13 15:39:34.544140405 -0300
Birth: 2023-09-13 15:39:34.544140405 -0300
IPFS hash: QmQZzj4T4duA8cSeEqdmAH5JKBBsPLwoUTgVXfGyerNfd4
------------------------------
File: ./linux/flutter/ephemeral/libflutter_linux_gtk.so
Size: 14554216 Blocks: 28432 IO Block: 4096 regular file
Device: 8,38 Inode: 10223657 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:34.672137334 -0300
Modify: 2023-09-13 15:39:34.452142611 -0300
Change: 2023-09-13 15:39:34.452142611 -0300
Birth: 2023-09-13 15:39:34.388144146 -0300
IPFS hash: QmVvU8rUqHKxLWbSsnarDCN7o5swQ3YCe6XqMhK8yvJ1bd
------------------------------
File: ./linux/main.cc
Size: 180 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873966 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:43:42.030365267 -0300
Modify: 2023-09-13 15:38:46.513299929 -0300
Change: 2023-09-13 15:38:46.513299929 -0300
Birth: 2023-09-13 15:38:46.513299929 -0300
IPFS hash: QmNf1CTd95nSJ4s7d7CZew2qPeEWKiEBtAjAp4veSbRN9E
------------------------------
File: ./linux/my_application.cc
Size: 3720 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873968 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:43:42.030365267 -0300
Modify: 2023-09-13 15:38:46.513299929 -0300
Change: 2023-09-13 15:38:46.513299929 -0300
Birth: 2023-09-13 15:38:46.513299929 -0300
IPFS hash: QmNMgJwhkJ1qUFExzMzTdSEBAFZp8M2vtGdt2de4Maq7qS
------------------------------
File: ./linux/.gitignore
Size: 18 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873967 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:38:47.473276607 -0300
Modify: 2023-09-13 15:38:46.513299929 -0300
Change: 2023-09-13 15:38:46.513299929 -0300
Birth: 2023-09-13 15:38:46.513299929 -0300
IPFS hash: QmXJZmpjawRS9iiKQr3RfYgQRcpm3SmVn9xBgVjn5pH2FZ
------------------------------
File: ./linux/CMakeLists.txt
Size: 5191 Blocks: 16 IO Block: 4096 regular file
Device: 8,38 Inode: 9873965 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:39:31.720208171 -0300
Modify: 2023-09-13 15:38:46.513299929 -0300
Change: 2023-09-13 15:38:46.513299929 -0300
Birth: 2023-09-13 15:38:46.509300027 -0300
IPFS hash: QmT3Wh9Z1XycSuivaDUeaf48YSWvYLeSy2fPDkNbDshbKF
------------------------------
File: ./Prompt2-response.txt
Size: 928 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9873977 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 16:50:48.334444867 -0300
Modify: 2023-09-13 16:47:23.259891265 -0300
Change: 2023-09-13 16:47:23.263891318 -0300
Birth: 2023-09-13 16:47:23.255891211 -0300
IPFS hash: QmaaKJv7dekEwysNTb6YPGenajCPqJiu924qkSjjE12PP4
------------------------------
File: ./.git/COMMIT_EDITMSG
Size: 15 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9868447 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 19:29:59.151380662 -0300
Modify: 2023-09-13 19:29:59.151380662 -0300
Change: 2023-09-13 19:29:59.151380662 -0300
Birth: 2023-09-13 15:15:06.537560116 -0300
IPFS hash: QmT2TCQY7PgtP8spJZH8TpkTx1yzqPaFuU2Bd5W9JxVgDJ
------------------------------
File: ./.git/info/exclude
Size: 240 Blocks: 8 IO Block: 4096 regular file
Device: 8,38 Inode: 9845975 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/daniella) Gid: ( 1000/daniella)
Access: 2023-09-13 15:14:44.531269207 -0300
Modify: 2023-09-13 15:14:44.499271732 -0300
Change: 2023-09-13 15:14:44.499271732 -0300
Birth: 2023-09-13 15:14:44.499271732 -0300