he wei
2022-11-17 cd327dcbaca3476df44b064e56b950dc054cbb87
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
; Script generated by the HM NIS Edit Script Wizard.
 
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "resXmlParser"
!define PRODUCT_VERSION "0.1.1"
!define PRODUCT_PUBLISHER "whyc"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\elevate.exe"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
 
; MUI 1.67 compatible ------
!include "MUI.nsh"
 
; MUI Settings
!define MUI_ABORTWARNING
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\res-icon.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
!define MUI_WELCOMEFINISHPAGE_BITMAP "bar.bmp"
 
; Language Selection Dialog Settings
!define MUI_LANGDLL_REGISTRY_ROOT "${PRODUCT_UNINST_ROOT_KEY}"
!define MUI_LANGDLL_REGISTRY_KEY "${PRODUCT_UNINST_KEY}"
!define MUI_LANGDLL_REGISTRY_VALUENAME "NSIS:Language"
 
; Welcome page
!insertmacro MUI_PAGE_WELCOME
; License page
!insertmacro MUI_PAGE_LICENSE "dependent\licence.txt"
; Directory page
!insertmacro MUI_PAGE_DIRECTORY
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
!insertmacro MUI_PAGE_FINISH
 
; Uninstaller pages
!insertmacro MUI_UNPAGE_INSTFILES
 
; Language files
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "SimpChinese"
 
; MUI end ------
 
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "${PRODUCT_NAME}-${PRODUCT_VERSION}-Setup.exe"
InstallDir "$PROGRAMFILES\resXmlParser"
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
ShowUnInstDetails show
BrandingText "¸£¹â - Î人Դ³©"
 
Function .onInit
  !insertmacro MUI_LANGDLL_DISPLAY
FunctionEnd
 
Function .onInstSuccess
nsExec::Exec "$INSTDIR\remove_srv.bat"
ExecWait $INSTDIR\install.bat
Exec $INSTDIR\${PRODUCT_NAME}.exe
FunctionEnd
 
