summaryrefslogtreecommitdiff
path: root/java/intellij-ultimate/pkg-plist
blob: b7c8401f4bceb3bf3b9ff88009f5dedadf28a916 (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
bin/idea
%%IDEA_HOME%%/Install-Linux-tar.txt
%%IDEA_HOME%%/bin/appletviewer.policy
%%IDEA_HOME%%/bin/idea.png
%%IDEA_HOME%%/bin/idea.properties
%%IDEA_HOME%%/bin/idea.sh
%%IDEA_HOME%%/bin/idea.vmoptions
%%IDEA_HOME%%/bin/idea64.vmoptions
%%IDEA_HOME%%/bin/inspect.sh
%%IDEA_HOME%%/bin/log.xml
%%IDEA_HOME%%/build.txt
%%IDEA_HOME%%/help/ReferenceCard.pdf
%%IDEA_HOME%%/help/ReferenceCardForMac.pdf
%%IDEA_HOME%%/help/ideahelp.jar
%%IDEA_HOME%%/idea.png
%%IDEA_HOME%%/jre/lib/tools.jar
%%IDEA_HOME%%/lib/alloy.jar
%%IDEA_HOME%%/lib/annotations.jar
%%IDEA_HOME%%/lib/ant/INSTALL
%%IDEA_HOME%%/lib/ant/KEYS
%%IDEA_HOME%%/lib/ant/LICENSE
%%IDEA_HOME%%/lib/ant/NOTICE
%%IDEA_HOME%%/lib/ant/README
%%IDEA_HOME%%/lib/ant/WHATSNEW
%%IDEA_HOME%%/lib/ant/docs.zip
%%IDEA_HOME%%/lib/ant/fetch.xml
%%IDEA_HOME%%/lib/ant/get-m2.xml
%%IDEA_HOME%%/lib/ant/lib/README
%%IDEA_HOME%%/lib/ant/lib/ant-antlr.jar
%%IDEA_HOME%%/lib/ant/lib/ant-antlr.pom
%%IDEA_HOME%%/lib/ant/lib/ant-apache-bcel.jar
%%IDEA_HOME%%/lib/ant/lib/ant-apache-bcel.pom
%%IDEA_HOME%%/lib/ant/lib/ant-apache-bsf.jar
%%IDEA_HOME%%/lib/ant/lib/ant-apache-bsf.pom
%%IDEA_HOME%%/lib/ant/lib/ant-apache-log4j.jar
%%IDEA_HOME%%/lib/ant/lib/ant-apache-log4j.pom
%%IDEA_HOME%%/lib/ant/lib/ant-apache-oro.jar
%%IDEA_HOME%%/lib/ant/lib/ant-apache-oro.pom
%%IDEA_HOME%%/lib/ant/lib/ant-apache-regexp.jar
%%IDEA_HOME%%/lib/ant/lib/ant-apache-regexp.pom
%%IDEA_HOME%%/lib/ant/lib/ant-apache-resolver.jar
%%IDEA_HOME%%/lib/ant/lib/ant-apache-resolver.pom
%%IDEA_HOME%%/lib/ant/lib/ant-apache-xalan2.jar
%%IDEA_HOME%%/lib/ant/lib/ant-apache-xalan2.pom
%%IDEA_HOME%%/lib/ant/lib/ant-commons-logging.jar
%%IDEA_HOME%%/lib/ant/lib/ant-commons-logging.pom
%%IDEA_HOME%%/lib/ant/lib/ant-commons-net.jar
%%IDEA_HOME%%/lib/ant/lib/ant-commons-net.pom
%%IDEA_HOME%%/lib/ant/lib/ant-jai.jar
%%IDEA_HOME%%/lib/ant/lib/ant-jai.pom
%%IDEA_HOME%%/lib/ant/lib/ant-javamail.jar
%%IDEA_HOME%%/lib/ant/lib/ant-javamail.pom
%%IDEA_HOME%%/lib/ant/lib/ant-jdepend.jar
%%IDEA_HOME%%/lib/ant/lib/ant-jdepend.pom
%%IDEA_HOME%%/lib/ant/lib/ant-jmf.jar
%%IDEA_HOME%%/lib/ant/lib/ant-jmf.pom
%%IDEA_HOME%%/lib/ant/lib/ant-jsch.jar
%%IDEA_HOME%%/lib/ant/lib/ant-jsch.pom
%%IDEA_HOME%%/lib/ant/lib/ant-junit.jar
%%IDEA_HOME%%/lib/ant/lib/ant-junit.pom
%%IDEA_HOME%%/lib/ant/lib/ant-junit4.jar
%%IDEA_HOME%%/lib/ant/lib/ant-junit4.pom
%%IDEA_HOME%%/lib/ant/lib/ant-launcher.jar
%%IDEA_HOME%%/lib/ant/lib/ant-launcher.pom
%%IDEA_HOME%%/lib/ant/lib/ant-netrexx.jar
%%IDEA_HOME%%/lib/ant/lib/ant-netrexx.pom
%%IDEA_HOME%%/lib/ant/lib/ant-parent.pom
%%IDEA_HOME%%/lib/ant/lib/ant-swing.jar
%%IDEA_HOME%%/lib/ant/lib/ant-swing.pom
%%IDEA_HOME%%/lib/ant/lib/ant-testutil.jar
%%IDEA_HOME%%/lib/ant/lib/ant-testutil.pom
%%IDEA_HOME%%/lib/ant/lib/ant.jar
%%IDEA_HOME%%/lib/ant/lib/ant.pom
%%IDEA_HOME%%/lib/ant/lib/libraries.properties
%%IDEA_HOME%%/lib/asm-all.jar
%%IDEA_HOME%%/lib/asm-commons.jar
%%IDEA_HOME%%/lib/asm.jar
%%IDEA_HOME%%/lib/automaton.jar
%%IDEA_HOME%%/lib/batik-all.jar
%%IDEA_HOME%%/lib/boot.jar
%%IDEA_HOME%%/lib/bootstrap.jar
%%IDEA_HOME%%/lib/cglib-2.2.2.jar
%%IDEA_HOME%%/lib/cli-parser-1.1.jar
%%IDEA_HOME%%/lib/clojure-1.8.0.jar
%%IDEA_HOME%%/lib/clojure-jsr223-1.5.1.jar
%%IDEA_HOME%%/lib/commons-codec-1.9.jar
%%IDEA_HOME%%/lib/commons-httpclient-3.1-patched.jar
%%IDEA_HOME%%/lib/commons-logging-1.2.jar
%%IDEA_HOME%%/lib/commons-net-3.3.jar
%%IDEA_HOME%%/lib/coverage-agent.jar
%%IDEA_HOME%%/lib/coverage-instrumenter.jar
%%IDEA_HOME%%/lib/coverage-util.jar
%%IDEA_HOME%%/lib/ecj-4.5.2.jar
%%IDEA_HOME%%/lib/extensions.jar
%%IDEA_HOME%%/lib/external-system-rt.jar
%%IDEA_HOME%%/lib/fluent-hc-4.4.1.jar
%%IDEA_HOME%%/lib/forms_rt.jar
%%IDEA_HOME%%/lib/groovy-all-2.4.6.jar
%%IDEA_HOME%%/lib/gson-2.5.jar
%%IDEA_HOME%%/lib/guava-17.0.jar
%%IDEA_HOME%%/lib/hamcrest-core-1.3.jar
%%IDEA_HOME%%/lib/httpclient-4.4.1.jar
%%IDEA_HOME%%/lib/httpcore-4.4.1.jar
%%IDEA_HOME%%/lib/httpmime-4.4.1.jar
%%IDEA_HOME%%/lib/icons.jar
%%IDEA_HOME%%/lib/idea-jsp-openapi.jar
%%IDEA_HOME%%/lib/idea.jar
%%IDEA_HOME%%/lib/idea_rt.jar
%%IDEA_HOME%%/lib/ideax.jar
%%IDEA_HOME%%/lib/imgscalr-lib-4.2.jar
%%IDEA_HOME%%/lib/isorelax.jar
%%IDEA_HOME%%/lib/jasper21_rt.jar
%%IDEA_HOME%%/lib/jasper2_rt.jar
%%IDEA_HOME%%/lib/javac2.jar
%%IDEA_HOME%%/lib/jaxen-1.1.3.jar
%%IDEA_HOME%%/lib/jayatana-1.2.4.jar
%%IDEA_HOME%%/lib/jcip-annotations.jar
%%IDEA_HOME%%/lib/jdkAnnotations.jar
%%IDEA_HOME%%/lib/jdom.jar
%%IDEA_HOME%%/lib/jettison-1.3.2.jar
%%IDEA_HOME%%/lib/jgoodies-common-1.2.1.jar
%%IDEA_HOME%%/lib/jgoodies-forms.jar
%%IDEA_HOME%%/lib/jgoodies-looks-2.4.2.jar
%%IDEA_HOME%%/lib/jh.jar
%%IDEA_HOME%%/lib/jing.jar
%%IDEA_HOME%%/lib/jna-platform.jar
%%IDEA_HOME%%/lib/jna.jar
%%IDEA_HOME%%/lib/jps-builders.jar
%%IDEA_HOME%%/lib/jps-launcher.jar
%%IDEA_HOME%%/lib/jps-model.jar
%%IDEA_HOME%%/lib/jsch-0.1.53.jar
%%IDEA_HOME%%/lib/jsch.agentproxy.connector-factory.jar
%%IDEA_HOME%%/lib/jsch.agentproxy.core.jar
%%IDEA_HOME%%/lib/jsch.agentproxy.pageant.jar
%%IDEA_HOME%%/lib/jsch.agentproxy.sshagent.jar
%%IDEA_HOME%%/lib/jsch.agentproxy.usocket-jna.jar
%%IDEA_HOME%%/lib/jsch.agentproxy.usocket-nc.jar
%%IDEA_HOME%%/lib/jsp-api.jar
%%IDEA_HOME%%/lib/jsr173_1.0_api.jar
%%IDEA_HOME%%/lib/junit-4.12.jar
%%IDEA_HOME%%/lib/junit.jar
%%IDEA_HOME%%/lib/jzlib-1.1.1.jar
%%IDEA_HOME%%/lib/kotlin-reflect.jar
%%IDEA_HOME%%/lib/kotlin-runtime.jar
%%IDEA_HOME%%/lib/log4j.jar
%%IDEA_HOME%%/lib/markdown4j-2.2.jar
%%IDEA_HOME%%/lib/markdownj-core-0.4.2-SNAPSHOT.jar
%%IDEA_HOME%%/lib/microba.jar
%%IDEA_HOME%%/lib/miglayout-swing.jar
%%IDEA_HOME%%/lib/nanoxml-2.2.3.jar
%%IDEA_HOME%%/lib/nekohtml-1.9.14.jar
%%IDEA_HOME%%/lib/netty-all-4.1.1.Final.jar
%%IDEA_HOME%%/lib/openapi.jar
%%IDEA_HOME%%/lib/optimizedFileManager.jar
%%IDEA_HOME%%/lib/oromatcher.jar
%%IDEA_HOME%%/lib/picocontainer.jar
%%IDEA_HOME%%/lib/protobuf-2.5.0.jar
%%IDEA_HOME%%/lib/proxy-vole_20131209.jar
%%IDEA_HOME%%/lib/purejavacomm.jar
%%IDEA_HOME%%/lib/resolver.jar
%%IDEA_HOME%%/lib/resources.jar
%%IDEA_HOME%%/lib/resources_en.jar
%%IDEA_HOME%%/lib/rhino-js-1_7R4.jar
%%IDEA_HOME%%/lib/rngom-20051226-patched.jar
%%IDEA_HOME%%/lib/rt/jasper2.1/el-api.jar
%%IDEA_HOME%%/lib/rt/jasper2.1/jasper-el.jar
%%IDEA_HOME%%/lib/rt/jasper2.1/jasper-jdt.jar
%%IDEA_HOME%%/lib/rt/jasper2.1/jasper.jar
%%IDEA_HOME%%/lib/rt/jasper2.1/jsp-api.jar
%%IDEA_HOME%%/lib/rt/jasper2.1/servlet-api.jar
%%IDEA_HOME%%/lib/rt/jasper2.1/tomcat-juli.jar
%%IDEA_HOME%%/lib/rt/jasper2/commons-el.jar
%%IDEA_HOME%%/lib/rt/jasper2/commons-logging-api.jar
%%IDEA_HOME%%/lib/rt/jasper2/jasper-compiler.jar
%%IDEA_HOME%%/lib/rt/jasper2/jasper-runtime.jar
%%IDEA_HOME%%/lib/rt/jasper2/jsp-api.jar
%%IDEA_HOME%%/lib/rt/jasper2/org.eclipse.jdt.core.jar
%%IDEA_HOME%%/lib/rt/jasper2/servlet-api.jar
%%IDEA_HOME%%/lib/rt/jps-plugin-system.jar
%%IDEA_HOME%%/lib/rt/required_for_dist.txt
%%IDEA_HOME%%/lib/rt/servlet.jar
%%IDEA_HOME%%/lib/rt/xerces1.jar
%%IDEA_HOME%%/lib/sanselan-0.98-snapshot.jar
%%IDEA_HOME%%/lib/serviceMessages.jar
%%IDEA_HOME%%/lib/servlet-api.jar
%%IDEA_HOME%%/lib/slf4j-api-1.7.10.jar
%%IDEA_HOME%%/lib/slf4j-log4j12-1.7.10.jar
%%IDEA_HOME%%/lib/snappy-in-java-0.5.1.jar
%%IDEA_HOME%%/lib/sqlite-jdbc-3.6.20.1.jar
%%IDEA_HOME%%/lib/src/src_css-api.zip
%%IDEA_HOME%%/lib/src/src_database-openapi.zip
%%IDEA_HOME%%/lib/src/src_jam-openapi.zip
%%IDEA_HOME%%/lib/src/src_javaee-openapi.zip
%%IDEA_HOME%%/lib/src/src_persistence-openapi.zip
%%IDEA_HOME%%/lib/src/src_spring-openapi.zip
%%IDEA_HOME%%/lib/src/src_tomcat.zip
%%IDEA_HOME%%/lib/src/trove4j_src.jar
%%IDEA_HOME%%/lib/swingx-core-1.6.2.jar
%%IDEA_HOME%%/lib/trang-core.jar
%%IDEA_HOME%%/lib/trove4j.jar
%%IDEA_HOME%%/lib/util.jar
%%IDEA_HOME%%/lib/velocity.jar
%%IDEA_HOME%%/lib/winp-1.23.jar
%%IDEA_HOME%%/lib/xbean.jar
%%IDEA_HOME%%/lib/xercesImpl.jar
%%IDEA_HOME%%/lib/xml-apis-ext.jar
%%IDEA_HOME%%/lib/xml-apis.jar
%%IDEA_HOME%%/lib/xmlgraphics-commons-1.5.jar
%%IDEA_HOME%%/lib/xmlrpc-2.0.jar
%%IDEA_HOME%%/lib/xpp3-1.1.4-min.jar
%%IDEA_HOME%%/lib/xstream-1.4.8.jar
%%IDEA_HOME%%/lib/yjp-controller-api-redist.jar
%%IDEA_HOME%%/license/XStream_license.txt
%%IDEA_HOME%%/license/ant_license.txt
%%IDEA_HOME%%/license/asm_license.txt
%%IDEA_HOME%%/license/eclipse_license.txt
%%IDEA_HOME%%/license/growl.license
%%IDEA_HOME%%/license/gson_license.txt
%%IDEA_HOME%%/license/imgscalr_license.txt
%%IDEA_HOME%%/license/j2ee_license.txt
%%IDEA_HOME%%/license/jasper_license.txt
%%IDEA_HOME%%/license/javaeeJar-CDDLv1.0.txt
%%IDEA_HOME%%/license/javahelp_license.html
%%IDEA_HOME%%/license/javolution_license.txt
%%IDEA_HOME%%/license/jaxb_license.txt
%%IDEA_HOME%%/license/jaxen_license.txt
%%IDEA_HOME%%/license/jayatana_license.txt
%%IDEA_HOME%%/license/jdom_license.txt
%%IDEA_HOME%%/license/jgoodies_forms_license.txt
%%IDEA_HOME%%/license/junit_license.txt
%%IDEA_HOME%%/license/kryo-license.txt
%%IDEA_HOME%%/license/log4j_license.txt
%%IDEA_HOME%%/license/microba_license.txt
%%IDEA_HOME%%/license/miglayout_swing_license.txt
%%IDEA_HOME%%/license/nanoxml_license.txt
%%IDEA_HOME%%/license/oromatcher_license.txt
%%IDEA_HOME%%/license/picoContainer_license.txt
%%IDEA_HOME%%/license/sanselan_license.txt
%%IDEA_HOME%%/license/saxon-conditions.html
%%IDEA_HOME%%/license/servletJAR_license.txt
%%IDEA_HOME%%/license/sqljet-license.txt
%%IDEA_HOME%%/license/svnkit-license.txt
%%IDEA_HOME%%/license/swingx_license.txt
%%IDEA_HOME%%/license/third-party/W3C_Software_License.html
%%IDEA_HOME%%/license/third-party/protobuf_license.txt
%%IDEA_HOME%%/license/winp_license.txt
%%IDEA_HOME%%/license/xerces_license.txt
%%IDEA_HOME%%/license/xmlrpc_license.txt
%%IDEA_HOME%%/license/yourkit-license-redist.txt
%%IDEA_HOME%%/plugins/AppServersView/lib/AppServersView.jar
%%IDEA_HOME%%/plugins/AppServersView/lib/resources_en.jar
%%IDEA_HOME%%/plugins/BatchApplications/lib/batch-applications-support.jar
%%IDEA_HOME%%/plugins/BatchApplications/lib/resources_en.jar
%%IDEA_HOME%%/plugins/BeanValidation/lib/bean_validation.jar
%%IDEA_HOME%%/plugins/BeanValidation/lib/resources_en.jar
%%IDEA_HOME%%/plugins/ByteCodeViewer/lib/byteCodeViewer.jar
%%IDEA_HOME%%/plugins/CDI/lib/cdi-support.jar
%%IDEA_HOME%%/plugins/CDI/lib/resources_en.jar
%%IDEA_HOME%%/plugins/CSS/lib/css-openapi.jar
%%IDEA_HOME%%/plugins/CSS/lib/css.jar
%%IDEA_HOME%%/plugins/CSS/lib/resources_en.jar
%%IDEA_HOME%%/plugins/ClearCaseIntegration/lib/ClearCaseIntegration.jar
%%IDEA_HOME%%/plugins/DatabaseTools/lib/database-impl.jar
%%IDEA_HOME%%/plugins/DatabaseTools/lib/database-openapi.jar
%%IDEA_HOME%%/plugins/DatabaseTools/lib/dekaf-single-2.0.0.264.jar
%%IDEA_HOME%%/plugins/DatabaseTools/lib/jdbc-console.jar
%%IDEA_HOME%%/plugins/DatabaseTools/lib/resources_en.jar
%%IDEA_HOME%%/plugins/FreeMarker/lib/core.jar
%%IDEA_HOME%%/plugins/FreeMarker/lib/resources_en.jar
%%IDEA_HOME%%/plugins/Geronimo/lib/geronimoIntegration.jar
%%IDEA_HOME%%/plugins/Geronimo/lib/specifics/geronimo10-specifics.jar
%%IDEA_HOME%%/plugins/Geronimo/lib/specifics/geronimo11-specifics.jar
%%IDEA_HOME%%/plugins/Glassfish/lib/glassfishIntegration.jar
%%IDEA_HOME%%/plugins/Glassfish/lib/specifics/glassfish2-specifics.jar
%%IDEA_HOME%%/plugins/Glassfish/lib/specifics/glassfish3-specifics.jar
%%IDEA_HOME%%/plugins/GoogleAppEngine/lib/GoogleAppEngine.jar
%%IDEA_HOME%%/plugins/GoogleAppEngine/lib/appEngine-runtime.jar
%%IDEA_HOME%%/plugins/GoogleAppEngine/lib/google-app-engine-jps-plugin.jar
%%IDEA_HOME%%/plugins/Grails/lib/grails-compiler-patch.jar
%%IDEA_HOME%%/plugins/Grails/lib/grails-gradle-tooling.jar
%%IDEA_HOME%%/plugins/Grails/lib/grails-jps-plugin.jar
%%IDEA_HOME%%/plugins/Grails/lib/grails-rt.jar
%%IDEA_HOME%%/plugins/Grails/lib/grails_integration.jar
%%IDEA_HOME%%/plugins/Grails/lib/standardDsls/GrailsStandardDSL.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/Groovy.jar
%%IDEA_HOME%%/plugins/Groovy/lib/agent/gragent.jar
%%IDEA_HOME%%/plugins/Groovy/lib/console.txt
%%IDEA_HOME%%/plugins/Groovy/lib/duplicates-groovy.jar
%%IDEA_HOME%%/plugins/Groovy/lib/groovy-jps-plugin.jar
%%IDEA_HOME%%/plugins/Groovy/lib/groovy-rt-constants.jar
%%IDEA_HOME%%/plugins/Groovy/lib/groovy-starter.conf
%%IDEA_HOME%%/plugins/Groovy/lib/groovy_rt.jar
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/categoryTransform.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/closuresInMethod.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/defaultMethods.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/extensions.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/gantScript.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/indexedProperty.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/listenerList.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/metaDsl.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/newifyTransform.gdsl
%%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/singletonTransform.gdsl
%%IDEA_HOME%%/plugins/Guice/lib/Guice.jar
%%IDEA_HOME%%/plugins/Guice/lib/resources_en.jar
%%IDEA_HOME%%/plugins/GwtStudio/lib/GwtStudio.jar
%%IDEA_HOME%%/plugins/GwtStudio/lib/gwt-jps-plugin.jar
%%IDEA_HOME%%/plugins/GwtStudio/lib/resources_en.jar
%%IDEA_HOME%%/plugins/GwtStudio/lib/runtime.jar
%%IDEA_HOME%%/plugins/GwtStudio/lib/sdm-launcher/superdevmode-launcher-legacy.jar
%%IDEA_HOME%%/plugins/Hibernate/lib/hibernate.jar
%%IDEA_HOME%%/plugins/Hibernate/lib/hibernate3-console.jar
%%IDEA_HOME%%/plugins/Hibernate/lib/hibernate4-console.jar
%%IDEA_HOME%%/plugins/Hibernate/lib/hibernate5-console.jar
%%IDEA_HOME%%/plugins/IntelliLang/lib/IntelliLang.jar
%%IDEA_HOME%%/plugins/IntelliLang/lib/intellilang-jps-plugin.jar
%%IDEA_HOME%%/plugins/JBoss/lib/jbossIntegration.jar
%%IDEA_HOME%%/plugins/JBoss/lib/specifics/jboss-specifics.jar
%%IDEA_HOME%%/plugins/JBoss/lib/specifics/jboss7-specifics.jar
%%IDEA_HOME%%/plugins/JSF/lib/jsf-support.jar
%%IDEA_HOME%%/plugins/JSF/lib/resources_en.jar
%%IDEA_HOME%%/plugins/JSIntentionPowerPack/lib/JSIntentionPowerPack.jar
%%IDEA_HOME%%/plugins/JSIntentionPowerPack/lib/resources_en.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/IntelliLang-javaee.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/gradle-javaee.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/javaee-impl.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/javaee-openapi.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/jpa-console.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/jps/javaee-jps-plugin.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/jps/jpa-jps-plugin.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/resources_en.jar
%%IDEA_HOME%%/plugins/JavaEE/lib/webDeployment-transport.jar
%%IDEA_HOME%%/plugins/JavaScriptDebugger/extensions/jb.xpi
%%IDEA_HOME%%/plugins/JavaScriptDebugger/lib/ChromeConnector.jar
%%IDEA_HOME%%/plugins/JavaScriptDebugger/lib/FirefoxConnector.jar
%%IDEA_HOME%%/plugins/JavaScriptDebugger/lib/JavaEEJavaScriptDebug.jar
%%IDEA_HOME%%/plugins/JavaScriptDebugger/lib/JavaScriptDebugger.jar
%%IDEA_HOME%%/plugins/JavaScriptDebugger/lib/nashorn-debugger.jar
%%IDEA_HOME%%/plugins/JavaScriptDebugger/lib/resources_en.jar
%%IDEA_HOME%%/plugins/JavaScriptDebugger/nashorn-debugger-support.jar
%%IDEA_HOME%%/plugins/JavaScriptLanguage/grunt_js/lib/grunt-intellij-util.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/grunt_js/tasks/grunt-tasks-fetcher.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/lib/JavaScriptLanguage.jar
%%IDEA_HOME%%/plugins/JavaScriptLanguage/lib/commons-io-2.4.jar
%%IDEA_HOME%%/plugins/JavaScriptLanguage/lib/ecmascript6-compiler.jar
%%IDEA_HOME%%/plugins/JavaScriptLanguage/lib/javascript-openapi.jar
%%IDEA_HOME%%/plugins/JavaScriptLanguage/lib/js-test-common.jar
%%IDEA_HOME%%/plugins/JavaScriptLanguage/lib/resources_en.jar
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/bridge.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/compilerFactory.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/external/lib.d.ts
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/external/lib.es6.d.ts
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/external/lib.es7.d.ts
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/external/tsserver.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/js-language-service.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/out-path-process.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/store.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/ts-compiler-host-impl.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/typescript/compile-info-holder.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/typescript/logger-impl.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/typescript/service-loader.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/typescript/ts-plugin.js
%%IDEA_HOME%%/plugins/JavaScriptLanguage/typescriptCompiler/typescript/ts-session.js
%%IDEA_HOME%%/plugins/JavaeeExtensions/lib/javaee-extensions.jar
%%IDEA_HOME%%/plugins/JavaeeExtensions/lib/resources_en.jar
%%IDEA_HOME%%/plugins/Jetty/lib/jettyIntegration.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlin
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlin.bat
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc-js
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc-js.bat
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc-jvm
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc-jvm.bat
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc.bat
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/build.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/android-extensions-compiler.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-ant.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-build-common-test.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-build-common.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-compiler.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-daemon-client.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-jslib-sources.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-jslib.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-preloader.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-reflect.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-runner.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-runtime-sources.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-runtime.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-test.jar
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/LICENSE.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/NOTICE.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/args4j_LICENSE.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/asm_license.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/closure-compiler_LICENSE.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/dart_LICENSE.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/jshashtable_license.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/json_LICENSE.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/pcollections_LICENSE.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/prototype_license.txt
%%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/rhino_LICENSE.txt
%%IDEA_HOME%%/plugins/Kotlin/lib/android-lint.jar
%%IDEA_HOME%%/plugins/Kotlin/lib/javax.inject.jar
%%IDEA_HOME%%/plugins/Kotlin/lib/jps/kotlin-jps-plugin.jar
%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-android-extensions-compiler-plugin.jar
%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-android-extensions-plugin.jar
%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-plugin.jar
%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-reflect.jar
%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-runtime.jar
%%IDEA_HOME%%/plugins/Kotlin/lib/markdown.jar
%%IDEA_HOME%%/plugins/PerforceIntegration/lib/PerforceIntegration.jar
%%IDEA_HOME%%/plugins/PerforceIntegration/lib/perforce_util.jar
%%IDEA_HOME%%/plugins/PerforceIntegration/lib/resources_en.jar
%%IDEA_HOME%%/plugins/PersistenceSupport/lib/persistence-impl.jar
%%IDEA_HOME%%/plugins/PersistenceSupport/lib/persistence-openapi.jar
%%IDEA_HOME%%/plugins/PersistenceSupport/lib/resources_en.jar
%%IDEA_HOME%%/plugins/Play/lib/play-support.jar
%%IDEA_HOME%%/plugins/Play/lib/resources_en.jar
%%IDEA_HOME%%/plugins/QuirksMode/lib/quirksmode.jar
%%IDEA_HOME%%/plugins/QuirksMode/lib/resources_en.jar
%%IDEA_HOME%%/plugins/RefactorX/lib/RefactorX.jar
%%IDEA_HOME%%/plugins/RefactorX/lib/resources_en.jar
%%IDEA_HOME%%/plugins/Seam/lib/resources_en.jar
%%IDEA_HOME%%/plugins/Seam/lib/seam-support.jar
%%IDEA_HOME%%/plugins/SeamNavigation/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SeamNavigation/lib/seam-navigation.jar
%%IDEA_HOME%%/plugins/SeamPageflow/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SeamPageflow/lib/seam-pageflow.jar
%%IDEA_HOME%%/plugins/Spring/lib/customNs/customNs.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring-aop.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring-api.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring-eclipse.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring-el.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring-graph.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring-jsf.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring-persistence-integration.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring-web.jar
%%IDEA_HOME%%/plugins/Spring/lib/spring.jar
%%IDEA_HOME%%/plugins/SpringBatch/lib/SpringBatch.jar
%%IDEA_HOME%%/plugins/SpringBatch/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SpringBoot/lib/spring-boot-api.jar
%%IDEA_HOME%%/plugins/SpringBoot/lib/spring-boot.jar
%%IDEA_HOME%%/plugins/SpringBoot/lib/spring-initializr.jar
%%IDEA_HOME%%/plugins/SpringData/lib/SpringData.jar
%%IDEA_HOME%%/plugins/SpringData/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SpringIntegration/lib/SpringIntegration.jar
%%IDEA_HOME%%/plugins/SpringIntegration/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SpringMvc/lib/SpringMvc.jar
%%IDEA_HOME%%/plugins/SpringMvc/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SpringMvc/lib/spring-mvc-api.jar
%%IDEA_HOME%%/plugins/SpringOSGi/lib/SpringOSGi.jar
%%IDEA_HOME%%/plugins/SpringOSGi/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SpringSecurity/lib/SpringSecurity.jar
%%IDEA_HOME%%/plugins/SpringSecurity/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SpringWebServices/lib/SpringWebServices.jar
%%IDEA_HOME%%/plugins/SpringWebServices/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SpringWebSocket/lib/SpringWebSocket.jar
%%IDEA_HOME%%/plugins/SpringWebSocket/lib/resources_en.jar
%%IDEA_HOME%%/plugins/SpringWebflow/lib/SpringWebflow.jar
%%IDEA_HOME%%/plugins/SpringWebflow/lib/resources_en.jar
%%IDEA_HOME%%/plugins/StrutsAssistant/lib/struts-api.jar
%%IDEA_HOME%%/plugins/StrutsAssistant/lib/struts.jar
%%IDEA_HOME%%/plugins/Tapestry/lib/commons-chain.jar
%%IDEA_HOME%%/plugins/Tapestry/lib/maven-model.jar
%%IDEA_HOME%%/plugins/Tapestry/lib/plexus-utils.jar
%%IDEA_HOME%%/plugins/Tapestry/lib/resources_en.jar
%%IDEA_HOME%%/plugins/Tapestry/lib/tapestry.jar
%%IDEA_HOME%%/plugins/Tomcat/lib/specifics/tomee-specifics.jar
%%IDEA_HOME%%/plugins/Tomcat/lib/tomcatIntegration.jar
%%IDEA_HOME%%/plugins/Velocity/lib/core.jar
%%IDEA_HOME%%/plugins/Velocity/lib/resources_en.jar
%%IDEA_HOME%%/plugins/WebServices/lib/wadlgen/wadlgen.jar
%%IDEA_HOME%%/plugins/WebServices/lib/ws-rt.jar
%%IDEA_HOME%%/plugins/WebServices/lib/ws-utils.jar
%%IDEA_HOME%%/plugins/WebServices/lib/ws.jar
%%IDEA_HOME%%/plugins/WebSocket/lib/resources_en.jar
%%IDEA_HOME%%/plugins/WebSocket/lib/websocket-support.jar
%%IDEA_HOME%%/plugins/android/lib/GoogleFeedback.jar
%%IDEA_HOME%%/plugins/android/lib/android-common.jar
%%IDEA_HOME%%/plugins/android/lib/android-rt.jar
%%IDEA_HOME%%/plugins/android/lib/android-ultimate.jar
%%IDEA_HOME%%/plugins/android/lib/android.jar
%%IDEA_HOME%%/plugins/android/lib/androidAnnotations.jar
%%IDEA_HOME%%/plugins/android/lib/androidWidgets/theme-editor-widgets.jar
%%IDEA_HOME%%/plugins/android/lib/antlr4-annotations-4.5.jar
%%IDEA_HOME%%/plugins/android/lib/antlr4-runtime-4.5.jar
%%IDEA_HOME%%/plugins/android/lib/asm-5.0.3.jar
%%IDEA_HOME%%/plugins/android/lib/asm-analysis-5.0.3.jar
%%IDEA_HOME%%/plugins/android/lib/asm-tree-5.0.3.jar
%%IDEA_HOME%%/plugins/android/lib/bcpkix-jdk15on-1.48.jar
%%IDEA_HOME%%/plugins/android/lib/bcprov-jdk15on-1.48.jar
%%IDEA_HOME%%/plugins/android/lib/builder-model-2.0.0-alpha7.jar
%%IDEA_HOME%%/plugins/android/lib/common.jar
%%IDEA_HOME%%/plugins/android/lib/commons-compress-1.0.jar
%%IDEA_HOME%%/plugins/android/lib/commons-io-2.4.jar
%%IDEA_HOME%%/plugins/android/lib/data-binding.jar
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/device-art.xml
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/thumb.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/thumb.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/thumb.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/thumb.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/button.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/power.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/power_land.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/thumb.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/volume_down.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/volume_down_land.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/volume_up.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/volume_up_land.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/button.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/power.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/power_land.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/thumb.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/volume_down.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/volume_down_land.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/volume_up.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/volume_up_land.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/phone/phone_back_simple_land.9.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/phone/phone_back_simple_port.9.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/phone/phone_shadow_simple_land.9.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/phone/phone_shadow_simple_port.9.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tablet/tablet_back_simple.9.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tablet/tablet_shadow_simple_land.9.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tablet/tablet_shadow_simple_port.9.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_1080p/back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_1080p/fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_1080p/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_1080p/shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_720p/back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_720p/fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_720p/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_720p/shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/arrow_down.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/arrow_left.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/arrow_right.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/arrow_up.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/button.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_320px.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_380px.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_380px_onion.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/controls.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/hardware.ini
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/key.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/mask.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/select.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/layout
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/mask.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/land_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/land_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/land_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/port_back.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/port_fore.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/port_shadow.png
%%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/thumb.png
%%IDEA_HOME%%/plugins/android/lib/freemarker-2.3.20.jar
%%IDEA_HOME%%/plugins/android/lib/jarutils.jar
%%IDEA_HOME%%/plugins/android/lib/javawriter-2.2.1.jar
%%IDEA_HOME%%/plugins/android/lib/jgraphx-3.4.0.1.jar
%%IDEA_HOME%%/plugins/android/lib/jps/android-gradle-jps.jar
%%IDEA_HOME%%/plugins/android/lib/jps/android-jps-plugin.jar
%%IDEA_HOME%%/plugins/android/lib/jsr305-1.3.9.jar
%%IDEA_HOME%%/plugins/android/lib/juniversalchardet-1.0.3.jar
%%IDEA_HOME%%/plugins/android/lib/kxml2-2.3.0.jar
%%IDEA_HOME%%/plugins/android/lib/layoutlib-api.jar
%%IDEA_HOME%%/plugins/android/lib/lombok-ast-0.2.3.jar
%%IDEA_HOME%%/plugins/android/lib/manifest-merger.jar
%%IDEA_HOME%%/plugins/android/lib/repository.jar
%%IDEA_HOME%%/plugins/android/lib/resources_en.jar
%%IDEA_HOME%%/plugins/android/lib/sdk-common.jar
%%IDEA_HOME%%/plugins/android/lib/sdk-tools.jar
%%IDEA_HOME%%/plugins/android/lib/sdklib.jar
%%IDEA_HOME%%/plugins/android/lib/spantable.jar
%%IDEA_HOME%%/plugins/android/lib/templates/NOTICE
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/AndroidManifestPermissions.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/res/layout/blank_activity.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/src/app_package/BlankActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/template_thumb.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/app_icon_quantum.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/app_icon_quantum_card.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/card_background_default.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/default_background.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/grid_bg.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/movie.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/scrubber_disabled.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/scrubber_focussed.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/scrubber_normal.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/scrubber_pressed.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/shadow7.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/star_icon.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/videos_by_google_banner.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/videos_by_google_icon.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/app_icon_quantum.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/app_icon_quantum_card.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/videos_by_google_banner.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/videos_by_google_icon.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/app_icon_quantum.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/app_icon_quantum_card.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/default_background.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/grid_bg.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_pause_playcontrol_focussed.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_pause_playcontrol_normal.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_pause_playcontrol_pressed.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_action_focussed.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_action_normal.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_action_pressed.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_playcontrol_focussed.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_playcontrol_normal.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_playcontrol_pressed.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/movie.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/star_icon.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/videos_by_google_banner.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/videos_by_google_icon.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xxhdpi/app_icon_quantum.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xxhdpi/app_icon_quantum_card.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xxhdpi/videos_by_google_banner.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xxhdpi/videos_by_google_icon.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/app_icon_quantum.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/app_icon_quantum_card.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/app_icon_your_company.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/details_img.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/ic_action_a.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/ic_title.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/movie.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/player_bg_gradient_dark.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/shadow7.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/videos_by_google_banner.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/videos_by_google_icon.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/layout/activity_details.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/layout/activity_main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/layout/playback_controls.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/menu/global.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values-w820dp/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values/colors.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values/themes.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/BrowseErrorActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/CardPresenter.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/DetailsActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/DetailsDescriptionPresenter.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/ErrorFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MainActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MainFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/Movie.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MovieList.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PicassoBackgroundManagerTarget.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PlaybackOverlayActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PlaybackOverlayFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/Utils.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/VideoDetailsFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/template-leanback-TV.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/recipe_fragment.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/root/res/layout/activity_fragment_container.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/root/res/layout/fragment_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/SimpleActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/SimpleActivityFragment.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/template_basic_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/template_basic_activity_fragment.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/layout/blank_activity.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/layout/rect.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/layout/round.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/src/app_package/BlankActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/templates-WatchViewStub-Wear.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/root/src/app_package/SimpleActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/template_blank_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/layout/activity_fullscreen.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/attrs.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/colors.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/styles.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/src/app_package/FullscreenActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/template_fullscreen_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/layout/activity_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values-w820dp/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/src/app_package/SimpleActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity_banner.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity_interstitial.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_blank_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/debugRes/values/google_maps_api.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/releaseRes/values/google_maps_api.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/res/layout/activity_map.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/src/app_package/MapActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/template_map_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/AndroidManifestPermissions.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/debugRes/values/google_maps_api.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/releaseRes/values/google_maps_api.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/res/layout/activity_map.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/src/app_package/MapActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/template_thumb.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/res/layout/activity_login.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/res/values/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/LoginActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/template_login_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/activity_item_detail.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/activity_item_list_app_bar.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_detail.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_list.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_list_twopane.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/item_list_content.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values-w900dp/refs.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentDetailActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentDetailFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentListActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/template_master_detail.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_camera.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_gallery.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_manage.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_send.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_share.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_slideshow.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable/side_nav_bar.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/layout/navigation_header.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/layout/navigation_view.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/menu/drawer.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/values/drawables.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-hdpi/drawer_shadow.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-hdpi/ic_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-mdpi/drawer_shadow.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-mdpi/ic_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-xhdpi/drawer_shadow.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-xhdpi/ic_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-xxhdpi/drawer_shadow.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-xxhdpi/ic_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/activity_drawer.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/fragment_navigation_drawer.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/fragment_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/menu/global.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values-w820dp/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src-buildApi22/app_package/DrawerActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/DrawerActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/NavigationDrawerFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/include_fragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/include_options_menu.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/template_blank_activity_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/layout/app_bar.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/layout/simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/src/app_package/ScrollActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/template_scroll_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-hdpi/ic_info_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-hdpi/ic_notifications_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-hdpi/ic_sync_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-mdpi/ic_info_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-mdpi/ic_notifications_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-mdpi/ic_sync_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-v21/ic_info_black_24dp.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-v21/ic_notifications_black_24dp.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-v21/ic_sync_black_24dp.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xhdpi/ic_info_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xhdpi/ic_notifications_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xhdpi/ic_sync_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxhdpi/ic_info_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxhdpi/ic_notifications_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxhdpi/ic_sync_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxxhdpi/ic_info_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxxhdpi/ic_notifications_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxxhdpi/ic_sync_black_24dp.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/values/pref_strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/pref_data_sync.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/pref_general.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/pref_headers.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/pref_notification.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/src/app_package/AppCompatPreferenceActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/src/app_package/SettingsActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/template_settings_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/activity_fragment_container.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/activity_pager.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/app_bar_activity.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/fragment_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values-w820dp/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/DropdownActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/TabsAndPagerActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/include_fragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/include_options_menu.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/template_blank_activity_dropdown.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/template_blank_activity_pager.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/template_blank_activity_tabs.png
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/common_globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_app_bar.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_dummy_content.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_manifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_no_actionbar.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_simple_dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_simple_menu.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/layout/app_bar.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/layout/simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/menu/simple_menu.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values-v21/no_actionbar_styles_v21.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values-w820dp/simple_dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/app_bar_dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/manifest_strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/no_actionbar_styles.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/simple_dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/simple_menu_strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/src/app_package/dummy/DummyContent.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/wear_common_globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/build.gradle
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/layout/activity_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/values-w820dp/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/src/app_package/SimpleActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/template_blank_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/layout/activity_fragment_container.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/layout/fragment_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/values-w820dp/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/src/app_package/SimpleActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/src/app_package/include_fragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/src/app_package/include_options_menu.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/template_blank_activity_fragment.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/root/res/layout/activity_simple.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/root/src/app_package/SimpleActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/template_blank_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/layout/activity_fullscreen.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values-v11/styles.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values/attrs.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values/colors.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values/styles.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/src/app_package/FullscreenActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/src/app_package/util/SystemUiHider.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/src/app_package/util/SystemUiHiderBase.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/src/app_package/util/SystemUiHiderHoneycomb.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/template_fullscreen_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/res/layout/activity_login.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/res/values/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/src/app_package/LoginActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/src/app_package/PlusBaseActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/template_login_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/layout/activity_content_detail.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/layout/activity_content_list.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/layout/activity_content_twopane.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/layout/fragment_content_detail.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/values-large/refs.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/values-sw600dp/refs.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/ContentDetailActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/ContentDetailFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/ContentListActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/ContentListFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/dummy/DummyContent.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/template_master_detail.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-hdpi/drawer_shadow.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-hdpi/ic_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-mdpi/drawer_shadow.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-mdpi/ic_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-xhdpi/drawer_shadow.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-xhdpi/ic_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-xxhdpi/drawer_shadow.9.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-xxhdpi/ic_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/layout/activity_drawer.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/layout/fragment_navigation_drawer.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/layout/fragment_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/menu/global.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/values-w820dp/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/src/app_package/DrawerActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/src/app_package/NavigationDrawerFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/src/app_package/include_fragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/src/app_package/include_options_menu.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/template_blank_activity_drawer.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/xml/pref_data_sync.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/xml/pref_general.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/xml/pref_headers.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/xml/pref_notification.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/src/app_package/SettingsActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/template_settings_activity.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/layout/activity_fragment_container.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/layout/activity_pager.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/layout/fragment_simple.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/menu/main.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/values-w820dp/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/src/app_package/DropdownActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/src/app_package/TabsAndPagerActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/src/app_package/include_fragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/src/app_package/include_options_menu.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/template_blank_activity_dropdown.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/template_blank_activity_pager.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/template_blank_activity_tabs.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/utils/dependencies.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/wrapper/gradle/wrapper/gradle-wrapper.jar
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/wrapper/gradle/wrapper/gradle-wrapper.properties
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/wrapper/gradlew
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/wrapper/gradlew.bat
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFile/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFile/root/src/app_package/interface.aidl.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFile/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AndroidManifest/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AndroidManifest/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AndroidManifest/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AndroidManifest/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/drawable-nodpi/example_appwidget_preview.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/layout/appwidget.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/layout/appwidget_configure.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/values-v14/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/values/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/xml/appwidget_info.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/src/app_package/AppWidget.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/src/app_package/AppWidgetConfigureActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x1.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x1_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x1_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x1_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x2.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x2_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x2_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x2_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x3.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x3_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x3_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x3_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x4.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x4_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x4_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x4_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x1.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x1_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x1_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x1_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x2.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x2_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x2_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x2_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x3.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x3_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x3_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x3_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x4.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x4_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x4_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x4_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x1.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x1_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x1_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x1_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x2.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x2_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x2_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x2_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x3.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x3_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x3_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x3_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x4.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x4_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x4_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x4_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x1.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x1_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x1_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x1_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x2.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x2_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x2_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x2_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x3.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x3_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x3_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x3_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x4.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x4_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x4_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x4_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AssetsFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AssetsFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AssetsFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/root/res/layout/fragment_blank.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/root/res/values/strings.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/root/src/app_package/BlankFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/template_blank_fragment.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/root/src/app_package/BroadcastReceiver.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/root/src/app_package/ContentProvider.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/root/res/layout/sample.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/root/res/values/attrs.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/root/src/app_package/CustomView.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/res/layout-v17/dream.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/res/xml/dream_prefs.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/res/xml/xml_dream.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/src/app_package/DreamService.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/src/app_package/SettingsActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/root/src/app_package/IntentService.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JavaFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JavaFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JavaFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JniFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JniFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JniFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/LayoutResourceFile/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/LayoutResourceFile/root/res/layout.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/LayoutResourceFile/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/layout/fragment_grid.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/layout/fragment_list.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/values-large/refs_lrg.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/values-sw600dp/refs_lrg.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/values/refs.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/values/refs_lrg.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/src/app_package/ListFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/src/app_package/dummy/DummyContent.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/templates_list_fragment.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-hdpi/ic_action_stat_reply.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-hdpi/ic_action_stat_share.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-mdpi/ic_action_stat_reply.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-mdpi/ic_action_stat_share.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-nodpi/example_picture_large.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-nodpi/example_picture_small.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-xhdpi/ic_action_stat_reply.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-xhdpi/ic_action_stat_share.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/src/app_package/NotificationHelper.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_list.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_list_actions.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_none.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_none_actions.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_picture.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_picture_actions.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_text.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_text_actions.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/root/res/layout/fragment_plus_one.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/root/src/app_package/PlusOneFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/templates_plusone_fragment.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResourcesFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResourcesFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResourcesFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/RsFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/RsFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/RsFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/root/src/app_package/Service.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ValueResourceFile/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ValueResourceFile/root/res/values.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ValueResourceFile/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/root/src/library_package/Placeholder.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/module_ignore
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/proguard-rules.txt.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-hdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-mdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xxhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xxxhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/ImportExistingProject/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/ImportExistingProject/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/module_ignore
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/proguard-rules.txt.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-anydpi/test.svg
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-hdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-mdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xxhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xxxhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values/colors.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values/styles.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/test/app_package/ApplicationTest.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/test/app_package/ExampleUnitTest.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/gradle.properties.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/local.properties.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/project_ignore
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/module_ignore
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/proguard-rules.txt.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-hdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-mdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xxhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xxxhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/values/styles.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/test/app_package/ApplicationTest.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/module_ignore
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/proguard-rules.txt.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-hdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-mdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-xhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-xxhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-xxxhdpi/ic_launcher.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/values/styles.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/test/app_package/ApplicationTest.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/root/gitignore
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/root/settings.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/root/src/library_package/Placeholder.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/template_new_project.png
%%IDEA_HOME%%/plugins/android/lib/templates/gradle/utils/dependencies.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/gradle/wrapper/gradle/wrapper/gradle-wrapper.jar
%%IDEA_HOME%%/plugins/android/lib/templates/gradle/wrapper/gradle/wrapper/gradle-wrapper.properties
%%IDEA_HOME%%/plugins/android/lib/templates/gradle/wrapper/gradlew
%%IDEA_HOME%%/plugins/android/lib/templates/gradle/wrapper/gradlew.bat
%%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFile/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFile/root/src/app_package/interface.aidl.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFile/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/root/res/values-v21/styles.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/root/res/xml/automotive_app_desc.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/root/src/app_package/MusicService.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/templates-mediaService-Auto.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/res/xml/automotive_app_desc.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/src/app_package/MessageReadReceiver.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/src/app_package/MessageReplyReceiver.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/src/app_package/MessagingService.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/templates-messagingService-Auto.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidManifest/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidManifest/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidManifest/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidManifest/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/drawable-nodpi/example_appwidget_preview.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/layout/appwidget.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/layout/appwidget_configure.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/values-v14/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/values/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/xml/appwidget_info.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/src/app_package/AppWidget.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/src/app_package/AppWidgetConfigureActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_h.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_v.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_vh.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/AssetsFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AssetsFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/AssetsFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/root/res/layout/fragment_blank.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/root/res/values/strings.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/root/src/app_package/BlankFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/template_blank_fragment.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/root/src/app_package/BroadcastReceiver.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/root/src/app_package/ContentProvider.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/root/res/layout/sample.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/root/res/values/attrs.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/root/src/app_package/CustomView.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/res/layout-v17/dream.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/res/xml/dream_prefs.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/res/xml/xml_dream.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/src/app_package/DreamService.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/src/app_package/SettingsActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/res/layout/activity_display.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/res/values/strings.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/src/app_package/BroadcastReceiver.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/src/app_package/DisplayActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/src/app_package/StubActivity.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/templates-activityView-Wear.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/root/src/app_package/IntentService.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/JavaFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/JavaFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/JavaFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/JniFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/JniFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/JniFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/LayoutResourceFile/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/LayoutResourceFile/root/res/layout.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/LayoutResourceFile/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/layout/fragment_list.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/layout/item_list_content.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/values/dimens.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/src/app_package/ListFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/src/app_package/RecyclerViewAdapter.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/templates_list_fragment.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-hdpi/ic_action_stat_reply.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-hdpi/ic_action_stat_share.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-mdpi/ic_action_stat_reply.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-mdpi/ic_action_stat_share.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-nodpi/example_picture_large.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-nodpi/example_picture_small.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-xhdpi/ic_action_stat_reply.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-xhdpi/ic_action_stat_share.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/src/app_package/NotificationHelper.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_list.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_list_actions.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_none.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_none_actions.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_picture.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_picture_actions.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_text.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_text_actions.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/root/res/layout/fragment_plus_one.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/root/src/app_package/PlusOneFragment.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/templates_plusone_fragment.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/ResFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ResFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ResFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/ResourcesFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ResourcesFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ResourcesFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/RsFolder/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/RsFolder/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/RsFolder/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/Service/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Service/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Service/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Service/root/src/app_package/Service.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/Service/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/ValueResourceFile/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ValueResourceFile/root/res/values.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/ValueResourceFile/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/analog_round.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/analog_square.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/digital_round.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/digital_square.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/globals.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/recipe.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/AndroidManifest.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/AndroidManifestPermissions.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/build.gradle.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_analog.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_digital.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_digital_circular.png
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/colors.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/dimens.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/strings.xml.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/xml/watch_face.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/src/app_package/MyAnalogWatchFaceService.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/src/app_package/MyDigitalWatchFaceService.java.ftl
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/template.xml
%%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/template_thumbnail.png
%%IDEA_HOME%%/plugins/android/lib/truth-0.28.jar
%%IDEA_HOME%%/plugins/ant/lib/ant-jps-plugin.jar
%%IDEA_HOME%%/plugins/ant/lib/antIntegration.jar
%%IDEA_HOME%%/plugins/ant/lib/resources_en.jar
%%IDEA_HOME%%/plugins/aop-common/lib/aop-common.jar
%%IDEA_HOME%%/plugins/aop-common/lib/resources_en.jar
%%IDEA_HOME%%/plugins/arquillian-core/lib/arquillian-core.jar
%%IDEA_HOME%%/plugins/arquillian-core/lib/arquillian-junit.jar
%%IDEA_HOME%%/plugins/arquillian-core/lib/arquillian-testng.jar
%%IDEA_HOME%%/plugins/arquillian-core/lib/mavenDependencies.jar
%%IDEA_HOME%%/plugins/arquillian-core/lib/resources_en.jar
%%IDEA_HOME%%/plugins/asp/lib/asp.jar
%%IDEA_HOME%%/plugins/asp/lib/resources_en.jar
%%IDEA_HOME%%/plugins/aspectj/lib/aspectj-jps-plugin.jar
%%IDEA_HOME%%/plugins/aspectj/lib/aspectj.jar
%%IDEA_HOME%%/plugins/aspectj/lib/resources_en.jar
%%IDEA_HOME%%/plugins/cfmlSupport/lib/cfmlSupport.jar
%%IDEA_HOME%%/plugins/cfmlSupport/lib/resources_en.jar
%%IDEA_HOME%%/plugins/cloudBeesIntegration/lib/cloudBeesIntegration.jar
%%IDEA_HOME%%/plugins/cloudBeesIntegration/lib/specifics/cloudBeesSpecifics.jar
%%IDEA_HOME%%/plugins/cloudFoundryIntegration/lib/cloudFoundryIntegration.jar
%%IDEA_HOME%%/plugins/cloudFoundryIntegration/lib/snakeyaml-1.15.jar
%%IDEA_HOME%%/plugins/cloudFoundryIntegration/lib/specifics/cloudFoundrySpecifics.jar
%%IDEA_HOME%%/plugins/coffeescript-core/lib/coffeescript-core.jar
%%IDEA_HOME%%/plugins/coffeescript-core/lib/resources_en.jar
%%IDEA_HOME%%/plugins/copyright/lib/copyright.jar
%%IDEA_HOME%%/plugins/coverage/lib/coverage-report-idea.jar
%%IDEA_HOME%%/plugins/coverage/lib/coverage-report.jar
%%IDEA_HOME%%/plugins/coverage/lib/coverage.jar
%%IDEA_HOME%%/plugins/coverage/lib/coverage_rt.jar
%%IDEA_HOME%%/plugins/coverage/lib/freemarker.jar
%%IDEA_HOME%%/plugins/coverage/lib/jacocoagent.jar
%%IDEA_HOME%%/plugins/coverage/lib/jacocoant.jar
%%IDEA_HOME%%/plugins/cucumber-groovy/lib/cucumber-core-1.2.4.jar
%%IDEA_HOME%%/plugins/cucumber-groovy/lib/cucumber-groovy-1.2.4.jar
%%IDEA_HOME%%/plugins/cucumber-groovy/lib/cucumber-groovy.jar
%%IDEA_HOME%%/plugins/cucumber-java/lib/cucumber-core-1.2.4.jar
%%IDEA_HOME%%/plugins/cucumber-java/lib/cucumber-java.jar
%%IDEA_HOME%%/plugins/cucumber-java/lib/cucumber-jvm-formatter.jar
%%IDEA_HOME%%/plugins/cucumber-java/lib/gherkin-2.12.2.jar
%%IDEA_HOME%%/plugins/cucumber/lib/cucumber.jar
%%IDEA_HOME%%/plugins/cucumber/lib/resources_en.jar
%%IDEA_HOME%%/plugins/cvsIntegration/lib/cvsIntegration.jar
%%IDEA_HOME%%/plugins/cvsIntegration/lib/cvs_util.jar
%%IDEA_HOME%%/plugins/cvsIntegration/lib/javacvs-src.jar
%%IDEA_HOME%%/plugins/cvsIntegration/lib/resources_en.jar
%%IDEA_HOME%%/plugins/cvsIntegration/lib/smartcvs-src.jar
%%IDEA_HOME%%/plugins/cvsIntegration/lib/trilead-ssh2-build213.jar
%%IDEA_HOME%%/plugins/devkit/lib/devkit-jps-plugin.jar
%%IDEA_HOME%%/plugins/devkit/lib/devkit.jar
%%IDEA_HOME%%/plugins/devkit/lib/dtdparser113.jar
%%IDEA_HOME%%/plugins/devkit/lib/resources_en.jar
%%IDEA_HOME%%/plugins/dmServer/lib/com.springsource.server.management.remote-1.0.0.RELEASE.jar
%%IDEA_HOME%%/plugins/dmServer/lib/dmServer-jps-plugin.jar
%%IDEA_HOME%%/plugins/dmServer/lib/dmServerSupport.jar
%%IDEA_HOME%%/plugins/drools/lib/drools-support.jar
%%IDEA_HOME%%/plugins/drools/lib/resources_en.jar
%%IDEA_HOME%%/plugins/dsm/lib/dsm.jar
%%IDEA_HOME%%/plugins/dsm/lib/resources_en.jar
%%IDEA_HOME%%/plugins/duplicates/lib/duplicates.jar
%%IDEA_HOME%%/plugins/eclipse/lib/common-eclipse-util.jar
%%IDEA_HOME%%/plugins/eclipse/lib/eclipse-jps-plugin.jar
%%IDEA_HOME%%/plugins/eclipse/lib/eclipse.jar
%%IDEA_HOME%%/plugins/eclipse/lib/resources_en.jar
%%IDEA_HOME%%/plugins/editorconfig/lib/editorconfig-core-java.jar
%%IDEA_HOME%%/plugins/editorconfig/lib/editorconfig.jar
%%IDEA_HOME%%/plugins/emma/lib/emma-agent.jar
%%IDEA_HOME%%/plugins/emma/lib/emma-idea.jar
%%IDEA_HOME%%/plugins/emma/lib/emma.jar
%%IDEA_HOME%%/plugins/flex/lib/FlexSupport.jar
%%IDEA_HOME%%/plugins/flex/lib/flex-compiler.jar
%%IDEA_HOME%%/plugins/flex/lib/flex-jps-plugin.jar
%%IDEA_HOME%%/plugins/flex/lib/flex-shared.jar
%%IDEA_HOME%%/plugins/flex/lib/flexmojos-flex-configs-generator-server-31.jar
%%IDEA_HOME%%/plugins/flex/lib/flexmojos-flex-configs-generator-server.jar
%%IDEA_HOME%%/plugins/flex/lib/flexmojos-idea-configurator.jar
%%IDEA_HOME%%/plugins/flex/lib/idea-fcsh-fix.jar
%%IDEA_HOME%%/plugins/flex/lib/idea-fcsh-fix_src.zip
%%IDEA_HOME%%/plugins/flex/lib/idea-fdb-3-fix.jar
%%IDEA_HOME%%/plugins/flex/lib/idea-fdb-3-fix_src.zip
%%IDEA_HOME%%/plugins/flex/lib/idea-fdb-4.0.0.14159-fix.jar
%%IDEA_HOME%%/plugins/flex/lib/idea-fdb-4.0.0.14159-fix_src.zip
%%IDEA_HOME%%/plugins/flex/lib/idea-fdb-4.5.0.20967-fix.jar
%%IDEA_HOME%%/plugins/flex/lib/idea-fdb-4.5.0.20967-fix_src.zip
%%IDEA_HOME%%/plugins/flex/lib/idea-flex-compiler-fix.jar
%%IDEA_HOME%%/plugins/flex/lib/idea-flex-compiler-fix_src.zip
%%IDEA_HOME%%/plugins/flex/lib/resources_en.jar
%%IDEA_HOME%%/plugins/flex/lib/temp_keystore.p12
%%IDEA_HOME%%/plugins/flex/lib/unittestingsupport_as.swc
%%IDEA_HOME%%/plugins/flex/lib/unittestingsupport_flexunit_4.swc
%%IDEA_HOME%%/plugins/flex/lib/unittestingsupport_mx.swc
%%IDEA_HOME%%/plugins/flex/lib/unittestingsupport_spark.swc
%%IDEA_HOME%%/plugins/git4idea/lib/git4idea-rt.jar
%%IDEA_HOME%%/plugins/git4idea/lib/git4idea.jar
%%IDEA_HOME%%/plugins/git4idea/lib/ini4j-0.5.2-patched.jar
%%IDEA_HOME%%/plugins/git4idea/lib/remote-servers-git.jar
%%IDEA_HOME%%/plugins/git4idea/lib/resources_en.jar
%%IDEA_HOME%%/plugins/git4idea/lib/trilead-ssh2.jar
%%IDEA_HOME%%/plugins/github/lib/github.jar
%%IDEA_HOME%%/plugins/gradle/lib/commons-io-2.2.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-base-services-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-base-services-groovy-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-cli-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-core-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-jps-plugin.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-messaging-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-model-core-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-model-groovy-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-native-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-resources-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-tooling-api-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-tooling-extension-api.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-tooling-extension-impl.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle-wrapper-2.13.jar
%%IDEA_HOME%%/plugins/gradle/lib/gradle.jar
%%IDEA_HOME%%/plugins/gradle/lib/guava-jdk5-17.0.jar
%%IDEA_HOME%%/plugins/gradle/lib/jna-3.2.7.jar
%%IDEA_HOME%%/plugins/gradle/lib/jsr305-1.3.9.jar
%%IDEA_HOME%%/plugins/gradle/lib/kryo-2.22.jar
%%IDEA_HOME%%/plugins/gradle/lib/minlog-1.2.jar
%%IDEA_HOME%%/plugins/gradle/lib/native-platform-0.10.jar
%%IDEA_HOME%%/plugins/gradle/lib/native-platform-freebsd-amd64-0.10.jar
%%IDEA_HOME%%/plugins/gradle/lib/native-platform-freebsd-i386-0.10.jar
%%IDEA_HOME%%/plugins/gradle/lib/objenesis-1.2.jar
%%IDEA_HOME%%/plugins/gradle/lib/reflectasm-1.07.jar
%%IDEA_HOME%%/plugins/gradle/lib/resources_en.jar
%%IDEA_HOME%%/plugins/haml/lib/haml.jar
%%IDEA_HOME%%/plugins/haml/lib/resources_en.jar
%%IDEA_HOME%%/plugins/herokuIntegration/lib/herokuIntegration.jar
%%IDEA_HOME%%/plugins/herokuIntegration/lib/specifics/herokuSpecifics.jar
%%IDEA_HOME%%/plugins/hg4idea/lib/hg4idea.jar
%%IDEA_HOME%%/plugins/hg4idea/lib/resources_en.jar
%%IDEA_HOME%%/plugins/htmltools/lib/htmltools.jar
%%IDEA_HOME%%/plugins/htmltools/lib/resources_en.jar
%%IDEA_HOME%%/plugins/j2meplugin/lib/j2meplugin.jar
%%IDEA_HOME%%/plugins/j2meplugin/lib/resources_en.jar
%%IDEA_HOME%%/plugins/java-decompiler/lib/java-decompiler.jar
%%IDEA_HOME%%/plugins/java-i18n/lib/java-i18n.jar
%%IDEA_HOME%%/plugins/java-i18n/lib/resources_en.jar
%%IDEA_HOME%%/plugins/javaFX/lib/SceneBuilderKit-8.1.1.jar
%%IDEA_HOME%%/plugins/javaFX/lib/common-javaFX-plugin.jar
%%IDEA_HOME%%/plugins/javaFX/lib/javaFX-jps-plugin.jar
%%IDEA_HOME%%/plugins/javaFX/lib/javaFX.jar
%%IDEA_HOME%%/plugins/javaFX/lib/resources_en.jar
%%IDEA_HOME%%/plugins/jboss-core/lib/jboss-core.jar
%%IDEA_HOME%%/plugins/jbpm/lib/jbpm-support.jar.jar
%%IDEA_HOME%%/plugins/jbpm/lib/resources_en.jar
%%IDEA_HOME%%/plugins/jsp/lib/jsp-impl.jar
%%IDEA_HOME%%/plugins/jsr45debug/lib/jsr45debug.jar
%%IDEA_HOME%%/plugins/jsr45debug/lib/resources_en.jar
%%IDEA_HOME%%/plugins/junit/lib/idea-junit.jar
%%IDEA_HOME%%/plugins/junit/lib/junit-jupiter-engine-5.0.0-M1.jar
%%IDEA_HOME%%/plugins/junit/lib/junit-platform-commons-1.0.0-M1.jar
%%IDEA_HOME%%/plugins/junit/lib/junit-platform-engine-1.0.0-M1.jar
%%IDEA_HOME%%/plugins/junit/lib/junit-platform-launcher-1.0.0-M1.jar
%%IDEA_HOME%%/plugins/junit/lib/junit-platform-runner-1.0.0-M1.jar
%%IDEA_HOME%%/plugins/junit/lib/junit-rt.jar
%%IDEA_HOME%%/plugins/junit/lib/junit-vintage-engine-4.12.0-M1.jar
%%IDEA_HOME%%/plugins/junit/lib/junit5-rt.jar
%%IDEA_HOME%%/plugins/junit/lib/opentest4j-1.0.0-M1.jar
%%IDEA_HOME%%/plugins/junit/lib/resources_en.jar
%%IDEA_HOME%%/plugins/less/lib/less.jar
%%IDEA_HOME%%/plugins/less/lib/resources_en.jar
%%IDEA_HOME%%/plugins/maven-ext/lib/maven-ext.jar
%%IDEA_HOME%%/plugins/maven/lib/artifact-resolver-m2.jar
%%IDEA_HOME%%/plugins/maven/lib/artifact-resolver-m3.jar
%%IDEA_HOME%%/plugins/maven/lib/artifact-resolver-m31.jar
%%IDEA_HOME%%/plugins/maven/lib/lucene-core-2.4.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven-jps-plugin.jar
%%IDEA_HOME%%/plugins/maven/lib/maven-server-api.jar
%%IDEA_HOME%%/plugins/maven/lib/maven.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-impl.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/activation-1.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/archetype-common-2.0-alpha-4-SNAPSHOT.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/commons-beanutils.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/jaxb-api.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/jaxb-impl.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/maven-dependency-tree-1.2.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/mercury-artifact-1.0-alpha-6.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/nexus-indexer-1.2.3.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/plexus-utils-1.5.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2/LICENSE.txt
%%IDEA_HOME%%/plugins/maven/lib/maven2/NOTICE.txt
%%IDEA_HOME%%/plugins/maven/lib/maven2/README.txt
%%IDEA_HOME%%/plugins/maven/lib/maven2/bin/m2.conf
%%IDEA_HOME%%/plugins/maven/lib/maven2/bin/mvn
%%IDEA_HOME%%/plugins/maven/lib/maven2/bin/mvn.bat
%%IDEA_HOME%%/plugins/maven/lib/maven2/bin/mvnDebug
%%IDEA_HOME%%/plugins/maven/lib/maven2/bin/mvnDebug.bat
%%IDEA_HOME%%/plugins/maven/lib/maven2/boot/classworlds-1.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven2/conf/settings.xml
%%IDEA_HOME%%/plugins/maven/lib/maven2/lib/maven-2.2.1-uber.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3-server-common.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/archetype-catalog-2.2.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/archetype-common-2.2.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/maven-dependency-tree-1.2.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/nexus-indexer-3.0.4.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/nexus-indexer-artifact-1.0.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/LICENSE.txt
%%IDEA_HOME%%/plugins/maven/lib/maven3/NOTICE.txt
%%IDEA_HOME%%/plugins/maven/lib/maven3/README.txt
%%IDEA_HOME%%/plugins/maven/lib/maven3/bin/m2.conf
%%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvn
%%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvn.bat
%%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvnDebug
%%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvnDebug.bat
%%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvnyjp
%%IDEA_HOME%%/plugins/maven/lib/maven3/boot/plexus-classworlds-2.4.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/conf/settings.xml
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-api-1.13.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-connector-wagon-1.13.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-impl-1.13.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-spi-1.13.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-util-1.13.1.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/commons-cli-1.2.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/commons-io-2.2.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/commons-lang-2.6.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/ext/README.txt
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-aether-provider-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-artifact-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-compat-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-core-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-embedder-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-model-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-model-builder-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-plugin-api-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-repository-metadata-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-settings-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-settings-builder-3.0.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-cipher-1.7.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-component-annotations-1.5.5.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-interpolation-1.14.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher-1.3.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-utils-2.0.6.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/sisu-guava-0.9.9.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/sisu-guice-3.1.0-no_aop.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/sisu-inject-bean-2.3.0.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/sisu-inject-plexus-2.3.0.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/wagon-file-2.8.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/wagon-http-2.8-shaded.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/wagon-http-shared-2.8.jar
%%IDEA_HOME%%/plugins/maven/lib/maven3/lib/wagon-provider-api-2.8.jar
%%IDEA_HOME%%/plugins/maven/lib/maven30-server-impl.jar
%%IDEA_HOME%%/plugins/maven/lib/maven32-server-impl.jar
%%IDEA_HOME%%/plugins/maven/lib/plexus-archiver-2.4.4.jar
%%IDEA_HOME%%/plugins/maven/lib/plexus-utils-2.0.6.jar
%%IDEA_HOME%%/plugins/maven/lib/resources_en.jar
%%IDEA_HOME%%/plugins/maven/lib/wadl-core.jar
%%IDEA_HOME%%/plugins/openShiftIntegration/lib/openShiftIntegration.jar
%%IDEA_HOME%%/plugins/openShiftIntegration/lib/specifics/openShiftSpecifics.jar
%%IDEA_HOME%%/plugins/osmorc/lib/bndlib-3.0.0.jar
%%IDEA_HOME%%/plugins/osmorc/lib/bndlib-plugins-3.0.0.jar
%%IDEA_HOME%%/plugins/osmorc/lib/bundlor-all.jar
%%IDEA_HOME%%/plugins/osmorc/lib/org.apache.felix.framework-4.2.1.jar
%%IDEA_HOME%%/plugins/osmorc/lib/osmorc-jps-plugin.jar
%%IDEA_HOME%%/plugins/osmorc/lib/osmorc.jar
%%IDEA_HOME%%/plugins/osmorc/lib/plexus-utils-3.0.10.jar
%%IDEA_HOME%%/plugins/osmorc/lib/resources_en.jar
%%IDEA_HOME%%/plugins/properties/lib/properties.jar
%%IDEA_HOME%%/plugins/remote-run/lib/remote-run.jar
%%IDEA_HOME%%/plugins/resinIntegration/lib/resin.jar
%%IDEA_HOME%%/plugins/resinIntegration/lib/resources_en.jar
%%IDEA_HOME%%/plugins/restClient/lib/resources_en.jar
%%IDEA_HOME%%/plugins/restClient/lib/restClient.jar
%%IDEA_HOME%%/plugins/restWebServices/lib/rs.jar
%%IDEA_HOME%%/plugins/restWebServices/lib/ws-rt.jar
%%IDEA_HOME%%/plugins/restWebServices/lib/ws-utils.jar
%%IDEA_HOME%%/plugins/sass/lib/jrubyparser-0.5.4.jar
%%IDEA_HOME%%/plugins/sass/lib/resources_en.jar
%%IDEA_HOME%%/plugins/sass/lib/sass.jar
%%IDEA_HOME%%/plugins/settings-repository/lib/jackson-annotations-2.7.1.jar
%%IDEA_HOME%%/plugins/settings-repository/lib/jackson-core-2.7.1.jar
%%IDEA_HOME%%/plugins/settings-repository/lib/jackson-databind-2.7.1-1.jar
%%IDEA_HOME%%/plugins/settings-repository/lib/jgit.jar
%%IDEA_HOME%%/plugins/settings-repository/lib/resources_en.jar
%%IDEA_HOME%%/plugins/settings-repository/lib/settings-repository.jar
%%IDEA_HOME%%/plugins/spy-js/lib/socketio.jar
%%IDEA_HOME%%/plugins/spy-js/lib/spy-js.jar
%%IDEA_HOME%%/plugins/spy-js/server/lib/app.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/defaultConfig.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/evaluator.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/global.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/instrument.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/proxyUtil.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/session.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/sessionCore.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/sessionNode.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/sessionStore.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/tracer.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/tracerDependencies.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/tracerNode.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/urlUtil.js
%%IDEA_HOME%%/plugins/spy-js/server/lib/worker.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/acorn
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/escodegen
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/esgenerate
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/esparse
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/esvalidate
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/express
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/ncp
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/node-http-proxy
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/rimraf
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/semver
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/uglifyjs
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/uuid
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/.bin/wscat
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/.editorconfig
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/.tern-project
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/AUTHORS
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/bin/acorn
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/bin/build-acorn.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/bin/generate-identifier-regex.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/bin/update_authors.sh
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/dist/.keep
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/dist/acorn.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/dist/acorn_loose.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/dist/walk.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/bin/acorn.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/expression.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/identifier.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/location.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/locutil.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/loose/acorn_loose.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/loose/expression.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/loose/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/loose/parseutil.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/loose/state.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/loose/statement.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/loose/tokenize.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/lval.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/node.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/options.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/parseutil.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/state.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/statement.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/tokencontext.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/tokenize.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/tokentype.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/walk/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/acorn/src/whitespace.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/active-x-obfuscator/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/active-x-obfuscator/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/active-x-obfuscator/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/active-x-obfuscator/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/active-x-obfuscator/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/.idea/scopes/scope_settings.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/MIT-LICENSE.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/adm-zip.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/headers/entryHeader.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/headers/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/headers/mainHeader.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/methods/deflater.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/methods/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/methods/inflater.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/attributes_test.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/attributes_test/New folder/hidden.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/attributes_test/New folder/hidden_readonly.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/attributes_test/New folder/readonly.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/attributes_test/New folder/somefile.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/attributes_test/asd/New Text Document.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/attributes_test/blank file.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/fast.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/fastest.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/linux_arc.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/maximum.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/normal.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/store.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/assets/ultra.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/test/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/util/constants.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/util/errors.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/util/fattr.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/util/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/util/utils.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/zipEntry.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/adm-zip/zipFile.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/amdefine/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/amdefine/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/amdefine/amdefine.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/amdefine/intercept.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/amdefine/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/LICENSE-MIT
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/lib/archiver.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/lib/modules/core/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/lib/modules/core/queue.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/lib/modules/json/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/lib/modules/tar/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/lib/modules/zip/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/lib/util/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/archiver/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/lib/ber/errors.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/lib/ber/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/lib/ber/reader.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/lib/ber/types.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/lib/ber/writer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/tst/ber/reader.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/asn1/tst/ber/writer.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/assert-plus/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/assert-plus/assert.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/assert-plus/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/async/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/async/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/async/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/async/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/async/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/async/lib/async.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/async/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/aws-sign2/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/aws-sign2/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/aws-sign2/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/aws-sign2/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/balanced-match/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/balanced-match/LICENSE.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/balanced-match/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/balanced-match/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/balanced-match/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/base64id/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/base64id/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/base64id/lib/base64id.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/base64id/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/.jshintrc
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/LICENSE.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/bl.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/test/basic-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/test/sauce.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bl/test/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/images/boom.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/boom/test/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/brace-expansion/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/brace-expansion/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/brace-expansion/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/buffer-crc32/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/buffer-crc32/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/buffer-crc32/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/buffer-crc32/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/buffer-crc32/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/buffer-crc32/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/buffer-crc32/tests/crc.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bytes/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bytes/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bytes/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bytes/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bytes/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bytes/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/bytes/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/caseless/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/caseless/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/caseless/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/caseless/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/MIT-LICENSE.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/ReadMe.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/colors.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/example.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/example.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/themes/winston-dark.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/colors/themes/winston-light.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/combined-stream/License
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/combined-stream/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/combined-stream/lib/combined_stream.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/combined-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/commander/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/commander/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/commander/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/concat-map/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/concat-map/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/concat-map/README.markdown
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/concat-map/example/map.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/concat-map/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/concat-map/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/concat-map/test/map.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/cache.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/connect.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/basicAuth.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/bodyParser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/compress.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/cookieParser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/cookieSession.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/csrf.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/directory.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/errorHandler.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/favicon.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/json.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/limit.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/logger.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/methodOverride.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/multipart.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/query.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/responseTime.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/cookie.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/memory.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/session.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/store.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/static.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/staticCache.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/timeout.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/urlencoded.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/middleware/vhost.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/patch.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/proto.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/directory.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/error.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/favicon.ico
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_add.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_attach.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_code.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_copy.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_delete.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_edit.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_error.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_excel.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_find.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_gear.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_go.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_green.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_key.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_lightning.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_link.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_paintbrush.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_paste.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_red.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_refresh.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_save.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_acrobat.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_actionscript.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_add.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_c.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_camera.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_cd.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_code.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_code_red.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_coldfusion.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_compressed.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_copy.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_cplusplus.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_csharp.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_cup.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_database.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_delete.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_dvd.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_edit.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_error.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_excel.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_find.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_flash.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_freehand.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_gear.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_get.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_go.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_h.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_horizontal.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_key.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_lightning.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_link.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_magnify.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_medal.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_office.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_paint.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_paintbrush.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_paste.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_php.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_picture.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_powerpoint.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_put.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_ruby.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_stack.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_star.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_swoosh.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_text.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_text_width.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_tux.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_vector.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_visualstudio.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_width.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_word.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_world.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_wrench.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_white_zip.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_word.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/icons/page_world.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/public/style.css
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/lib/utils.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/tests/crc.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/debug.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/lib/debug.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/connect/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie-signature/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie-signature/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie-signature/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie-signature/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie-signature/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie-signature/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/test/mocha.opts
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/test/parse.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cookie/test/serialize.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/core-util-is/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/core-util-is/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/core-util-is/lib/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/core-util-is/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/core-util-is/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/CHANGELOG
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/CONTRIBUTING.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/LICENSE-MIT
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/lib/crc32-stream.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/test/checksum.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/crc32-stream/test/helpers/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/cryptiles/test/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/CHANGELOG
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/README
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/README.old
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/ctf.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/ctio.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/ctype.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/man/man3ctype/ctio.3ctype
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/tools/jsl.conf
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ctype/tools/jsstyle
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/.jshintrc
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/debug.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/node.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/debug/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/example/cmp.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/lib/is_arguments.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/lib/keys.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/readme.markdown
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-equal/test/cmp.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/README.markdown
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/example/cmp.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/test/NaN.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/test/cmp.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deep-is/test/neg-vs-pos-0.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/LICENSE-MIT
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/lib/deflate-crc32-stream.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/License
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/lib/delayed_stream.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/common.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/integration/test-delayed-http-upload.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/integration/test-delayed-stream-auto-pause.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/integration/test-delayed-stream-pause.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/integration/test-delayed-stream.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/integration/test-handle-source-errors.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/integration/test-max-data-size.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/integration/test-pipe-resumes.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/integration/test-proxy-readable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/delayed-stream/test/run.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/end-of-stream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/end-of-stream/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/end-of-stream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/end-of-stream/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/end-of-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/end-of-stream/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/LICENSE.BSD
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/LICENSE.source-map
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/bin/escodegen.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/bin/esgenerate.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/escodegen.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/Makefile.dryice.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/assert-shim.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/mini-require.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/prefix-source-map.jsm
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/prefix-utils.jsm
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-source-map.jsm
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-utils.jsm
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/test-prefix.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/test-suffix.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/array-set.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/base64-vlq.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/base64.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/basic-source-map-consumer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/binary-search.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/indexed-source-map-consumer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/mapping-list.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-map-consumer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-map-generator.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-node.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/escodegen/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/ChangeLog
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/LICENSE.BSD
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/bin/esparse.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/bin/esvalidate.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/esprima.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/test/compat.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/test/reflect.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/test/run.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/test/runner.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esprima/test/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/estraverse/.editorconfig
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/estraverse/.jshintrc
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/estraverse/LICENSE.BSD
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/estraverse/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/estraverse/estraverse.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/estraverse/gulpfile.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/estraverse/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esutils/LICENSE.BSD
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esutils/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esutils/lib/ast.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esutils/lib/code.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esutils/lib/keyword.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esutils/lib/utils.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/esutils/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/bin/express
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/application.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/express.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/middleware.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/request.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/response.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/router/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/router/route.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/utils.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/lib/view.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/tests/crc.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/commander/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/commander/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/commander/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/commander/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/debug/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/debug/debug.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/debug/lib/debug.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/node_modules/debug/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/express/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fast-levenshtein/LICENSE.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fast-levenshtein/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fast-levenshtein/levenshtein.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fast-levenshtein/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/lib/env.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/lib/file.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/lib/logger.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/lib/query.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/Changelog.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/dbcs-codec.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/dbcs-data.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/internal.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-codec.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-data-generated.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-data.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/big5-added.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp936.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp949.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp950.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/eucjp.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/gbk-added.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/shiftjis.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/utf16.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/utf7.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/bom-handling.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/extend-node.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/streams.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/file-utils/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/LICENSE-MIT
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/lib/findup-sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/common.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/glob.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/findup-sync/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/forever-agent/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/forever-agent/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/forever-agent/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/forever-agent/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/License
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/lib/form_data.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/bower.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/lib/async.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/support/sync-package-managers.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/form-data/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fresh/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fresh/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fresh/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fresh/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fresh/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fresh/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fs.realpath/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fs.realpath/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fs.realpath/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fs.realpath/old.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/fs.realpath/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/glob/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/glob/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/glob/common.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/glob/glob.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/glob/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/glob/sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/fs.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/graceful-fs.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/polyfills.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/test/open.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/graceful-fs/test/readdir-sort.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/example/usage.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/images/hawk.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/images/logo.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/lib/browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/lib/client.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/lib/crypto.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/lib/server.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/lib/utils.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/client.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/crypto.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/message.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/readme.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/server.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/uri.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hawk/test/utils.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/images/hoek.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/lib/escape.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/test/escaper.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/test/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/test/modules/test1.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/test/modules/test2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/hoek/test/modules/test3.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/benchmark/websockets-throughput.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/bin/node-http-proxy
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/config.sample.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/balancer/simple-balancer-with-websockets.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/balancer/simple-balancer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/helpers/store.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/basic-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/concurrent-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/custom-proxy-error.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/forward-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/latent-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-https-to-http.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-https-to-https.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-table.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/standalone-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/bodyDecoder-middleware.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/gzip-middleware-proxytable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/gzip-middleware.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/jsonp-middleware.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/modifyResponse-middleware.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/url-middleware.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/url-middleware2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/latent-websocket-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/standalone-websocket-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/websocket-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/http-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/proxy-table.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/routing-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/common.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/pummel/test-http-upload-timeout.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/run
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/run-single
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-chunked.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-client-abort.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-client-abort2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-client-upload-buf.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-client-upload.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-contentLength0.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-eof-on-connect.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-extra-response.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-head-request.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-head-response-has-no-body-end.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-head-response-has-no-body.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-host-headers.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-many-keep-alive-connections.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-multi-line-headers.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-proxy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-response-close.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-server-multiheaders.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-set-cookies.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-status-code.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http-upgrade-server2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/core/simple/test-http.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/examples-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/fixtures/agent2-cert.pem
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/fixtures/agent2-csr.pem
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/fixtures/agent2-key.pem
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/fixtures/agent2.cnf
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/helpers/http.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/helpers/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/helpers/ws.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/http/http-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/http/routing-table-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/macros/examples.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/macros/http.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/macros/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/macros/ws.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/ws/routing-table-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/ws/socket.io-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-proxy/test/ws/ws-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/.dir-locals.el
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/http_signing.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/lib/parser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/lib/signer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/lib/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/lib/verify.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/http-signature/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/lib/defaults.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/lib/inflect.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/lib/inflections.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/lib/methods.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/lib/native.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/lib/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/test/inflector/cases.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/test/inflector/inflections-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/test/inflector/methods-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/test/utils/array-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/i/test/utils/string-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/big5.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/gbk.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/singlebyte.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/table/big5.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/table/gbk.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/generation/generate-big5-table.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/generation/generate-singlebyte.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/big5-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/big5File.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/cyrillic-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/gbk-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/gbkFile.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/greek-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/main-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/performance.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/iconv-lite/test/turkish-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inflight/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inflight/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inflight/inflight.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inflight/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inherits/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inherits/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inherits/inherits.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inherits/inherits_browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inherits/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/inherits/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isarray/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isarray/build/build.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isarray/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isarray/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isarray/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isbinaryfile/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isbinaryfile/LICENSE.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isbinaryfile/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isbinaryfile/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/isbinaryfile/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/stringify.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/test/mocha.opts
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/json-stringify-safe/test/stringify_test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/keypress/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/keypress/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/keypress/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/keypress/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/LICENSE-MIT
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/lib/lazystream.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/test/data.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/test/fs_test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/test/helper.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/test/pipe_test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/test/readable_test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lazystream/test/writable_test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/levn/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/levn/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/levn/lib/cast.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/levn/lib/coerce.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/levn/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/levn/lib/parse-string.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/levn/lib/parse.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/levn/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/LICENSE.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.compat.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.compat.min.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.min.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.underscore.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.underscore.min.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/lodash.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lodash/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/AUTHORS
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/lib/lru-cache.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/s.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/test/basic.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/test/foreach.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/lru-cache/test/memory-leak.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/methods/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/methods/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/methods/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/methods/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/SOURCES.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/lib/custom.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/lib/mime.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/lib/node.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime-types/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime/mime.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime/types/mime.types
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mime/types/node.types
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/minimatch/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/minimatch/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/minimatch/browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/minimatch/minimatch.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/minimatch/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/examples/pow.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/readme.markdown
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/chmod.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/clobber.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/mkdirp.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/perm.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/perm_sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/race.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/rel.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/return.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/return_sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/root.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/umask.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mkdirp/test/umask_sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ms/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ms/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ms/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ms/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mule/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mule/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mule/examples/parent.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mule/examples/worker.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mule/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/mule/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/.name
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/encodings.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/jsLibraryMappings.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/libraries/multi_stage_sourcemap_node_modules.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/misc.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/modules.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/multi-stage-sourcemap.iml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/scopes/scope_settings.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/vcs.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/workspace.xml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/MIT-LICENSE.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/bower.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/build/power-assert.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/lib/power-assert.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/build.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/index.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/one_pass_result.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/origin.coffee
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/two_pass_result.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/lib/multi-stage-sourcemap.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/test/mocha.opts
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/test/multi-stage-sourcemap-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/.jshintrc
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/examples/azureblobstorage.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/examples/s3.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/examples/upload.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/duplex.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_duplex.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_passthrough.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_readable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_transform.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_writable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/passthrough.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/readable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/transform.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/writable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/bench-multipart-parser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/file/beta-sticker-1.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/file/blank.gif
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/file/funkyfilename.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/file/menu_separator.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/file/pf1y5.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/file/plain.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/encoding/beta-sticker-1.png.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/encoding/binaryfile.tar.gz.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/encoding/blank.gif.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/encoding/menu_seperator.png.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/encoding/pf1y5.png.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/encoding/plain.txt.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/no-filename/filename-name.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/no-filename/generic.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/preamble/crlf.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/preamble/preamble.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/special-chars-in-filename/info.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/special-chars-in-filename/osx-chrome-13.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/special-chars-in-filename/osx-firefox-3.6.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/special-chars-in-filename/osx-safari-5.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/special-chars-in-filename/xp-chrome-12.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/special-chars-in-filename/xp-ie-7.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/special-chars-in-filename/xp-ie-8.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/special-chars-in-filename/xp-safari-5.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/workarounds/missing-hyphens1.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/http/workarounds/missing-hyphens2.http
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/js/encoding.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/js/no-filename.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/js/preamble.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/js/special-chars-in-filename.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/js/workarounds.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/multi_video.upload
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/fixture/multipart.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/record.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-connection-aborted.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-content-transfer-encoding.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-invalid.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-issue-15.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-issue-19.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-issue-21.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-issue-4.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-issue-46.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/standalone/test-issue-5.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/multiparty/test/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/nan/.dntrc
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/nan/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/nan/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/nan/build/config.gypi
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/nan/include_dirs.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/nan/nan.h
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/nan/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/LICENSE.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/bin/ncp
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/lib/ncp.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/fixtures/src/a
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/fixtures/src/b
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/fixtures/src/c
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/fixtures/src/d
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/fixtures/src/e
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/fixtures/src/f
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/fixtures/src/sub/a
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/fixtures/src/sub/b
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ncp/test/ncp-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/examples/accept.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/examples/charset.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/examples/encoding.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/examples/language.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/lib/charset.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/lib/encoding.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/lib/language.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/lib/mediaType.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/lib/negotiator.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/test/charset.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/test/encoding.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/test/language.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/negotiator/test/mediaType.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/LICENSE.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/bench.gnu
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/bench.sh
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/benchmark-native.c
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/benchmark.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/bin/uuid
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/bower.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/test/compare_v1.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/test/test.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/test/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/node-uuid/uuid.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/oauth-sign/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/oauth-sign/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/oauth-sign/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/oauth-sign/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/oauth-sign/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/once/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/once/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/once/once.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/once/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/bool.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/boolean_double.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/boolean_single.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/default_hash.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/default_singles.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/divide.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/line_count.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/line_count_options.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/line_count_wrap.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/nonopt.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/reflect.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/short.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/string.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/usage-options.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/example/xup.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/readme.markdown
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/test/_.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/test/_/argv.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/test/_/bin.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/test/parse.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optimist/test/usage.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optionator/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optionator/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optionator/lib/coerce.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optionator/lib/help.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optionator/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optionator/lib/parse-type.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optionator/lib/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/optionator/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/options/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/options/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/options/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/options/lib/options.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/options/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/osenv/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/osenv/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/osenv/osenv.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/osenv/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/osenv/test/unix.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/osenv/test/windows.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/path-is-absolute/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/path-is-absolute/license
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/path-is-absolute/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/path-is-absolute/readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pause/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pause/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pause/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pause/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pause/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pause/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/docs/docco.css
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/docs/pkginfo.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/examples/all-properties.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/examples/array-argument.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/examples/multiple-properties.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/examples/object-argument.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/examples/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/examples/single-property.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/lib/pkginfo.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/pkginfo/test/pkginfo-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/doc/index.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/examples/basic.fallback.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/examples/basic.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/lib/server.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/tests/ssl/ssl.crt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/tests/ssl/ssl.private.key
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/policyfile/tests/unit.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Func.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/lib/List.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Num.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Obj.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Str.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/prelude-ls/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/qs/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/qs/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/qs/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/qs/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/range-parser/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/range-parser/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/range-parser/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/range-parser/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/range-parser/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/range-parser/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/raw-body/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/raw-body/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/raw-body/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/raw-body/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/raw-body/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/raw-body/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/duplex.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_duplex.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_passthrough.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_readable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_transform.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_writable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/passthrough.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/readable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/transform.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/readable-stream/writable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/buffer_bench.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/hiredis_parser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/re_sub_test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/reconnect_test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/codec.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/pub.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/run
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/server.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/pub.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/run
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/server.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/00
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/plot
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/size-rate.png
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/speed.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/benches/sub_quit_test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/changelog.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/diff_multi_bench_output.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/auth.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/backpressure_drain.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/eval.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/extend.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/file.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/mget.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/monitor.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/multi.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/multi2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/psubscribe.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/pub_sub.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/simple.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/sort.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/subqueries.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/subquery.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/unix_socket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/examples/web_server.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/generate_commands.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/lib/commands.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/lib/parser/hiredis.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/lib/parser/javascript.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/lib/queue.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/lib/to_array.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/lib/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/mem.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/multi_bench.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/redis/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/CONTRIBUTING.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/disabled.appveyor.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/lib/cookies.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/lib/copy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/lib/debug.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/lib/helpers.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/lib/optional.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/CONTRIBUTING.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/parse.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/stringify.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/utils.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/node_modules/qs/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/request/request.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/bin.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/changelog.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/common.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/glob.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/minimatch.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/rimraf/rimraf.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/bin/semver
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/foot.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/head.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/semver.browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/semver.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/semver.min.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/test/amd.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/test/gtr.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/test/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/test/ltr.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/semver/test/no-module.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/send/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/send/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/send/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/send/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/send/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/send/lib/send.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/send/lib/utils.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/send/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/examples/offset.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/examples/time.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/sntp/test/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/bin/builder.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-bind/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-bind/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-emitter/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-emitter/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json-fallback/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json-fallback/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/emitter.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/parser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/socket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transport.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/flashsocket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-jsonp.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-xhr.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/websocket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-socket.io-protocol/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-socket.io-protocol/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/timoxley-to-array/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/timoxley-to-array/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/debug.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/dist/WebSocketMain.swf
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/dist/WebSocketMainInsecure.swf
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/dist/socket.io.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/dist/socket.io.min.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/events.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/io.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/json.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/namespace.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/parser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/socket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transport.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/flashsocket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/htmlfile.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/jsonp-polling.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/websocket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/xhr-polling.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/xhr.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/IWebSocketLogger.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocket.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketEvent.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMain.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMainInsecure.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/build.sh
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/adobe/net/proxies/RFC2817Socket.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/gsolo/encryption/MD5.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/Crypto.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/MozillaRootCertificates.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509Certificate.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509CertificateCollection.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/HMAC.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHMAC.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHash.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MAC.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD2.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD5.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA1.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA224.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA256.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHABase.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/ARC4.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/IPRNG.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/Random.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/TLSPRF.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/rsa/RSAKey.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/AESKey.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/BlowFishKey.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CBCMode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFB8Mode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFBMode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CTRMode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/DESKey.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ECBMode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ICipher.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IMode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IPad.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IStreamCipher.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ISymmetricKey.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IVMode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/NullPad.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/OFBMode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/PKCS5.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SSLPad.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SimpleIVMode.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TLSPad.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TripleDESKey.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/XTeaKey.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/aeskey.pl
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/dump.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/AESKeyTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ARC4Test.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BigIntegerTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BlowFishKeyTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CBCModeTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFB8ModeTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFBModeTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CTRModeTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/DESKeyTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ECBModeTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/HMACTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ITestHarness.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD2Test.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD5Test.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/OFBModeTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/RSAKeyTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA1Test.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA224Test.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA256Test.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TLSPRFTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TestCase.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TripleDESKeyTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/XTeaKeyTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/BulkCiphers.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/CipherSuites.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/IConnectionState.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/ISecurityParameters.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/KeyExchanges.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/MACs.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLConnectionState.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLEvent.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLSecurityParameters.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConfig.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConnectionState.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEngine.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSError.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEvent.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSecurityParameters.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocket.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocketEvent.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSTest.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BarrettReduction.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BigInteger.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/ClassicReduction.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/IReduction.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/MontgomeryReduction.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/NullReduction.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/bi_internal.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/ArrayUtil.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Base64.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Hex.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ByteString.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/DER.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/IAsn1Type.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/OID.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ObjectIdentifier.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PEM.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PrintableString.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Sequence.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Set.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Type.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/UTCTime.as
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/sample.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/swfobject.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/web_socket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/test/events.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/test/io.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/test/node/builder.common.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/test/node/builder.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/test/parser.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/test/socket.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/test/util.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io-client/test/worker.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/Readme.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/decode.bench.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/encode.bench.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/runner.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/logger.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/manager.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/namespace.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/parser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/socket.io.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/socket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/static.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/store.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/stores/memory.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/stores/redis.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transport.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/flashsocket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/htmlfile.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/http-polling.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/http.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/jsonp-polling.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/default.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/hybi-07-12.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/hybi-16.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/xhr-polling.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/lib/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/socket.io/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/Makefile.dryice.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/assert-shim.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/mini-require.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/prefix-source-map.jsm
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/prefix-utils.jsm
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/suffix-browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/suffix-source-map.jsm
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/suffix-utils.jsm
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/test-prefix.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/build/test-suffix.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/array-set.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/base64-vlq.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/base64.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/binary-search.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/mapping-list.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-map-consumer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-map-generator.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-node.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/run-tests.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-api.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-array-set.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-base64-vlq.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-base64.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-binary-search.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-dog-fooding.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-source-map-consumer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-source-map-generator.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-source-node.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/test-util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/source-map/test/source-map/util.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/duplex.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_duplex.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_passthrough.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_readable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_transform.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_writable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/passthrough.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/readable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/transform.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/writable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/test/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stream-counter/test/test.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/string_decoder/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/string_decoder/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/string_decoder/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/string_decoder/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/string_decoder/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stringstream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stringstream/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stringstream/LICENSE.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stringstream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stringstream/example.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stringstream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/stringstream/stringstream.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/extract.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/headers.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/pack.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/extract.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/invalid.tgz
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/long-name.tar
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/multi-file.tar
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/name-is-100.tar
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/one-file.tar
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/space.tar
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/types.tar
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/unicode-bsd.tar
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/fixtures/unicode.tar
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tar-stream/test/pack.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/examples/grepcount.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/examples/pdfcreator.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/lib/temp.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/graceful-fs/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/graceful-fs/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/graceful-fs/graceful-fs.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/graceful-fs/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/AUTHORS
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/rimraf.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/temp/test/temp-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tinycolor/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tinycolor/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tinycolor/example.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tinycolor/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tinycolor/tinycolor.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/lib/cookie.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/lib/memstore.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/lib/pathMatch.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/lib/permuteDomain.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/lib/pubsuffix.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/lib/store.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tough-cookie/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tunnel-agent/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tunnel-agent/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tunnel-agent/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/tunnel-agent/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/type-check/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/type-check/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/type-check/lib/check.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/type-check/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/type-check/lib/parse-type.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/type-check/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/README.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/README.org
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/bin/uglifyjs
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/docstyle.css
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/lib/object-ast.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/lib/parse-js.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/lib/process.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/lib/squeeze-more.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/beautify.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/testparser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/array1.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/array2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/array3.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/array4.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/assignment.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/concatstring.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/const.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/forstatement.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/if.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue10.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue11.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue13.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue14.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue16.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue17.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue20.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue21.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue25.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue27.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue278.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue28.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue29.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue30.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue34.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue4.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue48.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue50.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue53.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue68.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue69.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/issue9.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/mangle.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/null_string.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/var.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/whitespace.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/expected/with.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/array1.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/array2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/array3.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/array4.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/assignment.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/concatstring.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/const.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/forstatement.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/if.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/ifreturn.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue10.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue11.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue13.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue14.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue16.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue17.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue20.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue21.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue25.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue27.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue278.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue28.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue29.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue30.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue34.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue4.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue48.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue50.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue53.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue54.1.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue68.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue69.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/issue9.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/mangle.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/null_string.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/strict-equals.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/var.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/whitespace.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/compress/test/with.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/test/unit/scripts.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/269.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/app.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/embed-tokens.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/goto.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/goto2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/hoist.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/instrument.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/instrument2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/liftvars.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/uglify-hangs.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/tmp/uglify-hangs2.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uglify-js/uglify-js.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uid2/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uid2/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/uid2/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/Gemfile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/Gemfile.lock
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/README.markdown
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/Rakefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/component.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/dist/underscore.string.min.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/lib/underscore.string.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/run-qunit.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/speed.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/strings.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/strings_standalone.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_standalone.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/arrays.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/chaining.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/collections.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/functions.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/index.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/objects.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/speed.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/utility.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/vendor/jquery.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/vendor/jslitmus.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/vendor/qunit.css
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/test_underscore/vendor/qunit.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/underscore.string/test/underscore.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/CREDITS
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/bin/testfiles.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/bin/update.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/features/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/lib/regexps.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/lib/update.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/static/user_agent.after.yaml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/test/features.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/test/fixtures/firefoxes.yaml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/test/fixtures/pgts.yaml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/test/fixtures/static.custom.yaml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/test/fixtures/testcases.yaml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/test/mocha.opts
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/test/parser.qa.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/useragent/test/parser.test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/CHANGELOG.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/lib/args.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/lib/base64.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/lib/file.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/lib/format.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/lib/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/AUTHORS
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/fiber.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/rimraf.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/test/run.sh
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/test/setup.sh
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/test/test-async.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/test/test-fiber.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/test/test-sync.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/file-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/fixtures/read-json-file/config.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/fixtures/require-directory/directory/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/fixtures/require-directory/helloWorld.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/format-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/function-args-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/helpers/macros.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/random-string-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/require-directory-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/utile/test/utile-test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/README.markdown
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/example/center.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/example/meat.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/test/break.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/test/idleness.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wordwrap/test/wrap.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wrappy/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wrappy/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wrappy/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/wrappy/wrappy.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/.travis.yml
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/History.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/bin/wscat
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/binding.gyp
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/BufferPool.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/BufferUtil.fallback.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/BufferUtil.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/ErrorCodes.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/Receiver.hixie.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/Receiver.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/Sender.hixie.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/Sender.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/Validation.fallback.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/Validation.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/WebSocket.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/WebSocketServer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/lib/browser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/src/bufferutil.cc
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/ws/src/validation.cc
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/autotest.watchr
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/example/demo.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/lib/XMLHttpRequest.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-constants.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-events.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-exceptions.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-headers.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-request-methods.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-request-protocols.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/testdata.txt
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/.jshintrc
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/LICENCE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/Makefile
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/immutable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/mutable.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/xtend/test.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/.npmignore
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/LICENSE
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/README
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/Tokenizer.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/ZeParser.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/benchmark.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/package.json
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/test-parser.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/test-tokenizer.html
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/tests.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zeparser/unicodecategories.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zip-stream/LICENSE-MIT
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zip-stream/README.md
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zip-stream/lib/headers.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zip-stream/lib/util/index.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zip-stream/lib/zip-stream.js
%%IDEA_HOME%%/plugins/spy-js/server/node_modules/zip-stream/package.json
%%IDEA_HOME%%/plugins/spy-js/server/proxy-nix.sh
%%IDEA_HOME%%/plugins/spy-js/server/proxy-osx.sh
%%IDEA_HOME%%/plugins/spy-js/server/spy.js
%%IDEA_HOME%%/plugins/spy-js/server/spyNode.js
%%IDEA_HOME%%/plugins/struts2/lib/ognl.jar
%%IDEA_HOME%%/plugins/struts2/lib/struts2-dom-api.jar
%%IDEA_HOME%%/plugins/struts2/lib/struts2-plugin.jar
%%IDEA_HOME%%/plugins/stylus/lib/resources_en.jar
%%IDEA_HOME%%/plugins/stylus/lib/stylus.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/antlr.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/jsch.agentproxy.svnkit-trilead-ssh2.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/ANTLR-LICENSE
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/CHANGES.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/COPYING
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-ANTLR.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-JAVAHL.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-JNA.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-SEQUENCE.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-SQLJET.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-TRILEAD.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/README.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/SEQUENCE-LICENSE
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/SQLJET-LICENSE
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/SQLJET-README.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/TRILEAD-LICENSE
%%IDEA_HOME%%/plugins/svn4idea/lib/licenses/changelog.txt
%%IDEA_HOME%%/plugins/svn4idea/lib/resources_en.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/sequence-library.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/sqljet.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/sqljetsrc.zip
%%IDEA_HOME%%/plugins/svn4idea/lib/svn4idea.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/svnkit-javahl.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/svnkit-javahl16.zip
%%IDEA_HOME%%/plugins/svn4idea/lib/svnkit.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/trilead.jar
%%IDEA_HOME%%/plugins/svn4idea/lib/trileadsrc.zip
%%IDEA_HOME%%/plugins/tasks-time-tracking/lib/tasks-time-tracking.jar
%%IDEA_HOME%%/plugins/tasks/lib/axis-1.4.jar
%%IDEA_HOME%%/plugins/tasks/lib/axis-jaxrpc-1.4.jar
%%IDEA_HOME%%/plugins/tasks/lib/axis-saaj-1.3.jar
%%IDEA_HOME%%/plugins/tasks/lib/commons-discovery-0.4.jar
%%IDEA_HOME%%/plugins/tasks/lib/jira.jar
%%IDEA_HOME%%/plugins/tasks/lib/json-path-0.8.0.jar
%%IDEA_HOME%%/plugins/tasks/lib/json-smart-1.1.1.jar
%%IDEA_HOME%%/plugins/tasks/lib/tasks-api.jar
%%IDEA_HOME%%/plugins/tasks/lib/tasks-core.jar
%%IDEA_HOME%%/plugins/tasks/lib/tasks-java.jar
%%IDEA_HOME%%/plugins/tasks/lib/wsdl4j-1.4.jar
%%IDEA_HOME%%/plugins/terminal/lib/jediterm-pty-2.2.jar
%%IDEA_HOME%%/plugins/terminal/lib/jediterm.in
%%IDEA_HOME%%/plugins/terminal/lib/resources_en.jar
%%IDEA_HOME%%/plugins/terminal/lib/terminal.jar
%%IDEA_HOME%%/plugins/testng/lib/jcommander.jar
%%IDEA_HOME%%/plugins/testng/lib/resources_en.jar
%%IDEA_HOME%%/plugins/testng/lib/testng-plugin.jar
%%IDEA_HOME%%/plugins/testng/lib/testng.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/XmlSchema-1.4.3.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/activation-1.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/axiom-api-1.2.8.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/axiom-dom-1.2.8.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/axiom-impl-1.2.8.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/axis2-adb-1.5.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/axis2-kernel-1.5.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/axis2-transport-http-1.5.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/axis2-transport-local-1.5.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/backport-util-concurrent-3.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/com.microsoft.tfs.sdk-14.0.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/com.microsoft.tfs.sdk-14.0.1_license.html
%%IDEA_HOME%%/plugins/tfsIntegration/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/httpcore-4.0.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/jcifs-1.3.1.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/mail-1.4.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86/libnative_auth.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86/libnative_console.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86/libnative_filesystem.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86/libnative_misc.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86/libnative_synchronization.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86_64/libnative_auth.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86_64/libnative_console.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86_64/libnative_filesystem.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86_64/libnative_misc.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/native/freebsd/x86_64/libnative_synchronization.so
%%IDEA_HOME%%/plugins/tfsIntegration/lib/neethi-2.0.4.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/resources_en.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/stubs.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/tfsIntegration.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/wsdl4j-1.6.2.jar
%%IDEA_HOME%%/plugins/tfsIntegration/lib/wstx-asl-3.2.4.jar
%%IDEA_HOME%%/plugins/thymeleaf/lib/resources_en.jar
%%IDEA_HOME%%/plugins/thymeleaf/lib/thymeleaf-support.jar
%%IDEA_HOME%%/plugins/uiDesigner/lib/jps/ui-designer-jps-plugin.jar
%%IDEA_HOME%%/plugins/uiDesigner/lib/resources_en.jar
%%IDEA_HOME%%/plugins/uiDesigner/lib/uiDesigner.jar
%%IDEA_HOME%%/plugins/uml/lib/diagram-api.jar
%%IDEA_HOME%%/plugins/uml/lib/uml-support.jar
%%IDEA_HOME%%/plugins/vaadin/lib/resources_en.jar
%%IDEA_HOME%%/plugins/vaadin/lib/rt/vaadin-jetty-launcher.jar
%%IDEA_HOME%%/plugins/vaadin/lib/vaadin.jar
%%IDEA_HOME%%/plugins/w3validators/lib/jigsaw-2.2.6.jar
%%IDEA_HOME%%/plugins/w3validators/lib/resources_en.jar
%%IDEA_HOME%%/plugins/w3validators/lib/tagsoup-1.2.jar
%%IDEA_HOME%%/plugins/w3validators/lib/w3-css-validator.jar
%%IDEA_HOME%%/plugins/w3validators/lib/w3validators.jar
%%IDEA_HOME%%/plugins/webDeployment/lib/commons-vfs2-2.1-SNAPSHOT.jar
%%IDEA_HOME%%/plugins/webDeployment/lib/resources_en.jar
%%IDEA_HOME%%/plugins/webDeployment/lib/webDeployment.jar
%%IDEA_HOME%%/plugins/webSphereIntegration/lib/specifics/webSphereClientImpl.jar
%%IDEA_HOME%%/plugins/webSphereIntegration/lib/webSphereIntegration.jar
%%IDEA_HOME%%/plugins/weblogicIntegration/lib/jps/weblogic-jps-plugin.jar
%%IDEA_HOME%%/plugins/weblogicIntegration/lib/resources_en.jar
%%IDEA_HOME%%/plugins/weblogicIntegration/lib/specifics/weblogicSpecifics.jar
%%IDEA_HOME%%/plugins/weblogicIntegration/lib/weblogicIntegration.jar
%%IDEA_HOME%%/plugins/xpath/lib/resources_en.jar
%%IDEA_HOME%%/plugins/xpath/lib/rt/xslt-rt.jar
%%IDEA_HOME%%/plugins/xpath/lib/xpath.jar
%%IDEA_HOME%%/plugins/xslt-debugger/lib/rmi-stubs.jar
%%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/saxon.jar
%%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/saxon9he.jar
%%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/serializer.jar
%%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/xalan.jar
%%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/xslt-debugger-engine-impl.jar
%%IDEA_HOME%%/plugins/xslt-debugger/lib/xslt-debugger-engine.jar
%%IDEA_HOME%%/plugins/xslt-debugger/lib/xslt-debugger.jar
%%IDEA_HOME%%/plugins/yaml/lib/resources_en.jar
%%IDEA_HOME%%/plugins/yaml/lib/yaml.jar
%%IDEA_HOME%%/plugins/zkm/lib/resources_en.jar
%%IDEA_HOME%%/plugins/zkm/lib/zkm.jar
%%IDEA_HOME%%/redist/annotations-java8.jar
%%IDEA_HOME%%/redist/annotations.jar
%%IDEA_HOME%%/redist/forms_rt.jar
%%IDEA_HOME%%/redist/javac2.jar
%%IDEA_HOME%%/redist/readme.txt
%%IDEA_HOME%%/redist/src/src_annotations.zip
%%IDEA_HOME%%/redist/src/src_annotations_java8.zip
%%IDEA_HOME%%/redist/src/src_forms_rt.zip
%%IDEA_HOME%%/redist/src/src_javac2.zip
man/man1/idea.1.gz
share/applications/idea.desktop