aboutsummaryrefslogblamecommitdiff
path: root/java/sablevm-classpath/pkg-plist
blob: 91765cffaafb4fda1409603748c6b16a377e6d83 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332

                                   




                                                
                                                

                                           

                                         

                                                

                                           

                                        

                                         

                                                
                                           
                             

                                        

























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                    
include/sablevm-classpath/jawt.h
include/sablevm-classpath/jawt_md.h
%%WITH_ZIP%%lib/sablevm/lib/libclasspath.jar
%%WITH_ZIP%%lib/sablevm/lib/resources.jar
%%WITH_ZIP%%lib/sablevm/jre/lib/libclasspath.jar
%%WITH_ZIP%%lib/sablevm/jre/lib/resources.jar
%%WITH_ZIP%%lib/sablevm/jre/lib/rt.jar
%%GTK2%%lib/sablevm-classpath/libgtkpeer-1.13.so
%%GTK2%%lib/sablevm-classpath/libgtkpeer.so
lib/sablevm-classpath/libjavaio-1.13.so
lib/sablevm-classpath/libjavaio.so
lib/sablevm-classpath/libjavalang-1.13.so
lib/sablevm-classpath/libjavalang.so
lib/sablevm-classpath/libjavalangreflect-1.13.so
lib/sablevm-classpath/libjavalangreflect.so
lib/sablevm-classpath/libjavanet-1.13.so
lib/sablevm-classpath/libjavanet.so
lib/sablevm-classpath/libjavanio-1.13.so
lib/sablevm-classpath/libjavanio.so
lib/sablevm-classpath/libjavautil-1.13.so
lib/sablevm-classpath/libjavautil.so
%%GTK2%%lib/sablevm-classpath/libjawtgnu-1.13.so
%%GTK2%%lib/sablevm-classpath/libjawtgnu.so
lib/security/SableVM.security
%%WITH_ZIP%%%%DATADIR%%/libclasspath.jar
%%WITH_ZIP%%%%DATADIR%%/resources.jar
%%WITHOUT_ZIP%%%%DATADIR%%/META-INF/services/javax.sound.midi.spi.MidiDeviceProvider
%%WITHOUT_ZIP%%%%DATADIR%%/META-INF/services/javax.xml.parsers.DocumentBuilderFactory
%%WITHOUT_ZIP%%%%DATADIR%%/META-INF/services/javax.xml.parsers.SAXParserFactory
%%WITHOUT_ZIP%%%%DATADIR%%/META-INF/services/javax.xml.parsers.TransformerFactory
%%WITHOUT_ZIP%%%%DATADIR%%/META-INF/services/org.xml.sax.driver
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Asynchron.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/BigDecimalHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/ByteArrayComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/AbstractCdrInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/AbstractCdrOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/AbstractDataInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/AbstractDataOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/AligningInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/AligningOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/ArrayValueHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/BigEndianInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/BigEndianOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/BufferedCdrOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/BufferredCdrInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/EncapsulationStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/HeadlessInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/IDLTypeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/LittleEndianInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/LittleEndianOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/UnknownExceptionCtxHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/VMVio.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/Vio.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/gnuRuntime$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/gnuRuntime$Entry.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/gnuRuntime$Redirection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/gnuRuntime.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CDR/gnuValueStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CdrEncapsCodecImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Connected_objects$cObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Connected_objects.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/CorbaList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DefaultSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DefinitionKindHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DuplicateNameHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/AbstractAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/DivideableAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/NameValuePairHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/RecordAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/UndivideableAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/ValueChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynAnyFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynArray.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynEnum.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynFixed.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynSequence.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynStruct.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynUnion.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAn/gnuDynValueBox.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/DynAnySeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/EmptyExceptionHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/ForwardRequestHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/CancelHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/CharSets_OSF.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/CloseMessage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/CodeSetServiceContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/ContextHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/ErrorMessage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/MessageHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/ReplyHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/RequestHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/ServiceContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/v1_0/CancelHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/v1_0/ReplyHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/v1_0/RequestHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/v1_2/ReplyHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GIOP/v1_2/RequestHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/GeneralHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/HolderLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/IOR$CodeSets_profile$CodeSet_component.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/IOR$CodeSets_profile.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/IOR$Internet_profile.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/IOR.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/ClientRequestInterceptors.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/ForwardRequestHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/IORInterceptors.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/Registrator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/ServerRequestInterceptors.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/gnuClientRequestInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/gnuIcCurrent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/gnuIorInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Interceptor/gnuServerRequestInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/IorDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/IorObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/IorProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Minor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NameDynAnyPairHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NameDynAnyPairSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NameValuePairHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NameValuePairSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/Binding_iterator_impl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/Ext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/NameComponentComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/NameParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/NameTransformer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/NameValidator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/NamingMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/NamingServiceTransient$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/NamingServiceTransient.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/NamingService/TransientContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/ObjectCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/OctetHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/OrbFocused.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/OrbFunctional$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/OrbFunctional$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/OrbFunctional$portServer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/OrbFunctional$sharedPortServer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/OrbFunctional.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/OrbRestricted.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/AOM$Obj.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/AOM.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/AccessiblePolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/DynamicImpHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/ForwardRequestHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/ForwardedServant.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/InvalidPolicyHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/LocalDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/LocalRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/LocalServerRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/ORB_1_4.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/ServantDelegateImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/StandardPolicies.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuAdapterActivator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuForwardRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuIdAssignmentPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuIdUniquenessPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuImplicitActivationPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuLifespanPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuPOA.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuPOAManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuPoaCurrent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuRequestProcessingPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuServantObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuServantRetentionPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Poa/gnuThreadPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/RawReply.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/ResponseHandlerImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/ServiceDetailHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/ServiceRequestAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/SetOverrideTypeHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/SimpleDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/SocketRepository.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/StreamBasedRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/StreamHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/StubLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/TypeCodeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/TypeKindNamer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Unexpected.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/Version.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/WCharHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/WStringHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/_PolicyImplBase.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuCodecFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuContextList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuEnvironment.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuExceptionList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuNVList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuNamedValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuRequest$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuRequest$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/gnuValueHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/interfaces/SocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/AliasTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/ArrayTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/FixedTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/GeneralTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/PrimitiveTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/RecordTypeCode$Field.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/RecordTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/RecursiveTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/CORBA/typecodes/StringTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/ByteArray.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/Configuration.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/Pointer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/Pointer32.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/Pointer64.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/ServiceFactory$ServiceIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/ServiceFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/ServiceProviderLoadingAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/SystemProperties.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/VMStackWalker.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/VMSystemProperties.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/debug/Component.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/debug/PreciseFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/debug/SystemLogger.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/Jdwp$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/Jdwp.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$ClassStatus.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ArrayReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ArrayType.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ClassLoaderReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ClassObjectReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ClassType.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$Event.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$EventRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$Field.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$InterfaceType.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$Method.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ObjectReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ReferenceType.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$StackFrame.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$StringReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ThreadGroupReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$ThreadReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet$VirtualMachine.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$CommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$Error.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$EventKind.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$InvokeOptions.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$ModKind.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$StepDepth.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$StepSize.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$SuspendPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$SuspendStatus.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$Tag.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$ThreadStatus.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$TypeTag.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants$Version.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/JdwpConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/VMFrame.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/VMIdManager$IdFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/VMIdManager$ReferenceKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/VMIdManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/VMVirtualMachine.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/ClassPrepareEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/Event.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/EventManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/EventRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/ThreadEndEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/ThreadStartEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/VmDeathEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/VmInitEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/ClassExcludeFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/ClassMatchFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/ClassOnlyFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/ConditionalFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/CountFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/ExceptionOnlyFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/FieldOnlyFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/IEventFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/InstanceOnlyFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/LocationOnlyFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/StepFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/event/filters/ThreadOnlyFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidClassException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidClassLoaderException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidCountException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidEventTypeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidFieldException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidLocationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidMethodException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidObjectException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidStringException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidThreadException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/InvalidThreadGroupException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/JdwpException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/JdwpIllegalArgumentException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/JdwpInternalErrorException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/NotImplementedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/exception/VmDeadException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ArrayId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ArrayReferenceTypeId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ClassLoaderId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ClassObjectId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ClassReferenceTypeId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/InterfaceReferenceTypeId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/JdwpId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ObjectId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ReferenceTypeId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/StringId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ThreadGroupId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/id/ThreadId.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ArrayReferenceCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ArrayTypeCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ClassLoaderReferenceCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ClassObjectReferenceCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ClassTypeCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/CommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/EventRequestCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/FieldCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/InterfaceTypeCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/MethodCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ObjectReferenceCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/PacketProcessor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ReferenceTypeCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/StackFrameCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/StringReferenceCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ThreadGroupReferenceCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/ITransport.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/JdwpCommandPacket.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/JdwpConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/JdwpPacket.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/JdwpReplyPacket.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/SocketTransport.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/TransportException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/TransportFactory$TransportMethod.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/transport/TransportFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/util/JdwpString.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/util/LineTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/util/Location.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/util/MethodResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/util/Signature.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/util/Value.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/classpath/jdwp/util/VariableTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/AWTUtilities$VisibleComponentList$VisibleComponentIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/AWTUtilities$VisibleComponentList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/AWTUtilities.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/BitMaskExtent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/BitwiseXORComposite$GeneralContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/BitwiseXORComposite$IntContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/BitwiseXORComposite.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/Buffers.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/ClasspathToolkit.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/ComponentDataBlitOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/EmbeddedWindow.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/EventModifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/GradientPaintContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/CieXyzConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/ClutProfileConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/ColorLookUpTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/ColorSpaceConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/GrayProfileConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/GrayScaleConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/LinearRGBConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/ProfileHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/PyccConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/RgbProfileConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/SrgbConverter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/TagEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/color/ToneReproductionCurve.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/image/ImageDecoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/image/XBMDecoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/ClasspathFontPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/ClasspathTextLayoutPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/EmbeddedWindowPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/GLightweightPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GThreadMutex.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GThreadNativeMethodRunner.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkFontMetrics.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkFontPeer$GdkFontLineMetrics.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkFontPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkGlyphVector.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkGraphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkGraphics2D$DrawState.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkGraphics2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkGraphicsConfiguration.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkGraphicsEnvironment.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkPixbufDecoder$GdkPixbufReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkPixbufDecoder$GdkPixbufReaderSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkPixbufDecoder$GdkPixbufWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkPixbufDecoder$GdkPixbufWriterSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkPixbufDecoder$ImageFormatSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkPixbufDecoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkRobotPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkScreenGraphicsDevice.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkTextLayout$CharacterIteratorProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GdkTextLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkButtonPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkCanvasPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkCheckboxGroupPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkCheckboxMenuItemPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkCheckboxPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkChoicePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkClipboard.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkClipboardNotifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkComponentPeer$RepaintTimerTask.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkComponentPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkContainerPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkDialogPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkEmbeddedWindowPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkFileDialogPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkFontPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkFramePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkGenericPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkImageConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkLabelPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkListPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkMenuBarPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkMenuComponentPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkMenuItemPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkMenuPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkPanelPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkPopupMenuPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkScrollPanePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkScrollbarPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkSelection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkTextAreaPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkTextFieldPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkToolkit$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkToolkit$GtkErrorImage$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkToolkit$GtkErrorImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkToolkit$LRUCache.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkToolkit.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkVolatileImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/GtkWindowPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/gtk/font.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/MainQtThread.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/NativeWrapper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QMatrix.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QPainterPath.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QPen.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtAudioClip.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtButtonPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtCanvasPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtCheckboxPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtChoicePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtComponentGraphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtComponentPeer$RepaintTimerTask.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtComponentPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtContainerPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtDialogPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtEmbeddedWindowPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtFileDialogPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtFontMetrics.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtFontPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtFramePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtGraphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtGraphicsEnvironment.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtImageConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtImageDirectGraphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtImageGraphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtLabelPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtListPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtMenuBarPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtMenuComponentPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtMenuItemPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtMenuPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtPanelPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtPopupMenuPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtRepaintThread$RepaintComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtRepaintThread.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtScreenDevice.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtScreenDeviceConfiguration.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtScrollPanePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtScrollbarPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtTextAreaPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtTextFieldPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtToolkit.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtVolatileImage$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtVolatileImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/awt/peer/qt/QtWindowPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/BeanInfoEmbryo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/DoubleKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/DummyAppletContext$DummyAudioClip.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/DummyAppletContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/DummyAppletStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/ExplicitBeanInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/IntrospectionIncubator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/AbstractContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/AbstractCreatableObjectContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/AbstractElementHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/AbstractObjectContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ArrayContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ArrayHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/AssemblyException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/BooleanHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ByteHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/CharHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ClassHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ConstructorContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/Context.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/DecoderContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/DefaultExceptionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/DoubleHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/DummyContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/DummyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ElementHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/FloatHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/GrowableArrayContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/IndexContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/IntHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/JavaHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/LongHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/MethodContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/MethodFinder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/NullHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ObjectContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ObjectHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$ArrayHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$BooleanHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$ByteHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$CharHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$ClassHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$Creator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$DoubleHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$FloatHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$IntHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$JavaHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$LongHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$NullHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$ObjectHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$ShortHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$StringHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser$VoidHandlerCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PersistenceParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/PropertyContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/ShortHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/SimpleHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/StaticMethodContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/StringHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/decoder/VoidHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/ColorEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/FontEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/NativeBooleanEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/NativeByteEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/NativeDoubleEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/NativeFloatEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/NativeIntEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/NativeLongEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/NativeShortEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/beans/editors/StringEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/io/ASN1ParsingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/io/Base64InputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/io/ClassLoaderObjectInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/io/NullOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/io/ObjectIdentityWrapper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/io/PlatformHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/lang/ArrayHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/lang/CharData.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/lang/ClassHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/lang/MainThread.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/lang/reflect/TypeSignature.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_aa.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_aa_DJ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_aa_ER.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_aa_ET.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_af.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_af_ZA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_am.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_am_ET.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_DZ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_IQ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_JO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_KW.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_LB.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_LY.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_MA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_QA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_SA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_SY.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_TN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ar_YE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_as.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_as_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_az_Cyrl.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_be.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_be_BY.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_bg.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_bg_BG.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_bn.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_bn_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ca.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ca_ES.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_cs.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_cs_CZ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_cy.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_cy_GB.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_da.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_da_DK.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_de.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_de_AT.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_de_BE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_de_CH.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_de_DE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_de_LI.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_de_LU.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_dv.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_dv_MV.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_dz.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_dz_BT.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_el.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_el_GR.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_AS.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_AU.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_BE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_BW.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_BZ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_CA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_GB.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_GU.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_HK.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_IE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_MH.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_MP.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_MT.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_NZ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_PH.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_PK.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_SG.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_UM.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_US.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_VI.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_ZA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_en_ZW.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_eo.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_AR.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_BO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_CL.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_CO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_CR.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_DO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_EC.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_ES.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_GT.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_HN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_MX.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_NI.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_PA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_PE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_PR.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_PY.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_SV.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_US.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_UY.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_es_VE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_et.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_et_EE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_eu.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_eu_ES.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fa.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fa_AF.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fa_IR.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fi.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fi_FI.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fo.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fo_FO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fr.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fr_BE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fr_CA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fr_CH.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_fr_LU.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ga.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ga_IE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_gl.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_gl_ES.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_gu.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_gu_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_gv.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_gv_GB.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_he.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_he_IL.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_hi.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_hi_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_hr.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_hu.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_hu_HU.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_hy.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_hy_AM.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_id.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_id_ID.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_is.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_is_IS.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_it.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_it_CH.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_it_IT.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_iu.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ja.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ja_JP.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ka.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_kk.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_kk_KZ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_kl.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_kl_GL.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_km.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_km_KH.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_kn.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_kn_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ko.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ko_KR.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_kw.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_kw_GB.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ky.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_lo.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_lo_LA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_lt.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_lt_LT.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_lv.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_lv_LV.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_mk.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ml.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ml_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_mn.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_mn_MN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_mr.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_mr_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ms.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ms_BN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ms_MY.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_mt.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_mt_MT.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_nb.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_nb_NO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_nl.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_nl_BE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_nl_NL.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_nn.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_nn_NO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_om.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_om_ET.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_om_KE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_or.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_or_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_pa.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_pa_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_pl.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_pl_PL.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ps.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ps_AF.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_pt.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_pt_BR.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_pt_PT.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ro.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ro_RO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ru.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ru_RU.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ru_UA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sa.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sa_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sk.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sk_SK.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sl.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_so.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_so_DJ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_so_ET.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_so_KE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_so_SO.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sq.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sq_AL.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sr.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sr_Latn.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sv.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sv_FI.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sv_SE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sw.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sw_KE.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_sw_TZ.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ta.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ta_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_te.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_te_IN.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_th.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_th_TH.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ti.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ti_ER.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ti_ET.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_tr.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_tr_TR.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_tt.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_tt_RU.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_uk.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_uk_UA.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_ur.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_uz.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_uz_AF.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_vi.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_zh.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_zh_Hant.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/math/MPN.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/BASE64.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/CRLFInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/CRLFOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/EmptyX509TrustManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/GetLocalHostAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/HeaderFieldHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/LineInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/PlainDatagramSocketImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/PlainSocketImpl$SocketInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/PlainSocketImpl$SocketOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/PlainSocketImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/URLParseError.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/file/Connection$StaticData.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/file/Connection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/file/Handler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/ActiveModeDTP.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/BlockInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/BlockOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/CompressedInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/CompressedOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/DTP.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/DTPInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/DTPOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/FTPConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/FTPException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/FTPResponse.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/FTPURLConnection$ClosingInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/FTPURLConnection$ClosingOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/FTPURLConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/Handler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/PassiveModeDTP.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/StreamInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/ftp/StreamOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Authenticator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/ByteArrayRequestBodyWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/ChunkedInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Cookie.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/CookieManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Credentials.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/HTTPConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/HTTPDateFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/HTTPURLConnection$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/HTTPURLConnection$GetHTTPPropertiesAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/HTTPURLConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Handler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Headers$Header.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Headers$HeaderEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Headers.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/LimitedLengthInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Request.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/RequestBodyWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/Response.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/ResponseHeaderHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/http/SimpleCookieManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/https/Handler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/jar/Connection$JarFileCache.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/jar/Connection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/net/protocol/jar/Handler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/ChannelInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/ChannelOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/ChannelReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/DatagramChannelImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/DatagramChannelSelectionKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/FileLockImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/InputStreamChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/NIOConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/NIODatagramSocket.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/NIOServerSocket$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/NIOServerSocket.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/NIOSocket.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/OutputStreamChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/PipeImpl$SinkChannelImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/PipeImpl$SourceChannelImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/PipeImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/SelectionKeyImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/SelectorImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/SelectorProviderImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/ServerSocketChannelImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/ServerSocketChannelSelectionKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/SocketChannelImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/SocketChannelSelectionKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/VMPipe.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/VMSelector.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/channels/FileChannelImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ByteCharset$Decoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ByteCharset$Encoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ByteCharset.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp424.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp437.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp737.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp775.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp850.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp852.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp855.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp857.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp860.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp861.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp862.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp863.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp864.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp865.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp866.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp869.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Cp874.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/EncodingHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_1$Decoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_1$Encoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_13.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_15.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_2.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_3.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_4.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_5.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_6.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_7.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_8.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/ISO_8859_9.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/KOI_8.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MS874.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacCentralEurope.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacCroatian.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacCyrillic.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacDingbat.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacGreek.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacIceland.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacRoman.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacRomania.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacSymbol.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacThai.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/MacTurkish.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Provider.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/US_ASCII$Decoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/US_ASCII$Encoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/US_ASCII.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UTF_16.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UTF_16BE.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UTF_16Decoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UTF_16Encoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UTF_16LE.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UTF_8$Decoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UTF_8$Encoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UTF_8.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/UnicodeLittle.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1250.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1251.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1252.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1253.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1254.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1255.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1256.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1257.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/Windows1258.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/iconv/IconvCharset.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/iconv/IconvDecoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/iconv/IconvEncoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/iconv/IconvMetaData.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/nio/charset/iconv/IconvProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/RMIMarshalledObjectInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/RMIMarshalledObjectOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/dgc/DGCImpl$LeaseRecord.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/dgc/DGCImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/dgc/DGCImpl_Skel.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/dgc/DGCImpl_Stub.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/registry/RegistryImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/registry/RegistryImpl_Skel.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/registry/RegistryImpl_Stub.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/ConnectionRunnerPool$ConnectionRunner.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/ConnectionRunnerPool.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/ProtocolConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIClassLoaderImpl$CacheKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIClassLoaderImpl$MyClassLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIClassLoaderImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIDefaultSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIHashes.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIIncomingThread.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIObjectInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIObjectOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/RMIVoidValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/TripleKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastConnectionManager$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastConnectionManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastRef.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastRemoteCall$DummyObjectInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastRemoteCall$DummyObjectOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastRemoteCall.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastRemoteStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastServer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/rmi/server/UnicastServerRef.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/Engine.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/OID.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/PolicyFile$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/PolicyFile.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/action/GetPropertyAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/action/GetSecurityPropertyAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/action/SetAccessibleAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/ber/BER.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/ber/BEREncodingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/ber/BERReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/ber/BERValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/der/BitString.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/der/DER.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/der/DEREncodingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/der/DERReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/der/DERValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/der/DERWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/pkcs/PKCS7SignedData.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/pkcs/SignerInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/CollectionCertStoreImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/DSAKeyFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/DSAKeyPairGenerator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/DSAParameterGenerator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/DSAParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/DSASignature.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/DefaultPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/DiffieHellmanKeyFactoryImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/DiffieHellmanKeyPairGeneratorImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/EncodedKeyFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/Gnu$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/Gnu.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/GnuDHPublicKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/GnuDSAPrivateKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/GnuDSAPublicKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/GnuRSAPrivateKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/GnuRSAPublicKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/MD2withRSA.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/MD4withRSA.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/MD5.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/MD5withRSA.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/PKIXCertPathValidatorImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/RSA.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/RSAKeyFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/SHA.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/SHA1PRNG.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/SHA1withRSA.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/provider/X509CertificateFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/util/Prime.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/GnuPKIExtension.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/PolicyNodeImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/Util.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/X500DistinguishedName.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/X509CRL.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/X509CRLEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/X509CRLSelectorImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/X509CertPath.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/X509CertSelectorImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/X509Certificate.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/AuthorityKeyIdentifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/BasicConstraints.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/CRLNumber.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/CertificatePolicies.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/ExtendedKeyUsage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/Extension$Value.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/Extension.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/GeneralNames.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/IssuerAlternativeNames.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/KeyUsage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/PolicyConstraint.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/PolicyMappings.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/PrivateKeyUsagePeriod.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/ReasonCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/SubjectAlternativeNames.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/security/x509/ext/SubjectKeyIdentifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/AttributedFormatBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/BaseBreakIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/CharacterBreakIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/FormatBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/FormatCharacterIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/LineBreakIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/SentenceBreakIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/StringFormatBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/text/WordBreakIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/util/DoubleEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/util/EmptyEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/util/prefs/FileBasedFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/util/prefs/MemoryBasedFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/util/prefs/MemoryBasedPreferences.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/util/prefs/NodeReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/java/util/prefs/NodeWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/crypto/DiffieHellmanImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/crypto/GnuDHPrivateKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/crypto/RSACipherImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/BMPDecoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/BMPException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/BMPFileHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/BMPImageReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/BMPImageReaderSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/BMPInfoHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/DecodeBF16.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/DecodeBF32.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/DecodeRGB1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/DecodeRGB24.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/DecodeRGB4.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/DecodeRGB8.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/DecodeRLE4.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/imageio/bmp/DecodeRLE8.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/CorbaInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/CorbaOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/DefaultWriteObjectTester.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/DelegateFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/GetDelegateInstanceException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/PortableRemoteObjectDelegateImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/RmiUtilities$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/RmiUtilities$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/RmiUtilities.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/StubDelegateImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/TieTargetRecord.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/UtilDelegateImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/rmi/CORBA/ValueHandlerDelegateImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaInputPortDevice.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaMidiDeviceProvider$AlsaInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaMidiDeviceProvider$AlsaInputPortInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaMidiDeviceProvider$AlsaOutputPortInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaMidiDeviceProvider$AlsaPortInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaMidiDeviceProvider$AlsaSequencerInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaMidiDeviceProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaMidiSequencerDevice.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaOutputPortDevice.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaPortDevice$AlsaReceiver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaPortDevice$AlsaTransmitter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/alsa/AlsaPortDevice.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/dssi/DSSIMidiDeviceProvider$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/dssi/DSSIMidiDeviceProvider$DSSIInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/dssi/DSSIMidiDeviceProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/dssi/DSSISynthesizer$DSSIInstrument.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/dssi/DSSISynthesizer$DSSIMidiChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/dssi/DSSISynthesizer$DSSIReceiver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/dssi/DSSISynthesizer$DSSISoundbank.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/sound/midi/dssi/DSSISynthesizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/Error.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/Inform.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/JavaCup.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/JavaCupLarge.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/Question.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/TreeClosed.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/TreeLeaf-normal.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/TreeLeaf.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/TreeOpen.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/Warn.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/file-folders.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/plaf/gtk/icons/slider.png
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/HTML_401F.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/gnuDTD.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/htmlAttributeSet$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/htmlAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/htmlValidator$hTag.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/htmlValidator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/models/PCDATAonly_model.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/models/TableRowContentModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/models/list.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/models/noTagModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/models/node.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/models/transformer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/Parser$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/Parser$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/Parser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/gnuStringIntMapper.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/Buffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/Constants.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/Location.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/ParseException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/Queue.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/ReaderTokenizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/Token.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/node.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/low/pattern.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/parameterDefaulter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/javax/swing/text/html/parser/support/textPreProcessor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/CharIndexed.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/CharIndexedCharArray.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/CharIndexedInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/CharIndexedString.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/CharIndexedStringBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/MessagesBundle.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/MessagesBundle_fr.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/MessagesBundle_it.properties
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RE$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RE$CharUnit.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RE$IntPair.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RE.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/REException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/REFilterInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/REMatch.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/REMatchEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RESyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/REToken.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenBackRef.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenChar.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenEnd.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenEndSub.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenLookAhead.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenOneOf.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenPOSIX.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenRange.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenRepeated.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenStart.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/RETokenWordBoundary.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/regexp/UncheckedRE.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/ContentHandler2.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/JAXPFactory$JaxpParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/JAXPFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/SAXDriver$Adapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/SAXDriver$Attribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/SAXDriver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/XmlParser$AttributeDecl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/XmlParser$ElementDecl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/XmlParser$EntityInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/XmlParser$ExternalIdentifiers.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/XmlParser$Input.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/XmlParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/XmlReader$FatalErrorHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/aelfred2/XmlReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/Consumer$Backdoor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/Consumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DTDAttributeTypeInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DTDElementTypeInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomAttr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomCDATASection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomCharacterData.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomComment.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomDOMException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomDoctype.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomDocumentBuilder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomDocumentBuilderFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomDocumentConfiguration.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomDocumentFragment.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomEntity.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomEntityReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomEvent$DomMutationEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomEvent$DomUIEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomExtern.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNSResolverContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNamedNodeMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNode$DomEventException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNode$ListenerRecord.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNode$LiveNodeList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNode$ShadowList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNodeIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNotation.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomNsNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomProcessingInstruction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomText.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomXPathExpression.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomXPathNSResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/DomXPathResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ImplementationList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ImplementationSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/JAXPFactory$JAXPBuilder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/JAXPFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLAnchorElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLAppletElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLAreaElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLBRElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLBaseElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLBaseFontElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLBodyElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLButtonElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLDListElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLDirectoryElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLDivElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLFieldSetElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLFontElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLFormElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLFrameElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLFrameSetElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLHRElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLHeadElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLHeadingElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLHtmlElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLIFrameElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLImageElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLInputElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLIsIndexElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLLIElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLLabelElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLLegendElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLLinkElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLMapElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLMenuElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLMetaElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLModElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLOListElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLObjectElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLOptGroupElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLOptionElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLParagraphElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLParamElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLPreElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLQuoteElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLScriptElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLSelectElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLStyleElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLTableCaptionElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLTableCellElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLTableColElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLTableElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLTableRowElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLTableSectionElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLTextAreaElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLTitleElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/html2/DomHTMLUListElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/DomLSException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/DomLSInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/DomLSOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/DomLSParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/DomLSSerializer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/FilteredSAXEventSink.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/ReaderInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/SAXEventSink.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/dom/ls/WriterOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeAttr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeCDATASection.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeCharacterData.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeComment.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeDOMException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeDOMStringList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeDocumentBuilder.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeDocumentBuilderFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeDocumentFragment.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeDocumentType.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeEntity.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeEntityReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeNamedNodeMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeNodeList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeNotation.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeProcessingInstruction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeText.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeTypeInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeXPathExpression.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeXPathNSResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeXPathNodeList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/dom/GnomeXPathResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/sax/GnomeLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/sax/GnomeSAXParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/sax/GnomeSAXParserFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/sax/GnomeXMLReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/sax/Namespaces.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/sax/StringArrayAttributes.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/sax/XMLName.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/transform/ErrorListenerErrorHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/transform/GnomeTransformer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/transform/GnomeTransformerFactory$AssociatedStylesheetHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/transform/GnomeTransformerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/transform/URIResolverEntityResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/util/EmptyNodeList.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/util/NamedInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/util/StandaloneDocumentType.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/util/StandaloneLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/util/XMLJ$XMLJShutdownHook.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/libxmlj/util/XMLJ.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/CallFilter$Requestor.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/CallFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/DomConsumer$Handler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/DomConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/EventConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/EventFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/LinkFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/NSFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/PipelineFactory$Pipeline.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/PipelineFactory$Stage.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/PipelineFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/TeeConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/TextConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/ValidationConsumer$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/ValidationConsumer$AttributeInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/ValidationConsumer$ChildrenRecognizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/ValidationConsumer$ElementInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/ValidationConsumer$EmptyRecognizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/ValidationConsumer$MixedRecognizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/ValidationConsumer$Recognizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/ValidationConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/WellFormednessFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/XIncludeFilter$Scrubber.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/XIncludeFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/pipeline/XsltFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/AttributeImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/CharactersImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/CommentImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/DTDImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/EndDocumentImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/EndElementImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/EndEntityImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/EntityDeclarationImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/EntityReferenceImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/FilteredEventReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/FilteredStreamReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/LocationImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/NamespaceImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/NotationDeclarationImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/ProcessingInstructionImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/StartDocumentImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/StartElementImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/StartEntityImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLEventAllocatorImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLEventFactoryImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLEventImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLEventReaderImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLEventWriterImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLInputFactoryImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLOutputFactoryImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLStreamReaderImpl$CallbackHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLStreamReaderImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/stream/XMLStreamWriterImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/AbstractNumberNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ApplyImportsNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ApplyTemplatesNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/AttributeNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/AttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/Bindings.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/CallTemplateNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ChooseNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/CommentNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/CopyNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/CopyOfNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/CurrentFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/DOMSourceLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/DocumentFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ElementAvailableFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ElementNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ErrorListenerErrorHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ForEachNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/FormatNumberFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/FunctionAvailableFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/GenerateIdFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/IfNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/Key.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/KeyFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/LiteralNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/MessageNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/NodeNumberNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/NumberNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/OtherwiseNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ParameterNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ProcessingInstructionNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/SAXSerializer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/SortKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/StreamSerializer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/Stylesheet.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/SystemPropertyFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/Template.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/TemplateNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/TemplatesImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/TextNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/TransformerFactoryImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/TransformerImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/TransformerOutputProperties.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/URIResolverEntityResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/UnparsedEntityUriFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/ValueOfNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/WhenNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/WithParam.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/XSLComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/transform/XSLURIResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/DoParse$MyErrorHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/DoParse.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/DomParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/Resolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/SAXNullTransformerFactory$DomHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/SAXNullTransformerFactory$DomTerminus.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/SAXNullTransformerFactory$ListenerAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/SAXNullTransformerFactory$LocatorAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/SAXNullTransformerFactory$NullHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/SAXNullTransformerFactory$NullTransformer.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/SAXNullTransformerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/XCat$Catalog.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/XCat$DoneDelegation.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/XCat$Loader.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/XCat.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/XHTMLWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/util/XMLWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/AndExpr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/ArithmeticExpr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/BooleanFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/CeilingFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/ConcatFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Constant.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/ContainsFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/CountFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/DocumentOrderComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/EqualityExpr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Expr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/FalseFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/FloorFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Function.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/FunctionCall.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/IdFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/LangFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/LastFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/LocalNameFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NameFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NameTest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NamespaceTest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NamespaceUriFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NegativeExpr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NodeTypeTest.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NormalizeSpaceFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NotFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/NumberFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/OrExpr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/ParenthesizedExpr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Path.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Pattern.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/PositionFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Predicate.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/RelationalExpr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Root.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/RoundFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Selector.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/StartsWithFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Steps.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/StringFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/StringLengthFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/SubstringAfterFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/SubstringBeforeFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/SubstringFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/SumFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/Test.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/TranslateFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/TrueFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/UnionExpr.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/VariableReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathFactoryImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyCheckClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyDefRedClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyDgotoClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyGindexClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyLenClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyLhsClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyNameClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyRindexClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YySindexClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$YyTableClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$yyException.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser$yyInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathTokenizer$XPathToken.class
%%WITHOUT_ZIP%%%%DATADIR%%/gnu/xml/xpath/XPathTokenizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/applet/Applet$AccessibleApplet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/applet/Applet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/applet/AppletContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/applet/AppletStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/applet/AudioClip.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTEventMulticaster.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTKeyStroke$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTKeyStroke$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTKeyStroke$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTKeyStroke.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AWTPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ActiveEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Adjustable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AlphaComposite$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AlphaComposite.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/AttributeValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/BasicStroke.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/BorderLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/BufferCapabilities$FlipContents.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/BufferCapabilities.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Button$AccessibleAWTButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Button.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Canvas$AccessibleAWTCanvas.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Canvas$CanvasBltBufferStrategy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Canvas$CanvasFlipBufferStrategy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Canvas.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/CardLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Checkbox$AccessibleAWTCheckbox.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Checkbox.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/CheckboxGroup.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/CheckboxMenuItem$AccessibleAWTCheckboxMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/CheckboxMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Choice$AccessibleAWTChoice.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Choice.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Color.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ColorPaintContext$ColorRaster.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ColorPaintContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Component$AccessibleAWTComponent$AccessibleAWTComponentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Component$AccessibleAWTComponent$AccessibleAWTFocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Component$AccessibleAWTComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Component$BltBufferStrategy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Component$FlipBufferStrategy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Component.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ComponentOrientation.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Composite.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/CompositeContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Container$AccessibleAWTContainer$AccessibleContainerHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Container$AccessibleAWTContainer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Container$GfxPaintAllVisitor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Container$GfxPaintVisitor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Container$GfxPrintAllVisitor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Container$GfxPrintVisitor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Container$GfxVisitor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Container.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ContainerOrderFocusTraversalPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Cursor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/DefaultFocusTraversalPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/DefaultKeyboardFocusManager$EventDelayRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/DefaultKeyboardFocusManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Dialog$AccessibleAWTDialog.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Dialog.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Dimension.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/DisplayMode.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Event.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/EventDispatchThread.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/EventQueue.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/FileDialog.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/FlowLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/FocusTraversalPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Font.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/FontFormatException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/FontMetrics.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Frame$AccessibleAWTFrame.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Frame.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GradientPaint.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Graphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Graphics2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GraphicsConfigTemplate.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GraphicsConfiguration.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GraphicsDevice.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GraphicsEnvironment.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GridBagConstraints.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GridBagLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GridBagLayoutInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/GridLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/HeadlessException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/IllegalComponentStateException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Image.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ImageCapabilities.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Insets.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ItemSelectable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/JobAttributes$DefaultSelectionType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/JobAttributes$DestinationType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/JobAttributes$DialogType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/JobAttributes$MultipleDocumentHandlingType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/JobAttributes$SidesType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/JobAttributes.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/KeyEventDispatcher.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/KeyEventPostProcessor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/KeyboardFocusManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Label$AccessibleAWTLabel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Label.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/LayoutManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/LayoutManager2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/LightweightDispatcher.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/List$AccessibleAWTList$AccessibleAWTListChild.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/List$AccessibleAWTList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/List.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MediaTracker$MediaEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MediaTracker.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Menu$AccessibleAWTMenu.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Menu.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MenuBar$AccessibleAWTMenuBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MenuBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MenuComponent$AccessibleAWTMenuComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MenuComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MenuContainer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MenuItem$AccessibleAWTMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/MenuShortcut.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PageAttributes$ColorType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PageAttributes$MediaType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PageAttributes$OrientationRequestedType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PageAttributes$OriginType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PageAttributes$PrintQualityType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PageAttributes.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Paint.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PaintContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Panel$AccessibleAWTPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Panel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Point.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Polygon$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Polygon.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PopupMenu$AccessibleAWTPopupMenu.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PopupMenu.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PrintGraphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/PrintJob.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Rectangle.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/RenderingHints$Key.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/RenderingHints$KeyImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/RenderingHints.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Robot$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Robot.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ScrollPane$AccessibleAWTScrollPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ScrollPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/ScrollPaneAdjustable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Scrollbar$AccessibleAWTScrollBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Scrollbar.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Shape.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Stroke.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/SystemColor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/TextArea$AccessibleAWTTextArea.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/TextArea.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/TextComponent$AccessibleAWTTextComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/TextComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/TextField$AccessibleAWTTextField.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/TextField.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/TexturePaint.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Toolkit.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Transparency.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Window$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Window$AccessibleAWTWindow.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Window$WindowBltBufferStrategy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Window$WindowFlipBufferStrategy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/Window.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/color/CMMException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/color/ColorSpace.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/color/ICC_ColorSpace.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/color/ICC_Profile.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/color/ICC_ProfileGray.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/color/ICC_ProfileRGB.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/color/ProfileDataException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/Clipboard.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/ClipboardOwner.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/DataFlavor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/FlavorEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/FlavorListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/FlavorMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/FlavorTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/MimeTypeParseException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/StringSelection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/SystemFlavorMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/Transferable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/datatransfer/UnsupportedFlavorException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/Autoscroll.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DnDConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DnDEventMulticaster.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragGestureEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragGestureListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragGestureRecognizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragSourceAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragSourceContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragSourceDragEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragSourceDropEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragSourceEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragSourceListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DragSourceMotionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTarget$DropTargetAutoScroller.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTarget.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTargetAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTargetContext$TransferableProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTargetContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTargetDragEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTargetDropEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTargetEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/DropTargetListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/InvalidDnDOperationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/MouseDragGestureRecognizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/peer/DragSourceContextPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/peer/DropTargetContextPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/dnd/peer/DropTargetPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/AWTEventListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/AWTEventListenerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ActionEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ActionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/AdjustmentEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/AdjustmentListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ComponentAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ComponentEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ComponentListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ContainerAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ContainerEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ContainerListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/FocusAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/FocusEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/FocusListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/HierarchyBoundsAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/HierarchyBoundsListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/HierarchyEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/HierarchyListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/InputEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/InputMethodEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/InputMethodListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/InvocationEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ItemEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/ItemListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/KeyAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/KeyEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/KeyListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/MouseAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/MouseEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/MouseListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/MouseMotionAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/MouseMotionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/MouseWheelEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/MouseWheelListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/PaintEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/TextEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/TextListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/WindowAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/WindowEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/WindowFocusListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/WindowListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/event/WindowStateListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/FontRenderContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/GlyphJustificationInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/GlyphMetrics.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/GlyphVector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/GraphicAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/ImageGraphicAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/LineBreakMeasurer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/LineMetrics.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/MultipleMaster.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/NumericShaper.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/OpenType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/ShapeGraphicAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/TextAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/TextHitInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/TextLayout$CaretPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/TextLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/TextMeasurer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/font/TransformAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/AffineTransform.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Arc2D$ArcIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Arc2D$Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Arc2D$Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Arc2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Area$AreaIterator$IteratorSegment.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Area$AreaIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Area$CubicSegment.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Area$Intersection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Area$LineSegment.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Area$QuadSegment.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Area$Segment.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Area.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/CubicCurve2D$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/CubicCurve2D$Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/CubicCurve2D$Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/CubicCurve2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Dimension2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Ellipse2D$Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Ellipse2D$Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Ellipse2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/FlatteningPathIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/GeneralPath$GeneralPathIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/GeneralPath.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/IllegalPathStateException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Line2D$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Line2D$Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Line2D$Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Line2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/NoninvertibleTransformException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/PathIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Point2D$Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Point2D$Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Point2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/QuadCurve2D$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/QuadCurve2D$Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/QuadCurve2D$Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/QuadCurve2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Rectangle2D$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Rectangle2D$Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Rectangle2D$Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/Rectangle2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/RectangularShape.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/RoundRectangle2D$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/RoundRectangle2D$Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/RoundRectangle2D$Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/geom/RoundRectangle2D.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/im/InputContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/im/InputMethodHighlight.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/im/InputMethodRequests.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/im/InputSubset.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/im/spi/InputMethod.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/im/spi/InputMethodContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/im/spi/InputMethodDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/AffineTransformOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/AreaAveragingScaleFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/BandCombineOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/BandedSampleModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/BufferStrategy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/BufferedImage$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/BufferedImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/BufferedImageFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/BufferedImageOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ByteLookupTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ColorConvertOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ColorModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ComponentColorModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ComponentSampleModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ConvolveOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/CropImageFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/DataBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/DataBufferByte.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/DataBufferDouble.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/DataBufferFloat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/DataBufferInt.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/DataBufferShort.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/DataBufferUShort.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/DirectColorModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/FilteredImageSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ImageConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ImageFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ImageObserver.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ImageProducer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ImagingOpException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/IndexColorModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/Kernel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/LookupOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/LookupTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/MemoryImageSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/MultiPixelPackedSampleModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/PackedColorModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/PixelGrabber$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/PixelGrabber.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/PixelInterleavedSampleModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/RGBImageFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/Raster.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/RasterFormatException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/RasterOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/RenderedImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ReplicateScaleFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/RescaleOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/SampleModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/ShortLookupTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/SinglePixelPackedSampleModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/TileObserver.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/VolatileImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/WritableRaster.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/WritableRenderedImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/renderable/ContextualRenderedImageFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/renderable/ParameterBlock.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/renderable/RenderContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/renderable/RenderableImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/renderable/RenderableImageOp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/renderable/RenderableImageProducer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/image/renderable/RenderedImageFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/ButtonPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/CanvasPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/CheckboxMenuItemPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/CheckboxPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/ChoicePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/ComponentPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/ContainerPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/DialogPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/FileDialogPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/FontPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/FramePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/LabelPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/LightweightPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/ListPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/MenuBarPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/MenuComponentPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/MenuItemPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/MenuPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/PanelPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/PopupMenuPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/RobotPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/ScrollPanePeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/ScrollbarPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/TextAreaPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/TextComponentPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/TextFieldPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/peer/WindowPeer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/Book.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/PageFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/Pageable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/Paper.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/Printable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/PrinterAbortException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/PrinterException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/PrinterGraphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/PrinterIOException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/awt/print/PrinterJob.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/AppletInitializer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/BeanDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/BeanInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/Beans.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/Customizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/DesignMode.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/EventHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/EventSetDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/ExceptionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/ExplicitInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/Expression.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/FeatureDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/IndexedPropertyDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/IntrospectionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/Introspector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/MethodDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/ParameterDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyChangeEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyChangeListenerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyChangeSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyEditorManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyEditorSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/PropertyVetoException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/SimpleBeanInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/Statement.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/VetoableChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/VetoableChangeListenerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/VetoableChangeSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/Visibility.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/XMLDecoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextChild.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextChildComponentProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextChildSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextContainerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextMembershipEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextMembershipListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServiceAvailableEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServiceProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServiceProviderBeanInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServiceRevokedEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServiceRevokedListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServices.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServicesListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServicesSupport$BCSSChild.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServicesSupport$BCSSProxyServiceProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServicesSupport$BCSSServiceProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextServicesSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextSupport$BCSChild.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextSupport$BCSIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/beans/beancontext/BeanContextSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/BufferedInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/BufferedOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/BufferedReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/BufferedWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ByteArrayInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ByteArrayOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/CharArrayReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/CharArrayWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/CharConversionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/Closeable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/DataInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/DataInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/DataOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/DataOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/DeleteFileHelper$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/DeleteFileHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/EOFException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/Externalizable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/File.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FileDescriptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FileFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FileInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FileNotFoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FileOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FilePermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FileReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FileWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FilenameFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FilterInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FilterOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FilterReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/FilterWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/Flushable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/IOException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/InputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/InputStreamReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/InterruptedIOException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/InvalidClassException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/InvalidObjectException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/LineNumberInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/LineNumberReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/NotActiveException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/NotSerializableException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectInputStream$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectInputStream$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectInputStream$GetField.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectInputStream$ValidatorAndPriority.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectInputValidation.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectOutputStream$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectOutputStream$PutField.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamClass$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamClass$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamClass$InterfaceComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamClass$MemberComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamField$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/ObjectStreamField.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/OptionalDataException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/OutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/OutputStreamWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/PipedInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/PipedOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/PipedReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/PipedWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/PrintStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/PrintWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/PushbackInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/PushbackReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/RandomAccessFile.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/Reader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/SequenceInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/Serializable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/SerializablePermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/StreamCorruptedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/StreamTokenizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/StringBufferInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/StringReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/StringWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/SyncFailedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/UTFDataFormatException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/UnsupportedEncodingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/VMFile.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/VMObjectInputStream$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/VMObjectInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/VMObjectStreamClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/WriteAbortedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/io/Writer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/AbstractMethodError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Appendable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ArithmeticException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ArrayIndexOutOfBoundsException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ArrayStoreException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/AssertionError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Boolean.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Byte.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/CharSequence.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Character$Subset.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Character$UnicodeBlock.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Character.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Class$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Class$MethodKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Class$StaticData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Class.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ClassCastException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ClassCircularityError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ClassFormatError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ClassLoader$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ClassLoader$StaticData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ClassLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ClassNotFoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/CloneNotSupportedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Cloneable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Comparable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Compiler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Double.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/EnumConstantNotPresentException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Error.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Exception.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ExceptionInInitializerError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Float.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/IllegalAccessError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/IllegalAccessException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/IllegalArgumentException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/IllegalMonitorStateException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/IllegalStateException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/IllegalThreadStateException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/IncompatibleClassChangeError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/IndexOutOfBoundsException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/InheritableThreadLocal.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/InliningException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/InstantiationError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/InstantiationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Integer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/InternalError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/InterruptedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/JDWPStart.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/LinkageError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Long.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Math.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/NegativeArraySizeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/NoClassDefFoundError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/NoSuchFieldError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/NoSuchFieldException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/NoSuchMethodError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/NoSuchMethodException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/NullPointerException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Number.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/NumberFormatException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Object.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/OutOfMemoryError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Package.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Process.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Readable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Runnable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Runtime.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/RuntimeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/RuntimePermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/SecurityException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/SecurityManager$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/SecurityManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Short.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/StackOverflowError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/StackTraceElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/StartAppHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/StrictMath.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/String$CaseInsensitiveComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/String.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/StringBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/StringBuilder.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/StringCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/StringIndexOutOfBoundsException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/System.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Thread.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ThreadDeath.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ThreadGroup.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ThreadLocal$Key.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ThreadLocal.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Throwable$StaticData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Throwable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/TypeNotPresentException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/UnknownError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/UnsatisfiedLinkError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/UnsupportedClassVersionError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/UnsupportedOperationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMClass.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMClassLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMCompiler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMDouble.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMFloat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMProcess$ProcessThread.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMProcess.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMRuntime.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMString.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMSystem.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMThread.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VMThrowable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VerifyError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VirtualMachine.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/VirtualMachineError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/Void.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/annotation/AnnotationFormatError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/annotation/AnnotationTypeMismatchException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ref/PhantomReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ref/Reference.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ref/ReferenceQueue.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ref/SoftReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/ref/WeakReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/AccessibleObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Array.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Constructor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Field.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/GenericArrayType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/GenericSignatureFormatError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/InvocationHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/InvocationTargetException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Member.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Method.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Modifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/ParameterizedType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Proxy$ClassFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Proxy$ProxyData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Proxy$ProxySignature.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Proxy$ProxyType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Proxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/ReflectPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/ReflectUtil.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/Type.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/UndeclaredThrowableException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/VMProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/lang/reflect/WildcardType.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/math/BigDecimal.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/math/BigInteger.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/Authenticator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/BindException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/ConnectException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/ContentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/ContentHandlerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/DatagramPacket.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/DatagramSocket.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/DatagramSocketImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/DatagramSocketImplFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/FileNameMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/HttpURLConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/Inet4Address.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/Inet6Address.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/InetAddress.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/InetSocketAddress.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/JarURLConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/MalformedURLException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/MimeTypeMapper.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/MulticastSocket.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/NetPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/NetworkInterface.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/NoRouteToHostException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/PasswordAuthentication.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/PortUnreachableException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/ProtocolException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/ServerSocket.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/Socket.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/SocketAddress.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/SocketException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/SocketImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/SocketImplFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/SocketOptions.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/SocketPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/SocketTimeoutException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URI.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URISyntaxException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URL$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URL.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$FileResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$FileURLLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$JarURLLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$JarURLResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$RemoteResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$RemoteURLLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$Resource.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader$URLLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLClassLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLDecoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLEncoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLStreamHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/URLStreamHandlerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/UnknownHostException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/UnknownServiceException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/VMInetAddress.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/net/VMNetworkInterface.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/Buffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/BufferOverflowException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/BufferUnderflowException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ByteBuffer$vm.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ByteBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ByteBufferHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ByteBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ByteOrder.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/CharBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/CharBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/CharViewBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/DirectByteBufferImpl$ReadOnly.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/DirectByteBufferImpl$ReadWrite.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/DirectByteBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/DoubleBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/DoubleBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/DoubleViewBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/FloatBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/FloatBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/FloatViewBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/IntBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/IntBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/IntViewBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/InvalidMarkException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/LongBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/LongBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/LongViewBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/MappedByteBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/MappedByteBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ReadOnlyBufferException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ShortBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ShortBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/ShortViewBufferImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/VMDirectByteBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/AlreadyConnectedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/AsynchronousCloseException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/ByteChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/CancelledKeyException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/Channel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/Channels.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/ClosedByInterruptException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/ClosedChannelException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/ClosedSelectorException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/ConnectionPendingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/DatagramChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/FileChannel$MapMode.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/FileChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/FileLock.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/FileLockInterruptionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/GatheringByteChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/IllegalBlockingModeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/IllegalSelectorException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/InterruptibleChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/NoConnectionPendingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/NonReadableChannelException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/NonWritableChannelException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/NotYetBoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/NotYetConnectedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/OverlappingFileLockException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/Pipe$SinkChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/Pipe$SourceChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/Pipe.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/ReadableByteChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/ScatteringByteChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/SelectableChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/SelectionKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/Selector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/ServerSocketChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/SocketChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/UnresolvedAddressException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/UnsupportedAddressTypeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/VMChannels.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/WritableByteChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/spi/AbstractInterruptibleChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/spi/AbstractSelectableChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/spi/AbstractSelectionKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/spi/AbstractSelector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/channels/spi/SelectorProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CharacterCodingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/Charset.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CharsetDecoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CharsetEncoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CoderMalfunctionError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CoderResult$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CoderResult$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CoderResult$Cache.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CoderResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/CodingErrorAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/IllegalCharsetNameException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/MalformedInputException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/UnmappableCharacterException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/UnsupportedCharsetException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/nio/charset/spi/CharsetProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/AccessException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/AlreadyBoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/ConnectException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/ConnectIOException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/MarshalException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/MarshalledObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/Naming.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/NoSuchObjectException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/NotBoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/RMISecurityException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/RMISecurityManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/Remote.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/RemoteException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/ServerError.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/ServerException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/ServerRuntimeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/StubNotFoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/UnexpectedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/UnknownHostException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/UnmarshalException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/Activatable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivateFailedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationDesc.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationGroup.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationGroupDesc$CommandEnvironment.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationGroupDesc.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationGroupID.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationGroup_Stub.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationID.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationInstantiator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationMonitor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/ActivationSystem.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/Activator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/UnknownGroupException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/activation/UnknownObjectException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/dgc/DGC.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/dgc/Lease.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/dgc/VMID.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/registry/LocateRegistry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/registry/Registry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/registry/RegistryHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/ExportException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/LoaderHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/LogStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/ObjID.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/Operation.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RMIClassLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RMIClassLoaderSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RMIClientSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RMIFailureHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RMIServerSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RMISocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RemoteCall.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RemoteObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RemoteRef.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RemoteServer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/RemoteStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/ServerCloneException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/ServerNotActiveException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/ServerRef.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/Skeleton.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/SkeletonMismatchException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/SkeletonNotFoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/SocketSecurityException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/UID.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/UnicastRemoteObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/rmi/server/Unreferenced.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AccessControlContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AccessControlException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AccessController.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AlgorithmParameterGenerator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AlgorithmParameterGeneratorSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AlgorithmParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AlgorithmParametersSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AllPermission$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AllPermission$AllPermissionCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/AllPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/BasicPermission$BasicPermissionCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/BasicPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Certificate.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/CodeSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/DigestException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/DigestInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/DigestOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/DomainCombiner.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/DummyKeyPairGenerator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/DummyMessageDigest.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/DummySignature.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/GeneralSecurityException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Guard.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/GuardedObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Identity.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/IdentityScope.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/IntersectingDomainCombiner.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/InvalidAlgorithmParameterException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/InvalidKeyException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/InvalidParameterException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Key.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyFactorySpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyManagementException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyPair.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyPairGenerator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyPairGeneratorSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyStore.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyStoreException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/KeyStoreSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/MessageDigest.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/MessageDigestSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/NoSuchAlgorithmException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/NoSuchProviderException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Permission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/PermissionCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Permissions$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Permissions$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Permissions$PermissionsHash.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Permissions.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Policy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Principal.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/PrivateKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/PrivilegedAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/PrivilegedActionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/PrivilegedExceptionAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/ProtectionDomain.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Provider.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/ProviderException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/PublicKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/SecureClassLoader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/SecureRandom.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/SecureRandomSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Security.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/SecurityPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Signature.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/SignatureException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/SignatureSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/SignedObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/Signer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/UnrecoverableKeyException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/UnresolvedPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/UnresolvedPermissionCollection$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/UnresolvedPermissionCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/VMAccessController.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/acl/Acl.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/acl/AclEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/acl/AclNotFoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/acl/Group.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/acl/LastOwnerException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/acl/NotOwnerException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/acl/Owner.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/acl/Permission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CRL.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CRLException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CRLSelector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPath$CertPathRep.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPath.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathBuilder.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathBuilderException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathBuilderResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathBuilderSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathValidator$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathValidator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathValidatorException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathValidatorResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertPathValidatorSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertSelector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertStore$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertStore.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertStoreException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertStoreParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertStoreSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/Certificate$CertificateRep.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/Certificate.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertificateEncodingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertificateException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertificateExpiredException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertificateFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertificateFactorySpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertificateNotYetValidException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CertificateParsingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/CollectionCertStoreParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/LDAPCertStoreParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/PKIXBuilderParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/PKIXCertPathBuilderResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/PKIXCertPathChecker.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/PKIXCertPathValidatorResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/PKIXParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/PolicyNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/PolicyQualifierInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/TrustAnchor.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/X509CRL.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/X509CRLEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/X509CRLSelector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/X509CertSelector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/X509Certificate.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/cert/X509Extension.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/DSAKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/DSAKeyPairGenerator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/DSAParams.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/DSAPrivateKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/DSAPublicKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/RSAKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/RSAMultiPrimePrivateCrtKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/RSAPrivateCrtKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/RSAPrivateKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/interfaces/RSAPublicKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/AlgorithmParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/DSAParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/DSAPrivateKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/DSAPublicKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/EncodedKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/InvalidKeySpecException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/InvalidParameterSpecException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/KeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/PKCS8EncodedKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/PSSParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/RSAKeyGenParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/RSAMultiPrimePrivateCrtKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/RSAOtherPrimeInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/RSAPrivateCrtKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/RSAPrivateKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/RSAPublicKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/security/spec/X509EncodedKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Array.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/BatchUpdateException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Blob.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/CallableStatement.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Clob.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Connection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/DataTruncation.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/DatabaseMetaData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Date.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Driver.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/DriverManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/DriverPropertyInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/ParameterMetaData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/PreparedStatement.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Ref.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/ResultSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/ResultSetMetaData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/SQLData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/SQLException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/SQLInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/SQLOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/SQLPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/SQLWarning.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Savepoint.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Statement.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Struct.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Time.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Timestamp.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/sql/Types.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/Annotation.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/AttributedCharacterIterator$Attribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/AttributedCharacterIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/AttributedString$AttributeRange.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/AttributedString.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/AttributedStringIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/BreakIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/CharacterIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/ChoiceFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/CollationElementIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/CollationKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/Collator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/DateFormat$Field.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/DateFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/DateFormatSymbols.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/DecimalFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/DecimalFormatSymbols.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/FieldPosition.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/Format$Field.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/Format.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/MessageFormat$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/MessageFormat$Field.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/MessageFormat$MessageFormatElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/MessageFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/NumberFormat$Field.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/NumberFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/ParseException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/ParsePosition.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/RuleBasedCollator$CollationElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/RuleBasedCollator$CollationSorter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/RuleBasedCollator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/SimpleDateFormat$CompiledField.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/SimpleDateFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/text/StringCharacterIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractList$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractList$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractList$RandomAccessSubList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractList$SubList$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractList$SubList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractMap$1$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractMap$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractMap$2$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractMap$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractMap$BasicMapEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractSequentialList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/AbstractSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/ArrayList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Arrays$ArrayList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Arrays.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/BitSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Calendar.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$CopiesList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$EmptyList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$EmptyMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$EmptySet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$ReverseComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SingletonList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SingletonMap$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SingletonMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SingletonSet$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SingletonSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedListIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedMap$1SynchronizedMapEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedMap$2$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedMap$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedRandomAccessList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedSortedMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$SynchronizedSortedSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableListIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableRandomAccessList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableSortedMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections$UnmodifiableSortedSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Collections.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Comparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/ConcurrentModificationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Currency.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Date.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Dictionary.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/EmptyStackException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Enumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/EventListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/EventListenerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/EventObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/GregorianCalendar.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/HashMap$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/HashMap$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/HashMap$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/HashMap$HashEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/HashMap$HashIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/HashMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/HashSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Hashtable$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Hashtable$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Hashtable$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Hashtable$Enumerator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Hashtable$HashEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Hashtable$HashIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Hashtable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/IdentityHashMap$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/IdentityHashMap$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/IdentityHashMap$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/IdentityHashMap$IdentityEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/IdentityHashMap$IdentityIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/IdentityHashMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/InvalidPropertiesFormatException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Iterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/LinkedHashMap$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/LinkedHashMap$LinkedHashEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/LinkedHashMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/LinkedHashSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/LinkedList$Entry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/LinkedList$LinkedListItr.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/LinkedList.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/List.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/ListIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/ListResourceBundle.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Locale.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/LocaleData.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Map$Entry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Map.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/MissingResourceException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/NoSuchElementException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Observable.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Observer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Properties$PropertiesHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Properties.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/PropertyPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/PropertyPermissionCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/PropertyResourceBundle.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Random.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/RandomAccess.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/ResourceBundle$BundleKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/ResourceBundle.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Set.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/SimpleTimeZone.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/SortedMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/SortedSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Stack.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/StringTokenizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TimeZone$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TimeZone.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Timer$Scheduler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Timer$TaskQueue.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Timer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TimerTask.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TooManyListenersException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$Node.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$SubMap$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$SubMap$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$SubMap$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$SubMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap$TreeIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/TreeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/VMTimeZone.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Vector$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/Vector.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/WeakHashMap$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/WeakHashMap$WeakBucket$WeakEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/WeakHashMap$WeakBucket.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/WeakHashMap$WeakEntrySet$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/WeakHashMap$WeakEntrySet.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/WeakHashMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/iso4217.properties
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/Attributes$Name.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/Attributes.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/JarEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/JarException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/JarFile$EntryInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/JarFile$JarEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/JarFile.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/JarInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/JarOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/jar/Manifest.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/ConsoleHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/ErrorManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/FileHandler$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/FileHandler$ostr.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/FileHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/Filter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/Formatter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/Handler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/Level.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/LogManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/LogRecord.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/Logger.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/LoggingPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/MemoryHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/SimpleFormatter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/SocketHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/StreamHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/XMLFormatter.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/logging/logging.properties
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/AbstractPreferences.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/BackingStoreException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/InvalidPreferencesFormatException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/NodeChangeEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/NodeChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/PreferenceChangeEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/PreferenceChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/Preferences$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/Preferences.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/prefs/PreferencesFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/regex/Matcher.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/regex/Pattern.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/regex/PatternSyntaxException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/Adler32.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/CRC32.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/CheckedInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/CheckedOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/Checksum.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/DataFormatException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/Deflater.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/DeflaterConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/DeflaterEngine.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/DeflaterHuffman$Tree.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/DeflaterHuffman.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/DeflaterOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/DeflaterPending.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/GZIPInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/GZIPOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/Inflater.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/InflaterDynHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/InflaterHuffmanTree.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/InflaterInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/OutputWindow.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/PendingBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/StreamManipulator.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/ZipConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/ZipEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/ZipException.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/ZipFile$PartialInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/ZipFile$ZipEntryEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/ZipFile.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/ZipInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/java/util/zip/ZipOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/Accessible.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleBundle.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleEditableText.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleExtendedComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleExtendedTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleHyperlink.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleHypertext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleKeyBinding.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleRelation.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleRelationSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleResourceBundle.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleRole.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleSelection.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleState.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleStateSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleTableModelChange.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleText.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/accessibility/AccessibleValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/BadPaddingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/Cipher.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/CipherInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/CipherOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/CipherSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/EncryptedPrivateKeyInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/ExemptionMechanism.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/ExemptionMechanismException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/ExemptionMechanismSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/IllegalBlockSizeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/KeyAgreement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/KeyAgreementSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/KeyGenerator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/KeyGeneratorSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/Mac.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/MacSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/NoSuchPaddingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/NullCipher.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/NullCipherImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/SealedObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/SecretKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/SecretKeyFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/SecretKeyFactorySpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/ShortBufferException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/interfaces/DHKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/interfaces/DHPrivateKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/interfaces/DHPublicKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/interfaces/PBEKey.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/DESKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/DESedeKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/DHGenParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/DHParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/DHPrivateKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/DHPublicKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/IvParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/PBEKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/PBEParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/RC2ParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/RC5ParameterSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/crypto/spec/SecretKeySpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/IIOException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/IIOImage.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/IIOParam.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/IIOParamController.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$ImageReaderIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$ImageWriterIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$ReaderFormatFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$ReaderMIMETypeFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$ReaderObjectFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$ReaderSuffixFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$TranscoderFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$WriterFormatFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$WriterMIMETypeFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$WriterObjectFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO$WriterSuffixFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageIO.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageReadParam.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageTranscoder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageTypeSpecifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageWriteParam.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/ImageWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/event/IIOReadProgressListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/event/IIOReadUpdateListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/event/IIOReadWarningListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/event/IIOWriteProgressListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/event/IIOWriteWarningListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOInvalidTreeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadata.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataController.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$IIOMetadataNodeAttr.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$IIOMetadataNodeAttrBounded.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$IIOMetadataNodeAttrEnumerated.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$IIOMetadataNodeAttrList.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$NodeObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$NodeObjectArray.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$NodeObjectBounded.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl$NodeObjectEnumerated.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataFormatImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataNode$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataNode$IIONamedNodeMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataNode$IIONodeList.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/metadata/IIOMetadataNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/IIORegistry.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/IIOServiceProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ImageInputStreamSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ImageOutputStreamSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ImageReaderSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ImageReaderWriterSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ImageTranscoderSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ImageWriterSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/RegisterableService.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ServiceRegistry$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ServiceRegistry$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ServiceRegistry$Filter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/spi/ServiceRegistry.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/FileCacheImageInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/FileCacheImageOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/FileImageInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/FileImageOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/IIOByteBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/ImageInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/ImageInputStreamImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/ImageOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/ImageOutputStreamImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/MemoryCacheImageInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/imageio/stream/MemoryCacheImageOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/AuthenticationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/AuthenticationNotSupportedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/BinaryRefAddr.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/Binding.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/CannotProceedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/CommunicationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/CompositeName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/CompoundName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ConfigurationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/Context.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ContextNotEmptyException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/InitialContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/InsufficientResourcesException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/InterruptedNamingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/InvalidNameException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/LimitExceededException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/LinkException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/LinkLoopException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/LinkRef.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/MalformedLinkException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/Name.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NameAlreadyBoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NameClassPair.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NameNotFoundException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NameParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NamingEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NamingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NamingSecurityException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NoInitialContextException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NoPermissionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/NotContextException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/OperationNotSupportedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/PartialResultException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/RefAddr.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/Reference.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/Referenceable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ReferralException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ServiceUnavailableException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/SizeLimitExceededException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/StringRefAddr.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/TimeLimitExceededException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/Attribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/AttributeInUseException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/AttributeModificationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/Attributes.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/BasicAttribute$BasicAttributeEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/BasicAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/BasicAttributes$BasicAttributesEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/BasicAttributes.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/DirContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/InitialDirContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/InvalidAttributeIdentifierException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/InvalidAttributeValueException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/InvalidAttributesException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/InvalidSearchControlsException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/InvalidSearchFilterException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/ModificationItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/NoSuchAttributeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/SchemaViolationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/SearchControls.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/directory/SearchResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/event/EventContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/event/EventDirContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/event/NamespaceChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/event/NamingEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/event/NamingExceptionEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/event/NamingListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/event/ObjectChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/Control.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/ControlFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/ExtendedRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/ExtendedResponse.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/HasControls.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/InitialLdapContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/LdapContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/LdapReferralException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/UnsolicitedNotification.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/UnsolicitedNotificationEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/ldap/UnsolicitedNotificationListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/DirObjectFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/DirStateFactory$Result.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/DirStateFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/DirectoryManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/InitialContextFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/InitialContextFactoryBuilder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/NamingManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/ObjectFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/ObjectFactoryBuilder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/ResolveResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/Resolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/naming/spi/StateFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ServerSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/SocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/VanillaServerSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/VanillaSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/HandshakeCompletedEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/HandshakeCompletedListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/HostnameVerifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/HttpsURLConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/KeyManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/KeyManagerFactory$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/KeyManagerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/KeyManagerFactorySpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/ManagerFactoryParameters.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLContextSpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLHandshakeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLKeyException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLPeerUnverifiedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLProtocolException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLServerSocket.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLServerSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLSession.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLSessionBindingEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLSessionBindingListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLSessionContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLSocket.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/SSLSocketFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/TrivialHostnameVerifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/TrustManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/TrustManagerFactory$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/TrustManagerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/TrustManagerFactorySpi.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/X509KeyManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/net/ssl/X509TrustManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/AttributeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/CancelablePrintJob.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/Doc.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocFlavor$BYTE_ARRAY.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocFlavor$CHAR_ARRAY.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocFlavor$INPUT_STREAM.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocFlavor$READER.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocFlavor$SERVICE_FORMATTED.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocFlavor$STRING.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocFlavor$URL.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocFlavor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/DocPrintJob.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/FlavorException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/MultiDoc.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/MultiDocPrintJob.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/MultiDocPrintService.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/PrintException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/PrintService.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/PrintServiceLookup.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/ServiceUIFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/StreamPrintService.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/URIException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/Attribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$SynchronizedAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$SynchronizedDocAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$SynchronizedPrintJobAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$SynchronizedPrintRequestAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$SynchronizedPrintServiceAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$UnmodifiableAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$UnmodifiableDocAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$UnmodifiablePrintJobAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$UnmodifiablePrintRequestAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities$UnmodifiablePrintServiceAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/AttributeSetUtilities.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/DateTimeSyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/DocAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/DocAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/EnumSyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/HashAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/HashDocAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/HashPrintJobAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/HashPrintRequestAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/HashPrintServiceAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/IntegerSyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/PrintJobAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/PrintJobAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/PrintRequestAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/PrintRequestAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/PrintServiceAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/PrintServiceAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/ResolutionSyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/SetOfIntegerSyntax$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/SetOfIntegerSyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/Size2DSyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/SupportedValuesAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/TextSyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/URISyntax.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/UnmodifiableSetException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Chromaticity.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/ColorSupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Compression.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Copies.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/CopiesSupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/DateTimeAtCompleted.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/DateTimeAtCreation.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/DateTimeAtProcessing.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Destination.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/DocumentName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Fidelity.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Finishings.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobHoldUntil.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobImpressions.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobImpressionsCompleted.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobImpressionsSupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobKOctets.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobKOctetsProcessed.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobKOctetsSupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobMediaSheets.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobMediaSheetsCompleted.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobMediaSheetsSupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobMessageFromOperator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobOriginatingUserName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobPriority.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobPrioritySupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobSheets.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobState.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobStateReason.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/JobStateReasons.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Media.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/MediaPrintableArea.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/MediaSize.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/MediaSizeName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/MultipleDocumentHandling.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/NumberOfDocuments.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/NumberOfInterveningJobs.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/NumberUp.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/NumberUpSupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/OrientationRequested.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/OutputDeviceAssigned.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PDLOverrideSupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PageRanges.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PagesPerMinute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PagesPerMinuteColor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PresentationDirection.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrintQuality.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterIsAcceptingJobs.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterLocation.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterMakeAndModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterMessageFromOperator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterMoreInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterMoreInfoManufacturer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterResolution.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterState.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterStateReason.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterStateReasons.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/PrinterURI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/QueuedJobCount.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/ReferenceUriSchemesSupported.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/RequestingUserName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Severity.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/SheetCollate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/attribute/standard/Sides.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/event/PrintEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/event/PrintJobAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/event/PrintJobAttributeEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/event/PrintJobAttributeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/event/PrintJobEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/event/PrintJobListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/event/PrintServiceAttributeEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/print/event/PrintServiceAttributeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/ClassDesc.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/PortableRemoteObjectDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/Stub.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/StubDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/Tie.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/Util.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/UtilDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/ValueHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/CORBA/ValueHandlerMultiFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/rmi/PortableRemoteObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/AuthPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/DestroyFailedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/Destroyable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/Policy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/PrivateCredentialPermission$CredOwner.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/PrivateCredentialPermission.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/RefreshFailedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/Refreshable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/Subject$SecureSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/Subject.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/SubjectDomainCombiner.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/Callback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/CallbackHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/ChoiceCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/ConfirmationCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/LanguageCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/NameCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/PasswordCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/TextInputCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/TextOutputCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/callback/UnsupportedCallbackException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/AccountExpiredException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/AppConfigurationEntry$LoginModuleControlFlag.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/AppConfigurationEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/Configuration$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/Configuration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/CredentialExpiredException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/FailedLoginException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/LoginContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/LoginException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/login/NullConfiguration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/spi/LoginModule.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/x500/X500Principal.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/auth/x500/X500PrivateCredential.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/cert/Certificate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/cert/CertificateEncodingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/cert/CertificateException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/cert/CertificateExpiredException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/cert/CertificateNotYetValidException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/cert/CertificateParsingException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/cert/X509CertBridge.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/cert/X509Certificate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/AuthenticationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/AuthorizeCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/RealmCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/RealmChoiceCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/Sasl.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/SaslClient.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/SaslClientFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/SaslException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/SaslServer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/security/sasl/SaslServerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/ControllerEventListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Instrument.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/InvalidMidiDataException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MetaEventListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MetaMessage.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MidiChannel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MidiDevice$Info.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MidiDevice.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MidiEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MidiFileFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MidiMessage.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MidiSystem.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/MidiUnavailableException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Patch.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Receiver.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Sequence.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Sequencer$SyncMode.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Sequencer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/ShortMessage.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Soundbank.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/SoundbankResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Synthesizer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/SysexMessage.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Track.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/Transmitter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/VoiceStatus.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/spi/MidiDeviceProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/spi/MidiFileReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/spi/MidiFileWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sound/midi/spi/SoundbankReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/ConnectionEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/ConnectionEventListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/ConnectionPoolDataSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/DataSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/PooledConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/RowSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/RowSetEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/RowSetInternal.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/RowSetListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/RowSetMetaData.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/RowSetReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/RowSetWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/XAConnection.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/sql/XADataSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractButton$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractButton$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractButton$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractButton$AccessibleAbstractButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractButton$ButtonChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractCellEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractListModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/AbstractSpinnerModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Action.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ActionMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/BorderFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/BoundedRangeModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Box$AccessibleBox.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Box$Filler$AccessibleBoxFiller.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Box$Filler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Box.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/BoxLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ButtonGroup.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ButtonModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/CellEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/CellRendererPane$AccessibleCellRendererPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/CellRendererPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ComboBoxEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ComboBoxModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ComponentInputMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DebugGraphics.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultBoundedRangeModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultButtonModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultCellEditor$EditorDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultCellEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultComboBoxModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultDesktopManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultFocusManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultListCellRenderer$UIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultListCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultListModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultListSelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DefaultSingleSelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/DesktopManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/FocusManager$WrappingFocusManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/FocusManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/GrayFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Icon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ImageIcon$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ImageIcon$AccessibleImageIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ImageIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/InputMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/InputVerifier.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/InternalFrameFocusTraversalPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JApplet$AccessibleJApplet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JApplet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JButton$AccessibleJButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JCheckBox$AccessibleJCheckBox.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JCheckBox.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JCheckBoxMenuItem$AccessibleJCheckBoxMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JCheckBoxMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JColorChooser$AccessibleJColorChooser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JColorChooser$DefaultOKCancelListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JColorChooser$DefaultResetListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JColorChooser$ModalDialog.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JColorChooser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComboBox$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComboBox$AccessibleJComboBox.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComboBox$KeySelectionManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComboBox.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComponent$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComponent$AccessibleJComponent$AccessibleContainerHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComponent$AccessibleJComponent$AccessibleFocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComponent$AccessibleJComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComponent$ActionListenerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JDesktopPane$AccessibleJDesktopPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JDesktopPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JDialog$AccessibleJDialog.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JDialog.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JEditorPane$AccessibleJEditorPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JEditorPane$AccessibleJEditorPaneHTML.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JEditorPane$JEditorPaneAccessibleHypertextSupport$HTMLLink.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JEditorPane$JEditorPaneAccessibleHypertextSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JEditorPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JFileChooser$AccessibleJFileChooser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JFileChooser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JFormattedTextField$AbstractFormatter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JFormattedTextField$AbstractFormatterFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JFormattedTextField$FormatterFactoryWrapper.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JFormattedTextField.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JFrame$AccessibleJFrame.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JFrame.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JInternalFrame$AccessibleJInternalFrame.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JInternalFrame$JDesktopIcon$AccessibleJDesktopIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JInternalFrame$JDesktopIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JInternalFrame.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JLabel$AccessibleJLabel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JLabel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JLayeredPane$AccessibleJLayeredPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JLayeredPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JList$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JList$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JList$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JList$AccessibleJList$AccessibleJListChild.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JList$AccessibleJList.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JList$ListListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JList.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenu$AccessibleJMenu.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenu$ActionChangedListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenu$WinListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenu.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenuBar$AccessibleJMenuBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenuBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenuItem$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenuItem$AccessibleJMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JOptionPane$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JOptionPane$AccessibleJOptionPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JOptionPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPanel$AccessibleJPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPasswordField$AccessibleJPasswordField.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPasswordField.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPopupMenu$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPopupMenu$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPopupMenu$AccessibleJPopupMenu.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPopupMenu$ActionChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPopupMenu$Separator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JPopupMenu.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JProgressBar$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JProgressBar$AccessibleJProgressBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JProgressBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JRadioButton$AccessibleJRadioButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JRadioButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JRadioButtonMenuItem$AccessibleJRadioButtonMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JRadioButtonMenuItem.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JRootPane$AccessibleJRootPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JRootPane$RootLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JRootPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JScrollBar$AccessibleJScrollBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JScrollBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JScrollPane$AccessibleJScrollPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JScrollPane$ScrollBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JScrollPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSeparator$AccessibleJSeparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSeparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSlider$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSlider$AccessibleJSlider.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSlider.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSpinner$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSpinner$DateEditor$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSpinner$DateEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSpinner$DefaultEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSpinner$ListEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSpinner$NumberEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSpinner.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSplitPane$AccessibleJSplitPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JSplitPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTabbedPane$AccessibleJTabbedPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTabbedPane$ModelListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTabbedPane$Page.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTabbedPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$AccessibleJTable$AccessibleJTableCell.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$AccessibleJTable$AccessibleJTableModelChange.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$AccessibleJTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$BooleanCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$DateCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$DoubleCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$EditorUpdateTimer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$FloatCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$IconCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$NumberCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable$TableColumnPropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTextArea$AccessibleJTextArea.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTextArea.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTextField$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTextField$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTextField$AccessibleJTextField.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTextField.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTextPane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToggleButton$AccessibleJToggleButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToggleButton$ToggleButtonModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToggleButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToolBar$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToolBar$AccessibleJToolBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToolBar$DefaultToolBarLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToolBar$Separator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToolBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToolTip$AccessibleJToolTip.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JToolTip.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTree$AccessibleJTree$AccessibleJTreeNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTree$AccessibleJTree.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTree$DynamicUtilTreeNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTree$EmptySelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTree$TreeModelHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTree$TreeSelectionRedirector.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JTree.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JViewport$AccessibleJViewport.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JViewport$ViewListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JViewport.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JWindow$AccessibleJWindow.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/JWindow.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/KeyStroke.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/LayoutFocusTraversalPolicy$LayoutComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/LayoutFocusTraversalPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ListCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ListModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ListSelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/LookAndFeel$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/LookAndFeel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/MenuElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/MenuSelectionManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/MutableComboBoxModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/OverlayLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Popup$JWindowPopup.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Popup$LightweightPopup.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Popup.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/PopupFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ProgressMonitor$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ProgressMonitor$TimerListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ProgressMonitor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ProgressMonitorInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Renderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/RepaintManager$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/RepaintManager$ComponentComparator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/RepaintManager$RepaintWorker.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/RepaintManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/RootPaneContainer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ScrollPaneConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ScrollPaneLayout$UIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ScrollPaneLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Scrollable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SingleSelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SizeRequirements.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SizeSequence.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SortingFocusTraversalPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SpinnerDateModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SpinnerListModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SpinnerModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SpinnerNumberModel$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SpinnerNumberModel$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SpinnerNumberModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Spring$AddSpring.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Spring$MaxSpring.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Spring$MinusSpring.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Spring$SimpleSpring.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Spring.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SpringLayout$Constraints.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SpringLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SwingConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SwingUtilities$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SwingUtilities$OwnerFrame.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/SwingUtilities.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Timer$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Timer$Waker.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/Timer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ToolTipManager$insideTimerAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ToolTipManager$outsideTimerAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ToolTipManager$stillInsideTimerAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ToolTipManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/TransferHandler$TransferAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/TransferHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults$ActiveValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults$LazyInputMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults$LazyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults$ProxyLazyValue$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults$ProxyLazyValue$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults$ProxyLazyValue$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults$ProxyLazyValue$4.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults$ProxyLazyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIDefaults.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIManager$LookAndFeelInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UIManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/UnsupportedLookAndFeelException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/ViewportLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/WindowConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/AbstractBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/BevelBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/Border.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/CompoundBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/EmptyBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/EtchedBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/LineBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/MatteBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/SoftBevelBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/TitledBorder$1BorderPainter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/TitledBorder$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/TitledBorder$Measurements.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/border/TitledBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/AbstractColorChooserPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/ColorChooserComponentFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/ColorSelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultColorSelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultHSBChooserPanel$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultHSBChooserPanel$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultHSBChooserPanel$ImageScrollListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultHSBChooserPanel$MainGradientMouseListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultHSBChooserPanel$RadioStateListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultHSBChooserPanel$SliderChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultHSBChooserPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultPreviewPanel$PreviewBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultPreviewPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultRGBChooserPanel$SliderHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultRGBChooserPanel$SpinnerHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultRGBChooserPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultSwatchChooserPanel$MainPanelLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultSwatchChooserPanel$MainSwatchPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultSwatchChooserPanel$MouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultSwatchChooserPanel$RecentPanelLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultSwatchChooserPanel$RecentSwatchPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultSwatchChooserPanel$SwatchPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/colorchooser/DefaultSwatchChooserPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/AncestorEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/AncestorListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/CaretEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/CaretListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/CellEditorListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/ChangeEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/ChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/DocumentEvent$ElementChange.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/DocumentEvent$EventType.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/DocumentEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/DocumentListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/EventListenerList.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/HyperlinkEvent$EventType.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/HyperlinkEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/HyperlinkListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/InternalFrameAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/InternalFrameEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/InternalFrameListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/ListDataEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/ListDataListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/ListSelectionEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/ListSelectionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/MenuDragMouseEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/MenuDragMouseListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/MenuEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/MenuKeyEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/MenuKeyListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/MenuListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/MouseInputAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/MouseInputListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/PopupMenuEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/PopupMenuListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/SwingPropertyChangeSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TableColumnModelEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TableColumnModelListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TableModelEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TableModelListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TreeExpansionEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TreeExpansionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TreeModelEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TreeModelListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TreeSelectionEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TreeSelectionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/TreeWillExpandListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/UndoableEditEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/event/UndoableEditListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/filechooser/FileFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/filechooser/FileSystemView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/filechooser/FileView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/filechooser/UnixFileSystemView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ActionMapUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/BorderUIResource$BevelBorderUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/BorderUIResource$CompoundBorderUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/BorderUIResource$EmptyBorderUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/BorderUIResource$EtchedBorderUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/BorderUIResource$LineBorderUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/BorderUIResource$MatteBorderUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/BorderUIResource$TitledBorderUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/BorderUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ButtonUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ColorChooserUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ColorUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ComboBoxUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ComponentInputMapUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ComponentUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/DesktopIconUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/DesktopPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/DimensionUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/FileChooserUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/FontUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/IconUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/InputMapUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/InsetsUIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/InternalFrameUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/LabelUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ListUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/MenuBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/MenuItemUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/OptionPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/PanelUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/PopupMenuUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ProgressBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/RootPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ScrollBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ScrollPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/SeparatorUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/SliderUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/SpinnerUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/SplitPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/TabbedPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/TableHeaderUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/TableUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/TextUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ToolBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ToolTipUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/TreeUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/UIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/ViewportUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicArrowButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$ButtonBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$FieldBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$MarginBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$MenuBarBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$RadioButtonBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$RolloverButtonBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$SplitPaneBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$SplitPaneDividerBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders$ToggleButtonBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicBorders.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicButtonListener$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicButtonListener$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicButtonListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicButtonUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicCheckBoxMenuItemUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicCheckBoxUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicColorChooserUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicColorChooserUI$PreviewListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicColorChooserUI$PropertyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicColorChooserUI$TabPaneListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicColorChooserUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxEditor$UIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxRenderer$UIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI$ComboBoxLayoutManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI$FocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI$ItemHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI$KeyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI$ListDataHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI$MouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboBoxUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$InvocationKeyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$InvocationMouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$InvocationMouseMotionHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$ItemHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$ListDataHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$ListMouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$ListMouseMotionHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$ListSelectionHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicComboPopup.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopIconUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopIconUI$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopIconUI$BoundButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopIconUI$DesktopIconBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopIconUI$InternalFrameDefaultMenuIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopIconUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopIconUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopPaneUI$CloseAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopPaneUI$MaximizeAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopPaneUI$MinimizeAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopPaneUI$NavigateAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopPaneUI$OpenAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDesktopPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDirectoryModel$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicDirectoryModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicEditorPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$10.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$11.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$12.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$4.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$5.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$6.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$7.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$8.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$9.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$AcceptAllFileFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$ApproveSelectionAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$BasicFileView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$CancelSelectionAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$ChangeToParentDirectoryAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$DoubleClickListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$GoHomeAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$ListLabelRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$NewFolderAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$SelectionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI$UpdateAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFileChooserUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicFormattedTextFieldUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicGraphicsUtils.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicIconFactory$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicIconFactory$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicIconFactory$CheckBoxIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicIconFactory$CheckBoxMenuItemIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicIconFactory$DummyIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicIconFactory$RadioButtonIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicIconFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$CloseAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$IconifyAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$MaximizeAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$MoveAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$PaneButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$RestoreAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$SizeAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$SystemMenuBar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane$TitlePaneLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameTitlePane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameUI$BasicInternalFrameListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameUI$BorderListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameUI$ComponentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameUI$GlassPaneDispatcher.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameUI$InternalFrameBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameUI$InternalFrameLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameUI$InternalFramePropertyChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicInternalFrameUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLabelUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$ActionListenerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$ComponentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$FocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$ListAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$ListDataHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$ListSelectionHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicListUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLookAndFeel$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLookAndFeel$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLookAndFeel$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLookAndFeel$4.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLookAndFeel$5.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLookAndFeel$6.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLookAndFeel$7.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicLookAndFeel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuBarUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuBarUI$ChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuBarUI$ContainerHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuBarUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuBarUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuItemUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuItemUI$ItemHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuItemUI$MenuDragMouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuItemUI$MenuKeyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuItemUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuItemUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuUI$ChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuUI$MenuDragMouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuUI$MenuHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuUI$MenuKeyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicMenuUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI$4.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI$ButtonActionListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI$ButtonAreaLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI$MessageIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicOptionPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicPanelUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicPasswordFieldUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicPopupMenuSeparatorUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicPopupMenuUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicPopupMenuUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicPopupMenuUI$PopupMenuHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicPopupMenuUI$TopWindowListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicPopupMenuUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicProgressBarUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicProgressBarUI$Animator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicProgressBarUI$ChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicProgressBarUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicProgressBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicRadioButtonMenuItemUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicRadioButtonUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicRootPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollBarUI$ArrowButtonListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollBarUI$ModelListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollBarUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollBarUI$ScrollListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollBarUI$TrackListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollPaneUI$HSBChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollPaneUI$MouseWheelHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollPaneUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollPaneUI$VSBChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollPaneUI$ViewportChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicScrollPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSeparatorUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSliderUI$ActionScroller.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSliderUI$ChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSliderUI$ComponentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSliderUI$FocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSliderUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSliderUI$ScrollListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSliderUI$TrackListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSliderUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSpinnerUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSpinnerUI$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSpinnerUI$3$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSpinnerUI$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSpinnerUI$4$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSpinnerUI$4.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSpinnerUI$DefaultLayoutManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSpinnerUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneDivider$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneDivider$DividerLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneDivider$DragController.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneDivider$MouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneDivider$VerticalDragController.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneDivider.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$BasicHorizontalLayoutManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$BasicVerticalLayoutManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$FocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$KeyboardDownRightHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$KeyboardEndHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$KeyboardHomeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$KeyboardResizeToggleHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$KeyboardUpLeftHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI$PropertyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicSplitPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$FocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$MouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$ScrollingButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$ScrollingPanel$ScrollingPanelUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$ScrollingPanel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$ScrollingViewport.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$TabSelectionHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$TabbedPaneLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI$TabbedPaneScrollLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTabbedPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableHeaderUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableHeaderUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableUI$ActionListenerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableUI$FocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableUI$KeyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableUI$TableAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTableUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextAreaUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextFieldUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextUI$BasicCaret.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextUI$BasicHighlighter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextUI$DocumentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextUI$RootView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTextUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToggleButtonUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarSeparatorUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$DockingListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$DragWindow.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$FrameListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$PropertyListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$ToolBarBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$ToolBarContListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$ToolBarDialog.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI$ToolBarFocusListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicToolTipUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$ActionListenerProxy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$CellEditorHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$ComponentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$EditorUpdateTimer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$FocusHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$KeyHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$MouseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$MouseInputHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$NodeDimensionsHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$SelectionModelPropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeCancelEditingAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeExpansionHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeHomeAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeIncrementAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeModelHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreePageAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeSelectionHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeToggleAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI$TreeTraverseAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicTreeUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/BasicViewportUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/ComboPopup.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/basic/DefaultMenuLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/DefaultMetalTheme.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$ButtonBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$DesktopIconBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$Flush3DBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$InternalFrameBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$MenuBarBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$MenuItemBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$OptionDialogBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$PaletteBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$PopupMenuBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$RolloverButtonBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$RolloverMarginBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$ScrollPaneBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$TableHeaderBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$TextFieldBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$ToggleButtonBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders$ToolBarBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalBorders.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalButtonListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalButtonUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalCheckBoxIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalCheckBoxUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxEditor$MetalComboBoxEditorBorder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxEditor$UIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxUI$MetalComboBoxLayoutManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxUI$MetalComboPopup.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxUI$MetalPropertyChangeListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalComboBoxUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalDesktopIconUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalFileChooserUI$DirectoryComboBoxAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalFileChooserUI$DirectoryComboBoxModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalFileChooserUI$FileRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalFileChooserUI$FilterComboBoxModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalFileChooserUI$FilterComboBoxRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalFileChooserUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$CheckBoxMenuItemIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$FileChooserDetailViewIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$FileChooserHomeFolderIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$FileChooserListViewIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$FileChooserNewFolderIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$FileChooserUpFolderIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$FileIcon16.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$FolderIcon16.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$HorizontalSliderThumbIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$InternalFrameAltMaximizeIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$InternalFrameCloseIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$InternalFrameDefaultMenuIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$InternalFrameMaximizeIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$InternalFrameMinimizeIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$PaletteCloseIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$RadioButtonIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$RadioButtonMenuItemIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$TreeComputerIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$TreeControlIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$TreeFloppyDriveIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$TreeFolderIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$TreeHardDriveIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$TreeLeafIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory$VerticalSliderThumbIcon.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalIconFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalInternalFrameTitlePane$MetalInternalFrameTitlePanePropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalInternalFrameTitlePane$MetalTitlePaneLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalInternalFrameTitlePane.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalInternalFrameUI$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalInternalFrameUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalLabelUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalLookAndFeel$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalLookAndFeel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalPopupMenuSeparatorUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalProgressBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalRadioButtonUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalRootPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalScrollBarUI$MetalScrollBarPropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalScrollBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalScrollButton.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalScrollPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalSeparatorUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalSliderUI$MetalPropertyListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalSliderUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalSplitPaneDivider.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalSplitPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalTabbedPaneUI$TabbedPaneLayout.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalTabbedPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalTextFieldUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalTheme.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalToggleButtonUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalToolBarUI$MetalContainerListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalToolBarUI$MetalRolloverListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalToolBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalToolTipUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalTreeUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/MetalUtils.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/metal/OceanTheme.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiButtonUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiColorChooserUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiComboBoxUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiDesktopIconUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiDesktopPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiFileChooserUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiInternalFrameUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiLabelUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiListUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiLookAndFeel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiMenuBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiMenuItemUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiOptionPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiPanelUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiPopupMenuUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiProgressBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiRootPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiScrollBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiScrollPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiSeparatorUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiSliderUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiSpinnerUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiSplitPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiTabbedPaneUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiTableHeaderUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiTableUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiTextUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiToolBarUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiToolTipUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiTreeUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/plaf/multi/MultiViewportUI.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/AbstractTableModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/DefaultTableCellRenderer$UIResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/DefaultTableCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/DefaultTableColumnModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/DefaultTableModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/JTableHeader$AccessibleJTableHeader$AccessibleJTableHeaderEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/JTableHeader$AccessibleJTableHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/JTableHeader.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/TableCellEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/TableCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/TableColumn.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/TableColumnModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/table/TableModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$AbstractElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$AttributeContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$BranchElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$Content.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$DefaultDocumentEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$ElementEdit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument$LeafElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AbstractWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AttributeSet$CharacterAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AttributeSet$ColorAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AttributeSet$FontAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AttributeSet$ParagraphAttribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/AttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/BadLocationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/BoxView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Caret.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/ChangedCharSetException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/ComponentView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/CompositeView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DateFormatter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultCaret$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultCaret$DocumentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultCaret$PropertyChangeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultCaret.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$4.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$5.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$6.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$BeepAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$CopyAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$CutAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$DefaultKeyTypedAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$InsertBreakAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$InsertContentAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$InsertTabAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit$PasteAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultEditorKit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultFormatter$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultFormatter$FormatterDocumentFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultFormatter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultHighlighter$DefaultHighlightPainter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultHighlighter$HighlightEntry.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultHighlighter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultStyledDocument$ElementBuffer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultStyledDocument$ElementSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultStyledDocument$SectionElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DefaultStyledDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Document.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DocumentFilter$FilterBypass.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/DocumentFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/EditorKit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Element.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/ElementIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/FieldView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/FlowView$FlowStrategy.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/FlowView$LogicalView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/FlowView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/GapContent$GapContentPosition.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/GapContent$UndoInsertString.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/GapContent$UndoRemove.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/GapContent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/GlyphView$DefaultGlyphPainter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/GlyphView$GlyphPainter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/GlyphView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Highlighter$Highlight.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Highlighter$HighlightPainter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Highlighter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/IconView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/InternationalFormatter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/JTextComponent$AccessibleJTextComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/JTextComponent$CaretBlinkTimer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/JTextComponent$DefaultKeymap.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/JTextComponent$DefaultTransferHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/JTextComponent$KeyBinding.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/JTextComponent$KeymapActionMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/JTextComponent$KeymapWrapper.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/JTextComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Keymap.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/LabelView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/LayeredHighlighter$LayerPainter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/LayeredHighlighter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/LayoutQueue.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/MutableAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/NavigationFilter$FilterBypass.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/NavigationFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/ParagraphView$Row.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/ParagraphView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/PasswordView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/PlainDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/PlainView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Position$Bias.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Position.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Segment.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/SimpleAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StringContent$InsertUndo.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StringContent$RemoveUndo.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StringContent$StickyPosition.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StringContent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Style.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleConstants$CharacterConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleConstants$ColorConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleConstants$FontConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleConstants$ParagraphConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleContext$NamedStyle.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleContext$SimpleFontSpec.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleContext$SmallAttributeSet$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleContext$SmallAttributeSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyleContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$AlignmentAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$BoldAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$CaretTracker.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$FontFamilyAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$FontSizeAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$ForegroundAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$ItalicAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$StyledTextAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$StyledViewFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit$UnderlineAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/StyledEditorKit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/TabExpander.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/TabSet.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/TabStop.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/TabableView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/TextAction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/Utilities.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/View.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/ViewFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/WrappedPlainView$WrappedLine.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/WrappedPlainView$WrappedLineCreator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/WrappedPlainView.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/CSS$Attribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/CSS.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTML$Attribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTML$Tag.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTML$UnknownTag.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTML.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTMLDocument$BlockElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTMLDocument$Iterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTMLDocument$LeafIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTMLDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTMLEditorKit$Parser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTMLEditorKit$ParserCallback.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTMLEditorKit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/HTMLFrameHyperlinkEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/AttributeList$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/AttributeList.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/ContentModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/DTD.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/DTDConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/DocumentParser$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/DocumentParser$gnuParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/DocumentParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/Element$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/Element.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/Entity$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/Entity.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/Parser$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/Parser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/ParserDelegator$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/ParserDelegator$gnuParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/ParserDelegator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/html/parser/TagElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/rtf/ControlWordToken.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/rtf/RTFEditorKit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/rtf/RTFParseException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/rtf/RTFParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/rtf/RTFScanner.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/rtf/TextToken.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/text/rtf/Token.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/AbstractLayoutCache$NodeDimensions.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/AbstractLayoutCache.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultMutableTreeNode$BreadthFirstEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultMutableTreeNode$PostorderEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultMutableTreeNode$PreorderEnumeration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultMutableTreeNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultTreeCellEditor$DefaultTextField.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultTreeCellEditor$EditorContainer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultTreeCellEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultTreeCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultTreeModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/DefaultTreeSelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/ExpandVetoException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/FixedHeightLayoutCache.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/MutableTreeNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/RowMapper.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/TreeCellEditor.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/TreeCellRenderer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/TreeModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/TreeNode.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/TreePath.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/TreeSelectionModel.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/tree/VariableHeightLayoutCache.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/AbstractUndoableEdit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/CannotRedoException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/CannotUndoException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/CompoundEdit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/StateEdit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/StateEditable.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/UndoManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/UndoableEdit.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/swing/undo/UndoableEditSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/HeuristicCommitException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/HeuristicMixedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/HeuristicRollbackException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/InvalidTransactionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/NotSupportedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/RollbackException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/Status.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/Synchronization.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/SystemException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/Transaction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/TransactionManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/TransactionRequiredException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/TransactionRolledbackException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/UserTransaction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/xa/XAException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/xa/XAResource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/transaction/xa/Xid.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/XMLConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/datatype/DatatypeConfigurationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/datatype/DatatypeConstants$Field.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/datatype/DatatypeConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/datatype/DatatypeFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/datatype/Duration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/datatype/XMLGregorianCalendar.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/namespace/NamespaceContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/namespace/QName.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/parsers/DocumentBuilder.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/parsers/DocumentBuilderFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/parsers/FactoryConfigurationError.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/parsers/ParserConfigurationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/parsers/SAXParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/parsers/SAXParserFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/EventFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/FactoryConfigurationError.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/Location.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/StreamFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLEventFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLEventReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLEventWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLInputFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLOutputFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLReporter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLStreamConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLStreamException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLStreamReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/XMLStreamWriter.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/Attribute.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/Characters.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/Comment.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/DTD.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/EndDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/EndElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/EndEntity.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/EntityDeclaration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/EntityReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/Namespace.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/NotationDeclaration.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/ProcessingInstruction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/StartDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/StartElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/StartEntity.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/events/XMLEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/util/EventReaderDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/util/ReaderDelegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/util/XMLEventAllocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/stream/util/XMLEventConsumer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/ErrorListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/OutputKeys.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/Result.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/Source.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/SourceLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/Templates.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/Transformer.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/TransformerConfigurationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/TransformerException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/TransformerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/TransformerFactoryConfigurationError.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/URIResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/dom/DOMLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/dom/DOMResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/dom/DOMSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/sax/SAXResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/sax/SAXSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/sax/SAXTransformerFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/sax/TemplatesHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/sax/TransformerHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/stream/StreamResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/transform/stream/StreamSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/validation/Schema.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/validation/SchemaFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/validation/TypeInfoProvider.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/validation/Validator.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/validation/ValidatorHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPath.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathConstants.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathExpression.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathExpressionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathFactoryConfigurationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathFunction.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathFunctionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathFunctionResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/javax/xml/xpath/XPathVariableResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/ChannelBinding.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/GSSContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/GSSCredential.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/GSSException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/GSSManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/GSSName.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/MessageProp.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/MessagesBundle.properties
%%WITHOUT_ZIP%%%%DATADIR%%/org/ietf/jgss/Oid.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ACTIVITY_COMPLETED.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ACTIVITY_REQUIRED.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ARG_IN.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ARG_INOUT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ARG_OUT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Any.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/AnyHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/AnySeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/AnySeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_CONTEXT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_INV_ORDER.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_OPERATION.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_PARAM.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_POLICY.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_POLICY_TYPE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_POLICY_VALUE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_QOS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BAD_TYPECODE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BooleanHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BooleanSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/BooleanSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Bounds.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ByteHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CODESET_INCOMPATIBLE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/COMM_FAILURE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CTX_RESTRICT_SCOPE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CharHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CharSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CharSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CompletionStatus.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CompletionStatusHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Context.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ContextList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Current.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CurrentHelper$_CurrentStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CurrentHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CurrentHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CurrentOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CustomMarshal.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/CustomValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DATA_CONVERSION.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DataInputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DataOutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DefinitionKind.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DefinitionKindHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DomainManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DomainManagerOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DoubleHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DoubleSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DoubleSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynAnyPackage/Invalid.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynAnyPackage/InvalidSeq.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynAnyPackage/InvalidValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynAnyPackage/TypeMismatch.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynArray.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynEnum.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynFixed.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynSequence.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynStruct.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynUnion.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/DynamicImplementation.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Environment.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ExceptionList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/FREE_MEM.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/FieldNameHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/FixedHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/FloatHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/FloatSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/FloatSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/IDLType.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/IDLTypeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/IDLTypeOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/IMP_LIMIT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INITIALIZE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INTERNAL.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INTF_REPOS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INVALID_ACTIVITY.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INVALID_TRANSACTION.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INV_FLAG.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INV_IDENT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INV_OBJREF.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/INV_POLICY.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/IRObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/IRObjectOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/IdentifierHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/IntHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/LocalObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/LongHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/LongLongSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/LongLongSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/LongSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/LongSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/MARSHAL.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NO_IMPLEMENT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NO_MEMORY.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NO_PERMISSION.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NO_RESOURCES.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NO_RESPONSE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NVList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NameValuePair.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NameValuePairHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/NamedValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/OBJECT_NOT_EXIST.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/OBJ_ADAPTER.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/OMGVMCID.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ORB.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ORBPackage/InconsistentTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ORBPackage/InvalidName.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Object.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ObjectHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ObjectHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/OctetSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/OctetSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PERSIST_STORE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PRIVATE_MEMBER.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PUBLIC_MEMBER.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ParameterMode.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ParameterModeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ParameterModeHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Policy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyError.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyErrorCodeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyErrorHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyErrorHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyListHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyListHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PolicyTypeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Principal.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/PrincipalHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/REBIND.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/RepositoryIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/Request.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ServerRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ServiceDetail.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ServiceDetailHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ServiceInformation.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ServiceInformationHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ServiceInformationHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/SetOverrideType.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/SetOverrideTypeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ShortHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ShortSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ShortSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/StringHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/StringSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/StringSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/StringValueHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/StructMember.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/StructMemberHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/SystemException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TCKind.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TIMEOUT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TRANSACTION_MODE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TRANSACTION_REQUIRED.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TRANSACTION_ROLLEDBACK.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TRANSACTION_UNAVAILABLE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TRANSIENT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TypeCodeHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TypeCodePackage/BadKind.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/TypeCodePackage/Bounds.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ULongLongSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ULongLongSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ULongSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ULongSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UNKNOWN.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UNSUPPORTED_POLICY.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UNSUPPORTED_POLICY_VALUE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UShortSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UShortSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UnionMember.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UnionMemberHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UnknownUserException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UnknownUserExceptionHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UnknownUserExceptionHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/UserException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/VM_ABSTRACT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/VM_CUSTOM.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/VM_NONE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/VM_TRUNCATABLE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ValueBaseHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ValueBaseHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ValueMember.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/ValueMemberHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/VersionSpecHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/VisibilityHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/WCharSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/WCharSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/WStringSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/WStringSeqHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/WStringValueHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/WrongTransaction.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/WrongTransactionHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/WrongTransactionHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/_IDLTypeStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/_PolicyStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/ApplicationException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/BoxedValueHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/CustomValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/Delegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/IDLEntity.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/IndirectionException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/InputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/InvokeHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/ObjectImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/OutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/RemarshalException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/ResponseHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/ServantObject.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/Streamable.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/StreamableValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/UnknownException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/ValueBase.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA/portable/ValueFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA_2_3/ORB.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA_2_3/portable/Delegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA_2_3/portable/InputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA_2_3/portable/ObjectImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CORBA_2_3/portable/OutputStream.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/Binding.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingIteratorHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingIteratorHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingIteratorOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingIteratorPOA.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingListHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingListHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingType.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingTypeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/BindingTypeHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/IstringHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NameComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NameComponentHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NameComponentHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NameHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NameHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExt.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtPOA.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtPackage/AddressHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtPackage/InvalidAddress.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtPackage/InvalidAddressHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtPackage/InvalidAddressHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtPackage/StringNameHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextExtPackage/URLStringHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPOA.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/AlreadyBound.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/CannotProceed.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/InvalidName.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotEmpty.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotFound.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotFoundHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotFoundHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotFoundReason.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotFoundReasonHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/NamingContextPackage/NotFoundReasonHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/_BindingIteratorImplBase.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/_BindingIteratorStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/_NamingContextExtImplBase.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/_NamingContextExtStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/_NamingContextImplBase.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/CosNaming/_NamingContextStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/Dynamic/Parameter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/AnySeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAny.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyFactoryHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyFactoryOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCode.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCodeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyPackage/InvalidValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyPackage/InvalidValueHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyPackage/TypeMismatch.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnyPackage/TypeMismatchHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynAnySeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynArray.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynArrayHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynArrayOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynEnum.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynEnumHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynEnumOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynFixed.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynFixedHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynFixedOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynSequence.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynSequenceHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynSequenceOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynStruct.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynStructHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynStructOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynUnion.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynUnionHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynUnionOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynValueBox.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynValueBoxOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynValueCommon.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynValueCommonOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynValueHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/DynValueOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/FieldNameHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/NameDynAnyPair.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/NameDynAnyPairHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/NameDynAnyPairSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/NameValuePair.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/NameValuePairHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/NameValuePairSeqHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynAnyFactoryStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynAnyStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynArrayStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynEnumStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynFixedStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynSequenceStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynStructStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynUnionStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/DynamicAny/_DynValueStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodeSets.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/Codec.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecFactoryHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecFactoryOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecFactoryPackage/UnknownEncoding.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecFactoryPackage/UnknownEncodingHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecPackage/FormatMismatch.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecPackage/FormatMismatchHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecPackage/InvalidTypeForEncoding.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecPackage/InvalidTypeForEncodingHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecPackage/TypeMismatch.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/CodecPackage/TypeMismatchHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ComponentIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ENCODING_CDR_ENCAPS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/Encoding.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ExceptionDetailMessage.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/IOR.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/IORHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/IORHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/MultipleComponentProfileHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/MultipleComponentProfileHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ProfileIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/RMICustomMaxStreamFormat.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ServiceContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ServiceContextHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ServiceContextHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ServiceContextListHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ServiceContextListHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/ServiceIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TAG_ALTERNATE_IIOP_ADDRESS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TAG_CODE_SETS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TAG_INTERNET_IOP.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TAG_JAVA_CODEBASE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TAG_MULTIPLE_COMPONENTS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TAG_ORB_TYPE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TAG_POLICIES.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TaggedComponent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TaggedComponentHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TaggedComponentHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TaggedProfile.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TaggedProfileHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TaggedProfileHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/IOP/TransactionService.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/Messaging/SYNC_WITH_TRANSPORT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/Messaging/SyncScopeHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ACTIVE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/AdapterManagerIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/AdapterNameHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/AdapterStateHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ClientRequestInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ClientRequestInfoOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ClientRequestInterceptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ClientRequestInterceptorOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/Current.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/CurrentHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/CurrentOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/DISCARDING.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ForwardRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ForwardRequestHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/HOLDING.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/INACTIVE.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/IORInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/IORInfoOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/IORInterceptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/IORInterceptorOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/Interceptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/InterceptorOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/InvalidSlot.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/InvalidSlotHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/LOCATION_FORWARD.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/NON_EXISTENT.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitInfoOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateName.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateNameHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidName.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidNameHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitInfoPackage/ObjectIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitializer.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ORBInitializerOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ObjectIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ObjectReferenceFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ObjectReferenceFactoryHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ObjectReferenceFactoryHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ObjectReferenceFactoryOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/PolicyFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/PolicyFactoryOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/RequestInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/RequestInfoOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/SUCCESSFUL.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/SYSTEM_EXCEPTION.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ServerIdHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ServerRequestInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ServerRequestInfoOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ServerRequestInterceptor.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/ServerRequestInterceptorOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/TRANSPORT_RETRY.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableInterceptor/USER_EXCEPTION.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/AdapterActivator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/AdapterActivatorOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/Current.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/CurrentHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/CurrentOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/CurrentPackage/NoContext.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/CurrentPackage/NoContextHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/DynamicImplementation.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ForwardRequest.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ForwardRequestHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ID_ASSIGNMENT_POLICY_ID.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ID_UNIQUENESS_POLICY_ID.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/IMPLICIT_ACTIVATION_POLICY_ID.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/IdAssignmentPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/IdAssignmentPolicyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/IdAssignmentPolicyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/IdUniquenessPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/IdUniquenessPolicyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/IdUniquenessPolicyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ImplicitActivationPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ImplicitActivationPolicyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ImplicitActivationPolicyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/LIFESPAN_POLICY_ID.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/LifespanPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/LifespanPolicyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/LifespanPolicyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POA.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAManagerOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAManagerPackage/AdapterInactive.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAManagerPackage/AdapterInactiveHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAManagerPackage/State.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/AdapterAlreadyExists.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/AdapterAlreadyExistsHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/AdapterNonExistent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/AdapterNonExistentHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/InvalidPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/InvalidPolicyHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/NoServant.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/NoServantHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/ObjectAlreadyActive.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/ObjectAlreadyActiveHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/ObjectNotActive.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/ObjectNotActiveHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/ServantAlreadyActive.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/ServantAlreadyActiveHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/ServantNotActive.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/ServantNotActiveHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/WrongAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/WrongAdapterHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/WrongPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/POAPackage/WrongPolicyHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/REQUEST_PROCESSING_POLICY_ID.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/RequestProcessingPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/RequestProcessingPolicyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/RequestProcessingPolicyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/SERVANT_RETENTION_POLICY_ID.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/Servant.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantActivator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantActivatorHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantActivatorOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantActivatorPOA$delegator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantActivatorPOA.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantLocatorHelper.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantLocatorOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantLocatorPOA$delegator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantLocatorPOA.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantLocatorPackage/CookieHolder.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantManager.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantManagerOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantRetentionPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantRetentionPolicyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ServantRetentionPolicyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/THREAD_POLICY_ID.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ThreadPolicy.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ThreadPolicyOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/ThreadPolicyValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/_ServantActivatorStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/_ServantLocatorStub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/PortableServer/portable/Delegate.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/SendingContext/RunTime.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/SendingContext/RunTimeOperations.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/omg/stub/java/rmi/_Remote_Stub.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/Attr.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/CDATASection.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/CharacterData.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/Comment.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMConfiguration.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMError.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMErrorHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMImplementation.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMImplementationList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMImplementationSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMLocator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DOMStringList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/Document.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DocumentFragment.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/DocumentType.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/Element.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/Entity.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/EntityReference.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/NameList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/NamedNodeMap.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/Node.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/NodeList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/Notation.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ProcessingInstruction.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/Text.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/TypeInfo.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/UserDataHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/bootstrap/DOMImplementationRegistry$1.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/bootstrap/DOMImplementationRegistry$2.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/bootstrap/DOMImplementationRegistry$3.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/bootstrap/DOMImplementationRegistry$4.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/bootstrap/DOMImplementationRegistry.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSS2Properties.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSCharsetRule.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSFontFaceRule.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSImportRule.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSMediaRule.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSPageRule.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSPrimitiveValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSRule.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSRuleList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSStyleDeclaration.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSStyleRule.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSStyleSheet.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSUnknownRule.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSValue.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/CSSValueList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/Counter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/DOMImplementationCSS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/DocumentCSS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/ElementCSSInlineStyle.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/RGBColor.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/Rect.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/css/ViewCSS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/events/DocumentEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/events/Event.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/events/EventException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/events/EventListener.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/events/EventTarget.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/events/MouseEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/events/MutationEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/events/UIEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLAnchorElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLAppletElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLAreaElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLBRElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLBaseElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLBaseFontElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLBodyElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLButtonElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLDListElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLDirectoryElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLDivElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLDocument.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLFieldSetElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLFontElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLFormElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLFrameElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLFrameSetElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLHRElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLHeadElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLHeadingElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLHtmlElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLIFrameElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLImageElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLInputElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLIsIndexElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLLIElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLLabelElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLLegendElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLLinkElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLMapElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLMenuElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLMetaElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLModElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLOListElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLObjectElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLOptGroupElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLOptionElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLOptionsCollection.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLParagraphElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLParamElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLPreElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLQuoteElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLScriptElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLSelectElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLStyleElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLTableCaptionElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLTableCellElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLTableColElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLTableElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLTableRowElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLTableSectionElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLTextAreaElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLTitleElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/html2/HTMLUListElement.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/DOMImplementationLS.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSInput.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSLoadEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSOutput.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSParser.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSParserFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSProgressEvent.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSResourceResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSSerializer.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ls/LSSerializerFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ranges/DocumentRange.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ranges/Range.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/ranges/RangeException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/stylesheets/DocumentStyle.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/stylesheets/LinkStyle.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/stylesheets/MediaList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/stylesheets/StyleSheet.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/stylesheets/StyleSheetList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/traversal/DocumentTraversal.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/traversal/NodeFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/traversal/NodeIterator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/traversal/TreeWalker.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/views/AbstractView.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/views/DocumentView.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/xpath/XPathEvaluator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/xpath/XPathException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/xpath/XPathExpression.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/xpath/XPathNSResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/xpath/XPathNamespace.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/w3c/dom/xpath/XPathResult.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/AttributeList.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/Attributes.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ContentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/DTDHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/DocumentHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/EntityResolver.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ErrorHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/HandlerBase.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/InputSource.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/Locator.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/Parser.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/SAXException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/SAXNotRecognizedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/SAXNotSupportedException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/SAXParseException.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/XMLFilter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/XMLReader.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ext/Attributes2.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ext/Attributes2Impl.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ext/DeclHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ext/DefaultHandler2.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ext/EntityResolver2.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ext/LexicalHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ext/Locator2.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/ext/Locator2Impl.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/AttributeListImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/AttributesImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/DefaultHandler.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/LocatorImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/NamespaceSupport$Context.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/NamespaceSupport.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/NewInstance.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/ParserAdapter$AttributeListAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/ParserAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/ParserFactory.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/XMLFilterImpl.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/XMLReaderAdapter$AttributesAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/XMLReaderAdapter.class
%%WITHOUT_ZIP%%%%DATADIR%%/org/xml/sax/helpers/XMLReaderFactory.class