Section "MainSection" SEC01
  SetOutPath "$INSTDIR"
  File "dist_electron\win-unpacked\chrome_100_percent.pak"
  File "dist_electron\win-unpacked\chrome_200_percent.pak"
  File "dist_electron\win-unpacked\d3dcompiler_47.dll"
  File "dist_electron\win-unpacked\ffmpeg.dll"
  File "dist_electron\win-unpacked\icudtl.dat"
  File "dist_electron\win-unpacked\libEGL.dll"
  File "dist_electron\win-unpacked\libGLESv2.dll"
  File "dist_electron\win-unpacked\LICENSE.electron.txt"
  File "dist_electron\win-unpacked\LICENSES.chromium.html"
  SetOutPath "$INSTDIR\locales"
  File "dist_electron\win-unpacked\locales\am.pak"
  File "dist_electron\win-unpacked\locales\ar.pak"
  File "dist_electron\win-unpacked\locales\bg.pak"
  File "dist_electron\win-unpacked\locales\bn.pak"
  File "dist_electron\win-unpacked\locales\ca.pak"
  File "dist_electron\win-unpacked\locales\cs.pak"
  File "dist_electron\win-unpacked\locales\da.pak"
  File "dist_electron\win-unpacked\locales\de.pak"
  File "dist_electron\win-unpacked\locales\el.pak"
  File "dist_electron\win-unpacked\locales\en-GB.pak"
  File "dist_electron\win-unpacked\locales\en-US.pak"
  File "dist_electron\win-unpacked\locales\es-419.pak"
  File "dist_electron\win-unpacked\locales\es.pak"
  File "dist_electron\win-unpacked\locales\et.pak"
  File "dist_electron\win-unpacked\locales\fa.pak"
  File "dist_electron\win-unpacked\locales\fi.pak"
  File "dist_electron\win-unpacked\locales\fil.pak"
  File "dist_electron\win-unpacked\locales\fr.pak"
  File "dist_electron\win-unpacked\locales\gu.pak"
  File "dist_electron\win-unpacked\locales\he.pak"
  File "dist_electron\win-unpacked\locales\hi.pak"
  File "dist_electron\win-unpacked\locales\hr.pak"
  File "dist_electron\win-unpacked\locales\hu.pak"
  File "dist_electron\win-unpacked\locales\id.pak"
  File "dist_electron\win-unpacked\locales\it.pak"
  File "dist_electron\win-unpacked\locales\ja.pak"
  File "dist_electron\win-unpacked\locales\kn.pak"
  File "dist_electron\win-unpacked\locales\ko.pak"
  File "dist_electron\win-unpacked\locales\lt.pak"
  File "dist_electron\win-unpacked\locales\lv.pak"
  File "dist_electron\win-unpacked\locales\ml.pak"
  File "dist_electron\win-unpacked\locales\mr.pak"
  File "dist_electron\win-unpacked\locales\ms.pak"
  File "dist_electron\win-unpacked\locales\nb.pak"
  File "dist_electron\win-unpacked\locales\nl.pak"
  File "dist_electron\win-unpacked\locales\pl.pak"
  File "dist_electron\win-unpacked\locales\pt-BR.pak"
  File "dist_electron\win-unpacked\locales\pt-PT.pak"
  File "dist_electron\win-unpacked\locales\ro.pak"
  File "dist_electron\win-unpacked\locales\ru.pak"
  File "dist_electron\win-unpacked\locales\sk.pak"
  File "dist_electron\win-unpacked\locales\sl.pak"
  File "dist_electron\win-unpacked\locales\sr.pak"
  File "dist_electron\win-unpacked\locales\sv.pak"
  File "dist_electron\win-unpacked\locales\sw.pak"
  File "dist_electron\win-unpacked\locales\ta.pak"
  File "dist_electron\win-unpacked\locales\te.pak"
  File "dist_electron\win-unpacked\locales\th.pak"
  File "dist_electron\win-unpacked\locales\tr.pak"
  File "dist_electron\win-unpacked\locales\uk.pak"
  File "dist_electron\win-unpacked\locales\vi.pak"
  File "dist_electron\win-unpacked\locales\zh-CN.pak"
  File "dist_electron\win-unpacked\locales\zh-TW.pak"
  SetOutPath "$INSTDIR\resources"
  File "dist_electron\win-unpacked\resources\app-update.yml"
  File "dist_electron\win-unpacked\resources\app.asar"
  File "dist_electron\win-unpacked\resources\elevate.exe"
  SetOutPath "$INSTDIR"
  File "dist_electron\win-unpacked\resources.pak"
  File "dist_electron\win-unpacked\resXmlParser.exe"
  CreateDirectory "$SMPROGRAMS\resXmlParser"
  CreateShortCut "$SMPROGRAMS\resXmlParser\resXmlParser.lnk" "$INSTDIR\resXmlParser.exe"
  CreateShortCut "$DESKTOP\resXmlParser.lnk" "$INSTDIR\resXmlParser.exe"
  File "dist_electron\win-unpacked\snapshot_blob.bin"
  SetOutPath "$INSTDIR\swiftshader"
  File "dist_electron\win-unpacked\swiftshader\libEGL.dll"
  File "dist_electron\win-unpacked\swiftshader\libGLESv2.dll"
  SetOutPath "$INSTDIR"
  File "dist_electron\win-unpacked\v8_context_snapshot.bin"
  File "dist_electron\win-unpacked\vk_swiftshader.dll"
  File "dist_electron\win-unpacked\vk_swiftshader_icd.json"
  File "dist_electron\win-unpacked\vulkan-1.dll"
  File "dependent\install.bat"
  File "dependent\instsrv.exe"
  File "dependent\licence.txt"
  File "dependent\remove_srv.bat"
  File "dependent\res.db"
  File "dependent\ResMeterManager.exe"
  File "dependent\ResMeterManager.jar"
  SetOutPath "$INSTDIR\runtime\bin"
  File "dependent\runtime\bin\api-ms-win-core-console-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-datetime-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-debug-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-errorhandling-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-file-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-file-l1-2-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-file-l2-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-handle-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-heap-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-interlocked-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-libraryloader-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-localization-l1-2-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-memory-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-namedpipe-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-processenvironment-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-processthreads-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-processthreads-l1-1-1.dll"
  File "dependent\runtime\bin\api-ms-win-core-profile-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-rtlsupport-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-string-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-synch-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-synch-l1-2-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-sysinfo-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-timezone-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-util-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-conio-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-convert-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-environment-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-filesystem-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-heap-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-locale-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-math-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-multibyte-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-private-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-process-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-runtime-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-stdio-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-string-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-time-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-utility-l1-1-0.dll"
  File "dependent\runtime\bin\appletviewer.exe"
  File "dependent\runtime\bin\attach.dll"
  File "dependent\runtime\bin\awt.dll"
  File "dependent\runtime\bin\bci.dll"
  File "dependent\runtime\bin\concrt140.dll"
  File "dependent\runtime\bin\dcpr.dll"
  File "dependent\runtime\bin\decora_sse.dll"
  File "dependent\runtime\bin\deploy.dll"
  SetOutPath "$INSTDIR\runtime\bin\dtplugin"
  File "dependent\runtime\bin\dtplugin\deployJava1.dll"
  File "dependent\runtime\bin\dtplugin\npdeployJava1.dll"
  SetOutPath "$INSTDIR\runtime\bin"
  File "dependent\runtime\bin\dt_shmem.dll"
  File "dependent\runtime\bin\dt_socket.dll"
  File "dependent\runtime\bin\eula.dll"
  File "dependent\runtime\bin\extcheck.exe"
  File "dependent\runtime\bin\fontmanager.dll"
  File "dependent\runtime\bin\fxplugins.dll"
  File "dependent\runtime\bin\glass.dll"
  File "dependent\runtime\bin\glib-lite.dll"
  File "dependent\runtime\bin\gstreamer-lite.dll"
  File "dependent\runtime\bin\hprof.dll"
  File "dependent\runtime\bin\idlj.exe"
  File "dependent\runtime\bin\instrument.dll"
  File "dependent\runtime\bin\j2pcsc.dll"
  File "dependent\runtime\bin\j2pkcs11.dll"
  File "dependent\runtime\bin\jaas_nt.dll"
  File "dependent\runtime\bin\jabswitch.exe"
  File "dependent\runtime\bin\jar.exe"
  File "dependent\runtime\bin\jarsigner.exe"
  File "dependent\runtime\bin\java-rmi.exe"
  File "dependent\runtime\bin\java.dll"
  File "dependent\runtime\bin\java.exe"
  File "dependent\runtime\bin\JavaAccessBridge-64.dll"
  File "dependent\runtime\bin\javac.exe"
  File "dependent\runtime\bin\javacpl.cpl"
  File "dependent\runtime\bin\javacpl.exe"
  File "dependent\runtime\bin\javadoc.exe"
  File "dependent\runtime\bin\javafxpackager.exe"
  File "dependent\runtime\bin\javafx_font.dll"
  File "dependent\runtime\bin\javafx_font_t2k.dll"
  File "dependent\runtime\bin\javafx_iio.dll"
  File "dependent\runtime\bin\javah.exe"
  File "dependent\runtime\bin\javap.exe"
  File "dependent\runtime\bin\javapackager.exe"
  File "dependent\runtime\bin\javaw.exe"
  File "dependent\runtime\bin\javaws.exe"
  File "dependent\runtime\bin\java_crw_demo.dll"
  File "dependent\runtime\bin\jawt.dll"
  File "dependent\runtime\bin\JAWTAccessBridge-64.dll"
  File "dependent\runtime\bin\jcmd.exe"
  File "dependent\runtime\bin\jconsole.exe"
  File "dependent\runtime\bin\jdb.exe"
  File "dependent\runtime\bin\jdeps.exe"
  File "dependent\runtime\bin\jdwp.dll"
  File "dependent\runtime\bin\jfr.dll"
  File "dependent\runtime\bin\jfxmedia.dll"
  File "dependent\runtime\bin\jfxwebkit.dll"
  File "dependent\runtime\bin\jhat.exe"
  File "dependent\runtime\bin\jinfo.exe"
  File "dependent\runtime\bin\jjs.exe"
  File "dependent\runtime\bin\jli.dll"
  File "dependent\runtime\bin\jmap.exe"
  File "dependent\runtime\bin\jmc.exe"
  File "dependent\runtime\bin\jmc.ini"
  File "dependent\runtime\bin\jp2iexp.dll"
  File "dependent\runtime\bin\jp2launcher.exe"
  File "dependent\runtime\bin\jp2native.dll"
  File "dependent\runtime\bin\jp2ssv.dll"
  File "dependent\runtime\bin\jpeg.dll"
  File "dependent\runtime\bin\jps.exe"
  File "dependent\runtime\bin\jrunscript.exe"
  File "dependent\runtime\bin\jsadebugd.exe"
  File "dependent\runtime\bin\jsdt.dll"
  File "dependent\runtime\bin\jsound.dll"
  File "dependent\runtime\bin\jsoundds.dll"
  File "dependent\runtime\bin\jstack.exe"
  File "dependent\runtime\bin\jstat.exe"
  File "dependent\runtime\bin\jstatd.exe"
  File "dependent\runtime\bin\jvisualvm.exe"
  File "dependent\runtime\bin\keytool.exe"
  File "dependent\runtime\bin\kinit.exe"
  File "dependent\runtime\bin\klist.exe"
  File "dependent\runtime\bin\ktab.exe"
  File "dependent\runtime\bin\lcms.dll"
  File "dependent\runtime\bin\management.dll"
  File "dependent\runtime\bin\mlib_image.dll"
  File "dependent\runtime\bin\msvcp140.dll"
  File "dependent\runtime\bin\msvcr100.dll"
  File "dependent\runtime\bin\native2ascii.exe"
  File "dependent\runtime\bin\net.dll"
  File "dependent\runtime\bin\nio.dll"
  File "dependent\runtime\bin\npt.dll"
  File "dependent\runtime\bin\orbd.exe"
  File "dependent\runtime\bin\pack200.exe"
  SetOutPath "$INSTDIR\runtime\bin\plugin2"
  File "dependent\runtime\bin\plugin2\msvcr100.dll"
  File "dependent\runtime\bin\plugin2\npjp2.dll"
  SetOutPath "$INSTDIR\runtime\bin"
  File "dependent\runtime\bin\policytool.exe"
  File "dependent\runtime\bin\prism_common.dll"
  File "dependent\runtime\bin\prism_d3d.dll"
  File "dependent\runtime\bin\prism_sw.dll"
  File "dependent\runtime\bin\resource.dll"
  File "dependent\runtime\bin\rmic.exe"
  File "dependent\runtime\bin\rmid.exe"
  File "dependent\runtime\bin\rmiregistry.exe"
  File "dependent\runtime\bin\sawindbg.dll"
  File "dependent\runtime\bin\schemagen.exe"
  File "dependent\runtime\bin\serialver.exe"
  SetOutPath "$INSTDIR\runtime\bin\server"
  File "dependent\runtime\bin\server\classes.jsa"
  File "dependent\runtime\bin\server\jvm.dll"
  File "dependent\runtime\bin\server\Xusage.txt"
  SetOutPath "$INSTDIR\runtime\bin"
  File "dependent\runtime\bin\servertool.exe"
  File "dependent\runtime\bin\splashscreen.dll"
  File "dependent\runtime\bin\ssv.dll"
  File "dependent\runtime\bin\ssvagent.exe"
  File "dependent\runtime\bin\sunec.dll"
  File "dependent\runtime\bin\sunmscapi.dll"
  File "dependent\runtime\bin\t2k.dll"
  File "dependent\runtime\bin\tnameserv.exe"
  File "dependent\runtime\bin\ucrtbase.dll"
  File "dependent\runtime\bin\unpack.dll"
  File "dependent\runtime\bin\unpack200.exe"
  File "dependent\runtime\bin\vcruntime140.dll"
  File "dependent\runtime\bin\verify.dll"
  File "dependent\runtime\bin\w2k_lsa_auth.dll"
  File "dependent\runtime\bin\WindowsAccessBridge-64.dll"
  File "dependent\runtime\bin\wsdetect.dll"
  File "dependent\runtime\bin\wsgen.exe"
  File "dependent\runtime\bin\wsimport.exe"
  File "dependent\runtime\bin\xjc.exe"
  File "dependent\runtime\bin\zip.dll"
  SetOutPath "$INSTDIR\runtime"
  File "dependent\runtime\COPYRIGHT"
  SetOutPath "$INSTDIR\runtime\include"
  File "dependent\runtime\include\classfile_constants.h"
  File "dependent\runtime\include\jawt.h"
  File "dependent\runtime\include\jdwpTransport.h"
  File "dependent\runtime\include\jni.h"
  File "dependent\runtime\include\jvmti.h"
  File "dependent\runtime\include\jvmticmlr.h"
  SetOutPath "$INSTDIR\runtime\include\win32\bridge"
  File "dependent\runtime\include\win32\bridge\AccessBridgeCallbacks.h"
  File "dependent\runtime\include\win32\bridge\AccessBridgeCalls.c"
  File "dependent\runtime\include\win32\bridge\AccessBridgeCalls.h"
  File "dependent\runtime\include\win32\bridge\AccessBridgePackages.h"
  SetOutPath "$INSTDIR\runtime\include\win32"
  File "dependent\runtime\include\win32\jawt_md.h"
  File "dependent\runtime\include\win32\jni_md.h"
  SetOutPath "$INSTDIR\runtime"
  File "dependent\runtime\javafx-src.zip"
  SetOutPath "$INSTDIR\runtime\jre\bin"
  File "dependent\runtime\jre\bin\api-ms-win-core-console-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-datetime-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-debug-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-errorhandling-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-file-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-file-l1-2-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-file-l2-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-handle-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-heap-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-interlocked-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-libraryloader-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-localization-l1-2-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-memory-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-namedpipe-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-processenvironment-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-processthreads-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-processthreads-l1-1-1.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-profile-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-rtlsupport-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-string-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-synch-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-synch-l1-2-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-sysinfo-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-timezone-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-core-util-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-conio-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-convert-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-environment-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-filesystem-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-heap-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-locale-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-math-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-multibyte-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-private-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-process-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-runtime-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-stdio-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-string-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-time-l1-1-0.dll"
  File "dependent\runtime\jre\bin\api-ms-win-crt-utility-l1-1-0.dll"
  File "dependent\runtime\jre\bin\attach.dll"
  File "dependent\runtime\jre\bin\awt.dll"
  File "dependent\runtime\jre\bin\bci.dll"
  File "dependent\runtime\jre\bin\concrt140.dll"
  File "dependent\runtime\jre\bin\dcpr.dll"
  File "dependent\runtime\jre\bin\decora_sse.dll"
  File "dependent\runtime\jre\bin\deploy.dll"
  SetOutPath "$INSTDIR\runtime\jre\bin\dtplugin"
  File "dependent\runtime\jre\bin\dtplugin\deployJava1.dll"
  File "dependent\runtime\jre\bin\dtplugin\npdeployJava1.dll"
  SetOutPath "$INSTDIR\runtime\jre\bin"
  File "dependent\runtime\jre\bin\dt_shmem.dll"
  File "dependent\runtime\jre\bin\dt_socket.dll"
  File "dependent\runtime\jre\bin\eula.dll"
  File "dependent\runtime\jre\bin\fontmanager.dll"
  File "dependent\runtime\jre\bin\fxplugins.dll"
  File "dependent\runtime\jre\bin\glass.dll"
  File "dependent\runtime\jre\bin\glib-lite.dll"
  File "dependent\runtime\jre\bin\gstreamer-lite.dll"
  File "dependent\runtime\jre\bin\hprof.dll"
  File "dependent\runtime\jre\bin\instrument.dll"
  File "dependent\runtime\jre\bin\j2pcsc.dll"
  File "dependent\runtime\jre\bin\j2pkcs11.dll"
  File "dependent\runtime\jre\bin\jaas_nt.dll"
  File "dependent\runtime\jre\bin\jabswitch.exe"
  File "dependent\runtime\jre\bin\java-rmi.exe"
  File "dependent\runtime\jre\bin\java.dll"
  File "dependent\runtime\jre\bin\java.exe"
  File "dependent\runtime\jre\bin\JavaAccessBridge-64.dll"
  File "dependent\runtime\jre\bin\javacpl.cpl"
  File "dependent\runtime\jre\bin\javacpl.exe"
  File "dependent\runtime\jre\bin\javafx_font.dll"
  File "dependent\runtime\jre\bin\javafx_font_t2k.dll"
  File "dependent\runtime\jre\bin\javafx_iio.dll"
  File "dependent\runtime\jre\bin\javaw.exe"
  File "dependent\runtime\jre\bin\javaws.exe"
  File "dependent\runtime\jre\bin\java_crw_demo.dll"
  File "dependent\runtime\jre\bin\jawt.dll"
  File "dependent\runtime\jre\bin\JAWTAccessBridge-64.dll"
  File "dependent\runtime\jre\bin\jdwp.dll"
  File "dependent\runtime\jre\bin\jfr.dll"
  File "dependent\runtime\jre\bin\jfxmedia.dll"
  File "dependent\runtime\jre\bin\jfxwebkit.dll"
  File "dependent\runtime\jre\bin\jjs.exe"
  File "dependent\runtime\jre\bin\jli.dll"
  File "dependent\runtime\jre\bin\jp2iexp.dll"
  File "dependent\runtime\jre\bin\jp2launcher.exe"
  File "dependent\runtime\jre\bin\jp2native.dll"
  File "dependent\runtime\jre\bin\jp2ssv.dll"
  File "dependent\runtime\jre\bin\jpeg.dll"
  File "dependent\runtime\jre\bin\jsdt.dll"
  File "dependent\runtime\jre\bin\jsound.dll"
  File "dependent\runtime\jre\bin\jsoundds.dll"
  File "dependent\runtime\jre\bin\keytool.exe"
  File "dependent\runtime\jre\bin\kinit.exe"
  File "dependent\runtime\jre\bin\klist.exe"
  File "dependent\runtime\jre\bin\ktab.exe"
  File "dependent\runtime\jre\bin\lcms.dll"
  File "dependent\runtime\jre\bin\management.dll"
  File "dependent\runtime\jre\bin\mlib_image.dll"
  File "dependent\runtime\jre\bin\msvcp140.dll"
  File "dependent\runtime\jre\bin\msvcr100.dll"
  File "dependent\runtime\jre\bin\net.dll"
  File "dependent\runtime\jre\bin\nio.dll"
  File "dependent\runtime\jre\bin\npt.dll"
  File "dependent\runtime\jre\bin\orbd.exe"
  File "dependent\runtime\jre\bin\pack200.exe"
  SetOutPath "$INSTDIR\runtime\jre\bin\plugin2"
  File "dependent\runtime\jre\bin\plugin2\msvcr100.dll"
  File "dependent\runtime\jre\bin\plugin2\npjp2.dll"
  SetOutPath "$INSTDIR\runtime\jre\bin"
  File "dependent\runtime\jre\bin\policytool.exe"
  File "dependent\runtime\jre\bin\prism_common.dll"
  File "dependent\runtime\jre\bin\prism_d3d.dll"
  File "dependent\runtime\jre\bin\prism_sw.dll"
  File "dependent\runtime\jre\bin\resource.dll"
  File "dependent\runtime\jre\bin\rmid.exe"
  File "dependent\runtime\jre\bin\rmiregistry.exe"
  File "dependent\runtime\jre\bin\sawindbg.dll"
  SetOutPath "$INSTDIR\runtime\jre\bin\server"
  File "dependent\runtime\jre\bin\server\classes.jsa"
  File "dependent\runtime\jre\bin\server\jvm.dll"
  File "dependent\runtime\jre\bin\server\Xusage.txt"
  SetOutPath "$INSTDIR\runtime\jre\bin"
  File "dependent\runtime\jre\bin\servertool.exe"
  File "dependent\runtime\jre\bin\splashscreen.dll"
  File "dependent\runtime\jre\bin\ssv.dll"
  File "dependent\runtime\jre\bin\ssvagent.exe"
  File "dependent\runtime\jre\bin\sunec.dll"
  File "dependent\runtime\jre\bin\sunmscapi.dll"
  File "dependent\runtime\jre\bin\t2k.dll"
  File "dependent\runtime\jre\bin\tnameserv.exe"
  File "dependent\runtime\jre\bin\ucrtbase.dll"
  File "dependent\runtime\jre\bin\unpack.dll"
  File "dependent\runtime\jre\bin\unpack200.exe"
  File "dependent\runtime\jre\bin\vcruntime140.dll"
  File "dependent\runtime\jre\bin\verify.dll"
  File "dependent\runtime\jre\bin\w2k_lsa_auth.dll"
  File "dependent\runtime\jre\bin\WindowsAccessBridge-64.dll"
  File "dependent\runtime\jre\bin\wsdetect.dll"
  File "dependent\runtime\jre\bin\zip.dll"
  SetOutPath "$INSTDIR\runtime\jre"
  File "dependent\runtime\jre\COPYRIGHT"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\accessibility.properties"
  SetOutPath "$INSTDIR\runtime\jre\lib\amd64"
  File "dependent\runtime\jre\lib\amd64\jvm.cfg"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\calendars.properties"
  File "dependent\runtime\jre\lib\charsets.jar"
  File "dependent\runtime\jre\lib\classlist"
  SetOutPath "$INSTDIR\runtime\jre\lib\cmm"
  File "dependent\runtime\jre\lib\cmm\CIEXYZ.pf"
  File "dependent\runtime\jre\lib\cmm\GRAY.pf"
  File "dependent\runtime\jre\lib\cmm\LINEAR_RGB.pf"
  File "dependent\runtime\jre\lib\cmm\PYCC.pf"
  File "dependent\runtime\jre\lib\cmm\sRGB.pf"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\content-types.properties"
  File "dependent\runtime\jre\lib\currency.data"
  SetOutPath "$INSTDIR\runtime\jre\lib\deploy"
  File "dependent\runtime\jre\lib\deploy\ffjcext.zip"
  File "dependent\runtime\jre\lib\deploy\messages.properties"
  File "dependent\runtime\jre\lib\deploy\messages_de.properties"
  File "dependent\runtime\jre\lib\deploy\messages_es.properties"
  File "dependent\runtime\jre\lib\deploy\messages_fr.properties"
  File "dependent\runtime\jre\lib\deploy\messages_it.properties"
  File "dependent\runtime\jre\lib\deploy\messages_ja.properties"
  File "dependent\runtime\jre\lib\deploy\messages_ko.properties"
  File "dependent\runtime\jre\lib\deploy\messages_pt_BR.properties"
  File "dependent\runtime\jre\lib\deploy\messages_sv.properties"
  File "dependent\runtime\jre\lib\deploy\messages_zh_CN.properties"
  File "dependent\runtime\jre\lib\deploy\messages_zh_HK.properties"
  File "dependent\runtime\jre\lib\deploy\messages_zh_TW.properties"
  File "dependent\runtime\jre\lib\deploy\splash.gif"
  File "dependent\runtime\jre\lib\deploy\splash@2x.gif"
  File "dependent\runtime\jre\lib\deploy\splash_11-lic.gif"
  File "dependent\runtime\jre\lib\deploy\splash_11@2x-lic.gif"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\deploy.jar"
  SetOutPath "$INSTDIR\runtime\jre\lib\ext"
  File "dependent\runtime\jre\lib\ext\access-bridge-64.jar"
  File "dependent\runtime\jre\lib\ext\cldrdata.jar"
  File "dependent\runtime\jre\lib\ext\dnsns.jar"
  File "dependent\runtime\jre\lib\ext\jaccess.jar"
  File "dependent\runtime\jre\lib\ext\jfxrt.jar"
  File "dependent\runtime\jre\lib\ext\localedata.jar"
  File "dependent\runtime\jre\lib\ext\meta-index"
  File "dependent\runtime\jre\lib\ext\nashorn.jar"
  File "dependent\runtime\jre\lib\ext\sunec.jar"
  File "dependent\runtime\jre\lib\ext\sunjce_provider.jar"
  File "dependent\runtime\jre\lib\ext\sunmscapi.jar"
  File "dependent\runtime\jre\lib\ext\sunpkcs11.jar"
  File "dependent\runtime\jre\lib\ext\zipfs.jar"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\flavormap.properties"
  File "dependent\runtime\jre\lib\fontconfig.bfc"
  File "dependent\runtime\jre\lib\fontconfig.properties.src"
  SetOutPath "$INSTDIR\runtime\jre\lib\fonts"
  File "dependent\runtime\jre\lib\fonts\LucidaBrightDemiBold.ttf"
  File "dependent\runtime\jre\lib\fonts\LucidaBrightDemiItalic.ttf"
  File "dependent\runtime\jre\lib\fonts\LucidaBrightItalic.ttf"
  File "dependent\runtime\jre\lib\fonts\LucidaBrightRegular.ttf"
  File "dependent\runtime\jre\lib\fonts\LucidaSansDemiBold.ttf"
  File "dependent\runtime\jre\lib\fonts\LucidaSansRegular.ttf"
  File "dependent\runtime\jre\lib\fonts\LucidaTypewriterBold.ttf"
  File "dependent\runtime\jre\lib\fonts\LucidaTypewriterRegular.ttf"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\hijrah-config-umalqura.properties"
  SetOutPath "$INSTDIR\runtime\jre\lib\images\cursors"
  File "dependent\runtime\jre\lib\images\cursors\cursors.properties"
  File "dependent\runtime\jre\lib\images\cursors\invalid32x32.gif"
  File "dependent\runtime\jre\lib\images\cursors\win32_CopyDrop32x32.gif"
  File "dependent\runtime\jre\lib\images\cursors\win32_CopyNoDrop32x32.gif"
  File "dependent\runtime\jre\lib\images\cursors\win32_LinkDrop32x32.gif"
  File "dependent\runtime\jre\lib\images\cursors\win32_LinkNoDrop32x32.gif"
  File "dependent\runtime\jre\lib\images\cursors\win32_MoveDrop32x32.gif"
  File "dependent\runtime\jre\lib\images\cursors\win32_MoveNoDrop32x32.gif"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\javafx.properties"
  File "dependent\runtime\jre\lib\javaws.jar"
  File "dependent\runtime\jre\lib\jce.jar"
  SetOutPath "$INSTDIR\runtime\jre\lib\jfr"
  File "dependent\runtime\jre\lib\jfr\default.jfc"
  File "dependent\runtime\jre\lib\jfr\profile.jfc"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\jfr.jar"
  File "dependent\runtime\jre\lib\jfxswt.jar"
  File "dependent\runtime\jre\lib\jsse.jar"
  File "dependent\runtime\jre\lib\jvm.hprof.txt"
  File "dependent\runtime\jre\lib\logging.properties"
  SetOutPath "$INSTDIR\runtime\jre\lib\management"
  File "dependent\runtime\jre\lib\management\jmxremote.access"
  File "dependent\runtime\jre\lib\management\jmxremote.password.template"
  File "dependent\runtime\jre\lib\management\management.properties"
  File "dependent\runtime\jre\lib\management\snmp.acl.template"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\management-agent.jar"
  File "dependent\runtime\jre\lib\meta-index"
  File "dependent\runtime\jre\lib\net.properties"
  File "dependent\runtime\jre\lib\plugin.jar"
  File "dependent\runtime\jre\lib\psfont.properties.ja"
  File "dependent\runtime\jre\lib\psfontj2d.properties"
  File "dependent\runtime\jre\lib\resources.jar"
  File "dependent\runtime\jre\lib\rt.jar"
  SetOutPath "$INSTDIR\runtime\jre\lib\security"
  File "dependent\runtime\jre\lib\security\blacklist"
  File "dependent\runtime\jre\lib\security\blacklisted.certs"
  File "dependent\runtime\jre\lib\security\cacerts"
  File "dependent\runtime\jre\lib\security\java.policy"
  File "dependent\runtime\jre\lib\security\java.security"
  File "dependent\runtime\jre\lib\security\javaws.policy"
  SetOutPath "$INSTDIR\runtime\jre\lib\security\policy\limited"
  File "dependent\runtime\jre\lib\security\policy\limited\local_policy.jar"
  File "dependent\runtime\jre\lib\security\policy\limited\US_export_policy.jar"
  SetOutPath "$INSTDIR\runtime\jre\lib\security\policy\unlimited"
  File "dependent\runtime\jre\lib\security\policy\unlimited\local_policy.jar"
  File "dependent\runtime\jre\lib\security\policy\unlimited\US_export_policy.jar"
  SetOutPath "$INSTDIR\runtime\jre\lib\security"
  File "dependent\runtime\jre\lib\security\trusted.libraries"
  SetOutPath "$INSTDIR\runtime\jre\lib"
  File "dependent\runtime\jre\lib\sound.properties"
  File "dependent\runtime\jre\lib\tzdb.dat"
  File "dependent\runtime\jre\lib\tzmappings"
  SetOutPath "$INSTDIR\runtime\jre"
  File "dependent\runtime\jre\LICENSE"
  File "dependent\runtime\jre\README.txt"
  File "dependent\runtime\jre\THIRDPARTYLICENSEREADME-JAVAFX.txt"
  File "dependent\runtime\jre\THIRDPARTYLICENSEREADME.txt"
  File "dependent\runtime\jre\Welcome.html"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\accessibility.properties"
  SetOutPath "$INSTDIR\runtime\lib\amd64"
  File "dependent\runtime\lib\amd64\jvm.cfg"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\ant-javafx.jar"
  File "dependent\runtime\lib\calendars.properties"
  File "dependent\runtime\lib\charsets.jar"
  File "dependent\runtime\lib\classlist"
  SetOutPath "$INSTDIR\runtime\lib\cmm"
  File "dependent\runtime\lib\cmm\CIEXYZ.pf"
  File "dependent\runtime\lib\cmm\GRAY.pf"
  File "dependent\runtime\lib\cmm\LINEAR_RGB.pf"
  File "dependent\runtime\lib\cmm\PYCC.pf"
  File "dependent\runtime\lib\cmm\sRGB.pf"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\content-types.properties"
  File "dependent\runtime\lib\ct.sym"
  File "dependent\runtime\lib\currency.data"
  SetOutPath "$INSTDIR\runtime\lib\deploy"
  File "dependent\runtime\lib\deploy\ffjcext.zip"
  File "dependent\runtime\lib\deploy\messages.properties"
  File "dependent\runtime\lib\deploy\messages_de.properties"
  File "dependent\runtime\lib\deploy\messages_es.properties"
  File "dependent\runtime\lib\deploy\messages_fr.properties"
  File "dependent\runtime\lib\deploy\messages_it.properties"
  File "dependent\runtime\lib\deploy\messages_ja.properties"
  File "dependent\runtime\lib\deploy\messages_ko.properties"
  File "dependent\runtime\lib\deploy\messages_pt_BR.properties"
  File "dependent\runtime\lib\deploy\messages_sv.properties"
  File "dependent\runtime\lib\deploy\messages_zh_CN.properties"
  File "dependent\runtime\lib\deploy\messages_zh_HK.properties"
  File "dependent\runtime\lib\deploy\messages_zh_TW.properties"
  File "dependent\runtime\lib\deploy\splash.gif"
  File "dependent\runtime\lib\deploy\splash@2x.gif"
  File "dependent\runtime\lib\deploy\splash_11-lic.gif"
  File "dependent\runtime\lib\deploy\splash_11@2x-lic.gif"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\deploy.jar"
  File "dependent\runtime\lib\dt.jar"
  SetOutPath "$INSTDIR\runtime\lib\ext"
  File "dependent\runtime\lib\ext\access-bridge-64.jar"
  File "dependent\runtime\lib\ext\cldrdata.jar"
  File "dependent\runtime\lib\ext\dnsns.jar"
  File "dependent\runtime\lib\ext\jaccess.jar"
  File "dependent\runtime\lib\ext\jfxrt.jar"
  File "dependent\runtime\lib\ext\localedata.jar"
  File "dependent\runtime\lib\ext\meta-index"
  File "dependent\runtime\lib\ext\nashorn.jar"
  File "dependent\runtime\lib\ext\sunec.jar"
  File "dependent\runtime\lib\ext\sunjce_provider.jar"
  File "dependent\runtime\lib\ext\sunmscapi.jar"
  File "dependent\runtime\lib\ext\sunpkcs11.jar"
  File "dependent\runtime\lib\ext\zipfs.jar"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\flavormap.properties"
  File "dependent\runtime\lib\fontconfig.bfc"
  File "dependent\runtime\lib\fontconfig.properties.src"
  SetOutPath "$INSTDIR\runtime\lib\fonts"
  File "dependent\runtime\lib\fonts\LucidaBrightDemiBold.ttf"
  File "dependent\runtime\lib\fonts\LucidaBrightDemiItalic.ttf"
  File "dependent\runtime\lib\fonts\LucidaBrightItalic.ttf"
  File "dependent\runtime\lib\fonts\LucidaBrightRegular.ttf"
  File "dependent\runtime\lib\fonts\LucidaSansDemiBold.ttf"
  File "dependent\runtime\lib\fonts\LucidaSansRegular.ttf"
  File "dependent\runtime\lib\fonts\LucidaTypewriterBold.ttf"
  File "dependent\runtime\lib\fonts\LucidaTypewriterRegular.ttf"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\hijrah-config-umalqura.properties"
  SetOutPath "$INSTDIR\runtime\lib\images\cursors"
  File "dependent\runtime\lib\images\cursors\cursors.properties"
  File "dependent\runtime\lib\images\cursors\invalid32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_CopyDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_CopyNoDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_LinkDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_LinkNoDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_MoveDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_MoveNoDrop32x32.gif"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\ir.idl"
  File "dependent\runtime\lib\javafx-mx.jar"
  File "dependent\runtime\lib\javafx.properties"
  File "dependent\runtime\lib\javaws.jar"
  File "dependent\runtime\lib\jawt.lib"
  File "dependent\runtime\lib\jce.jar"
  File "dependent\runtime\lib\jconsole.jar"
  SetOutPath "$INSTDIR\runtime\lib\jfr"
  File "dependent\runtime\lib\jfr\default.jfc"
  File "dependent\runtime\lib\jfr\profile.jfc"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\jfr.jar"
  File "dependent\runtime\lib\jfxswt.jar"
  File "dependent\runtime\lib\jsse.jar"
  File "dependent\runtime\lib\jvm.hprof.txt"
  File "dependent\runtime\lib\jvm.lib"
  File "dependent\runtime\lib\logging.properties"
  SetOutPath "$INSTDIR\runtime\lib\management"
  File "dependent\runtime\lib\management\jmxremote.access"
  File "dependent\runtime\lib\management\jmxremote.password.template"
  File "dependent\runtime\lib\management\management.properties"
  File "dependent\runtime\lib\management\snmp.acl.template"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\management-agent.jar"
  File "dependent\runtime\lib\meta-index"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol"
  File "dependent\runtime\lib\missioncontrol\.eclipseproduct"
  File "dependent\runtime\lib\missioncontrol\artifacts.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\configuration"
  File "dependent\runtime\lib\missioncontrol\configuration\config.ini"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\configuration\org.eclipse.equinox.simpleconfigurator"
  File "dependent\runtime\lib\missioncontrol\configuration\org.eclipse.equinox.simpleconfigurator\bundles.info"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\configuration\org.eclipse.update"
  File "dependent\runtime\lib\missioncontrol\configuration\org.eclipse.update\platform.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\dropins"
  File "dependent\runtime\lib\missioncontrol\dropins\README.TXT"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.console_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.console_5.5.2.174165\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.console_5.5.2.174165\feature.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.core_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.core_5.5.2.174165\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.core_5.5.2.174165\feature.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.flightrecorder_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.flightrecorder_5.5.2.174165\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.flightrecorder_5.5.2.174165\feature.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.ja_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.ja_5.5.2.174165\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.ja_5.5.2.174165\feature.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.zh_CN_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.zh_CN_5.5.2.174165\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.zh_CN_5.5.2.174165\feature.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp_5.5.2.174165\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp_5.5.2.174165\feature.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.rcp.product_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.rcp.product_5.5.2.174165\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\com.jrockit.mc.rcp.product_5.5.2.174165\feature.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\about.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\eclipse_update_120.jpg"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\about.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\eclipse_update_120.jpg"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\about.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF\eclipse.inf"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\about.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF\eclipse.inf"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\about.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\asl-v20.txt"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF\eclipse.inf"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\about.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\asl-v20.txt"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF\eclipse.inf"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\about.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\asl-v20.txt"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF\eclipse.inf"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\about.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF\eclipse.inf"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF\eclipse.inf"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF\eclipse.inf"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\epl-v10.html"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\feature.properties"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\feature.xml"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\license.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\META-INF"
  File "dependent\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol"
  File "dependent\runtime\lib\missioncontrol\mc.jar"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\artifacts.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\binary"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\binary\com.jrockit.mc.rcp.product_root_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\binary\com.oracle.jmc.executable.win32.win32.x86_64_5.5.2"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\binary\org.eclipse.rcp_root_4.4.0.v20141007-2301"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\.settings"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.artifact.repository.prefs"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.metadata.repository.prefs"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\.lock"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\1512678853650.profile.gz"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\1512678853884.profile.gz"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\1512678861509.profile.gz"
  File "dependent\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\1512678862619.profile.gz"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins"
  File "dependent\runtime\lib\missioncontrol\plugins\com.ibm.icu_52.1.0.v201404241930.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.alert.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.alert.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.alert_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.attach_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.attach.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.attach.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.attach_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.jdp.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.jdp.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.jdp_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.commands_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.common_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.components.ui.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.components.ui.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.components.ui_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.historicaldata.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.historicaldata.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.historicaldata_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.diagnostic.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.diagnostic.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.diagnostic_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.mbeanbrowser.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.mbeanbrowser.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.mbeanbrowser_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification.zh_CN_5.5.2.174165.jar"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\com.jrockit.mc.console.ui.notification_contexts.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\css"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\css\blafdoc.css"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\bookbig.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\bookicon.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\booklist.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\contbig.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\conticon.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\doclib.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\feedback.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\feedbck2.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\help.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\index.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\indxicon.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\larrow.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\leftnav.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\masterix.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\mix.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\oracle.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\prodbig.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\prodicon.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\rarrow.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\rightnav.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\toc.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\topnav.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\uarrow.gif"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\html"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\html\cpyr.htm"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\olh.htm"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\olh001.htm"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\preface.htm"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\title.htm"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons\alert_obj.png"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons\file_obj.gif"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons\flight_recorder.png"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons\new-trigger-wiz.gif"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\META-INF"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\notification_plugin.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\plugin.properties"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\plugin.xml"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\toc.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.core_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.docs.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.docs.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.docs_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.configuration_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.controlpanel.ui.configuration_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.controlpanel.ui.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.controlpanel.ui.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.controlpanel.ui_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.ui.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.ui.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.ui_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.greychart.ui.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.greychart.ui.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.greychart.ui_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.greychartplugin_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.jdp_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.p2.ui.overridden_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.application.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.application.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.application_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.intro.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.intro.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.intro_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ext_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ui.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ui.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ui_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.zh_CN_5.5.2.174165.jar"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\console_view.png"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\date-span-16.png"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\day-of-week-16.png"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\diagnostic-command-16.png"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\hprof-16.png"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\send-email-16.png"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\time-span-16.png"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\dsn.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\gimap.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\imap.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\mailapi.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\pop3.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\smtp.jar"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\META-INF"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\plugin.properties"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\plugin.xml"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\rjmx.jar"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.actionProvider.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.attributeTransformation.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.descriptorProvider.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.metadataprovider.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.service.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.syntheticattribute.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.syntheticnotification.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\triggerActionExceptionHandlers.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\triggerActions.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\triggerConstraints.exsd"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\triggerEvaluators.exsd"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.ui.ja_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.ui.zh_CN_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.jrockit.mc.ui_5.5.2.174165.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\com.sun.el_2.2.0.v201303151357.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\javax.annotation_1.2.0.v201401042248.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\javax.el_2.2.0.v201303151357.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\javax.inject_1.0.0.v20091030.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\javax.servlet.jsp_2.2.0.v201112011158.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\javax.servlet_3.0.0.v201112011016.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\javax.xml_1.3.4.v201005080400.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.batik.css_1.7.0.v201011041433.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.batik.util.gui_1.7.0.v200903091627.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.batik.util_1.7.0.v201011041433.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.commons.codec_1.6.0.v201305230611.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.commons.logging_1.1.1.v201101211721.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.felix.gogo.command_0.10.0.v201209301215.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.felix.gogo.runtime_0.10.0.v201209301036.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.felix.gogo.shell_0.10.0.v201212101605.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.httpcomponents.httpclient_4.2.6.v201311072007.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.httpcomponents.httpcore_4.2.5.v201311072007.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.jasper.glassfish_2.2.2.v201205150955.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.lucene.analysis_3.5.0.v20120725-1805.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.apache.lucene.core_3.5.0.v20120725-1805.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.commands.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.commands.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.commands_3.6.100.v20140528-1422.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.contenttype_3.4.200.v20140207-1251.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.beans.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.beans.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.beans_1.2.200.v20140214-0004.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.observable.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.observable.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.observable_1.4.1.v20140210-1835.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.property.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.property.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.property_1.4.200.v20140214-0004.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding_1.4.2.v20140729-1044.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.expressions_3.4.600.v20140128-0851.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.filesystem_1.4.100.v20140514-1614.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.jobs_3.6.0.v20140424-0053.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.net.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.net.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.net.win32.x86_64.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.net.win32.x86_64.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.net_1.2.200.v20140124-2013.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.resources_3.9.1.v20140825-1431.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.core.runtime_3.10.0.v20140318-2214.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.commands.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.commands.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.commands_0.10.2.v20140424-2344.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.contexts_1.3.100.v20140407-1019.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.di.extensions_0.12.0.v20140417-2033.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.di_1.4.0.v20140414-1837.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.services_1.2.1.v20140808-1251.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.bindings.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.bindings.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.bindings_0.10.200.v20140424-2042.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.core.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.core.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.core_0.10.100.v20140424-2042.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.theme.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.theme.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.theme_0.9.300.v20140424-2042.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt_0.11.101.v20140818-1343.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.di.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.di.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.di_1.0.0.v20140328-2112.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.model.workbench.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.model.workbench.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.model.workbench_1.1.0.v20140512-1820.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.services.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.services.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.services_1.1.0.v20140328-1925.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.widgets.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.widgets.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.widgets_1.0.0.v20140514-1823.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.addons.swt.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.addons.swt.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.addons.swt_1.1.1.v20140903-0821.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.renderers.swt.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.renderers.swt.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.renderers.swt_0.12.1.v20140903-1023.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.swt.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.swt.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.swt_0.12.100.v20140530-1436.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench3.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench3.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench3_0.12.0.v20140227-2118.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench_1.2.1.v20140901-1244.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.filetransfer_5.0.0.v20140827-1444.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.identity_3.4.0.v20140827-1444.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.provider.filetransfer.httpclient4.ssl_1.0.0.v20140827-1444.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.provider.filetransfer.httpclient4_1.0.800.v20140827-1444.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20140827-1444.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.provider.filetransfer_3.2.200.v20140827-1444.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.ssl_1.1.0.v20140827-1444.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ecf_3.4.0.v20140827-1444.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.emf.common_2.10.1.v20140901-1043.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.emf.ecore.change_2.10.0.v20140901-1043.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.emf.ecore.xmi_2.10.1.v20140901-1043.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.emf.ecore_2.10.1.v20140901-1043.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.app_1.3.200.v20130910-1609.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.bidi_0.10.0.v20130327-1442.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.common_3.6.200.v20130402-1505.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.concurrent_1.1.0.v20130327-1442.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.console_1.1.0.v20140131-1639.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.ds_1.4.200.v20131126-2331.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.event_1.3.100.v20140115-1647.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.equinox.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.equinox.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.equinox_1.0.500.v20131211-1531.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin_2.0.100.v20131209-2144.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.http.jetty_3.0.200.v20131021-1843.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.http.registry_1.1.300.v20130402-1529.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.http.servlet_1.1.500.v20140318-1755.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20130327-1442.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.jsp.jasper_1.0.400.v20130327-1442.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64.nl_zh_4.4.0.v20140623020002.jar"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\about.html"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\eclipse_1655.dll"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\eclipse_1665.dll"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\launcher.win32.win32.x86_64.properties"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\META-INF"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.artifact.repository.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.artifact.repository.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.artifact.repository_1.1.300.v20131211-1531.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.console.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.console.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.console_1.0.300.v20131113-1212.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.core.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.core.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.core_2.3.0.v20131211-1531.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.app.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.app.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.app_1.0.300.v20140228-1829.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.directorywatcher.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.directorywatcher.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.directorywatcher_1.1.0.v20131211-1531.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director_2.3.100.v20140224-1921.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.engine.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.engine.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.engine_2.3.0.v20140506-1720.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.extensionlocation.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.extensionlocation.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.extensionlocation_1.2.100.v20131119-0908.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.garbagecollector.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.garbagecollector.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.garbagecollector_1.0.200.v20131115-1210.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.jarprocessor.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.jarprocessor.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.jarprocessor_1.0.300.v20131211-1531.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.repository.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.repository.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.repository_1.2.100.v20131209-2144.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata_2.2.0.v20131211-1531.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.operations.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.operations.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.operations_2.4.0.v20131119-0908.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.eclipse.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.eclipse.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20140414-0825.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher_1.3.0.v20140911-0143.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ql.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ql.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ql_2.0.100.v20131211-1531.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.reconciler.dropins.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.reconciler.dropins.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20131119-0908.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.repository.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.repository.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.repository_2.3.0.v20131211-1531.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.eclipse.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.eclipse.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20140512-1650.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.natives.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.natives.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.natives_1.1.100.v20140523-0116.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.transport.ecf.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.transport.ecf.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.transport.ecf_1.1.0.v20140408-1354.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.scheduler.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.scheduler.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.scheduler_1.2.0.v20140422-1847.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk_1.0.300.v20140407-1803.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui_2.3.0.v20140404-1657.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.updatechecker.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.updatechecker.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.updatechecker_1.1.200.v20131119-0908.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.preferences_3.5.200.v20140224-1527.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.registry_3.5.400.v20140428-1507.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.security.ui_1.1.200.v20130626-2037.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.security.win32.x86_64_1.0.100.v20130327-1442.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.security_1.2.0.v20130424-1801.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.manipulator.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.manipulator.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20131217-1203.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator_1.1.0.v20131217-1203.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.util_1.0.500.v20130404-1337.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.base.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.base.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.base_4.0.200.v20141007-2301.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.ui.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.ui.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.ui_4.0.100.v20140401-0608.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.webapp.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.webapp.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help.webapp_3.6.300.v20140407-1855.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.help_3.6.0.v20130326-1254.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.continuation_8.1.14.v20131031.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.http_8.1.14.v20131031.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.io_8.1.14.v20131031.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.security_8.1.14.v20131031.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.server_8.1.14.v20131031.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.servlet_8.1.14.v20131031.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.util_8.1.14.v20131031.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface.databinding.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface.databinding.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface.databinding_1.6.200.v20140528-1422.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface.text.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface.text.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface.text_3.9.1.v20140827-1810.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.jface_3.10.1.v20140813-1009.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.compatibility.state.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.compatibility.state.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.compatibility.state_1.0.1.v20140709-1414.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.services.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.services.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.services_3.4.0.v20140312-2051.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.osgi_3.10.1.v20140909-1633.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.rcp_4.3.100.v20141007-2301.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.swt.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.swt.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.swt.win32.win32.x86_64.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.swt.win32.win32.x86_64.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.swt.win32.win32.x86_64_3.103.1.v20140903-1947.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.swt_3.103.1.v20140903-1938.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.text.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.text.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.text_3.5.300.v20130515-1451.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.forms.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.forms.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.forms_3.6.100.v20140422-1825.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.intro.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.intro.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.intro_3.4.200.v20130326-1254.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.net.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.net.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.net_1.2.200.v20120807-0927.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes.nl_zh_4.4.0.v20140623020002.jar"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\about.html"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark\e4-dark_basestyle.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark\e4-dark_globalstyle.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark\e4-dark_partstyle.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark\e4-dark_preferencestyle.css"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4-dark.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4-dark_mac.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4-dark_win.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_basestyle.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_classic_win7.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_classic_winxp.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_gtk.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_mac.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_mru_on_win7.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_win7.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_winxp_blu.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_winxp_olv.css"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\high-contrast.css"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\dragHandle.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\gtkHandle.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\gtkTSFrame.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\macGrey.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\macHandle.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\macTSFrame.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\win7.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\win7Handle.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\win7TSFrame.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winClassicHandle.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winClassicTSFrame.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPBlue.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPBluHandle.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPBluTSFrame.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPHandle.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPOlive.png"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPTSFrame.png"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\META-INF"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\META-INF\ECLIPSE_.RSA"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\META-INF\ECLIPSE_.SF"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\META-INF\MANIFEST.MF"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\plugin.properties"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\plugin.xml"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol\plugins"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.views.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.views.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.views_3.7.0.v20140408-0703.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.win32.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.win32.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.workbench.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.workbench.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui.workbench_3.106.1.v20140827-1737.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.ui_3.106.0.v20140812-1751.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.update.configurator.nl_ja_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.update.configurator.nl_zh_4.4.0.v20140623020002.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.eclipse.update.configurator_3.3.300.v20140518-1928.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.sat4j.core_2.3.5.v201308161310.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.sat4j.pb_2.3.5.v201404071733.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.w3c.css.sac_1.3.1.v200903091627.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.w3c.dom.events_3.0.0.draft20060413_v201105210656.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.w3c.dom.smil_1.0.0.v200806040011.jar"
  File "dependent\runtime\lib\missioncontrol\plugins\org.w3c.dom.svg_1.1.0.v201011041433.jar"
  SetOutPath "$INSTDIR\runtime\lib\missioncontrol"
  File "dependent\runtime\lib\missioncontrol\THIRDPARTYLICENSEREADME.txt"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\net.properties"
  File "dependent\runtime\lib\orb.idl"
  File "dependent\runtime\lib\packager.jar"
  File "dependent\runtime\lib\plugin.jar"
  File "dependent\runtime\lib\psfont.properties.ja"
  File "dependent\runtime\lib\psfontj2d.properties"
  File "dependent\runtime\lib\resources.jar"
  File "dependent\runtime\lib\rt.jar"
  File "dependent\runtime\lib\sa-jdi.jar"
  SetOutPath "$INSTDIR\runtime\lib\security"
  File "dependent\runtime\lib\security\blacklist"
  File "dependent\runtime\lib\security\blacklisted.certs"
  File "dependent\runtime\lib\security\cacerts"
  File "dependent\runtime\lib\security\java.policy"
  File "dependent\runtime\lib\security\java.security"
  File "dependent\runtime\lib\security\javaws.policy"
  SetOutPath "$INSTDIR\runtime\lib\security\policy\limited"
  File "dependent\runtime\lib\security\policy\limited\local_policy.jar"
  File "dependent\runtime\lib\security\policy\limited\US_export_policy.jar"
  SetOutPath "$INSTDIR\runtime\lib\security\policy\unlimited"
  File "dependent\runtime\lib\security\policy\unlimited\local_policy.jar"
  File "dependent\runtime\lib\security\policy\unlimited\US_export_policy.jar"
  SetOutPath "$INSTDIR\runtime\lib\security"
  File "dependent\runtime\lib\security\trusted.libraries"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\sound.properties"
  File "dependent\runtime\lib\tools.jar"
  File "dependent\runtime\lib\tzdb.dat"
  File "dependent\runtime\lib\tzmappings"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\etc"
  File "dependent\runtime\lib\visualvm\etc\visualvm.clusters"
  File "dependent\runtime\lib\visualvm\etc\visualvm.conf"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform"
  File "dependent\runtime\lib\visualvm\platform\.lastModified"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-netbeans-core.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-netbeans-modules-options-api.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-netbeans-modules-queries.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-execution.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-explorer.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-filesystems.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-loaders.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-modules.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-nodes.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-text.xml"
  File "dependent\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-util.xml"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\config\Modules"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-api-annotations-common.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-api-progress.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-api-search.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-api-visual.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-execution.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-io-ui.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-multitabs.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-multiview.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-output2.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-ui.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-windows.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-lib-uihandler.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-applemenu.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-autoupdate-cli.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-autoupdate-services.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-autoupdate-ui.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-core-kit.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-editor-mimelookup-impl.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-editor-mimelookup.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-favorites.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-javahelp.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-keyring-fallback.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-keyring-impl.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-keyring.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-masterfs-nio2.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-masterfs.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-options-api.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-options-keymap.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-print.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-progress-ui.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-queries.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-sampler.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-sendopts.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-settings.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-spi-actions.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-templates.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-uihandler.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-spi-quicksearch.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-swing-outline.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-swing-plaf.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-netbeans-swing-tabcontrol.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-actions.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-awt.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-compat.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-dialogs.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-execution.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-explorer.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-io.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-loaders.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-nodes.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-options.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-text.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-util-enumerations.xml"
  File "dependent\runtime\lib\visualvm\platform\config\Modules\org-openide-windows.xml"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\core"
  File "dependent\runtime\lib\visualvm\platform\core\core.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\core\locale"
  File "dependent\runtime\lib\visualvm\platform\core\locale\core_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\core\locale\core_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\core\locale\org-openide-filesystems_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\core\locale\org-openide-filesystems_zh_CN.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\core"
  File "dependent\runtime\lib\visualvm\platform\core\org-openide-filesystems.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\lib"
  File "dependent\runtime\lib\visualvm\platform\lib\boot.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\lib\locale"
  File "dependent\runtime\lib\visualvm\platform\lib\locale\boot_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\locale\boot_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\locale\org-openide-modules_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\locale\org-openide-modules_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\locale\org-openide-util-lookup_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\locale\org-openide-util-lookup_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\locale\org-openide-util_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\locale\org-openide-util_zh_CN.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\lib"
  File "dependent\runtime\lib\visualvm\platform\lib\nbexec.dll"
  File "dependent\runtime\lib\visualvm\platform\lib\nbexec.exe"
  File "dependent\runtime\lib\visualvm\platform\lib\nbexec64.dll"
  File "dependent\runtime\lib\visualvm\platform\lib\nbexec64.exe"
  File "dependent\runtime\lib\visualvm\platform\lib\org-openide-modules.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\org-openide-util-lookup.jar"
  File "dependent\runtime\lib\visualvm\platform\lib\org-openide-util.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\modules\ext"
  File "dependent\runtime\lib\visualvm\platform\modules\ext\jhall-2.0_05.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\modules\ext\locale"
  File "dependent\runtime\lib\visualvm\platform\modules\ext\locale\updater_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\ext\locale\updater_zh_CN.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\modules\ext"
  File "dependent\runtime\lib\visualvm\platform\modules\ext\updater.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\modules\locale"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-annotations-common_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-annotations-common_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-progress_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-progress_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-search_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-search_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-visual_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-visual_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-execution_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-execution_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-io-ui_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-io-ui_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-multitabs_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-multitabs_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-multiview_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-multiview_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-output2_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-output2_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-ui_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-ui_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-windows_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-windows_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-lib-uihandler_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-lib-uihandler_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-applemenu_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-applemenu_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-cli_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-cli_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-services_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-services_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-ui_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-ui_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-core-kit_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-core-kit_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-editor-mimelookup-impl_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-editor-mimelookup-impl_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-editor-mimelookup_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-editor-mimelookup_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-favorites_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-favorites_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-javahelp_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-javahelp_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring-fallback_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring-fallback_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring-impl_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring-impl_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-masterfs-nio2_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-masterfs-nio2_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-masterfs_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-masterfs_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-options-api_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-options-api_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-options-keymap_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-options-keymap_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-print_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-print_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-progress-ui_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-progress-ui_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-queries_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-queries_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-sampler_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-sampler_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-sendopts_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-sendopts_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-settings_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-settings_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-spi-actions_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-spi-actions_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-templates_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-templates_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-uihandler_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-uihandler_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-spi-quicksearch_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-spi-quicksearch_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-outline_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-outline_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-plaf_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-plaf_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-tabcontrol_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-tabcontrol_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-actions_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-actions_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-awt_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-awt_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-compat_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-compat_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-dialogs_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-dialogs_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-execution_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-execution_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-explorer_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-explorer_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-io_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-io_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-loaders_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-loaders_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-nodes_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-nodes_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-options_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-options_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-text_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-text_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-util-enumerations_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-util-enumerations_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-windows_ja.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\locale\org-openide-windows_zh_CN.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\modules"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-api-annotations-common.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-api-progress.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-api-search.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-api-visual.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-core-execution.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-core-io-ui.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-core-multitabs.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-core-multiview.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-core-output2.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-core-ui.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-core-windows.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-core.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-lib-uihandler.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-applemenu.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-autoupdate-cli.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-autoupdate-services.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-autoupdate-ui.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-core-kit.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-editor-mimelookup-impl.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-editor-mimelookup.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-favorites.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-javahelp.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-keyring-fallback.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-keyring-impl.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-keyring.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-masterfs-nio2.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-masterfs.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-options-api.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-options-keymap.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-print.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-progress-ui.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-queries.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-sampler.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-sendopts.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-settings.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-spi-actions.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-templates.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-modules-uihandler.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-spi-quicksearch.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-swing-outline.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-swing-plaf.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-netbeans-swing-tabcontrol.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-actions.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-awt.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-compat.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-dialogs.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-execution.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-explorer.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-io.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-loaders.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-nodes.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-options.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-text.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-util-enumerations.jar"
  File "dependent\runtime\lib\visualvm\platform\modules\org-openide-windows.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform\update_tracking"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-api-annotations-common.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-api-progress.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-api-search.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-api-visual.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-bootstrap.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-execution.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-io-ui.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-multitabs.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-multiview.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-output2.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-startup.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-ui.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-windows.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-lib-uihandler.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-applemenu.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-autoupdate-cli.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-autoupdate-services.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-autoupdate-ui.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-core-kit.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-editor-mimelookup-impl.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-editor-mimelookup.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-favorites.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-javahelp.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-keyring-fallback.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-keyring-impl.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-keyring.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-masterfs-nio2.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-masterfs.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-options-api.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-options-keymap.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-print.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-progress-ui.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-queries.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-sampler.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-sendopts.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-settings.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-spi-actions.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-templates.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-uihandler.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-spi-quicksearch.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-swing-outline.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-swing-plaf.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-netbeans-swing-tabcontrol.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-actions.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-awt.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-compat.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-dialogs.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-execution.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-explorer.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-filesystems.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-io.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-loaders.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-modules.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-nodes.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-options.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-text.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-util-enumerations.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-util-lookup.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-util.xml"
  File "dependent\runtime\lib\visualvm\platform\update_tracking\org-openide-windows.xml"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\platform"
  File "dependent\runtime\lib\visualvm\platform\VERSION.txt"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler"
  File "dependent\runtime\lib\visualvm\profiler\.lastModified"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-lib-profiler-charts.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-lib-profiler-common.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-lib-profiler-ui.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-lib-profiler.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-api.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-attach.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-heapwalker.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-oql.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-selector-api.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-selector-ui.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-snaptracer.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-utilities.xml"
  File "dependent\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler.xml"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler\lib\deployed\jdk15\windows-amd64"
  File "dependent\runtime\lib\visualvm\profiler\lib\deployed\jdk15\windows-amd64\profilerinterface.dll"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler\lib\deployed\jdk16\windows-amd64"
  File "dependent\runtime\lib\visualvm\profiler\lib\deployed\jdk16\windows-amd64\profilerinterface.dll"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler\lib"
  File "dependent\runtime\lib\visualvm\profiler\lib\jfluid-server-15.jar"
  File "dependent\runtime\lib\visualvm\profiler\lib\jfluid-server.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler\lib\locale"
  File "dependent\runtime\lib\visualvm\profiler\lib\locale\jfluid-server_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\lib\locale\jfluid-server_zh_CN.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-charts_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-charts_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-common_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-common_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-ui_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-ui_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-api_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-api_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-attach_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-attach_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-heapwalker_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-heapwalker_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-oql_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-oql_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-selector-api_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-selector-api_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-selector-ui_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-selector-ui_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-snaptracer_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-snaptracer_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-utilities_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-utilities_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler_ja.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler_zh_CN.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler\modules"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-lib-profiler-charts.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-lib-profiler-common.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-lib-profiler-ui.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-lib-profiler.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-api.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-attach.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-heapwalker.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-oql.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-selector-api.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-selector-ui.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-snaptracer.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-utilities.jar"
  File "dependent\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-lib-profiler-charts.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-lib-profiler-common.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-lib-profiler-ui.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-lib-profiler.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-api.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-attach.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-heapwalker.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-oql.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-selector-api.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-selector-ui.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-snaptracer.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-utilities.xml"
  File "dependent\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler.xml"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\profiler"
  File "dependent\runtime\lib\visualvm\profiler\VERSION.txt"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\visualvm"
  File "dependent\runtime\lib\visualvm\visualvm\.lastModified"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-api-caching.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-application-views.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-application.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-attach.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-charts.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-core.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-coredump.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-heapdump.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-host-remote.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-host-views.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-host.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-jmx.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-jvm.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-jvmstat.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-modules-appui.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-profiler.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-profiling.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-sa.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-sampler.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-threaddump.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-tools.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-uisupport.xml"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-api-visual.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-core-execution.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-core-io-ui.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-core-output2.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-lib-uihandler.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-core-kit.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-favorites.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-options-keymap.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-print.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-spi-actions.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-templates.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-uihandler.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-openide-compat.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-openide-execution.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-openide-options.xml_hidden"
  File "dependent\runtime\lib\visualvm\visualvm\config\Modules\org-openide-util-enumerations.xml_hidden"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\visualvm\core"
  File "dependent\runtime\lib\visualvm\visualvm\core\com-sun-tools-visualvm-modules-startup.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\visualvm\core\locale"
  File "dependent\runtime\lib\visualvm\visualvm\core\locale\com-sun-tools-visualvm-modules-startup_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\core\locale\com-sun-tools-visualvm-modules-startup_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\core\locale\core_visualvm.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\visualvm\modules"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-api-caching.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-application-views.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-application.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-attach.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-charts.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-core.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-coredump.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-heapdump.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-host-remote.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-host-views.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-host.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-jmx.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-jvm.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-jvmstat.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-modules-appui.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-profiler.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-profiling.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-sa.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-sampler.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-threaddump.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-tools.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-uisupport.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-api-caching_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-api-caching_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-application-views_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-application-views_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-application_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-application_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-attach_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-attach_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-charts_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-charts_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-coredump_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-coredump_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-core_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-core_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-heapdump_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-heapdump_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host-remote_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host-remote_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host-views_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host-views_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jmx_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jmx_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jvmstat_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jvmstat_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jvm_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jvm_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-modules-appui_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-modules-appui_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-profiler_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-profiler_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-profiling_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-profiling_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-sampler_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-sampler_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-sa_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-sa_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-threaddump_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-threaddump_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-tools_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-tools_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-uisupport_ja.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-uisupport_zh_CN.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\org-netbeans-core-windows_visualvm.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\org-netbeans-core_visualvm.jar"
  File "dependent\runtime\lib\visualvm\visualvm\modules\locale\org-netbeans-modules-profiler_visualvm.jar"
  SetOutPath "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-api-caching.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-application-views.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-application.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-attach.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-charts.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-core.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-coredump.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-heapdump.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-host-remote.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-host-views.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-host.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-jmx.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-jvm.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-jvmstat.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-modules-appui.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-modules-startup.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-profiler.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-profiling.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-sa.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-sampler.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-threaddump.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-tools.xml"
  File "dependent\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-uisupport.xml"
  SetOutPath "$INSTDIR\runtime"
  File "dependent\runtime\LICENSE"
  File "dependent\runtime\README.html"
  File "dependent\runtime\README.txt"
  File "dependent\runtime\release"
  File "dependent\runtime\src.zip"
  File "dependent\runtime\THIRDPARTYLICENSEREADME-JAVAFX.txt"
  File "dependent\runtime\THIRDPARTYLICENSEREADME.txt"
  File "dependent\runtime\Welcome.html"
  SetOutPath "$INSTDIR"
  File "dependent\setup_srv.bat"
  File "dependent\srvany.exe"
