aboutsummaryrefslogtreecommitdiff
path: root/tests/testdata/PackageManifest/1.8.0_202-x64.json
blob: eaf67a7ac4daee3242c5a3ae285bcabd55495199 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
{
    "files": {
        "COPYRIGHT": {
            "downloads": {
                "lzma": {
                    "sha1": "dd860e040807f7e53ae89da5f28dd73d57ac605d",
                    "size": 1431,
                    "url": "https://launcher.mojang.com/v1/objects/dd860e040807f7e53ae89da5f28dd73d57ac605d/COPYRIGHT"
                },
                "raw": {
                    "sha1": "c725183c757011e7ba96c83c1e86ee7e8b516a2b",
                    "size": 3244,
                    "url": "https://launcher.mojang.com/v1/objects/c725183c757011e7ba96c83c1e86ee7e8b516a2b/COPYRIGHT"
                }
            },
            "executable": false,
            "type": "file"
        },
        "LICENSE": {
            "downloads": {
                "raw": {
                    "sha1": "3e86865deec0814c958bcf7fb87f790bccc0e8bd",
                    "size": 40,
                    "url": "https://launcher.mojang.com/v1/objects/3e86865deec0814c958bcf7fb87f790bccc0e8bd/LICENSE"
                }
            },
            "executable": false,
            "type": "file"
        },
        "README": {
            "downloads": {
                "raw": {
                    "sha1": "f90331df1e5badeadc501d8dd70714c62a920204",
                    "size": 46,
                    "url": "https://launcher.mojang.com/v1/objects/f90331df1e5badeadc501d8dd70714c62a920204/README"
                }
            },
            "executable": false,
            "type": "file"
        },
        "THIRDPARTYLICENSEREADME-JAVAFX.txt": {
            "downloads": {
                "lzma": {
                    "sha1": "4fee85109d7ff04b982d0576dabd15397f599125",
                    "size": 15455,
                    "url":
                        "https://launcher.mojang.com/v1/objects/4fee85109d7ff04b982d0576dabd15397f599125/THIRDPARTYLICENSEREADME-JAVAFX.txt"
                },
                "raw": {
                    "sha1": "56ff42f87607b997b52ae0ef8bf315e36932e870",
                    "size": 112724,
                    "url":
                        "https://launcher.mojang.com/v1/objects/56ff42f87607b997b52ae0ef8bf315e36932e870/THIRDPARTYLICENSEREADME-JAVAFX.txt"
                }
            },
            "executable": false,
            "type": "file"
        },
        "THIRDPARTYLICENSEREADME.txt": {
            "downloads": {
                "lzma": {
                    "sha1": "419c1414ba46ae9dbfd38cf4e0601fff61644429",
                    "size": 32266,
                    "url": "https://launcher.mojang.com/v1/objects/419c1414ba46ae9dbfd38cf4e0601fff61644429/THIRDPARTYLICENSEREADME.txt"
                },
                "raw": {
                    "sha1": "b83c3f32261de3e48ccd20614a11e066b1ec9027",
                    "size": 153824,
                    "url": "https://launcher.mojang.com/v1/objects/b83c3f32261de3e48ccd20614a11e066b1ec9027/THIRDPARTYLICENSEREADME.txt"
                }
            },
            "executable": false,
            "type": "file"
        },
        "Welcome.html": {
            "downloads": {
                "lzma": {
                    "sha1": "01c21a74b4aafb7cbe0388233c43cbdf77dcaaea",
                    "size": 528,
                    "url": "https://launcher.mojang.com/v1/objects/01c21a74b4aafb7cbe0388233c43cbdf77dcaaea/Welcome.html"
                },
                "raw": {
                    "sha1": "d98ae54f03dac87419abc19b97e315830c2da55f",
                    "size": 955,
                    "url": "https://launcher.mojang.com/v1/objects/d98ae54f03dac87419abc19b97e315830c2da55f/Welcome.html"
                }
            },
            "executable": false,
            "type": "file"
        },
        "bin": {
            "type": "directory"
        },
        "bin/ControlPanel": {
            "target": "jcontrol",
            "type": "link"
        },
        "bin/java": {
            "downloads": {
                "lzma": {
                    "sha1": "3857eea1d59e1bc545c67a753ed2768254807b8a",
                    "size": 2088,
                    "url": "https://launcher.mojang.com/v1/objects/3857eea1d59e1bc545c67a753ed2768254807b8a/java"
                },
                "raw": {
                    "sha1": "3d20560fb5d1a49cb689c2226972e92e06d27ba6",
                    "size": 8464,
                    "url": "https://launcher.mojang.com/v1/objects/3d20560fb5d1a49cb689c2226972e92e06d27ba6/java"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/javaws": {
            "downloads": {
                "lzma": {
                    "sha1": "a6bec5c049e76c4488294a256a2084ea23ddb440",
                    "size": 38173,
                    "url": "https://launcher.mojang.com/v1/objects/a6bec5c049e76c4488294a256a2084ea23ddb440/javaws"
                },
                "raw": {
                    "sha1": "955c0f0066e2f893b0c2b3ccd83e223722e4ab74",
                    "size": 140296,
                    "url": "https://launcher.mojang.com/v1/objects/955c0f0066e2f893b0c2b3ccd83e223722e4ab74/javaws"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/jcontrol": {
            "downloads": {
                "lzma": {
                    "sha1": "40c5e33748f252e1d950b579a4185ab2c23fc908",
                    "size": 2166,
                    "url": "https://launcher.mojang.com/v1/objects/40c5e33748f252e1d950b579a4185ab2c23fc908/jcontrol"
                },
                "raw": {
                    "sha1": "ed541733c8b51e34349c1f8010b277e58ad73f1e",
                    "size": 6264,
                    "url": "https://launcher.mojang.com/v1/objects/ed541733c8b51e34349c1f8010b277e58ad73f1e/jcontrol"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/jjs": {
            "downloads": {
                "lzma": {
                    "sha1": "d44d1ac421979f7671921986214812095a5b0e3b",
                    "size": 2168,
                    "url": "https://launcher.mojang.com/v1/objects/d44d1ac421979f7671921986214812095a5b0e3b/jjs"
                },
                "raw": {
                    "sha1": "f00f944c3dbe556793b5dc686aaeee3e5722e99b",
                    "size": 8584,
                    "url": "https://launcher.mojang.com/v1/objects/f00f944c3dbe556793b5dc686aaeee3e5722e99b/jjs"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/keytool": {
            "downloads": {
                "lzma": {
                    "sha1": "93c607dce450976667c382f609a367167bdec05c",
                    "size": 2175,
                    "url": "https://launcher.mojang.com/v1/objects/93c607dce450976667c382f609a367167bdec05c/keytool"
                },
                "raw": {
                    "sha1": "7114b561546270e441e9ed1bcc24e5188c068a42",
                    "size": 8584,
                    "url": "https://launcher.mojang.com/v1/objects/7114b561546270e441e9ed1bcc24e5188c068a42/keytool"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/orbd": {
            "downloads": {
                "lzma": {
                    "sha1": "b27dfded5e2b2f6f02c555971c94e46ca14ac81b",
                    "size": 2254,
                    "url": "https://launcher.mojang.com/v1/objects/b27dfded5e2b2f6f02c555971c94e46ca14ac81b/orbd"
                },
                "raw": {
                    "sha1": "7f31217fecb3dbbd89f1dd3783fca58793a66fd2",
                    "size": 8656,
                    "url": "https://launcher.mojang.com/v1/objects/7f31217fecb3dbbd89f1dd3783fca58793a66fd2/orbd"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/pack200": {
            "downloads": {
                "lzma": {
                    "sha1": "b52da4497b49b1508b6225a5740857ddb8f52e97",
                    "size": 2183,
                    "url": "https://launcher.mojang.com/v1/objects/b52da4497b49b1508b6225a5740857ddb8f52e97/pack200"
                },
                "raw": {
                    "sha1": "16ef3e801efb57e50bc6477a27a9d95d02d0775b",
                    "size": 8584,
                    "url": "https://launcher.mojang.com/v1/objects/16ef3e801efb57e50bc6477a27a9d95d02d0775b/pack200"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/policytool": {
            "downloads": {
                "lzma": {
                    "sha1": "87da4c07da45f3d1a1a9d732af197cd39bf69d10",
                    "size": 2182,
                    "url": "https://launcher.mojang.com/v1/objects/87da4c07da45f3d1a1a9d732af197cd39bf69d10/policytool"
                },
                "raw": {
                    "sha1": "a52a29424470cb9b8db5c2fb1751d0b697a7ec8e",
                    "size": 8592,
                    "url": "https://launcher.mojang.com/v1/objects/a52a29424470cb9b8db5c2fb1751d0b697a7ec8e/policytool"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/rmid": {
            "downloads": {
                "lzma": {
                    "sha1": "1494c1174fde0c0a93ea117bc7edf7eb936c0512",
                    "size": 2172,
                    "url": "https://launcher.mojang.com/v1/objects/1494c1174fde0c0a93ea117bc7edf7eb936c0512/rmid"
                },
                "raw": {
                    "sha1": "5c8710e1ab924e5b09a07bcb4c6e106293bbd1a8",
                    "size": 8584,
                    "url": "https://launcher.mojang.com/v1/objects/5c8710e1ab924e5b09a07bcb4c6e106293bbd1a8/rmid"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/rmiregistry": {
            "downloads": {
                "lzma": {
                    "sha1": "7070cf2ec5a5e520a880bae699431edf02083e7e",
                    "size": 2174,
                    "url": "https://launcher.mojang.com/v1/objects/7070cf2ec5a5e520a880bae699431edf02083e7e/rmiregistry"
                },
                "raw": {
                    "sha1": "5f518daa7050028d5d9d849634c73136f2b23a54",
                    "size": 8592,
                    "url": "https://launcher.mojang.com/v1/objects/5f518daa7050028d5d9d849634c73136f2b23a54/rmiregistry"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/servertool": {
            "downloads": {
                "lzma": {
                    "sha1": "1db683a11cc9b7313426c84412f4d95be2fa7ccd",
                    "size": 2185,
                    "url": "https://launcher.mojang.com/v1/objects/1db683a11cc9b7313426c84412f4d95be2fa7ccd/servertool"
                },
                "raw": {
                    "sha1": "49d0ebfeb265ce5a8733e1014541ea2525674a60",
                    "size": 8592,
                    "url": "https://launcher.mojang.com/v1/objects/49d0ebfeb265ce5a8733e1014541ea2525674a60/servertool"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/tnameserv": {
            "downloads": {
                "lzma": {
                    "sha1": "36da9c9a2c5a8b662a3f8d52ca67339bce1c2714",
                    "size": 2291,
                    "url": "https://launcher.mojang.com/v1/objects/36da9c9a2c5a8b662a3f8d52ca67339bce1c2714/tnameserv"
                },
                "raw": {
                    "sha1": "09d998f8efcb6f55d0d87f59e08f8b89662796d9",
                    "size": 8656,
                    "url": "https://launcher.mojang.com/v1/objects/09d998f8efcb6f55d0d87f59e08f8b89662796d9/tnameserv"
                }
            },
            "executable": true,
            "type": "file"
        },
        "bin/unpack200": {
            "downloads": {
                "lzma": {
                    "sha1": "344959e32fc7ee19eebe7b3cf5ab6d1a7d6641f2",
                    "size": 79721,
                    "url": "https://launcher.mojang.com/v1/objects/344959e32fc7ee19eebe7b3cf5ab6d1a7d6641f2/unpack200"
                },
                "raw": {
                    "sha1": "5dd933132f1b202e19e0c8e093f7113711cfdfc1",
                    "size": 182616,
                    "url": "https://launcher.mojang.com/v1/objects/5dd933132f1b202e19e0c8e093f7113711cfdfc1/unpack200"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib": {
            "type": "directory"
        },
        "lib/amd64": {
            "type": "directory"
        },
        "lib/amd64/jli": {
            "type": "directory"
        },
        "lib/amd64/jli/libjli.so": {
            "downloads": {
                "lzma": {
                    "sha1": "372331ee8e375888f798a2e88180a94493e141b0",
                    "size": 48327,
                    "url": "https://launcher.mojang.com/v1/objects/372331ee8e375888f798a2e88180a94493e141b0/libjli.so"
                },
                "raw": {
                    "sha1": "73b0cf8b7415686bc40c561ff77ff2740ccf7a44",
                    "size": 108616,
                    "url": "https://launcher.mojang.com/v1/objects/73b0cf8b7415686bc40c561ff77ff2740ccf7a44/libjli.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/jvm.cfg": {
            "downloads": {
                "lzma": {
                    "sha1": "86bcfebec37b38415525ffd77d3eaf70d0b1b4ca",
                    "size": 435,
                    "url": "https://launcher.mojang.com/v1/objects/86bcfebec37b38415525ffd77d3eaf70d0b1b4ca/jvm.cfg"
                },
                "raw": {
                    "sha1": "84b38bdc745de446ba0ca0232ea3aaf2efd721da",
                    "size": 627,
                    "url": "https://launcher.mojang.com/v1/objects/84b38bdc745de446ba0ca0232ea3aaf2efd721da/jvm.cfg"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/amd64/libavplugin-53.so": {
            "downloads": {
                "lzma": {
                    "sha1": "a332366762d9efc7b845a682b7edce62db44618c",
                    "size": 14747,
                    "url": "https://launcher.mojang.com/v1/objects/a332366762d9efc7b845a682b7edce62db44618c/libavplugin-53.so"
                },
                "raw": {
                    "sha1": "9bd1473dd8a0dc7950c7af1cc69a45548df26eb5",
                    "size": 51720,
                    "url": "https://launcher.mojang.com/v1/objects/9bd1473dd8a0dc7950c7af1cc69a45548df26eb5/libavplugin-53.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libavplugin-54.so": {
            "downloads": {
                "lzma": {
                    "sha1": "2c615852a0720a275163e00597c1f711f11341da",
                    "size": 15153,
                    "url": "https://launcher.mojang.com/v1/objects/2c615852a0720a275163e00597c1f711f11341da/libavplugin-54.so"
                },
                "raw": {
                    "sha1": "8808050c5949c4800b42d1b19b1f8b0d120bcacb",
                    "size": 51768,
                    "url": "https://launcher.mojang.com/v1/objects/8808050c5949c4800b42d1b19b1f8b0d120bcacb/libavplugin-54.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libavplugin-55.so": {
            "downloads": {
                "lzma": {
                    "sha1": "39ee8e7fe14f0010c78973962800f539c3e4c16b",
                    "size": 15168,
                    "url": "https://launcher.mojang.com/v1/objects/39ee8e7fe14f0010c78973962800f539c3e4c16b/libavplugin-55.so"
                },
                "raw": {
                    "sha1": "f10ea4ea3489e96d8d161a96790133c417ec44e1",
                    "size": 51784,
                    "url": "https://launcher.mojang.com/v1/objects/f10ea4ea3489e96d8d161a96790133c417ec44e1/libavplugin-55.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libavplugin-56.so": {
            "downloads": {
                "lzma": {
                    "sha1": "abe7feced5a559f1bdc868526dc69484e0e591a0",
                    "size": 15169,
                    "url": "https://launcher.mojang.com/v1/objects/abe7feced5a559f1bdc868526dc69484e0e591a0/libavplugin-56.so"
                },
                "raw": {
                    "sha1": "e5bfcbff5a5a5a5993a3e689a05ef358c131a3ed",
                    "size": 51784,
                    "url": "https://launcher.mojang.com/v1/objects/e5bfcbff5a5a5a5993a3e689a05ef358c131a3ed/libavplugin-56.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libavplugin-57.so": {
            "downloads": {
                "lzma": {
                    "sha1": "4dd26b4ef2294b6929dcb2c7546b47eac5cc78a9",
                    "size": 15174,
                    "url": "https://launcher.mojang.com/v1/objects/4dd26b4ef2294b6929dcb2c7546b47eac5cc78a9/libavplugin-57.so"
                },
                "raw": {
                    "sha1": "2949e7ff9b0ac90e8943c211cff141ab12eec3f8",
                    "size": 51784,
                    "url": "https://launcher.mojang.com/v1/objects/2949e7ff9b0ac90e8943c211cff141ab12eec3f8/libavplugin-57.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libavplugin-ffmpeg-56.so": {
            "downloads": {
                "lzma": {
                    "sha1": "c688ba1cfa442bf18bee43b2fa870b4dc1ce3fb6",
                    "size": 15231,
                    "url": "https://launcher.mojang.com/v1/objects/c688ba1cfa442bf18bee43b2fa870b4dc1ce3fb6/libavplugin-ffmpeg-56.so"
                },
                "raw": {
                    "sha1": "0d36c971a9ad99fc2292092fdec3a4179b1021b9",
                    "size": 51920,
                    "url": "https://launcher.mojang.com/v1/objects/0d36c971a9ad99fc2292092fdec3a4179b1021b9/libavplugin-ffmpeg-56.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libavplugin-ffmpeg-57.so": {
            "downloads": {
                "lzma": {
                    "sha1": "087426bdbffebcfa372a438e863785f4ffbe9a6b",
                    "size": 15180,
                    "url": "https://launcher.mojang.com/v1/objects/087426bdbffebcfa372a438e863785f4ffbe9a6b/libavplugin-ffmpeg-57.so"
                },
                "raw": {
                    "sha1": "5e9c4eb4b49eb8e57c01003ec73a1eb8d6d8c462",
                    "size": 51784,
                    "url": "https://launcher.mojang.com/v1/objects/5e9c4eb4b49eb8e57c01003ec73a1eb8d6d8c462/libavplugin-ffmpeg-57.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libawt.so": {
            "downloads": {
                "lzma": {
                    "sha1": "018be58b205b73c842a55df811b70d0e8237216e",
                    "size": 195720,
                    "url": "https://launcher.mojang.com/v1/objects/018be58b205b73c842a55df811b70d0e8237216e/libawt.so"
                },
                "raw": {
                    "sha1": "02632cd326e3161c00a7e784599dd7b9ee053dce",
                    "size": 759184,
                    "url": "https://launcher.mojang.com/v1/objects/02632cd326e3161c00a7e784599dd7b9ee053dce/libawt.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libawt_headless.so": {
            "downloads": {
                "lzma": {
                    "sha1": "7ac2517cff75d4bbb0a0412a9b5f18c74ea188fa",
                    "size": 11211,
                    "url": "https://launcher.mojang.com/v1/objects/7ac2517cff75d4bbb0a0412a9b5f18c74ea188fa/libawt_headless.so"
                },
                "raw": {
                    "sha1": "862157ec957008d0911c5daedc004b3a202623a4",
                    "size": 39176,
                    "url": "https://launcher.mojang.com/v1/objects/862157ec957008d0911c5daedc004b3a202623a4/libawt_headless.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libawt_xawt.so": {
            "downloads": {
                "lzma": {
                    "sha1": "d536a96af27dfe35de6bb2c8759d51c488cdd8d4",
                    "size": 149598,
                    "url": "https://launcher.mojang.com/v1/objects/d536a96af27dfe35de6bb2c8759d51c488cdd8d4/libawt_xawt.so"
                },
                "raw": {
                    "sha1": "28232b3e01b6f11bfe098bfc6eafc3a513dcebf1",
                    "size": 470232,
                    "url": "https://launcher.mojang.com/v1/objects/28232b3e01b6f11bfe098bfc6eafc3a513dcebf1/libawt_xawt.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libbci.so": {
            "downloads": {
                "lzma": {
                    "sha1": "c36fad091d11e64c815d5ca17c0ef7a55b0776b1",
                    "size": 3509,
                    "url": "https://launcher.mojang.com/v1/objects/c36fad091d11e64c815d5ca17c0ef7a55b0776b1/libbci.so"
                },
                "raw": {
                    "sha1": "33824051db1ccb6332e22c2b63231055240d0af0",
                    "size": 12760,
                    "url": "https://launcher.mojang.com/v1/objects/33824051db1ccb6332e22c2b63231055240d0af0/libbci.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libdcpr.so": {
            "downloads": {
                "lzma": {
                    "sha1": "70c6b0933a37f2b1124d6e7c131039241fe796ee",
                    "size": 75969,
                    "url": "https://launcher.mojang.com/v1/objects/70c6b0933a37f2b1124d6e7c131039241fe796ee/libdcpr.so"
                },
                "raw": {
                    "sha1": "fa7001bc5d80579e2716590f3eee8027da0beae7",
                    "size": 204456,
                    "url": "https://launcher.mojang.com/v1/objects/fa7001bc5d80579e2716590f3eee8027da0beae7/libdcpr.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libdecora_sse.so": {
            "downloads": {
                "lzma": {
                    "sha1": "514acc017dfb6cefaf8cc6d18006ce55781cc9bc",
                    "size": 24397,
                    "url": "https://launcher.mojang.com/v1/objects/514acc017dfb6cefaf8cc6d18006ce55781cc9bc/libdecora_sse.so"
                },
                "raw": {
                    "sha1": "d0c84233504c916e548e29f513e25f6a7479abfc",
                    "size": 74912,
                    "url": "https://launcher.mojang.com/v1/objects/d0c84233504c916e548e29f513e25f6a7479abfc/libdecora_sse.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libdeploy.so": {
            "downloads": {
                "lzma": {
                    "sha1": "6cf31fd98301c749ac0d2c7825f6d925a4409760",
                    "size": 168999,
                    "url": "https://launcher.mojang.com/v1/objects/6cf31fd98301c749ac0d2c7825f6d925a4409760/libdeploy.so"
                },
                "raw": {
                    "sha1": "b3832e97ed8ca794884b56a591b83d02a2c0c06f",
                    "size": 642368,
                    "url": "https://launcher.mojang.com/v1/objects/b3832e97ed8ca794884b56a591b83d02a2c0c06f/libdeploy.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libdt_socket.so": {
            "downloads": {
                "lzma": {
                    "sha1": "4cc5c880dbb6fa180436d12d60f0abec8ebb59dc",
                    "size": 7784,
                    "url": "https://launcher.mojang.com/v1/objects/4cc5c880dbb6fa180436d12d60f0abec8ebb59dc/libdt_socket.so"
                },
                "raw": {
                    "sha1": "91ce96f252b8139fc12f0f224ed5b1a041767ab7",
                    "size": 24616,
                    "url": "https://launcher.mojang.com/v1/objects/91ce96f252b8139fc12f0f224ed5b1a041767ab7/libdt_socket.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libfontmanager.so": {
            "downloads": {
                "lzma": {
                    "sha1": "f94e5e94c71c603ff4d3cd1e7e3d9e181fcc145d",
                    "size": 146951,
                    "url": "https://launcher.mojang.com/v1/objects/f94e5e94c71c603ff4d3cd1e7e3d9e181fcc145d/libfontmanager.so"
                },
                "raw": {
                    "sha1": "2428e805f2c53d1283a033dfd11a86fbb7bd7159",
                    "size": 490672,
                    "url": "https://launcher.mojang.com/v1/objects/2428e805f2c53d1283a033dfd11a86fbb7bd7159/libfontmanager.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libfxplugins.so": {
            "downloads": {
                "lzma": {
                    "sha1": "a640143365d382a5ad743a784bc2f3706d9d6d67",
                    "size": 50048,
                    "url": "https://launcher.mojang.com/v1/objects/a640143365d382a5ad743a784bc2f3706d9d6d67/libfxplugins.so"
                },
                "raw": {
                    "sha1": "0fd4ac04a84c131f1aaee9e6b0898ff9ea69e3ee",
                    "size": 151448,
                    "url": "https://launcher.mojang.com/v1/objects/0fd4ac04a84c131f1aaee9e6b0898ff9ea69e3ee/libfxplugins.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libglass.so": {
            "downloads": {
                "lzma": {
                    "sha1": "f1ff517714fa5f2c861f33b32db823fe851541f1",
                    "size": 2856,
                    "url": "https://launcher.mojang.com/v1/objects/f1ff517714fa5f2c861f33b32db823fe851541f1/libglass.so"
                },
                "raw": {
                    "sha1": "e7f4fece30ac727be8148d33b8256abd3a41cef9",
                    "size": 13072,
                    "url": "https://launcher.mojang.com/v1/objects/e7f4fece30ac727be8148d33b8256abd3a41cef9/libglass.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libglassgtk2.so": {
            "downloads": {
                "lzma": {
                    "sha1": "15b90f7a2baacd15e80aa9785d87cf1e4258376d",
                    "size": 220476,
                    "url": "https://launcher.mojang.com/v1/objects/15b90f7a2baacd15e80aa9785d87cf1e4258376d/libglassgtk2.so"
                },
                "raw": {
                    "sha1": "e30a634c2ff2143bdee512360553d6e0304f33b2",
                    "size": 844984,
                    "url": "https://launcher.mojang.com/v1/objects/e30a634c2ff2143bdee512360553d6e0304f33b2/libglassgtk2.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libglassgtk3.so": {
            "downloads": {
                "lzma": {
                    "sha1": "868c231165f8c9043b7f0e7de208ec023f06a6e7",
                    "size": 220560,
                    "url": "https://launcher.mojang.com/v1/objects/868c231165f8c9043b7f0e7de208ec023f06a6e7/libglassgtk3.so"
                },
                "raw": {
                    "sha1": "762a11a2b376b7b5a2a7cad780715524fdd176d5",
                    "size": 845304,
                    "url": "https://launcher.mojang.com/v1/objects/762a11a2b376b7b5a2a7cad780715524fdd176d5/libglassgtk3.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libglib-lite.so": {
            "downloads": {
                "lzma": {
                    "sha1": "61b8871242febe1be262de167dc20ae94bf964b4",
                    "size": 457046,
                    "url": "https://launcher.mojang.com/v1/objects/61b8871242febe1be262de167dc20ae94bf964b4/libglib-lite.so"
                },
                "raw": {
                    "sha1": "63afa060fc3f120af76128e51d32603fc4336fa8",
                    "size": 1538352,
                    "url": "https://launcher.mojang.com/v1/objects/63afa060fc3f120af76128e51d32603fc4336fa8/libglib-lite.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libgstreamer-lite.so": {
            "downloads": {
                "lzma": {
                    "sha1": "2447dc368406ba1b989a29937d41924620e01988",
                    "size": 673056,
                    "url": "https://launcher.mojang.com/v1/objects/2447dc368406ba1b989a29937d41924620e01988/libgstreamer-lite.so"
                },
                "raw": {
                    "sha1": "5505e7ca592ac64371d3db8fe53bcb602e9723d3",
                    "size": 2263872,
                    "url": "https://launcher.mojang.com/v1/objects/5505e7ca592ac64371d3db8fe53bcb602e9723d3/libgstreamer-lite.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libhprof.so": {
            "downloads": {
                "lzma": {
                    "sha1": "94a5589c818db1fb1cf1881e24e217c309fce2e4",
                    "size": 64471,
                    "url": "https://launcher.mojang.com/v1/objects/94a5589c818db1fb1cf1881e24e217c309fce2e4/libhprof.so"
                },
                "raw": {
                    "sha1": "4bb9bdeef6133b6dd558d52d691b077c03e9b0ee",
                    "size": 175504,
                    "url": "https://launcher.mojang.com/v1/objects/4bb9bdeef6133b6dd558d52d691b077c03e9b0ee/libhprof.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libinstrument.so": {
            "downloads": {
                "lzma": {
                    "sha1": "84ffea356caf725b42c86a8ebc9587f477ddde29",
                    "size": 18603,
                    "url": "https://launcher.mojang.com/v1/objects/84ffea356caf725b42c86a8ebc9587f477ddde29/libinstrument.so"
                },
                "raw": {
                    "sha1": "cb8009769601e3fecd7ea2b36c344f737b1a9da7",
                    "size": 51560,
                    "url": "https://launcher.mojang.com/v1/objects/cb8009769601e3fecd7ea2b36c344f737b1a9da7/libinstrument.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libj2gss.so": {
            "downloads": {
                "lzma": {
                    "sha1": "4b2aa699506b126098b585a9617ce1c05707fa29",
                    "size": 14132,
                    "url": "https://launcher.mojang.com/v1/objects/4b2aa699506b126098b585a9617ce1c05707fa29/libj2gss.so"
                },
                "raw": {
                    "sha1": "cbce4a302b255d4d1924ef7606f038af766c5e86",
                    "size": 47688,
                    "url": "https://launcher.mojang.com/v1/objects/cbce4a302b255d4d1924ef7606f038af766c5e86/libj2gss.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libj2pcsc.so": {
            "downloads": {
                "lzma": {
                    "sha1": "2361d3b2e3da48593c391b29b0d2b5409e4c55e5",
                    "size": 5074,
                    "url": "https://launcher.mojang.com/v1/objects/2361d3b2e3da48593c391b29b0d2b5409e4c55e5/libj2pcsc.so"
                },
                "raw": {
                    "sha1": "1274178492e7a3e997e12f67794616f7c3d8d0b9",
                    "size": 18296,
                    "url": "https://launcher.mojang.com/v1/objects/1274178492e7a3e997e12f67794616f7c3d8d0b9/libj2pcsc.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libj2pkcs11.so": {
            "downloads": {
                "lzma": {
                    "sha1": "ef927e2790ba05931d0f0bdd63da3d275a834946",
                    "size": 21573,
                    "url": "https://launcher.mojang.com/v1/objects/ef927e2790ba05931d0f0bdd63da3d275a834946/libj2pkcs11.so"
                },
                "raw": {
                    "sha1": "bd4f2af9bfdc6168633d1920c1a1415de06bb45a",
                    "size": 79472,
                    "url": "https://launcher.mojang.com/v1/objects/bd4f2af9bfdc6168633d1920c1a1415de06bb45a/libj2pkcs11.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjaas_unix.so": {
            "downloads": {
                "lzma": {
                    "sha1": "7f7e843544ee1eb1454a5826bdd4218685b79430",
                    "size": 2404,
                    "url": "https://launcher.mojang.com/v1/objects/7f7e843544ee1eb1454a5826bdd4218685b79430/libjaas_unix.so"
                },
                "raw": {
                    "sha1": "4c517925c7d464a5b719898eb0bea1b04df31f1f",
                    "size": 8192,
                    "url": "https://launcher.mojang.com/v1/objects/4c517925c7d464a5b719898eb0bea1b04df31f1f/libjaas_unix.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjava.so": {
            "downloads": {
                "lzma": {
                    "sha1": "5eee7a42600a44a8bb8d6d7f510fd96a29637ac0",
                    "size": 63113,
                    "url": "https://launcher.mojang.com/v1/objects/5eee7a42600a44a8bb8d6d7f510fd96a29637ac0/libjava.so"
                },
                "raw": {
                    "sha1": "e280aeddf3fc0ec664aef7efc0e0e197a54aaf02",
                    "size": 227672,
                    "url": "https://launcher.mojang.com/v1/objects/e280aeddf3fc0ec664aef7efc0e0e197a54aaf02/libjava.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjava_crw_demo.so": {
            "downloads": {
                "lzma": {
                    "sha1": "b197cf23ae3556eb0b45c663f0a8cb62408b961e",
                    "size": 10412,
                    "url": "https://launcher.mojang.com/v1/objects/b197cf23ae3556eb0b45c663f0a8cb62408b961e/libjava_crw_demo.so"
                },
                "raw": {
                    "sha1": "18f20f906977c90d0090b41dbda8dd5cfead5a4c",
                    "size": 26144,
                    "url": "https://launcher.mojang.com/v1/objects/18f20f906977c90d0090b41dbda8dd5cfead5a4c/libjava_crw_demo.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjavafx_font.so": {
            "downloads": {
                "lzma": {
                    "sha1": "ffbba0e5022f829412b86063d8a90f95f16709b1",
                    "size": 5608,
                    "url": "https://launcher.mojang.com/v1/objects/ffbba0e5022f829412b86063d8a90f95f16709b1/libjavafx_font.so"
                },
                "raw": {
                    "sha1": "8634a0aca612fc40420a4a7cc8af4cc46cfc6725",
                    "size": 17104,
                    "url": "https://launcher.mojang.com/v1/objects/8634a0aca612fc40420a4a7cc8af4cc46cfc6725/libjavafx_font.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjavafx_font_freetype.so": {
            "downloads": {
                "lzma": {
                    "sha1": "310271eda8a2ac264ffc3640a9d847b49438d0bd",
                    "size": 6942,
                    "url": "https://launcher.mojang.com/v1/objects/310271eda8a2ac264ffc3640a9d847b49438d0bd/libjavafx_font_freetype.so"
                },
                "raw": {
                    "sha1": "3e7572d047c12ba2bc43acec7f98a67c20af8042",
                    "size": 27616,
                    "url": "https://launcher.mojang.com/v1/objects/3e7572d047c12ba2bc43acec7f98a67c20af8042/libjavafx_font_freetype.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjavafx_font_pango.so": {
            "downloads": {
                "lzma": {
                    "sha1": "a7bcf0669e70b0f43099a99c81e6b6440cb40ac0",
                    "size": 5820,
                    "url": "https://launcher.mojang.com/v1/objects/a7bcf0669e70b0f43099a99c81e6b6440cb40ac0/libjavafx_font_pango.so"
                },
                "raw": {
                    "sha1": "f0b775cc9a514c7ee8b4d6fb300653ce548caf10",
                    "size": 25560,
                    "url": "https://launcher.mojang.com/v1/objects/f0b775cc9a514c7ee8b4d6fb300653ce548caf10/libjavafx_font_pango.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjavafx_font_t2k.so": {
            "downloads": {
                "lzma": {
                    "sha1": "551c29dc7c7fc83223aa36a6187f7e0c5d650538",
                    "size": 431450,
                    "url": "https://launcher.mojang.com/v1/objects/551c29dc7c7fc83223aa36a6187f7e0c5d650538/libjavafx_font_t2k.so"
                },
                "raw": {
                    "sha1": "91e5813057c3b852d411540160f8ad05fb9f1ed3",
                    "size": 1486128,
                    "url": "https://launcher.mojang.com/v1/objects/91e5813057c3b852d411540160f8ad05fb9f1ed3/libjavafx_font_t2k.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjavafx_iio.so": {
            "downloads": {
                "lzma": {
                    "sha1": "c832998fd5e06ed6dcd6428816194c350785420c",
                    "size": 101479,
                    "url": "https://launcher.mojang.com/v1/objects/c832998fd5e06ed6dcd6428816194c350785420c/libjavafx_iio.so"
                },
                "raw": {
                    "sha1": "dcdf68cb25677b76c1cf0bb94294e6e9880a6678",
                    "size": 256336,
                    "url": "https://launcher.mojang.com/v1/objects/dcdf68cb25677b76c1cf0bb94294e6e9880a6678/libjavafx_iio.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjawt.so": {
            "downloads": {
                "lzma": {
                    "sha1": "c1ced6aad5c69ff444dc67d0fd7e333558953831",
                    "size": 1872,
                    "url": "https://launcher.mojang.com/v1/objects/c1ced6aad5c69ff444dc67d0fd7e333558953831/libjawt.so"
                },
                "raw": {
                    "sha1": "c5032f2c6fa40bea24e56605cf76b26a27e87b67",
                    "size": 8048,
                    "url": "https://launcher.mojang.com/v1/objects/c5032f2c6fa40bea24e56605cf76b26a27e87b67/libjawt.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjdwp.so": {
            "downloads": {
                "lzma": {
                    "sha1": "c1aabbb3f5a624b9ad10ed871a1d83510a99b646",
                    "size": 94884,
                    "url": "https://launcher.mojang.com/v1/objects/c1aabbb3f5a624b9ad10ed871a1d83510a99b646/libjdwp.so"
                },
                "raw": {
                    "sha1": "a043e97be47937f6f552e94cf79c76c1c57f9594",
                    "size": 272248,
                    "url": "https://launcher.mojang.com/v1/objects/a043e97be47937f6f552e94cf79c76c1c57f9594/libjdwp.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjfr.so": {
            "downloads": {
                "lzma": {
                    "sha1": "11b8e6bfffdccbacbf9dd29dea4b90b753f3c1b7",
                    "size": 8780,
                    "url": "https://launcher.mojang.com/v1/objects/11b8e6bfffdccbacbf9dd29dea4b90b753f3c1b7/libjfr.so"
                },
                "raw": {
                    "sha1": "312392dd186b11c418183e818f1928e8685a07e5",
                    "size": 28384,
                    "url": "https://launcher.mojang.com/v1/objects/312392dd186b11c418183e818f1928e8685a07e5/libjfr.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjfxmedia.so": {
            "downloads": {
                "lzma": {
                    "sha1": "a4e7a126eb648ce6e5e6dc151831da37d8334139",
                    "size": 391897,
                    "url": "https://launcher.mojang.com/v1/objects/a4e7a126eb648ce6e5e6dc151831da37d8334139/libjfxmedia.so"
                },
                "raw": {
                    "sha1": "5fa54944327a6012c3d34cb5c1c4432762178dc8",
                    "size": 1636376,
                    "url": "https://launcher.mojang.com/v1/objects/5fa54944327a6012c3d34cb5c1c4432762178dc8/libjfxmedia.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjfxwebkit.so": {
            "downloads": {
                "lzma": {
                    "sha1": "b274debd222cdcc2ee84160ebb95144b3880bc97",
                    "size": 20492825,
                    "url": "https://launcher.mojang.com/v1/objects/b274debd222cdcc2ee84160ebb95144b3880bc97/libjfxwebkit.so"
                },
                "raw": {
                    "sha1": "ecee564c3b2f645131b35bb3004abd4caeabd291",
                    "size": 91014584,
                    "url": "https://launcher.mojang.com/v1/objects/ecee564c3b2f645131b35bb3004abd4caeabd291/libjfxwebkit.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjpeg.so": {
            "downloads": {
                "lzma": {
                    "sha1": "9ad55e370c5eaaa73c3158339db3c368b1aaf0cb",
                    "size": 113072,
                    "url": "https://launcher.mojang.com/v1/objects/9ad55e370c5eaaa73c3158339db3c368b1aaf0cb/libjpeg.so"
                },
                "raw": {
                    "sha1": "651e6d53ae67db1f0efbf7f104447a9b49b7e333",
                    "size": 292520,
                    "url": "https://launcher.mojang.com/v1/objects/651e6d53ae67db1f0efbf7f104447a9b49b7e333/libjpeg.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjsdt.so": {
            "downloads": {
                "lzma": {
                    "sha1": "04b6d1361a34c496b5f652b2477784d69b8b6baf",
                    "size": 3964,
                    "url": "https://launcher.mojang.com/v1/objects/04b6d1361a34c496b5f652b2477784d69b8b6baf/libjsdt.so"
                },
                "raw": {
                    "sha1": "82b48a82bf6183d34cf00a0f81661b45c616f31b",
                    "size": 12904,
                    "url": "https://launcher.mojang.com/v1/objects/82b48a82bf6183d34cf00a0f81661b45c616f31b/libjsdt.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjsig.so": {
            "downloads": {
                "lzma": {
                    "sha1": "37d3b89abde397216cc4ecb1339d8543d99b8428",
                    "size": 3536,
                    "url": "https://launcher.mojang.com/v1/objects/37d3b89abde397216cc4ecb1339d8543d99b8428/libjsig.so"
                },
                "raw": {
                    "sha1": "42e52ba1bcbe0362ab24bcf65c93797354db6fb9",
                    "size": 13336,
                    "url": "https://launcher.mojang.com/v1/objects/42e52ba1bcbe0362ab24bcf65c93797354db6fb9/libjsig.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjsound.so": {
            "downloads": {
                "lzma": {
                    "sha1": "7e3c565d74d8ffae716f32b05544fa4a6f108adc",
                    "size": 2002,
                    "url": "https://launcher.mojang.com/v1/objects/7e3c565d74d8ffae716f32b05544fa4a6f108adc/libjsound.so"
                },
                "raw": {
                    "sha1": "0c0fc63b92d7b83c9960fa80d45c80553ea20254",
                    "size": 8232,
                    "url": "https://launcher.mojang.com/v1/objects/0c0fc63b92d7b83c9960fa80d45c80553ea20254/libjsound.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libjsoundalsa.so": {
            "downloads": {
                "lzma": {
                    "sha1": "b06c51858a25ff776519495f1b9b3d9f604b089f",
                    "size": 23097,
                    "url": "https://launcher.mojang.com/v1/objects/b06c51858a25ff776519495f1b9b3d9f604b089f/libjsoundalsa.so"
                },
                "raw": {
                    "sha1": "281d37f0326d4a12dc7ea316ead09c198ff7bdf7",
                    "size": 83256,
                    "url": "https://launcher.mojang.com/v1/objects/281d37f0326d4a12dc7ea316ead09c198ff7bdf7/libjsoundalsa.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/liblcms.so": {
            "downloads": {
                "lzma": {
                    "sha1": "7a239baba2086cae49114b382b74b971da02f08e",
                    "size": 176175,
                    "url": "https://launcher.mojang.com/v1/objects/7a239baba2086cae49114b382b74b971da02f08e/liblcms.so"
                },
                "raw": {
                    "sha1": "c8895cc3c3d023d9e059225969ab67954772c0a1",
                    "size": 526872,
                    "url": "https://launcher.mojang.com/v1/objects/c8895cc3c3d023d9e059225969ab67954772c0a1/liblcms.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libmanagement.so": {
            "downloads": {
                "lzma": {
                    "sha1": "aed3fdbcefd1716abfc6a306687c8b741cbb318e",
                    "size": 12838,
                    "url": "https://launcher.mojang.com/v1/objects/aed3fdbcefd1716abfc6a306687c8b741cbb318e/libmanagement.so"
                },
                "raw": {
                    "sha1": "eba35f61e0d50e30874b7c7b335edf2d52662423",
                    "size": 51808,
                    "url": "https://launcher.mojang.com/v1/objects/eba35f61e0d50e30874b7c7b335edf2d52662423/libmanagement.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libmlib_image.so": {
            "downloads": {
                "lzma": {
                    "sha1": "1bb181f079492d55c7a458e96488cd17fe0a7b86",
                    "size": 310272,
                    "url": "https://launcher.mojang.com/v1/objects/1bb181f079492d55c7a458e96488cd17fe0a7b86/libmlib_image.so"
                },
                "raw": {
                    "sha1": "c973c450d33873675945d4694be484e3427f58f1",
                    "size": 1048136,
                    "url": "https://launcher.mojang.com/v1/objects/c973c450d33873675945d4694be484e3427f58f1/libmlib_image.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libnet.so": {
            "downloads": {
                "lzma": {
                    "sha1": "9dd79703b6deb86e0321afe01c6ac508263c8312",
                    "size": 38123,
                    "url": "https://launcher.mojang.com/v1/objects/9dd79703b6deb86e0321afe01c6ac508263c8312/libnet.so"
                },
                "raw": {
                    "sha1": "b3a17b7d53fcdf1e689e1ec29ce851eee6022ead",
                    "size": 116920,
                    "url": "https://launcher.mojang.com/v1/objects/b3a17b7d53fcdf1e689e1ec29ce851eee6022ead/libnet.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libnio.so": {
            "downloads": {
                "lzma": {
                    "sha1": "5697c89d5d5d9b74f2e1555fcbba79dd4049e287",
                    "size": 24445,
                    "url": "https://launcher.mojang.com/v1/objects/5697c89d5d5d9b74f2e1555fcbba79dd4049e287/libnio.so"
                },
                "raw": {
                    "sha1": "573bf8f64dbcc397f8abd3e1da28f90ab0679f5b",
                    "size": 93872,
                    "url": "https://launcher.mojang.com/v1/objects/573bf8f64dbcc397f8abd3e1da28f90ab0679f5b/libnio.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libnpjp2.so": {
            "downloads": {
                "lzma": {
                    "sha1": "6fe53b5951ff740e7f2ef7ffe5975af26da06718",
                    "size": 57892,
                    "url": "https://launcher.mojang.com/v1/objects/6fe53b5951ff740e7f2ef7ffe5975af26da06718/libnpjp2.so"
                },
                "raw": {
                    "sha1": "2bb13c53a4280379253475e51216b97eed1d4ce3",
                    "size": 216592,
                    "url": "https://launcher.mojang.com/v1/objects/2bb13c53a4280379253475e51216b97eed1d4ce3/libnpjp2.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libnpt.so": {
            "downloads": {
                "lzma": {
                    "sha1": "1b170b09a32b1b8b6624fa5d1f94ec60b2bf3876",
                    "size": 5070,
                    "url": "https://launcher.mojang.com/v1/objects/1b170b09a32b1b8b6624fa5d1f94ec60b2bf3876/libnpt.so"
                },
                "raw": {
                    "sha1": "6b1ff6b9b4624f3cc7801f221c82b8046fb76364",
                    "size": 17504,
                    "url": "https://launcher.mojang.com/v1/objects/6b1ff6b9b4624f3cc7801f221c82b8046fb76364/libnpt.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libprism_common.so": {
            "downloads": {
                "lzma": {
                    "sha1": "f4aca04c90bc7505851c074a08b2c31cae1f94fa",
                    "size": 23315,
                    "url": "https://launcher.mojang.com/v1/objects/f4aca04c90bc7505851c074a08b2c31cae1f94fa/libprism_common.so"
                },
                "raw": {
                    "sha1": "b00866b6ed8646a29a334d46e297267552f27de8",
                    "size": 59008,
                    "url": "https://launcher.mojang.com/v1/objects/b00866b6ed8646a29a334d46e297267552f27de8/libprism_common.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libprism_es2.so": {
            "downloads": {
                "lzma": {
                    "sha1": "7ff4173c338c7a6f370f231670055737e032da3e",
                    "size": 18416,
                    "url": "https://launcher.mojang.com/v1/objects/7ff4173c338c7a6f370f231670055737e032da3e/libprism_es2.so"
                },
                "raw": {
                    "sha1": "1390a1dc14345e5a948148e59195d62f3a83863f",
                    "size": 63808,
                    "url": "https://launcher.mojang.com/v1/objects/1390a1dc14345e5a948148e59195d62f3a83863f/libprism_es2.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libprism_sw.so": {
            "downloads": {
                "lzma": {
                    "sha1": "6728e8bf7b214067d715be6fe0325910d63c2468",
                    "size": 29457,
                    "url": "https://launcher.mojang.com/v1/objects/6728e8bf7b214067d715be6fe0325910d63c2468/libprism_sw.so"
                },
                "raw": {
                    "sha1": "7a6c34cb2bbcde411778d1b3f8677c39e32c3ac4",
                    "size": 71608,
                    "url": "https://launcher.mojang.com/v1/objects/7a6c34cb2bbcde411778d1b3f8677c39e32c3ac4/libprism_sw.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libresource.so": {
            "downloads": {
                "lzma": {
                    "sha1": "1e35e63f1e74915fba620f1febf420b919d49bc5",
                    "size": 2633,
                    "url": "https://launcher.mojang.com/v1/objects/1e35e63f1e74915fba620f1febf420b919d49bc5/libresource.so"
                },
                "raw": {
                    "sha1": "57490353ad0d83ab1930355213dea269795434fe",
                    "size": 13456,
                    "url": "https://launcher.mojang.com/v1/objects/57490353ad0d83ab1930355213dea269795434fe/libresource.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libsctp.so": {
            "downloads": {
                "lzma": {
                    "sha1": "4340132ed250d7849a016e071be773eaedd33aa8",
                    "size": 9332,
                    "url": "https://launcher.mojang.com/v1/objects/4340132ed250d7849a016e071be773eaedd33aa8/libsctp.so"
                },
                "raw": {
                    "sha1": "4a80e743750f127c0d5a359f5cd60b97e7ee12ae",
                    "size": 29552,
                    "url": "https://launcher.mojang.com/v1/objects/4a80e743750f127c0d5a359f5cd60b97e7ee12ae/libsctp.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libsplashscreen.so": {
            "downloads": {
                "lzma": {
                    "sha1": "b226c8dbd73a548fc2b042ee6db6cc80e727597c",
                    "size": 190305,
                    "url": "https://launcher.mojang.com/v1/objects/b226c8dbd73a548fc2b042ee6db6cc80e727597c/libsplashscreen.so"
                },
                "raw": {
                    "sha1": "87d6a491f5ba7e6c4d972264a0c9063afea567a2",
                    "size": 441376,
                    "url": "https://launcher.mojang.com/v1/objects/87d6a491f5ba7e6c4d972264a0c9063afea567a2/libsplashscreen.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libsunec.so": {
            "downloads": {
                "lzma": {
                    "sha1": "6ebba98fab1e3d872d1363235b76497f6f9babdc",
                    "size": 88829,
                    "url": "https://launcher.mojang.com/v1/objects/6ebba98fab1e3d872d1363235b76497f6f9babdc/libsunec.so"
                },
                "raw": {
                    "sha1": "3b262a0a530f6e4e539aed2cd27b4de1d0ed8859",
                    "size": 283368,
                    "url": "https://launcher.mojang.com/v1/objects/3b262a0a530f6e4e539aed2cd27b4de1d0ed8859/libsunec.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libt2k.so": {
            "downloads": {
                "lzma": {
                    "sha1": "602cb812ef0b350ccf56ce209a260ddbe3743d92",
                    "size": 190720,
                    "url": "https://launcher.mojang.com/v1/objects/602cb812ef0b350ccf56ce209a260ddbe3743d92/libt2k.so"
                },
                "raw": {
                    "sha1": "b072c56df997f61e15e6b5a43b8907b0d25c2043",
                    "size": 504840,
                    "url": "https://launcher.mojang.com/v1/objects/b072c56df997f61e15e6b5a43b8907b0d25c2043/libt2k.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libunpack.so": {
            "downloads": {
                "lzma": {
                    "sha1": "7107b615e941074f0b14c31c88fb67200aacd37f",
                    "size": 70308,
                    "url": "https://launcher.mojang.com/v1/objects/7107b615e941074f0b14c31c88fb67200aacd37f/libunpack.so"
                },
                "raw": {
                    "sha1": "b05ff862ed87928ed91e80e5604673c5ea710a53",
                    "size": 197712,
                    "url": "https://launcher.mojang.com/v1/objects/b05ff862ed87928ed91e80e5604673c5ea710a53/libunpack.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libverify.so": {
            "downloads": {
                "lzma": {
                    "sha1": "ecd98efb8c7da441a8c3580e8f5598f3cb4165b1",
                    "size": 21885,
                    "url": "https://launcher.mojang.com/v1/objects/ecd98efb8c7da441a8c3580e8f5598f3cb4165b1/libverify.so"
                },
                "raw": {
                    "sha1": "e2c8d92531c45ab9be69ffb72c87fa12e9e59827",
                    "size": 66112,
                    "url": "https://launcher.mojang.com/v1/objects/e2c8d92531c45ab9be69ffb72c87fa12e9e59827/libverify.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/libzip.so": {
            "downloads": {
                "lzma": {
                    "sha1": "7c562342e3f7b138dc978495447e3e6a96c2cf45",
                    "size": 54876,
                    "url": "https://launcher.mojang.com/v1/objects/7c562342e3f7b138dc978495447e3e6a96c2cf45/libzip.so"
                },
                "raw": {
                    "sha1": "5f4bf35a5c3e8f8c650e891d1031589b8ab6d77f",
                    "size": 127016,
                    "url": "https://launcher.mojang.com/v1/objects/5f4bf35a5c3e8f8c650e891d1031589b8ab6d77f/libzip.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/amd64/server": {
            "type": "directory"
        },
        "lib/amd64/server/Xusage.txt": {
            "downloads": {
                "lzma": {
                    "sha1": "acb2da24a4c765887df83985e4c26d6be302a0a3",
                    "size": 629,
                    "url": "https://launcher.mojang.com/v1/objects/acb2da24a4c765887df83985e4c26d6be302a0a3/Xusage.txt"
                },
                "raw": {
                    "sha1": "6983727eafe140f9dd793c78aa6f3e007438243a",
                    "size": 1423,
                    "url": "https://launcher.mojang.com/v1/objects/6983727eafe140f9dd793c78aa6f3e007438243a/Xusage.txt"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/amd64/server/libjsig.so": {
            "target": "../libjsig.so",
            "type": "link"
        },
        "lib/amd64/server/libjvm.so": {
            "downloads": {
                "lzma": {
                    "sha1": "d5c6f3338aaa6712f79d680ac8c3e31beebaa886",
                    "size": 4154311,
                    "url": "https://launcher.mojang.com/v1/objects/d5c6f3338aaa6712f79d680ac8c3e31beebaa886/libjvm.so"
                },
                "raw": {
                    "sha1": "23a98e1eb505cc3fb91bc0cb2adb71ab9270e9ca",
                    "size": 17045016,
                    "url": "https://launcher.mojang.com/v1/objects/23a98e1eb505cc3fb91bc0cb2adb71ab9270e9ca/libjvm.so"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/applet": {
            "type": "directory"
        },
        "lib/calendars.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "4a757c23f2942bd802a4f80235131146d9267750",
                    "size": 558,
                    "url": "https://launcher.mojang.com/v1/objects/4a757c23f2942bd802a4f80235131146d9267750/calendars.properties"
                },
                "raw": {
                    "sha1": "42ebb0988124433b8f2a6e5d9a74ed41240bcfc6",
                    "size": 1378,
                    "url": "https://launcher.mojang.com/v1/objects/42ebb0988124433b8f2a6e5d9a74ed41240bcfc6/calendars.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/charsets.jar": {
            "downloads": {
                "lzma": {
                    "sha1": "2bf44143b2ad9d7d55045a4de4a562330c194dc0",
                    "size": 412367,
                    "url": "https://launcher.mojang.com/v1/objects/2bf44143b2ad9d7d55045a4de4a562330c194dc0/charsets.jar"
                },
                "raw": {
                    "sha1": "d73ab9f8de255a7e112ddd13622bf7f6b18c8447",
                    "size": 3135615,
                    "url": "https://launcher.mojang.com/v1/objects/d73ab9f8de255a7e112ddd13622bf7f6b18c8447/charsets.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/classlist": {
            "downloads": {
                "lzma": {
                    "sha1": "14e7c73d21b8513b0aff8d86e5cb34c52021fbca",
                    "size": 15024,
                    "url": "https://launcher.mojang.com/v1/objects/14e7c73d21b8513b0aff8d86e5cb34c52021fbca/classlist"
                },
                "raw": {
                    "sha1": "9c0404b63c87e2fed35e3a6cd137d6cf876c42bd",
                    "size": 84311,
                    "url": "https://launcher.mojang.com/v1/objects/9c0404b63c87e2fed35e3a6cd137d6cf876c42bd/classlist"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/cmm": {
            "type": "directory"
        },
        "lib/cmm/CIEXYZ.pf": {
            "downloads": {
                "lzma": {
                    "sha1": "fcc5ca2fd3f45cac3434b480fa3ce00007e96529",
                    "size": 8964,
                    "url": "https://launcher.mojang.com/v1/objects/fcc5ca2fd3f45cac3434b480fa3ce00007e96529/CIEXYZ.pf"
                },
                "raw": {
                    "sha1": "b7779924c70554647b87c2a86159ca7781e929f8",
                    "size": 51236,
                    "url": "https://launcher.mojang.com/v1/objects/b7779924c70554647b87c2a86159ca7781e929f8/CIEXYZ.pf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/cmm/GRAY.pf": {
            "downloads": {
                "lzma": {
                    "sha1": "5388ccfe67d3131d6d02143d8e8895003ab14ff6",
                    "size": 299,
                    "url": "https://launcher.mojang.com/v1/objects/5388ccfe67d3131d6d02143d8e8895003ab14ff6/GRAY.pf"
                },
                "raw": {
                    "sha1": "27f93961d66b8230d0cdb8b166bc8b4153d5bc2d",
                    "size": 632,
                    "url": "https://launcher.mojang.com/v1/objects/27f93961d66b8230d0cdb8b166bc8b4153d5bc2d/GRAY.pf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/cmm/LINEAR_RGB.pf": {
            "downloads": {
                "lzma": {
                    "sha1": "2bd90f09c8deb64b1729d6b8173c78f9e9cab27b",
                    "size": 678,
                    "url": "https://launcher.mojang.com/v1/objects/2bd90f09c8deb64b1729d6b8173c78f9e9cab27b/LINEAR_RGB.pf"
                },
                "raw": {
                    "sha1": "7913274c2f73bafcf888f09ff60990b100214ede",
                    "size": 1044,
                    "url": "https://launcher.mojang.com/v1/objects/7913274c2f73bafcf888f09ff60990b100214ede/LINEAR_RGB.pf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/cmm/PYCC.pf": {
            "downloads": {
                "lzma": {
                    "sha1": "dbb2197ecff3fcdd142e9006490c8cb5c8d19af8",
                    "size": 171521,
                    "url": "https://launcher.mojang.com/v1/objects/dbb2197ecff3fcdd142e9006490c8cb5c8d19af8/PYCC.pf"
                },
                "raw": {
                    "sha1": "4f7eed05b8f0eea7bcdc8f8f7aaeb1925ce7b144",
                    "size": 274474,
                    "url": "https://launcher.mojang.com/v1/objects/4f7eed05b8f0eea7bcdc8f8f7aaeb1925ce7b144/PYCC.pf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/cmm/sRGB.pf": {
            "downloads": {
                "raw": {
                    "sha1": "9eaea0911d89d63e39e95f2e2116eaec7e0bb91e",
                    "size": 3144,
                    "url": "https://launcher.mojang.com/v1/objects/9eaea0911d89d63e39e95f2e2116eaec7e0bb91e/sRGB.pf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/content-types.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "43a23d9a6c637c128b14cfa3feced93cbcf85b1a",
                    "size": 1617,
                    "url": "https://launcher.mojang.com/v1/objects/43a23d9a6c637c128b14cfa3feced93cbcf85b1a/content-types.properties"
                },
                "raw": {
                    "sha1": "b21698017c4a2866b5fabe59681b7592e72c83b1",
                    "size": 5916,
                    "url": "https://launcher.mojang.com/v1/objects/b21698017c4a2866b5fabe59681b7592e72c83b1/content-types.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/currency.data": {
            "downloads": {
                "lzma": {
                    "sha1": "451b3f166ea34ef2aefbb01606ea5adcc0d65b42",
                    "size": 1184,
                    "url": "https://launcher.mojang.com/v1/objects/451b3f166ea34ef2aefbb01606ea5adcc0d65b42/currency.data"
                },
                "raw": {
                    "sha1": "bf524381a7a9b9d5bbab48069c583d2936e367a1",
                    "size": 4134,
                    "url": "https://launcher.mojang.com/v1/objects/bf524381a7a9b9d5bbab48069c583d2936e367a1/currency.data"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy": {
            "type": "directory"
        },
        "lib/deploy.jar": {
            "downloads": {
                "raw": {
                    "sha1": "fbe1de8fcd9a3d482c59414dce9311e4194766c9",
                    "size": 2255881,
                    "url": "https://launcher.mojang.com/v1/objects/fbe1de8fcd9a3d482c59414dce9311e4194766c9/deploy.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/MixedCodeMainDialog.ui": {
            "downloads": {
                "lzma": {
                    "sha1": "7d812964343d1e978442f5c847c709784fc18fc0",
                    "size": 683,
                    "url": "https://launcher.mojang.com/v1/objects/7d812964343d1e978442f5c847c709784fc18fc0/MixedCodeMainDialog.ui"
                },
                "raw": {
                    "sha1": "c9b1af1c229e54b2d8a3d642d4f0bb31dc15be79",
                    "size": 4507,
                    "url": "https://launcher.mojang.com/v1/objects/c9b1af1c229e54b2d8a3d642d4f0bb31dc15be79/MixedCodeMainDialog.ui"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/MixedCodeMainDialogJs.ui": {
            "downloads": {
                "lzma": {
                    "sha1": "54fb58dbcc59e35e0ae896d0e266ae0c5bcf85c2",
                    "size": 792,
                    "url": "https://launcher.mojang.com/v1/objects/54fb58dbcc59e35e0ae896d0e266ae0c5bcf85c2/MixedCodeMainDialogJs.ui"
                },
                "raw": {
                    "sha1": "ad6337fb6d46750e14c12b439a5856f4b6864d0d",
                    "size": 6110,
                    "url": "https://launcher.mojang.com/v1/objects/ad6337fb6d46750e14c12b439a5856f4b6864d0d/MixedCodeMainDialogJs.ui"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/cautionshield.icns": {
            "downloads": {
                "lzma": {
                    "sha1": "7cea751dc168605054ec38ce8bfa71812be405c1",
                    "size": 2333,
                    "url": "https://launcher.mojang.com/v1/objects/7cea751dc168605054ec38ce8bfa71812be405c1/cautionshield.icns"
                },
                "raw": {
                    "sha1": "1de7ed5d5fc75aa1bcede088c655bee3bde64c38",
                    "size": 3588,
                    "url": "https://launcher.mojang.com/v1/objects/1de7ed5d5fc75aa1bcede088c655bee3bde64c38/cautionshield.icns"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/ffjcext.zip": {
            "downloads": {
                "lzma": {
                    "sha1": "80bcb9b3794f69d87dba93e90230f288e651e798",
                    "size": 1809,
                    "url": "https://launcher.mojang.com/v1/objects/80bcb9b3794f69d87dba93e90230f288e651e798/ffjcext.zip"
                },
                "raw": {
                    "sha1": "76d051ca7d3666ff25ea8eb9957a05574a45287f",
                    "size": 13454,
                    "url": "https://launcher.mojang.com/v1/objects/76d051ca7d3666ff25ea8eb9957a05574a45287f/ffjcext.zip"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/java-icon.ico": {
            "downloads": {
                "lzma": {
                    "sha1": "2a24f0207d7ab5976a8b0d92b4b381d49e895c9d",
                    "size": 8468,
                    "url": "https://launcher.mojang.com/v1/objects/2a24f0207d7ab5976a8b0d92b4b381d49e895c9d/java-icon.ico"
                },
                "raw": {
                    "sha1": "2997ceb26ff49a7d7c5e7a2405b5fb50b62c7914",
                    "size": 29926,
                    "url": "https://launcher.mojang.com/v1/objects/2997ceb26ff49a7d7c5e7a2405b5fb50b62c7914/java-icon.ico"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "c1e16f80dc0b1f1a591cecf3cbab4ba5e47492f4",
                    "size": 1225,
                    "url": "https://launcher.mojang.com/v1/objects/c1e16f80dc0b1f1a591cecf3cbab4ba5e47492f4/messages.properties"
                },
                "raw": {
                    "sha1": "dc52841c708e3c1eb2a044088a43396d1291bb5e",
                    "size": 2860,
                    "url": "https://launcher.mojang.com/v1/objects/dc52841c708e3c1eb2a044088a43396d1291bb5e/messages.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_de.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "42b42e6e1d2cb2d781f2226bde612ce519b29bc8",
                    "size": 1394,
                    "url": "https://launcher.mojang.com/v1/objects/42b42e6e1d2cb2d781f2226bde612ce519b29bc8/messages_de.properties"
                },
                "raw": {
                    "sha1": "d989fe1b8f7904888d5102294ebefd28d932ecdb",
                    "size": 3306,
                    "url": "https://launcher.mojang.com/v1/objects/d989fe1b8f7904888d5102294ebefd28d932ecdb/messages_de.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_es.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "c4a653e9802ca982e892b45d88c1e259c09e8c8e",
                    "size": 1404,
                    "url": "https://launcher.mojang.com/v1/objects/c4a653e9802ca982e892b45d88c1e259c09e8c8e/messages_es.properties"
                },
                "raw": {
                    "sha1": "1b0334b79db481c3a59be6915d5118d760c97baa",
                    "size": 3600,
                    "url": "https://launcher.mojang.com/v1/objects/1b0334b79db481c3a59be6915d5118d760c97baa/messages_es.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_fr.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "2d8dee07e3f5aab7318a22e169810b216ac44f97",
                    "size": 1401,
                    "url": "https://launcher.mojang.com/v1/objects/2d8dee07e3f5aab7318a22e169810b216ac44f97/messages_fr.properties"
                },
                "raw": {
                    "sha1": "69bd2d03c2064f8679de5b4e430ea61b567c69c5",
                    "size": 3409,
                    "url": "https://launcher.mojang.com/v1/objects/69bd2d03c2064f8679de5b4e430ea61b567c69c5/messages_fr.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_it.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "7c28cdd8d9e34355ba0fc03004c4f64749cae57e",
                    "size": 1375,
                    "url": "https://launcher.mojang.com/v1/objects/7c28cdd8d9e34355ba0fc03004c4f64749cae57e/messages_it.properties"
                },
                "raw": {
                    "sha1": "dbe49949308f28540a42ae6cd2ad58afbf615592",
                    "size": 3223,
                    "url": "https://launcher.mojang.com/v1/objects/dbe49949308f28540a42ae6cd2ad58afbf615592/messages_it.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_ja.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "9a6a4c086e48b9e615b72b6bbebb3c724d178ff4",
                    "size": 1680,
                    "url": "https://launcher.mojang.com/v1/objects/9a6a4c086e48b9e615b72b6bbebb3c724d178ff4/messages_ja.properties"
                },
                "raw": {
                    "sha1": "751170a7cdefcb1226604ac3f8196e06a04fd7ac",
                    "size": 6349,
                    "url": "https://launcher.mojang.com/v1/objects/751170a7cdefcb1226604ac3f8196e06a04fd7ac/messages_ja.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_ko.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "0c57c2ebfa0830f816657a384898487fc492efac",
                    "size": 1645,
                    "url": "https://launcher.mojang.com/v1/objects/0c57c2ebfa0830f816657a384898487fc492efac/messages_ko.properties"
                },
                "raw": {
                    "sha1": "bf9e055b5ab138ad6d49769e2b7630b7938848d6",
                    "size": 5712,
                    "url": "https://launcher.mojang.com/v1/objects/bf9e055b5ab138ad6d49769e2b7630b7938848d6/messages_ko.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_pt_BR.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "f8364dba0aa0a7e445a1a8d0e7ad66b996f70063",
                    "size": 1388,
                    "url": "https://launcher.mojang.com/v1/objects/f8364dba0aa0a7e445a1a8d0e7ad66b996f70063/messages_pt_BR.properties"
                },
                "raw": {
                    "sha1": "24e4951743521ab9a11381c77bd0cdb1ed30f5b5",
                    "size": 3285,
                    "url": "https://launcher.mojang.com/v1/objects/24e4951743521ab9a11381c77bd0cdb1ed30f5b5/messages_pt_BR.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_sv.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "65e5897d552258141aacf02f087c7c9c33ad0727",
                    "size": 1355,
                    "url": "https://launcher.mojang.com/v1/objects/65e5897d552258141aacf02f087c7c9c33ad0727/messages_sv.properties"
                },
                "raw": {
                    "sha1": "bb5a4aa0ba499f6b1916a83e3c7922a4583b4adb",
                    "size": 3384,
                    "url": "https://launcher.mojang.com/v1/objects/bb5a4aa0ba499f6b1916a83e3c7922a4583b4adb/messages_sv.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_zh_CN.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "de7d39a6e6748e9f47e842c9da90f515921c222c",
                    "size": 1506,
                    "url": "https://launcher.mojang.com/v1/objects/de7d39a6e6748e9f47e842c9da90f515921c222c/messages_zh_CN.properties"
                },
                "raw": {
                    "sha1": "1c2b96673dddd3596890ef4fc22017d484a1f652",
                    "size": 4072,
                    "url": "https://launcher.mojang.com/v1/objects/1c2b96673dddd3596890ef4fc22017d484a1f652/messages_zh_CN.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_zh_HK.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "e8d0e3a63caa2535a4f361033941f34dcc170a7e",
                    "size": 1529,
                    "url": "https://launcher.mojang.com/v1/objects/e8d0e3a63caa2535a4f361033941f34dcc170a7e/messages_zh_TW.properties"
                },
                "raw": {
                    "sha1": "37a57aad121c14c25e149206179728fa62203bf0",
                    "size": 3752,
                    "url": "https://launcher.mojang.com/v1/objects/37a57aad121c14c25e149206179728fa62203bf0/messages_zh_TW.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/messages_zh_TW.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "e8d0e3a63caa2535a4f361033941f34dcc170a7e",
                    "size": 1529,
                    "url": "https://launcher.mojang.com/v1/objects/e8d0e3a63caa2535a4f361033941f34dcc170a7e/messages_zh_TW.properties"
                },
                "raw": {
                    "sha1": "37a57aad121c14c25e149206179728fa62203bf0",
                    "size": 3752,
                    "url": "https://launcher.mojang.com/v1/objects/37a57aad121c14c25e149206179728fa62203bf0/messages_zh_TW.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/mixcode_s.png": {
            "downloads": {
                "raw": {
                    "sha1": "4604e9f265eec97bccd0151c3a81afa9e69499e5",
                    "size": 3115,
                    "url": "https://launcher.mojang.com/v1/objects/4604e9f265eec97bccd0151c3a81afa9e69499e5/mixcode_s.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/splash.gif": {
            "downloads": {
                "raw": {
                    "sha1": "20e7aec75f6d036d504277542e507eb7dc24aae8",
                    "size": 8590,
                    "url": "https://launcher.mojang.com/v1/objects/20e7aec75f6d036d504277542e507eb7dc24aae8/splash.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/splash@2x.gif": {
            "downloads": {
                "raw": {
                    "sha1": "0ae4a5bda2a6d628fac51462390b503c99509fdc",
                    "size": 15276,
                    "url": "https://launcher.mojang.com/v1/objects/0ae4a5bda2a6d628fac51462390b503c99509fdc/splash2x.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/splash_11-lic.gif": {
            "downloads": {
                "raw": {
                    "sha1": "8def364e07f40142822df84b5bb4f50846cb5e4e",
                    "size": 7805,
                    "url": "https://launcher.mojang.com/v1/objects/8def364e07f40142822df84b5bb4f50846cb5e4e/splash_11-lic.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/deploy/splash_11@2x-lic.gif": {
            "downloads": {
                "raw": {
                    "sha1": "d2bff9bbf7920ca743b81a0ee23b0719b4d057ca",
                    "size": 12250,
                    "url": "https://launcher.mojang.com/v1/objects/d2bff9bbf7920ca743b81a0ee23b0719b4d057ca/splash_11%402x-lic.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop": {
            "type": "directory"
        },
        "lib/desktop/applications": {
            "type": "directory"
        },
        "lib/desktop/applications/sun-java.desktop": {
            "downloads": {
                "lzma": {
                    "sha1": "109d1cdf165f38da92da70b403ca940192a7a9a8",
                    "size": 536,
                    "url": "https://launcher.mojang.com/v1/objects/109d1cdf165f38da92da70b403ca940192a7a9a8/sun-java.desktop"
                },
                "raw": {
                    "sha1": "d346dfe90505603ce5aff5a3c6c2e4a23d5bd990",
                    "size": 777,
                    "url": "https://launcher.mojang.com/v1/objects/d346dfe90505603ce5aff5a3c6c2e4a23d5bd990/sun-java.desktop"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/applications/sun-javaws.desktop": {
            "downloads": {
                "lzma": {
                    "sha1": "5e1815e7f83515881e6998584dc6bb02c5bef09a",
                    "size": 451,
                    "url": "https://launcher.mojang.com/v1/objects/5e1815e7f83515881e6998584dc6bb02c5bef09a/sun-javaws.desktop"
                },
                "raw": {
                    "sha1": "50ce8e519b836e0f53d58ce1a359d98b6cafdda6",
                    "size": 619,
                    "url": "https://launcher.mojang.com/v1/objects/50ce8e519b836e0f53d58ce1a359d98b6cafdda6/sun-javaws.desktop"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/applications/sun_java.desktop": {
            "downloads": {
                "lzma": {
                    "sha1": "49ab0ccb54c3be68281d05055bc56a88b1281d3c",
                    "size": 447,
                    "url": "https://launcher.mojang.com/v1/objects/49ab0ccb54c3be68281d05055bc56a88b1281d3c/sun_java.desktop"
                },
                "raw": {
                    "sha1": "79120ee8160ad6f3c9b90c2641fb7edf3af96b5d",
                    "size": 624,
                    "url": "https://launcher.mojang.com/v1/objects/79120ee8160ad6f3c9b90c2641fb7edf3af96b5d/sun_java.desktop"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrast": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrast/16x16": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrast/16x16/apps": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrast/16x16/apps/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "366e7a48e9e4fb92eaeabbcaeb4626122a66cecb",
                    "size": 417,
                    "url": "https://launcher.mojang.com/v1/objects/366e7a48e9e4fb92eaeabbcaeb4626122a66cecb/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/16x16/apps/sun-javaws.png": {
            "downloads": {
                "raw": {
                    "sha1": "366e7a48e9e4fb92eaeabbcaeb4626122a66cecb",
                    "size": 417,
                    "url": "https://launcher.mojang.com/v1/objects/366e7a48e9e4fb92eaeabbcaeb4626122a66cecb/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/16x16/apps/sun-jcontrol.png": {
            "downloads": {
                "raw": {
                    "sha1": "366e7a48e9e4fb92eaeabbcaeb4626122a66cecb",
                    "size": 417,
                    "url": "https://launcher.mojang.com/v1/objects/366e7a48e9e4fb92eaeabbcaeb4626122a66cecb/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/16x16/mimetypes": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrast/16x16/mimetypes/gnome-mime-application-x-java-archive.png": {
            "downloads": {
                "raw": {
                    "sha1": "629c48907368ecf32d2395b6459c367f79d84689",
                    "size": 464,
                    "url":
                        "https://launcher.mojang.com/v1/objects/629c48907368ecf32d2395b6459c367f79d84689/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/16x16/mimetypes/gnome-mime-application-x-java-jnlp-file.png": {
            "downloads": {
                "raw": {
                    "sha1": "629c48907368ecf32d2395b6459c367f79d84689",
                    "size": 464,
                    "url":
                        "https://launcher.mojang.com/v1/objects/629c48907368ecf32d2395b6459c367f79d84689/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/16x16/mimetypes/gnome-mime-text-x-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "629c48907368ecf32d2395b6459c367f79d84689",
                    "size": 464,
                    "url":
                        "https://launcher.mojang.com/v1/objects/629c48907368ecf32d2395b6459c367f79d84689/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/48x48": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrast/48x48/apps": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrast/48x48/apps/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "8373482d072684e09830dbdb97a76ea264c9f4e9",
                    "size": 3451,
                    "url": "https://launcher.mojang.com/v1/objects/8373482d072684e09830dbdb97a76ea264c9f4e9/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/48x48/apps/sun-javaws.png": {
            "downloads": {
                "raw": {
                    "sha1": "8373482d072684e09830dbdb97a76ea264c9f4e9",
                    "size": 3451,
                    "url": "https://launcher.mojang.com/v1/objects/8373482d072684e09830dbdb97a76ea264c9f4e9/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/48x48/apps/sun-jcontrol.png": {
            "downloads": {
                "raw": {
                    "sha1": "8373482d072684e09830dbdb97a76ea264c9f4e9",
                    "size": 3451,
                    "url": "https://launcher.mojang.com/v1/objects/8373482d072684e09830dbdb97a76ea264c9f4e9/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/48x48/mimetypes": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrast/48x48/mimetypes/gnome-mime-application-x-java-archive.png": {
            "downloads": {
                "raw": {
                    "sha1": "56a4996519f8f3541eba7b7a7a69bcdcd8ed0410",
                    "size": 2088,
                    "url":
                        "https://launcher.mojang.com/v1/objects/56a4996519f8f3541eba7b7a7a69bcdcd8ed0410/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/48x48/mimetypes/gnome-mime-application-x-java-jnlp-file.png": {
            "downloads": {
                "raw": {
                    "sha1": "56a4996519f8f3541eba7b7a7a69bcdcd8ed0410",
                    "size": 2088,
                    "url":
                        "https://launcher.mojang.com/v1/objects/56a4996519f8f3541eba7b7a7a69bcdcd8ed0410/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrast/48x48/mimetypes/gnome-mime-text-x-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "56a4996519f8f3541eba7b7a7a69bcdcd8ed0410",
                    "size": 2088,
                    "url":
                        "https://launcher.mojang.com/v1/objects/56a4996519f8f3541eba7b7a7a69bcdcd8ed0410/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrastInverse/16x16": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrastInverse/16x16/apps": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrastInverse/16x16/apps/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "bf0995acb94aa794e73c5b971282ff13ffe42793",
                    "size": 402,
                    "url": "https://launcher.mojang.com/v1/objects/bf0995acb94aa794e73c5b971282ff13ffe42793/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/16x16/apps/sun-javaws.png": {
            "downloads": {
                "raw": {
                    "sha1": "bf0995acb94aa794e73c5b971282ff13ffe42793",
                    "size": 402,
                    "url": "https://launcher.mojang.com/v1/objects/bf0995acb94aa794e73c5b971282ff13ffe42793/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/16x16/apps/sun-jcontrol.png": {
            "downloads": {
                "raw": {
                    "sha1": "bf0995acb94aa794e73c5b971282ff13ffe42793",
                    "size": 402,
                    "url": "https://launcher.mojang.com/v1/objects/bf0995acb94aa794e73c5b971282ff13ffe42793/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/16x16/mimetypes": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrastInverse/16x16/mimetypes/gnome-mime-application-x-java-archive.png": {
            "downloads": {
                "raw": {
                    "sha1": "1477eceda25e162fcda2e69ee3906091973d8344",
                    "size": 473,
                    "url":
                        "https://launcher.mojang.com/v1/objects/1477eceda25e162fcda2e69ee3906091973d8344/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/16x16/mimetypes/gnome-mime-application-x-java-jnlp-file.png": {
            "downloads": {
                "raw": {
                    "sha1": "1477eceda25e162fcda2e69ee3906091973d8344",
                    "size": 473,
                    "url":
                        "https://launcher.mojang.com/v1/objects/1477eceda25e162fcda2e69ee3906091973d8344/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/16x16/mimetypes/gnome-mime-text-x-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "1477eceda25e162fcda2e69ee3906091973d8344",
                    "size": 473,
                    "url":
                        "https://launcher.mojang.com/v1/objects/1477eceda25e162fcda2e69ee3906091973d8344/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/48x48": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrastInverse/48x48/apps": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrastInverse/48x48/apps/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "413da160dd9899b95f53d4cc11f5ee0550cc6585",
                    "size": 3410,
                    "url": "https://launcher.mojang.com/v1/objects/413da160dd9899b95f53d4cc11f5ee0550cc6585/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/48x48/apps/sun-javaws.png": {
            "downloads": {
                "raw": {
                    "sha1": "413da160dd9899b95f53d4cc11f5ee0550cc6585",
                    "size": 3410,
                    "url": "https://launcher.mojang.com/v1/objects/413da160dd9899b95f53d4cc11f5ee0550cc6585/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/48x48/apps/sun-jcontrol.png": {
            "downloads": {
                "raw": {
                    "sha1": "413da160dd9899b95f53d4cc11f5ee0550cc6585",
                    "size": 3410,
                    "url": "https://launcher.mojang.com/v1/objects/413da160dd9899b95f53d4cc11f5ee0550cc6585/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/48x48/mimetypes": {
            "type": "directory"
        },
        "lib/desktop/icons/HighContrastInverse/48x48/mimetypes/gnome-mime-application-x-java-archive.png": {
            "downloads": {
                "raw": {
                    "sha1": "d66e04dfa25c196bec2e201547325b79846ab674",
                    "size": 2085,
                    "url":
                        "https://launcher.mojang.com/v1/objects/d66e04dfa25c196bec2e201547325b79846ab674/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/48x48/mimetypes/gnome-mime-application-x-java-jnlp-file.png": {
            "downloads": {
                "raw": {
                    "sha1": "d66e04dfa25c196bec2e201547325b79846ab674",
                    "size": 2085,
                    "url":
                        "https://launcher.mojang.com/v1/objects/d66e04dfa25c196bec2e201547325b79846ab674/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/HighContrastInverse/48x48/mimetypes/gnome-mime-text-x-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "d66e04dfa25c196bec2e201547325b79846ab674",
                    "size": 2085,
                    "url":
                        "https://launcher.mojang.com/v1/objects/d66e04dfa25c196bec2e201547325b79846ab674/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast": {
            "type": "directory"
        },
        "lib/desktop/icons/LowContrast/16x16": {
            "type": "directory"
        },
        "lib/desktop/icons/LowContrast/16x16/apps": {
            "type": "directory"
        },
        "lib/desktop/icons/LowContrast/16x16/apps/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "f93b7cf0a6d27d664a7f09dab6933b2768536f52",
                    "size": 519,
                    "url": "https://launcher.mojang.com/v1/objects/f93b7cf0a6d27d664a7f09dab6933b2768536f52/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/16x16/apps/sun-javaws.png": {
            "downloads": {
                "raw": {
                    "sha1": "f93b7cf0a6d27d664a7f09dab6933b2768536f52",
                    "size": 519,
                    "url": "https://launcher.mojang.com/v1/objects/f93b7cf0a6d27d664a7f09dab6933b2768536f52/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/16x16/apps/sun-jcontrol.png": {
            "downloads": {
                "raw": {
                    "sha1": "f93b7cf0a6d27d664a7f09dab6933b2768536f52",
                    "size": 519,
                    "url": "https://launcher.mojang.com/v1/objects/f93b7cf0a6d27d664a7f09dab6933b2768536f52/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/16x16/mimetypes": {
            "type": "directory"
        },
        "lib/desktop/icons/LowContrast/16x16/mimetypes/gnome-mime-application-x-java-archive.png": {
            "downloads": {
                "raw": {
                    "sha1": "0aa1605877280b88de1f1cc3e7e4bdbeed968a73",
                    "size": 525,
                    "url":
                        "https://launcher.mojang.com/v1/objects/0aa1605877280b88de1f1cc3e7e4bdbeed968a73/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/16x16/mimetypes/gnome-mime-application-x-java-jnlp-file.png": {
            "downloads": {
                "raw": {
                    "sha1": "0aa1605877280b88de1f1cc3e7e4bdbeed968a73",
                    "size": 525,
                    "url":
                        "https://launcher.mojang.com/v1/objects/0aa1605877280b88de1f1cc3e7e4bdbeed968a73/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/16x16/mimetypes/gnome-mime-text-x-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "0aa1605877280b88de1f1cc3e7e4bdbeed968a73",
                    "size": 525,
                    "url":
                        "https://launcher.mojang.com/v1/objects/0aa1605877280b88de1f1cc3e7e4bdbeed968a73/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/48x48": {
            "type": "directory"
        },
        "lib/desktop/icons/LowContrast/48x48/apps": {
            "type": "directory"
        },
        "lib/desktop/icons/LowContrast/48x48/apps/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "1fcf4fd6da61873b5f21b39412da26509734b7cc",
                    "size": 1507,
                    "url": "https://launcher.mojang.com/v1/objects/1fcf4fd6da61873b5f21b39412da26509734b7cc/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/48x48/apps/sun-javaws.png": {
            "downloads": {
                "raw": {
                    "sha1": "1fcf4fd6da61873b5f21b39412da26509734b7cc",
                    "size": 1507,
                    "url": "https://launcher.mojang.com/v1/objects/1fcf4fd6da61873b5f21b39412da26509734b7cc/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/48x48/apps/sun-jcontrol.png": {
            "downloads": {
                "raw": {
                    "sha1": "1fcf4fd6da61873b5f21b39412da26509734b7cc",
                    "size": 1507,
                    "url": "https://launcher.mojang.com/v1/objects/1fcf4fd6da61873b5f21b39412da26509734b7cc/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/48x48/mimetypes": {
            "type": "directory"
        },
        "lib/desktop/icons/LowContrast/48x48/mimetypes/gnome-mime-application-x-java-archive.png": {
            "downloads": {
                "raw": {
                    "sha1": "e36636b1c04dc283c18adf669b892d54b15d3ee6",
                    "size": 1948,
                    "url":
                        "https://launcher.mojang.com/v1/objects/e36636b1c04dc283c18adf669b892d54b15d3ee6/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/48x48/mimetypes/gnome-mime-application-x-java-jnlp-file.png": {
            "downloads": {
                "raw": {
                    "sha1": "e36636b1c04dc283c18adf669b892d54b15d3ee6",
                    "size": 1948,
                    "url":
                        "https://launcher.mojang.com/v1/objects/e36636b1c04dc283c18adf669b892d54b15d3ee6/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/LowContrast/48x48/mimetypes/gnome-mime-text-x-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "e36636b1c04dc283c18adf669b892d54b15d3ee6",
                    "size": 1948,
                    "url":
                        "https://launcher.mojang.com/v1/objects/e36636b1c04dc283c18adf669b892d54b15d3ee6/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor": {
            "type": "directory"
        },
        "lib/desktop/icons/hicolor/16x16": {
            "type": "directory"
        },
        "lib/desktop/icons/hicolor/16x16/apps": {
            "type": "directory"
        },
        "lib/desktop/icons/hicolor/16x16/apps/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "e91d05bfe9b889bf8a227908b597cab4630da8f2",
                    "size": 383,
                    "url": "https://launcher.mojang.com/v1/objects/e91d05bfe9b889bf8a227908b597cab4630da8f2/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/16x16/apps/sun-javaws.png": {
            "downloads": {
                "raw": {
                    "sha1": "e91d05bfe9b889bf8a227908b597cab4630da8f2",
                    "size": 383,
                    "url": "https://launcher.mojang.com/v1/objects/e91d05bfe9b889bf8a227908b597cab4630da8f2/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/16x16/apps/sun-jcontrol.png": {
            "downloads": {
                "raw": {
                    "sha1": "e91d05bfe9b889bf8a227908b597cab4630da8f2",
                    "size": 383,
                    "url": "https://launcher.mojang.com/v1/objects/e91d05bfe9b889bf8a227908b597cab4630da8f2/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/16x16/mimetypes": {
            "type": "directory"
        },
        "lib/desktop/icons/hicolor/16x16/mimetypes/gnome-mime-application-x-java-archive.png": {
            "downloads": {
                "raw": {
                    "sha1": "d2f6abe8e498aeecb334fb43f63001d34dbf6ea5",
                    "size": 783,
                    "url":
                        "https://launcher.mojang.com/v1/objects/d2f6abe8e498aeecb334fb43f63001d34dbf6ea5/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/16x16/mimetypes/gnome-mime-application-x-java-jnlp-file.png": {
            "downloads": {
                "raw": {
                    "sha1": "d2f6abe8e498aeecb334fb43f63001d34dbf6ea5",
                    "size": 783,
                    "url":
                        "https://launcher.mojang.com/v1/objects/d2f6abe8e498aeecb334fb43f63001d34dbf6ea5/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/16x16/mimetypes/gnome-mime-text-x-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "d2f6abe8e498aeecb334fb43f63001d34dbf6ea5",
                    "size": 783,
                    "url":
                        "https://launcher.mojang.com/v1/objects/d2f6abe8e498aeecb334fb43f63001d34dbf6ea5/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/48x48": {
            "type": "directory"
        },
        "lib/desktop/icons/hicolor/48x48/apps": {
            "type": "directory"
        },
        "lib/desktop/icons/hicolor/48x48/apps/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "6c90a38eaada9c32a678a282be18ec5b43a84264",
                    "size": 1439,
                    "url": "https://launcher.mojang.com/v1/objects/6c90a38eaada9c32a678a282be18ec5b43a84264/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/48x48/apps/sun-javaws.png": {
            "downloads": {
                "raw": {
                    "sha1": "6c90a38eaada9c32a678a282be18ec5b43a84264",
                    "size": 1439,
                    "url": "https://launcher.mojang.com/v1/objects/6c90a38eaada9c32a678a282be18ec5b43a84264/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/48x48/apps/sun-jcontrol.png": {
            "downloads": {
                "raw": {
                    "sha1": "6c90a38eaada9c32a678a282be18ec5b43a84264",
                    "size": 1439,
                    "url": "https://launcher.mojang.com/v1/objects/6c90a38eaada9c32a678a282be18ec5b43a84264/sun-javaws.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/48x48/mimetypes": {
            "type": "directory"
        },
        "lib/desktop/icons/hicolor/48x48/mimetypes/gnome-mime-application-x-java-archive.png": {
            "downloads": {
                "raw": {
                    "sha1": "4d5e6e0c41d1076bc86f3ab157c88a41a5716997",
                    "size": 3202,
                    "url":
                        "https://launcher.mojang.com/v1/objects/4d5e6e0c41d1076bc86f3ab157c88a41a5716997/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/48x48/mimetypes/gnome-mime-application-x-java-jnlp-file.png": {
            "downloads": {
                "raw": {
                    "sha1": "4d5e6e0c41d1076bc86f3ab157c88a41a5716997",
                    "size": 3202,
                    "url":
                        "https://launcher.mojang.com/v1/objects/4d5e6e0c41d1076bc86f3ab157c88a41a5716997/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/icons/hicolor/48x48/mimetypes/gnome-mime-text-x-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "4d5e6e0c41d1076bc86f3ab157c88a41a5716997",
                    "size": 3202,
                    "url":
                        "https://launcher.mojang.com/v1/objects/4d5e6e0c41d1076bc86f3ab157c88a41a5716997/gnome-mime-application-x-java-archive.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/mime": {
            "type": "directory"
        },
        "lib/desktop/mime/packages": {
            "type": "directory"
        },
        "lib/desktop/mime/packages/x-java-archive.xml": {
            "downloads": {
                "lzma": {
                    "sha1": "841230729f0a59de2a1071d155d96358232b2ba1",
                    "size": 591,
                    "url": "https://launcher.mojang.com/v1/objects/841230729f0a59de2a1071d155d96358232b2ba1/x-java-archive.xml"
                },
                "raw": {
                    "sha1": "b6297fd36efa799312961f95ebf0c85c920d5037",
                    "size": 1822,
                    "url": "https://launcher.mojang.com/v1/objects/b6297fd36efa799312961f95ebf0c85c920d5037/x-java-archive.xml"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/desktop/mime/packages/x-java-jnlp-file.xml": {
            "downloads": {
                "lzma": {
                    "sha1": "abf9acbe7c18027c4f036c4e42bb2cf1115525fa",
                    "size": 302,
                    "url": "https://launcher.mojang.com/v1/objects/abf9acbe7c18027c4f036c4e42bb2cf1115525fa/x-java-jnlp-file.xml"
                },
                "raw": {
                    "sha1": "72f03da83ddb76c9105f619fcfa4dbdad70e6b30",
                    "size": 412,
                    "url": "https://launcher.mojang.com/v1/objects/72f03da83ddb76c9105f619fcfa4dbdad70e6b30/x-java-jnlp-file.xml"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext": {
            "type": "directory"
        },
        "lib/ext/cldrdata.jar": {
            "downloads": {
                "raw": {
                    "sha1": "6cacc961942d3f02a88907aa8f2eaae8e20c95a0",
                    "size": 3860502,
                    "url": "https://launcher.mojang.com/v1/objects/6cacc961942d3f02a88907aa8f2eaae8e20c95a0/cldrdata.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/dnsns.jar": {
            "downloads": {
                "raw": {
                    "sha1": "93bebdd7514e53ae31d60c5daba673878c8822ec",
                    "size": 8286,
                    "url": "https://launcher.mojang.com/v1/objects/93bebdd7514e53ae31d60c5daba673878c8822ec/dnsns.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/jaccess.jar": {
            "downloads": {
                "raw": {
                    "sha1": "2f54879df7c29ec67c40d40cfc95c0d4a968bea1",
                    "size": 44516,
                    "url": "https://launcher.mojang.com/v1/objects/2f54879df7c29ec67c40d40cfc95c0d4a968bea1/jaccess.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/jfxrt.jar": {
            "downloads": {
                "lzma": {
                    "sha1": "a6c5b6a782ba360ada6651f5322dcab88c75711c",
                    "size": 3374270,
                    "url": "https://launcher.mojang.com/v1/objects/a6c5b6a782ba360ada6651f5322dcab88c75711c/jfxrt.jar"
                },
                "raw": {
                    "sha1": "1ad7a876f045399c23ee4ab7dee380a04ca2ac08",
                    "size": 18508094,
                    "url": "https://launcher.mojang.com/v1/objects/1ad7a876f045399c23ee4ab7dee380a04ca2ac08/jfxrt.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/localedata.jar": {
            "downloads": {
                "raw": {
                    "sha1": "0cc9f550d4e410b5aa29dbfd2c1b5c99391c7f70",
                    "size": 1178926,
                    "url": "https://launcher.mojang.com/v1/objects/0cc9f550d4e410b5aa29dbfd2c1b5c99391c7f70/localedata.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/meta-index": {
            "downloads": {
                "lzma": {
                    "sha1": "1359457529f42bacf495afcb68149ae036442dd9",
                    "size": 594,
                    "url": "https://launcher.mojang.com/v1/objects/1359457529f42bacf495afcb68149ae036442dd9/meta-index"
                },
                "raw": {
                    "sha1": "334649c6e2d5d7248211f30855e97cfcb4558851",
                    "size": 1269,
                    "url": "https://launcher.mojang.com/v1/objects/334649c6e2d5d7248211f30855e97cfcb4558851/meta-index"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/nashorn.jar": {
            "downloads": {
                "raw": {
                    "sha1": "dec5dd17a0f52ae79dfbfb38840bffb8b7a679a5",
                    "size": 2023869,
                    "url": "https://launcher.mojang.com/v1/objects/dec5dd17a0f52ae79dfbfb38840bffb8b7a679a5/nashorn.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/sunec.jar": {
            "downloads": {
                "raw": {
                    "sha1": "bf1c817820341a246f7130fe046e8310b03d04f6",
                    "size": 41672,
                    "url": "https://launcher.mojang.com/v1/objects/bf1c817820341a246f7130fe046e8310b03d04f6/sunec.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/sunjce_provider.jar": {
            "downloads": {
                "raw": {
                    "sha1": "bb3494e4b5cb3c3e60da767207731f18b267cb34",
                    "size": 279326,
                    "url": "https://launcher.mojang.com/v1/objects/bb3494e4b5cb3c3e60da767207731f18b267cb34/sunjce_provider.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/sunpkcs11.jar": {
            "downloads": {
                "raw": {
                    "sha1": "5bb1dedc3344cd3bb86828d4aa8ca82f4a606ed4",
                    "size": 250218,
                    "url": "https://launcher.mojang.com/v1/objects/5bb1dedc3344cd3bb86828d4aa8ca82f4a606ed4/sunpkcs11.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/ext/zipfs.jar": {
            "downloads": {
                "raw": {
                    "sha1": "37b338f0e8e60d6396f51275130e8110816d7b30",
                    "size": 68964,
                    "url": "https://launcher.mojang.com/v1/objects/37b338f0e8e60d6396f51275130e8110816d7b30/zipfs.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/flavormap.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "2d5ef19ee77ccfc95c9413eea155cde59a48fadd",
                    "size": 1541,
                    "url": "https://launcher.mojang.com/v1/objects/2d5ef19ee77ccfc95c9413eea155cde59a48fadd/flavormap.properties"
                },
                "raw": {
                    "sha1": "4e66e8fe12d7f8b3b0c4e1a1915f329bb1fbf6d2",
                    "size": 3901,
                    "url": "https://launcher.mojang.com/v1/objects/4e66e8fe12d7f8b3b0c4e1a1915f329bb1fbf6d2/flavormap.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.RedHat.5.bfc": {
            "downloads": {
                "lzma": {
                    "sha1": "5197f6e387f16458b7408134e38b06f20f625e4c",
                    "size": 795,
                    "url": "https://launcher.mojang.com/v1/objects/5197f6e387f16458b7408134e38b06f20f625e4c/fontconfig.RedHat.5.bfc"
                },
                "raw": {
                    "sha1": "fb806ada6e68f16a9fe2b726a39d9ef5a835c0c2",
                    "size": 4532,
                    "url": "https://launcher.mojang.com/v1/objects/fb806ada6e68f16a9fe2b726a39d9ef5a835c0c2/fontconfig.RedHat.5.bfc"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.RedHat.5.properties.src": {
            "downloads": {
                "lzma": {
                    "sha1": "3897ae198e96e5a687c9c9b218ff5df60c868e0d",
                    "size": 1089,
                    "url":
                        "https://launcher.mojang.com/v1/objects/3897ae198e96e5a687c9c9b218ff5df60c868e0d/fontconfig.RedHat.5.properties.src"
                },
                "raw": {
                    "sha1": "c67d1a06cb37b66e69560c9f5e4be7cf08af0493",
                    "size": 8841,
                    "url":
                        "https://launcher.mojang.com/v1/objects/c67d1a06cb37b66e69560c9f5e4be7cf08af0493/fontconfig.RedHat.5.properties.src"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.RedHat.6.bfc": {
            "downloads": {
                "lzma": {
                    "sha1": "ef2f5d1f8d620be9927db45d3a28bd75777245cb",
                    "size": 818,
                    "url": "https://launcher.mojang.com/v1/objects/ef2f5d1f8d620be9927db45d3a28bd75777245cb/fontconfig.RedHat.6.bfc"
                },
                "raw": {
                    "sha1": "9ba3b3e2c621c31d0ef1b2053c80f77419a19965",
                    "size": 4250,
                    "url": "https://launcher.mojang.com/v1/objects/9ba3b3e2c621c31d0ef1b2053c80f77419a19965/fontconfig.RedHat.6.bfc"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.RedHat.6.properties.src": {
            "downloads": {
                "lzma": {
                    "sha1": "74f4148f9d7ec3d67bbd724834d478a72cfdb0db",
                    "size": 1111,
                    "url":
                        "https://launcher.mojang.com/v1/objects/74f4148f9d7ec3d67bbd724834d478a72cfdb0db/fontconfig.RedHat.6.properties.src"
                },
                "raw": {
                    "sha1": "768e58d4d314621c38daf9fde6d67119f370acd9",
                    "size": 8735,
                    "url":
                        "https://launcher.mojang.com/v1/objects/768e58d4d314621c38daf9fde6d67119f370acd9/fontconfig.RedHat.6.properties.src"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.SuSE.10.bfc": {
            "downloads": {
                "lzma": {
                    "sha1": "d8fe9b1d8d02368dcd452de93024c6f60670eb87",
                    "size": 1083,
                    "url": "https://launcher.mojang.com/v1/objects/d8fe9b1d8d02368dcd452de93024c6f60670eb87/fontconfig.SuSE.10.bfc"
                },
                "raw": {
                    "sha1": "ffd0dfbd1553e15b11649a73a0b3f48318138e0d",
                    "size": 6702,
                    "url": "https://launcher.mojang.com/v1/objects/ffd0dfbd1553e15b11649a73a0b3f48318138e0d/fontconfig.SuSE.10.bfc"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.SuSE.10.properties.src": {
            "downloads": {
                "lzma": {
                    "sha1": "2c382bd741a9e23114be3da82dee8290ebfca8a9",
                    "size": 1555,
                    "url":
                        "https://launcher.mojang.com/v1/objects/2c382bd741a9e23114be3da82dee8290ebfca8a9/fontconfig.SuSE.10.properties.src"
                },
                "raw": {
                    "sha1": "a38dbdbbc514567b8281e1aea726865f37e97894",
                    "size": 16772,
                    "url":
                        "https://launcher.mojang.com/v1/objects/a38dbdbbc514567b8281e1aea726865f37e97894/fontconfig.SuSE.10.properties.src"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.SuSE.11.bfc": {
            "downloads": {
                "lzma": {
                    "sha1": "2b78cbf11289c9858951fea7180696ba3b7176d6",
                    "size": 1092,
                    "url": "https://launcher.mojang.com/v1/objects/2b78cbf11289c9858951fea7180696ba3b7176d6/fontconfig.SuSE.11.bfc"
                },
                "raw": {
                    "sha1": "a4d8500fcb47f6327460a95851b1368660da8302",
                    "size": 7032,
                    "url": "https://launcher.mojang.com/v1/objects/a4d8500fcb47f6327460a95851b1368660da8302/fontconfig.SuSE.11.bfc"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.SuSE.11.properties.src": {
            "downloads": {
                "lzma": {
                    "sha1": "5c1635803906e2c59d36492dec724dd7ae49a5ab",
                    "size": 1589,
                    "url":
                        "https://launcher.mojang.com/v1/objects/5c1635803906e2c59d36492dec724dd7ae49a5ab/fontconfig.SuSE.11.properties.src"
                },
                "raw": {
                    "sha1": "c4b69589e41a7279a71866a9134213be19cdf88d",
                    "size": 16781,
                    "url":
                        "https://launcher.mojang.com/v1/objects/c4b69589e41a7279a71866a9134213be19cdf88d/fontconfig.SuSE.11.properties.src"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.Turbo.bfc": {
            "downloads": {
                "lzma": {
                    "sha1": "1c771325d9ee4af209a3db92294451d58962c7a4",
                    "size": 822,
                    "url": "https://launcher.mojang.com/v1/objects/1c771325d9ee4af209a3db92294451d58962c7a4/fontconfig.Turbo.bfc"
                },
                "raw": {
                    "sha1": "f24368deeb85cc9d0781083bc56e773518d72219",
                    "size": 4668,
                    "url": "https://launcher.mojang.com/v1/objects/f24368deeb85cc9d0781083bc56e773518d72219/fontconfig.Turbo.bfc"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.Turbo.properties.src": {
            "downloads": {
                "lzma": {
                    "sha1": "7748ffa17e2c8a34754138efa963ba39bd1cbbb3",
                    "size": 1113,
                    "url": "https://launcher.mojang.com/v1/objects/7748ffa17e2c8a34754138efa963ba39bd1cbbb3/fontconfig.Turbo.properties.src"
                },
                "raw": {
                    "sha1": "2bb7258bed7ccd4f117e4e5f892c9b13424b0c82",
                    "size": 9192,
                    "url": "https://launcher.mojang.com/v1/objects/2bb7258bed7ccd4f117e4e5f892c9b13424b0c82/fontconfig.Turbo.properties.src"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.bfc": {
            "downloads": {
                "lzma": {
                    "sha1": "be6d49ee8c64f458c4f0e64254963fec48d25150",
                    "size": 286,
                    "url": "https://launcher.mojang.com/v1/objects/be6d49ee8c64f458c4f0e64254963fec48d25150/fontconfig.bfc"
                },
                "raw": {
                    "sha1": "de39b0e19637f58d92a0188122514aa7247ebb5b",
                    "size": 1678,
                    "url": "https://launcher.mojang.com/v1/objects/de39b0e19637f58d92a0188122514aa7247ebb5b/fontconfig.bfc"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fontconfig.properties.src": {
            "downloads": {
                "lzma": {
                    "sha1": "9498d5e00e5401200667687e826e28c60fa60ba4",
                    "size": 417,
                    "url": "https://launcher.mojang.com/v1/objects/9498d5e00e5401200667687e826e28c60fa60ba4/fontconfig.properties.src"
                },
                "raw": {
                    "sha1": "3617ff1424fd204415242565541facf862b16eb4",
                    "size": 1938,
                    "url": "https://launcher.mojang.com/v1/objects/3617ff1424fd204415242565541facf862b16eb4/fontconfig.properties.src"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts": {
            "type": "directory"
        },
        "lib/fonts/LucidaBrightDemiBold.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "4f748750831a7719440dff5457f4d207d0f24d21",
                    "size": 42347,
                    "url": "https://launcher.mojang.com/v1/objects/4f748750831a7719440dff5457f4d207d0f24d21/LucidaBrightDemiBold.ttf"
                },
                "raw": {
                    "sha1": "b5c97f985639e19a3b712193ee48b55dda581fd1",
                    "size": 75144,
                    "url": "https://launcher.mojang.com/v1/objects/b5c97f985639e19a3b712193ee48b55dda581fd1/LucidaBrightDemiBold.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts/LucidaBrightDemiItalic.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "f82e9a688553c100ecb98412b985807ed56dff5d",
                    "size": 43119,
                    "url": "https://launcher.mojang.com/v1/objects/f82e9a688553c100ecb98412b985807ed56dff5d/LucidaBrightDemiItalic.ttf"
                },
                "raw": {
                    "sha1": "1fd1f757febf3e5f5fbb7fbf7a56587a40d57de7",
                    "size": 75124,
                    "url": "https://launcher.mojang.com/v1/objects/1fd1f757febf3e5f5fbb7fbf7a56587a40d57de7/LucidaBrightDemiItalic.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts/LucidaBrightItalic.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "6d630df719271319c3d53f90a3d425118b908266",
                    "size": 46206,
                    "url": "https://launcher.mojang.com/v1/objects/6d630df719271319c3d53f90a3d425118b908266/LucidaBrightItalic.ttf"
                },
                "raw": {
                    "sha1": "aa5c037865c563726ecd63d61ca26443589be425",
                    "size": 80856,
                    "url": "https://launcher.mojang.com/v1/objects/aa5c037865c563726ecd63d61ca26443589be425/LucidaBrightItalic.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts/LucidaBrightRegular.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "4b2e31aaec2238b6ecf9f845bad0a1c6d09fbbfe",
                    "size": 181085,
                    "url": "https://launcher.mojang.com/v1/objects/4b2e31aaec2238b6ecf9f845bad0a1c6d09fbbfe/LucidaBrightRegular.ttf"
                },
                "raw": {
                    "sha1": "5d7ed564791c900a8786936930ba99385653139c",
                    "size": 344908,
                    "url": "https://launcher.mojang.com/v1/objects/5d7ed564791c900a8786936930ba99385653139c/LucidaBrightRegular.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts/LucidaSansDemiBold.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "079b16dc3c4918ab1f4f760b6dc5e6586c219042",
                    "size": 173229,
                    "url": "https://launcher.mojang.com/v1/objects/079b16dc3c4918ab1f4f760b6dc5e6586c219042/LucidaSansDemiBold.ttf"
                },
                "raw": {
                    "sha1": "92b79fefc35e96190250c602a8fed85276b32a95",
                    "size": 317896,
                    "url": "https://launcher.mojang.com/v1/objects/92b79fefc35e96190250c602a8fed85276b32a95/LucidaSansDemiBold.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts/LucidaSansRegular.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "64a65d7b94d7153d20957ef6d06bebb4dd0f48e4",
                    "size": 326062,
                    "url": "https://launcher.mojang.com/v1/objects/64a65d7b94d7153d20957ef6d06bebb4dd0f48e4/LucidaSansRegular.ttf"
                },
                "raw": {
                    "sha1": "39cc8bcb8d4a71d4657fc92ef0b9f4e3e9e67add",
                    "size": 698236,
                    "url": "https://launcher.mojang.com/v1/objects/39cc8bcb8d4a71d4657fc92ef0b9f4e3e9e67add/LucidaSansRegular.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts/LucidaTypewriterBold.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "cdb017f7c34bea0802bc5ea5583aef721ed99c49",
                    "size": 130412,
                    "url": "https://launcher.mojang.com/v1/objects/cdb017f7c34bea0802bc5ea5583aef721ed99c49/LucidaTypewriterBold.ttf"
                },
                "raw": {
                    "sha1": "a5da2eb49448f461470387c939f0e69119310e0b",
                    "size": 234068,
                    "url": "https://launcher.mojang.com/v1/objects/a5da2eb49448f461470387c939f0e69119310e0b/LucidaTypewriterBold.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts/LucidaTypewriterRegular.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "aeda4a09a53783b0dc97de8e20071bea874cbfe5",
                    "size": 135184,
                    "url": "https://launcher.mojang.com/v1/objects/aeda4a09a53783b0dc97de8e20071bea874cbfe5/LucidaTypewriterRegular.ttf"
                },
                "raw": {
                    "sha1": "c144dcafe4faf2e79cfd74d8134a631f30234db1",
                    "size": 242700,
                    "url": "https://launcher.mojang.com/v1/objects/c144dcafe4faf2e79cfd74d8134a631f30234db1/LucidaTypewriterRegular.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/fonts/fonts.dir": {
            "downloads": {
                "lzma": {
                    "sha1": "68f2dd93b215ec8b8d9409d2b9c825632c6b907d",
                    "size": 273,
                    "url": "https://launcher.mojang.com/v1/objects/68f2dd93b215ec8b8d9409d2b9c825632c6b907d/fonts.dir"
                },
                "raw": {
                    "sha1": "97f40cca185c954adf5cc582345a7cb8e4c50578",
                    "size": 4041,
                    "url": "https://launcher.mojang.com/v1/objects/97f40cca185c954adf5cc582345a7cb8e4c50578/fonts.dir"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/hijrah-config-umalqura.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "02e8d296e3b18a450f1ed1547cbf2b7275664c9a",
                    "size": 1969,
                    "url":
                        "https://launcher.mojang.com/v1/objects/02e8d296e3b18a450f1ed1547cbf2b7275664c9a/hijrah-config-umalqura.properties"
                },
                "raw": {
                    "sha1": "84aa425100740722e91f4725caf849e7863d12ba",
                    "size": 13962,
                    "url":
                        "https://launcher.mojang.com/v1/objects/84aa425100740722e91f4725caf849e7863d12ba/hijrah-config-umalqura.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images": {
            "type": "directory"
        },
        "lib/images/cursors": {
            "type": "directory"
        },
        "lib/images/cursors/cursors.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "612bd0f610ee1023947c4a2a8d3fc7d6f97e7d8f",
                    "size": 385,
                    "url": "https://launcher.mojang.com/v1/objects/612bd0f610ee1023947c4a2a8d3fc7d6f97e7d8f/cursors.properties"
                },
                "raw": {
                    "sha1": "f2b9a22ddd0a77869497a64f28f07e89a7d41f48",
                    "size": 1274,
                    "url": "https://launcher.mojang.com/v1/objects/f2b9a22ddd0a77869497a64f28f07e89a7d41f48/cursors.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/cursors/invalid32x32.gif": {
            "downloads": {
                "raw": {
                    "sha1": "259edc45b4569427e8319895a444f4295d54348f",
                    "size": 153,
                    "url": "https://launcher.mojang.com/v1/objects/259edc45b4569427e8319895a444f4295d54348f/invalid32x32.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/cursors/motif_CopyDrop32x32.gif": {
            "downloads": {
                "raw": {
                    "sha1": "eb7620fae702172aa663a19d170a0b929d3b11d1",
                    "size": 158,
                    "url": "https://launcher.mojang.com/v1/objects/eb7620fae702172aa663a19d170a0b929d3b11d1/motif_CopyDrop32x32.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/cursors/motif_CopyNoDrop32x32.gif": {
            "downloads": {
                "raw": {
                    "sha1": "259edc45b4569427e8319895a444f4295d54348f",
                    "size": 153,
                    "url": "https://launcher.mojang.com/v1/objects/259edc45b4569427e8319895a444f4295d54348f/invalid32x32.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/cursors/motif_LinkDrop32x32.gif": {
            "downloads": {
                "raw": {
                    "sha1": "9699137f990c240e714481563181069c8f6c17bb",
                    "size": 162,
                    "url": "https://launcher.mojang.com/v1/objects/9699137f990c240e714481563181069c8f6c17bb/motif_LinkDrop32x32.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/cursors/motif_LinkNoDrop32x32.gif": {
            "downloads": {
                "raw": {
                    "sha1": "259edc45b4569427e8319895a444f4295d54348f",
                    "size": 153,
                    "url": "https://launcher.mojang.com/v1/objects/259edc45b4569427e8319895a444f4295d54348f/invalid32x32.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/cursors/motif_MoveDrop32x32.gif": {
            "downloads": {
                "raw": {
                    "sha1": "03c1617ce3c5ab8af03e46d30a8c8f31ab57fb1b",
                    "size": 141,
                    "url": "https://launcher.mojang.com/v1/objects/03c1617ce3c5ab8af03e46d30a8c8f31ab57fb1b/motif_MoveDrop32x32.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/cursors/motif_MoveNoDrop32x32.gif": {
            "downloads": {
                "raw": {
                    "sha1": "259edc45b4569427e8319895a444f4295d54348f",
                    "size": 153,
                    "url": "https://launcher.mojang.com/v1/objects/259edc45b4569427e8319895a444f4295d54348f/invalid32x32.gif"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/icons": {
            "type": "directory"
        },
        "lib/images/icons/sun-java.png": {
            "downloads": {
                "raw": {
                    "sha1": "d101b693aa054f51097eebdfeed8b8a6ca7b55b8",
                    "size": 4707,
                    "url": "https://launcher.mojang.com/v1/objects/d101b693aa054f51097eebdfeed8b8a6ca7b55b8/sun-java.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/icons/sun-java_HighContrast.png": {
            "downloads": {
                "raw": {
                    "sha1": "a6b1e418d6b5d03719b96f61f0c5236a60970151",
                    "size": 3729,
                    "url": "https://launcher.mojang.com/v1/objects/a6b1e418d6b5d03719b96f61f0c5236a60970151/sun-java_HighContrast.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/icons/sun-java_HighContrastInverse.png": {
            "downloads": {
                "raw": {
                    "sha1": "2dda28b9bddc9b5b018e3e8a8b062a99d9b2f887",
                    "size": 3777,
                    "url":
                        "https://launcher.mojang.com/v1/objects/2dda28b9bddc9b5b018e3e8a8b062a99d9b2f887/sun-java_HighContrastInverse.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/images/icons/sun-java_LowContrast.png": {
            "downloads": {
                "raw": {
                    "sha1": "7714cc4e894c3626c8da6fe742ed22b2829122d9",
                    "size": 4012,
                    "url": "https://launcher.mojang.com/v1/objects/7714cc4e894c3626c8da6fe742ed22b2829122d9/sun-java_LowContrast.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/javafx.properties": {
            "downloads": {
                "raw": {
                    "sha1": "49e6b75d109e5fd3f6cbe7cc5fa9a7980796d14d",
                    "size": 56,
                    "url": "https://launcher.mojang.com/v1/objects/49e6b75d109e5fd3f6cbe7cc5fa9a7980796d14d/javafx.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/javaws.jar": {
            "downloads": {
                "raw": {
                    "sha1": "04fa5ae04ead65b91be5dee575497e49ffd49fe9",
                    "size": 488118,
                    "url": "https://launcher.mojang.com/v1/objects/04fa5ae04ead65b91be5dee575497e49ffd49fe9/javaws.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/jce.jar": {
            "downloads": {
                "raw": {
                    "sha1": "5460adee09cc5fc8829c0acfc46c34670a7d70a0",
                    "size": 115646,
                    "url": "https://launcher.mojang.com/v1/objects/5460adee09cc5fc8829c0acfc46c34670a7d70a0/jce.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/jexec": {
            "downloads": {
                "lzma": {
                    "sha1": "2d4323d4e060f8126d026ca6c03b8972aedd2fab",
                    "size": 3311,
                    "url": "https://launcher.mojang.com/v1/objects/2d4323d4e060f8126d026ca6c03b8972aedd2fab/jexec"
                },
                "raw": {
                    "sha1": "6aa01f1d8d103974164bcfaea03c04eeeefd7d41",
                    "size": 13376,
                    "url": "https://launcher.mojang.com/v1/objects/6aa01f1d8d103974164bcfaea03c04eeeefd7d41/jexec"
                }
            },
            "executable": true,
            "type": "file"
        },
        "lib/jfr": {
            "type": "directory"
        },
        "lib/jfr.jar": {
            "downloads": {
                "lzma": {
                    "sha1": "5b9d615c91c72f4fe356d9b4105946679452d1e1",
                    "size": 137982,
                    "url": "https://launcher.mojang.com/v1/objects/5b9d615c91c72f4fe356d9b4105946679452d1e1/jfr.jar"
                },
                "raw": {
                    "sha1": "0f3fd66a336703d935bdc22ad8082bc51d34e534",
                    "size": 560713,
                    "url": "https://launcher.mojang.com/v1/objects/0f3fd66a336703d935bdc22ad8082bc51d34e534/jfr.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/jfr/default.jfc": {
            "downloads": {
                "lzma": {
                    "sha1": "373ddd878146dd8ce8991c2c5115a05a82859bdb",
                    "size": 2207,
                    "url": "https://launcher.mojang.com/v1/objects/373ddd878146dd8ce8991c2c5115a05a82859bdb/default.jfc"
                },
                "raw": {
                    "sha1": "1a64b68d0e7d43f8149faba94440be54f4f24527",
                    "size": 20109,
                    "url": "https://launcher.mojang.com/v1/objects/1a64b68d0e7d43f8149faba94440be54f4f24527/default.jfc"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/jfr/profile.jfc": {
            "downloads": {
                "lzma": {
                    "sha1": "3dcdc5feee3ccfb66bc8726b666944cd4bdadae3",
                    "size": 2199,
                    "url": "https://launcher.mojang.com/v1/objects/3dcdc5feee3ccfb66bc8726b666944cd4bdadae3/profile.jfc"
                },
                "raw": {
                    "sha1": "5d7d08a595f76322c51ae43ea966fbba6b69eebe",
                    "size": 20065,
                    "url": "https://launcher.mojang.com/v1/objects/5d7d08a595f76322c51ae43ea966fbba6b69eebe/profile.jfc"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/jfxswt.jar": {
            "downloads": {
                "raw": {
                    "sha1": "99d9a264c898d84c01e1c42565e7fe1a89dcd72d",
                    "size": 33932,
                    "url": "https://launcher.mojang.com/v1/objects/99d9a264c898d84c01e1c42565e7fe1a89dcd72d/jfxswt.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/jsse.jar": {
            "downloads": {
                "lzma": {
                    "sha1": "94a17dfbc2e76cd12c33970a15341424f875a9ce",
                    "size": 187549,
                    "url": "https://launcher.mojang.com/v1/objects/94a17dfbc2e76cd12c33970a15341424f875a9ce/jsse.jar"
                },
                "raw": {
                    "sha1": "92c5c626e8a2d16f41272c0e404d4f992dd8310a",
                    "size": 675599,
                    "url": "https://launcher.mojang.com/v1/objects/92c5c626e8a2d16f41272c0e404d4f992dd8310a/jsse.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/jvm.hprof.txt": {
            "downloads": {
                "lzma": {
                    "sha1": "eccdb240a815b2a83a502749339b27bb8669965b",
                    "size": 1863,
                    "url": "https://launcher.mojang.com/v1/objects/eccdb240a815b2a83a502749339b27bb8669965b/jvm.hprof.txt"
                },
                "raw": {
                    "sha1": "fbd61d52534cdd0c15df332114d469c65d001e33",
                    "size": 4226,
                    "url": "https://launcher.mojang.com/v1/objects/fbd61d52534cdd0c15df332114d469c65d001e33/jvm.hprof.txt"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale": {
            "type": "directory"
        },
        "lib/locale/de": {
            "type": "directory"
        },
        "lib/locale/de/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/de/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "3061d922907cc557208109088fc6ab81d577ff6f",
                    "size": 970,
                    "url": "https://launcher.mojang.com/v1/objects/3061d922907cc557208109088fc6ab81d577ff6f/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "5b223a3d723ac1cfce63623fb109f2868d47d1b7",
                    "size": 2483,
                    "url": "https://launcher.mojang.com/v1/objects/5b223a3d723ac1cfce63623fb109f2868d47d1b7/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/es": {
            "type": "directory"
        },
        "lib/locale/es/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/es/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "24338049a89b323e17182b3a3006b50565d4fa0f",
                    "size": 979,
                    "url": "https://launcher.mojang.com/v1/objects/24338049a89b323e17182b3a3006b50565d4fa0f/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "6cc63dc97f2fdb2ed799e48b1dc98c4f37cdecc1",
                    "size": 2477,
                    "url": "https://launcher.mojang.com/v1/objects/6cc63dc97f2fdb2ed799e48b1dc98c4f37cdecc1/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/fr": {
            "type": "directory"
        },
        "lib/locale/fr/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/fr/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "22796a48ef39f57d2d6fa70f41308e493d7f05c1",
                    "size": 1033,
                    "url": "https://launcher.mojang.com/v1/objects/22796a48ef39f57d2d6fa70f41308e493d7f05c1/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "d9d5b458db6e83fdf85c3526aeee3f57c4929840",
                    "size": 2746,
                    "url": "https://launcher.mojang.com/v1/objects/d9d5b458db6e83fdf85c3526aeee3f57c4929840/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/it": {
            "type": "directory"
        },
        "lib/locale/it/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/it/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "59a4cae38bfb8927745674d0efc2f284bc277987",
                    "size": 958,
                    "url": "https://launcher.mojang.com/v1/objects/59a4cae38bfb8927745674d0efc2f284bc277987/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "f6e72e3b2141ccc3dffab10ae14a754e494577ba",
                    "size": 2434,
                    "url": "https://launcher.mojang.com/v1/objects/f6e72e3b2141ccc3dffab10ae14a754e494577ba/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/ja": {
            "type": "directory"
        },
        "lib/locale/ja/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/ja/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "7d6aeed563e1cefcf0224cf522048468088884a9",
                    "size": 1036,
                    "url": "https://launcher.mojang.com/v1/objects/7d6aeed563e1cefcf0224cf522048468088884a9/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "378881a8cb8dd2aebb43eacd0c68519be4f258b1",
                    "size": 2415,
                    "url": "https://launcher.mojang.com/v1/objects/378881a8cb8dd2aebb43eacd0c68519be4f258b1/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/ko": {
            "type": "directory"
        },
        "lib/locale/ko.UTF-8": {
            "type": "directory"
        },
        "lib/locale/ko.UTF-8/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/ko.UTF-8/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "12ee3b21511e8497d95ea0ba9d6fe519227d0b16",
                    "size": 1069,
                    "url": "https://launcher.mojang.com/v1/objects/12ee3b21511e8497d95ea0ba9d6fe519227d0b16/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "cb19df01c59662dbe2f4050b1290d374b82fe1fa",
                    "size": 2753,
                    "url": "https://launcher.mojang.com/v1/objects/cb19df01c59662dbe2f4050b1290d374b82fe1fa/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/ko/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/ko/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "6e2e47c64c360517fd436bc79c823b5679a1efe6",
                    "size": 996,
                    "url": "https://launcher.mojang.com/v1/objects/6e2e47c64c360517fd436bc79c823b5679a1efe6/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "12c8a118d150c78f719314df6dec49a967af71e9",
                    "size": 2399,
                    "url": "https://launcher.mojang.com/v1/objects/12c8a118d150c78f719314df6dec49a967af71e9/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/pt_BR": {
            "type": "directory"
        },
        "lib/locale/pt_BR/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/pt_BR/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "bcaa7e7916493f071f1bf64bf58c6b038e3569c9",
                    "size": 940,
                    "url": "https://launcher.mojang.com/v1/objects/bcaa7e7916493f071f1bf64bf58c6b038e3569c9/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "a3bc0c43994c53c59bba94982cf95f6d36283dd0",
                    "size": 2420,
                    "url": "https://launcher.mojang.com/v1/objects/a3bc0c43994c53c59bba94982cf95f6d36283dd0/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/sv": {
            "type": "directory"
        },
        "lib/locale/sv/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/sv/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "76017835d6261fe2eedbcbe5eb08a7484c3080c5",
                    "size": 946,
                    "url": "https://launcher.mojang.com/v1/objects/76017835d6261fe2eedbcbe5eb08a7484c3080c5/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "09a47686edec4bbb34e82fbd08559f8bb6266544",
                    "size": 2359,
                    "url": "https://launcher.mojang.com/v1/objects/09a47686edec4bbb34e82fbd08559f8bb6266544/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/zh": {
            "type": "directory"
        },
        "lib/locale/zh.GBK": {
            "type": "directory"
        },
        "lib/locale/zh.GBK/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/zh.GBK/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "75fd04045bf5890b8bb822770bfdb90a2e9ea65b",
                    "size": 902,
                    "url": "https://launcher.mojang.com/v1/objects/75fd04045bf5890b8bb822770bfdb90a2e9ea65b/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "7006fe7767b8807441a1f359a90509b3e507b0d1",
                    "size": 2002,
                    "url": "https://launcher.mojang.com/v1/objects/7006fe7767b8807441a1f359a90509b3e507b0d1/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/zh/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/zh/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "75fd04045bf5890b8bb822770bfdb90a2e9ea65b",
                    "size": 902,
                    "url": "https://launcher.mojang.com/v1/objects/75fd04045bf5890b8bb822770bfdb90a2e9ea65b/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "7006fe7767b8807441a1f359a90509b3e507b0d1",
                    "size": 2002,
                    "url": "https://launcher.mojang.com/v1/objects/7006fe7767b8807441a1f359a90509b3e507b0d1/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/zh_HK.BIG5HK": {
            "type": "directory"
        },
        "lib/locale/zh_HK.BIG5HK/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/zh_HK.BIG5HK/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "3a1397bb1b1741697be1479232b6d9599940c851",
                    "size": 912,
                    "url": "https://launcher.mojang.com/v1/objects/3a1397bb1b1741697be1479232b6d9599940c851/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "c6023544067278c78599921f1032de353ff7da42",
                    "size": 2025,
                    "url": "https://launcher.mojang.com/v1/objects/c6023544067278c78599921f1032de353ff7da42/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/zh_TW": {
            "type": "directory"
        },
        "lib/locale/zh_TW.BIG5": {
            "type": "directory"
        },
        "lib/locale/zh_TW.BIG5/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/zh_TW.BIG5/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "3a1397bb1b1741697be1479232b6d9599940c851",
                    "size": 912,
                    "url": "https://launcher.mojang.com/v1/objects/3a1397bb1b1741697be1479232b6d9599940c851/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "c6023544067278c78599921f1032de353ff7da42",
                    "size": 2025,
                    "url": "https://launcher.mojang.com/v1/objects/c6023544067278c78599921f1032de353ff7da42/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/locale/zh_TW/LC_MESSAGES": {
            "type": "directory"
        },
        "lib/locale/zh_TW/LC_MESSAGES/sunw_java_plugin.mo": {
            "downloads": {
                "lzma": {
                    "sha1": "c05e610e75182f0c4e77f3e7a4d9670ed62bf63c",
                    "size": 897,
                    "url": "https://launcher.mojang.com/v1/objects/c05e610e75182f0c4e77f3e7a4d9670ed62bf63c/sunw_java_plugin.mo"
                },
                "raw": {
                    "sha1": "f9b972dd059eae3cd337dfcef6a178e8ed8a7db6",
                    "size": 2025,
                    "url": "https://launcher.mojang.com/v1/objects/f9b972dd059eae3cd337dfcef6a178e8ed8a7db6/sunw_java_plugin.mo"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/logging.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "642202a58e5216d086ad37c0b5a633be802edc78",
                    "size": 896,
                    "url": "https://launcher.mojang.com/v1/objects/642202a58e5216d086ad37c0b5a633be802edc78/logging.properties"
                },
                "raw": {
                    "sha1": "89da8094484891f9ec1fa40c6c8b61f94c5869d0",
                    "size": 2455,
                    "url": "https://launcher.mojang.com/v1/objects/89da8094484891f9ec1fa40c6c8b61f94c5869d0/logging.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/management": {
            "type": "directory"
        },
        "lib/management-agent.jar": {
            "downloads": {
                "lzma": {
                    "sha1": "3ea0bf17e14b3428296a0f4011bf4025fcbfa4bd",
                    "size": 243,
                    "url": "https://launcher.mojang.com/v1/objects/3ea0bf17e14b3428296a0f4011bf4025fcbfa4bd/management-agent.jar"
                },
                "raw": {
                    "sha1": "9fbed36522aa3a80bac08a328942cbc5ef39ca8e",
                    "size": 381,
                    "url": "https://launcher.mojang.com/v1/objects/9fbed36522aa3a80bac08a328942cbc5ef39ca8e/management-agent.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/management/jmxremote.access": {
            "downloads": {
                "lzma": {
                    "sha1": "69042ff1b14165db19c9d728614639dec16d6a31",
                    "size": 1419,
                    "url": "https://launcher.mojang.com/v1/objects/69042ff1b14165db19c9d728614639dec16d6a31/jmxremote.access"
                },
                "raw": {
                    "sha1": "21200eaad898ba4a2a8834a032efb6616fabb930",
                    "size": 3998,
                    "url": "https://launcher.mojang.com/v1/objects/21200eaad898ba4a2a8834a032efb6616fabb930/jmxremote.access"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/management/jmxremote.password.template": {
            "downloads": {
                "lzma": {
                    "sha1": "556c64b1e920766f8867be3964de6e49f5b81a60",
                    "size": 1129,
                    "url": "https://launcher.mojang.com/v1/objects/556c64b1e920766f8867be3964de6e49f5b81a60/jmxremote.password.template"
                },
                "raw": {
                    "sha1": "c1e0f01408bf20fbbb8b4810520c725f70050db5",
                    "size": 2856,
                    "url": "https://launcher.mojang.com/v1/objects/c1e0f01408bf20fbbb8b4810520c725f70050db5/jmxremote.password.template"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/management/management.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "3e52f9baa6394ca6956845424c607e5cde5d3c67",
                    "size": 3176,
                    "url": "https://launcher.mojang.com/v1/objects/3e52f9baa6394ca6956845424c607e5cde5d3c67/management.properties"
                },
                "raw": {
                    "sha1": "e0451d8d7d9e84d7b1c39ec7d00993307a5cbbf1",
                    "size": 14630,
                    "url": "https://launcher.mojang.com/v1/objects/e0451d8d7d9e84d7b1c39ec7d00993307a5cbbf1/management.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/management/snmp.acl.template": {
            "downloads": {
                "lzma": {
                    "sha1": "9a4aa6396c3b488b0663bed5e5ecb762985669c9",
                    "size": 1121,
                    "url": "https://launcher.mojang.com/v1/objects/9a4aa6396c3b488b0663bed5e5ecb762985669c9/snmp.acl.template"
                },
                "raw": {
                    "sha1": "2e9f9ac287274532eb1f0d1afcefd7f3e97cc794",
                    "size": 3376,
                    "url": "https://launcher.mojang.com/v1/objects/2e9f9ac287274532eb1f0d1afcefd7f3e97cc794/snmp.acl.template"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/meta-index": {
            "downloads": {
                "lzma": {
                    "sha1": "1ac60b31362fda4725c665b591c5fbe384cbc8c1",
                    "size": 788,
                    "url": "https://launcher.mojang.com/v1/objects/1ac60b31362fda4725c665b591c5fbe384cbc8c1/meta-index"
                },
                "raw": {
                    "sha1": "bf204f09242203e713c31785158a0792f9edb600",
                    "size": 2034,
                    "url": "https://launcher.mojang.com/v1/objects/bf204f09242203e713c31785158a0792f9edb600/meta-index"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/net.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "e9ec3981a0797bf55bb87b24d9eb651ce7e6916b",
                    "size": 1830,
                    "url": "https://launcher.mojang.com/v1/objects/e9ec3981a0797bf55bb87b24d9eb651ce7e6916b/net.properties"
                },
                "raw": {
                    "sha1": "fd9471742eb759f4478bb1de9a0dc0527265b6ea",
                    "size": 5352,
                    "url": "https://launcher.mojang.com/v1/objects/fd9471742eb759f4478bb1de9a0dc0527265b6ea/net.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/oblique-fonts": {
            "type": "directory"
        },
        "lib/oblique-fonts/LucidaSansDemiOblique.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "49c8980c1b89bbdbab59d0f5bd5bebf0afcb93b2",
                    "size": 38580,
                    "url": "https://launcher.mojang.com/v1/objects/49c8980c1b89bbdbab59d0f5bd5bebf0afcb93b2/LucidaSansDemiOblique.ttf"
                },
                "raw": {
                    "sha1": "53e4e12a675ac222469341c3dbc102464a1be4c7",
                    "size": 91352,
                    "url": "https://launcher.mojang.com/v1/objects/53e4e12a675ac222469341c3dbc102464a1be4c7/LucidaSansDemiOblique.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/oblique-fonts/LucidaSansOblique.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "553123c0edcd08035dede4ffd92b5b81c9a7538a",
                    "size": 116575,
                    "url": "https://launcher.mojang.com/v1/objects/553123c0edcd08035dede4ffd92b5b81c9a7538a/LucidaSansOblique.ttf"
                },
                "raw": {
                    "sha1": "95a195ad4fc520b3e395c85b747fc3024d118dd9",
                    "size": 253724,
                    "url": "https://launcher.mojang.com/v1/objects/95a195ad4fc520b3e395c85b747fc3024d118dd9/LucidaSansOblique.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/oblique-fonts/LucidaTypewriterBoldOblique.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "2475b08151556ad4d89bb1d2b6494c6bee9abd82",
                    "size": 29954,
                    "url": "https://launcher.mojang.com/v1/objects/2475b08151556ad4d89bb1d2b6494c6bee9abd82/LucidaTypewriterBoldOblique.ttf"
                },
                "raw": {
                    "sha1": "f331fc8b0cc494702bc46b690f2b8eed36469a02",
                    "size": 63168,
                    "url": "https://launcher.mojang.com/v1/objects/f331fc8b0cc494702bc46b690f2b8eed36469a02/LucidaTypewriterBoldOblique.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/oblique-fonts/LucidaTypewriterOblique.ttf": {
            "downloads": {
                "lzma": {
                    "sha1": "5b970bc3b7abb21dce1aa28ff7f03459d351e552",
                    "size": 60133,
                    "url": "https://launcher.mojang.com/v1/objects/5b970bc3b7abb21dce1aa28ff7f03459d351e552/LucidaTypewriterOblique.ttf"
                },
                "raw": {
                    "sha1": "f8ea00db73f8a89a27674d050edc37c2280930e1",
                    "size": 137484,
                    "url": "https://launcher.mojang.com/v1/objects/f8ea00db73f8a89a27674d050edc37c2280930e1/LucidaTypewriterOblique.ttf"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/oblique-fonts/fonts.dir": {
            "downloads": {
                "lzma": {
                    "sha1": "067528c789bd713c7c3f34e779aa6e2e8253dcf6",
                    "size": 188,
                    "url": "https://launcher.mojang.com/v1/objects/067528c789bd713c7c3f34e779aa6e2e8253dcf6/fonts.dir"
                },
                "raw": {
                    "sha1": "5aee54ffba9e33de56fd84ef64fa496b898585bb",
                    "size": 2115,
                    "url": "https://launcher.mojang.com/v1/objects/5aee54ffba9e33de56fd84ef64fa496b898585bb/fonts.dir"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/plugin.jar": {
            "downloads": {
                "raw": {
                    "sha1": "3f250842c79112bae5369e372025b166990820e8",
                    "size": 950772,
                    "url": "https://launcher.mojang.com/v1/objects/3f250842c79112bae5369e372025b166990820e8/plugin.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/psfont.properties.ja": {
            "downloads": {
                "lzma": {
                    "sha1": "7ca1cc244ed251cd1eb2347f1eea37d7d18c8ad4",
                    "size": 701,
                    "url": "https://launcher.mojang.com/v1/objects/7ca1cc244ed251cd1eb2347f1eea37d7d18c8ad4/psfont.properties.ja"
                },
                "raw": {
                    "sha1": "56ed1c661eeede17b4fae8c9de7b5edbad387abc",
                    "size": 2796,
                    "url": "https://launcher.mojang.com/v1/objects/56ed1c661eeede17b4fae8c9de7b5edbad387abc/psfont.properties.ja"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/psfontj2d.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "4252fa01af8739a3545e2b705e3383892e22ab40",
                    "size": 2278,
                    "url": "https://launcher.mojang.com/v1/objects/4252fa01af8739a3545e2b705e3383892e22ab40/psfontj2d.properties"
                },
                "raw": {
                    "sha1": "aa327a22a49967f4d74afeee6726f505f209692f",
                    "size": 10393,
                    "url": "https://launcher.mojang.com/v1/objects/aa327a22a49967f4d74afeee6726f505f209692f/psfontj2d.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/resources.jar": {
            "downloads": {
                "lzma": {
                    "sha1": "1b0e08441750dc17efe4b527aa146da6cc14e8a6",
                    "size": 579294,
                    "url": "https://launcher.mojang.com/v1/objects/1b0e08441750dc17efe4b527aa146da6cc14e8a6/resources.jar"
                },
                "raw": {
                    "sha1": "daa021906e4648d4c37e798c11733dc2047f2da1",
                    "size": 3505206,
                    "url": "https://launcher.mojang.com/v1/objects/daa021906e4648d4c37e798c11733dc2047f2da1/resources.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/rt.jar": {
            "downloads": {
                "lzma": {
                    "sha1": "fc4a8681aeda29c2a2a3fd11bad7729543283f3d",
                    "size": 14378994,
                    "url": "https://launcher.mojang.com/v1/objects/fc4a8681aeda29c2a2a3fd11bad7729543283f3d/rt.jar"
                },
                "raw": {
                    "sha1": "5396b0954a20f3210f1f4f1886ead30880d6ebfe",
                    "size": 66334986,
                    "url": "https://launcher.mojang.com/v1/objects/5396b0954a20f3210f1f4f1886ead30880d6ebfe/rt.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security": {
            "type": "directory"
        },
        "lib/security/blacklist": {
            "downloads": {
                "lzma": {
                    "sha1": "8206fce6c1d91a39fdf78e8e79e953913994a1cd",
                    "size": 1969,
                    "url": "https://launcher.mojang.com/v1/objects/8206fce6c1d91a39fdf78e8e79e953913994a1cd/blacklist"
                },
                "raw": {
                    "sha1": "d4ffb3857eab403955ce9d156e46d056061e6a5a",
                    "size": 4054,
                    "url": "https://launcher.mojang.com/v1/objects/d4ffb3857eab403955ce9d156e46d056061e6a5a/blacklist"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/blacklisted.certs": {
            "downloads": {
                "lzma": {
                    "sha1": "8311bead054caf6cfe678d4b7998de4caaabfa53",
                    "size": 806,
                    "url": "https://launcher.mojang.com/v1/objects/8311bead054caf6cfe678d4b7998de4caaabfa53/blacklisted.certs"
                },
                "raw": {
                    "sha1": "c5c005c29a80493f5c31cd7eb629ac1b9c752404",
                    "size": 1273,
                    "url": "https://launcher.mojang.com/v1/objects/c5c005c29a80493f5c31cd7eb629ac1b9c752404/blacklisted.certs"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/cacerts": {
            "downloads": {
                "lzma": {
                    "sha1": "654dd94809655d5b28385cbb5eba8d6ad9f2c1aa",
                    "size": 67802,
                    "url": "https://launcher.mojang.com/v1/objects/654dd94809655d5b28385cbb5eba8d6ad9f2c1aa/cacerts"
                },
                "raw": {
                    "sha1": "2917859c443c68e19f93abcd1315c3c2904cbef9",
                    "size": 104430,
                    "url": "https://launcher.mojang.com/v1/objects/2917859c443c68e19f93abcd1315c3c2904cbef9/cacerts"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/java.policy": {
            "downloads": {
                "lzma": {
                    "sha1": "b601c420d02ef3dbd8595453d08fdef91134e8b5",
                    "size": 647,
                    "url": "https://launcher.mojang.com/v1/objects/b601c420d02ef3dbd8595453d08fdef91134e8b5/java.policy"
                },
                "raw": {
                    "sha1": "c0112209a567b3b523cfed7041709f9440227968",
                    "size": 2466,
                    "url": "https://launcher.mojang.com/v1/objects/c0112209a567b3b523cfed7041709f9440227968/java.policy"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/java.security": {
            "downloads": {
                "lzma": {
                    "sha1": "531620e82ca0365ce8dc97096bb0ac5a7ace5952",
                    "size": 10959,
                    "url": "https://launcher.mojang.com/v1/objects/531620e82ca0365ce8dc97096bb0ac5a7ace5952/java.security"
                },
                "raw": {
                    "sha1": "5dcc17a168c53d0b366784e520bd4d55aa61ac18",
                    "size": 41528,
                    "url": "https://launcher.mojang.com/v1/objects/5dcc17a168c53d0b366784e520bd4d55aa61ac18/java.security"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/javaws.policy": {
            "downloads": {
                "raw": {
                    "sha1": "4384ca5e4d32f7dd86d8baddd1e690730d74e694",
                    "size": 98,
                    "url": "https://launcher.mojang.com/v1/objects/4384ca5e4d32f7dd86d8baddd1e690730d74e694/javaws.policy"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/policy": {
            "type": "directory"
        },
        "lib/security/policy/limited": {
            "type": "directory"
        },
        "lib/security/policy/limited/US_export_policy.jar": {
            "downloads": {
                "raw": {
                    "sha1": "7d69ea3b385bc067738520f1b5c549e1084be285",
                    "size": 3026,
                    "url": "https://launcher.mojang.com/v1/objects/7d69ea3b385bc067738520f1b5c549e1084be285/US_export_policy.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/policy/limited/local_policy.jar": {
            "downloads": {
                "raw": {
                    "sha1": "238b8826e110f58acb2e1959773b0a577cd4d569",
                    "size": 3527,
                    "url": "https://launcher.mojang.com/v1/objects/238b8826e110f58acb2e1959773b0a577cd4d569/local_policy.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/policy/unlimited": {
            "type": "directory"
        },
        "lib/security/policy/unlimited/US_export_policy.jar": {
            "downloads": {
                "raw": {
                    "sha1": "f6fb2af1e87fc622cda194a7d6b5f5f069653ff1",
                    "size": 3023,
                    "url": "https://launcher.mojang.com/v1/objects/f6fb2af1e87fc622cda194a7d6b5f5f069653ff1/US_export_policy.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/policy/unlimited/local_policy.jar": {
            "downloads": {
                "raw": {
                    "sha1": "517368ab2cbaf6b42ea0b963f98eeedd996e83e3",
                    "size": 3035,
                    "url": "https://launcher.mojang.com/v1/objects/517368ab2cbaf6b42ea0b963f98eeedd996e83e3/local_policy.jar"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/security/trusted.libraries": {
            "downloads": {
                "raw": {
                    "sha1": "da39a3ee5e6b4b0d3255bfef95601890afd80709",
                    "size": 0,
                    "url": "https://launcher.mojang.com/v1/objects/da39a3ee5e6b4b0d3255bfef95601890afd80709/trusted.libraries"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/sound.properties": {
            "downloads": {
                "lzma": {
                    "sha1": "3b5f7e4ec437d79048af35094290577f483b3fe1",
                    "size": 473,
                    "url": "https://launcher.mojang.com/v1/objects/3b5f7e4ec437d79048af35094290577f483b3fe1/sound.properties"
                },
                "raw": {
                    "sha1": "9afceb218059d981d0fa9f07aad3c5097cf41b0c",
                    "size": 1210,
                    "url": "https://launcher.mojang.com/v1/objects/9afceb218059d981d0fa9f07aad3c5097cf41b0c/sound.properties"
                }
            },
            "executable": false,
            "type": "file"
        },
        "lib/tzdb.dat": {
            "downloads": {
                "lzma": {
                    "sha1": "39c69339965484afe89c14111baeeb862fdefd97",
                    "size": 32547,
                    "url": "https://launcher.mojang.com/v1/objects/39c69339965484afe89c14111baeeb862fdefd97/tzdb.dat"
                },
                "raw": {
                    "sha1": "b59c07e3619271a3b9861e999f4b138e971baf69",
                    "size": 105734,
                    "url": "https://launcher.mojang.com/v1/objects/b59c07e3619271a3b9861e999f4b138e971baf69/tzdb.dat"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man": {
            "type": "directory"
        },
        "man/ja": {
            "target": "ja_JP.UTF-8",
            "type": "link"
        },
        "man/ja_JP.UTF-8": {
            "type": "directory"
        },
        "man/ja_JP.UTF-8/man1": {
            "type": "directory"
        },
        "man/ja_JP.UTF-8/man1/java.1": {
            "downloads": {
                "lzma": {
                    "sha1": "f9da09710b6c6df23c256e324a0c4df00a0d6ded",
                    "size": 25461,
                    "url": "https://launcher.mojang.com/v1/objects/f9da09710b6c6df23c256e324a0c4df00a0d6ded/java.1"
                },
                "raw": {
                    "sha1": "b0b12a0bb66e6171771ca4b1dfca32fb759bcaec",
                    "size": 148688,
                    "url": "https://launcher.mojang.com/v1/objects/b0b12a0bb66e6171771ca4b1dfca32fb759bcaec/java.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/javaws.1": {
            "downloads": {
                "lzma": {
                    "sha1": "6188fae453ca09ccb19be5c9f4d2059926b36267",
                    "size": 2154,
                    "url": "https://launcher.mojang.com/v1/objects/6188fae453ca09ccb19be5c9f4d2059926b36267/javaws.1"
                },
                "raw": {
                    "sha1": "8f39d928870268ace07bedfebd18db1e1d07fc37",
                    "size": 6641,
                    "url": "https://launcher.mojang.com/v1/objects/8f39d928870268ace07bedfebd18db1e1d07fc37/javaws.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/jjs.1": {
            "downloads": {
                "lzma": {
                    "sha1": "6e42b989d28b185dc1aab50c0389834e649a37d4",
                    "size": 3452,
                    "url": "https://launcher.mojang.com/v1/objects/6e42b989d28b185dc1aab50c0389834e649a37d4/jjs.1"
                },
                "raw": {
                    "sha1": "e023322a2013912315a2bd1034e6f829a27c76e0",
                    "size": 11365,
                    "url": "https://launcher.mojang.com/v1/objects/e023322a2013912315a2bd1034e6f829a27c76e0/jjs.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/keytool.1": {
            "downloads": {
                "lzma": {
                    "sha1": "a78134a4bddd53d684a70aa677e51a215db1c9cb",
                    "size": 20698,
                    "url": "https://launcher.mojang.com/v1/objects/a78134a4bddd53d684a70aa677e51a215db1c9cb/keytool.1"
                },
                "raw": {
                    "sha1": "148583c837eaaf6333ccfd8c9e8df08574e14b0c",
                    "size": 111033,
                    "url": "https://launcher.mojang.com/v1/objects/148583c837eaaf6333ccfd8c9e8df08574e14b0c/keytool.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/orbd.1": {
            "downloads": {
                "lzma": {
                    "sha1": "326af0dcbff173ef8aee29163dbe146d7389cc3e",
                    "size": 4225,
                    "url": "https://launcher.mojang.com/v1/objects/326af0dcbff173ef8aee29163dbe146d7389cc3e/orbd.1"
                },
                "raw": {
                    "sha1": "95651622d33c08286858ec337edd3ea72acd93dc",
                    "size": 16092,
                    "url": "https://launcher.mojang.com/v1/objects/95651622d33c08286858ec337edd3ea72acd93dc/orbd.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/pack200.1": {
            "downloads": {
                "lzma": {
                    "sha1": "e0eedafa748c61a44e5be4355fe9d44b05048e80",
                    "size": 4293,
                    "url": "https://launcher.mojang.com/v1/objects/e0eedafa748c61a44e5be4355fe9d44b05048e80/pack200.1"
                },
                "raw": {
                    "sha1": "aa21a0ab75707f7fc66e83c7a392e69b37ddf80e",
                    "size": 14482,
                    "url": "https://launcher.mojang.com/v1/objects/aa21a0ab75707f7fc66e83c7a392e69b37ddf80e/pack200.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/policytool.1": {
            "downloads": {
                "lzma": {
                    "sha1": "3c766ed12dab58166169d35680c392a6be1814a1",
                    "size": 1380,
                    "url": "https://launcher.mojang.com/v1/objects/3c766ed12dab58166169d35680c392a6be1814a1/policytool.1"
                },
                "raw": {
                    "sha1": "80879c74e072a98fad6f32b3283331aaf9bd002f",
                    "size": 4020,
                    "url": "https://launcher.mojang.com/v1/objects/80879c74e072a98fad6f32b3283331aaf9bd002f/policytool.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/rmid.1": {
            "downloads": {
                "lzma": {
                    "sha1": "1e20779d990beacc32a48237777d670fcc47ca14",
                    "size": 4836,
                    "url": "https://launcher.mojang.com/v1/objects/1e20779d990beacc32a48237777d670fcc47ca14/rmid.1"
                },
                "raw": {
                    "sha1": "7e40cb8003d098d6e36f45640b26f979ac94b5c5",
                    "size": 19715,
                    "url": "https://launcher.mojang.com/v1/objects/7e40cb8003d098d6e36f45640b26f979ac94b5c5/rmid.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/rmiregistry.1": {
            "downloads": {
                "lzma": {
                    "sha1": "aaf4ffe07e954f8696eef1ecb7a5e244628d0ad9",
                    "size": 1627,
                    "url": "https://launcher.mojang.com/v1/objects/aaf4ffe07e954f8696eef1ecb7a5e244628d0ad9/rmiregistry.1"
                },
                "raw": {
                    "sha1": "c53c52f3ae7a011c135894c9fc51b741e729c33d",
                    "size": 4557,
                    "url": "https://launcher.mojang.com/v1/objects/c53c52f3ae7a011c135894c9fc51b741e729c33d/rmiregistry.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/servertool.1": {
            "downloads": {
                "lzma": {
                    "sha1": "3b9e624e9d1cf2959b438a35061162e2100ddecd",
                    "size": 2626,
                    "url": "https://launcher.mojang.com/v1/objects/3b9e624e9d1cf2959b438a35061162e2100ddecd/servertool.1"
                },
                "raw": {
                    "sha1": "50ab8bcd9dd9d0b1a3d81348fbce1c8f82e7189e",
                    "size": 9081,
                    "url": "https://launcher.mojang.com/v1/objects/50ab8bcd9dd9d0b1a3d81348fbce1c8f82e7189e/servertool.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/tnameserv.1": {
            "downloads": {
                "lzma": {
                    "sha1": "bb3106ff74c60a76de3d20659b9c2128c70f3bf2",
                    "size": 4478,
                    "url": "https://launcher.mojang.com/v1/objects/bb3106ff74c60a76de3d20659b9c2128c70f3bf2/tnameserv.1"
                },
                "raw": {
                    "sha1": "01e714671ecd1167edcb5310b16a9c59c33c3eaa",
                    "size": 17722,
                    "url": "https://launcher.mojang.com/v1/objects/01e714671ecd1167edcb5310b16a9c59c33c3eaa/tnameserv.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/ja_JP.UTF-8/man1/unpack200.1": {
            "downloads": {
                "lzma": {
                    "sha1": "c115a881cf800b08df294df55d9f250ae944e33c",
                    "size": 1973,
                    "url": "https://launcher.mojang.com/v1/objects/c115a881cf800b08df294df55d9f250ae944e33c/unpack200.1"
                },
                "raw": {
                    "sha1": "7c882bba0067367a41ad84868d18793b8a7397a3",
                    "size": 5382,
                    "url": "https://launcher.mojang.com/v1/objects/7c882bba0067367a41ad84868d18793b8a7397a3/unpack200.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1": {
            "type": "directory"
        },
        "man/man1/java.1": {
            "downloads": {
                "lzma": {
                    "sha1": "06a6b0275c202bf698d73ca71f95618d56d81c15",
                    "size": 25796,
                    "url": "https://launcher.mojang.com/v1/objects/06a6b0275c202bf698d73ca71f95618d56d81c15/java.1"
                },
                "raw": {
                    "sha1": "69fec7a341aa91f18dbdcdb95952dede7e1b689a",
                    "size": 124796,
                    "url": "https://launcher.mojang.com/v1/objects/69fec7a341aa91f18dbdcdb95952dede7e1b689a/java.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/javaws.1": {
            "downloads": {
                "lzma": {
                    "sha1": "4bae251c6dfb5420f56928815cf80d0b6d517a1f",
                    "size": 1759,
                    "url": "https://launcher.mojang.com/v1/objects/4bae251c6dfb5420f56928815cf80d0b6d517a1f/javaws.1"
                },
                "raw": {
                    "sha1": "e61e44e101b1bc119c2d2d4b10320f38b36a8036",
                    "size": 4897,
                    "url": "https://launcher.mojang.com/v1/objects/e61e44e101b1bc119c2d2d4b10320f38b36a8036/javaws.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/jjs.1": {
            "downloads": {
                "lzma": {
                    "sha1": "29683cf2bd47015c9461b688749ddffd95f6671d",
                    "size": 1881,
                    "url": "https://launcher.mojang.com/v1/objects/29683cf2bd47015c9461b688749ddffd95f6671d/jjs.1"
                },
                "raw": {
                    "sha1": "78d419bd3a7f3e0802d5220e690429194b5d1beb",
                    "size": 4932,
                    "url": "https://launcher.mojang.com/v1/objects/78d419bd3a7f3e0802d5220e690429194b5d1beb/jjs.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/keytool.1": {
            "downloads": {
                "lzma": {
                    "sha1": "b67e5126d43713ee3675706724b34061578b42db",
                    "size": 19690,
                    "url": "https://launcher.mojang.com/v1/objects/b67e5126d43713ee3675706724b34061578b42db/keytool.1"
                },
                "raw": {
                    "sha1": "4c976f86057ab779763fcfb98f5702ebef47f629",
                    "size": 86925,
                    "url": "https://launcher.mojang.com/v1/objects/4c976f86057ab779763fcfb98f5702ebef47f629/keytool.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/orbd.1": {
            "downloads": {
                "lzma": {
                    "sha1": "147064d6f7e027002e296bb246ae572d0ce0495b",
                    "size": 3708,
                    "url": "https://launcher.mojang.com/v1/objects/147064d6f7e027002e296bb246ae572d0ce0495b/orbd.1"
                },
                "raw": {
                    "sha1": "64201e1846fcf1dcc45c786ffeab89426d1c7742",
                    "size": 12180,
                    "url": "https://launcher.mojang.com/v1/objects/64201e1846fcf1dcc45c786ffeab89426d1c7742/orbd.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/pack200.1": {
            "downloads": {
                "lzma": {
                    "sha1": "fe17486bbe9c58cf4182fa056b9cd124e8295607",
                    "size": 3724,
                    "url": "https://launcher.mojang.com/v1/objects/fe17486bbe9c58cf4182fa056b9cd124e8295607/pack200.1"
                },
                "raw": {
                    "sha1": "26826cf52b89924f2d2a60d6cda798891875eae6",
                    "size": 11623,
                    "url": "https://launcher.mojang.com/v1/objects/26826cf52b89924f2d2a60d6cda798891875eae6/pack200.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/policytool.1": {
            "downloads": {
                "lzma": {
                    "sha1": "bd154e7c39aca71d15b2098c588866f8d95bc743",
                    "size": 1122,
                    "url": "https://launcher.mojang.com/v1/objects/bd154e7c39aca71d15b2098c588866f8d95bc743/policytool.1"
                },
                "raw": {
                    "sha1": "ab296625155d9a2b25ecc2b4feff2f741b3ad136",
                    "size": 3235,
                    "url": "https://launcher.mojang.com/v1/objects/ab296625155d9a2b25ecc2b4feff2f741b3ad136/policytool.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/rmid.1": {
            "downloads": {
                "lzma": {
                    "sha1": "6a7da234e7f43ebca5c4ba8cd862fda3be62fbaa",
                    "size": 4255,
                    "url": "https://launcher.mojang.com/v1/objects/6a7da234e7f43ebca5c4ba8cd862fda3be62fbaa/rmid.1"
                },
                "raw": {
                    "sha1": "6f10e214d7950a6a8460524e41dc700f112f89e5",
                    "size": 15979,
                    "url": "https://launcher.mojang.com/v1/objects/6f10e214d7950a6a8460524e41dc700f112f89e5/rmid.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/rmiregistry.1": {
            "downloads": {
                "lzma": {
                    "sha1": "f40dd17e3a734600ad1828b0c42d3a1685c4c520",
                    "size": 1301,
                    "url": "https://launcher.mojang.com/v1/objects/f40dd17e3a734600ad1828b0c42d3a1685c4c520/rmiregistry.1"
                },
                "raw": {
                    "sha1": "d9a3d23fab689df5bb9a792b88f462f939b49f70",
                    "size": 3449,
                    "url": "https://launcher.mojang.com/v1/objects/d9a3d23fab689df5bb9a792b88f462f939b49f70/rmiregistry.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/servertool.1": {
            "downloads": {
                "lzma": {
                    "sha1": "74f1e10712202cd3ca0ff5833de05b7ee67092e1",
                    "size": 2307,
                    "url": "https://launcher.mojang.com/v1/objects/74f1e10712202cd3ca0ff5833de05b7ee67092e1/servertool.1"
                },
                "raw": {
                    "sha1": "e6c7b510740ac8681a9bfb5f4ee1f0306125b728",
                    "size": 7237,
                    "url": "https://launcher.mojang.com/v1/objects/e6c7b510740ac8681a9bfb5f4ee1f0306125b728/servertool.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/tnameserv.1": {
            "downloads": {
                "lzma": {
                    "sha1": "4bec7f4e070d023f124f9352a8971d7acd249a15",
                    "size": 3955,
                    "url": "https://launcher.mojang.com/v1/objects/4bec7f4e070d023f124f9352a8971d7acd249a15/tnameserv.1"
                },
                "raw": {
                    "sha1": "a31dbbe800d49cb371fab9a4b73d22c3bf8799ad",
                    "size": 15747,
                    "url": "https://launcher.mojang.com/v1/objects/a31dbbe800d49cb371fab9a4b73d22c3bf8799ad/tnameserv.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "man/man1/unpack200.1": {
            "downloads": {
                "lzma": {
                    "sha1": "f8e73863187929debf2ea6dadefb2995ec7917e7",
                    "size": 1672,
                    "url": "https://launcher.mojang.com/v1/objects/f8e73863187929debf2ea6dadefb2995ec7917e7/unpack200.1"
                },
                "raw": {
                    "sha1": "437f7233d738cb9b822e99003127049005663e0f",
                    "size": 4244,
                    "url": "https://launcher.mojang.com/v1/objects/437f7233d738cb9b822e99003127049005663e0f/unpack200.1"
                }
            },
            "executable": false,
            "type": "file"
        },
        "plugin": {
            "type": "directory"
        },
        "plugin/desktop": {
            "type": "directory"
        },
        "plugin/desktop/sun_java.desktop": {
            "downloads": {
                "lzma": {
                    "sha1": "49ab0ccb54c3be68281d05055bc56a88b1281d3c",
                    "size": 447,
                    "url": "https://launcher.mojang.com/v1/objects/49ab0ccb54c3be68281d05055bc56a88b1281d3c/sun_java.desktop"
                },
                "raw": {
                    "sha1": "79120ee8160ad6f3c9b90c2641fb7edf3af96b5d",
                    "size": 624,
                    "url": "https://launcher.mojang.com/v1/objects/79120ee8160ad6f3c9b90c2641fb7edf3af96b5d/sun_java.desktop"
                }
            },
            "executable": false,
            "type": "file"
        },
        "plugin/desktop/sun_java.png": {
            "downloads": {
                "raw": {
                    "sha1": "699c41e97a35414e72a80327a54d6e14e874e951",
                    "size": 4351,
                    "url": "https://launcher.mojang.com/v1/objects/699c41e97a35414e72a80327a54d6e14e874e951/sun_java.png"
                }
            },
            "executable": false,
            "type": "file"
        },
        "release": {
            "downloads": {
                "raw": {
                    "sha1": "cb462682644c0275d94a45b759108815f3112064",
                    "size": 424,
                    "url": "https://launcher.mojang.com/v1/objects/cb462682644c0275d94a45b759108815f3112064/release"
                }
            },
            "executable": false,
            "type": "file"
        }
    }
}