-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathicon.json
7662 lines (7662 loc) · 297 KB
/
icon.json
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
{
"icons": [
{
"name": "3d_coat",
"size": "156814",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/3d_coat.ico",
"hash": "63b1fddedecb8692684624a453107e005c05a803",
"date": "2022-01-25T17:05:06+07:00"
},
{
"name": "4k_downloader",
"size": "147111",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/4k_downloader.ico",
"hash": "8d459222f790e4335813bcf86fb65bf18f96e110",
"date": "2022-03-11T16:24:44+07:00"
},
{
"name": "4k_slideshow_maker",
"size": "149289",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/4k_slideshow_maker.ico",
"hash": "547c49ef83fc5095fcb44c35b98aec9964f0a7e1",
"date": "2022-03-11T16:22:00+07:00"
},
{
"name": "4k_stogram",
"size": "152053",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/4k_stogram.ico",
"hash": "8a826ca118bb98e59c53bfa50d7fe2fe57151fad",
"date": "2022-03-11T16:22:00+07:00"
},
{
"name": "4k_tokkit",
"size": "150794",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/4k_tokkit.ico",
"hash": "78a18d866bb0d36022f674b528e7cb540c3872bc",
"date": "2022-03-11T16:22:00+07:00"
},
{
"name": "4k_video_downloader",
"size": "152538",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/4k_video_downloader.ico",
"hash": "eb6175980792f60147b8f645fac3ce568b2ec10a",
"date": "2022-03-11T16:22:00+07:00"
},
{
"name": "4k_video_to_mp3",
"size": "153748",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/4k_video_to_mp3.ico",
"hash": "b044985b34c9ba8b584d86fa7cc06ea8fd38ccc7",
"date": "2022-03-11T16:22:00+07:00"
},
{
"name": "4k_youtube_to_mp3",
"size": "150216",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/4k_youtube_to_mp3.ico",
"hash": "53d3efb5677194887bb041a059daeb22da058d04",
"date": "2022-03-11T16:22:00+07:00"
},
{
"name": "7zip",
"size": "148293",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/7zip.ico",
"hash": "d7d7447bdb2714bc3d0e4b995a4044f3ae6449b1",
"date": "2022-02-24T10:28:37+07:00"
},
{
"name": "9gag",
"size": "150679",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/9gag.ico",
"hash": "11b08456cec43c1a0b22a3abcc253c3131e8ce1f",
"date": "2021-12-05T21:54:19+07:00"
},
{
"name": "Contacts",
"size": "151248",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Contacts.ico",
"hash": "862d94b57772da421c2d2bfa3019e7fa25897f5c",
"date": "2025-02-13T10:26:31+07:00"
},
{
"name": "CorelDRAW_AfterShot",
"size": "149400",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_AfterShot.ico",
"hash": "962c39d3a0495d5ccfebe44e083cbe7b493302d2",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDRAW_Graphics_Suite-1",
"size": "162828",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_Graphics_Suite-1.ico",
"hash": "3dcee4725e8c6894cbb5448b20daaf0ff1befbbd",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDRAW_Graphics_Suite",
"size": "156847",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_Graphics_Suite.ico",
"hash": "db31be423e0befd4ff277b5d46da1cd356ae3d3d",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDRAW_PaintShop_Pro",
"size": "152521",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_PaintShop_Pro.ico",
"hash": "be751cdcfa94f9aa43cad93e82c763607c1658e9",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDRAW_PhotoMirage",
"size": "159369",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_PhotoMirage.ico",
"hash": "5cfac66c62a137b73a26d54669c378466446869e",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDRAW_Pinnacle_Studio",
"size": "150850",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_Pinnacle_Studio.ico",
"hash": "b1b003db391567f6f91901935c81114e8f239446",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDRAW_Roxio",
"size": "149867",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_Roxio.ico",
"hash": "e3bb3249ac2a76d1fd73e709ca023be2f02c4fd0",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDRAW_VideoStudio",
"size": "155946",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_VideoStudio.ico",
"hash": "b4a8f02de46b7ba663060f4d5ab694c5603663eb",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDRAW_WordPerfect_Office",
"size": "155871",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDRAW_WordPerfect_Office.ico",
"hash": "0b1e641422816fc110a4996855a85183b9d84079",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "CorelDraw_Painter",
"size": "162707",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/CorelDraw_Painter.ico",
"hash": "f31e4a7dccb9d692b0756d2127770c65feafe392",
"date": "2025-02-13T09:49:46+07:00"
},
{
"name": "Deepseek",
"size": "151492",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Deepseek.ico",
"hash": "e6c8acc984e622bdcee54c6744a3c02b48c76687",
"date": "2025-02-13T10:26:31+07:00"
},
{
"name": "Directory_Homer_Simpsons",
"size": "163675",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Directory_Homer_Simpsons.ico",
"hash": "fc65c5cf508cda9373db82d4c769bb0c4906654b",
"date": "2025-02-19T10:13:49+07:00"
},
{
"name": "Font-2",
"size": "152044",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Font-2.ico",
"hash": "7706322bd8a6a23b2927baaf34043ea99be2c7cf",
"date": "2025-02-13T10:26:31+07:00"
},
{
"name": "Font",
"size": "155840",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Font.ico",
"hash": "88a0ed40d78f72e7b6ca1eb68b9af0627dd0ed2d",
"date": "2025-02-13T10:26:31+07:00"
},
{
"name": "Forza_horizon_4",
"size": "149442",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Forza_horizon_4.ico",
"hash": "ed6b32a8861636aea93bca9deac95ee12fdc3e75",
"date": "2025-02-12T15:05:38+07:00"
},
{
"name": "Forza_horizon_5",
"size": "156131",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Forza_horizon_5.ico",
"hash": "8ab294268963c3a4a6ba548738370eaeda211585",
"date": "2025-02-12T15:05:38+07:00"
},
{
"name": "Forza_motorsport",
"size": "147227",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Forza_motorsport.ico",
"hash": "898ef8c919fe124b07914d2ce22a15b7f419c31a",
"date": "2025-02-12T15:05:38+07:00"
},
{
"name": "Gemini",
"size": "156753",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Gemini.ico",
"hash": "55b9e7f5d57d8cfaf77cf379dc9edc7d51203a92",
"date": "2024-12-16T15:21:48+07:00"
},
{
"name": "Github_actions",
"size": "162043",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Github_actions.ico",
"hash": "0457eeb05ada62945e6712fb010ae162288767d1",
"date": "2024-12-16T15:33:28+07:00"
},
{
"name": "Github_copilot",
"size": "156064",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Github_copilot.ico",
"hash": "0f4dd472a442328fd54ed93fbc64bfb2e789cd78",
"date": "2024-12-16T15:21:48+07:00"
},
{
"name": "Kicad_GERBER",
"size": "149213",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Kicad_GERBER.ico",
"hash": "fb5abfe31d17a08ce473f9dd8385d4c91c3d8b75",
"date": "2025-02-18T19:05:27+07:00"
},
{
"name": "Kicad_PCB",
"size": "162831",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Kicad_PCB.ico",
"hash": "bfcc455ac2cc422ffb85af8156da3180b4c13e40",
"date": "2025-02-18T19:05:27+07:00"
},
{
"name": "Kicad_SCH",
"size": "152481",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Kicad_SCH.ico",
"hash": "47265499e4424e4f8699b50bc6561e36c0875c9c",
"date": "2025-02-18T19:05:27+07:00"
},
{
"name": "Microsoft_Package_Download-1",
"size": "147248",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Microsoft_Package_Download-1.ico",
"hash": "9c5bcee6034a88ae270b22cf1709fd1cbba87b1f",
"date": "2025-02-18T19:17:53+07:00"
},
{
"name": "Microsoft_Package_Download",
"size": "148478",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Microsoft_Package_Download.ico",
"hash": "428626dfde50a7e6bcffde375de050915835ff55",
"date": "2025-02-18T19:17:53+07:00"
},
{
"name": "MiniWorld_Main",
"size": "150022",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/MiniWorld_Main.ico",
"hash": "46b95969c7aa9d568bcf7b022978199eeddd57f6",
"date": "2025-02-16T18:00:07+08:00"
},
{
"name": "Movie-2",
"size": "153873",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Movie-2.ico",
"hash": "de68f95f530592f30e2b9d1c6abafdcbbb2c2f3e",
"date": "2022-03-01T10:18:29+07:00"
},
{
"name": "Scoop",
"size": "154681",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Scoop.ico",
"hash": "470832ba1bb515164455d79459356f12ebf00d53",
"date": "2023-05-27T02:14:02+07:00"
},
{
"name": "Xmind",
"size": "154235",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/Xmind.ico",
"hash": "1c7e5a8b05e8c8a14095459a3f2b0e041e8933f1",
"date": "2023-05-29T17:59:55+07:00"
},
{
"name": "ab_download_manager",
"size": "154356",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/ab_download_manager.ico",
"hash": "c79509a970799c6d8d02a1a60e0d0619c3bae54c",
"date": "2025-02-19T11:04:11+08:00"
},
{
"name": "ableton",
"size": "144524",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/ableton.ico",
"hash": "6c7f34021925bfa57b3fbb1002a8582cc2ef99cb",
"date": "2022-09-21T10:06:12+07:00"
},
{
"name": "acer_nitro",
"size": "150469",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/acer_nitro.ico",
"hash": "64258fcba6ae317f16bd25f0026833fa249bd431",
"date": "2024-12-17T15:07:08+07:00"
},
{
"name": "acer_predator",
"size": "156396",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/acer_predator.ico",
"hash": "9c33ba3ba17cd98cbdc8fda74d4725e846835c71",
"date": "2022-01-06T19:21:03+07:00"
},
{
"name": "activitypub",
"size": "155715",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/activitypub.ico",
"hash": "c3158ab8752ede6bc84a681261d74a3fc4ca9d1a",
"date": "2023-11-10T14:14:26+07:00"
},
{
"name": "actix",
"size": "160901",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/actix.ico",
"hash": "6920fe0b0023df16c4ceec7838363dc3c947c701",
"date": "2023-11-10T14:14:26+07:00"
},
{
"name": "adobe",
"size": "147225",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe.ico",
"hash": "90decb5447df2b4ad7adefafedc64eca73bd0b37",
"date": "2022-04-11T09:36:13+07:00"
},
{
"name": "adobe_acrobat",
"size": "151507",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_acrobat.ico",
"hash": "42a146a54824e6529a2277214864d4e064ca3d65",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_aero",
"size": "151169",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_aero.ico",
"hash": "cf9739d8bf2c2767798aab09aefff4006bd98e07",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_after_effect-1",
"size": "153050",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_after_effect-1.ico",
"hash": "56a81c69088dc51b1202a7a6b38ef542a92a9acc",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_after_effect",
"size": "151442",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_after_effect.ico",
"hash": "f08c4316b06b3dcb878caca09d7c8f8b5a0fe36a",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_animate-1",
"size": "152014",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_animate-1.ico",
"hash": "5dad6ec8606ac991a3700e3415208b8f2d644fbd",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_animate",
"size": "150509",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_animate.ico",
"hash": "27f92258cd8d73a8633472b934032a15e06b03e3",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_audition-1",
"size": "151480",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_audition-1.ico",
"hash": "1be4c38b2d095112bbdfc17bb24ddfa7e2038a73",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_audition",
"size": "150460",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_audition.ico",
"hash": "2cab7636452db35ad80fa966641179f11f9fb306",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_behance",
"size": "152662",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_behance.ico",
"hash": "3b96505150b0563e49eee6477ca70ed9918bff5e",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_bridge-1",
"size": "148307",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_bridge-1.ico",
"hash": "eaa1e29f780c3d4156aa57ee595cf7a4bc83aa04",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_bridge",
"size": "154916",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_bridge.ico",
"hash": "18a33443161a0a24482b94937d1007da528022b8",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_character_animator-1",
"size": "152108",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_character_animator-1.ico",
"hash": "40d27eb6a5f8b7c34fb8858bac43d04fea9ebe2a",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_character_animator",
"size": "150115",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_character_animator.ico",
"hash": "86bf385050e07533354a8febb4b6e94fc5be5901",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_creative_cloud-1",
"size": "159642",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_creative_cloud-1.ico",
"hash": "4124f631898078fe9befe2f9a59f457d7cde7640",
"date": "2022-03-29T11:49:46+07:00"
},
{
"name": "adobe_creative_cloud",
"size": "174425",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_creative_cloud.ico",
"hash": "1f897ba543594391072c5836517a31c47eb5f91c",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_dimension-1",
"size": "151239",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_dimension-1.ico",
"hash": "8320cdc9826aa9e6d397f6900793d95cd49f1329",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_dimension",
"size": "151015",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_dimension.ico",
"hash": "64922a06999dbd705b81f5c53b269208109867a1",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_dreamweaver-1",
"size": "151638",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_dreamweaver-1.ico",
"hash": "1a8d89d6171bee75363ae642aa8856d043a56fef",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_dreamweaver",
"size": "154020",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_dreamweaver.ico",
"hash": "426789587863d6714c6b01cffacce9f6141ba642",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_experience_design-1",
"size": "151072",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_experience_design-1.ico",
"hash": "461756b1fb37d1cade634c35db8b2eba307ae9d9",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_experience_design",
"size": "153499",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_experience_design.ico",
"hash": "57ba429f0892a53bc82f2f73fe726f2815b33a31",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_fresco",
"size": "150587",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_fresco.ico",
"hash": "5ad270dab19eefffc98c6f7a12687dcebd101c8a",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_fuse",
"size": "150877",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_fuse.ico",
"hash": "f39314d8569387fe583d3581a345ce356cd14738",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_illustrator-1",
"size": "151310",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_illustrator-1.ico",
"hash": "5e9dde2c42eadba75f66b69b7f60e5940c54b1ea",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_illustrator",
"size": "148418",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_illustrator.ico",
"hash": "e550e4c2d03590a3bc8bda0478339c39068062a7",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_incopy-1",
"size": "148373",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_incopy-1.ico",
"hash": "a66f8432fd1dca6d0642399fa50160918b3a1cd2",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_incopy",
"size": "149690",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_incopy.ico",
"hash": "1a584912eae0b6ea46d1116f69c78e2f4504f0b9",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_indesign-1",
"size": "148485",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_indesign-1.ico",
"hash": "541f2d60a20334da452e8a92c2b7162cab3cc34e",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_indesign",
"size": "149699",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_indesign.ico",
"hash": "ca470e911321e591f71bb609617251494ace7778",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_lightroom-1",
"size": "149598",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_lightroom-1.ico",
"hash": "6fa14cb2eadea4e338db4b32c29de04a17607735",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_lightroom",
"size": "150520",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_lightroom.ico",
"hash": "fec961b9c9a86424bb0fe51c2023f5d6db3b8c54",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_lightroom_classic-1",
"size": "152246",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_lightroom_classic-1.ico",
"hash": "f69faf57d9a01bbf5d489af03f7ab90102a2b554",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_lightroom_classic",
"size": "152593",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_lightroom_classic.ico",
"hash": "e2ab5250b6a98f4ab9c58215934caefeb7079bce",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_media_encoder-1",
"size": "149395",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_media_encoder-1.ico",
"hash": "13ab7abf1f3b0bb72f21d85b5916446ab9e6ba07",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_media_encoder",
"size": "152286",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_media_encoder.ico",
"hash": "b7dc70876f1a388c9ee85f38a178193056790013",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_photoshop-1",
"size": "151957",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_photoshop-1.ico",
"hash": "f942a45e47015f68823985829d3f95110f14fea7",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_photoshop",
"size": "153051",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_photoshop.ico",
"hash": "3be1d2b7645bea4023c8704d13f3e7d4011e96e9",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_photoshop_classic-1",
"size": "154261",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_photoshop_classic-1.ico",
"hash": "7babee6a79a3a1e3f4277a7d53d513960f91f918",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_photoshop_classic",
"size": "154889",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_photoshop_classic.ico",
"hash": "3876d1f6cd5d9856bd06eea8d940943ee54e8467",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_photoshop_elements-1",
"size": "155442",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_photoshop_elements-1.ico",
"hash": "a8ce046f9db74d670ee6189b129bd84f6c8ce8a3",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_photoshop_elements",
"size": "159327",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_photoshop_elements.ico",
"hash": "2ae109d00530f11b9dfd24e5ff5a4e2082c75d29",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_photoshop_express-1",
"size": "153029",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_photoshop_express-1.ico",
"hash": "e1f388a2b6b529271b087dabb31ea866db96c2df",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_photoshop_express",
"size": "154874",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_photoshop_express.ico",
"hash": "e685334edeb1f35bc1bcf9098121f9d4e98bce5e",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_portofolio",
"size": "150709",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_portofolio.ico",
"hash": "f87340192e2a1c1e59f1d4af86b66da927add2b0",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_prelude-1",
"size": "151641",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_prelude-1.ico",
"hash": "2b03cf36e8ac1fb114c3f1399dceffc0122f0306",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_prelude",
"size": "149312",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_prelude.ico",
"hash": "25f995a51b1fa153090b06561fcde56c27372122",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_premiere-1",
"size": "150895",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_premiere-1.ico",
"hash": "55e3adb349d88bb999fcdc65df3f9b278e023ff4",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_premiere",
"size": "149446",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_premiere.ico",
"hash": "cc1004e1b160f6458231fa237d4d7097704457e1",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_premiere_elements-1",
"size": "153557",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_premiere_elements-1.ico",
"hash": "69df8b0ab2df666687329062db4270219924e933",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_premiere_elements",
"size": "156243",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_premiere_elements.ico",
"hash": "a7c47a78112c9d6609c56b47f5ffd2f1355cbbee",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_rush-1",
"size": "153255",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_rush-1.ico",
"hash": "8ff57fe9bbca177871c0a59f0f6b4bee1f247088",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_rush",
"size": "150310",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_rush.ico",
"hash": "3351fef4c9317462e491c5b05f753da6242e1326",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_spark-1",
"size": "151091",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_spark-1.ico",
"hash": "d69f8c840848b34c3dddd21dc040934c8046bedb",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_spark",
"size": "149924",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_spark.ico",
"hash": "f02e27414c5c57b016d83c3f1d707aa3d7032145",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_stocks",
"size": "150099",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_stocks.ico",
"hash": "2ecc5aaeea3d7315f7057c68c47c6605ddfe4e6b",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adobe_substance_painter",
"size": "149123",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_substance_painter.ico",
"hash": "f737dfcb46810b3ef8889e59f72fa901559065c9",
"date": "2023-03-09T21:03:11+07:00"
},
{
"name": "adobe_substance_sampler",
"size": "151310",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobe_substance_sampler.ico",
"hash": "fe6570dd4b6588349cc843c63e6977d066908544",
"date": "2023-03-09T21:03:11+07:00"
},
{
"name": "adobesmile",
"size": "153313",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adobesmile.ico",
"hash": "b5e29bb2f08f6776d6f1488036ba4b9c692da67c",
"date": "2021-12-07T16:32:35+07:00"
},
{
"name": "adonis",
"size": "152263",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/adonis.ico",
"hash": "26ce3926cfdb821137a55affb18c0c41eb94fe7f",
"date": "2023-11-08T14:58:12+07:00"
},
{
"name": "affinity",
"size": "154844",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/affinity.ico",
"hash": "18cf86b094d73a9656bf63632217d891b03ced3b",
"date": "2021-12-31T11:08:51+07:00"
},
{
"name": "affinity_designer",
"size": "156718",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/affinity_designer.ico",
"hash": "e5ec9d9ffc676db5b06321d0ada304055621816d",
"date": "2021-12-31T11:08:51+07:00"
},
{
"name": "affinity_photo",
"size": "156271",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/affinity_photo.ico",
"hash": "82a3c094c68e314487a979102c04140df1070998",
"date": "2021-12-31T11:08:51+07:00"
},
{
"name": "affinity_publisher",
"size": "157975",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/affinity_publisher.ico",
"hash": "fc417f3704a35cd0dfa3c4882f12bde16abf4b46",
"date": "2021-12-31T11:08:51+07:00"
},
{
"name": "ai_script",
"size": "158033",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/ai_script.ico",
"hash": "4989a719d8c14551f5b25fd7075349f8ac47266f",
"date": "2023-11-08T14:58:12+07:00"
},
{
"name": "alienware",
"size": "149623",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/alienware.ico",
"hash": "d43bdc025736c0bc4bbdd3243bdf905d36f429ae",
"date": "2022-01-06T19:21:03+07:00"
},
{
"name": "alpinejs",
"size": "153375",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/alpinejs.ico",
"hash": "65c7d66e369ab4c0ab037323780298b069735910",
"date": "2023-11-10T14:14:26+07:00"
},
{
"name": "amazon",
"size": "156014",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/amazon.ico",
"hash": "7b0491933de0feb22dff08417c999a2892fb380d",
"date": "2022-01-21T09:51:28+07:00"
},
{
"name": "amazon_music",
"size": "157679",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/amazon_music.ico",
"hash": "89ac8c77fda20e0f751a5bea42188c04ef46d4a1",
"date": "2022-01-04T15:48:52+07:00"
},
{
"name": "amazon_thinkbox",
"size": "152508",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/amazon_thinkbox.ico",
"hash": "8ee56af75e1d991f8c3d0b831d10a5b982075a97",
"date": "2023-03-15T19:33:12Z"
},
{
"name": "amd",
"size": "147509",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/amd.ico",
"hash": "303176d491b533757a568ebd1650662ab77ea1c4",
"date": "2022-01-06T19:21:03+07:00"
},
{
"name": "amd_storemi",
"size": "153810",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/amd_storemi.ico",
"hash": "35d97055574d5041279028f6beade615e233447d",
"date": "2022-01-06T19:21:03+07:00"
},
{
"name": "android-1",
"size": "151121",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android-1.ico",
"hash": "69c5431c2ea79b3b7c1dff775a23e6f6674452f1",
"date": "2022-01-04T15:57:36+07:00"
},
{
"name": "android",
"size": "151267",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android.ico",
"hash": "64f48426a208cce851ee375aa666722501e6cc16",
"date": "2022-01-04T15:57:36+07:00"
},
{
"name": "android_10",
"size": "152557",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_10.ico",
"hash": "2e9f4ccb4c0b9bd66a66126db8bd5fbaf9fce40c",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_11",
"size": "149254",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_11.ico",
"hash": "07ade170b9840ae791239a6dbe55034182d6bc98",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_12",
"size": "150911",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_12.ico",
"hash": "bee21aa888846c93d25242f7b3fa624cc5028343",
"date": "2023-10-17T16:39:06+07:00"
},
{
"name": "android_13",
"size": "152240",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_13.ico",
"hash": "17f060a8b3e7b6c52a4f537f003c0ae30b5bfbd6",
"date": "2023-10-17T16:38:19+07:00"
},
{
"name": "android_14",
"size": "158549",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_14.ico",
"hash": "59d5eeee62dcc4d261fdbedbc64a170fd8d35333",
"date": "2023-10-17T16:38:01+07:00"
},
{
"name": "android_15",
"size": "155562",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_15.ico",
"hash": "1ba62dd8ca1cddb9cee1c165590c545e7ef70def",
"date": "2024-12-16T15:20:19+07:00"
},
{
"name": "android_16",
"size": "157962",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_16.ico",
"hash": "fafbbf014a5d2308d1b3d3cfedeeb27c499de7d6",
"date": "2024-12-16T15:20:19+07:00"
},
{
"name": "android_developer",
"size": "150035",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_developer.ico",
"hash": "225be6e166aa46e3c6ff6bd0c264f4c72e6cea54",
"date": "2022-03-17T11:25:05+07:00"
},
{
"name": "android_ice_cream_sandwich-1",
"size": "159227",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_ice_cream_sandwich-1.ico",
"hash": "2f1538878a190ee387e9833b3a63a85d9e3f4142",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_ice_cream_sandwich",
"size": "150497",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_ice_cream_sandwich.ico",
"hash": "b3d2a3d6796216bc6497b9864d339d4df4b44f05",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_jelly_bean",
"size": "156127",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_jelly_bean.ico",
"hash": "a40beb8f9223501b603d8343bea441aa9634dfb5",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_lollipop-1",
"size": "158947",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_lollipop-1.ico",
"hash": "f47c2e385373c5c78c2ac8d7d45463b7f052c5ff",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_lollipop",
"size": "148867",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_lollipop.ico",
"hash": "dbd44e41f84fc540bbe83e69e2c767ad29bf8b43",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_marshmallow-1",
"size": "145886",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_marshmallow-1.ico",
"hash": "c13dcafd69941e3ffaa15b19bd41d1db9fad6e4a",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_marshmallow",
"size": "145813",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_marshmallow.ico",
"hash": "cbe3221241ba40ffe479ac5823334a42bee51df4",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_nougat",
"size": "152429",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_nougat.ico",
"hash": "a29fb1a379e55b26dd12c30e1fdf593c4d8b65d5",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_oreo-1",
"size": "150755",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_oreo-1.ico",
"hash": "50d56439179d66e9c4deb3b3e1da9e9a57d9d621",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_oreo",
"size": "157305",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_oreo.ico",
"hash": "d9dd87f3119ca7a9ca430e74e7d99e729bbe2699",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_pie",
"size": "151934",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_pie.ico",
"hash": "06c42f1ac4ab65c1d38aaa1393e0be84d7aa34b0",
"date": "2022-03-17T11:02:56+07:00"
},
{
"name": "android_studio-1",
"size": "152735",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_studio-1.ico",
"hash": "2e8b5b990968debeb0b3ffefc26828e3a3fbbbb3",
"date": "2023-11-08T14:58:12+07:00"
},
{
"name": "android_studio",
"size": "152853",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/android_studio.ico",
"hash": "2d81ff91766b257ee2076e6b52217601e901435e",
"date": "2021-12-05T21:54:19+07:00"
},
{
"name": "anghami",
"size": "172097",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/anghami.ico",
"hash": "a6402c84ddb441fea4ddb0e4dc9ca8e95aef2329",
"date": "2022-02-18T17:03:15+07:00"
},
{
"name": "angular-1",
"size": "153804",
"url_icon": "https://raw.githubusercontent.com/icon11-community/Folder11-Ico/main/ico/angular-1.ico",