SectionEnd
 
Section -AdditionalIcons
  CreateShortCut "$SMPROGRAMS\resXmlParser\Uninstall.lnk" "$INSTDIR\uninst.exe"
SectionEnd
 
Section -Post
  WriteUninstaller "$INSTDIR\uninst.exe"
  WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\resources\elevate.exe"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
SectionEnd
 
 
Function un.onUninstSuccess
  HideWindow
  MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) Òѳɹ¦µØ´ÓÄãµÄ¼ÆËã»úÒÆ³ý¡£"
FunctionEnd
 
Function un.onInit
!insertmacro MUI_UNGETLANGUAGE
  MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "ÄãȷʵҪÍêÈ«ÒÆ³ý $(^Name) £¬Æä¼°ËùÓеÄ×é¼þ£¿" IDYES +2
  Abort
FunctionEnd
 
Section Uninstall
  nsExec::Exec "net stop Res_Meter_Manager"
  nsExec::Exec "$INSTDIR\remove_srv.bat"
  
  Delete "$INSTDIR\uninst.exe"
  Delete "$INSTDIR\srvany.exe"
  Delete "$INSTDIR\setup_srv.bat"
  Delete "$INSTDIR\runtime\Welcome.html"
  Delete "$INSTDIR\runtime\THIRDPARTYLICENSEREADME.txt"
  Delete "$INSTDIR\runtime\THIRDPARTYLICENSEREADME-JAVAFX.txt"
  Delete "$INSTDIR\runtime\src.zip"
  Delete "$INSTDIR\runtime\release"
  Delete "$INSTDIR\runtime\README.txt"
  Delete "$INSTDIR\runtime\README.html"
  Delete "$INSTDIR\runtime\LICENSE"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-uisupport.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-tools.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-threaddump.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-sampler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-sa.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-profiling.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-profiler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-modules-startup.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-modules-appui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-jvmstat.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-jvm.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-jmx.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-host.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-host-views.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-host-remote.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-heapdump.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-coredump.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-core.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-charts.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-attach.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-application.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-application-views.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking\com-sun-tools-visualvm-api-caching.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\org-netbeans-modules-profiler_visualvm.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\org-netbeans-core_visualvm.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\org-netbeans-core-windows_visualvm.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-uisupport_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-uisupport_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-tools_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-tools_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-threaddump_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-threaddump_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-sa_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-sa_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-sampler_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-sampler_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-profiling_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-profiling_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-profiler_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-profiler_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-modules-appui_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-modules-appui_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jvm_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jvm_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jvmstat_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jvmstat_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jmx_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-jmx_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host-views_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host-views_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host-remote_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-host-remote_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-heapdump_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-heapdump_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-core_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-core_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-coredump_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-coredump_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-charts_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-charts_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-attach_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-attach_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-application_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-application_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-application-views_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-application-views_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-api-caching_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale\com-sun-tools-visualvm-api-caching_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-uisupport.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-tools.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-threaddump.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-sampler.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-sa.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-profiling.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-profiler.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-modules-appui.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-jvmstat.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-jvm.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-jmx.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-host.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-host-views.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-host-remote.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-heapdump.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-coredump.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-core.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-charts.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-attach.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-application.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-application-views.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\modules\com-sun-tools-visualvm-api-caching.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\core\locale\core_visualvm.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\core\locale\com-sun-tools-visualvm-modules-startup_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\core\locale\com-sun-tools-visualvm-modules-startup_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\core\com-sun-tools-visualvm-modules-startup.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-openide-util-enumerations.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-openide-options.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-openide-execution.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-openide-compat.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-uihandler.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-templates.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-spi-actions.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-print.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-options-keymap.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-favorites.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-modules-core-kit.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-lib-uihandler.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-core-output2.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-core-io-ui.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-core-execution.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\org-netbeans-api-visual.xml_hidden"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-uisupport.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-tools.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-threaddump.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-sampler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-sa.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-profiling.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-profiler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-modules-appui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-jvmstat.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-jvm.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-jmx.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-host.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-host-views.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-host-remote.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-heapdump.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-coredump.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-core.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-charts.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-attach.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-application.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-application-views.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules\com-sun-tools-visualvm-api-caching.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\visualvm\.lastModified"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\VERSION.txt"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-utilities.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-snaptracer.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-selector-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-selector-api.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-oql.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-heapwalker.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-attach.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-modules-profiler-api.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-lib-profiler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-lib-profiler-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-lib-profiler-common.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking\org-netbeans-lib-profiler-charts.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-utilities.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-snaptracer.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-selector-ui.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-selector-api.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-oql.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-heapwalker.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-attach.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-modules-profiler-api.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-lib-profiler.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-lib-profiler-ui.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-lib-profiler-common.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\org-netbeans-lib-profiler-charts.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-utilities_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-utilities_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-snaptracer_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-snaptracer_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-selector-ui_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-selector-ui_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-selector-api_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-selector-api_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-oql_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-oql_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-heapwalker_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-heapwalker_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-attach_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-attach_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-api_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-modules-profiler-api_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-ui_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-ui_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-common_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-common_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-charts_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale\org-netbeans-lib-profiler-charts_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\lib\locale\jfluid-server_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\lib\locale\jfluid-server_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\lib\jfluid-server.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\lib\jfluid-server-15.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\lib\deployed\jdk16\windows-amd64\profilerinterface.dll"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\lib\deployed\jdk15\windows-amd64\profilerinterface.dll"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-utilities.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-snaptracer.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-selector-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-selector-api.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-oql.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-heapwalker.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-attach.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-modules-profiler-api.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-lib-profiler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-lib-profiler-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-lib-profiler-common.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules\org-netbeans-lib-profiler-charts.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\profiler\.lastModified"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\VERSION.txt"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-windows.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-util.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-util-lookup.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-util-enumerations.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-text.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-options.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-nodes.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-modules.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-loaders.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-io.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-filesystems.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-explorer.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-execution.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-dialogs.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-compat.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-awt.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-openide-actions.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-swing-tabcontrol.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-swing-plaf.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-swing-outline.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-spi-quicksearch.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-uihandler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-templates.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-spi-actions.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-settings.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-sendopts.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-sampler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-queries.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-progress-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-print.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-options-keymap.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-options-api.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-masterfs.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-masterfs-nio2.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-keyring.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-keyring-impl.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-keyring-fallback.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-javahelp.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-favorites.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-editor-mimelookup.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-editor-mimelookup-impl.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-core-kit.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-autoupdate-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-autoupdate-services.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-autoupdate-cli.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-modules-applemenu.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-lib-uihandler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-windows.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-startup.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-output2.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-multiview.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-multitabs.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-io-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-core-execution.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-bootstrap.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-api-visual.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-api-search.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-api-progress.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\update_tracking\org-netbeans-api-annotations-common.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-windows.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-util-enumerations.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-text.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-options.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-nodes.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-loaders.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-io.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-explorer.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-execution.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-dialogs.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-compat.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-awt.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-openide-actions.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-swing-tabcontrol.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-swing-plaf.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-swing-outline.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-spi-quicksearch.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-uihandler.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-templates.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-spi-actions.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-settings.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-sendopts.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-sampler.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-queries.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-progress-ui.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-print.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-options-keymap.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-options-api.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-masterfs.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-masterfs-nio2.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-keyring.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-keyring-impl.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-keyring-fallback.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-javahelp.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-favorites.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-editor-mimelookup.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-editor-mimelookup-impl.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-core-kit.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-autoupdate-ui.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-autoupdate-services.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-autoupdate-cli.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-modules-applemenu.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-lib-uihandler.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-core.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-core-windows.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-core-ui.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-core-output2.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-core-multiview.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-core-multitabs.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-core-io-ui.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-core-execution.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-api-visual.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-api-search.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-api-progress.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\org-netbeans-api-annotations-common.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-windows_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-windows_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-util-enumerations_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-util-enumerations_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-text_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-text_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-options_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-options_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-nodes_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-nodes_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-loaders_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-loaders_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-io_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-io_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-explorer_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-explorer_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-execution_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-execution_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-dialogs_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-dialogs_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-compat_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-compat_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-awt_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-awt_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-actions_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-openide-actions_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-tabcontrol_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-tabcontrol_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-plaf_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-plaf_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-outline_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-swing-outline_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-spi-quicksearch_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-spi-quicksearch_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-uihandler_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-uihandler_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-templates_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-templates_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-spi-actions_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-spi-actions_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-settings_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-settings_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-sendopts_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-sendopts_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-sampler_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-sampler_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-queries_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-queries_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-progress-ui_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-progress-ui_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-print_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-print_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-options-keymap_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-options-keymap_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-options-api_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-options-api_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-masterfs_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-masterfs_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-masterfs-nio2_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-masterfs-nio2_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring-impl_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring-impl_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring-fallback_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-keyring-fallback_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-javahelp_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-javahelp_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-favorites_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-favorites_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-editor-mimelookup_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-editor-mimelookup_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-editor-mimelookup-impl_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-editor-mimelookup-impl_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-core-kit_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-core-kit_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-ui_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-ui_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-services_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-services_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-cli_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-autoupdate-cli_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-applemenu_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-modules-applemenu_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-lib-uihandler_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-lib-uihandler_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-windows_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-windows_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-ui_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-ui_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-output2_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-output2_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-multiview_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-multiview_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-multitabs_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-multitabs_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-io-ui_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-io-ui_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-execution_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-core-execution_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-visual_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-visual_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-search_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-search_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-progress_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-progress_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-annotations-common_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\locale\org-netbeans-api-annotations-common_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\ext\updater.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\ext\locale\updater_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\ext\locale\updater_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\modules\ext\jhall-2.0_05.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\org-openide-util.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\org-openide-util-lookup.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\org-openide-modules.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\nbexec64.exe"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\nbexec64.dll"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\nbexec.exe"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\nbexec.dll"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\locale\org-openide-util_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\locale\org-openide-util_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\locale\org-openide-util-lookup_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\locale\org-openide-util-lookup_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\locale\org-openide-modules_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\locale\org-openide-modules_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\locale\boot_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\locale\boot_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\lib\boot.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\core\org-openide-filesystems.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\core\locale\org-openide-filesystems_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\core\locale\org-openide-filesystems_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\core\locale\core_zh_CN.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\core\locale\core_ja.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\core\core.jar"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-windows.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-util-enumerations.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-text.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-options.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-nodes.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-loaders.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-io.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-explorer.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-execution.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-dialogs.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-compat.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-awt.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-openide-actions.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-swing-tabcontrol.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-swing-plaf.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-swing-outline.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-spi-quicksearch.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-uihandler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-templates.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-spi-actions.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-settings.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-sendopts.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-sampler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-queries.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-progress-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-print.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-options-keymap.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-options-api.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-masterfs.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-masterfs-nio2.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-keyring.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-keyring-impl.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-keyring-fallback.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-javahelp.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-favorites.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-editor-mimelookup.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-editor-mimelookup-impl.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-core-kit.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-autoupdate-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-autoupdate-services.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-autoupdate-cli.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-modules-applemenu.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-lib-uihandler.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-windows.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-output2.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-multiview.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-multitabs.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-io-ui.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-core-execution.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-api-visual.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-api-search.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-api-progress.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\Modules\org-netbeans-api-annotations-common.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-util.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-text.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-nodes.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-modules.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-loaders.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-filesystems.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-explorer.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-openide-execution.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-netbeans-modules-queries.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-netbeans-modules-options-api.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps\org-netbeans-core.xml"
  Delete "$INSTDIR\runtime\lib\visualvm\platform\.lastModified"
  Delete "$INSTDIR\runtime\lib\visualvm\etc\visualvm.conf"
  Delete "$INSTDIR\runtime\lib\visualvm\etc\visualvm.clusters"
  Delete "$INSTDIR\runtime\lib\tzmappings"
  Delete "$INSTDIR\runtime\lib\tzdb.dat"
  Delete "$INSTDIR\runtime\lib\tools.jar"
  Delete "$INSTDIR\runtime\lib\sound.properties"
  Delete "$INSTDIR\runtime\lib\security\trusted.libraries"
  Delete "$INSTDIR\runtime\lib\security\policy\unlimited\US_export_policy.jar"
  Delete "$INSTDIR\runtime\lib\security\policy\unlimited\local_policy.jar"
  Delete "$INSTDIR\runtime\lib\security\policy\limited\US_export_policy.jar"
  Delete "$INSTDIR\runtime\lib\security\policy\limited\local_policy.jar"
  Delete "$INSTDIR\runtime\lib\security\javaws.policy"
  Delete "$INSTDIR\runtime\lib\security\java.security"
  Delete "$INSTDIR\runtime\lib\security\java.policy"
  Delete "$INSTDIR\runtime\lib\security\cacerts"
  Delete "$INSTDIR\runtime\lib\security\blacklisted.certs"
  Delete "$INSTDIR\runtime\lib\security\blacklist"
  Delete "$INSTDIR\runtime\lib\sa-jdi.jar"
  Delete "$INSTDIR\runtime\lib\rt.jar"
  Delete "$INSTDIR\runtime\lib\resources.jar"
  Delete "$INSTDIR\runtime\lib\psfontj2d.properties"
  Delete "$INSTDIR\runtime\lib\psfont.properties.ja"
  Delete "$INSTDIR\runtime\lib\plugin.jar"
  Delete "$INSTDIR\runtime\lib\packager.jar"
  Delete "$INSTDIR\runtime\lib\orb.idl"
  Delete "$INSTDIR\runtime\lib\net.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\THIRDPARTYLICENSEREADME.txt"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.w3c.dom.svg_1.1.0.v201011041433.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.w3c.dom.smil_1.0.0.v200806040011.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.w3c.dom.events_3.0.0.draft20060413_v201105210656.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.w3c.css.sac_1.3.1.v200903091627.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.sat4j.pb_2.3.5.v201404071733.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.sat4j.core_2.3.5.v201308161310.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.update.configurator_3.3.300.v20140518-1928.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.update.configurator.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.update.configurator.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui_3.106.0.v20140812-1751.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.workbench_3.106.1.v20140827-1737.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.workbench.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.workbench.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.win32.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.win32.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.views_3.7.0.v20140408-0703.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.views.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.views.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\plugin.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\plugin.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPTSFrame.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPOlive.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPHandle.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPBluTSFrame.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPBluHandle.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winXPBlue.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winClassicTSFrame.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\winClassicHandle.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\win7TSFrame.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\win7Handle.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\win7.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\macTSFrame.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\macHandle.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\macGrey.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\gtkTSFrame.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\gtkHandle.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images\dragHandle.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\high-contrast.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_winxp_olv.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_winxp_blu.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_win7.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_mru_on_win7.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_mac.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_default_gtk.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_classic_winxp.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_classic_win7.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4_basestyle.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4-dark_win.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4-dark_mac.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\e4-dark.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark\e4-dark_preferencestyle.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark\e4-dark_partstyle.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark\e4-dark_globalstyle.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark\e4-dark_basestyle.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.net_1.2.200.v20120807-0927.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.net.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.net.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.intro_3.4.200.v20130326-1254.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.intro.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.intro.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.forms_3.6.100.v20140422-1825.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.forms.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.forms.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.text_3.5.300.v20130515-1451.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.text.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.text.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.swt_3.103.1.v20140903-1938.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.swt.win32.win32.x86_64_3.103.1.v20140903-1947.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.swt.win32.win32.x86_64.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.swt.win32.win32.x86_64.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.swt.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.swt.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.rcp_4.3.100.v20141007-2301.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi_3.10.1.v20140909-1633.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.services_3.4.0.v20140312-2051.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.services.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.services.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.compatibility.state_1.0.1.v20140709-1414.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.compatibility.state.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.osgi.compatibility.state.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface_3.10.1.v20140813-1009.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface.text_3.9.1.v20140827-1810.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface.text.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface.text.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface.databinding_1.6.200.v20140528-1422.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface.databinding.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jface.databinding.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.util_8.1.14.v20131031.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.servlet_8.1.14.v20131031.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.server_8.1.14.v20131031.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.security_8.1.14.v20131031.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.io_8.1.14.v20131031.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.http_8.1.14.v20131031.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.jetty.continuation_8.1.14.v20131031.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help_3.6.0.v20130326-1254.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.webapp_3.6.300.v20140407-1855.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.webapp.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.webapp.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.ui_4.0.100.v20140401-0608.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.ui.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.ui.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.base_4.0.200.v20141007-2301.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.base.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.help.base.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.util_1.0.500.v20130404-1337.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator_1.1.0.v20131217-1203.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20131217-1203.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.manipulator.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.simpleconfigurator.manipulator.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.security_1.2.0.v20130424-1801.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.security.win32.x86_64_1.0.100.v20130327-1442.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.security.ui_1.1.200.v20130626-2037.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.registry_3.5.400.v20140428-1507.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.preferences_3.5.200.v20140224-1527.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.updatechecker_1.1.200.v20131119-0908.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.updatechecker.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.updatechecker.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui_2.3.0.v20140404-1657.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk_1.0.300.v20140407-1803.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.scheduler_1.2.0.v20140422-1847.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.scheduler.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.scheduler.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.sdk.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ui.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.transport.ecf_1.1.0.v20140408-1354.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.transport.ecf.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.transport.ecf.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.natives_1.1.100.v20140523-0116.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.natives.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.natives.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20140512-1650.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.eclipse.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.touchpoint.eclipse.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.repository_2.3.0.v20131211-1531.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.repository.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.repository.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20131119-0908.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.reconciler.dropins.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.reconciler.dropins.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ql_2.0.100.v20131211-1531.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ql.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.ql.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher_1.3.0.v20140911-0143.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20140414-0825.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.eclipse.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.publisher.eclipse.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.operations_2.4.0.v20131119-0908.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.operations.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.operations.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata_2.2.0.v20131211-1531.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.repository_1.2.100.v20131209-2144.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.repository.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.repository.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.metadata.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.jarprocessor_1.0.300.v20131211-1531.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.jarprocessor.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.jarprocessor.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.garbagecollector_1.0.200.v20131115-1210.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.garbagecollector.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.garbagecollector.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.extensionlocation_1.2.100.v20131119-0908.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.extensionlocation.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.extensionlocation.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.engine_2.3.0.v20140506-1720.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.engine.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.engine.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director_2.3.100.v20140224-1921.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.directorywatcher_1.1.0.v20131211-1531.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.directorywatcher.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.directorywatcher.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.app_1.0.300.v20140228-1829.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.app.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.director.app.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.core_2.3.0.v20131211-1531.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.core.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.core.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.console_1.0.300.v20131113-1212.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.console.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.console.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.artifact.repository_1.1.300.v20131211-1531.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.artifact.repository.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.p2.artifact.repository.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\launcher.win32.win32.x86_64.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\eclipse_1665.dll"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\eclipse_1655.dll"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.jsp.jasper_1.0.400.v20130327-1442.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20130327-1442.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.http.servlet_1.1.500.v20140318-1755.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.http.registry_1.1.300.v20130402-1529.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.http.jetty_3.0.200.v20131021-1843.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin_2.0.100.v20131209-2144.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.equinox_1.0.500.v20131211-1531.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.equinox.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.frameworkadmin.equinox.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.event_1.3.100.v20140115-1647.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.ds_1.4.200.v20131126-2331.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.console_1.1.0.v20140131-1639.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.concurrent_1.1.0.v20130327-1442.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.common_3.6.200.v20130402-1505.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.bidi_0.10.0.v20130327-1442.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.app_1.3.200.v20130910-1609.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.emf.ecore_2.10.1.v20140901-1043.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.emf.ecore.xmi_2.10.1.v20140901-1043.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.emf.ecore.change_2.10.0.v20140901-1043.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.emf.common_2.10.1.v20140901-1043.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ecf_3.4.0.v20140827-1444.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.ssl_1.1.0.v20140827-1444.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.provider.filetransfer_3.2.200.v20140827-1444.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20140827-1444.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.provider.filetransfer.httpclient4_1.0.800.v20140827-1444.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.provider.filetransfer.httpclient4.ssl_1.0.0.v20140827-1444.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.identity_3.4.0.v20140827-1444.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ecf.filetransfer_5.0.0.v20140827-1444.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench_1.2.1.v20140901-1244.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench3_0.12.0.v20140227-2118.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench3.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench3.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.swt_0.12.100.v20140530-1436.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.swt.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.swt.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.renderers.swt_0.12.1.v20140903-1023.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.renderers.swt.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.renderers.swt.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.addons.swt_1.1.1.v20140903-0821.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.addons.swt.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.workbench.addons.swt.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.widgets_1.0.0.v20140514-1823.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.widgets.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.widgets.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.services_1.1.0.v20140328-1925.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.services.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.services.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.model.workbench_1.1.0.v20140512-1820.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.model.workbench.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.model.workbench.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.di_1.0.0.v20140328-2112.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.di.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.di.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt_0.11.101.v20140818-1343.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.theme_0.9.300.v20140424-2042.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.theme.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.theme.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.swt.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.core_0.10.100.v20140424-2042.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.core.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.css.core.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.bindings_0.10.200.v20140424-2042.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.bindings.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.ui.bindings.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.services_1.2.1.v20140808-1251.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.di_1.4.0.v20140414-1837.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.di.extensions_0.12.0.v20140417-2033.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.contexts_1.3.100.v20140407-1019.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.commands_0.10.2.v20140424-2344.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.commands.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.e4.core.commands.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.runtime_3.10.0.v20140318-2214.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.resources_3.9.1.v20140825-1431.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.net_1.2.200.v20140124-2013.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.net.win32.x86_64.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.net.win32.x86_64.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.net.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.net.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.jobs_3.6.0.v20140424-0053.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.filesystem_1.4.100.v20140514-1614.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.expressions_3.4.600.v20140128-0851.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding_1.4.2.v20140729-1044.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.property_1.4.200.v20140214-0004.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.property.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.property.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.observable_1.4.1.v20140210-1835.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.observable.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.observable.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.beans_1.2.200.v20140214-0004.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.beans.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.databinding.beans.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.contenttype_3.4.200.v20140207-1251.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.commands_3.6.100.v20140528-1422.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.commands.nl_zh_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.core.commands.nl_ja_4.4.0.v20140623020002.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.lucene.core_3.5.0.v20120725-1805.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.lucene.analysis_3.5.0.v20120725-1805.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.jasper.glassfish_2.2.2.v201205150955.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.httpcomponents.httpcore_4.2.5.v201311072007.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.httpcomponents.httpclient_4.2.6.v201311072007.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.felix.gogo.shell_0.10.0.v201212101605.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.felix.gogo.runtime_0.10.0.v201209301036.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.felix.gogo.command_0.10.0.v201209301215.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.commons.logging_1.1.1.v201101211721.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.commons.codec_1.6.0.v201305230611.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.batik.util_1.7.0.v201011041433.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.batik.util.gui_1.7.0.v200903091627.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\org.apache.batik.css_1.7.0.v201011041433.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\javax.xml_1.3.4.v201005080400.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\javax.servlet_3.0.0.v201112011016.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\javax.servlet.jsp_2.2.0.v201112011158.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\javax.inject_1.0.0.v20091030.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\javax.el_2.2.0.v201303151357.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\javax.annotation_1.2.0.v201401042248.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.sun.el_2.2.0.v201303151357.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.ui_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.ui.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.ui.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\triggerEvaluators.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\triggerConstraints.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\triggerActions.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\triggerActionExceptionHandlers.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.syntheticnotification.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.syntheticattribute.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.service.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.metadataprovider.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.descriptorProvider.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.attributeTransformation.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema\com.jrockit.mc.rjmx.actionProvider.exsd"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\rjmx.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\plugin.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\plugin.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\smtp.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\pop3.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\mailapi.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\imap.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\gimap.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib\dsn.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\time-span-16.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\send-email-16.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\hprof-16.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\diagnostic-command-16.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\day-of-week-16.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\date-span-16.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons\console_view.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ui_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ui.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ui.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx.ext_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.intro_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.intro.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.intro.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.application_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.application.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rcp.application.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.p2.ui.overridden_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.jdp_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.greychartplugin_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.greychart.ui_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.greychart.ui.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.greychart.ui.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.ui_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.ui.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.ui.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.controlpanel.ui_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.controlpanel.ui.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.controlpanel.ui.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.controlpanel.ui.configuration_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.flightrecorder.configuration_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.docs_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.docs.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.docs.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.core_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\toc.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\plugin.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\plugin.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\notification_plugin.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons\new-trigger-wiz.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons\flight_recorder.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons\file_obj.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons\alert_obj.png"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\title.htm"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\preface.htm"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\olh001.htm"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\olh.htm"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\html\cpyr.htm"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\uarrow.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\topnav.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\toc.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\rightnav.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\rarrow.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\prodicon.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\prodbig.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\oracle.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\mix.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\masterix.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\leftnav.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\larrow.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\indxicon.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\index.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\help.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\feedbck2.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\feedback.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\doclib.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\conticon.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\contbig.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\booklist.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\bookicon.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs\bookbig.gif"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\css\blafdoc.css"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\com.jrockit.mc.console.ui.notification_contexts.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.mbeanbrowser_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.mbeanbrowser.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.mbeanbrowser.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.diagnostic_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.diagnostic.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.diagnostic.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.historicaldata_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.historicaldata.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.historicaldata.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.components.ui_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.components.ui.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.components.ui.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.common_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.commands_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.jdp_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.jdp.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.jdp.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.attach_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.attach.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.browser.attach.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.attach_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.alert_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.alert.zh_CN_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.alert.ja_5.5.2.174165.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\plugins\com.ibm.icu_52.1.0.v201404241930.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\1512678862619.profile.gz"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\1512678861509.profile.gz"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\1512678853884.profile.gz"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\1512678853650.profile.gz"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile\.lock"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.metadata.repository.prefs"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.artifact.repository.prefs"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\binary\org.eclipse.rcp_root_4.4.0.v20141007-2301"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\binary\com.oracle.jmc.executable.win32.win32.x86_64_5.5.2"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\binary\com.jrockit.mc.rcp.product_root_5.5.2.174165"
  Delete "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\artifacts.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\mc.jar"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF\eclipse.inf"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF\eclipse.inf"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF\eclipse.inf"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF\eclipse.inf"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\asl-v20.txt"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF\eclipse.inf"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\asl-v20.txt"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF\eclipse.inf"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\asl-v20.txt"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF\eclipse.inf"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF\ECLIPSE_.SF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF\ECLIPSE_.RSA"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF\eclipse.inf"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\META-INF\MANIFEST.MF"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\eclipse_update_120.jpg"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\license.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\epl-v10.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\eclipse_update_120.jpg"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002\about.html"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.rcp.product_5.5.2.174165\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.rcp.product_5.5.2.174165\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp_5.5.2.174165\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp_5.5.2.174165\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.zh_CN_5.5.2.174165\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.zh_CN_5.5.2.174165\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.ja_5.5.2.174165\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.ja_5.5.2.174165\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.flightrecorder_5.5.2.174165\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.flightrecorder_5.5.2.174165\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.core_5.5.2.174165\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.core_5.5.2.174165\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.console_5.5.2.174165\feature.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.console_5.5.2.174165\feature.properties"
  Delete "$INSTDIR\runtime\lib\missioncontrol\dropins\README.TXT"
  Delete "$INSTDIR\runtime\lib\missioncontrol\configuration\org.eclipse.update\platform.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\configuration\org.eclipse.equinox.simpleconfigurator\bundles.info"
  Delete "$INSTDIR\runtime\lib\missioncontrol\configuration\config.ini"
  Delete "$INSTDIR\runtime\lib\missioncontrol\artifacts.xml"
  Delete "$INSTDIR\runtime\lib\missioncontrol\.eclipseproduct"
  Delete "$INSTDIR\runtime\lib\meta-index"
  Delete "$INSTDIR\runtime\lib\management-agent.jar"
  Delete "$INSTDIR\runtime\lib\management\snmp.acl.template"
  Delete "$INSTDIR\runtime\lib\management\management.properties"
  Delete "$INSTDIR\runtime\lib\management\jmxremote.password.template"
  Delete "$INSTDIR\runtime\lib\management\jmxremote.access"
  Delete "$INSTDIR\runtime\lib\logging.properties"
  Delete "$INSTDIR\runtime\lib\jvm.lib"
  Delete "$INSTDIR\runtime\lib\jvm.hprof.txt"
  Delete "$INSTDIR\runtime\lib\jsse.jar"
  Delete "$INSTDIR\runtime\lib\jfxswt.jar"
  Delete "$INSTDIR\runtime\lib\jfr.jar"
  Delete "$INSTDIR\runtime\lib\jfr\profile.jfc"
  Delete "$INSTDIR\runtime\lib\jfr\default.jfc"
  Delete "$INSTDIR\runtime\lib\jconsole.jar"
  Delete "$INSTDIR\runtime\lib\jce.jar"
  Delete "$INSTDIR\runtime\lib\jawt.lib"
  Delete "$INSTDIR\runtime\lib\javaws.jar"
  Delete "$INSTDIR\runtime\lib\javafx.properties"
  Delete "$INSTDIR\runtime\lib\javafx-mx.jar"
  Delete "$INSTDIR\runtime\lib\ir.idl"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_MoveNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_MoveDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_LinkNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_LinkDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_CopyNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_CopyDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\invalid32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\cursors.properties"
  Delete "$INSTDIR\runtime\lib\hijrah-config-umalqura.properties"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaTypewriterRegular.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaTypewriterBold.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaSansRegular.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaSansDemiBold.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaBrightRegular.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaBrightItalic.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaBrightDemiItalic.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaBrightDemiBold.ttf"
  Delete "$INSTDIR\runtime\lib\fontconfig.properties.src"
  Delete "$INSTDIR\runtime\lib\fontconfig.bfc"
  Delete "$INSTDIR\runtime\lib\flavormap.properties"
  Delete "$INSTDIR\runtime\lib\ext\zipfs.jar"
  Delete "$INSTDIR\runtime\lib\ext\sunpkcs11.jar"
  Delete "$INSTDIR\runtime\lib\ext\sunmscapi.jar"
  Delete "$INSTDIR\runtime\lib\ext\sunjce_provider.jar"
  Delete "$INSTDIR\runtime\lib\ext\sunec.jar"
  Delete "$INSTDIR\runtime\lib\ext\nashorn.jar"
  Delete "$INSTDIR\runtime\lib\ext\meta-index"
  Delete "$INSTDIR\runtime\lib\ext\localedata.jar"
  Delete "$INSTDIR\runtime\lib\ext\jfxrt.jar"
  Delete "$INSTDIR\runtime\lib\ext\jaccess.jar"
  Delete "$INSTDIR\runtime\lib\ext\dnsns.jar"
  Delete "$INSTDIR\runtime\lib\ext\cldrdata.jar"
  Delete "$INSTDIR\runtime\lib\ext\access-bridge-64.jar"
  Delete "$INSTDIR\runtime\lib\dt.jar"
  Delete "$INSTDIR\runtime\lib\deploy.jar"
  Delete "$INSTDIR\runtime\lib\deploy\splash_11@2x-lic.gif"
  Delete "$INSTDIR\runtime\lib\deploy\splash_11-lic.gif"
  Delete "$INSTDIR\runtime\lib\deploy\splash@2x.gif"
  Delete "$INSTDIR\runtime\lib\deploy\splash.gif"
  Delete "$INSTDIR\runtime\lib\deploy\messages_zh_TW.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_zh_HK.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_zh_CN.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_sv.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_pt_BR.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_ko.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_ja.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_it.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_fr.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_es.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_de.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages.properties"
  Delete "$INSTDIR\runtime\lib\deploy\ffjcext.zip"
  Delete "$INSTDIR\runtime\lib\currency.data"
  Delete "$INSTDIR\runtime\lib\ct.sym"
  Delete "$INSTDIR\runtime\lib\content-types.properties"
  Delete "$INSTDIR\runtime\lib\cmm\sRGB.pf"
  Delete "$INSTDIR\runtime\lib\cmm\PYCC.pf"
  Delete "$INSTDIR\runtime\lib\cmm\LINEAR_RGB.pf"
  Delete "$INSTDIR\runtime\lib\cmm\GRAY.pf"
  Delete "$INSTDIR\runtime\lib\cmm\CIEXYZ.pf"
  Delete "$INSTDIR\runtime\lib\classlist"
  Delete "$INSTDIR\runtime\lib\charsets.jar"
  Delete "$INSTDIR\runtime\lib\calendars.properties"
  Delete "$INSTDIR\runtime\lib\ant-javafx.jar"
  Delete "$INSTDIR\runtime\lib\amd64\jvm.cfg"
  Delete "$INSTDIR\runtime\lib\accessibility.properties"
  Delete "$INSTDIR\runtime\jre\Welcome.html"
  Delete "$INSTDIR\runtime\jre\THIRDPARTYLICENSEREADME.txt"
  Delete "$INSTDIR\runtime\jre\THIRDPARTYLICENSEREADME-JAVAFX.txt"
  Delete "$INSTDIR\runtime\jre\README.txt"
  Delete "$INSTDIR\runtime\jre\LICENSE"
  Delete "$INSTDIR\runtime\jre\lib\tzmappings"
  Delete "$INSTDIR\runtime\jre\lib\tzdb.dat"
  Delete "$INSTDIR\runtime\jre\lib\sound.properties"
  Delete "$INSTDIR\runtime\jre\lib\security\trusted.libraries"
  Delete "$INSTDIR\runtime\jre\lib\security\policy\unlimited\US_export_policy.jar"
  Delete "$INSTDIR\runtime\jre\lib\security\policy\unlimited\local_policy.jar"
  Delete "$INSTDIR\runtime\jre\lib\security\policy\limited\US_export_policy.jar"
  Delete "$INSTDIR\runtime\jre\lib\security\policy\limited\local_policy.jar"
  Delete "$INSTDIR\runtime\jre\lib\security\javaws.policy"
  Delete "$INSTDIR\runtime\jre\lib\security\java.security"
  Delete "$INSTDIR\runtime\jre\lib\security\java.policy"
  Delete "$INSTDIR\runtime\jre\lib\security\cacerts"
  Delete "$INSTDIR\runtime\jre\lib\security\blacklisted.certs"
  Delete "$INSTDIR\runtime\jre\lib\security\blacklist"
  Delete "$INSTDIR\runtime\jre\lib\rt.jar"
  Delete "$INSTDIR\runtime\jre\lib\resources.jar"
  Delete "$INSTDIR\runtime\jre\lib\psfontj2d.properties"
  Delete "$INSTDIR\runtime\jre\lib\psfont.properties.ja"
  Delete "$INSTDIR\runtime\jre\lib\plugin.jar"
  Delete "$INSTDIR\runtime\jre\lib\net.properties"
  Delete "$INSTDIR\runtime\jre\lib\meta-index"
  Delete "$INSTDIR\runtime\jre\lib\management-agent.jar"
  Delete "$INSTDIR\runtime\jre\lib\management\snmp.acl.template"
  Delete "$INSTDIR\runtime\jre\lib\management\management.properties"
  Delete "$INSTDIR\runtime\jre\lib\management\jmxremote.password.template"
  Delete "$INSTDIR\runtime\jre\lib\management\jmxremote.access"
  Delete "$INSTDIR\runtime\jre\lib\logging.properties"
  Delete "$INSTDIR\runtime\jre\lib\jvm.hprof.txt"
  Delete "$INSTDIR\runtime\jre\lib\jsse.jar"
  Delete "$INSTDIR\runtime\jre\lib\jfxswt.jar"
  Delete "$INSTDIR\runtime\jre\lib\jfr.jar"
  Delete "$INSTDIR\runtime\jre\lib\jfr\profile.jfc"
  Delete "$INSTDIR\runtime\jre\lib\jfr\default.jfc"
  Delete "$INSTDIR\runtime\jre\lib\jce.jar"
  Delete "$INSTDIR\runtime\jre\lib\javaws.jar"
  Delete "$INSTDIR\runtime\jre\lib\javafx.properties"
  Delete "$INSTDIR\runtime\jre\lib\images\cursors\win32_MoveNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\jre\lib\images\cursors\win32_MoveDrop32x32.gif"
  Delete "$INSTDIR\runtime\jre\lib\images\cursors\win32_LinkNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\jre\lib\images\cursors\win32_LinkDrop32x32.gif"
  Delete "$INSTDIR\runtime\jre\lib\images\cursors\win32_CopyNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\jre\lib\images\cursors\win32_CopyDrop32x32.gif"
  Delete "$INSTDIR\runtime\jre\lib\images\cursors\invalid32x32.gif"
  Delete "$INSTDIR\runtime\jre\lib\images\cursors\cursors.properties"
  Delete "$INSTDIR\runtime\jre\lib\hijrah-config-umalqura.properties"
  Delete "$INSTDIR\runtime\jre\lib\fonts\LucidaTypewriterRegular.ttf"
  Delete "$INSTDIR\runtime\jre\lib\fonts\LucidaTypewriterBold.ttf"
  Delete "$INSTDIR\runtime\jre\lib\fonts\LucidaSansRegular.ttf"
  Delete "$INSTDIR\runtime\jre\lib\fonts\LucidaSansDemiBold.ttf"
  Delete "$INSTDIR\runtime\jre\lib\fonts\LucidaBrightRegular.ttf"
  Delete "$INSTDIR\runtime\jre\lib\fonts\LucidaBrightItalic.ttf"
  Delete "$INSTDIR\runtime\jre\lib\fonts\LucidaBrightDemiItalic.ttf"
  Delete "$INSTDIR\runtime\jre\lib\fonts\LucidaBrightDemiBold.ttf"
  Delete "$INSTDIR\runtime\jre\lib\fontconfig.properties.src"
  Delete "$INSTDIR\runtime\jre\lib\fontconfig.bfc"
  Delete "$INSTDIR\runtime\jre\lib\flavormap.properties"
  Delete "$INSTDIR\runtime\jre\lib\ext\zipfs.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\sunpkcs11.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\sunmscapi.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\sunjce_provider.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\sunec.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\nashorn.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\meta-index"
  Delete "$INSTDIR\runtime\jre\lib\ext\localedata.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\jfxrt.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\jaccess.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\dnsns.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\cldrdata.jar"
  Delete "$INSTDIR\runtime\jre\lib\ext\access-bridge-64.jar"
  Delete "$INSTDIR\runtime\jre\lib\deploy.jar"
  Delete "$INSTDIR\runtime\jre\lib\deploy\splash_11@2x-lic.gif"
  Delete "$INSTDIR\runtime\jre\lib\deploy\splash_11-lic.gif"
  Delete "$INSTDIR\runtime\jre\lib\deploy\splash@2x.gif"
  Delete "$INSTDIR\runtime\jre\lib\deploy\splash.gif"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_zh_TW.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_zh_HK.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_zh_CN.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_sv.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_pt_BR.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_ko.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_ja.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_it.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_fr.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_es.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages_de.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\messages.properties"
  Delete "$INSTDIR\runtime\jre\lib\deploy\ffjcext.zip"
  Delete "$INSTDIR\runtime\jre\lib\currency.data"
  Delete "$INSTDIR\runtime\jre\lib\content-types.properties"
  Delete "$INSTDIR\runtime\jre\lib\cmm\sRGB.pf"
  Delete "$INSTDIR\runtime\jre\lib\cmm\PYCC.pf"
  Delete "$INSTDIR\runtime\jre\lib\cmm\LINEAR_RGB.pf"
  Delete "$INSTDIR\runtime\jre\lib\cmm\GRAY.pf"
  Delete "$INSTDIR\runtime\jre\lib\cmm\CIEXYZ.pf"
  Delete "$INSTDIR\runtime\jre\lib\classlist"
  Delete "$INSTDIR\runtime\jre\lib\charsets.jar"
  Delete "$INSTDIR\runtime\jre\lib\calendars.properties"
  Delete "$INSTDIR\runtime\jre\lib\amd64\jvm.cfg"
  Delete "$INSTDIR\runtime\jre\lib\accessibility.properties"
  Delete "$INSTDIR\runtime\jre\COPYRIGHT"
  Delete "$INSTDIR\runtime\jre\bin\zip.dll"
  Delete "$INSTDIR\runtime\jre\bin\wsdetect.dll"
  Delete "$INSTDIR\runtime\jre\bin\WindowsAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\jre\bin\w2k_lsa_auth.dll"
  Delete "$INSTDIR\runtime\jre\bin\verify.dll"
  Delete "$INSTDIR\runtime\jre\bin\vcruntime140.dll"
  Delete "$INSTDIR\runtime\jre\bin\unpack200.exe"
  Delete "$INSTDIR\runtime\jre\bin\unpack.dll"
  Delete "$INSTDIR\runtime\jre\bin\ucrtbase.dll"
  Delete "$INSTDIR\runtime\jre\bin\tnameserv.exe"
  Delete "$INSTDIR\runtime\jre\bin\t2k.dll"
  Delete "$INSTDIR\runtime\jre\bin\sunmscapi.dll"
  Delete "$INSTDIR\runtime\jre\bin\sunec.dll"
  Delete "$INSTDIR\runtime\jre\bin\ssvagent.exe"
  Delete "$INSTDIR\runtime\jre\bin\ssv.dll"
  Delete "$INSTDIR\runtime\jre\bin\splashscreen.dll"
  Delete "$INSTDIR\runtime\jre\bin\servertool.exe"
  Delete "$INSTDIR\runtime\jre\bin\server\Xusage.txt"
  Delete "$INSTDIR\runtime\jre\bin\server\jvm.dll"
  Delete "$INSTDIR\runtime\jre\bin\server\classes.jsa"
  Delete "$INSTDIR\runtime\jre\bin\sawindbg.dll"
  Delete "$INSTDIR\runtime\jre\bin\rmiregistry.exe"
  Delete "$INSTDIR\runtime\jre\bin\rmid.exe"
  Delete "$INSTDIR\runtime\jre\bin\resource.dll"
  Delete "$INSTDIR\runtime\jre\bin\prism_sw.dll"
  Delete "$INSTDIR\runtime\jre\bin\prism_d3d.dll"
  Delete "$INSTDIR\runtime\jre\bin\prism_common.dll"
  Delete "$INSTDIR\runtime\jre\bin\policytool.exe"
  Delete "$INSTDIR\runtime\jre\bin\plugin2\npjp2.dll"
  Delete "$INSTDIR\runtime\jre\bin\plugin2\msvcr100.dll"
  Delete "$INSTDIR\runtime\jre\bin\pack200.exe"
  Delete "$INSTDIR\runtime\jre\bin\orbd.exe"
  Delete "$INSTDIR\runtime\jre\bin\npt.dll"
  Delete "$INSTDIR\runtime\jre\bin\nio.dll"
  Delete "$INSTDIR\runtime\jre\bin\net.dll"
  Delete "$INSTDIR\runtime\jre\bin\msvcr100.dll"
  Delete "$INSTDIR\runtime\jre\bin\msvcp140.dll"
  Delete "$INSTDIR\runtime\jre\bin\mlib_image.dll"
  Delete "$INSTDIR\runtime\jre\bin\management.dll"
  Delete "$INSTDIR\runtime\jre\bin\lcms.dll"
  Delete "$INSTDIR\runtime\jre\bin\ktab.exe"
  Delete "$INSTDIR\runtime\jre\bin\klist.exe"
  Delete "$INSTDIR\runtime\jre\bin\kinit.exe"
  Delete "$INSTDIR\runtime\jre\bin\keytool.exe"
  Delete "$INSTDIR\runtime\jre\bin\jsoundds.dll"
  Delete "$INSTDIR\runtime\jre\bin\jsound.dll"
  Delete "$INSTDIR\runtime\jre\bin\jsdt.dll"
  Delete "$INSTDIR\runtime\jre\bin\jpeg.dll"
  Delete "$INSTDIR\runtime\jre\bin\jp2ssv.dll"
  Delete "$INSTDIR\runtime\jre\bin\jp2native.dll"
  Delete "$INSTDIR\runtime\jre\bin\jp2launcher.exe"
  Delete "$INSTDIR\runtime\jre\bin\jp2iexp.dll"
  Delete "$INSTDIR\runtime\jre\bin\jli.dll"
  Delete "$INSTDIR\runtime\jre\bin\jjs.exe"
  Delete "$INSTDIR\runtime\jre\bin\jfxwebkit.dll"
  Delete "$INSTDIR\runtime\jre\bin\jfxmedia.dll"
  Delete "$INSTDIR\runtime\jre\bin\jfr.dll"
  Delete "$INSTDIR\runtime\jre\bin\jdwp.dll"
  Delete "$INSTDIR\runtime\jre\bin\JAWTAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\jre\bin\jawt.dll"
  Delete "$INSTDIR\runtime\jre\bin\java_crw_demo.dll"
  Delete "$INSTDIR\runtime\jre\bin\javaws.exe"
  Delete "$INSTDIR\runtime\jre\bin\javaw.exe"
  Delete "$INSTDIR\runtime\jre\bin\javafx_iio.dll"
  Delete "$INSTDIR\runtime\jre\bin\javafx_font_t2k.dll"
  Delete "$INSTDIR\runtime\jre\bin\javafx_font.dll"
  Delete "$INSTDIR\runtime\jre\bin\javacpl.exe"
  Delete "$INSTDIR\runtime\jre\bin\javacpl.cpl"
  Delete "$INSTDIR\runtime\jre\bin\JavaAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\jre\bin\java.exe"
  Delete "$INSTDIR\runtime\jre\bin\java.dll"
  Delete "$INSTDIR\runtime\jre\bin\java-rmi.exe"
  Delete "$INSTDIR\runtime\jre\bin\jabswitch.exe"
  Delete "$INSTDIR\runtime\jre\bin\jaas_nt.dll"
  Delete "$INSTDIR\runtime\jre\bin\j2pkcs11.dll"
  Delete "$INSTDIR\runtime\jre\bin\j2pcsc.dll"
  Delete "$INSTDIR\runtime\jre\bin\instrument.dll"
  Delete "$INSTDIR\runtime\jre\bin\hprof.dll"
  Delete "$INSTDIR\runtime\jre\bin\gstreamer-lite.dll"
  Delete "$INSTDIR\runtime\jre\bin\glib-lite.dll"
  Delete "$INSTDIR\runtime\jre\bin\glass.dll"
  Delete "$INSTDIR\runtime\jre\bin\fxplugins.dll"
  Delete "$INSTDIR\runtime\jre\bin\fontmanager.dll"
  Delete "$INSTDIR\runtime\jre\bin\eula.dll"
  Delete "$INSTDIR\runtime\jre\bin\dt_socket.dll"
  Delete "$INSTDIR\runtime\jre\bin\dt_shmem.dll"
  Delete "$INSTDIR\runtime\jre\bin\dtplugin\npdeployJava1.dll"
  Delete "$INSTDIR\runtime\jre\bin\dtplugin\deployJava1.dll"
  Delete "$INSTDIR\runtime\jre\bin\deploy.dll"
  Delete "$INSTDIR\runtime\jre\bin\decora_sse.dll"
  Delete "$INSTDIR\runtime\jre\bin\dcpr.dll"
  Delete "$INSTDIR\runtime\jre\bin\concrt140.dll"
  Delete "$INSTDIR\runtime\jre\bin\bci.dll"
  Delete "$INSTDIR\runtime\jre\bin\awt.dll"
  Delete "$INSTDIR\runtime\jre\bin\attach.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-utility-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-time-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-string-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-stdio-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-runtime-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-process-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-private-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-multibyte-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-math-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-locale-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-heap-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-filesystem-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-environment-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-convert-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-crt-conio-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-util-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-timezone-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-sysinfo-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-synch-l1-2-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-synch-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-string-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-rtlsupport-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-profile-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-processthreads-l1-1-1.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-processthreads-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-processenvironment-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-namedpipe-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-memory-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-localization-l1-2-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-libraryloader-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-interlocked-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-heap-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-handle-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-file-l2-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-file-l1-2-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-file-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-errorhandling-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-debug-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-datetime-l1-1-0.dll"
  Delete "$INSTDIR\runtime\jre\bin\api-ms-win-core-console-l1-1-0.dll"
  Delete "$INSTDIR\runtime\javafx-src.zip"
  Delete "$INSTDIR\runtime\include\win32\jni_md.h"
  Delete "$INSTDIR\runtime\include\win32\jawt_md.h"
  Delete "$INSTDIR\runtime\include\win32\bridge\AccessBridgePackages.h"
  Delete "$INSTDIR\runtime\include\win32\bridge\AccessBridgeCalls.h"
  Delete "$INSTDIR\runtime\include\win32\bridge\AccessBridgeCalls.c"
  Delete "$INSTDIR\runtime\include\win32\bridge\AccessBridgeCallbacks.h"
  Delete "$INSTDIR\runtime\include\jvmticmlr.h"
  Delete "$INSTDIR\runtime\include\jvmti.h"
  Delete "$INSTDIR\runtime\include\jni.h"
  Delete "$INSTDIR\runtime\include\jdwpTransport.h"
  Delete "$INSTDIR\runtime\include\jawt.h"
  Delete "$INSTDIR\runtime\include\classfile_constants.h"
  Delete "$INSTDIR\runtime\COPYRIGHT"
  Delete "$INSTDIR\runtime\bin\zip.dll"
  Delete "$INSTDIR\runtime\bin\xjc.exe"
  Delete "$INSTDIR\runtime\bin\wsimport.exe"
  Delete "$INSTDIR\runtime\bin\wsgen.exe"
  Delete "$INSTDIR\runtime\bin\wsdetect.dll"
  Delete "$INSTDIR\runtime\bin\WindowsAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\bin\w2k_lsa_auth.dll"
  Delete "$INSTDIR\runtime\bin\verify.dll"
  Delete "$INSTDIR\runtime\bin\vcruntime140.dll"
  Delete "$INSTDIR\runtime\bin\unpack200.exe"
  Delete "$INSTDIR\runtime\bin\unpack.dll"
  Delete "$INSTDIR\runtime\bin\ucrtbase.dll"
  Delete "$INSTDIR\runtime\bin\tnameserv.exe"
  Delete "$INSTDIR\runtime\bin\t2k.dll"
  Delete "$INSTDIR\runtime\bin\sunmscapi.dll"
  Delete "$INSTDIR\runtime\bin\sunec.dll"
  Delete "$INSTDIR\runtime\bin\ssvagent.exe"
  Delete "$INSTDIR\runtime\bin\ssv.dll"
  Delete "$INSTDIR\runtime\bin\splashscreen.dll"
  Delete "$INSTDIR\runtime\bin\servertool.exe"
  Delete "$INSTDIR\runtime\bin\server\Xusage.txt"
  Delete "$INSTDIR\runtime\bin\server\jvm.dll"
  Delete "$INSTDIR\runtime\bin\server\classes.jsa"
  Delete "$INSTDIR\runtime\bin\serialver.exe"
  Delete "$INSTDIR\runtime\bin\schemagen.exe"
  Delete "$INSTDIR\runtime\bin\sawindbg.dll"
  Delete "$INSTDIR\runtime\bin\rmiregistry.exe"
  Delete "$INSTDIR\runtime\bin\rmid.exe"
  Delete "$INSTDIR\runtime\bin\rmic.exe"
  Delete "$INSTDIR\runtime\bin\resource.dll"
  Delete "$INSTDIR\runtime\bin\prism_sw.dll"
  Delete "$INSTDIR\runtime\bin\prism_d3d.dll"
  Delete "$INSTDIR\runtime\bin\prism_common.dll"
  Delete "$INSTDIR\runtime\bin\policytool.exe"
  Delete "$INSTDIR\runtime\bin\plugin2\npjp2.dll"
  Delete "$INSTDIR\runtime\bin\plugin2\msvcr100.dll"
  Delete "$INSTDIR\runtime\bin\pack200.exe"
  Delete "$INSTDIR\runtime\bin\orbd.exe"
  Delete "$INSTDIR\runtime\bin\npt.dll"
  Delete "$INSTDIR\runtime\bin\nio.dll"
  Delete "$INSTDIR\runtime\bin\net.dll"
  Delete "$INSTDIR\runtime\bin\native2ascii.exe"
  Delete "$INSTDIR\runtime\bin\msvcr100.dll"
  Delete "$INSTDIR\runtime\bin\msvcp140.dll"
  Delete "$INSTDIR\runtime\bin\mlib_image.dll"
  Delete "$INSTDIR\runtime\bin\management.dll"
  Delete "$INSTDIR\runtime\bin\lcms.dll"
  Delete "$INSTDIR\runtime\bin\ktab.exe"
  Delete "$INSTDIR\runtime\bin\klist.exe"
  Delete "$INSTDIR\runtime\bin\kinit.exe"
  Delete "$INSTDIR\runtime\bin\keytool.exe"
  Delete "$INSTDIR\runtime\bin\jvisualvm.exe"
  Delete "$INSTDIR\runtime\bin\jstatd.exe"
  Delete "$INSTDIR\runtime\bin\jstat.exe"
  Delete "$INSTDIR\runtime\bin\jstack.exe"
  Delete "$INSTDIR\runtime\bin\jsoundds.dll"
  Delete "$INSTDIR\runtime\bin\jsound.dll"
  Delete "$INSTDIR\runtime\bin\jsdt.dll"
  Delete "$INSTDIR\runtime\bin\jsadebugd.exe"
  Delete "$INSTDIR\runtime\bin\jrunscript.exe"
  Delete "$INSTDIR\runtime\bin\jps.exe"
  Delete "$INSTDIR\runtime\bin\jpeg.dll"
  Delete "$INSTDIR\runtime\bin\jp2ssv.dll"
  Delete "$INSTDIR\runtime\bin\jp2native.dll"
  Delete "$INSTDIR\runtime\bin\jp2launcher.exe"
  Delete "$INSTDIR\runtime\bin\jp2iexp.dll"
  Delete "$INSTDIR\runtime\bin\jmc.ini"
  Delete "$INSTDIR\runtime\bin\jmc.exe"
  Delete "$INSTDIR\runtime\bin\jmap.exe"
  Delete "$INSTDIR\runtime\bin\jli.dll"
  Delete "$INSTDIR\runtime\bin\jjs.exe"
  Delete "$INSTDIR\runtime\bin\jinfo.exe"
  Delete "$INSTDIR\runtime\bin\jhat.exe"
  Delete "$INSTDIR\runtime\bin\jfxwebkit.dll"
  Delete "$INSTDIR\runtime\bin\jfxmedia.dll"
  Delete "$INSTDIR\runtime\bin\jfr.dll"
  Delete "$INSTDIR\runtime\bin\jdwp.dll"
  Delete "$INSTDIR\runtime\bin\jdeps.exe"
  Delete "$INSTDIR\runtime\bin\jdb.exe"
  Delete "$INSTDIR\runtime\bin\jconsole.exe"
  Delete "$INSTDIR\runtime\bin\jcmd.exe"
  Delete "$INSTDIR\runtime\bin\JAWTAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\bin\jawt.dll"
  Delete "$INSTDIR\runtime\bin\java_crw_demo.dll"
  Delete "$INSTDIR\runtime\bin\javaws.exe"
  Delete "$INSTDIR\runtime\bin\javaw.exe"
  Delete "$INSTDIR\runtime\bin\javapackager.exe"
  Delete "$INSTDIR\runtime\bin\javap.exe"
  Delete "$INSTDIR\runtime\bin\javah.exe"
  Delete "$INSTDIR\runtime\bin\javafx_iio.dll"
  Delete "$INSTDIR\runtime\bin\javafx_font_t2k.dll"
  Delete "$INSTDIR\runtime\bin\javafx_font.dll"
  Delete "$INSTDIR\runtime\bin\javafxpackager.exe"
  Delete "$INSTDIR\runtime\bin\javadoc.exe"
  Delete "$INSTDIR\runtime\bin\javacpl.exe"
  Delete "$INSTDIR\runtime\bin\javacpl.cpl"
  Delete "$INSTDIR\runtime\bin\javac.exe"
  Delete "$INSTDIR\runtime\bin\JavaAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\bin\java.exe"
  Delete "$INSTDIR\runtime\bin\java.dll"
  Delete "$INSTDIR\runtime\bin\java-rmi.exe"
  Delete "$INSTDIR\runtime\bin\jarsigner.exe"
  Delete "$INSTDIR\runtime\bin\jar.exe"
  Delete "$INSTDIR\runtime\bin\jabswitch.exe"
  Delete "$INSTDIR\runtime\bin\jaas_nt.dll"
  Delete "$INSTDIR\runtime\bin\j2pkcs11.dll"
  Delete "$INSTDIR\runtime\bin\j2pcsc.dll"
  Delete "$INSTDIR\runtime\bin\instrument.dll"
  Delete "$INSTDIR\runtime\bin\idlj.exe"
  Delete "$INSTDIR\runtime\bin\hprof.dll"
  Delete "$INSTDIR\runtime\bin\gstreamer-lite.dll"
  Delete "$INSTDIR\runtime\bin\glib-lite.dll"
  Delete "$INSTDIR\runtime\bin\glass.dll"
  Delete "$INSTDIR\runtime\bin\fxplugins.dll"
  Delete "$INSTDIR\runtime\bin\fontmanager.dll"
  Delete "$INSTDIR\runtime\bin\extcheck.exe"
  Delete "$INSTDIR\runtime\bin\eula.dll"
  Delete "$INSTDIR\runtime\bin\dt_socket.dll"
  Delete "$INSTDIR\runtime\bin\dt_shmem.dll"
  Delete "$INSTDIR\runtime\bin\dtplugin\npdeployJava1.dll"
  Delete "$INSTDIR\runtime\bin\dtplugin\deployJava1.dll"
  Delete "$INSTDIR\runtime\bin\deploy.dll"
  Delete "$INSTDIR\runtime\bin\decora_sse.dll"
  Delete "$INSTDIR\runtime\bin\dcpr.dll"
  Delete "$INSTDIR\runtime\bin\concrt140.dll"
  Delete "$INSTDIR\runtime\bin\bci.dll"
  Delete "$INSTDIR\runtime\bin\awt.dll"
  Delete "$INSTDIR\runtime\bin\attach.dll"
  Delete "$INSTDIR\runtime\bin\appletviewer.exe"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-utility-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-time-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-string-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-stdio-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-runtime-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-process-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-private-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-multibyte-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-math-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-locale-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-heap-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-filesystem-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-environment-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-convert-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-conio-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-util-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-timezone-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-sysinfo-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-synch-l1-2-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-synch-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-string-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-rtlsupport-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-profile-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-processthreads-l1-1-1.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-processthreads-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-processenvironment-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-namedpipe-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-memory-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-localization-l1-2-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-libraryloader-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-interlocked-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-heap-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-handle-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-file-l2-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-file-l1-2-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-file-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-errorhandling-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-debug-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-datetime-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-console-l1-1-0.dll"
  Delete "$INSTDIR\ResMeterManager.jar"
  Delete "$INSTDIR\ResMeterManager.exe"
  Delete "$INSTDIR\res.db"
  Delete "$INSTDIR\remove_srv.bat"
  Delete "$INSTDIR\licence.txt"
  Delete "$INSTDIR\instsrv.exe"
  Delete "$INSTDIR\install.bat"
  Delete "$INSTDIR\vulkan-1.dll"
  Delete "$INSTDIR\vk_swiftshader_icd.json"
  Delete "$INSTDIR\vk_swiftshader.dll"
  Delete "$INSTDIR\v8_context_snapshot.bin"
  Delete "$INSTDIR\swiftshader\libGLESv2.dll"
  Delete "$INSTDIR\swiftshader\libEGL.dll"
  Delete "$INSTDIR\snapshot_blob.bin"
  Delete "$INSTDIR\resXmlParser.exe"
  Delete "$INSTDIR\resources.pak"
  Delete "$INSTDIR\resources\elevate.exe"
  Delete "$INSTDIR\resources\app.asar"
  Delete "$INSTDIR\resources\app-update.yml"
  Delete "$INSTDIR\locales\zh-TW.pak"
  Delete "$INSTDIR\locales\zh-CN.pak"
  Delete "$INSTDIR\locales\vi.pak"
  Delete "$INSTDIR\locales\uk.pak"
  Delete "$INSTDIR\locales\tr.pak"
  Delete "$INSTDIR\locales\th.pak"
  Delete "$INSTDIR\locales\te.pak"
  Delete "$INSTDIR\locales\ta.pak"
  Delete "$INSTDIR\locales\sw.pak"
  Delete "$INSTDIR\locales\sv.pak"
  Delete "$INSTDIR\locales\sr.pak"
  Delete "$INSTDIR\locales\sl.pak"
  Delete "$INSTDIR\locales\sk.pak"
  Delete "$INSTDIR\locales\ru.pak"
  Delete "$INSTDIR\locales\ro.pak"
  Delete "$INSTDIR\locales\pt-PT.pak"
  Delete "$INSTDIR\locales\pt-BR.pak"
  Delete "$INSTDIR\locales\pl.pak"
  Delete "$INSTDIR\locales\nl.pak"
  Delete "$INSTDIR\locales\nb.pak"
  Delete "$INSTDIR\locales\ms.pak"
  Delete "$INSTDIR\locales\mr.pak"
  Delete "$INSTDIR\locales\ml.pak"
  Delete "$INSTDIR\locales\lv.pak"
  Delete "$INSTDIR\locales\lt.pak"
  Delete "$INSTDIR\locales\ko.pak"
  Delete "$INSTDIR\locales\kn.pak"
  Delete "$INSTDIR\locales\ja.pak"
  Delete "$INSTDIR\locales\it.pak"
  Delete "$INSTDIR\locales\id.pak"
  Delete "$INSTDIR\locales\hu.pak"
  Delete "$INSTDIR\locales\hr.pak"
  Delete "$INSTDIR\locales\hi.pak"
  Delete "$INSTDIR\locales\he.pak"
  Delete "$INSTDIR\locales\gu.pak"
  Delete "$INSTDIR\locales\fr.pak"
  Delete "$INSTDIR\locales\fil.pak"
  Delete "$INSTDIR\locales\fi.pak"
  Delete "$INSTDIR\locales\fa.pak"
  Delete "$INSTDIR\locales\et.pak"
  Delete "$INSTDIR\locales\es.pak"
  Delete "$INSTDIR\locales\es-419.pak"
  Delete "$INSTDIR\locales\en-US.pak"
  Delete "$INSTDIR\locales\en-GB.pak"
  Delete "$INSTDIR\locales\el.pak"
  Delete "$INSTDIR\locales\de.pak"
  Delete "$INSTDIR\locales\da.pak"
  Delete "$INSTDIR\locales\cs.pak"
  Delete "$INSTDIR\locales\ca.pak"
  Delete "$INSTDIR\locales\bn.pak"
  Delete "$INSTDIR\locales\bg.pak"
  Delete "$INSTDIR\locales\ar.pak"
  Delete "$INSTDIR\locales\am.pak"
  Delete "$INSTDIR\LICENSES.chromium.html"
  Delete "$INSTDIR\LICENSE.electron.txt"
  Delete "$INSTDIR\libGLESv2.dll"
  Delete "$INSTDIR\libEGL.dll"
  Delete "$INSTDIR\icudtl.dat"
  Delete "$INSTDIR\ffmpeg.dll"
  Delete "$INSTDIR\d3dcompiler_47.dll"
  Delete "$INSTDIR\chrome_200_percent.pak"
  Delete "$INSTDIR\chrome_100_percent.pak"
 
  Delete "$SMPROGRAMS\resXmlParser\Uninstall.lnk"
  Delete "$DESKTOP\resXmlParser.lnk"
  Delete "$SMPROGRAMS\resXmlParser\resXmlParser.lnk"
 
  RMDir "$SMPROGRAMS\resXmlParser"
  RMDir "$INSTDIR\swiftshader"
  RMDir "$INSTDIR\runtime\lib\visualvm\visualvm\update_tracking"
  RMDir "$INSTDIR\runtime\lib\visualvm\visualvm\modules\locale"
  RMDir "$INSTDIR\runtime\lib\visualvm\visualvm\modules"
  RMDir "$INSTDIR\runtime\lib\visualvm\visualvm\core\locale"
  RMDir "$INSTDIR\runtime\lib\visualvm\visualvm\core"
  RMDir "$INSTDIR\runtime\lib\visualvm\visualvm\config\Modules"
  RMDir "$INSTDIR\runtime\lib\visualvm\visualvm"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler\update_tracking"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler\modules\locale"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler\modules"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler\lib\locale"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler\lib\deployed\jdk16\windows-amd64"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler\lib\deployed\jdk15\windows-amd64"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler\lib"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler\config\Modules"
  RMDir "$INSTDIR\runtime\lib\visualvm\profiler"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\update_tracking"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\modules\locale"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\modules\ext\locale"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\modules\ext"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\modules"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\lib\locale"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\lib"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\core\locale"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\core"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\config\Modules"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform\config\ModuleAutoDeps"
  RMDir "$INSTDIR\runtime\lib\visualvm\platform"
  RMDir "$INSTDIR\runtime\lib\visualvm\etc"
  RMDir "$INSTDIR\runtime\lib\security\policy\unlimited"
  RMDir "$INSTDIR\runtime\lib\security\policy\limited"
  RMDir "$INSTDIR\runtime\lib\security"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\images"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css\dark"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717\css"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.ui.themes_1.0.1.v20140819-1717"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20141007-2033"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\schema"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\lib"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165\icons"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.rjmx_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\icons"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\html"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\gifs"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html\dcommon\css"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165\html"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins\com.jrockit.mc.console.ui.notification_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\plugins"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\profileRegistry\JMC.profile"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.engine\.settings"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache\binary"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\p2\org.eclipse.equinox.p2.core\cache"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.rcp_4.4.0.v20141007-2301"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.help_2.0.102.v20141007-2301"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.rcp.feature_1.2.0.v20140523-0116"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.equinox.p2.core.feature_1.3.0.v20140523-0116"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.ecore_2.10.1.v20140901-1043"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.emf.common_2.10.1.v20140901-1043"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20140827-1444"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20140827-1444"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.httpclient4.feature_3.9.1.v20140827-1444"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.filetransfer.feature_3.9.0.v20140827-1444"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.ssl.feature_1.0.0.v20140827-1444"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.ecf.core.feature_1.1.0.v20140827-1444"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033\META-INF"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.e4.rcp_1.3.100.v20141007-2033"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_zh_4.4.0.v20140623020002"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\org.eclipse.babel.nls_eclipse_ja_4.4.0.v20140623020002"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.rcp.product_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.zh_CN_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.rcp.ja_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.flightrecorder_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.core_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\features\com.jrockit.mc.feature.console_5.5.2.174165"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\dropins"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\configuration\org.eclipse.update"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\configuration\org.eclipse.equinox.simpleconfigurator"
  RMDir "$INSTDIR\runtime\lib\missioncontrol\configuration"
  RMDir "$INSTDIR\runtime\lib\missioncontrol"
  RMDir "$INSTDIR\runtime\lib\management"
  RMDir "$INSTDIR\runtime\lib\jfr"
  RMDir "$INSTDIR\runtime\lib\images\cursors"
  RMDir "$INSTDIR\runtime\lib\fonts"
  RMDir "$INSTDIR\runtime\lib\ext"
  RMDir "$INSTDIR\runtime\lib\deploy"
  RMDir "$INSTDIR\runtime\lib\cmm"
  RMDir "$INSTDIR\runtime\lib\amd64"
  RMDir "$INSTDIR\runtime\lib"
  RMDir "$INSTDIR\runtime\jre\lib\security\policy\unlimited"
  RMDir "$INSTDIR\runtime\jre\lib\security\policy\limited"
  RMDir "$INSTDIR\runtime\jre\lib\security"
  RMDir "$INSTDIR\runtime\jre\lib\management"
  RMDir "$INSTDIR\runtime\jre\lib\jfr"
  RMDir "$INSTDIR\runtime\jre\lib\images\cursors"
  RMDir "$INSTDIR\runtime\jre\lib\fonts"
  RMDir "$INSTDIR\runtime\jre\lib\ext"
  RMDir "$INSTDIR\runtime\jre\lib\deploy"
  RMDir "$INSTDIR\runtime\jre\lib\cmm"
  RMDir "$INSTDIR\runtime\jre\lib\amd64"
  RMDir "$INSTDIR\runtime\jre\lib"
  RMDir "$INSTDIR\runtime\jre\bin\server"
  RMDir "$INSTDIR\runtime\jre\bin\plugin2"
  RMDir "$INSTDIR\runtime\jre\bin\dtplugin"
  RMDir "$INSTDIR\runtime\jre\bin"
  RMDir "$INSTDIR\runtime\jre"
  RMDir "$INSTDIR\runtime\include\win32\bridge"
  RMDir "$INSTDIR\runtime\include\win32"
  RMDir "$INSTDIR\runtime\include"
  RMDir "$INSTDIR\runtime\bin\server"
  RMDir "$INSTDIR\runtime\bin\plugin2"
  RMDir "$INSTDIR\runtime\bin\dtplugin"
  RMDir "$INSTDIR\runtime\bin"
  RMDir "$INSTDIR\runtime"
  RMDir "$INSTDIR\resources"
  RMDir "$INSTDIR\locales"
  RMDir "$INSTDIR"
 
  DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
  DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
  SetAutoClose true
SectionEnd