aboutsummaryrefslogtreecommitdiff
path: root/java/intellij-ultimate/pkg-plist
blob: 39ee76178f2511e57bb41bc391c43f78feb5c98a (plain) (blame)
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
bin/idea
man/man1/idea.1.gz
share/applications/idea.desktop
%%DATADIR%%/Install-Linux-tar.txt
%%DATADIR%%/bin/appletviewer.policy
%%DATADIR%%/bin/format.sh
%%DATADIR%%/bin/idea.png
%%DATADIR%%/bin/idea.properties
%%DATADIR%%/bin/idea.sh
%%DATADIR%%/bin/idea.svg
%%DATADIR%%/bin/idea.vmoptions
%%DATADIR%%/bin/idea64.vmoptions
%%DATADIR%%/bin/inspect.sh
%%DATADIR%%/bin/log.xml
%%DATADIR%%/bin/ltedit.sh
%%DATADIR%%/bin/printenv.py
%%DATADIR%%/bin/restart.py
%%DATADIR%%/build.txt
%%DATADIR%%/help/ReferenceCard.pdf
%%DATADIR%%/help/ReferenceCardForMac.pdf
%%DATADIR%%/icons.db
%%DATADIR%%/lib/FastInfoset-1.2.15.jar
%%DATADIR%%/lib/HdrHistogram-2.1.4.jar
%%DATADIR%%/lib/RoaringBitmap-0.9.0.jar
%%DATADIR%%/lib/aapt2-proto-0.3.1.jar
%%DATADIR%%/lib/animal-sniffer-annotations-1.18.jar
%%DATADIR%%/lib/annotations-4.1.1.4.jar
%%DATADIR%%/lib/annotations.jar
%%DATADIR%%/lib/ant/CONTRIBUTORS
%%DATADIR%%/lib/ant/INSTALL
%%DATADIR%%/lib/ant/KEYS
%%DATADIR%%/lib/ant/LICENSE
%%DATADIR%%/lib/ant/NOTICE
%%DATADIR%%/lib/ant/README
%%DATADIR%%/lib/ant/WHATSNEW
%%DATADIR%%/lib/ant/contributors.xml
%%DATADIR%%/lib/ant/lib/README
%%DATADIR%%/lib/ant/lib/ant-antlr.jar
%%DATADIR%%/lib/ant/lib/ant-antlr.pom
%%DATADIR%%/lib/ant/lib/ant-apache-bcel.jar
%%DATADIR%%/lib/ant/lib/ant-apache-bcel.pom
%%DATADIR%%/lib/ant/lib/ant-apache-bsf.jar
%%DATADIR%%/lib/ant/lib/ant-apache-bsf.pom
%%DATADIR%%/lib/ant/lib/ant-apache-log4j.jar
%%DATADIR%%/lib/ant/lib/ant-apache-log4j.pom
%%DATADIR%%/lib/ant/lib/ant-apache-oro.jar
%%DATADIR%%/lib/ant/lib/ant-apache-oro.pom
%%DATADIR%%/lib/ant/lib/ant-apache-regexp.jar
%%DATADIR%%/lib/ant/lib/ant-apache-regexp.pom
%%DATADIR%%/lib/ant/lib/ant-apache-resolver.jar
%%DATADIR%%/lib/ant/lib/ant-apache-resolver.pom
%%DATADIR%%/lib/ant/lib/ant-apache-xalan2.jar
%%DATADIR%%/lib/ant/lib/ant-apache-xalan2.pom
%%DATADIR%%/lib/ant/lib/ant-commons-logging.jar
%%DATADIR%%/lib/ant/lib/ant-commons-logging.pom
%%DATADIR%%/lib/ant/lib/ant-commons-net.jar
%%DATADIR%%/lib/ant/lib/ant-commons-net.pom
%%DATADIR%%/lib/ant/lib/ant-jai.jar
%%DATADIR%%/lib/ant/lib/ant-jai.pom
%%DATADIR%%/lib/ant/lib/ant-javamail.jar
%%DATADIR%%/lib/ant/lib/ant-javamail.pom
%%DATADIR%%/lib/ant/lib/ant-jdepend.jar
%%DATADIR%%/lib/ant/lib/ant-jdepend.pom
%%DATADIR%%/lib/ant/lib/ant-jmf.jar
%%DATADIR%%/lib/ant/lib/ant-jmf.pom
%%DATADIR%%/lib/ant/lib/ant-jsch.jar
%%DATADIR%%/lib/ant/lib/ant-jsch.pom
%%DATADIR%%/lib/ant/lib/ant-junit.jar
%%DATADIR%%/lib/ant/lib/ant-junit.pom
%%DATADIR%%/lib/ant/lib/ant-junit4.jar
%%DATADIR%%/lib/ant/lib/ant-junit4.pom
%%DATADIR%%/lib/ant/lib/ant-junitlauncher.jar
%%DATADIR%%/lib/ant/lib/ant-junitlauncher.pom
%%DATADIR%%/lib/ant/lib/ant-launcher.jar
%%DATADIR%%/lib/ant/lib/ant-launcher.pom
%%DATADIR%%/lib/ant/lib/ant-netrexx.jar
%%DATADIR%%/lib/ant/lib/ant-netrexx.pom
%%DATADIR%%/lib/ant/lib/ant-parent.pom
%%DATADIR%%/lib/ant/lib/ant-swing.jar
%%DATADIR%%/lib/ant/lib/ant-swing.pom
%%DATADIR%%/lib/ant/lib/ant-testutil.jar
%%DATADIR%%/lib/ant/lib/ant-testutil.pom
%%DATADIR%%/lib/ant/lib/ant-xz.jar
%%DATADIR%%/lib/ant/lib/ant-xz.pom
%%DATADIR%%/lib/ant/lib/ant.jar
%%DATADIR%%/lib/ant/lib/ant.pom
%%DATADIR%%/lib/ant/lib/libraries.properties
%%DATADIR%%/lib/ant/src.zip
%%DATADIR%%/lib/asm-7.1.jar
%%DATADIR%%/lib/asm-all-9.0.jar
%%DATADIR%%/lib/asm-analysis-7.1.jar
%%DATADIR%%/lib/asm-commons-7.1.jar
%%DATADIR%%/lib/asm-tree-7.1.jar
%%DATADIR%%/lib/asm-util-7.1.jar
%%DATADIR%%/lib/async-profiler-1.8.1-1.jar
%%DATADIR%%/lib/automaton-1.12-1.jar
%%DATADIR%%/lib/baksmali-2.2.4.jar
%%DATADIR%%/lib/batik-anim-1.13.0-21.jar
%%DATADIR%%/lib/batik-awt-util-1.13.0-21.jar
%%DATADIR%%/lib/batik-bridge-1.13.0-21.jar
%%DATADIR%%/lib/batik-codec-1.13.0-21.jar
%%DATADIR%%/lib/batik-constants-1.13.0-21.jar
%%DATADIR%%/lib/batik-css-1.13.0-21.jar
%%DATADIR%%/lib/batik-dom-1.13.0-21.jar
%%DATADIR%%/lib/batik-ext-1.13.0-21.jar
%%DATADIR%%/lib/batik-gvt-1.13.0-21.jar
%%DATADIR%%/lib/batik-parser-1.13.0-21.jar
%%DATADIR%%/lib/batik-svg-dom-1.13.0-21.jar
%%DATADIR%%/lib/batik-svggen-1.13.0-21.jar
%%DATADIR%%/lib/batik-transcoder-1.13.0-21.jar
%%DATADIR%%/lib/batik-util-1.13.0-21.jar
%%DATADIR%%/lib/batik-xml-1.13.0-21.jar
%%DATADIR%%/lib/bcpkix-jdk15on-1.65.jar
%%DATADIR%%/lib/bcprov-jdk15on-1.65.jar
%%DATADIR%%/lib/blockmap-1.0.2.jar
%%DATADIR%%/lib/bootstrap.jar
%%DATADIR%%/lib/built-in-server.jar
%%DATADIR%%/lib/byte-buddy-agent-1.10.1.jar
%%DATADIR%%/lib/caffeine-2.8.5.jar
%%DATADIR%%/lib/cds/classesLogAgent.jar
%%DATADIR%%/lib/cglib-nodep-3.2.4.jar
%%DATADIR%%/lib/cli-parser-1.1.5.jar
%%DATADIR%%/lib/cloud-config-client.jar
%%DATADIR%%/lib/common-image-3.5.jar
%%DATADIR%%/lib/common-io-3.5.jar
%%DATADIR%%/lib/common-lang-3.5.jar
%%DATADIR%%/lib/commons-cli-1.4.jar
%%DATADIR%%/lib/commons-codec-1.14.jar
%%DATADIR%%/lib/commons-collections-3.2.2.jar
%%DATADIR%%/lib/commons-compress-1.20.jar
%%DATADIR%%/lib/commons-httpclient-3.1-patched.jar
%%DATADIR%%/lib/commons-imaging-1.0-RC-1.jar
%%DATADIR%%/lib/commons-io-2.7.jar
%%DATADIR%%/lib/commons-lang-2.4.jar
%%DATADIR%%/lib/commons-lang3-3.10.jar
%%DATADIR%%/lib/commons-logging-1.2.jar
%%DATADIR%%/lib/commons-net-3.6.jar
%%DATADIR%%/lib/configuration-store-impl.jar
%%DATADIR%%/lib/coverage-common.jar
%%DATADIR%%/lib/credential-store.jar
%%DATADIR%%/lib/dbus-java-3.2.1.jar
%%DATADIR%%/lib/delight-rhino-sandbox-0.0.11.jar
%%DATADIR%%/lib/dexlib2-2.2.4.jar
%%DATADIR%%/lib/dom-impl.jar
%%DATADIR%%/lib/dom-openapi.jar
%%DATADIR%%/lib/eddsa-0.3.0.jar
%%DATADIR%%/lib/error_prone_annotations-2.3.1.jar
%%DATADIR%%/lib/error_prone_annotations-2.3.4.jar
%%DATADIR%%/lib/extensions.jar
%%DATADIR%%/lib/external-system-rt.jar
%%DATADIR%%/lib/failureaccess-1.0.1.jar
%%DATADIR%%/lib/fluent-hc-4.5.12.jar
%%DATADIR%%/lib/forms-1.1-preview.jar
%%DATADIR%%/lib/forms_rt.jar
%%DATADIR%%/lib/grazie-spellchecker-0.1.9.jar
%%DATADIR%%/lib/groovy-2.5.11.jar
%%DATADIR%%/lib/groovy-json-2.5.11.jar
%%DATADIR%%/lib/groovy-jsr223-2.5.11.jar
%%DATADIR%%/lib/groovy-templates-2.5.11.jar
%%DATADIR%%/lib/groovy-xml-2.5.11.jar
%%DATADIR%%/lib/grpc-api-1.32.2.jar
%%DATADIR%%/lib/grpc-context-1.32.2.jar
%%DATADIR%%/lib/grpc-core-1.32.2.jar
%%DATADIR%%/lib/grpc-kotlin-stub-0.2.0.jar
%%DATADIR%%/lib/grpc-netty-shaded-1.32.2.jar
%%DATADIR%%/lib/grpc-protobuf-1.32.2.jar
%%DATADIR%%/lib/grpc-protobuf-lite-1.32.2.jar
%%DATADIR%%/lib/grpc-stub-1.32.2.jar
%%DATADIR%%/lib/gson-2.8.6.jar
%%DATADIR%%/lib/guava-29.0-jre.jar
%%DATADIR%%/lib/hamcrest-core-1.3.jar
%%DATADIR%%/lib/httpclient-4.5.12.jar
%%DATADIR%%/lib/httpcore-4.4.13.jar
%%DATADIR%%/lib/httpmime-4.5.12.jar
%%DATADIR%%/lib/icons.jar
%%DATADIR%%/lib/icu4j-67.1.jar
%%DATADIR%%/lib/idea.jar
%%DATADIR%%/lib/idea_rt.jar
%%DATADIR%%/lib/imageio-core-3.5.jar
%%DATADIR%%/lib/imageio-metadata-3.5.jar
%%DATADIR%%/lib/imageio-tiff-3.5.jar
%%DATADIR%%/lib/imgscalr-lib-4.2.jar
%%DATADIR%%/lib/ini4j-0.5.5-2.jar
%%DATADIR%%/lib/intellij-coverage-agent-1.0.573.jar
%%DATADIR%%/lib/intellij-deps-fastutil-8.4.1-4.jar
%%DATADIR%%/lib/intellij-dvcs.jar
%%DATADIR%%/lib/intellij-test-discovery-agent-1.0.573.jar
%%DATADIR%%/lib/intellij-xml.jar
%%DATADIR%%/lib/ion-java-1.6.2-3.jar
%%DATADIR%%/lib/isorelax-20030108.jar
%%DATADIR%%/lib/istack-commons-runtime-3.0.7.jar
%%DATADIR%%/lib/j2objc-annotations-1.3.jar
%%DATADIR%%/lib/jackson-annotations-2.11.0.jar
%%DATADIR%%/lib/jackson-core-2.11.0.jar
%%DATADIR%%/lib/jackson-databind-2.11.0.jar
%%DATADIR%%/lib/jackson-module-kotlin-2.11.0.jar
%%DATADIR%%/lib/java-compatibility-1.0.1.jar
%%DATADIR%%/lib/java-string-similarity-1.2.1.jar
%%DATADIR%%/lib/java-ultimate-icons.jar
%%DATADIR%%/lib/java-utils-1.0.6.jar
%%DATADIR%%/lib/javac2.jar
%%DATADIR%%/lib/javax.activation-1.2.0.jar
%%DATADIR%%/lib/javax.annotation-api-1.3.2.jar
%%DATADIR%%/lib/jaxb-api-2.3.1.jar
%%DATADIR%%/lib/jaxb-runtime-2.3.1.jar
%%DATADIR%%/lib/jaxen-1.2.0.jar
%%DATADIR%%/lib/jb-jdi-2.3.jar
%%DATADIR%%/lib/jcef-81.2.24-gc0b313d-chromium-81.0.4044.113-api-1.1.jar
%%DATADIR%%/lib/jcip-annotations-1.0.jar
%%DATADIR%%/lib/jcodings-1.0.48.jar
%%DATADIR%%/lib/jdkAnnotations.jar
%%DATADIR%%/lib/jdom.jar
%%DATADIR%%/lib/jediterm-pty-2.32.jar
%%DATADIR%%/lib/jetCheck-0.2.2.jar
%%DATADIR%%/lib/jettison-1.4.0.jar
%%DATADIR%%/lib/jffi-1.2.19-native.jar
%%DATADIR%%/lib/jffi-1.2.19.jar
%%DATADIR%%/lib/jing-20030619.jar
%%DATADIR%%/lib/jna-platform.jar
%%DATADIR%%/lib/jna.jar
%%DATADIR%%/lib/jnr-a64asm-1.0.0.jar
%%DATADIR%%/lib/jnr-constants-0.9.12.jar
%%DATADIR%%/lib/jnr-enxio-0.21.jar
%%DATADIR%%/lib/jnr-ffi-2.1.10.jar
%%DATADIR%%/lib/jnr-posix-3.0.50.jar
%%DATADIR%%/lib/jnr-unixsocket-0.23.jar
%%DATADIR%%/lib/jnr-x86asm-1.0.2.jar
%%DATADIR%%/lib/joni-2.1.32.jar
%%DATADIR%%/lib/jps-model.jar
%%DATADIR%%/lib/jsch-0.1.55.jar
%%DATADIR%%/lib/jsch.agentproxy.connector-factory-0.0.9.jar
%%DATADIR%%/lib/jsch.agentproxy.core-0.0.9.jar
%%DATADIR%%/lib/jsch.agentproxy.jsch-0.0.9.jar
%%DATADIR%%/lib/jsch.agentproxy.pageant-0.0.9.jar
%%DATADIR%%/lib/jsch.agentproxy.sshagent-0.0.9.jar
%%DATADIR%%/lib/jsch.agentproxy.sshj-0.0.9.jar
%%DATADIR%%/lib/jsch.agentproxy.usocket-jna-0.0.9.jar
%%DATADIR%%/lib/jsch.agentproxy.usocket-nc-0.0.9.jar
%%DATADIR%%/lib/jshell-frontend.jar
%%DATADIR%%/lib/json-simple-1.1.1.jar
%%DATADIR%%/lib/json.jar
%%DATADIR%%/lib/jsoup-1.12.1.jar
%%DATADIR%%/lib/jsp-api.jar
%%DATADIR%%/lib/jsp-base-openapi.jar
%%DATADIR%%/lib/jsr305-3.0.2.jar
%%DATADIR%%/lib/jts-core-1.16.1.jar
%%DATADIR%%/lib/jts-io-common-1.16.1.jar
%%DATADIR%%/lib/junit-4.12.jar
%%DATADIR%%/lib/junit.jar
%%DATADIR%%/lib/junixsocket-common-2.3.2.jar
%%DATADIR%%/lib/junixsocket-core-2.3.2.jar
%%DATADIR%%/lib/junixsocket-native-common-2.3.2.jar
%%DATADIR%%/lib/jzlib-1.1.3.jar
%%DATADIR%%/lib/kotlin-gradle-plugin-model-1.4.0.jar
%%DATADIR%%/lib/kotlin-reflect-1.4.0.jar
%%DATADIR%%/lib/kotlin-stdlib-1.4.0.jar
%%DATADIR%%/lib/kotlin-stdlib-common-1.4.0.jar
%%DATADIR%%/lib/kotlin-stdlib-jdk7-1.4.0.jar
%%DATADIR%%/lib/kotlin-stdlib-jdk8-1.4.0.jar
%%DATADIR%%/lib/kotlin-test-1.4.0.jar
%%DATADIR%%/lib/kotlin-test-common-1.4.0.jar
%%DATADIR%%/lib/kotlinx-coroutines-core-1.3.9.jar
%%DATADIR%%/lib/kotlinx-coroutines-jdk8-1.3.9.jar
%%DATADIR%%/lib/kotlinx-serialization-core-1.0.0-RC.jar
%%DATADIR%%/lib/kryo-2.24.0.jar
%%DATADIR%%/lib/ktor-websockets-1.3.1.jar
%%DATADIR%%/lib/kxml2-2.3.0.jar
%%DATADIR%%/lib/layout_inspector_java_proto-27.0.0.0.jar
%%DATADIR%%/lib/libstudio.proto-27.0.0.0.jar
%%DATADIR%%/lib/live_sql_java_proto-27.0.0.0.jar
%%DATADIR%%/lib/log4j.jar
%%DATADIR%%/lib/lz4-java-1.7.1.jar
%%DATADIR%%/lib/markdown4j-2.2-cj-1.1.jar
%%DATADIR%%/lib/markdownj-core-0.4.2-SNAPSHOT.jar
%%DATADIR%%/lib/maven-artifact-3.6.1.jar
%%DATADIR%%/lib/maven-builder-support-3.6.1.jar
%%DATADIR%%/lib/maven-model-3.6.1.jar
%%DATADIR%%/lib/maven-model-builder-3.6.1.jar
%%DATADIR%%/lib/maven-repository-metadata-3.6.1.jar
%%DATADIR%%/lib/maven-resolver-api-1.3.3.jar
%%DATADIR%%/lib/maven-resolver-impl-1.3.3.jar
%%DATADIR%%/lib/maven-resolver-provider-3.6.1.jar
%%DATADIR%%/lib/maven-resolver-spi-1.3.3.jar
%%DATADIR%%/lib/maven-resolver-util-1.3.3.jar
%%DATADIR%%/lib/memoryfilesystem-2.1.0.jar
%%DATADIR%%/lib/microba.jar
%%DATADIR%%/lib/miglayout-core-5.2.jar
%%DATADIR%%/lib/miglayout-swing-5.2.jar
%%DATADIR%%/lib/minlog-1.2.jar
%%DATADIR%%/lib/nanoxml-2.2.3.jar
%%DATADIR%%/lib/nekohtml-1.9.22.jar
%%DATADIR%%/lib/netty-buffer-4.1.52.Final.jar
%%DATADIR%%/lib/netty-codec-4.1.52.Final.jar
%%DATADIR%%/lib/netty-codec-http-4.1.52.Final.jar
%%DATADIR%%/lib/netty-codec-http2-4.1.52.Final.jar
%%DATADIR%%/lib/netty-codec-socks-4.1.52.Final.jar
%%DATADIR%%/lib/netty-common-4.1.52.Final.jar
%%DATADIR%%/lib/netty-handler-4.1.52.Final.jar
%%DATADIR%%/lib/netty-handler-proxy-4.1.52.Final.jar
%%DATADIR%%/lib/netty-resolver-4.1.52.Final.jar
%%DATADIR%%/lib/netty-transport-4.1.52.Final.jar
%%DATADIR%%/lib/objenesis-3.1.jar
%%DATADIR%%/lib/openapi.jar
%%DATADIR%%/lib/org.eclipse.lsp4j-0.7.1.jar
%%DATADIR%%/lib/org.eclipse.lsp4j.jsonrpc-0.7.1.jar
%%DATADIR%%/lib/org.eclipse.xtend.lib-2.17.0.jar
%%DATADIR%%/lib/org.eclipse.xtend.lib.macro-2.17.0.jar
%%DATADIR%%/lib/org.eclipse.xtext.xbase.lib-2.17.0.jar
%%DATADIR%%/lib/oro-2.0.8.jar
%%DATADIR%%/lib/owasp-java-html-sanitizer-20191001.1.jar
%%DATADIR%%/lib/perfmark-api-0.19.0.jar
%%DATADIR%%/lib/platform-api.jar
%%DATADIR%%/lib/platform-concurrency.jar
%%DATADIR%%/lib/platform-core-ui.jar
%%DATADIR%%/lib/platform-diagnostic.jar
%%DATADIR%%/lib/platform-ide-util-io.jar
%%DATADIR%%/lib/platform-impl.jar
%%DATADIR%%/lib/platform-objectSerializer-annotations.jar
%%DATADIR%%/lib/platform-objectSerializer.jar
%%DATADIR%%/lib/platform-rd-community.jar
%%DATADIR%%/lib/platform-serviceContainer.jar
%%DATADIR%%/lib/platform-statistics-config.jar
%%DATADIR%%/lib/platform-statistics-devkit.jar
%%DATADIR%%/lib/platform-statistics-uploader.jar
%%DATADIR%%/lib/platform-statistics.jar
%%DATADIR%%/lib/platform-util-ex.jar
%%DATADIR%%/lib/platform-util-ui.jar
%%DATADIR%%/lib/plexus-component-annotations-1.7.1.jar
%%DATADIR%%/lib/plexus-interpolation-1.25.jar
%%DATADIR%%/lib/plexus-utils-3.2.0.jar
%%DATADIR%%/lib/proto-google-common-protos-1.17.0.jar
%%DATADIR%%/lib/protobuf-java-3.13.0.jar
%%DATADIR%%/lib/proxy-vole-1.0.5-jb.2.jar
%%DATADIR%%/lib/pty4j-0.11.1.jar
%%DATADIR%%/lib/pty4j-native
%%DATADIR%%/lib/purejavacomm-0.0.11.1.jar
%%DATADIR%%/lib/qdox-2.0-M10.jar
%%DATADIR%%/lib/rd-core-0.203.181.jar
%%DATADIR%%/lib/rd-framework-0.203.181.jar
%%DATADIR%%/lib/rd-swing-0.203.181.jar
%%DATADIR%%/lib/resources.jar
%%DATADIR%%/lib/resources_en.jar
%%DATADIR%%/lib/rhino-1.7.12.jar
%%DATADIR%%/lib/rngom-20051226-patched.jar
%%DATADIR%%/lib/rt/servlet.jar
%%DATADIR%%/lib/rt/xerces1.jar
%%DATADIR%%/lib/rt/xml-apis.jar
%%DATADIR%%/lib/serviceMessages-2019.1.4.jar
%%DATADIR%%/lib/servlet-api.jar
%%DATADIR%%/lib/shims-0.9.0.jar
%%DATADIR%%/lib/slf4j-api-1.7.25.jar
%%DATADIR%%/lib/slf4j-log4j12-1.7.25.jar
%%DATADIR%%/lib/snakeyaml-1.26.jar
%%DATADIR%%/lib/snakeyaml-engine-2.1.jar
%%DATADIR%%/lib/spellchecker.jar
%%DATADIR%%/lib/sqlite-jdbc-3.21.0.1.jar
%%DATADIR%%/lib/src/src_css-api.zip
%%DATADIR%%/lib/src/src_database-openapi.zip
%%DATADIR%%/lib/src/src_jam-openapi.zip
%%DATADIR%%/lib/src/src_javaee-openapi.zip
%%DATADIR%%/lib/src/src_persistence-openapi.zip
%%DATADIR%%/lib/src/src_spring-boot-openapi.zip
%%DATADIR%%/lib/src/src_spring-openapi.zip
%%DATADIR%%/lib/src/src_tomcat.zip
%%DATADIR%%/lib/sshj-0.29.0.jar
%%DATADIR%%/lib/stax-api-1.0.1.jar
%%DATADIR%%/lib/stax-ex-1.8.jar
%%DATADIR%%/lib/streamex-0.7.2.jar
%%DATADIR%%/lib/swingx-core-1.6.2-2.jar
%%DATADIR%%/lib/testFramework-java.jar
%%DATADIR%%/lib/testFramework.core.jar
%%DATADIR%%/lib/testFramework.jar
%%DATADIR%%/lib/tests_bootstrap.jar
%%DATADIR%%/lib/tips-intellij-idea-203.30.jar
%%DATADIR%%/lib/trang-core.jar
%%DATADIR%%/lib/trove4j.jar
%%DATADIR%%/lib/txw2-2.3.1.jar
%%DATADIR%%/lib/uast-tests.jar
%%DATADIR%%/lib/util-2.2.4.jar
%%DATADIR%%/lib/util.jar
%%DATADIR%%/lib/velocity-1.7.jar
%%DATADIR%%/lib/winp-1.28.jar
%%DATADIR%%/lib/xercesImpl-2.12.0.jar
%%DATADIR%%/lib/xml-apis-ext-1.3.04.jar
%%DATADIR%%/lib/xml-resolver-1.2.jar
%%DATADIR%%/lib/xmlbeans-2.6.0.jar
%%DATADIR%%/lib/xmlgraphics-commons-2.4.jar
%%DATADIR%%/lib/xmlpull-1.1.3.1.jar
%%DATADIR%%/lib/xmlrpc-2.0.1.jar
%%DATADIR%%/lib/xpp3_min-1.1.4c.jar
%%DATADIR%%/lib/xstream-1.4.11.1.jar
%%DATADIR%%/lib/xz-1.8.jar
%%DATADIR%%/license/XStream_license.txt
%%DATADIR%%/license/ant_license.txt
%%DATADIR%%/license/asm_license.txt
%%DATADIR%%/license/eclipse_license.txt
%%DATADIR%%/license/eclipse_license2.txt
%%DATADIR%%/license/growl.license
%%DATADIR%%/license/gson_license.txt
%%DATADIR%%/license/imgscalr_license.txt
%%DATADIR%%/license/j2ee_license.txt
%%DATADIR%%/license/jasper_license.txt
%%DATADIR%%/license/javaeeJar-CDDLv1.0.txt
%%DATADIR%%/license/javahelp_license.txt
%%DATADIR%%/license/javolution_license.txt
%%DATADIR%%/license/jaxb_license.txt
%%DATADIR%%/license/jaxen_license.txt
%%DATADIR%%/license/jdom_license.txt
%%DATADIR%%/license/jgoodies_forms_license.txt
%%DATADIR%%/license/junit_license.txt
%%DATADIR%%/license/kryo-license.txt
%%DATADIR%%/license/log4j_license.txt
%%DATADIR%%/license/microba_license.txt
%%DATADIR%%/license/miglayout_swing_license.txt
%%DATADIR%%/license/nanoxml_license.txt
%%DATADIR%%/license/oromatcher_license.txt
%%DATADIR%%/license/picoContainer_license.txt
%%DATADIR%%/license/saxon-conditions.html
%%DATADIR%%/license/servletJAR_license.txt
%%DATADIR%%/license/swingx_license.txt
%%DATADIR%%/license/third-party-libraries.html
%%DATADIR%%/license/third-party/W3C_Software_License.html
%%DATADIR%%/license/third-party/protobuf_license.txt
%%DATADIR%%/license/trove4j_license.txt
%%DATADIR%%/license/winp_license.txt
%%DATADIR%%/license/xerces_license.txt
%%DATADIR%%/license/xmlrpc_license.txt
%%DATADIR%%/license/yourkit-license-redist.txt
%%DATADIR%%/plugins/AngularJS/lib/AngularJS.jar
%%DATADIR%%/plugins/AngularJS/lib/resources_en.jar
%%DATADIR%%/plugins/AngularJS/ngCli/runner.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsInfoProvider.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider60.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider62.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider70.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider80.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider90.js
%%DATADIR%%/plugins/AppServersIntegration/lib/AppServersView.jar
%%DATADIR%%/plugins/AppServersIntegration/lib/app-servers-integration.jar
%%DATADIR%%/plugins/AppServersIntegration/lib/resources_en.jar
%%DATADIR%%/plugins/BatchApplications/lib/batch-applications-support.jar
%%DATADIR%%/plugins/BatchApplications/lib/resources_en.jar
%%DATADIR%%/plugins/BeanValidation/lib/bean_validation.jar
%%DATADIR%%/plugins/BeanValidation/lib/resources_en.jar
%%DATADIR%%/plugins/ByteCodeViewer/lib/byteCodeViewer.jar
%%DATADIR%%/plugins/ByteCodeViewer/lib/resources_en.jar
%%DATADIR%%/plugins/CDI/lib/cdi-support.jar
%%DATADIR%%/plugins/CDI/lib/resources_en.jar
%%DATADIR%%/plugins/CSS/lib/css-openapi.jar
%%DATADIR%%/plugins/CSS/lib/css.jar
%%DATADIR%%/plugins/CSS/lib/resources_en.jar
%%DATADIR%%/plugins/DatabaseTools/lib/aether-dependency-resolver.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-dialects.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-impl.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-minicats.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-openapi.jar
%%DATADIR%%/plugins/DatabaseTools/lib/jdbc-console.jar
%%DATADIR%%/plugins/DatabaseTools/lib/mariadb-1.8.jar
%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-connector-basic-1.3.3.jar
%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-transport-file-1.3.3.jar
%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-transport-http-1.3.3.jar
%%DATADIR%%/plugins/DatabaseTools/lib/resources_en.jar
%%DATADIR%%/plugins/DatabaseTools/lib/tips-database-plugin-203.53.jar
%%DATADIR%%/plugins/DatabaseTools/lib/unidecode-0.0.7.jar
%%DATADIR%%/plugins/Docker/lib/Docker-agent-api-rt.jar
%%DATADIR%%/plugins/Docker/lib/Docker-compose.jar
%%DATADIR%%/plugins/Docker/lib/Docker-core.jar
%%DATADIR%%/plugins/Docker/lib/Docker-file.jar
%%DATADIR%%/plugins/Docker/lib/Docker-java-impl.jar
%%DATADIR%%/plugins/Docker/lib/Docker-remote-run.jar
%%DATADIR%%/plugins/Docker/lib/Docker.jar
%%DATADIR%%/plugins/Docker/lib/commons-cli-1.2.jar
%%DATADIR%%/plugins/Docker/lib/commons-io-2.3.jar
%%DATADIR%%/plugins/Docker/lib/jackson-dataformat-yaml-2.9.8.jar
%%DATADIR%%/plugins/Docker/lib/rt/FastInfoset-1.2.15.jar
%%DATADIR%%/plugins/Docker/lib/rt/bcpkix-jdk15on-1.64.jar
%%DATADIR%%/plugins/Docker/lib/rt/bcprov-jdk15on-1.64.jar
%%DATADIR%%/plugins/Docker/lib/rt/commons-cli-1.2.jar
%%DATADIR%%/plugins/Docker/lib/rt/commons-compress-1.20.jar
%%DATADIR%%/plugins/Docker/lib/rt/commons-io-2.6.jar
%%DATADIR%%/plugins/Docker/lib/rt/commons-lang-2.6.jar
%%DATADIR%%/plugins/Docker/lib/rt/docker-java-api-3.2.6.jar
%%DATADIR%%/plugins/Docker/lib/rt/docker-java-core-3.2.6.jar
%%DATADIR%%/plugins/Docker/lib/rt/docker-java-transport-3.2.6.jar
%%DATADIR%%/plugins/Docker/lib/rt/docker-java-transport-okhttp-3.2.6.jar
%%DATADIR%%/plugins/Docker/lib/rt/guava-19.0.jar
%%DATADIR%%/plugins/Docker/lib/rt/istack-commons-runtime-3.0.7.jar
%%DATADIR%%/plugins/Docker/lib/rt/jackson-annotations-2.10.3.jar
%%DATADIR%%/plugins/Docker/lib/rt/jackson-core-2.10.3.jar
%%DATADIR%%/plugins/Docker/lib/rt/jackson-databind-2.10.3.jar
%%DATADIR%%/plugins/Docker/lib/rt/javax.activation-api-1.2.0.jar
%%DATADIR%%/plugins/Docker/lib/rt/javax.websocket-client-api-1.1.jar
%%DATADIR%%/plugins/Docker/lib/rt/jaxb-api-2.3.1.jar
%%DATADIR%%/plugins/Docker/lib/rt/jaxb-runtime-2.3.1.jar
%%DATADIR%%/plugins/Docker/lib/rt/jna-5.5.0.jar
%%DATADIR%%/plugins/Docker/lib/rt/jna-platform-5.5.0.jar
%%DATADIR%%/plugins/Docker/lib/rt/kotlin-stdlib-1.4.0.jar
%%DATADIR%%/plugins/Docker/lib/rt/kotlin-stdlib-common-1.4.0.jar
%%DATADIR%%/plugins/Docker/lib/rt/kotlin-stdlib-jdk7-1.4.0.jar
%%DATADIR%%/plugins/Docker/lib/rt/kotlin-stdlib-jdk8-1.4.0.jar
%%DATADIR%%/plugins/Docker/lib/rt/log4j-1.2.17.jar
%%DATADIR%%/plugins/Docker/lib/rt/okhttp-3.14.4.jar
%%DATADIR%%/plugins/Docker/lib/rt/okio-1.17.2.jar
%%DATADIR%%/plugins/Docker/lib/rt/slf4j-api-1.7.30.jar
%%DATADIR%%/plugins/Docker/lib/rt/slf4j-log4j12-1.7.25.jar
%%DATADIR%%/plugins/Docker/lib/rt/snakeyaml-1.15.jar
%%DATADIR%%/plugins/Docker/lib/rt/stax-ex-1.8.jar
%%DATADIR%%/plugins/Docker/lib/rt/tomcat-juli-8.0.22.jar
%%DATADIR%%/plugins/Docker/lib/rt/tomcat-servlet-api-8.0.22.jar
%%DATADIR%%/plugins/Docker/lib/rt/tomcat-util-8.0.22.jar
%%DATADIR%%/plugins/Docker/lib/rt/tomcat-websocket-8.0.22.jar
%%DATADIR%%/plugins/Docker/lib/rt/tomcat-websocket-api-8.0.22.jar
%%DATADIR%%/plugins/Docker/lib/rt/txw2-2.3.1.jar
%%DATADIR%%/plugins/Docker/lib/specifics/dockerSpecifics.jar
%%DATADIR%%/plugins/EJB/lib/ejb-support.jar
%%DATADIR%%/plugins/EJB/lib/resources_en.jar
%%DATADIR%%/plugins/FreeMarker/lib/core.jar
%%DATADIR%%/plugins/FreeMarker/lib/resources_en.jar
%%DATADIR%%/plugins/Glassfish/lib/glassfishIntegration.jar
%%DATADIR%%/plugins/Glassfish/lib/specifics/glassfish2-specifics.jar
%%DATADIR%%/plugins/Glassfish/lib/specifics/glassfish3-specifics.jar
%%DATADIR%%/plugins/Glassfish/lib/specifics/glassfish3.1-specifics.jar
%%DATADIR%%/plugins/Glassfish/lib/specifics/glassfish5.1-specifics.jar
%%DATADIR%%/plugins/Grails/lib/grails-gradle-tooling.jar
%%DATADIR%%/plugins/Grails/lib/grails-rt.jar
%%DATADIR%%/plugins/Grails/lib/grails_integration.jar
%%DATADIR%%/plugins/Grails/lib/groovy-grails-compilerPatch.jar
%%DATADIR%%/plugins/Grails/lib/groovy-grails-jps.jar
%%DATADIR%%/plugins/Grails/lib/standardDsls/GrailsStandardDSL.gdsl
%%DATADIR%%/plugins/Groovy/lib/Groovy.jar
%%DATADIR%%/plugins/Groovy/lib/agent/gragent.jar
%%DATADIR%%/plugins/Groovy/lib/console.groovy
%%DATADIR%%/plugins/Groovy/lib/duplicates-groovy.jar
%%DATADIR%%/plugins/Groovy/lib/groovy-constants-rt.jar
%%DATADIR%%/plugins/Groovy/lib/groovy-duplicatesDetection.jar
%%DATADIR%%/plugins/Groovy/lib/groovy-jps.jar
%%DATADIR%%/plugins/Groovy/lib/groovy-rt.jar
%%DATADIR%%/plugins/Groovy/lib/standardDsls/categoryTransform.gdsl
%%DATADIR%%/plugins/Groovy/lib/standardDsls/closuresInMethod.gdsl
%%DATADIR%%/plugins/Groovy/lib/standardDsls/defaultMethods.gdsl
%%DATADIR%%/plugins/Groovy/lib/standardDsls/gantScript.gdsl
%%DATADIR%%/plugins/Groovy/lib/standardDsls/metaDsl.gdsl
%%DATADIR%%/plugins/Guice/lib/Guice.jar
%%DATADIR%%/plugins/Guice/lib/resources_en.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate-console.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate3-console.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate4-console.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate5-console.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate52-console.jar
%%DATADIR%%/plugins/IntelliLang/lib/IntelliLang.jar
%%DATADIR%%/plugins/IntelliLang/lib/java-langInjection-jps.jar
%%DATADIR%%/plugins/JBoss/lib/jbossIntegration.jar
%%DATADIR%%/plugins/JBoss/lib/specifics/jboss7-specifics.jar
%%DATADIR%%/plugins/JBoss/lib/specifics/legacy-specifics.jar
%%DATADIR%%/plugins/JBoss/lib/specifics/wildfly11-specifics.jar
%%DATADIR%%/plugins/JPA/lib/jpa-console.jar
%%DATADIR%%/plugins/JPA/lib/jpa-support.jar
%%DATADIR%%/plugins/JPA/lib/jps/javaee-jpa-jps.jar
%%DATADIR%%/plugins/JPA/lib/resources_en.jar
%%DATADIR%%/plugins/JSF/lib/jsf-support.jar
%%DATADIR%%/plugins/JSF/lib/resources_en.jar
%%DATADIR%%/plugins/JSIntentionPowerPack/lib/JSIntentionPowerPack.jar
%%DATADIR%%/plugins/JSIntentionPowerPack/lib/resources_en.jar
%%DATADIR%%/plugins/JavaEE/lib/IntelliLang-javaee.jar
%%DATADIR%%/plugins/JavaEE/lib/jasper-v2-rt.jar
%%DATADIR%%/plugins/JavaEE/lib/javaee-jps.jar
%%DATADIR%%/plugins/JavaEE/lib/javaee-openapi.jar
%%DATADIR%%/plugins/JavaEE/lib/javaee-platform.jar
%%DATADIR%%/plugins/JavaEE/lib/resources_en.jar
%%DATADIR%%/plugins/JavaEE/lib/rt/jasper-v21-rt.jar
%%DATADIR%%/plugins/JavaEE/lib/rt/jasper-v23-java8-rt.jar
%%DATADIR%%/plugins/JavaEE/lib/rt/jasper-v23-rt.jar
%%DATADIR%%/plugins/JavaEE/lib/webDeployment-transport.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/ChromeConnector.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/FirefoxConnector.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/JavaEEJavaScriptDebug.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/JavaScriptDebugger.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/debugConnector.js
%%DATADIR%%/plugins/JavaScriptDebugger/lib/javascript-debugger-featuresTrainer.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/nashorn-debugger-9-rt.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/nashorn-debugger-rt.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/nashorn-debugger.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/resources_en.jar
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-stringifier.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-tree.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-util.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/buildTools/grunt/lib/grunt-intellij-util.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/buildTools/grunt/tasks/grunt-tasks-fetcher.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-jasmine-reporter.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-reporter.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-stdin-fix.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-test-results-processor.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-util.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/node-core-modules/node-core-modules-loader.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/nodejs/library/yarn/intellij-yarn-pnp-deps-tree-loader.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/bin/batch-matcher
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/CHANGELOG.md
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/LICENSE
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/README.md
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/bin/semver.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/package.json
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/range.bnf
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/semver.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/package-lock.json
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/package.json
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/semver-range-matcher.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/jasmine-reporter.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-cli.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-config.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-jasmine-reporter.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-plugin.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-stringifier.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-tree.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-util.js
%%DATADIR%%/plugins/JavaScriptLanguage/js/js-predefined-ffdd448c697d-9d1e29453470.ijx
%%DATADIR%%/plugins/JavaScriptLanguage/js/js-predefined-ffdd448c697d-9d1e29453470.txt
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/browser.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/cancellationToken.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/es2019decorators.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/esnext.weakref.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/flow.utilities.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.iterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.collection.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.core.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.generator.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.iterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.proxy.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.reflect.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.symbol.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.symbol.wellknown.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.array.include.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.intl.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.object.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.sharedmemory.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.typedarrays.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.asyncgenerator.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.asynciterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.intl.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.regexp.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.array.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.object.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.symbol.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.bigint.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.intl.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.sharedmemory.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.symbol.wellknown.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es5.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es6.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.array.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.asynciterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.bigint.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.intl.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.symbol.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.weakref.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.scripthost.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.importscripts.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.iterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/react.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/tsserverlibrary.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/typesMap.json
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/watchGuard.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/websql.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/xpath.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/bom.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/core.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/cssom.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/dom.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/indexeddb.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/intl.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/node.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/react-dom.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/react.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/serviceworkers.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/streams.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/webassembly.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/js-language-service.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ide-watcher.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/logger-impl.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/out-path-process.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/service-loader.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/compile-info-holder.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-common-session-1x_21.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-project-service-1x.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-project-service-21.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-session-1x.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-session-21.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts15impl.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-default-options.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-plugin.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-session-latest.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-session-provider.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/util.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-plugin-provider.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-plugin.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/package-lock.json
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/package.json
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-plugin-provider.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-plugin.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/typings/js-lanuage-api.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/tsconfig.json
%%DATADIR%%/plugins/JavaScriptLanguage/lib/JavaScriptLanguage.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/completion-ranking-js-0.1.2.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/completion-ranking-typescript-0.2.2.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/javascript-featuresTrainer.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/javascript-openapi.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/js-test-common.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/resources_en.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/semver4j-2.2.0.jar
%%DATADIR%%/plugins/JavaeeExtensions/lib/javaee-extensions.jar
%%DATADIR%%/plugins/JavaeeExtensions/lib/resources_en.jar
%%DATADIR%%/plugins/Jetty/lib/jettyIntegration.jar
%%DATADIR%%/plugins/Kotlin/bin/linux/LLDBFrontend
%%DATADIR%%/plugins/Kotlin/bin/macos/LLDBFrontend
%%DATADIR%%/plugins/Kotlin/bin/windows/LLDBFrontend.exe
%%DATADIR%%/plugins/Kotlin/kotlinc/META-INF/MANIFEST.MF
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kapt
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kapt.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlin
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlin-dce-js
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlin-dce-js.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlin.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc-js
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc-js.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc-jvm
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc-jvm.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/build.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/allopen-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/android-extensions-compiler.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/android-extensions-runtime.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/annotations-13.0.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/js.engines.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/jvm-abi-gen.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing-cli.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing-runtime.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotations-android.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotations-jvm-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotations-jvm.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-ant.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-compiler.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-coroutines-experimental-compat-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-coroutines-experimental-compat.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-daemon-client.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-daemon.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-imports-dumper-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-main-kts.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-preloader.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-reflect-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-reflect.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-runner.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-script-runtime-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-script-runtime.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-common.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-compiler-impl.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-compiler.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-js.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-jvm.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk7-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk7.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk8-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk8.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-js-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-js.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-js-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-js.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-junit-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-junit.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-junit5-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-junit5.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-testng-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-testng.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlinx-coroutines-core.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlinx-serialization-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/mutability-annotations-compat.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/noarg-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/sam-with-receiver-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/trove4j.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/license/COPYRIGHT.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/NOTICE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/README.md
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/aosp_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/args4j_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/asm_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/boost_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/closure-compiler_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/dart_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/fastutil_licence
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/gradle_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/guava_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/gwt_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/jquery_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/jshashtable_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/karma-teamcity-reporter_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/karma_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/lodash_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/maven_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/mocha-teamcity-reporter_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/pcollections_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/prototype_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/qunit_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/rhino_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/scala_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/teamcity-service-messages_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/dagger_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/eclipse_distribution_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/eclipse_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/findbugs_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/lombok_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/rxjava_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/spring_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/trove_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/trove_readme_license.txt
%%DATADIR%%/plugins/Kotlin/lib/allopen-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/android-extensions-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/completion-ranking-kotlin-0.1.3.jar
%%DATADIR%%/plugins/Kotlin/lib/javaslang-2.0.6.jar
%%DATADIR%%/plugins/Kotlin/lib/javaslang-match-2.0.6.jar
%%DATADIR%%/plugins/Kotlin/lib/javax.inject-1.jar
%%DATADIR%%/plugins/Kotlin/lib/jps/kotlin-jps-plugin.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-android-extensions-runtime.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-common.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-allopen.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-annotation-based-compiler-support.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-kapt.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-kotlinx-serialization.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-noarg.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-sam-with-receiver.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-scripting.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-core.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-coroutines-experimental-compat.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-eval4j.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-formatter.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-frontend-independent.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-git.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-gradle-gradle-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-gradle-gradle-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-gradle-gradle-tooling.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-gradle-statistics-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-j2k-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-j2k-new.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-j2k-old.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-j2k-services.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jps-common.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-core.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-coroutines.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-evaluation.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-sequence.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-util.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-line-indent-provider.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-maven.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-plugin.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-project-wizard-cli.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-project-wizard-core.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-project-wizard-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-reflect.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-repl.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-script-runtime.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-script-util.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting-common.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting-compiler-impl.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting-ide-services.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting-jvm.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-stdlib-jdk7.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-stdlib-jdk8.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-stdlib.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-uast-kotlin-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-uast-kotlin.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate-common-cidr-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate-common-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate-common-noncidr-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlinx-collections-immutable-jvm-0.3.1.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlinx-coroutines-core-1.3.9.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlinx-coroutines-jdk8-1.3.9.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlinx-serialization-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/markdown-0.1.41.jar
%%DATADIR%%/plugins/Kotlin/lib/noarg-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/sam-with-receiver-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/LICENSE
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/README.md
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mocha-intellij-stringifier.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mochaIntellijReporter.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mochaIntellijTree.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mochaIntellijUtil.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mochaTreeUtil.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/single-element-queue.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/package.json
%%DATADIR%%/plugins/NodeJS/js/nodeunit/nodeunit-intellij-starter.js
%%DATADIR%%/plugins/NodeJS/lib/NodeJS.jar
%%DATADIR%%/plugins/NodeJS/lib/resources_en.jar
%%DATADIR%%/plugins/PerforceIntegration/lib/PerforceIntegration.jar
%%DATADIR%%/plugins/PerforceIntegration/lib/perforce_util.jar
%%DATADIR%%/plugins/PerforceIntegration/lib/resources_en.jar
%%DATADIR%%/plugins/PersistenceSupport/lib/persistence-impl.jar
%%DATADIR%%/plugins/PersistenceSupport/lib/persistence-openapi.jar
%%DATADIR%%/plugins/RefactorX/lib/RefactorX.jar
%%DATADIR%%/plugins/RefactorX/lib/resources_en.jar
%%DATADIR%%/plugins/Spring/lib/customNs/customNs.jar
%%DATADIR%%/plugins/Spring/lib/spring-aop.jar
%%DATADIR%%/plugins/Spring/lib/spring-eclipse.jar
%%DATADIR%%/plugins/Spring/lib/spring-el.jar
%%DATADIR%%/plugins/Spring/lib/spring-graph.jar
%%DATADIR%%/plugins/Spring/lib/spring-jsf.jar
%%DATADIR%%/plugins/Spring/lib/spring-persistence-integration.jar
%%DATADIR%%/plugins/Spring/lib/spring-web.jar
%%DATADIR%%/plugins/Spring/lib/spring.jar
%%DATADIR%%/plugins/SpringBatch/lib/SpringBatch.jar
%%DATADIR%%/plugins/SpringBatch/lib/resources_en.jar
%%DATADIR%%/plugins/SpringBoot/lib/spring-boot-cloud-stream.jar
%%DATADIR%%/plugins/SpringBoot/lib/spring-boot-cloud.jar
%%DATADIR%%/plugins/SpringBoot/lib/spring-boot-config-yaml.jar
%%DATADIR%%/plugins/SpringBoot/lib/spring-boot-initializr.jar
%%DATADIR%%/plugins/SpringBoot/lib/spring-boot-mvc.jar
%%DATADIR%%/plugins/SpringBoot/lib/spring-boot-run.jar
%%DATADIR%%/plugins/SpringBoot/lib/spring-boot.jar
%%DATADIR%%/plugins/SpringData/lib/SpringData.jar
%%DATADIR%%/plugins/SpringData/lib/resources_en.jar
%%DATADIR%%/plugins/SpringIntegration/lib/SpringIntegration.jar
%%DATADIR%%/plugins/SpringIntegration/lib/resources_en.jar
%%DATADIR%%/plugins/SpringIntegration/lib/spring-integration.jar
%%DATADIR%%/plugins/SpringMessaging/lib/SpringMessaging.jar
%%DATADIR%%/plugins/SpringMessaging/lib/resources_en.jar
%%DATADIR%%/plugins/SpringMvc/lib/SpringMvc.jar
%%DATADIR%%/plugins/SpringMvc/lib/resources_en.jar
%%DATADIR%%/plugins/SpringMvc/lib/spring-mvc-api.jar
%%DATADIR%%/plugins/SpringOSGi/lib/SpringOSGi.jar
%%DATADIR%%/plugins/SpringOSGi/lib/resources_en.jar
%%DATADIR%%/plugins/SpringSecurity/lib/SpringSecurity.jar
%%DATADIR%%/plugins/SpringSecurity/lib/resources_en.jar
%%DATADIR%%/plugins/SpringWebServices/lib/SpringWebServices.jar
%%DATADIR%%/plugins/SpringWebServices/lib/resources_en.jar
%%DATADIR%%/plugins/SpringWebSocket/lib/SpringWebSocket.jar
%%DATADIR%%/plugins/SpringWebSocket/lib/resources_en.jar
%%DATADIR%%/plugins/SpringWebflow/lib/SpringWebflow.jar
%%DATADIR%%/plugins/SpringWebflow/lib/resources_en.jar
%%DATADIR%%/plugins/Tomcat/lib/specifics/tomee-specifics.jar
%%DATADIR%%/plugins/Tomcat/lib/tomcatIntegration.jar
%%DATADIR%%/plugins/Velocity/lib/core.jar
%%DATADIR%%/plugins/Velocity/lib/resources_en.jar
%%DATADIR%%/plugins/Web/lib/resources_en.jar
%%DATADIR%%/plugins/Web/lib/web-support.jar
%%DATADIR%%/plugins/WebServices/lib/wadlgen/wadlgen.jar
%%DATADIR%%/plugins/WebServices/lib/ws-rt.jar
%%DATADIR%%/plugins/WebServices/lib/ws-utils.jar
%%DATADIR%%/plugins/WebServices/lib/ws.jar
%%DATADIR%%/plugins/WebSocket/lib/resources_en.jar
%%DATADIR%%/plugins/WebSocket/lib/websocket-support.jar
%%DATADIR%%/plugins/android/lib/adt-ui.jar
%%DATADIR%%/plugins/android/lib/analytics-crash-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/analytics-shared-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/analytics-tracker-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/android-common.jar
%%DATADIR%%/plugins/android/lib/android-extensions-ide.jar
%%DATADIR%%/plugins/android/lib/android-jps-model.jar
%%DATADIR%%/plugins/android/lib/android-kotlin.jar
%%DATADIR%%/plugins/android/lib/android-profilers.jar
%%DATADIR%%/plugins/android/lib/android-rt.jar
%%DATADIR%%/plugins/android/lib/android-ultimate.jar
%%DATADIR%%/plugins/android/lib/android.jar
%%DATADIR%%/plugins/android/lib/androidAnnotations.jar
%%DATADIR%%/plugins/android/lib/androidWidgets/theme-editor-widgets.jar
%%DATADIR%%/plugins/android/lib/apksig-4.0.0.jar
%%DATADIR%%/plugins/android/lib/apkzlib-4.0.0.jar
%%DATADIR%%/plugins/android/lib/artwork.jar
%%DATADIR%%/plugins/android/lib/asm-5.0.3.jar
%%DATADIR%%/plugins/android/lib/asm-analysis-5.0.3.jar
%%DATADIR%%/plugins/android/lib/asm-tree-5.0.3.jar
%%DATADIR%%/plugins/android/lib/build-common.jar
%%DATADIR%%/plugins/android/lib/commons-compress-1.8.1.jar
%%DATADIR%%/plugins/android/lib/deploy_java_proto-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/device-art-resources/automotive_1024/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/automotive_1024/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/automotive_1024/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/device-art.xml
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/button.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/power.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/power_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/volume_down.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/volume_down_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/volume_up.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/volume_up_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/button.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/power.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/power_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/volume_down.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/volume_down_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/volume_up.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/volume_up_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/phone/phone_back_simple_land.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/phone/phone_back_simple_port.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/phone/phone_shadow_simple_land.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/phone/phone_shadow_simple_port.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/round_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3/round_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3_xl/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3_xl/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3_xl/round_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/rounded_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/rounded_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/polestar_2/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/polestar_2/button.png
%%DATADIR%%/plugins/android/lib/device-art-resources/polestar_2/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/polestar_2/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/tablet/tablet_back_simple.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tablet/tablet_shadow_simple_land.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tablet/tablet_shadow_simple_port.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_1080p/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_1080p/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_1080p/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_1080p/shadow.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_720p/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_720p/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_720p/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_720p/shadow.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/arrow_down.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/arrow_left.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/arrow_right.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/arrow_up.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/button.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_320px.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_380px.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_380px_onion.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/controls.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/hardware.ini
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/key.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/mask.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/select.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/shadow.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/mask.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/shadow.png
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/thumb.png
%%DATADIR%%/plugins/android/lib/freemarker-2.3.20.jar
%%DATADIR%%/plugins/android/lib/instantapps-api-1.8.jar
%%DATADIR%%/plugins/android/lib/javawriter-2.2.1.jar
%%DATADIR%%/plugins/android/lib/jgraphx-3.4.1.3.jar
%%DATADIR%%/plugins/android/lib/jps/android-jps-plugin.jar
%%DATADIR%%/plugins/android/lib/kxml2-2.3.0.jar
%%DATADIR%%/plugins/android/lib/layoutlib-jre11-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/layoutlib-loader.jar
%%DATADIR%%/plugins/android/lib/libjava_version-27.0.0.1.jar
%%DATADIR%%/plugins/android/lib/lint-ide.jar
%%DATADIR%%/plugins/android/lib/moshi-1.6.0.jar
%%DATADIR%%/plugins/android/lib/okio-1.14.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.elk.alg.layered-0.3.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.elk.core-0.3.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.elk.graph-0.3.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.emf.common-2.12.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.emf.ecore-2.12.0.jar
%%DATADIR%%/plugins/android/lib/pepk.jar
%%DATADIR%%/plugins/android/lib/perfetto-protos-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/r8-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/resources_en.jar
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_1.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_10.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_11.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_12.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_13.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_14.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_15.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_16.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_2.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_3.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_4.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_5.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_6.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_7.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_8.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_9.xml
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/A_Photographer.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Apres_la_Pluie.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Caterpillar.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Colors_of_Autumn.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Countryside.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Death_Valley_-_Dunes.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Despair.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Eagle_Fall_Sunrise.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Green_Grass.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Hanging_Leaf.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Jelly_Fish_3.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Kauai.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Longue_Vue.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Lost_in_a_Field.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Monument_Valley_Overlook.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/One_Wheel.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Open_Sky.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Orange_Sunset.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Stream.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Yosemite_Tree.webp
%%DATADIR%%/plugins/android/lib/spantable.jar
%%DATADIR%%/plugins/android/lib/studio-grpc-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio-proto-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.analyzer-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.android-annotations-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.binary-resources-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.builder-model-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.builder-test-api-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.chunkio-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.common-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.ddmlib-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.deployer-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.draw9patch-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.dvlib-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.flags-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.layoutinspector-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.layoutlib-api-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.lint-api-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.lint-checks-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.manifest-merger-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.ninepatch-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.perflib-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.pixelprobe-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.repository-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.sdk-common-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.sdklib-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.tracer-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.baseLibrary-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.baseLibrarySupport-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.compiler-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.compilerCommon-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.intellij.android.wizardTemplate.impl-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.intellij.android.wizardTemplate.plugin-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.usb-devices-27.0.0.0.jar
%%DATADIR%%/plugins/android/lib/templates/NOTICE
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/app_icon_your_company.png
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/default_background.xml
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/movie.png
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/layout/activity_details.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/layout/activity_main.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values/colors.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/BrowseErrorActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/BrowseErrorActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/CardPresenter.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/CardPresenter.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/DetailsActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/DetailsActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/DetailsDescriptionPresenter.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/DetailsDescriptionPresenter.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/ErrorFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/ErrorFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MainActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MainActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MainFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MainFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/Movie.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/Movie.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MovieList.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MovieList.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PlaybackActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PlaybackActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PlaybackVideoFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PlaybackVideoFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/VideoDetailsFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/VideoDetailsFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/template-leanback-TV.png
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidTVActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidThingsActivity/android-things.png
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidThingsActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidThingsActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidThingsActivity/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidThingsActivity/root/src/app_package/SimpleActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidThingsActivity/root/src/app_package/SimpleActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/AndroidThingsActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/res/layout/fragment_first.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/res/layout/fragment_second.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/res/layout/fragment_simple.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/res/navigation/nav_graph.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/BasicActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/BasicActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/FirstFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/FirstFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/SecondFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/SecondFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BasicActivity/template_basic_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/root/AndroidManifestPermissions.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/layout/blank_activity.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/values-round/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/root/src/app_package/BlankActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/root/src/app_package/BlankActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BlankWearActivity/templates-WatchViewStub-Wear.png
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/drawable/ic_dashboard_black_24dp.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/drawable/ic_home_black_24dp.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/drawable/ic_notifications_black_24dp.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/layout/activity_main.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/layout/navigation_activity_main.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/menu/navigation.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/navigation/mobile_navigation.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/values/dimens.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/res/values/strings.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/src/app_package/MainActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/root/src/app_package/MainActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/BottomNavigationActivity/template_bottom_navigation_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/ComposeActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ComposeActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ComposeActivity/root/src/app_package/MainActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ComposeActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/ComposeActivity/template_compose_empty_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/root/src/app_package/EmptyActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/root/src/app_package/EmptyActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/root/src/app_package/EmptyActivityWithCppSupport.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/root/src/app_package/EmptyActivityWithCppSupport.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/root/src/app_package/native-lib.cpp.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/EmptyActivity/template_blank_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/layout/activity_fullscreen.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/root/src/app_package/FullscreenActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/root/src/app_package/FullscreenActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/FullscreenActivity/template_fullscreen_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/layout/activity_simple.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/menu/main.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values-w820dp/dimens.xml
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/src/app_package/SimpleActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/src/app_package/SimpleActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity_banner.png
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity_interstitial.png
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_blank_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/debugRes/values/google_maps_api.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/releaseRes/values/google_maps_api.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/res/layout/activity_map.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/src/app_package/MapActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/src/app_package/MapActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsActivity/template_map_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/AndroidManifestPermissions.xml
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/debugRes/values/google_maps_api.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/releaseRes/values/google_maps_api.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/res/layout/activity_map.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/src/app_package/MapActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/src/app_package/MapActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/template_thumb.png
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/res/layout/activity_login.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/data/LoginDataSource.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/data/LoginDataSource.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/data/LoginRepository.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/data/LoginRepository.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/data/Result.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/data/Result.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/data/model/LoggedInUser.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/data/model/LoggedInUser.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoggedInUserView.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoggedInUserView.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginFormState.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginFormState.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginResult.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginResult.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginViewModel.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginViewModel.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginViewModelFactory.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/ui/login/LoginViewModelFactory.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/LoginActivity/template_login_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/activity_item_detail.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/activity_item_list_app_bar.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_detail.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_list.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_list_twopane.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/item_list_content.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values-w900dp/refs.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentDetailActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentDetailActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentDetailFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentDetailFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentListActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentListActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/MasterDetailFlow/template_master_detail.png
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-v21/ic_menu_camera.xml
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-v21/ic_menu_gallery.xml
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-v21/ic_menu_slideshow.xml
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable/side_nav_bar.xml
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/navigation_content_main.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/navigation_header.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/navigation_view.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/menu/drawer.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/menu/main.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/navigation/mobile_navigation.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values/drawables.xml
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/DrawerActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/DrawerActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/template_blank_activity_drawer.png
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/layout/app_bar.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/layout/simple.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/root/src/app_package/ScrollActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/root/src/app_package/ScrollActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/ScrollActivity/template_scroll_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable/messages.xml
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable/sync.xml
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/layout/settings_activity.xml
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/values/arrays.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/header_preferences.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/messages_preferences.xml
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/root_preferences.xml
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/sync_preferences.xml
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/src/app_package/MultipleScreenSettingsActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/src/app_package/MultipleScreenSettingsActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/src/app_package/SingleScreenSettingsActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/root/src/app_package/SingleScreenSettingsActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/SettingsActivity/template_settings_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/app_bar_activity.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/fragment_simple.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values-w820dp/dimens.xml
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values/styles.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/TabsActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/TabsActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/ui/main/PageViewModel.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/ui/main/PageViewModel.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/ui/main/PlaceholderFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/ui/main/PlaceholderFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/ui/main/SectionsPagerAdapter.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/ui/main/SectionsPagerAdapter.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/TabbedActivity/template_blank_activity_tabs.png
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/root/res/layout/activity.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/root/res/layout/fragment.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/root/src/app_package/Activity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/root/src/app_package/Activity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/root/src/app_package/Fragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/root/src/app_package/Fragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/root/src/app_package/ViewModel.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/root/src/app_package/ViewModel.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/template.xml
%%DATADIR%%/plugins/android/lib/templates/activities/ViewModelActivity/template_blank_activity.png
%%DATADIR%%/plugins/android/lib/templates/activities/common/common_globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/kotlin_globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/kotlin_macros.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/navigation/navigation_common_macros.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/navigation/src/res/layout/fragment_first.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/navigation/src/ui/FirstFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/navigation/src/ui/FirstFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/navigation/src/ui/ViewModel.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/navigation/src/ui/ViewModel.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_app_bar.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_dummy_content.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_full_screen_actionbar.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_manifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_manifest_strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_no_actionbar.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_simple.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_simple_menu.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/recipe_theme.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/layout/app_bar.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/layout/simple.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/menu/simple_menu.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/values/app_bar_dimens.xml
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/values/full_screen_attrs.xml
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/values/full_screen_colors.xml
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/values/full_screen_styles.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/values/manifest_strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/values/no_actionbar_styles.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/values/simple_menu_strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/res/values/theme_styles.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/src/app_package/dummy/DummyContent.java.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/root/src/app_package/dummy/DummyContent.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/shared_manifest_macros.ftl
%%DATADIR%%/plugins/android/lib/templates/activities/common/wear_common_globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/BlankFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/BlankFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/BlankFragment/root/res/layout/fragment_blank.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/BlankFragment/root/res/values/strings.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/BlankFragment/root/src/app_package/BlankFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/BlankFragment/root/src/app_package/BlankFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/BlankFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/BlankFragment/template_blank_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/root/res/layout/fragment_fullscreen.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/root/res/values/full_screen_colors.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/root/src/app_package/FullscreenFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/root/src/app_package/FullscreenFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/FullscreenFragment/template_fullscreen_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/root/res/layout/fragment_admob.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/root/src/app_package/AdMobBannerAdFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/root/src/app_package/AdMobBannerAdFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/root/src/app_package/AdMobInterstitialAdFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/root/src/app_package/AdMobInterstitialAdFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/template_admob_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/template_admob_fragment_banner.png
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleAdMobAdsFragment/template_admob_fragment_interstitial.png
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/root/debugRes/values/google_maps_api.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/root/releaseRes/values/google_maps_api.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/root/res/layout/fragment_map.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/root/src/app_package/MapFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/root/src/app_package/MapFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/GoogleMapsFragment/template_map_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/root/res/layout/fragment_list.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/root/res/layout/item_list_content.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/root/res/values/dimens.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/root/src/app_package/ListFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/root/src/app_package/ListFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/root/src/app_package/RecyclerViewAdapter.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/root/src/app_package/RecyclerViewAdapter.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ListFragment/template_list_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/res/layout/fragment_login.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/data/LoginDataSource.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/data/LoginDataSource.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/data/LoginRepository.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/data/LoginRepository.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/data/Result.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/data/Result.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/data/model/LoggedInUser.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/data/model/LoggedInUser.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoggedInUserView.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoggedInUserView.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginFormState.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginFormState.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginResult.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginResult.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginViewModel.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginViewModel.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginViewModelFactory.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/root/src/app_package/ui/login/LoginViewModelFactory.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/LoginFragment/template_login_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/root/res/layout/fragment_item_list_dialog.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/root/res/layout/fragment_item_list_dialog_item.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/root/res/values/dimens.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/root/src/app_package/ItemListDialogFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/root/src/app_package/ItemListDialogFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ModalBottomSheet/template_modal_bottom_sheet_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/root/res/layout/simple.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/root/src/app_package/ScrollFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/root/src/app_package/ScrollFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ScrollFragment/template_scroll_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/root/res/values/arrays.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/root/res/xml/root_preferences.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/root/src/app_package/SingleScreenSettingsFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/root/src/app_package/SingleScreenSettingsFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/SettingsFragment/template_settings_fragment.png
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/root/res/layout/blank_fragment.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/root/src/app_package/BlankFragment.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/root/src/app_package/BlankFragment.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/root/src/app_package/BlankViewModel.java.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/root/src/app_package/BlankViewModel.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/template.xml
%%DATADIR%%/plugins/android/lib/templates/fragments/ViewModelFragment/template_blank_fragment.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-hdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-mdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xxhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xxxhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/wear-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/ImportEclipseProject/eclipse-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/ImportEclipseProject/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/ImportGradleProject/gradle-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/ImportGradleProject/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/car-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/drawable-v24/ic_launcher_foreground.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/drawable/ic_launcher_background.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/ic_launcher-web.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-anydpi-v26/ic_launcher.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-anydpi-v26/ic_launcher_round.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-hdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-hdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-mdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-mdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-xhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-xhdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-xxhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-xxhdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-xxxhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/mipmap-xxxhdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/values/colors.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/root/res/values/styles.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutomotiveModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/mobile-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/CMakeLists.txt.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/drawable-v24/ic_banner_image.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/drawable-v24/ic_launcher_foreground.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/drawable/ic_launcher_background.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/ic_launcher-web.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-anydpi-v26/ic_launcher.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-anydpi-v26/ic_launcher_round.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-hdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-hdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-mdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-mdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xhdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xxhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xxhdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xxxhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xxxhdpi/ic_launcher_round.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values/colors.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values/styles.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/shared_macros.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/test/app_package/ExampleInstrumentedTest.java.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/test/app_package/ExampleInstrumentedTest.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/test/app_package/ExampleUnitTest.java.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/test/app_package/ExampleUnitTest.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/android-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/gradle.properties.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/local.properties.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/project_ignore
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/settings.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-hdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-mdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xxhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xxxhdpi/ic_launcher.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/values/styles.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/tv-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/root/res/values/colors.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/root/res/values/styles.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewAndroidThingsModule/things-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/jetpack-benchmark-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/root/benchmark-proguard-rules.pro
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/root/src/androidTest/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/root/src/androidTest/module_package/ExampleBenchmark.java.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/root/src/androidTest/module_package/ExampleBenchmark.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/root/src/main/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewBenchmarkModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/dynamic-feature-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/root/base-AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/root/test/dynamicfeature_package/ExampleInstrumentedTest.java.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/root/test/dynamicfeature_package/ExampleInstrumentedTest.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewDynamicFeatureModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewInstantDynamicFeatureModule/instant-dynamic-feature-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewInstantDynamicFeatureModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewInstantFeatureModule/feature-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewInstantFeatureModule/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewJavaOrKotlinLibrary/android-module.png
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewJavaOrKotlinLibrary/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewJavaOrKotlinLibrary/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewJavaOrKotlinLibrary/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewJavaOrKotlinLibrary/root/src/library_package/Placeholder.java.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewJavaOrKotlinLibrary/root/src/library_package/Placeholder.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/NewJavaOrKotlinLibrary/template.xml
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/common/consumer-rules.pro.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/common/gitignore
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/common/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/common/globals_android_module.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/common/proguard-rules.txt.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/common/proguard_macros.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle-projects/common/proguard_recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/gradle/wrapper/gradle/wrapper/gradle-wrapper.jar
%%DATADIR%%/plugins/android/lib/templates/gradle/wrapper/gradle/wrapper/gradle-wrapper.properties
%%DATADIR%%/plugins/android/lib/templates/gradle/wrapper/gradlew
%%DATADIR%%/plugins/android/lib/templates/gradle/wrapper/gradlew.bat
%%DATADIR%%/plugins/android/lib/templates/other/AidlFile/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AidlFile/root/src/app_package/interface.aidl.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AidlFile/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/AidlFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AidlFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/AndroidManifest/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AndroidManifest/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AndroidManifest/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/AppActionsResourceFile/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppActionsResourceFile/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppActionsResourceFile/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppActionsResourceFile/root/res/actions.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppActionsResourceFile/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/res/drawable-nodpi/example_appwidget_preview.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/res/layout/appwidget.xml
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/res/layout/appwidget_configure.xml
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/res/values-v14/dimens.xml
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/res/values/dimens.xml
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/res/xml/appwidget_info.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/src/app_package/AppWidget.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/src/app_package/AppWidget.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/src/app_package/AppWidgetConfigureActivity.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/root/src/app_package/AppWidgetConfigureActivity.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_h.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_v.png
%%DATADIR%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_vh.png
%%DATADIR%%/plugins/android/lib/templates/other/AssetsFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AssetsFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/automotive-media-service.png
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/root/build.gradle.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/root/res/values/styles.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/root/res/xml/automotive_app_desc.xml
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/root/src/app_package/MusicService.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/root/src/app_package/MusicService.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMediaService/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/automotive-messaging-service.png
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/root/res/xml/automotive_app_desc.xml
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/root/src/app_package/MessageReadReceiver.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/root/src/app_package/MessageReadReceiver.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/root/src/app_package/MessageReplyReceiver.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/root/src/app_package/MessageReplyReceiver.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/root/src/app_package/MessagingService.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/root/src/app_package/MessagingService.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/AutomotiveMessagingService/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/BroadcastReceiver/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/BroadcastReceiver/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/BroadcastReceiver/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/BroadcastReceiver/root/src/app_package/BroadcastReceiver.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/BroadcastReceiver/root/src/app_package/BroadcastReceiver.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/BroadcastReceiver/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/ContentProvider/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ContentProvider/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ContentProvider/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ContentProvider/root/src/app_package/ContentProvider.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ContentProvider/root/src/app_package/ContentProvider.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ContentProvider/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/CustomView/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/CustomView/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/CustomView/root/res/layout/sample.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/CustomView/root/res/values/attrs.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/CustomView/root/src/app_package/CustomView.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/CustomView/root/src/app_package/CustomView.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/CustomView/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/FontFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/FontFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/IntentService/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/IntentService/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/IntentService/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/IntentService/root/src/app_package/IntentService.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/IntentService/root/src/app_package/IntentService.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/IntentService/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/JavaFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/JavaFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/JniFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/JniFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/LayoutResourceFile/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/LayoutResourceFile/root/res/layout.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/LayoutResourceFile/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/RawFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/RawFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/ResFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ResFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/ResourcesFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ResourcesFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/RsFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/RsFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/Service/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/Service/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/Service/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/Service/root/src/app_package/Service.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/Service/root/src/app_package/Service.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/Service/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/SliceProvider/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/SliceProvider/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/SliceProvider/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/SliceProvider/root/src/app_package/SliceProvider.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/SliceProvider/root/src/app_package/SliceProvider.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/SliceProvider/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/ValueResourceFile/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ValueResourceFile/root/res/values.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/ValueResourceFile/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/analog_round.png
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/analog_square.png
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/digital_round.png
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/digital_square.png
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/AndroidManifest.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/AndroidManifestPermissions.xml
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/bg.png
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_analog.png
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_digital.png
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_digital_circular.png
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/colors.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/dimens.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/strings.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/res/xml/watch_face.xml
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/src/app_package/MyAnalogWatchFaceService.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/src/app_package/MyAnalogWatchFaceService.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/src/app_package/MyDigitalWatchFaceService.java.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/root/src/app_package/MyDigitalWatchFaceService.kt.ftl
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/WatchFaceService/template_thumbnail.png
%%DATADIR%%/plugins/android/lib/templates/other/XmlFolder/recipe.xml.ftl
%%DATADIR%%/plugins/android/lib/templates/other/XmlFolder/template.xml
%%DATADIR%%/plugins/android/lib/templates/other/common/globals.xml.ftl
%%DATADIR%%/plugins/android/lib/transport_java_proto-27.0.0.0.jar
%%DATADIR%%/plugins/ant/lib/ant-jps.jar
%%DATADIR%%/plugins/ant/lib/antIntegration.jar
%%DATADIR%%/plugins/ant/lib/resources_en.jar
%%DATADIR%%/plugins/aop-common/lib/aop-common.jar
%%DATADIR%%/plugins/aop-common/lib/resources_en.jar
%%DATADIR%%/plugins/arquillian-core/lib/arquillian-core.jar
%%DATADIR%%/plugins/arquillian-core/lib/arquillian-junit.jar
%%DATADIR%%/plugins/arquillian-core/lib/arquillian-testng.jar
%%DATADIR%%/plugins/arquillian-core/lib/mavenDependencies.jar
%%DATADIR%%/plugins/arquillian-core/lib/resources_en.jar
%%DATADIR%%/plugins/aspectj/lib/aspectj-jps.jar
%%DATADIR%%/plugins/aspectj/lib/aspectj.jar
%%DATADIR%%/plugins/aspectj/lib/resources_en.jar
%%DATADIR%%/plugins/cloud-config/lib/cloud-config.jar
%%DATADIR%%/plugins/cloud-config/lib/resources_en.jar
%%DATADIR%%/plugins/coffeescript-core/lib/coffeescript-core.jar
%%DATADIR%%/plugins/coffeescript-core/lib/resources_en.jar
%%DATADIR%%/plugins/completionMlRanking/lib/completionMlRanking.jar
%%DATADIR%%/plugins/completionMlRanking/lib/ngram-slp-0.0.2.jar
%%DATADIR%%/plugins/completionMlRanking/lib/resources_en.jar
%%DATADIR%%/plugins/configurationScript/lib/configurationScript.jar
%%DATADIR%%/plugins/copyright/lib/copyright.jar
%%DATADIR%%/plugins/copyright/lib/resources_en.jar
%%DATADIR%%/plugins/coverage/lib/coverage-report-idea.jar
%%DATADIR%%/plugins/coverage/lib/coverage-report.jar
%%DATADIR%%/plugins/coverage/lib/coverage.jar
%%DATADIR%%/plugins/coverage/lib/coverage_rt.jar
%%DATADIR%%/plugins/coverage/lib/freemarker.jar
%%DATADIR%%/plugins/coverage/lib/jacocoagent.jar
%%DATADIR%%/plugins/coverage/lib/jacocoant.jar
%%DATADIR%%/plugins/coverage/lib/resources_en.jar
%%DATADIR%%/plugins/cucumber-groovy/lib/cucumber-groovy-1.2.4.jar
%%DATADIR%%/plugins/cucumber-groovy/lib/cucumber-groovy.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-core-1.2.4.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-expressions-6.1.2.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-java-1.2.4.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-java.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-jvmFormatter.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-jvmFormatter3.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-jvmFormatter4.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-jvmFormatter5.jar
%%DATADIR%%/plugins/cucumber-java/lib/gherkin-2.12.2.jar
%%DATADIR%%/plugins/devkit/lib/devkit-jps.jar
%%DATADIR%%/plugins/devkit/lib/devkit.jar
%%DATADIR%%/plugins/devkit/lib/dtdparser113.jar
%%DATADIR%%/plugins/devkit/lib/resources_en.jar
%%DATADIR%%/plugins/drools/lib/drools-support.jar
%%DATADIR%%/plugins/drools/lib/resources_en.jar
%%DATADIR%%/plugins/dsm/lib/dsm.jar
%%DATADIR%%/plugins/dsm/lib/resources_en.jar
%%DATADIR%%/plugins/eclipse/lib/eclipse-common.jar
%%DATADIR%%/plugins/eclipse/lib/eclipse-jps.jar
%%DATADIR%%/plugins/eclipse/lib/eclipse.jar
%%DATADIR%%/plugins/eclipse/lib/resources_en.jar
%%DATADIR%%/plugins/editorconfig/lib/editorconfig-core-java.jar
%%DATADIR%%/plugins/editorconfig/lib/editorconfig.jar
%%DATADIR%%/plugins/editorconfig/lib/resources_en.jar
%%DATADIR%%/plugins/emma/lib/emma-agent.jar
%%DATADIR%%/plugins/emma/lib/emma-idea.jar
%%DATADIR%%/plugins/emma/lib/emma.jar
%%DATADIR%%/plugins/emojipicker/lib/emojipicker.jar
%%DATADIR%%/plugins/emojipicker/lib/resources_en.jar
%%DATADIR%%/plugins/externalSystem-dependencyUpdater/lib/externalSystem-dependencyUpdater.jar
%%DATADIR%%/plugins/externalSystem-dependencyUpdater/lib/resources_en.jar
%%DATADIR%%/plugins/featuresTrainer/lib/MultithreadedTC-1.01.jar
%%DATADIR%%/plugins/featuresTrainer/lib/featuresTrainer.jar
%%DATADIR%%/plugins/featuresTrainer/lib/fest-assert-1.5.0-SNAPSHOT.jar
%%DATADIR%%/plugins/featuresTrainer/lib/fest-reflect-2.0-SNAPSHOT.jar
%%DATADIR%%/plugins/featuresTrainer/lib/fest-swing-1.4.6.jar
%%DATADIR%%/plugins/featuresTrainer/lib/fest-util-1.3.0-SNAPSHOT.jar
%%DATADIR%%/plugins/featuresTrainer/lib/jsr305.jar
%%DATADIR%%/plugins/featuresTrainer/lib/resources_en.jar
%%DATADIR%%/plugins/filePrediction/lib/file-prediction-model-0.2.2.jar
%%DATADIR%%/plugins/filePrediction/lib/filePrediction.jar
%%DATADIR%%/plugins/filePrediction/lib/resources_en.jar
%%DATADIR%%/plugins/frameworks-starters/lib/frameworks-starters.jar
%%DATADIR%%/plugins/frameworks-starters/lib/resources_en.jar
%%DATADIR%%/plugins/gherkin/lib/gherkin.jar
%%DATADIR%%/plugins/gherkin/lib/resources_en.jar
%%DATADIR%%/plugins/git4idea/lib/git4idea-rt.jar
%%DATADIR%%/plugins/git4idea/lib/git4idea.jar
%%DATADIR%%/plugins/git4idea/lib/resources_en.jar
%%DATADIR%%/plugins/github/lib/github.jar
%%DATADIR%%/plugins/github/lib/resources_en.jar
%%DATADIR%%/plugins/gradle-dependencyUpdater/lib/gradle-dependencyUpdater.jar
%%DATADIR%%/plugins/gradle-dsl-impl/lib/gradle-dsl-impl.jar
%%DATADIR%%/plugins/gradle-dsl-impl/lib/gradle-dsl.jar
%%DATADIR%%/plugins/gradle-dsl-kotlin-impl/lib/gradle-dsl-kotlin-impl.jar
%%DATADIR%%/plugins/gradle-ext/lib/gradle-ext-profiler-tooling.jar
%%DATADIR%%/plugins/gradle-ext/lib/gradle-ext.jar
%%DATADIR%%/plugins/gradle-ext/lib/resources_en.jar
%%DATADIR%%/plugins/gradle-java-maven/lib/gradle-java-maven.jar
%%DATADIR%%/plugins/gradle-java-maven/lib/resources_en.jar
%%DATADIR%%/plugins/gradle-java/lib/gradle-java.jar
%%DATADIR%%/plugins/gradle-java/lib/gradle-jps.jar
%%DATADIR%%/plugins/gradle-java/lib/resources_en.jar
%%DATADIR%%/plugins/gradle-javaee/lib/javaee-gradle-support.jar
%%DATADIR%%/plugins/gradle-javaee/lib/resources_en.jar
%%DATADIR%%/plugins/gradle/lib/gradle-api-6.7.jar
%%DATADIR%%/plugins/gradle/lib/gradle-api-impldep-6.7.jar
%%DATADIR%%/plugins/gradle/lib/gradle-common.jar
%%DATADIR%%/plugins/gradle/lib/gradle-launcher-6.7.jar
%%DATADIR%%/plugins/gradle/lib/gradle-tooling-extension-api.jar
%%DATADIR%%/plugins/gradle/lib/gradle-tooling-extension-impl.jar
%%DATADIR%%/plugins/gradle/lib/gradle-wrapper-6.7.jar
%%DATADIR%%/plugins/gradle/lib/gradle.jar
%%DATADIR%%/plugins/grazie/lib/aho-corasick-double-array-trie-1.2.2.jar
%%DATADIR%%/plugins/grazie/lib/bridj-0.7.0.jar
%%DATADIR%%/plugins/grazie/lib/commons-text-1.8.jar
%%DATADIR%%/plugins/grazie/lib/dx-1.7.jar
%%DATADIR%%/plugins/grazie/lib/grazi-language-detector-0.1.13.jar
%%DATADIR%%/plugins/grazie/lib/grazie.jar
%%DATADIR%%/plugins/grazie/lib/hppc-0.8.1.jar
%%DATADIR%%/plugins/grazie/lib/hunspell-1.1.1.jar
%%DATADIR%%/plugins/grazie/lib/indriya-1.3.jar
%%DATADIR%%/plugins/grazie/lib/kotlinx-html-jvm-0.6.11.jar
%%DATADIR%%/plugins/grazie/lib/language-en-5.0.jar
%%DATADIR%%/plugins/grazie/lib/languagetool-core-5.0.2.jar
%%DATADIR%%/plugins/grazie/lib/morfologik-fsa-2.1.7.jar
%%DATADIR%%/plugins/grazie/lib/morfologik-fsa-builders-2.1.7.jar
%%DATADIR%%/plugins/grazie/lib/morfologik-speller-2.1.7.jar
%%DATADIR%%/plugins/grazie/lib/morfologik-stemming-2.1.7.jar
%%DATADIR%%/plugins/grazie/lib/resources_en.jar
%%DATADIR%%/plugins/grazie/lib/segment-2.0.1.jar
%%DATADIR%%/plugins/grazie/lib/unit-api-1.0.jar
%%DATADIR%%/plugins/grazie/lib/uom-lib-common-1.1.jar
%%DATADIR%%/plugins/haml/lib/haml.jar
%%DATADIR%%/plugins/haml/lib/resources_en.jar
%%DATADIR%%/plugins/helidon/lib/helidon.jar
%%DATADIR%%/plugins/helidon/lib/resources_en.jar
%%DATADIR%%/plugins/hg4idea/lib/hg4idea.jar
%%DATADIR%%/plugins/hg4idea/lib/resources_en.jar
%%DATADIR%%/plugins/htmltools/lib/htmltools.jar
%%DATADIR%%/plugins/htmltools/lib/resources_en.jar
%%DATADIR%%/plugins/indexing-shared/lib/indexing-shared-git.jar
%%DATADIR%%/plugins/indexing-shared/lib/indexing-shared-java.jar
%%DATADIR%%/plugins/indexing-shared/lib/indexing-shared.jar
%%DATADIR%%/plugins/indexing-shared/lib/resources_en.jar
%%DATADIR%%/plugins/java-decompiler/lib/java-decompiler.jar
%%DATADIR%%/plugins/java-i18n/lib/java-i18n.jar
%%DATADIR%%/plugins/java-i18n/lib/resources_en.jar
%%DATADIR%%/plugins/java-ide-customization/lib/java-ide-customization.jar
%%DATADIR%%/plugins/java/lib/aether-dependency-resolver.jar
%%DATADIR%%/plugins/java/lib/completion-ranking-java-0.3.4.jar
%%DATADIR%%/plugins/java/lib/debugger-memory-agent-1.0.29.jar
%%DATADIR%%/plugins/java/lib/duplicates-java-analysis.jar
%%DATADIR%%/plugins/java/lib/duplicates-java.jar
%%DATADIR%%/plugins/java/lib/ecj-4.16.jar
%%DATADIR%%/plugins/java/lib/jam-support-impl.jar
%%DATADIR%%/plugins/java/lib/jam-support-openapi.jar
%%DATADIR%%/plugins/java/lib/java-api.jar
%%DATADIR%%/plugins/java/lib/java-duplicatesDetection.jar
%%DATADIR%%/plugins/java/lib/java-impl.jar
%%DATADIR%%/plugins/java/lib/java_resources_en.jar
%%DATADIR%%/plugins/java/lib/javac2.jar
%%DATADIR%%/plugins/java/lib/jdkAnnotations.jar
%%DATADIR%%/plugins/java/lib/jgoodies-common-1.4.0.jar
%%DATADIR%%/plugins/java/lib/jmc-common-8.0.0-2.jar
%%DATADIR%%/plugins/java/lib/jmc-flightrecorder-8.0.0-2.jar
%%DATADIR%%/plugins/java/lib/jps-builders-6.jar
%%DATADIR%%/plugins/java/lib/jps-builders.jar
%%DATADIR%%/plugins/java/lib/jps-javac-extension-1.jar
%%DATADIR%%/plugins/java/lib/jps-launcher.jar
%%DATADIR%%/plugins/java/lib/jshell-protocol.jar
%%DATADIR%%/plugins/java/lib/maven-resolver-connector-basic-1.3.3.jar
%%DATADIR%%/plugins/java/lib/maven-resolver-transport-file-1.3.3.jar
%%DATADIR%%/plugins/java/lib/maven-resolver-transport-http-1.3.3.jar
%%DATADIR%%/plugins/java/lib/profiler-ultimate.jar
%%DATADIR%%/plugins/java/lib/resources.jar
%%DATADIR%%/plugins/java/lib/resources_en.jar
%%DATADIR%%/plugins/java/lib/rt/debugger-agent-storage.jar
%%DATADIR%%/plugins/java/lib/rt/debugger-agent.jar
%%DATADIR%%/plugins/java/lib/rt/jps-javac-rt-rpc.jar
%%DATADIR%%/plugins/java/lib/rt/protobuf-java-3.5.1.jar
%%DATADIR%%/plugins/java/lib/sa-jdwp-1.15.jar
%%DATADIR%%/plugins/javaFX/lib/javaFX-common.jar
%%DATADIR%%/plugins/javaFX/lib/javaFX-jps.jar
%%DATADIR%%/plugins/javaFX/lib/javaFX.jar
%%DATADIR%%/plugins/javaFX/lib/resources_en.jar
%%DATADIR%%/plugins/javaFX/lib/rt/sceneBuilderBridge.jar
%%DATADIR%%/plugins/javaHttpClients/lib/javaHttpClients.jar
%%DATADIR%%/plugins/javaHttpClients/lib/resources_en.jar
%%DATADIR%%/plugins/javaSqlApis/lib/javaSqlApis.jar
%%DATADIR%%/plugins/jboss-core/lib/jboss-core.jar
%%DATADIR%%/plugins/jsp/lib/jsp-impl.jar
%%DATADIR%%/plugins/jsp/lib/resources_en.jar
%%DATADIR%%/plugins/jsr45debug/lib/jsr45debug.jar
%%DATADIR%%/plugins/jsr45debug/lib/resources_en.jar
%%DATADIR%%/plugins/junit/lib/idea-junit.jar
%%DATADIR%%/plugins/junit/lib/junit-rt.jar
%%DATADIR%%/plugins/junit/lib/junit5-rt.jar
%%DATADIR%%/plugins/junit/lib/resources_en.jar
%%DATADIR%%/plugins/less/lib/less.jar
%%DATADIR%%/plugins/less/lib/resources_en.jar
%%DATADIR%%/plugins/lombok/lib/lombok-generated.jar
%%DATADIR%%/plugins/lombok/lib/lombok.jar
%%DATADIR%%/plugins/lombok/lib/resources_en.jar
%%DATADIR%%/plugins/markdown/lib/markdown-0.1.41.jar
%%DATADIR%%/plugins/markdown/lib/markdown.jar
%%DATADIR%%/plugins/markdown/lib/resources_en.jar
%%DATADIR%%/plugins/maven-ext/lib/maven-ext.jar
%%DATADIR%%/plugins/maven-ext/lib/resources_en.jar
%%DATADIR%%/plugins/maven-model/lib/maven-model.jar
%%DATADIR%%/plugins/maven/lib/artifact-resolver-m2.jar
%%DATADIR%%/plugins/maven/lib/artifact-resolver-m3.jar
%%DATADIR%%/plugins/maven/lib/artifact-resolver-m31.jar
%%DATADIR%%/plugins/maven/lib/lucene-core-2.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven-errorProne-compiler.jar
%%DATADIR%%/plugins/maven/lib/maven-event-listener.jar
%%DATADIR%%/plugins/maven/lib/maven-jps.jar
%%DATADIR%%/plugins/maven/lib/maven-server-api.jar
%%DATADIR%%/plugins/maven/lib/maven.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-impl.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/archetype-common-2.0-alpha-4-SNAPSHOT.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/commons-beanutils.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/maven-dependency-tree-1.2.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/mercury-artifact-1.0-alpha-6.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/nexus-indexer-1.2.3.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-common.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-impl.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/archetype-catalog-2.2.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/archetype-common-2.2.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/maven-dependency-tree-1.2.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/nexus-indexer-3.0.4.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/nexus-indexer-artifact-1.0.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/LICENSE
%%DATADIR%%/plugins/maven/lib/maven3/NOTICE
%%DATADIR%%/plugins/maven/lib/maven3/README.txt
%%DATADIR%%/plugins/maven/lib/maven3/bin/m2.conf
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvn
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvn.cmd
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvnDebug
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvnDebug.cmd
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvnyjp
%%DATADIR%%/plugins/maven/lib/maven3/boot/plexus-classworlds-2.6.0.jar
%%DATADIR%%/plugins/maven/lib/maven3/boot/plexus-classworlds.license
%%DATADIR%%/plugins/maven/lib/maven3/conf/logging/simplelogger.properties
%%DATADIR%%/plugins/maven/lib/maven3/conf/settings.xml
%%DATADIR%%/plugins/maven/lib/maven3/conf/toolchains.xml
%%DATADIR%%/plugins/maven/lib/maven3/lib/cdi-api-1.0.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/cdi-api.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-cli-1.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-cli.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-io-2.5.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-io.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-lang3-3.8.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-lang3.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/ext/README.txt
%%DATADIR%%/plugins/maven/lib/maven3/lib/guava-25.1-android.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/guava.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/guice-4.2.1-no_aop.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/guice.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi-1.17.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi-native/README.txt
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi-native/freebsd32/libjansi.so
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi-native/freebsd64/libjansi.so
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/javax.inject-1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/javax.inject.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/jcl-over-slf4j-1.7.29.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/jcl-over-slf4j.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/jsoup-1.12.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/jsoup.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/jsr250-api-1.0.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/jsr250-api.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-artifact-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-builder-support-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-compat-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-core-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-embedder-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-model-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-model-builder-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-plugin-api-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-repository-metadata-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-api-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-connector-basic-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-impl-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-provider-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-spi-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-transport-wagon-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-util-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-settings-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-settings-builder-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-shared-utils-3.2.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-slf4j-provider-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/org.eclipse.sisu.inject-0.3.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/org.eclipse.sisu.inject.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/org.eclipse.sisu.plexus-0.3.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/org.eclipse.sisu.plexus.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-cipher-1.7.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-cipher.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-component-annotations-2.1.0.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-component-annotations.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-interpolation-1.25.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-interpolation.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher-1.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-utils-3.2.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-utils.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/slf4j-api-1.7.29.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/slf4j-api.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/wagon-file-3.3.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/wagon-http-3.3.4-shaded.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/wagon-provider-api-3.3.4.jar
%%DATADIR%%/plugins/maven/lib/maven30-server-impl.jar
%%DATADIR%%/plugins/maven/lib/maven36-server-impl.jar
%%DATADIR%%/plugins/maven/lib/plexus-archiver-3.0.3.jar
%%DATADIR%%/plugins/maven/lib/resources_en.jar
%%DATADIR%%/plugins/micronaut/lib/micronaut-gradle-tooling.jar
%%DATADIR%%/plugins/micronaut/lib/micronaut.jar
%%DATADIR%%/plugins/micronaut/lib/resources_en.jar
%%DATADIR%%/plugins/microservices-config/lib/microservices-config.jar
%%DATADIR%%/plugins/microservices-config/lib/resources_en.jar
%%DATADIR%%/plugins/microservices-uast/lib/microservices-uast.jar
%%DATADIR%%/plugins/performanceTesting-maven/lib/performanceTesting-maven.jar
%%DATADIR%%/plugins/performanceTesting/lib/async-profiler-1.8.1-1.jar
%%DATADIR%%/plugins/performanceTesting/lib/byte-buddy-agent-1.10.1.jar
%%DATADIR%%/plugins/performanceTesting/lib/performanceTesting.jar
%%DATADIR%%/plugins/performanceTesting/lib/resources_en.jar
%%DATADIR%%/plugins/performanceTesting/lib/yjp-controller-api-redist.jar
%%DATADIR%%/plugins/platform-images/lib/platform-images.jar
%%DATADIR%%/plugins/platform-images/lib/resources_en.jar
%%DATADIR%%/plugins/properties-resource-bundle-editor/lib/properties-resource-bundle-editor.jar
%%DATADIR%%/plugins/properties-resource-bundle-editor/lib/resources_en.jar
%%DATADIR%%/plugins/properties/lib/properties.jar
%%DATADIR%%/plugins/properties/lib/resources_en.jar
%%DATADIR%%/plugins/quarkus/lib/quarkus.jar
%%DATADIR%%/plugins/quarkus/lib/resources_en.jar
%%DATADIR%%/plugins/reactivestreams-core/lib/reactivestreams-core.jar
%%DATADIR%%/plugins/reactivestreams-core/lib/resources_en.jar
%%DATADIR%%/plugins/recommenders/lib/commons-pool2-2.8.0.jar
%%DATADIR%%/plugins/recommenders/lib/maven-resolver-connector-basic-1.3.3.jar
%%DATADIR%%/plugins/recommenders/lib/maven-resolver-transport-file-1.3.3.jar
%%DATADIR%%/plugins/recommenders/lib/maven-resolver-transport-http-1.3.3.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-java-commons-0.5.3.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-java-jayes-0.5.3.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-java.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-jayes-2.5.5.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-jayes-io-2.5.5.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-python.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders.jar
%%DATADIR%%/plugins/remote-run/lib/remote-run.jar
%%DATADIR%%/plugins/remote-run/lib/resources_en.jar
%%DATADIR%%/plugins/repository-search/lib/repository-search.jar
%%DATADIR%%/plugins/restClient/lib/resources_en.jar
%%DATADIR%%/plugins/restClient/lib/restClient.jar
%%DATADIR%%/plugins/restWebServices/lib/rs.jar
%%DATADIR%%/plugins/restWebServices/lib/ws-rt.jar
%%DATADIR%%/plugins/restWebServices/lib/ws-utils.jar
%%DATADIR%%/plugins/sass/lib/jrubyparser-0.5.4.jar
%%DATADIR%%/plugins/sass/lib/resources_en.jar
%%DATADIR%%/plugins/sass/lib/sass.jar
%%DATADIR%%/plugins/settings-repository/lib/jgit.jar
%%DATADIR%%/plugins/settings-repository/lib/resources_en.jar
%%DATADIR%%/plugins/settings-repository/lib/settings-repository.jar
%%DATADIR%%/plugins/sh/lib/resources_en.jar
%%DATADIR%%/plugins/sh/lib/sh.jar
%%DATADIR%%/plugins/smali/lib/smali.jar
%%DATADIR%%/plugins/spy-js/lib/resources_en.jar
%%DATADIR%%/plugins/spy-js/lib/socketio.jar
%%DATADIR%%/plugins/spy-js/lib/spy-js.jar
%%DATADIR%%/plugins/spy-js/server/lib/app.js
%%DATADIR%%/plugins/spy-js/server/lib/defaultConfig.js
%%DATADIR%%/plugins/spy-js/server/lib/evaluator.js
%%DATADIR%%/plugins/spy-js/server/lib/global.js
%%DATADIR%%/plugins/spy-js/server/lib/instrument.js
%%DATADIR%%/plugins/spy-js/server/lib/proxyUtil.js
%%DATADIR%%/plugins/spy-js/server/lib/session.js
%%DATADIR%%/plugins/spy-js/server/lib/sessionCore.js
%%DATADIR%%/plugins/spy-js/server/lib/sessionNode.js
%%DATADIR%%/plugins/spy-js/server/lib/sessionStore.js
%%DATADIR%%/plugins/spy-js/server/lib/tracer.js
%%DATADIR%%/plugins/spy-js/server/lib/tracerDependencies.js
%%DATADIR%%/plugins/spy-js/server/lib/tracerNode.js
%%DATADIR%%/plugins/spy-js/server/lib/urlUtil.js
%%DATADIR%%/plugins/spy-js/server/lib/worker.js
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/acorn
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/escodegen
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/esgenerate
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/esparse
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/esvalidate
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/express
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/ncp
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/node-http-proxy
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/rimraf
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/semver
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/uglifyjs
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/uuid
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/wscat
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/.editorconfig
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/.tern-project
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/AUTHORS
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/bin/acorn
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/bin/build-acorn.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/bin/generate-identifier-regex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/bin/update_authors.sh
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/dist/.keep
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/dist/acorn.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/dist/acorn_loose.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/dist/walk.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/bin/acorn.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/expression.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/identifier.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/location.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/locutil.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/acorn_loose.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/expression.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/parseutil.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/state.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/statement.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/tokenize.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/lval.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/options.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/parseutil.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/state.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/statement.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/tokencontext.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/tokenize.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/tokentype.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/walk/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/whitespace.js
%%DATADIR%%/plugins/spy-js/server/node_modules/active-x-obfuscator/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/active-x-obfuscator/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/active-x-obfuscator/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/active-x-obfuscator/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/amdefine/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/amdefine/amdefine.js
%%DATADIR%%/plugins/spy-js/server/node_modules/amdefine/intercept.js
%%DATADIR%%/plugins/spy-js/server/node_modules/amdefine/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/archiver.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/core/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/core/queue.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/json/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/tar/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/zip/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/util/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/errors.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/reader.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/types.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/writer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/tst/ber/reader.test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/tst/ber/writer.test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/assert-plus/assert.js
%%DATADIR%%/plugins/spy-js/server/node_modules/assert-plus/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/async/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/async/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/async/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/async/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/async/lib/async.js
%%DATADIR%%/plugins/spy-js/server/node_modules/async/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/aws-sign2/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/aws-sign2/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/aws-sign2/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/balanced-match/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/balanced-match/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/balanced-match/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/balanced-match/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/base64id/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/base64id/lib/base64id.js
%%DATADIR%%/plugins/spy-js/server/node_modules/base64id/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/bl.js
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/images/boom.png
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/brace-expansion/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/brace-expansion/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/buffer-crc32/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/buffer-crc32/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/buffer-crc32/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/caseless/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/caseless/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/caseless/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/MIT-LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/colors.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/example.html
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/example.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/themes/winston-dark.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/themes/winston-light.js
%%DATADIR%%/plugins/spy-js/server/node_modules/combined-stream/License
%%DATADIR%%/plugins/spy-js/server/node_modules/combined-stream/lib/combined_stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/combined-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/commander/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/commander/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/README.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/example/map.js
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/cache.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/connect.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/basicAuth.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/bodyParser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/compress.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/cookieParser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/cookieSession.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/csrf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/directory.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/errorHandler.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/favicon.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/json.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/limit.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/logger.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/methodOverride.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/multipart.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/query.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/responseTime.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/cookie.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/memory.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/session.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/store.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/static.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/staticCache.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/timeout.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/urlencoded.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/vhost.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/patch.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/proto.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/public/directory.html
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/public/error.html
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/public/favicon.ico
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/public/style.css
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/Readme.md
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/lib/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/core-util-is/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/core-util-is/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/core-util-is/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/core-util-is/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/CHANGELOG
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/CONTRIBUTING.md
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/lib/crc32-stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/CHANGELOG
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/README.old
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/ctf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/ctio.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/ctype.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/man/man3ctype/ctio.3ctype
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/tools/jsl.conf
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/tools/jsstyle
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/example/cmp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/lib/is_arguments.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/lib/keys.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/readme.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/README.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/example/cmp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/lib/deflate-crc32-stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/License
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/lib/delayed_stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/end-of-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/end-of-stream/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/end-of-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/LICENSE.BSD
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/LICENSE.source-map
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/bin/escodegen.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/bin/esgenerate.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/escodegen.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/CHANGELOG.md
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/Makefile.dryice.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/assert-shim.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/mini-require.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/prefix-source-map.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/prefix-utils.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-source-map.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-utils.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/test-prefix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/test-suffix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/array-set.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/base64-vlq.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/base64.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/basic-source-map-consumer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/binary-search.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/indexed-source-map-consumer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/mapping-list.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-map-consumer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-map-generator.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/ChangeLog
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/LICENSE.BSD
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/bin/esparse.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/bin/esvalidate.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/esprima.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/.editorconfig
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/LICENSE.BSD
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/estraverse.js
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/gulpfile.js
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/LICENSE.BSD
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/lib/ast.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/lib/code.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/lib/keyword.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/express/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/express/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/express/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/express/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/express/bin/express
%%DATADIR%%/plugins/spy-js/server/node_modules/express/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/application.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/express.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/request.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/response.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/router/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/router/route.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/view.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/commander/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/commander/Readme.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/commander/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/commander/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/debug/Readme.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/debug/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/debug/lib/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/debug/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/express/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/fast-levenshtein/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/fast-levenshtein/levenshtein.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fast-levenshtein/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/lib/env.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/lib/file.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/lib/logger.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/lib/query.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/Changelog.md
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/dbcs-codec.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/dbcs-data.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/internal.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-codec.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-data-generated.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-data.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/big5-added.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp936.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp949.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp950.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/eucjp.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/gbk-added.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/shiftjis.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/utf16.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/utf7.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/bom-handling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/extend-node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/index.d.ts
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/streams.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/lib/findup-sync.js
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/common.js
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/glob.js
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/sync.js
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/forever-agent/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/forever-agent/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/forever-agent/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/License
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/lib/form_data.js
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/bower.json
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/lib/async.js
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/support/sync-package-managers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/fs.realpath/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/fs.realpath/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fs.realpath/old.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fs.realpath/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/common.js
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/glob.js
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/sync.js
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/fs.js
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/graceful-fs.js
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/legacy-streams.js
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/polyfills.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/example/usage.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/images/hawk.png
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/images/logo.png
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/client.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/crypto.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/images/hoek.png
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/lib/escape.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/benchmark/websockets-throughput.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/bin/node-http-proxy
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/config.sample.json
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/balancer/simple-balancer-with-websockets.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/balancer/simple-balancer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/helpers/store.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/basic-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/concurrent-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/custom-proxy-error.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/forward-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/latent-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-https-to-http.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-https-to-https.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-table.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/standalone-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/bodyDecoder-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/gzip-middleware-proxytable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/gzip-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/jsonp-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/modifyResponse-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/url-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/url-middleware2.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/latent-websocket-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/standalone-websocket-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/websocket-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/http-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/proxy-table.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/routing-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/.dir-locals.el
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/http_signing.md
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/signer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/verify.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/i/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/i/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/i/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/defaults.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/inflect.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/inflections.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/methods.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/native.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/big5.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/gbk.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/singlebyte.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/table/big5.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/table/gbk.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/generation/generate-big5-table.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/generation/generate-singlebyte.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/inflight/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/inflight/inflight.js
%%DATADIR%%/plugins/spy-js/server/node_modules/inflight/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/inherits/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/inherits/inherits.js
%%DATADIR%%/plugins/spy-js/server/node_modules/inherits/inherits_browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/inherits/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/isarray/build/build.js
%%DATADIR%%/plugins/spy-js/server/node_modules/isarray/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/isarray/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/isarray/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/isbinaryfile/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/isbinaryfile/LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/isbinaryfile/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/isbinaryfile/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/stringify.js
%%DATADIR%%/plugins/spy-js/server/node_modules/keypress/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/keypress/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/keypress/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/lib/lazystream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/cast.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/coerce.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/parse-string.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/parse.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.compat.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.compat.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.underscore.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.underscore.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/lodash.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/AUTHORS
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/lib/lru-cache.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/s.js
%%DATADIR%%/plugins/spy-js/server/node_modules/methods/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/methods/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/methods/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/SOURCES.md
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/lib/custom.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/lib/mime.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/lib/node.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/mime.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/types/mime.types
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/types/node.types
%%DATADIR%%/plugins/spy-js/server/node_modules/minimatch/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/minimatch/browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/minimatch/minimatch.js
%%DATADIR%%/plugins/spy-js/server/node_modules/minimatch/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/examples/pow.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/readme.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/ms/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ms/license.md
%%DATADIR%%/plugins/spy-js/server/node_modules/ms/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/examples/parent.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/examples/worker.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/.name
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/encodings.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/jsLibraryMappings.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/libraries/multi_stage_sourcemap_node_modules.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/misc.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/modules.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/multi-stage-sourcemap.iml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/scopes/scope_settings.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/vcs.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/workspace.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/.bower.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/MIT-LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/bower.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/build/power-assert.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/lib/power-assert.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/build.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/index.html
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/one_pass_result.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/origin.coffee
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/two_pass_result.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/lib/multi-stage-sourcemap.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/examples/azureblobstorage.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/examples/s3.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/examples/upload.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/.dntrc
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/build/config.gypi
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/include_dirs.js
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/nan.h
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/bin/ncp
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/lib/ncp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/examples/accept.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/examples/charset.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/examples/encoding.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/examples/language.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/charset.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/encoding.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/language.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/mediaType.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/negotiator.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/bench.gnu
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/bench.sh
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/benchmark-native.c
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/benchmark.js
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/bin/uuid
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/bower.json
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/lib/sha1-browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/uuid.js
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/v3.js
%%DATADIR%%/plugins/spy-js/server/node_modules/oauth-sign/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/oauth-sign/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/oauth-sign/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/oauth-sign/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/once/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/once/once.js
%%DATADIR%%/plugins/spy-js/server/node_modules/once/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/bool.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/boolean_double.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/boolean_single.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/default_hash.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/default_singles.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/divide.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/line_count.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/line_count_options.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/line_count_wrap.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/nonopt.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/reflect.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/short.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/string.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/usage-options.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/xup.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/readme.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/coerce.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/help.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/parse-type.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/options/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/options/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/options/lib/options.js
%%DATADIR%%/plugins/spy-js/server/node_modules/options/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/os-tmpdir/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/os-tmpdir/license
%%DATADIR%%/plugins/spy-js/server/node_modules/os-tmpdir/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/path-is-absolute/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/path-is-absolute/license
%%DATADIR%%/plugins/spy-js/server/node_modules/path-is-absolute/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/pend/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/pend/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pend/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/pend/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/docs/docco.css
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/docs/pkginfo.html
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/all-properties.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/array-argument.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/multiple-properties.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/object-argument.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/single-property.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/lib/pkginfo.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/doc/index.html
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/examples/basic.fallback.js
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/examples/basic.js
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/lib/server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Func.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/List.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Num.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Obj.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Str.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/punycode/LICENSE-MIT.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/punycode/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/punycode/punycode.js
%%DATADIR%%/plugins/spy-js/server/node_modules/qs/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/qs/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/qs/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/buffer_bench.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/hiredis_parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/re_sub_test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/reconnect_test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/codec.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/pub.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/run
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/pub.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/run
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/00
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/plot
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/size-rate.png
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/speed.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/sub_quit_test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/diff_multi_bench_output.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/auth.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/backpressure_drain.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/eval.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/extend.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/file.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/mget.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/monitor.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/multi.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/multi2.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/psubscribe.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/pub_sub.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/simple.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/sort.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/subqueries.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/subquery.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/unix_socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/web_server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/generate_commands.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/commands.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/parser/hiredis.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/parser/javascript.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/queue.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/to_array.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/mem.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/multi_bench.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/request/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/request/CONTRIBUTING.md
%%DATADIR%%/plugins/spy-js/server/node_modules/request/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/request/disabled.appveyor.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/request/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/cookies.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/copy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/helpers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/optional.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/.jshintignore
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/CONTRIBUTING.md
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/parse.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/stringify.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/request/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/request/request.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/bin.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/changelog.md
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/common.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/glob.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/sync.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/minimatch.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/rimraf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/bin/semver
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/foot.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/head.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/semver.browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/semver.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/semver.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/send/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/send/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/send/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/send/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/send/lib/send.js
%%DATADIR%%/plugins/spy-js/server/node_modules/send/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/send/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/examples/offset.js
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/examples/time.js
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/bin/builder.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-bind/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-bind/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-emitter/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-emitter/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json-fallback/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json-fallback/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/emitter.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transport.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/flashsocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-jsonp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-xhr.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/websocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-socket.io-protocol/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-socket.io-protocol/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/timoxley-to-array/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/timoxley-to-array/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/dist/WebSocketMain.swf
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/dist/WebSocketMainInsecure.swf
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/dist/socket.io.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/dist/socket.io.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/events.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/io.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/json.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/namespace.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transport.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/flashsocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/htmlfile.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/jsonp-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/websocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/xhr-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/xhr.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/sample.html
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/swfobject.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/web_socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/decode.bench.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/encode.bench.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/runner.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/logger.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/manager.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/namespace.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/socket.io.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/static.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/store.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/stores/memory.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/stores/redis.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transport.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/flashsocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/htmlfile.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/http-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/http.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/jsonp-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/default.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/hybi-07-12.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/hybi-16.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/xhr-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/Makefile.dryice.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/assert-shim.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/mini-require.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/prefix-source-map.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/prefix-utils.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/suffix-browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/suffix-source-map.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/suffix-utils.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/test-prefix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/test-suffix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/array-set.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/base64-vlq.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/base64.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/binary-search.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/mapping-list.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-map-consumer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-map-generator.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/string_decoder/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/string_decoder/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/string_decoder/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/string_decoder/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/example.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/stringstream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/extract.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/headers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/pack.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/examples/grepcount.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/examples/pdfcreator.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/lib/temp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/no_cleanup.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/no_cleanup_on_exit.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/no_cleanup_on_exit.spec.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/.bin/rimraf
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/AUTHORS
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/bin.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/rimraf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/tinycolor/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/tinycolor/example.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tinycolor/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/tinycolor/tinycolor.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/cookie.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/memstore.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/pathMatch.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/permuteDomain.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/pubsuffix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/store.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/tunnel-agent/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/tunnel-agent/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tunnel-agent/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/lib/check.js
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/lib/parse-type.js
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/README.html
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/README.org
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/bin/uglifyjs
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/docstyle.css
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/lib/object-ast.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/lib/parse-js.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/lib/process.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/lib/squeeze-more.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/uglify-js.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uid2/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/uid2/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uid2/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/Gemfile
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/Gemfile.lock
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/README.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/Rakefile
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/dist/underscore.string.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/lib/underscore.string.js
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/CREDITS
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/bin/testfiles.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/bin/update.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/features/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/lib/regexps.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/lib/update.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/static/user_agent.after.yaml
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/args.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/base64.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/file.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/format.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/AUTHORS
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/fiber.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/rimraf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/README.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/example/center.js
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/example/meat.js
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/wrappy/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/wrappy/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/wrappy/wrappy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/bin/wscat
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/binding.gyp
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/Release/.deps/Release/obj.target/bufferutil/src/bufferutil.o.d.raw
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/binding.Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/bufferutil.target.mk
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/config.gypi
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/gyp-mac-tool
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/validation.target.mk
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/BufferPool.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/BufferUtil.fallback.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/BufferUtil.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/ErrorCodes.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Receiver.hixie.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Receiver.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Sender.hixie.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Sender.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Validation.fallback.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Validation.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/WebSocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/WebSocketServer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/src/bufferutil.cc
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/src/validation.cc
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/autotest.watchr
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/example/demo.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/lib/XMLHttpRequest.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-constants.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-events.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-exceptions.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-headers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-request-methods.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-request-protocols.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/testdata.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/LICENCE
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/immutable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/mutable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/yauzl/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/yauzl/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/yauzl/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/Tokenizer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/ZeParser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/test-parser.html
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/test-tokenizer.html
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/tests.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/unicodecategories.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/lib/headers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/lib/util/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/lib/zip-stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/package.json
%%DATADIR%%/plugins/spy-js/server/proxy-nix.sh
%%DATADIR%%/plugins/spy-js/server/proxy-osx.sh
%%DATADIR%%/plugins/spy-js/server/spy.js
%%DATADIR%%/plugins/spy-js/server/spyNode.js
%%DATADIR%%/plugins/stream-debugger/lib/resources_en.jar
%%DATADIR%%/plugins/stream-debugger/lib/stream-debugger.jar
%%DATADIR%%/plugins/stylus/lib/resources_en.jar
%%DATADIR%%/plugins/stylus/lib/stylus.jar
%%DATADIR%%/plugins/svn4idea/lib/resources_en.jar
%%DATADIR%%/plugins/svn4idea/lib/sqlite-jdbc-3.20.1.jar
%%DATADIR%%/plugins/svn4idea/lib/svn4idea.jar
%%DATADIR%%/plugins/swagger/lib/jackson-dataformat-yaml-2.9.8.jar
%%DATADIR%%/plugins/swagger/lib/resources_en.jar
%%DATADIR%%/plugins/swagger/lib/swagger-ui-3.32.5.jar
%%DATADIR%%/plugins/swagger/lib/swagger.jar
%%DATADIR%%/plugins/tasks-time-tracking/lib/resources_en.jar
%%DATADIR%%/plugins/tasks-time-tracking/lib/tasks-time-tracking.jar
%%DATADIR%%/plugins/tasks/lib/axis-1.4.jar
%%DATADIR%%/plugins/tasks/lib/axis-jaxrpc-1.4.jar
%%DATADIR%%/plugins/tasks/lib/axis-saaj-1.3.jar
%%DATADIR%%/plugins/tasks/lib/commons-discovery-0.4.jar
%%DATADIR%%/plugins/tasks/lib/jira.jar
%%DATADIR%%/plugins/tasks/lib/json-path-0.8.0.jar
%%DATADIR%%/plugins/tasks/lib/json-smart-1.1.1.jar
%%DATADIR%%/plugins/tasks/lib/tasks-api.jar
%%DATADIR%%/plugins/tasks/lib/tasks-compatibility.jar
%%DATADIR%%/plugins/tasks/lib/tasks-core.jar
%%DATADIR%%/plugins/tasks/lib/tasks-java.jar
%%DATADIR%%/plugins/tasks/lib/wsdl4j-1.4.jar
%%DATADIR%%/plugins/terminal/.zshenv
%%DATADIR%%/plugins/terminal/fish/config.fish
%%DATADIR%%/plugins/terminal/jediterm-bash.in
%%DATADIR%%/plugins/terminal/lib/resources_en.jar
%%DATADIR%%/plugins/terminal/lib/terminal.jar
%%DATADIR%%/plugins/testng/lib/aopalliance-1.0.jar
%%DATADIR%%/plugins/testng/lib/guice-4.1.0-no_aop.jar
%%DATADIR%%/plugins/testng/lib/javax.inject-1.jar
%%DATADIR%%/plugins/testng/lib/jcommander-1.72.jar
%%DATADIR%%/plugins/testng/lib/resources_en.jar
%%DATADIR%%/plugins/testng/lib/testng-7.1.0.jar
%%DATADIR%%/plugins/testng/lib/testng-plugin.jar
%%DATADIR%%/plugins/testng/lib/testng-rt.jar
%%DATADIR%%/plugins/textmate/lib/bundles/bat/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/bat/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/snippets/batchfile.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/bat/syntaxes/batchfile.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/syntaxes/clojure.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/snippets/coffeescript.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/syntaxes/coffeescript.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/snippets/c.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/snippets/cpp.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/c.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.embedded.macro.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/platform.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/snippets/csharp.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/syntaxes/csharp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/.vscode/launch.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/css/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/syntaxes/css.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/docker/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/syntaxes/docker.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/snippets/fsharp.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/syntaxes/fsharp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/git/README.md
%%DATADIR%%/plugins/textmate/lib/bundles/git/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/extension.webpack.config.js
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/diff.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/git-commit.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/git-rebase.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/ignore.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/api1.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/extension.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/git.d.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass-empty.sh
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass-main.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass.sh
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/autofetch.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/commands.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/contentProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/decorationProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/decorators.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/encoding.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/fileSystemProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/git.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/ipc/ipcClient.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/ipc/ipcServer.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/log.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/main.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/model.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/protocolHandler.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/repository.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/staging.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/statusbar.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/test/git.test.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/test/index.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/test/smoke.test.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/timelineProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/typings/refs.d.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/uri.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/util.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/watch.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/diff.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/git-commit.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/git-rebase.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/ignore.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/tsconfig.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/yarn.lock
%%DATADIR%%/plugins/textmate/lib/bundles/go/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/go/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/go/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/go/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/go/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/go/syntaxes/go.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/snippets/groovy.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/syntaxes/groovy.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/syntaxes/Handlebars.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/syntaxes/hlsl.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/html/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/syntaxes/html-derivative.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/syntaxes/html.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/ini/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/ini.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/properties.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/syntaxes/ini.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/java/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/snippets/java.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/java/syntaxes/java.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/javascript-language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/snippets/javascript.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScript.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScriptReact.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/Readme.md
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/tags-language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/json/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/syntaxes/JSON.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/syntaxes/JSONC.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/info.plist
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/snippets/class.tmSnippet
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/snippets/println.tmSnippet
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/syntaxes/Kotlin.tmLanguage
%%DATADIR%%/plugins/textmate/lib/bundles/less/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/less/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/less/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/less/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/less/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/less/syntaxes/less.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/log/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/log/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/log/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/log/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/log/syntaxes/log.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/lua/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/syntaxes/lua.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/make/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/syntaxes/make.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/snippets/markdown.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/syntaxes/markdown.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/mdx/license
%%DATADIR%%/plugins/textmate/lib/bundles/mdx/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/mdx/syntaxes/mdx.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c++.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/perl/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/perl.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/perl6.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/syntaxes/perl.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/syntaxes/perl6.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscode/launch.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscode/tasks.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/php/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/snippets/php.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/php/syntaxes/html.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/syntaxes/php.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/snippets/powershell.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/syntaxes/powershell.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/pug/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/syntaxes/pug.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscode/launch.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscode/tasks.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/python/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/extension.webpack.config.js
%%DATADIR%%/plugins/textmate/lib/bundles/python/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/src/pythonMain.ts
%%DATADIR%%/plugins/textmate/lib/bundles/python/src/typings/ref.d.ts
%%DATADIR%%/plugins/textmate/lib/bundles/python/syntaxes/MagicPython.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/syntaxes/MagicRegExp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/tsconfig.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/r/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/syntaxes/r.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/razor/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/syntaxes/cshtml.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/syntaxes/ruby.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/rust/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/syntaxes/rust.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/scss/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/syntaxes/sassdoc.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/syntaxes/scss.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/README.md
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/extension.webpack.config.js
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/src/extension.ts
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/src/media/refresh-dark.svg
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/src/media/refresh-light.svg
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/src/typings/refs.d.ts
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/syntaxes/generateTMLanguage.js
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/syntaxes/searchResult.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/tsconfig.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/yarn.lock
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/syntaxes/shaderlab.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/syntaxes/shell-unix-bash.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/sql/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/syntaxes/sql.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/swift/LICENSE.md
%%DATADIR%%/plugins/textmate/lib/bundles/swift/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/snippets/swift.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/swift/syntaxes/swift.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Comments.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Folding.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Indent.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Symbol List.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Typing Pairs.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/README.mdown
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Syntaxes/TOML.tmLanguage
%%DATADIR%%/plugins/textmate/lib/bundles/toml/info.plist
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/snippets/typescript.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/Readme.md
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScript.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScriptReact.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/vb/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/snippets/vb.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/vb/syntaxes/asp-vb-net.tmlanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/viml/LICENSE.txt
%%DATADIR%%/plugins/textmate/lib/bundles/viml/grammars/viml.json
%%DATADIR%%/plugins/textmate/lib/bundles/viml/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/basic.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/example-help.txt
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/flavours.of.snippet
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/modeline.md
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/neo.snippets
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/solarized.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/syntax.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/textobj-rubyblock.vmb
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/tpope-characterize.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/tpope-fugitive.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/ulti.snip
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/vim-syntax.vim
%%DATADIR%%/plugins/textmate/lib/bundles/xml/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/xml/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/syntaxes/xml.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/syntaxes/xsl.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/xml.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/xsl.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/syntaxes/yaml.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/resources_en.jar
%%DATADIR%%/plugins/textmate/lib/textmate-core.jar
%%DATADIR%%/plugins/textmate/lib/textmate.jar
%%DATADIR%%/plugins/thymeleaf/lib/resources_en.jar
%%DATADIR%%/plugins/thymeleaf/lib/thymeleaf-support.jar
%%DATADIR%%/plugins/tslint/js/convert-tslint-config.js
%%DATADIR%%/plugins/tslint/js/languageService/tslint-plugin-provider.js
%%DATADIR%%/plugins/tslint/js/languageService/tslint-plugin.js
%%DATADIR%%/plugins/tslint/js/utils.js
%%DATADIR%%/plugins/tslint/lib/resources_en.jar
%%DATADIR%%/plugins/tslint/lib/tslint.jar
%%DATADIR%%/plugins/uiDesigner/lib/jps/java-guiForms-jps.jar
%%DATADIR%%/plugins/uiDesigner/lib/resources_en.jar
%%DATADIR%%/plugins/uiDesigner/lib/uiDesigner.jar
%%DATADIR%%/plugins/uml/lib/diagram-api.jar
%%DATADIR%%/plugins/uml/lib/uml-support.jar
%%DATADIR%%/plugins/vcs-changeReminder/lib/randomForestRegressor-0.0.11.jar
%%DATADIR%%/plugins/vcs-changeReminder/lib/resources_en.jar
%%DATADIR%%/plugins/vcs-changeReminder/lib/vcs-changeReminder.jar
%%DATADIR%%/plugins/w3validators/lib/resources_en.jar
%%DATADIR%%/plugins/w3validators/lib/tagsoup-1.2.1.jar
%%DATADIR%%/plugins/w3validators/lib/w3-css-validator.jar
%%DATADIR%%/plugins/w3validators/lib/w3validators.jar
%%DATADIR%%/plugins/webDeployment/lib/commons-vfs2-2.2.1.10.jar
%%DATADIR%%/plugins/webDeployment/lib/resources_en.jar
%%DATADIR%%/plugins/webDeployment/lib/webDeployment.jar
%%DATADIR%%/plugins/webSphereIntegration/lib/jps/javaee-appServers-websphere-jps.jar
%%DATADIR%%/plugins/webSphereIntegration/lib/specifics/webSphereClientImpl.jar
%%DATADIR%%/plugins/webSphereIntegration/lib/webSphereIntegration.jar
%%DATADIR%%/plugins/weblogicIntegration/lib/jps/javaee-appServers-weblogic-jps.jar
%%DATADIR%%/plugins/weblogicIntegration/lib/resources_en.jar
%%DATADIR%%/plugins/weblogicIntegration/lib/specifics/weblogicSpecifics.jar
%%DATADIR%%/plugins/weblogicIntegration/lib/weblogicIntegration.jar
%%DATADIR%%/plugins/webp/lib/libwebp.jar
%%DATADIR%%/plugins/webp/lib/webp.jar
%%DATADIR%%/plugins/xpath/lib/resources_en.jar
%%DATADIR%%/plugins/xpath/lib/rt/xslt-rt.jar
%%DATADIR%%/plugins/xpath/lib/xpath.jar
%%DATADIR%%/plugins/xslt-debugger/lib/resources_en.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rmi-stubs.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/saxon.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/saxon9he.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/serializer-2.7.2.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/xalan-2.7.2.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/xslt-debugger-impl-rt.jar
%%DATADIR%%/plugins/xslt-debugger/lib/xslt-debugger-rt.jar
%%DATADIR%%/plugins/xslt-debugger/lib/xslt-debugger.jar
%%DATADIR%%/plugins/yaml/lib/resources_en.jar
%%DATADIR%%/plugins/yaml/lib/yaml.jar
%%DATADIR%%/plugins/zkm/lib/resources_en.jar
%%DATADIR%%/plugins/zkm/lib/zkm.jar
%%DATADIR%%/product-info.json
%%DATADIR%%/redist/annotations-java8.jar
%%DATADIR%%/redist/annotations.jar
%%DATADIR%%/redist/forms_rt.jar
%%DATADIR%%/redist/javac2.jar
%%DATADIR%%/redist/readme.txt
%%DATADIR%%/redist/src/src_forms_rt.zip
%%DATADIR%%/redist/src/src_javac2.zip