aboutsummaryrefslogtreecommitdiff
path: root/irc/kvirc/pkg-plist
blob: 5cb2e4b22f4d6e00cd00b4bab54cbe7e6ec7ebd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
bin/kvirc
bin/kvirc-config
lib/kvirc/%%VER%%/modules/libkviabout.so
lib/kvirc/%%VER%%/modules/libkviaction.so
lib/kvirc/%%VER%%/modules/libkviactioneditor.so
lib/kvirc/%%VER%%/modules/libkviaddon.so
lib/kvirc/%%VER%%/modules/libkvialiaseditor.so
lib/kvirc/%%VER%%/modules/libkviavatar.so
lib/kvirc/%%VER%%/modules/libkvichan.so
lib/kvirc/%%VER%%/modules/libkvichannelsjoin.so
lib/kvirc/%%VER%%/modules/libkviclasseditor.so
lib/kvirc/%%VER%%/modules/libkvicodetester.so
lib/kvirc/%%VER%%/modules/libkviconfig.so
lib/kvirc/%%VER%%/modules/libkvicontext.so
lib/kvirc/%%VER%%/modules/libkvidcc.so
lib/kvirc/%%VER%%/modules/libkvidialog.so
lib/kvirc/%%VER%%/modules/libkvieditor.so
lib/kvirc/%%VER%%/modules/libkvieventeditor.so
lib/kvirc/%%VER%%/modules/libkvifile.so
lib/kvirc/%%VER%%/modules/libkvifiletransferwindow.so
lib/kvirc/%%VER%%/modules/libkvifish.so
lib/kvirc/%%VER%%/modules/libkvihelp.so
lib/kvirc/%%VER%%/modules/libkvihttp.so
lib/kvirc/%%VER%%/modules/libkviident.so
lib/kvirc/%%VER%%/modules/libkviiograph.so
lib/kvirc/%%VER%%/modules/libkvilamerizer.so
lib/kvirc/%%VER%%/modules/libkvilanguage.so
lib/kvirc/%%VER%%/modules/libkvilinks.so
lib/kvirc/%%VER%%/modules/libkvilist.so
lib/kvirc/%%VER%%/modules/libkvilog.so
lib/kvirc/%%VER%%/modules/libkvilogview.so
lib/kvirc/%%VER%%/modules/libkvimask.so
lib/kvirc/%%VER%%/modules/libkvimath.so
lib/kvirc/%%VER%%/modules/libkvimediaplayer.so
lib/kvirc/%%VER%%/modules/libkvimircimport.so
lib/kvirc/%%VER%%/modules/libkvimy.so
lib/kvirc/%%VER%%/modules/libkvinotifier.so
lib/kvirc/%%VER%%/modules/libkviobjects.so
lib/kvirc/%%VER%%/modules/libkvioptions.so
%%PERL%%lib/kvirc/%%VER%%/modules/libkviperl.so
lib/kvirc/%%VER%%/modules/libkviperlcore.so
lib/kvirc/%%VER%%/modules/libkvipopup.so
lib/kvirc/%%VER%%/modules/libkvipopupeditor.so
lib/kvirc/%%VER%%/modules/libkviproxydb.so
%%PYTHON%%lib/kvirc/%%VER%%/modules/libkvipython.so
lib/kvirc/%%VER%%/modules/libkvipythoncore.so
lib/kvirc/%%VER%%/modules/libkviraweditor.so
lib/kvirc/%%VER%%/modules/libkviregchan.so
lib/kvirc/%%VER%%/modules/libkvireguser.so
lib/kvirc/%%VER%%/modules/libkvirijndael.so
lib/kvirc/%%VER%%/modules/libkvirot13.so
lib/kvirc/%%VER%%/modules/libkviserverdb.so
lib/kvirc/%%VER%%/modules/libkvisetup.so
lib/kvirc/%%VER%%/modules/libkvisharedfile.so
lib/kvirc/%%VER%%/modules/libkvisharedfileswindow.so
lib/kvirc/%%VER%%/modules/libkvisnd.so
lib/kvirc/%%VER%%/modules/libkvisocketspy.so
lib/kvirc/%%VER%%/modules/libkvispaste.so
lib/kvirc/%%VER%%/modules/libkvistr.so
lib/kvirc/%%VER%%/modules/libkvisystem.so
lib/kvirc/%%VER%%/modules/libkviterm.so
lib/kvirc/%%VER%%/modules/libkvitexticons.so
lib/kvirc/%%VER%%/modules/libkvitheme.so
lib/kvirc/%%VER%%/modules/libkvitip.so
lib/kvirc/%%VER%%/modules/libkvitmphighlight.so
lib/kvirc/%%VER%%/modules/libkvitoolbar.so
lib/kvirc/%%VER%%/modules/libkvitoolbareditor.so
lib/kvirc/%%VER%%/modules/libkvitorrent.so
lib/kvirc/%%VER%%/modules/libkvitrayicon.so
lib/kvirc/%%VER%%/modules/libkviupnp.so
lib/kvirc/%%VER%%/modules/libkviurl.so
lib/kvirc/%%VER%%/modules/libkviuserlist.so
lib/kvirc/%%VER%%/modules/libkviwindow.so
lib/libkvilib.so
lib/libkvilib.so.4
lib/libkvilib.so.4.2.0
man/man1/kvirc.1.gz
man/de/man1/kvirc.1.gz
man/fr/man1/kvirc.1.gz
man/it/man1/kvirc.1.gz
man/pt/man1/kvirc.1.gz
man/uk/man1/kvirc.1.gz
share/applications/kvirc.desktop
%%KDE%%share/apps/kvirc/kvirc.notifyrc
share/icons/hicolor/128x128/apps/kvirc.png
share/icons/hicolor/128x128/mimetypes/application-x-kva.png
share/icons/hicolor/128x128/mimetypes/application-x-kvt.png
share/icons/hicolor/128x128/mimetypes/text-x-kvc.png
share/icons/hicolor/128x128/mimetypes/text-x-kvs.png
share/icons/hicolor/16x16/apps/kvirc.png
share/icons/hicolor/16x16/mimetypes/application-x-kva.png
share/icons/hicolor/16x16/mimetypes/application-x-kvt.png
share/icons/hicolor/16x16/mimetypes/text-x-kvc.png
share/icons/hicolor/16x16/mimetypes/text-x-kvs.png
share/icons/hicolor/32x32/apps/kvirc.png
share/icons/hicolor/32x32/mimetypes/application-x-kva.png
share/icons/hicolor/32x32/mimetypes/application-x-kvt.png
share/icons/hicolor/32x32/mimetypes/text-x-kvc.png
share/icons/hicolor/32x32/mimetypes/text-x-kvs.png
share/icons/hicolor/48x48/apps/kvirc.png
share/icons/hicolor/48x48/mimetypes/application-x-kva.png
share/icons/hicolor/48x48/mimetypes/application-x-kvt.png
share/icons/hicolor/48x48/mimetypes/text-x-kvc.png
share/icons/hicolor/48x48/mimetypes/text-x-kvs.png
share/icons/hicolor/64x64/apps/kvirc.png
share/icons/hicolor/64x64/mimetypes/application-x-kva.png
share/icons/hicolor/64x64/mimetypes/application-x-kvt.png
share/icons/hicolor/64x64/mimetypes/text-x-kvc.png
share/icons/hicolor/64x64/mimetypes/text-x-kvs.png
share/icons/hicolor/scalable/apps/kvirc.svgz
share/icons/hicolor/scalable/mimetypes/application-x-kva.svgz
share/icons/hicolor/scalable/mimetypes/application-x-kvt.svgz
share/icons/hicolor/scalable/mimetypes/text-x-kvc.svgz
share/icons/hicolor/scalable/mimetypes/text-x-kvs.svgz
%%KDE%%share/kde4/services/_irc.protocol
%%KDE%%share/kde4/services/_irc6.protocol
%%DATADIR%%/%%VER%%/audio/jingle.wav
%%DATADIR%%/%%VER%%/config/modules/libkvitip.kvc
%%DATADIR%%/%%VER%%/config/modules/libkvitip_cs.kvc
%%DATADIR%%/%%VER%%/config/modules/libkvitip_de.kvc
%%DATADIR%%/%%VER%%/config/modules/libkvitip_it.kvc
%%DATADIR%%/%%VER%%/config/modules/libkvitip_pt.kvc
%%DATADIR%%/%%VER%%/config/modules/libkvitip_ru.kvc
%%DATADIR%%/%%VER%%/config/modules/libkvitip_uk.kvc
%%DATADIR%%/%%VER%%/config/serverdb.kvc
%%DATADIR%%/%%VER%%/config/texticons.kvc
%%DATADIR%%/%%VER%%/defscript/aliases.kvs
%%DATADIR%%/%%VER%%/defscript/classes.kvs
%%DATADIR%%/%%VER%%/defscript/default.kvc
%%DATADIR%%/%%VER%%/defscript/default.kvs
%%DATADIR%%/%%VER%%/defscript/events.kvs
%%DATADIR%%/%%VER%%/defscript/popups.kvs
%%DATADIR%%/%%VER%%/defscript/toolbars.kvs
%%DATADIR%%/%%VER%%/doc/FAQ
%%DATADIR%%/%%VER%%/doc/INSTALL
%%DATADIR%%/%%VER%%/doc/INSTALL-MacOS.txt
%%DATADIR%%/%%VER%%/doc/INSTALL-Win32.txt
%%DATADIR%%/%%VER%%/doc/README
%%DATADIR%%/%%VER%%/doc/addon.howto.txt
%%DATADIR%%/%%VER%%/doc/firefox.hack.txt
%%DATADIR%%/%%VER%%/doc/hackers.guide.txt
%%DATADIR%%/%%VER%%/doc/scripting.faq.txt
%%DATADIR%%/%%VER%%/doc/themes.howto.txt
%%DATADIR%%/%%VER%%/doc/translations.howto.txt
%%DATADIR%%/%%VER%%/doc/ui-style.tips.txt
%%DATADIR%%/%%VER%%/help/en/_db_class.idx
%%DATADIR%%/%%VER%%/help/en/_db_command.idx
%%DATADIR%%/%%VER%%/help/en/_db_event.idx
%%DATADIR%%/%%VER%%/help/en/_db_function.idx
%%DATADIR%%/%%VER%%/help/en/_db_generic.idx
%%DATADIR%%/%%VER%%/help/en/_db_keyterms.idx
%%DATADIR%%/%%VER%%/help/en/_db_language.idx
%%DATADIR%%/%%VER%%/help/en/_db_module.idx
%%DATADIR%%/%%VER%%/help/en/_db_widget.idx
%%DATADIR%%/%%VER%%/help/en/class_button.html
%%DATADIR%%/%%VER%%/help/en/class_buttongroup.html
%%DATADIR%%/%%VER%%/help/en/class_checkbox.html
%%DATADIR%%/%%VER%%/help/en/class_colordialog.html
%%DATADIR%%/%%VER%%/help/en/class_combobox.html
%%DATADIR%%/%%VER%%/help/en/class_datetimeedit.html
%%DATADIR%%/%%VER%%/help/en/class_dialog.html
%%DATADIR%%/%%VER%%/help/en/class_dockwindow.html
%%DATADIR%%/%%VER%%/help/en/class_file.html
%%DATADIR%%/%%VER%%/help/en/class_ftp.html
%%DATADIR%%/%%VER%%/help/en/class_groupbox.html
%%DATADIR%%/%%VER%%/help/en/class_hbox.html
%%DATADIR%%/%%VER%%/help/en/class_http.html
%%DATADIR%%/%%VER%%/help/en/class_label.html
%%DATADIR%%/%%VER%%/help/en/class_layout.html
%%DATADIR%%/%%VER%%/help/en/class_lcdnumber.html
%%DATADIR%%/%%VER%%/help/en/class_lineedit.html
%%DATADIR%%/%%VER%%/help/en/class_list.html
%%DATADIR%%/%%VER%%/help/en/class_listbox.html
%%DATADIR%%/%%VER%%/help/en/class_listview.html
%%DATADIR%%/%%VER%%/help/en/class_listviewitem.html
%%DATADIR%%/%%VER%%/help/en/class_mainwindow.html
%%DATADIR%%/%%VER%%/help/en/class_memorybuffer.html
%%DATADIR%%/%%VER%%/help/en/class_menubar.html
%%DATADIR%%/%%VER%%/help/en/class_multilineedit.html
%%DATADIR%%/%%VER%%/help/en/class_object.html
%%DATADIR%%/%%VER%%/help/en/class_painter.html
%%DATADIR%%/%%VER%%/help/en/class_pixmap.html
%%DATADIR%%/%%VER%%/help/en/class_popupmenu.html
%%DATADIR%%/%%VER%%/help/en/class_process.html
%%DATADIR%%/%%VER%%/help/en/class_progressbar.html
%%DATADIR%%/%%VER%%/help/en/class_radiobutton.html
%%DATADIR%%/%%VER%%/help/en/class_slider.html
%%DATADIR%%/%%VER%%/help/en/class_socket.html
%%DATADIR%%/%%VER%%/help/en/class_spinbox.html
%%DATADIR%%/%%VER%%/help/en/class_sql.html
%%DATADIR%%/%%VER%%/help/en/class_tablewidget.html
%%DATADIR%%/%%VER%%/help/en/class_tabwidget.html
%%DATADIR%%/%%VER%%/help/en/class_textbrowser.html
%%DATADIR%%/%%VER%%/help/en/class_toolbar.html
%%DATADIR%%/%%VER%%/help/en/class_toolbutton.html
%%DATADIR%%/%%VER%%/help/en/class_trayicon.html
%%DATADIR%%/%%VER%%/help/en/class_vbox.html
%%DATADIR%%/%%VER%%/help/en/class_webview.html
%%DATADIR%%/%%VER%%/help/en/class_widget.html
%%DATADIR%%/%%VER%%/help/en/class_window.html
%%DATADIR%%/%%VER%%/help/en/class_wizard.html
%%DATADIR%%/%%VER%%/help/en/class_workspace.html
%%DATADIR%%/%%VER%%/help/en/class_wrapper.html
%%DATADIR%%/%%VER%%/help/en/class_xmlreader.html
%%DATADIR%%/%%VER%%/help/en/cmd_about.kvirc.html
%%DATADIR%%/%%VER%%/help/en/cmd_action.create.html
%%DATADIR%%/%%VER%%/help/en/cmd_action.destroy.html
%%DATADIR%%/%%VER%%/help/en/cmd_action.disable.html
%%DATADIR%%/%%VER%%/help/en/cmd_action.enable.html
%%DATADIR%%/%%VER%%/help/en/cmd_action.list.html
%%DATADIR%%/%%VER%%/help/en/cmd_action.trigger.html
%%DATADIR%%/%%VER%%/help/en/cmd_actioneditor.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.configure.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.dialog.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.help.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.install.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.installfiles.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.list.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.register.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.setconfigurecallback.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.sethelpcallback.html
%%DATADIR%%/%%VER%%/help/en/cmd_addon.uninstall.html
%%DATADIR%%/%%VER%%/help/en/cmd_admin.html
%%DATADIR%%/%%VER%%/help/en/cmd_ahost.html
%%DATADIR%%/%%VER%%/help/en/cmd_alias.html
%%DATADIR%%/%%VER%%/help/en/cmd_aliaseditor.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_avatar.notify.html
%%DATADIR%%/%%VER%%/help/en/cmd_avatar.query.html
%%DATADIR%%/%%VER%%/help/en/cmd_avatar.set.html
%%DATADIR%%/%%VER%%/help/en/cmd_avatar.unset.html
%%DATADIR%%/%%VER%%/help/en/cmd_away.html
%%DATADIR%%/%%VER%%/help/en/cmd_awhois.html
%%DATADIR%%/%%VER%%/help/en/cmd_back.html
%%DATADIR%%/%%VER%%/help/en/cmd_ban.html
%%DATADIR%%/%%VER%%/help/en/cmd_beep.html
%%DATADIR%%/%%VER%%/help/en/cmd_break.html
%%DATADIR%%/%%VER%%/help/en/cmd_button.html
%%DATADIR%%/%%VER%%/help/en/cmd_buttonctl.html
%%DATADIR%%/%%VER%%/help/en/cmd_cap.html
%%DATADIR%%/%%VER%%/help/en/cmd_chanadmin.html
%%DATADIR%%/%%VER%%/help/en/cmd_channelsjoin.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_chanowner.html
%%DATADIR%%/%%VER%%/help/en/cmd_class.html
%%DATADIR%%/%%VER%%/help/en/cmd_classeditor.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_codepage.html
%%DATADIR%%/%%VER%%/help/en/cmd_codetester.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_config.clear.html
%%DATADIR%%/%%VER%%/help/en/cmd_config.clearsection.html
%%DATADIR%%/%%VER%%/help/en/cmd_config.close.html
%%DATADIR%%/%%VER%%/help/en/cmd_config.flush.html
%%DATADIR%%/%%VER%%/help/en/cmd_config.setsection.html
%%DATADIR%%/%%VER%%/help/en/cmd_config.write.html
%%DATADIR%%/%%VER%%/help/en/cmd_context.clearqueue.html
%%DATADIR%%/%%VER%%/help/en/cmd_continue.html
%%DATADIR%%/%%VER%%/help/en/cmd_ctcp.html
%%DATADIR%%/%%VER%%/help/en/cmd_dcc.abort.html
%%DATADIR%%/%%VER%%/help/en/cmd_dcc.chat.html
%%DATADIR%%/%%VER%%/help/en/cmd_dcc.get.html
%%DATADIR%%/%%VER%%/help/en/cmd_dcc.recv.html
%%DATADIR%%/%%VER%%/help/en/cmd_dcc.rsend.html
%%DATADIR%%/%%VER%%/help/en/cmd_dcc.send.html
%%DATADIR%%/%%VER%%/help/en/cmd_dcc.setbandwidthlimit.html
%%DATADIR%%/%%VER%%/help/en/cmd_dcc.voice.html
%%DATADIR%%/%%VER%%/help/en/cmd_debug.html
%%DATADIR%%/%%VER%%/help/en/cmd_dechanadmin.html
%%DATADIR%%/%%VER%%/help/en/cmd_dechanowner.html
%%DATADIR%%/%%VER%%/help/en/cmd_defpopup.html
%%DATADIR%%/%%VER%%/help/en/cmd_dehalfop.html
%%DATADIR%%/%%VER%%/help/en/cmd_delete.html
%%DATADIR%%/%%VER%%/help/en/cmd_delpopupitem.html
%%DATADIR%%/%%VER%%/help/en/cmd_deop.html
%%DATADIR%%/%%VER%%/help/en/cmd_destroy.html
%%DATADIR%%/%%VER%%/help/en/cmd_deuserop.html
%%DATADIR%%/%%VER%%/help/en/cmd_devoice.html
%%DATADIR%%/%%VER%%/help/en/cmd_dialog.file.html
%%DATADIR%%/%%VER%%/help/en/cmd_dialog.image.html
%%DATADIR%%/%%VER%%/help/en/cmd_dialog.message.html
%%DATADIR%%/%%VER%%/help/en/cmd_dialog.textinput.html
%%DATADIR%%/%%VER%%/help/en/cmd_die.html
%%DATADIR%%/%%VER%%/help/en/cmd_do.html
%%DATADIR%%/%%VER%%/help/en/cmd_echo.html
%%DATADIR%%/%%VER%%/help/en/cmd_echoprivmsg.html
%%DATADIR%%/%%VER%%/help/en/cmd_error.html
%%DATADIR%%/%%VER%%/help/en/cmd_eval.html
%%DATADIR%%/%%VER%%/help/en/cmd_event.html
%%DATADIR%%/%%VER%%/help/en/cmd_eventctl.html
%%DATADIR%%/%%VER%%/help/en/cmd_eventeditor.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_exec.html
%%DATADIR%%/%%VER%%/help/en/cmd_exit.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.addimagepath.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.copy.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.delimagepath.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.mkdir.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.remove.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.rename.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.rmdir.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.write.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.writebytes.html
%%DATADIR%%/%%VER%%/help/en/cmd_file.writelines.html
%%DATADIR%%/%%VER%%/help/en/cmd_filetransferwindow.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_for.html
%%DATADIR%%/%%VER%%/help/en/cmd_foreach.html
%%DATADIR%%/%%VER%%/help/en/cmd_function.html
%%DATADIR%%/%%VER%%/help/en/cmd_global.html
%%DATADIR%%/%%VER%%/help/en/cmd_halfop.html
%%DATADIR%%/%%VER%%/help/en/cmd_halt.html
%%DATADIR%%/%%VER%%/help/en/cmd_help.html
%%DATADIR%%/%%VER%%/help/en/cmd_help.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_host.html
%%DATADIR%%/%%VER%%/help/en/cmd_http.asyncget.html
%%DATADIR%%/%%VER%%/help/en/cmd_http.get.html
%%DATADIR%%/%%VER%%/help/en/cmd_ident.start.html
%%DATADIR%%/%%VER%%/help/en/cmd_ident.stop.html
%%DATADIR%%/%%VER%%/help/en/cmd_if.html
%%DATADIR%%/%%VER%%/help/en/cmd_include.html
%%DATADIR%%/%%VER%%/help/en/cmd_info.html
%%DATADIR%%/%%VER%%/help/en/cmd_inject.html
%%DATADIR%%/%%VER%%/help/en/cmd_invite.html
%%DATADIR%%/%%VER%%/help/en/cmd_iograph.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_join.html
%%DATADIR%%/%%VER%%/help/en/cmd_kick.html
%%DATADIR%%/%%VER%%/help/en/cmd_killtimer.html
%%DATADIR%%/%%VER%%/help/en/cmd_leave.html
%%DATADIR%%/%%VER%%/help/en/cmd_links.html
%%DATADIR%%/%%VER%%/help/en/cmd_links.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_list.html
%%DATADIR%%/%%VER%%/help/en/cmd_list.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_listtimers.html
%%DATADIR%%/%%VER%%/help/en/cmd_log.flush.html
%%DATADIR%%/%%VER%%/help/en/cmd_log.start.html
%%DATADIR%%/%%VER%%/help/en/cmd_log.stop.html
%%DATADIR%%/%%VER%%/help/en/cmd_logview.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_lusers.html
%%DATADIR%%/%%VER%%/help/en/cmd_me.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.detect.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.hide.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.jumpto.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.minimize.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.mute.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.next.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.pause.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.play.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.playmrl.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.prev.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.quit.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.seteqdata.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.setplayer.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.setplaylistpos.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.setrepeat.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.setshuffle.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.setvol.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.show.html
%%DATADIR%%/%%VER%%/help/en/cmd_mediaplayer.stop.html
%%DATADIR%%/%%VER%%/help/en/cmd_mode.html
%%DATADIR%%/%%VER%%/help/en/cmd_motd.html
%%DATADIR%%/%%VER%%/help/en/cmd_msg.html
%%DATADIR%%/%%VER%%/help/en/cmd_my.startidletimer.html
%%DATADIR%%/%%VER%%/help/en/cmd_my.stopidletimer.html
%%DATADIR%%/%%VER%%/help/en/cmd_nick.html
%%DATADIR%%/%%VER%%/help/en/cmd_notice.html
%%DATADIR%%/%%VER%%/help/en/cmd_notifier.hide.html
%%DATADIR%%/%%VER%%/help/en/cmd_notifier.message.html
%%DATADIR%%/%%VER%%/help/en/cmd_notifier.show.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.classes.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.clear.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.connect.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.disconnect.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.exists.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.instances.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.killclass.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.name.html
%%DATADIR%%/%%VER%%/help/en/cmd_objects.variables.html
%%DATADIR%%/%%VER%%/help/en/cmd_op.html
%%DATADIR%%/%%VER%%/help/en/cmd_openurl.html
%%DATADIR%%/%%VER%%/help/en/cmd_oper.html
%%DATADIR%%/%%VER%%/help/en/cmd_option.html
%%DATADIR%%/%%VER%%/help/en/cmd_options.dialog.html
%%DATADIR%%/%%VER%%/help/en/cmd_options.edit.html
%%DATADIR%%/%%VER%%/help/en/cmd_options.pages.html
%%DATADIR%%/%%VER%%/help/en/cmd_options.save.html
%%DATADIR%%/%%VER%%/help/en/cmd_parse.html
%%DATADIR%%/%%VER%%/help/en/cmd_part.html
%%DATADIR%%/%%VER%%/help/en/cmd_pass.html
%%DATADIR%%/%%VER%%/help/en/cmd_perl.begin.html
%%DATADIR%%/%%VER%%/help/en/cmd_perl.destroy.html
%%DATADIR%%/%%VER%%/help/en/cmd_perl.end.html
%%DATADIR%%/%%VER%%/help/en/cmd_play.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.addepilogue.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.addextpopup.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.additem.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.addlabel.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.addprologue.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.addseparator.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.addsubpopup.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.clear.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.create.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.delitem.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.destroy.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.html
%%DATADIR%%/%%VER%%/help/en/cmd_popup.show.html
%%DATADIR%%/%%VER%%/help/en/cmd_popupeditor.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_privateimpl.html
%%DATADIR%%/%%VER%%/help/en/cmd_privmsg.html
%%DATADIR%%/%%VER%%/help/en/cmd_proxydb.addproxy.html
%%DATADIR%%/%%VER%%/help/en/cmd_proxydb.sethostname.html
%%DATADIR%%/%%VER%%/help/en/cmd_proxydb.setip.html
%%DATADIR%%/%%VER%%/help/en/cmd_proxydb.setipv6.html
%%DATADIR%%/%%VER%%/help/en/cmd_proxydb.setpass.html
%%DATADIR%%/%%VER%%/help/en/cmd_proxydb.setport.html
%%DATADIR%%/%%VER%%/help/en/cmd_proxydb.setprotocol.html
%%DATADIR%%/%%VER%%/help/en/cmd_proxydb.setuser.html
%%DATADIR%%/%%VER%%/help/en/cmd_python.begin.html
%%DATADIR%%/%%VER%%/help/en/cmd_python.end.html
%%DATADIR%%/%%VER%%/help/en/cmd_query.html
%%DATADIR%%/%%VER%%/help/en/cmd_quit.html
%%DATADIR%%/%%VER%%/help/en/cmd_quote.html
%%DATADIR%%/%%VER%%/help/en/cmd_raise.html
%%DATADIR%%/%%VER%%/help/en/cmd_raw.html
%%DATADIR%%/%%VER%%/help/en/cmd_raweditor.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_rebind.html
%%DATADIR%%/%%VER%%/help/en/cmd_regchan.add.html
%%DATADIR%%/%%VER%%/help/en/cmd_regchan.remove.html
%%DATADIR%%/%%VER%%/help/en/cmd_regchan.setproperty.html
%%DATADIR%%/%%VER%%/help/en/cmd_regchan.showlist.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.add.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.addmask.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.delmask.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.edit.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.remove.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.setignoreenabled.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.setignoreflags.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.setproperty.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.showlist.html
%%DATADIR%%/%%VER%%/help/en/cmd_reguser.wizard.html
%%DATADIR%%/%%VER%%/help/en/cmd_return.html
%%DATADIR%%/%%VER%%/help/en/cmd_run.html
%%DATADIR%%/%%VER%%/help/en/cmd_say.html
%%DATADIR%%/%%VER%%/help/en/cmd_server.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.addnetwork.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.addserver.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworkconnectcommand.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworkdescription.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworkencoding.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworkjoinchannels.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworklogincommand.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworknickname.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworkrealname.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworktextencoding.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setnetworkusername.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setserverconnectcommand.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setserverdescription.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setserverencoding.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setserverjoinchannels.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setserverlogincommand.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setservernickname.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setserverrealname.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setservertextencoding.html
%%DATADIR%%/%%VER%%/help/en/cmd_serverdb.setserverusername.html
%%DATADIR%%/%%VER%%/help/en/cmd_service.html
%%DATADIR%%/%%VER%%/help/en/cmd_setmenu.html
%%DATADIR%%/%%VER%%/help/en/cmd_setreturn.html
%%DATADIR%%/%%VER%%/help/en/cmd_sharedfile.add.html
%%DATADIR%%/%%VER%%/help/en/cmd_sharedfile.clear.html
%%DATADIR%%/%%VER%%/help/en/cmd_sharedfile.list.html
%%DATADIR%%/%%VER%%/help/en/cmd_sharedfile.remove.html
%%DATADIR%%/%%VER%%/help/en/cmd_sharedfileswindow.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_snd.mute.html
%%DATADIR%%/%%VER%%/help/en/cmd_snd.play.html
%%DATADIR%%/%%VER%%/help/en/cmd_snd.unmute.html
%%DATADIR%%/%%VER%%/help/en/cmd_sockets.html
%%DATADIR%%/%%VER%%/help/en/cmd_socketspy.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_spaste.clipboard.html
%%DATADIR%%/%%VER%%/help/en/cmd_spaste.file.html
%%DATADIR%%/%%VER%%/help/en/cmd_spaste.list.html
%%DATADIR%%/%%VER%%/help/en/cmd_spaste.setdelay.html
%%DATADIR%%/%%VER%%/help/en/cmd_spaste.stop.html
%%DATADIR%%/%%VER%%/help/en/cmd_squery.html
%%DATADIR%%/%%VER%%/help/en/cmd_squit.html
%%DATADIR%%/%%VER%%/help/en/cmd_srand.html
%%DATADIR%%/%%VER%%/help/en/cmd_stats.html
%%DATADIR%%/%%VER%%/help/en/cmd_switch.html
%%DATADIR%%/%%VER%%/help/en/cmd_system.runcmd.html
%%DATADIR%%/%%VER%%/help/en/cmd_system.setclipboard.html
%%DATADIR%%/%%VER%%/help/en/cmd_system.setenv.html
%%DATADIR%%/%%VER%%/help/en/cmd_system.setselection.html
%%DATADIR%%/%%VER%%/help/en/cmd_system.toclipboard.html
%%DATADIR%%/%%VER%%/help/en/cmd_term.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_texticons.set.html
%%DATADIR%%/%%VER%%/help/en/cmd_theme.apply.html
%%DATADIR%%/%%VER%%/help/en/cmd_theme.dialog.html
%%DATADIR%%/%%VER%%/help/en/cmd_theme.install.html
%%DATADIR%%/%%VER%%/help/en/cmd_theme.screenshot.html
%%DATADIR%%/%%VER%%/help/en/cmd_time.html
%%DATADIR%%/%%VER%%/help/en/cmd_timer.html
%%DATADIR%%/%%VER%%/help/en/cmd_tip.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_tmphighlight.addchannel.html
%%DATADIR%%/%%VER%%/help/en/cmd_tmphighlight.addnick.html
%%DATADIR%%/%%VER%%/help/en/cmd_tmphighlight.removechannel.html
%%DATADIR%%/%%VER%%/help/en/cmd_tmphighlight.removenick.html
%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.additem.html
%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.clear.html
%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.create.html
%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.destroy.html
%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.hide.html
%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.remove.html
%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.show.html
%%DATADIR%%/%%VER%%/help/en/cmd_toolbareditor.open.html
%%DATADIR%%/%%VER%%/help/en/cmd_topic.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.announce.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.detect.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.setclient.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.setfilepriority.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.setmaxdownloadspeed.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.setmaxuploadspeed.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.start.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.startall.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.stop.html
%%DATADIR%%/%%VER%%/help/en/cmd_torrent.stopall.html
%%DATADIR%%/%%VER%%/help/en/cmd_trace.html
%%DATADIR%%/%%VER%%/help/en/cmd_trayicon.hide.html
%%DATADIR%%/%%VER%%/help/en/cmd_trayicon.hidewindow.html
%%DATADIR%%/%%VER%%/help/en/cmd_trayicon.show.html
%%DATADIR%%/%%VER%%/help/en/cmd_trload.html
%%DATADIR%%/%%VER%%/help/en/cmd_trunload.html
%%DATADIR%%/%%VER%%/help/en/cmd_unban.html
%%DATADIR%%/%%VER%%/help/en/cmd_unset.html
%%DATADIR%%/%%VER%%/help/en/cmd_upnp.addportmapping.html
%%DATADIR%%/%%VER%%/help/en/cmd_upnp.delportmapping.html
%%DATADIR%%/%%VER%%/help/en/cmd_upnp.refresh.html
%%DATADIR%%/%%VER%%/help/en/cmd_url.config.html
%%DATADIR%%/%%VER%%/help/en/cmd_url.list.html
%%DATADIR%%/%%VER%%/help/en/cmd_userop.html
%%DATADIR%%/%%VER%%/help/en/cmd_version.html
%%DATADIR%%/%%VER%%/help/en/cmd_voice.html
%%DATADIR%%/%%VER%%/help/en/cmd_warning.html
%%DATADIR%%/%%VER%%/help/en/cmd_while.html
%%DATADIR%%/%%VER%%/help/en/cmd_who.html
%%DATADIR%%/%%VER%%/help/en/cmd_whois.html
%%DATADIR%%/%%VER%%/help/en/cmd_whowas.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.activate.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.clearoutput.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.close.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.demandattention.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.dock.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.highlight.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.insertininputtext.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.listtypes.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.maximize.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.minimize.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.restore.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.savepropertiesasdefault.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.setbackground.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.setcryptengine.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.setinputtext.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.setwindowtitle.html
%%DATADIR%%/%%VER%%/help/en/cmd_window.undock.html
%%DATADIR%%/%%VER%%/help/en/doc_aliases.html
%%DATADIR%%/%%VER%%/help/en/doc_antispam.html
%%DATADIR%%/%%VER%%/help/en/doc_arrayconcatenation.html
%%DATADIR%%/%%VER%%/help/en/doc_assignment.html
%%DATADIR%%/%%VER%%/help/en/doc_binding.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_class_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_command_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_command_rebinding.html
%%DATADIR%%/%%VER%%/help/en/doc_commandline.html
%%DATADIR%%/%%VER%%/help/en/doc_connection_dependant_commands.html
%%DATADIR%%/%%VER%%/help/en/doc_crypt_engines.html
%%DATADIR%%/%%VER%%/help/en/doc_ctcp_avatar.html
%%DATADIR%%/%%VER%%/help/en/doc_ctcp_handling.html
%%DATADIR%%/%%VER%%/help/en/doc_dcc_connection.html
%%DATADIR%%/%%VER%%/help/en/doc_easyplugins.html
%%DATADIR%%/%%VER%%/help/en/doc_escape_sequences.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_event_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_events.html
%%DATADIR%%/%%VER%%/help/en/doc_expressioneval.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_function_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_generic_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_image_id.html
%%DATADIR%%/%%VER%%/help/en/doc_incrementdecrement.html
%%DATADIR%%/%%VER%%/help/en/doc_irc_masks.html
%%DATADIR%%/%%VER%%/help/en/doc_ircintro.html
%%DATADIR%%/%%VER%%/help/en/doc_keyboard.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_keyterms_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_kvircintro.html
%%DATADIR%%/%%VER%%/help/en/doc_kvs_addons.html
%%DATADIR%%/%%VER%%/help/en/doc_kvs_aliasesandfunctions.html
%%DATADIR%%/%%VER%%/help/en/doc_kvs_basicconcepts.html
%%DATADIR%%/%%VER%%/help/en/doc_kvs_codingtips.html
%%DATADIR%%/%%VER%%/help/en/doc_kvs_datatypes.html
%%DATADIR%%/%%VER%%/help/en/doc_kvs_introduction.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_language_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_module_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_modules.html
%%DATADIR%%/%%VER%%/help/en/doc_nickserv_proto.html
%%DATADIR%%/%%VER%%/help/en/doc_noblockingdialogs.html
%%DATADIR%%/%%VER%%/help/en/doc_notify_list.html
%%DATADIR%%/%%VER%%/help/en/doc_objects.html
%%DATADIR%%/%%VER%%/help/en/doc_operators.html
%%DATADIR%%/%%VER%%/help/en/doc_perl_and_kvs.html
%%DATADIR%%/%%VER%%/help/en/doc_python_and_kvs.html
%%DATADIR%%/%%VER%%/help/en/doc_registered_users.html
%%DATADIR%%/%%VER%%/help/en/doc_rfc2812.html
%%DATADIR%%/%%VER%%/help/en/doc_rfc2821wrappers.html
%%DATADIR%%/%%VER%%/help/en/doc_script_localization.html
%%DATADIR%%/%%VER%%/help/en/doc_selfarithmetic.html
%%DATADIR%%/%%VER%%/help/en/doc_selfbitwise.html
%%DATADIR%%/%%VER%%/help/en/doc_shared_files.html
%%DATADIR%%/%%VER%%/help/en/doc_stringconcatenation.html
%%DATADIR%%/%%VER%%/help/en/doc_syntactic_rules.html
%%DATADIR%%/%%VER%%/help/en/doc_texticons.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_$.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_a.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_b.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_c.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_d.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_e.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_f.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_g.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_h.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_i.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_j.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_k.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_l.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_m.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_n.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_o.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_p.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_q.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_r.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_s.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_t.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_u.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_v.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_w.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_x.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_y.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_z.html
%%DATADIR%%/%%VER%%/help/en/doc_widget_index_all.html
%%DATADIR%%/%%VER%%/help/en/doc_window_naming_conventions.html
%%DATADIR%%/%%VER%%/help/en/documentation.4.2.0.6190.tag
%%DATADIR%%/%%VER%%/help/en/event_onaccelkeypressed.html
%%DATADIR%%/%%VER%%/help/en/event_onaction.html
%%DATADIR%%/%%VER%%/help/en/event_onban.html
%%DATADIR%%/%%VER%%/help/en/event_onbanexception.html
%%DATADIR%%/%%VER%%/help/en/event_onbanexceptionremove.html
%%DATADIR%%/%%VER%%/help/en/event_onbroadcastnotice.html
%%DATADIR%%/%%VER%%/help/en/event_onchanadmin.html
%%DATADIR%%/%%VER%%/help/en/event_onchannellinkclick.html
%%DATADIR%%/%%VER%%/help/en/event_onchannellinkpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelmessage.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelmodechange.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelnickdefaultactionrequest.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelnicklinkclick.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelnickpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelnotice.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelsync.html
%%DATADIR%%/%%VER%%/help/en/event_onchannelwindowcreated.html
%%DATADIR%%/%%VER%%/help/en/event_onchanowner.html
%%DATADIR%%/%%VER%%/help/en/event_onchanservnotice.html
%%DATADIR%%/%%VER%%/help/en/event_onconsolenicklinkclick.html
%%DATADIR%%/%%VER%%/help/en/event_onconsolepopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onctcpflood.html
%%DATADIR%%/%%VER%%/help/en/event_onctcpreply.html
%%DATADIR%%/%%VER%%/help/en/event_onctcprequest.html
%%DATADIR%%/%%VER%%/help/en/event_ondccchatconnected.html
%%DATADIR%%/%%VER%%/help/en/event_ondccchatconnectioninprogress.html
%%DATADIR%%/%%VER%%/help/en/event_ondccchatdisconnected.html
%%DATADIR%%/%%VER%%/help/en/event_ondccchaterror.html
%%DATADIR%%/%%VER%%/help/en/event_ondccchatmessage.html
%%DATADIR%%/%%VER%%/help/en/event_ondccchatpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_ondccchatwindowclosing.html
%%DATADIR%%/%%VER%%/help/en/event_ondccchatwindowcreated.html
%%DATADIR%%/%%VER%%/help/en/event_ondccfiletransferbegin.html
%%DATADIR%%/%%VER%%/help/en/event_ondccfiletransferconnectioninprogress.html
%%DATADIR%%/%%VER%%/help/en/event_ondccfiletransferfailed.html
%%DATADIR%%/%%VER%%/help/en/event_ondccfiletransfersuccess.html
%%DATADIR%%/%%VER%%/help/en/event_ondccsessioncreated.html
%%DATADIR%%/%%VER%%/help/en/event_ondccsessiondestroyed.html
%%DATADIR%%/%%VER%%/help/en/event_ondechanadmin.html
%%DATADIR%%/%%VER%%/help/en/event_ondechanowner.html
%%DATADIR%%/%%VER%%/help/en/event_ondehalfop.html
%%DATADIR%%/%%VER%%/help/en/event_ondeircop.html
%%DATADIR%%/%%VER%%/help/en/event_ondeop.html
%%DATADIR%%/%%VER%%/help/en/event_ondeuserop.html
%%DATADIR%%/%%VER%%/help/en/event_ondevoice.html
%%DATADIR%%/%%VER%%/help/en/event_ondisconnectrequest.html
%%DATADIR%%/%%VER%%/help/en/event_onerror.html
%%DATADIR%%/%%VER%%/help/en/event_onframewindowcreated.html
%%DATADIR%%/%%VER%%/help/en/event_onframewindowdestroyed.html
%%DATADIR%%/%%VER%%/help/en/event_onhalfop.html
%%DATADIR%%/%%VER%%/help/en/event_onhighlight.html
%%DATADIR%%/%%VER%%/help/en/event_onhostlinkclick.html
%%DATADIR%%/%%VER%%/help/en/event_onhostlinkpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onhttpgetterminated.html
%%DATADIR%%/%%VER%%/help/en/event_onignoredmessage.html
%%DATADIR%%/%%VER%%/help/en/event_oninputbarpaste.html
%%DATADIR%%/%%VER%%/help/en/event_oninvite.html
%%DATADIR%%/%%VER%%/help/en/event_oninviteexception.html
%%DATADIR%%/%%VER%%/help/en/event_oninviteexceptionremove.html
%%DATADIR%%/%%VER%%/help/en/event_onirc.html
%%DATADIR%%/%%VER%%/help/en/event_onircconnectionestablished.html
%%DATADIR%%/%%VER%%/help/en/event_onircconnectionterminated.html
%%DATADIR%%/%%VER%%/help/en/event_onirccontextcreated.html
%%DATADIR%%/%%VER%%/help/en/event_onirccontextdestroyed.html
%%DATADIR%%/%%VER%%/help/en/event_onircop.html
%%DATADIR%%/%%VER%%/help/en/event_onjoin.html
%%DATADIR%%/%%VER%%/help/en/event_onkeyset.html
%%DATADIR%%/%%VER%%/help/en/event_onkeyunset.html
%%DATADIR%%/%%VER%%/help/en/event_onkick.html
%%DATADIR%%/%%VER%%/help/en/event_onkvircshutdown.html
%%DATADIR%%/%%VER%%/help/en/event_onkvircstartup.html
%%DATADIR%%/%%VER%%/help/en/event_onlagalarmtimedown.html
%%DATADIR%%/%%VER%%/help/en/event_onlagalarmtimeup.html
%%DATADIR%%/%%VER%%/help/en/event_onlagcheck.html
%%DATADIR%%/%%VER%%/help/en/event_onlimitset.html
%%DATADIR%%/%%VER%%/help/en/event_onlimitunset.html
%%DATADIR%%/%%VER%%/help/en/event_onmeaction.html
%%DATADIR%%/%%VER%%/help/en/event_onmeaway.html
%%DATADIR%%/%%VER%%/help/en/event_onmeback.html
%%DATADIR%%/%%VER%%/help/en/event_onmeban.html
%%DATADIR%%/%%VER%%/help/en/event_onmebanexception.html
%%DATADIR%%/%%VER%%/help/en/event_onmebanexceptionremove.html
%%DATADIR%%/%%VER%%/help/en/event_onmechanadmin.html
%%DATADIR%%/%%VER%%/help/en/event_onmechanowner.html
%%DATADIR%%/%%VER%%/help/en/event_onmedechanadmin.html
%%DATADIR%%/%%VER%%/help/en/event_onmedechanowner.html
%%DATADIR%%/%%VER%%/help/en/event_onmedehalfop.html
%%DATADIR%%/%%VER%%/help/en/event_onmedeircop.html
%%DATADIR%%/%%VER%%/help/en/event_onmedeop.html
%%DATADIR%%/%%VER%%/help/en/event_onmedeuserop.html
%%DATADIR%%/%%VER%%/help/en/event_onmedevoice.html
%%DATADIR%%/%%VER%%/help/en/event_onmehalfop.html
%%DATADIR%%/%%VER%%/help/en/event_onmeinviteexception.html
%%DATADIR%%/%%VER%%/help/en/event_onmeinviteexceptionremove.html
%%DATADIR%%/%%VER%%/help/en/event_onmeircop.html
%%DATADIR%%/%%VER%%/help/en/event_onmejoin.html
%%DATADIR%%/%%VER%%/help/en/event_onmekick.html
%%DATADIR%%/%%VER%%/help/en/event_onmemoservnotice.html
%%DATADIR%%/%%VER%%/help/en/event_onmenickchange.html
%%DATADIR%%/%%VER%%/help/en/event_onmeop.html
%%DATADIR%%/%%VER%%/help/en/event_onmepart.html
%%DATADIR%%/%%VER%%/help/en/event_onmeunban.html
%%DATADIR%%/%%VER%%/help/en/event_onmeuserop.html
%%DATADIR%%/%%VER%%/help/en/event_onmevoice.html
%%DATADIR%%/%%VER%%/help/en/event_onnetsplit.html
%%DATADIR%%/%%VER%%/help/en/event_onnickchange.html
%%DATADIR%%/%%VER%%/help/en/event_onnicklinkdefaultactionrequest.html
%%DATADIR%%/%%VER%%/help/en/event_onnicklinkpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onnickservauth.html
%%DATADIR%%/%%VER%%/help/en/event_onnickservnotice.html
%%DATADIR%%/%%VER%%/help/en/event_onnotifylistdefaultactionrequest.html
%%DATADIR%%/%%VER%%/help/en/event_onnotifylistpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onnotifyoffline.html
%%DATADIR%%/%%VER%%/help/en/event_onnotifyonline.html
%%DATADIR%%/%%VER%%/help/en/event_onop.html
%%DATADIR%%/%%VER%%/help/en/event_onoutboundtraffic.html
%%DATADIR%%/%%VER%%/help/en/event_onpart.html
%%DATADIR%%/%%VER%%/help/en/event_onping.html
%%DATADIR%%/%%VER%%/help/en/event_onpong.html
%%DATADIR%%/%%VER%%/help/en/event_onqueryfiledropped.html
%%DATADIR%%/%%VER%%/help/en/event_onquerymessage.html
%%DATADIR%%/%%VER%%/help/en/event_onquerynickdefaultactionrequest.html
%%DATADIR%%/%%VER%%/help/en/event_onquerynicklinkclick.html
%%DATADIR%%/%%VER%%/help/en/event_onquerynickpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onquerynotice.html
%%DATADIR%%/%%VER%%/help/en/event_onquerypopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onquerytargetadded.html
%%DATADIR%%/%%VER%%/help/en/event_onquerywindowcreated.html
%%DATADIR%%/%%VER%%/help/en/event_onquerywindowrequest.html
%%DATADIR%%/%%VER%%/help/en/event_onquit.html
%%DATADIR%%/%%VER%%/help/en/event_onserverlinkclick.html
%%DATADIR%%/%%VER%%/help/en/event_onserverlinkpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onservernotice.html
%%DATADIR%%/%%VER%%/help/en/event_ontextinput.html
%%DATADIR%%/%%VER%%/help/en/event_ontextviewdoublecliked.html
%%DATADIR%%/%%VER%%/help/en/event_ontopic.html
%%DATADIR%%/%%VER%%/help/en/event_onunban.html
%%DATADIR%%/%%VER%%/help/en/event_onunhandledliteral.html
%%DATADIR%%/%%VER%%/help/en/event_onurl.html
%%DATADIR%%/%%VER%%/help/en/event_onurllinkclick.html
%%DATADIR%%/%%VER%%/help/en/event_onurllinkpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onusermodechange.html
%%DATADIR%%/%%VER%%/help/en/event_onuserop.html
%%DATADIR%%/%%VER%%/help/en/event_onvoice.html
%%DATADIR%%/%%VER%%/help/en/event_onwallops.html
%%DATADIR%%/%%VER%%/help/en/event_onwindowactivated.html
%%DATADIR%%/%%VER%%/help/en/event_onwindowpopuprequest.html
%%DATADIR%%/%%VER%%/help/en/event_onwindowtitlerequest.html
%%DATADIR%%/%%VER%%/help/en/fnc_$.html
%%DATADIR%%/%%VER%%/help/en/fnc_$window.inputtext.html
%%DATADIR%%/%%VER%%/help/en/fnc_action.exists.html
%%DATADIR%%/%%VER%%/help/en/fnc_action.isenabled.html
%%DATADIR%%/%%VER%%/help/en/fnc_active.html
%%DATADIR%%/%%VER%%/help/en/fnc_addon.exists.html
%%DATADIR%%/%%VER%%/help/en/fnc_addon.version.html
%%DATADIR%%/%%VER%%/help/en/fnc_aliasbody.html
%%DATADIR%%/%%VER%%/help/en/fnc_array.html
%%DATADIR%%/%%VER%%/help/en/fnc_ascii.html
%%DATADIR%%/%%VER%%/help/en/fnc_asciitobase64.html
%%DATADIR%%/%%VER%%/help/en/fnc_asciitohex.html
%%DATADIR%%/%%VER%%/help/en/fnc_avatar.name.html
%%DATADIR%%/%%VER%%/help/en/fnc_avatar.path.html
%%DATADIR%%/%%VER%%/help/en/fnc_away.html
%%DATADIR%%/%%VER%%/help/en/fnc_b.html
%%DATADIR%%/%%VER%%/help/en/fnc_base64toascii.html
%%DATADIR%%/%%VER%%/help/en/fnc_bool.html
%%DATADIR%%/%%VER%%/help/en/fnc_boolean.html
%%DATADIR%%/%%VER%%/help/en/fnc_certificate.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.admincount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.bancount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.banexceptioncount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.banexceptionlist.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.banlist.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.common.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.getflag.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.geturl.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.halfopcount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.invitecount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.invitelist.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.isadmin.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.isdead.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ishalfop.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ismeadmin.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ismehalfop.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ismeop.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ismeowner.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ismeuserop.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ismevoice.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ison.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.isop.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.isowner.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.isuserop.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.isvoice.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.key.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.limit.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.maskcount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.masklist.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.matchban.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.matchbanexception.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.matchinvite.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.matchmask.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.matchqban.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.mode.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.modeparam.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.name.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.opcount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.ownercount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.topic.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.topicsetat.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.topicsetby.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.usercount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.userjointime.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.userlastactiontime.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.usermodelevel.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.useropcount.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.users.html
%%DATADIR%%/%%VER%%/help/en/fnc_chan.voicecount.html
%%DATADIR%%/%%VER%%/help/en/fnc_channel.html
%%DATADIR%%/%%VER%%/help/en/fnc_char.html
%%DATADIR%%/%%VER%%/help/en/fnc_classdefined.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.filelist.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.filename.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.hassection.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.id.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.keylist.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.open.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.read.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.readonly.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.section.html
%%DATADIR%%/%%VER%%/help/en/fnc_config.sectionlist.html
%%DATADIR%%/%%VER%%/help/en/fnc_console.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.connectionstarttime.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.getsslcertinfo.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.lastmessagetime.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.list.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.networkname.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.queuesize.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serverdbnetworkname.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serverdbserverhostname.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serverhostname.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serveripaddress.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serverisipv6.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serverisssl.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serverpassword.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serverport.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.serversoftware.html
%%DATADIR%%/%%VER%%/help/en/fnc_context.state.html
%%DATADIR%%/%%VER%%/help/en/fnc_countstatusbaritems.html
%%DATADIR%%/%%VER%%/help/en/fnc_cr.html
%%DATADIR%%/%%VER%%/help/en/fnc_date.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.averagespeed.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.connectiontype.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.getsslcertinfo.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.irccontext.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.isfiledownload.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.isfiletransfer.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.isfileupload.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.localfilename.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.localfilesize.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.localhost.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.localip.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.localnick.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.localport.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.localuser.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.protocol.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.remotefilename.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.remotefilesize.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.remotehost.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.remoteip.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.remotenick.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.remoteport.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.remoteuser.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.session.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.sessionlist.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.transferredbytes.html
%%DATADIR%%/%%VER%%/help/en/fnc_dcc.transferstatus.html
%%DATADIR%%/%%VER%%/help/en/fnc_dialog.yesno.html
%%DATADIR%%/%%VER%%/help/en/fnc_escape.html
%%DATADIR%%/%%VER%%/help/en/fnc_false.html
%%DATADIR%%/%%VER%%/help/en/fnc_features.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.allsizes.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.cwd.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.digest.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.diskspace.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.exists.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.extractfilename.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.extractpath.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.fixpath.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.globaldir.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.homedir.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.localdir.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.ls.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.ps.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.read.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.readbytes.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.readlines.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.rootdir.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.size.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.time.html
%%DATADIR%%/%%VER%%/help/en/fnc_file.type.html
%%DATADIR%%/%%VER%%/help/en/fnc_firstconnectedconsole.html
%%DATADIR%%/%%VER%%/help/en/fnc_flatten.html
%%DATADIR%%/%%VER%%/help/en/fnc_fmtlink.html
%%DATADIR%%/%%VER%%/help/en/fnc_gender.html
%%DATADIR%%/%%VER%%/help/en/fnc_globals.html
%%DATADIR%%/%%VER%%/help/en/fnc_hash.html
%%DATADIR%%/%%VER%%/help/en/fnc_hextoascii.html
%%DATADIR%%/%%VER%%/help/en/fnc_hostname.html
%%DATADIR%%/%%VER%%/help/en/fnc_hptimestamp.html
%%DATADIR%%/%%VER%%/help/en/fnc_icon.html
%%DATADIR%%/%%VER%%/help/en/fnc_iconname.html
%%DATADIR%%/%%VER%%/help/en/fnc_insidealias.html
%%DATADIR%%/%%VER%%/help/en/fnc_int.html
%%DATADIR%%/%%VER%%/help/en/fnc_integer.html
%%DATADIR%%/%%VER%%/help/en/fnc_isbot.html
%%DATADIR%%/%%VER%%/help/en/fnc_isempty.html
%%DATADIR%%/%%VER%%/help/en/fnc_iseventenabled.html
%%DATADIR%%/%%VER%%/help/en/fnc_ismainwindowactive.html
%%DATADIR%%/%%VER%%/help/en/fnc_ismainwindowminimized.html
%%DATADIR%%/%%VER%%/help/en/fnc_isnumeric.html
%%DATADIR%%/%%VER%%/help/en/fnc_isset.html
%%DATADIR%%/%%VER%%/help/en/fnc_istimer.html
%%DATADIR%%/%%VER%%/help/en/fnc_iswellknown.html
%%DATADIR%%/%%VER%%/help/en/fnc_k.html
%%DATADIR%%/%%VER%%/help/en/fnc_keys.html
%%DATADIR%%/%%VER%%/help/en/fnc_lag.html
%%DATADIR%%/%%VER%%/help/en/fnc_lang.html
%%DATADIR%%/%%VER%%/help/en/fnc_language.detect.html
%%DATADIR%%/%%VER%%/help/en/fnc_length.html
%%DATADIR%%/%%VER%%/help/en/fnc_lf.html
%%DATADIR%%/%%VER%%/help/en/fnc_link.html
%%DATADIR%%/%%VER%%/help/en/fnc_listtimers.html
%%DATADIR%%/%%VER%%/help/en/fnc_log.export.html
%%DATADIR%%/%%VER%%/help/en/fnc_log.file.html
%%DATADIR%%/%%VER%%/help/en/fnc_mask.hasnumerichost.html
%%DATADIR%%/%%VER%%/help/en/fnc_mask.host.html
%%DATADIR%%/%%VER%%/help/en/fnc_mask.html
%%DATADIR%%/%%VER%%/help/en/fnc_mask.match.html
%%DATADIR%%/%%VER%%/help/en/fnc_mask.nick.html
%%DATADIR%%/%%VER%%/help/en/fnc_mask.user.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.abs.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.acos.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.asin.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.atan.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.cbrt.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.ceil.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.cos.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.e.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.exp.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.floor.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.isinf.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.isnan.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.log.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.log10.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.pi.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.pow.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.sin.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.sqrt.html
%%DATADIR%%/%%VER%%/help/en/fnc_math.tan.html
%%DATADIR%%/%%VER%%/help/en/fnc_me.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.album.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.artist.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.bitrate.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.channels.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.comment.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.genre.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.geteqdata.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.getlistlength.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.getplaylistpos.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.getrepeat.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.getshuffle.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.getvol.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.length.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.localfile.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.mediatype.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.mrl.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.nowplaying.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.player.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.playerlist.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.position.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.samplerate.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.status.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.title.html
%%DATADIR%%/%%VER%%/help/en/fnc_mediaplayer.year.html
%%DATADIR%%/%%VER%%/help/en/fnc_msgtype.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.globalidle.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.host.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.ip.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.network.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.nick.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.server.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.serverisipv6.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.serverisssl.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.umode.html
%%DATADIR%%/%%VER%%/help/en/fnc_my.user.html
%%DATADIR%%/%%VER%%/help/en/fnc_new.html
%%DATADIR%%/%%VER%%/help/en/fnc_nothing.html
%%DATADIR%%/%%VER%%/help/en/fnc_notifier.isenabled.html
%%DATADIR%%/%%VER%%/help/en/fnc_null.html
%%DATADIR%%/%%VER%%/help/en/fnc_o.html
%%DATADIR%%/%%VER%%/help/en/fnc_objects.classallhandlers.html
%%DATADIR%%/%%VER%%/help/en/fnc_objects.dump.html
%%DATADIR%%/%%VER%%/help/en/fnc_option.html
%%DATADIR%%/%%VER%%/help/en/fnc_options.isdialog.html
%%DATADIR%%/%%VER%%/help/en/fnc_perl.isavailable.html
%%DATADIR%%/%%VER%%/help/en/fnc_popup.currentitemid.html
%%DATADIR%%/%%VER%%/help/en/fnc_popup.exists.html
%%DATADIR%%/%%VER%%/help/en/fnc_popup.isempty.html
%%DATADIR%%/%%VER%%/help/en/fnc_proxydb.hostname.html
%%DATADIR%%/%%VER%%/help/en/fnc_proxydb.ip.html
%%DATADIR%%/%%VER%%/help/en/fnc_proxydb.isipv6.html
%%DATADIR%%/%%VER%%/help/en/fnc_proxydb.password.html
%%DATADIR%%/%%VER%%/help/en/fnc_proxydb.port.html
%%DATADIR%%/%%VER%%/help/en/fnc_proxydb.protocol.html
%%DATADIR%%/%%VER%%/help/en/fnc_proxydb.username.html
%%DATADIR%%/%%VER%%/help/en/fnc_python.isavailable.html
%%DATADIR%%/%%VER%%/help/en/fnc_query.html
%%DATADIR%%/%%VER%%/help/en/fnc_r.html
%%DATADIR%%/%%VER%%/help/en/fnc_rand.html
%%DATADIR%%/%%VER%%/help/en/fnc_real.html
%%DATADIR%%/%%VER%%/help/en/fnc_realname.html
%%DATADIR%%/%%VER%%/help/en/fnc_receivedbytes.html
%%DATADIR%%/%%VER%%/help/en/fnc_regchan.find.html
%%DATADIR%%/%%VER%%/help/en/fnc_regchan.list.html
%%DATADIR%%/%%VER%%/help/en/fnc_regchan.match.html
%%DATADIR%%/%%VER%%/help/en/fnc_regchan.property.html
%%DATADIR%%/%%VER%%/help/en/fnc_reguser.exactmatch.html
%%DATADIR%%/%%VER%%/help/en/fnc_reguser.getignoreflags.html
%%DATADIR%%/%%VER%%/help/en/fnc_reguser.isignoreenabled.html
%%DATADIR%%/%%VER%%/help/en/fnc_reguser.list.html
%%DATADIR%%/%%VER%%/help/en/fnc_reguser.mask.html
%%DATADIR%%/%%VER%%/help/en/fnc_reguser.match.html
%%DATADIR%%/%%VER%%/help/en/fnc_reguser.matchproperty.html
%%DATADIR%%/%%VER%%/help/en/fnc_reguser.property.html
%%DATADIR%%/%%VER%%/help/en/fnc_rsort.html
%%DATADIR%%/%%VER%%/help/en/fnc_scriptcontextname.html
%%DATADIR%%/%%VER%%/help/en/fnc_selected.html
%%DATADIR%%/%%VER%%/help/en/fnc_sentbytes.html
%%DATADIR%%/%%VER%%/help/en/fnc_serialize.html
%%DATADIR%%/%%VER%%/help/en/fnc_server.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.cacheip.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.isautoconnect.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.isipv6.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.isssl.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networkconnectcommand.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networkdescription.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networkencoding.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networkexists.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networkjoinchannels.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networklogincommand.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networkname.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networknickname.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networkrealname.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networktextencoding.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.networkusername.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverconnectcommand.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverdescription.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverencoding.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverexists.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverid.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverip.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverjoinchannels.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverlogincommand.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.servernickname.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverpassword.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverport.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverrealname.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.servertextencoding.html
%%DATADIR%%/%%VER%%/help/en/fnc_serverdb.serverusername.html
%%DATADIR%%/%%VER%%/help/en/fnc_snd.ismuted.html
%%DATADIR%%/%%VER%%/help/en/fnc_sort.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.append.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.charsum.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.chop.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.cmp.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.contains.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.digest.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.equal.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.evpsign.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.evpverify.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.find.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.findfirst.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.findlast.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.fromclipboard.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.grep.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.insert.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.isempty.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.isnumber.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.isunsignednumber.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.join.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.left.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.lefttofirst.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.lefttolast.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.len.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.length.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.localelowcase.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.localeupcase.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.lowcase.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.match.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.mid.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.prepend.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.printf.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.replace.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.right.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.rightfromfirst.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.rightfromlast.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.section.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.split.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.strip.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.stripcolors.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.stripleft.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.stripright.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.token.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.upcase.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.urlencode.html
%%DATADIR%%/%%VER%%/help/en/fnc_str.word.html
%%DATADIR%%/%%VER%%/help/en/fnc_string.html
%%DATADIR%%/%%VER%%/help/en/fnc_sw.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.call.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.checkmodule.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.clipboard.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.dbus.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.getenv.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.hostname.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.osmachine.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.osname.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.osnodename.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.osrelease.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.ostype.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.osversion.html
%%DATADIR%%/%%VER%%/help/en/fnc_system.selection.html
%%DATADIR%%/%%VER%%/help/en/fnc_target.html
%%DATADIR%%/%%VER%%/help/en/fnc_texticons.get.html
%%DATADIR%%/%%VER%%/help/en/fnc_theme.info.html
%%DATADIR%%/%%VER%%/help/en/fnc_theme.list.html
%%DATADIR%%/%%VER%%/help/en/fnc_this.html
%%DATADIR%%/%%VER%%/help/en/fnc_tmphighlight.ischannelhighlighted.html
%%DATADIR%%/%%VER%%/help/en/fnc_tmphighlight.isnickhighlighted.html
%%DATADIR%%/%%VER%%/help/en/fnc_toolbar.exists.html
%%DATADIR%%/%%VER%%/help/en/fnc_toolbar.isvisible.html
%%DATADIR%%/%%VER%%/help/en/fnc_toolbar.items.html
%%DATADIR%%/%%VER%%/help/en/fnc_toolbar.list.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.client.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.clientlist.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.count.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.filecount.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.filename.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.filepriority.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.maxdownloadspeed.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.maxuploadspeed.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.name.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.speeddown.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.speedup.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.state.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.trafficdown.html
%%DATADIR%%/%%VER%%/help/en/fnc_torrent.trafficup.html
%%DATADIR%%/%%VER%%/help/en/fnc_tr.html
%%DATADIR%%/%%VER%%/help/en/fnc_trayicon.isvisible.html
%%DATADIR%%/%%VER%%/help/en/fnc_true.html
%%DATADIR%%/%%VER%%/help/en/fnc_typeof.html
%%DATADIR%%/%%VER%%/help/en/fnc_u.html
%%DATADIR%%/%%VER%%/help/en/fnc_uflags.html
%%DATADIR%%/%%VER%%/help/en/fnc_unicode.html
%%DATADIR%%/%%VER%%/help/en/fnc_unixtime.html
%%DATADIR%%/%%VER%%/help/en/fnc_unserialize.html
%%DATADIR%%/%%VER%%/help/en/fnc_upnp.getexternalipaddress.html
%%DATADIR%%/%%VER%%/help/en/fnc_upnp.isgatewayavailable.html
%%DATADIR%%/%%VER%%/help/en/fnc_userlist.selected.html
%%DATADIR%%/%%VER%%/help/en/fnc_username.html
%%DATADIR%%/%%VER%%/help/en/fnc_version.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.activitylevel.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.activitytemperature.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.caption.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.console.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.context.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.exists.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.hasinput.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.hasoutput.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.hasuserfocus.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.highlightlevel.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.isdocked.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.ismaximized.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.isminimized.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.list.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.open.html
%%DATADIR%%/%%VER%%/help/en/fnc_window.type.html
%%DATADIR%%/%%VER%%/help/en/helplogoleft.png
%%DATADIR%%/%%VER%%/help/en/helplogoright.png
%%DATADIR%%/%%VER%%/help/en/index.html
%%DATADIR%%/%%VER%%/help/en/module_config.html
%%DATADIR%%/%%VER%%/help/en/module_dcc.html
%%DATADIR%%/%%VER%%/help/en/module_fish.html
%%DATADIR%%/%%VER%%/help/en/module_lamerizer.html
%%DATADIR%%/%%VER%%/help/en/module_log.html
%%DATADIR%%/%%VER%%/help/en/module_mediaplayer.html
%%DATADIR%%/%%VER%%/help/en/module_reguser.html
%%DATADIR%%/%%VER%%/help/en/module_rijndael.html
%%DATADIR%%/%%VER%%/help/en/module_rot13.html
%%DATADIR%%/%%VER%%/help/en/module_serverdb.html
%%DATADIR%%/%%VER%%/help/en/module_torrent.html
%%DATADIR%%/%%VER%%/help/en/module_url.html
%%DATADIR%%/%%VER%%/help/en/nohelpavailable.html
%%DATADIR%%/%%VER%%/help/en/widget_ctcpfloodprotectionoptions.html
%%DATADIR%%/%%VER%%/license/COPYING
%%DATADIR%%/%%VER%%/license/LICENSE-GPLV2
%%DATADIR%%/%%VER%%/license/LICENSE-GPLV3
%%DATADIR%%/%%VER%%/license/LICENSE-OPENSSL
%%DATADIR%%/%%VER%%/locale/about_bg.mo
%%DATADIR%%/%%VER%%/locale/about_cs.mo
%%DATADIR%%/%%VER%%/locale/about_de.mo
%%DATADIR%%/%%VER%%/locale/about_es.mo
%%DATADIR%%/%%VER%%/locale/about_fi.mo
%%DATADIR%%/%%VER%%/locale/about_fr.mo
%%DATADIR%%/%%VER%%/locale/about_hr.mo
%%DATADIR%%/%%VER%%/locale/about_hu.mo
%%DATADIR%%/%%VER%%/locale/about_it.mo
%%DATADIR%%/%%VER%%/locale/about_ja.mo
%%DATADIR%%/%%VER%%/locale/about_nl.mo
%%DATADIR%%/%%VER%%/locale/about_pl.mo
%%DATADIR%%/%%VER%%/locale/about_pt.mo
%%DATADIR%%/%%VER%%/locale/about_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/about_ru.mo
%%DATADIR%%/%%VER%%/locale/about_sr.mo
%%DATADIR%%/%%VER%%/locale/about_tr.mo
%%DATADIR%%/%%VER%%/locale/about_uk.mo
%%DATADIR%%/%%VER%%/locale/addon_de.mo
%%DATADIR%%/%%VER%%/locale/addon_es.mo
%%DATADIR%%/%%VER%%/locale/addon_fr.mo
%%DATADIR%%/%%VER%%/locale/addon_hu.mo
%%DATADIR%%/%%VER%%/locale/addon_it.mo
%%DATADIR%%/%%VER%%/locale/addon_ja.mo
%%DATADIR%%/%%VER%%/locale/addon_pl.mo
%%DATADIR%%/%%VER%%/locale/addon_pt.mo
%%DATADIR%%/%%VER%%/locale/addon_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/addon_ru.mo
%%DATADIR%%/%%VER%%/locale/addon_tr.mo
%%DATADIR%%/%%VER%%/locale/addon_uk.mo
%%DATADIR%%/%%VER%%/locale/dcc_bg.mo
%%DATADIR%%/%%VER%%/locale/dcc_cs.mo
%%DATADIR%%/%%VER%%/locale/dcc_de.mo
%%DATADIR%%/%%VER%%/locale/dcc_es.mo
%%DATADIR%%/%%VER%%/locale/dcc_fi.mo
%%DATADIR%%/%%VER%%/locale/dcc_fr.mo
%%DATADIR%%/%%VER%%/locale/dcc_hr.mo
%%DATADIR%%/%%VER%%/locale/dcc_hu.mo
%%DATADIR%%/%%VER%%/locale/dcc_it.mo
%%DATADIR%%/%%VER%%/locale/dcc_nl.mo
%%DATADIR%%/%%VER%%/locale/dcc_pl.mo
%%DATADIR%%/%%VER%%/locale/dcc_pt.mo
%%DATADIR%%/%%VER%%/locale/dcc_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/dcc_ru.mo
%%DATADIR%%/%%VER%%/locale/dcc_sr.mo
%%DATADIR%%/%%VER%%/locale/dcc_tr.mo
%%DATADIR%%/%%VER%%/locale/dcc_uk.mo
%%DATADIR%%/%%VER%%/locale/defscript_de.mo
%%DATADIR%%/%%VER%%/locale/defscript_es.mo
%%DATADIR%%/%%VER%%/locale/defscript_fr.mo
%%DATADIR%%/%%VER%%/locale/defscript_hu.mo
%%DATADIR%%/%%VER%%/locale/defscript_it.mo
%%DATADIR%%/%%VER%%/locale/defscript_ja.mo
%%DATADIR%%/%%VER%%/locale/defscript_pl.mo
%%DATADIR%%/%%VER%%/locale/defscript_pt.mo
%%DATADIR%%/%%VER%%/locale/defscript_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/defscript_ru.mo
%%DATADIR%%/%%VER%%/locale/defscript_tr.mo
%%DATADIR%%/%%VER%%/locale/defscript_uk.mo
%%DATADIR%%/%%VER%%/locale/editor_bg.mo
%%DATADIR%%/%%VER%%/locale/editor_cs.mo
%%DATADIR%%/%%VER%%/locale/editor_de.mo
%%DATADIR%%/%%VER%%/locale/editor_es.mo
%%DATADIR%%/%%VER%%/locale/editor_fi.mo
%%DATADIR%%/%%VER%%/locale/editor_fr.mo
%%DATADIR%%/%%VER%%/locale/editor_hr.mo
%%DATADIR%%/%%VER%%/locale/editor_hu.mo
%%DATADIR%%/%%VER%%/locale/editor_it.mo
%%DATADIR%%/%%VER%%/locale/editor_nl.mo
%%DATADIR%%/%%VER%%/locale/editor_pl.mo
%%DATADIR%%/%%VER%%/locale/editor_pt.mo
%%DATADIR%%/%%VER%%/locale/editor_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/editor_ru.mo
%%DATADIR%%/%%VER%%/locale/editor_sr.mo
%%DATADIR%%/%%VER%%/locale/editor_tr.mo
%%DATADIR%%/%%VER%%/locale/editor_uk.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_bg.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_cs.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_de.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_es.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_fi.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_fr.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_hr.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_hu.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_it.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_nl.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_pl.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_pt.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_ru.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_sr.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_tr.mo
%%DATADIR%%/%%VER%%/locale/filetransferwindow_uk.mo
%%DATADIR%%/%%VER%%/locale/kvirc_cs.mo
%%DATADIR%%/%%VER%%/locale/kvirc_de.mo
%%DATADIR%%/%%VER%%/locale/kvirc_es.mo
%%DATADIR%%/%%VER%%/locale/kvirc_fi.mo
%%DATADIR%%/%%VER%%/locale/kvirc_fr.mo
%%DATADIR%%/%%VER%%/locale/kvirc_hr.mo
%%DATADIR%%/%%VER%%/locale/kvirc_hu.mo
%%DATADIR%%/%%VER%%/locale/kvirc_it.mo
%%DATADIR%%/%%VER%%/locale/kvirc_ja.mo
%%DATADIR%%/%%VER%%/locale/kvirc_nl.mo
%%DATADIR%%/%%VER%%/locale/kvirc_pl.mo
%%DATADIR%%/%%VER%%/locale/kvirc_pt.mo
%%DATADIR%%/%%VER%%/locale/kvirc_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/kvirc_ru.mo
%%DATADIR%%/%%VER%%/locale/kvirc_sr.mo
%%DATADIR%%/%%VER%%/locale/kvirc_tr.mo
%%DATADIR%%/%%VER%%/locale/kvirc_uk.mo
%%DATADIR%%/%%VER%%/locale/kvs_de.mo
%%DATADIR%%/%%VER%%/locale/kvs_fr.mo
%%DATADIR%%/%%VER%%/locale/kvs_hu.mo
%%DATADIR%%/%%VER%%/locale/kvs_it.mo
%%DATADIR%%/%%VER%%/locale/kvs_ja.mo
%%DATADIR%%/%%VER%%/locale/kvs_pl.mo
%%DATADIR%%/%%VER%%/locale/kvs_pt.mo
%%DATADIR%%/%%VER%%/locale/kvs_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/kvs_ru.mo
%%DATADIR%%/%%VER%%/locale/kvs_tr.mo
%%DATADIR%%/%%VER%%/locale/kvs_uk.mo
%%DATADIR%%/%%VER%%/locale/log_bg.mo
%%DATADIR%%/%%VER%%/locale/log_cs.mo
%%DATADIR%%/%%VER%%/locale/log_de.mo
%%DATADIR%%/%%VER%%/locale/log_es.mo
%%DATADIR%%/%%VER%%/locale/log_fi.mo
%%DATADIR%%/%%VER%%/locale/log_fr.mo
%%DATADIR%%/%%VER%%/locale/log_hr.mo
%%DATADIR%%/%%VER%%/locale/log_hu.mo
%%DATADIR%%/%%VER%%/locale/log_it.mo
%%DATADIR%%/%%VER%%/locale/log_ja.mo
%%DATADIR%%/%%VER%%/locale/log_nl.mo
%%DATADIR%%/%%VER%%/locale/log_pl.mo
%%DATADIR%%/%%VER%%/locale/log_pt.mo
%%DATADIR%%/%%VER%%/locale/log_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/log_ru.mo
%%DATADIR%%/%%VER%%/locale/log_sr.mo
%%DATADIR%%/%%VER%%/locale/log_tr.mo
%%DATADIR%%/%%VER%%/locale/log_uk.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_bg.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_cs.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_de.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_es.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_fi.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_fr.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_hr.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_hu.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_it.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_nl.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_pl.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_pt.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_ru.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_sr.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_tr.mo
%%DATADIR%%/%%VER%%/locale/mediaplayer_uk.mo
%%DATADIR%%/%%VER%%/locale/notifier_bg.mo
%%DATADIR%%/%%VER%%/locale/notifier_cs.mo
%%DATADIR%%/%%VER%%/locale/notifier_de.mo
%%DATADIR%%/%%VER%%/locale/notifier_es.mo
%%DATADIR%%/%%VER%%/locale/notifier_fi.mo
%%DATADIR%%/%%VER%%/locale/notifier_fr.mo
%%DATADIR%%/%%VER%%/locale/notifier_hr.mo
%%DATADIR%%/%%VER%%/locale/notifier_hu.mo
%%DATADIR%%/%%VER%%/locale/notifier_it.mo
%%DATADIR%%/%%VER%%/locale/notifier_ja.mo
%%DATADIR%%/%%VER%%/locale/notifier_nl.mo
%%DATADIR%%/%%VER%%/locale/notifier_pl.mo
%%DATADIR%%/%%VER%%/locale/notifier_pt.mo
%%DATADIR%%/%%VER%%/locale/notifier_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/notifier_ru.mo
%%DATADIR%%/%%VER%%/locale/notifier_sr.mo
%%DATADIR%%/%%VER%%/locale/notifier_tr.mo
%%DATADIR%%/%%VER%%/locale/notifier_uk.mo
%%DATADIR%%/%%VER%%/locale/objects_de.mo
%%DATADIR%%/%%VER%%/locale/objects_es.mo
%%DATADIR%%/%%VER%%/locale/objects_fr.mo
%%DATADIR%%/%%VER%%/locale/objects_it.mo
%%DATADIR%%/%%VER%%/locale/objects_pt.mo
%%DATADIR%%/%%VER%%/locale/objects_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/objects_ru.mo
%%DATADIR%%/%%VER%%/locale/objects_tr.mo
%%DATADIR%%/%%VER%%/locale/objects_uk.mo
%%DATADIR%%/%%VER%%/locale/options_bg.mo
%%DATADIR%%/%%VER%%/locale/options_cs.mo
%%DATADIR%%/%%VER%%/locale/options_de.mo
%%DATADIR%%/%%VER%%/locale/options_es.mo
%%DATADIR%%/%%VER%%/locale/options_fi.mo
%%DATADIR%%/%%VER%%/locale/options_fr.mo
%%DATADIR%%/%%VER%%/locale/options_hr.mo
%%DATADIR%%/%%VER%%/locale/options_hu.mo
%%DATADIR%%/%%VER%%/locale/options_it.mo
%%DATADIR%%/%%VER%%/locale/options_ja.mo
%%DATADIR%%/%%VER%%/locale/options_nl.mo
%%DATADIR%%/%%VER%%/locale/options_pl.mo
%%DATADIR%%/%%VER%%/locale/options_pt.mo
%%DATADIR%%/%%VER%%/locale/options_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/options_ru.mo
%%DATADIR%%/%%VER%%/locale/options_sr.mo
%%DATADIR%%/%%VER%%/locale/options_tr.mo
%%DATADIR%%/%%VER%%/locale/options_uk.mo
%%DATADIR%%/%%VER%%/locale/perl_bg.mo
%%DATADIR%%/%%VER%%/locale/perl_cs.mo
%%DATADIR%%/%%VER%%/locale/perl_de.mo
%%DATADIR%%/%%VER%%/locale/perl_es.mo
%%DATADIR%%/%%VER%%/locale/perl_fi.mo
%%DATADIR%%/%%VER%%/locale/perl_fr.mo
%%DATADIR%%/%%VER%%/locale/perl_hr.mo
%%DATADIR%%/%%VER%%/locale/perl_hu.mo
%%DATADIR%%/%%VER%%/locale/perl_it.mo
%%DATADIR%%/%%VER%%/locale/perl_nl.mo
%%DATADIR%%/%%VER%%/locale/perl_pl.mo
%%DATADIR%%/%%VER%%/locale/perl_pt.mo
%%DATADIR%%/%%VER%%/locale/perl_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/perl_ru.mo
%%DATADIR%%/%%VER%%/locale/perl_sr.mo
%%DATADIR%%/%%VER%%/locale/perl_tr.mo
%%DATADIR%%/%%VER%%/locale/perl_uk.mo
%%DATADIR%%/%%VER%%/locale/python_de.mo
%%DATADIR%%/%%VER%%/locale/python_es.mo
%%DATADIR%%/%%VER%%/locale/python_fr.mo
%%DATADIR%%/%%VER%%/locale/python_it.mo
%%DATADIR%%/%%VER%%/locale/python_pt.mo
%%DATADIR%%/%%VER%%/locale/python_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/python_ru.mo
%%DATADIR%%/%%VER%%/locale/python_tr.mo
%%DATADIR%%/%%VER%%/locale/python_uk.mo
%%DATADIR%%/%%VER%%/locale/register_de.mo
%%DATADIR%%/%%VER%%/locale/register_es.mo
%%DATADIR%%/%%VER%%/locale/register_fr.mo
%%DATADIR%%/%%VER%%/locale/register_it.mo
%%DATADIR%%/%%VER%%/locale/register_pl.mo
%%DATADIR%%/%%VER%%/locale/register_pt.mo
%%DATADIR%%/%%VER%%/locale/register_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/register_ru.mo
%%DATADIR%%/%%VER%%/locale/register_tr.mo
%%DATADIR%%/%%VER%%/locale/register_uk.mo
%%DATADIR%%/%%VER%%/locale/serverdb_bg.mo
%%DATADIR%%/%%VER%%/locale/serverdb_cs.mo
%%DATADIR%%/%%VER%%/locale/serverdb_de.mo
%%DATADIR%%/%%VER%%/locale/serverdb_es.mo
%%DATADIR%%/%%VER%%/locale/serverdb_fi.mo
%%DATADIR%%/%%VER%%/locale/serverdb_fr.mo
%%DATADIR%%/%%VER%%/locale/serverdb_hr.mo
%%DATADIR%%/%%VER%%/locale/serverdb_hu.mo
%%DATADIR%%/%%VER%%/locale/serverdb_it.mo
%%DATADIR%%/%%VER%%/locale/serverdb_ja.mo
%%DATADIR%%/%%VER%%/locale/serverdb_nl.mo
%%DATADIR%%/%%VER%%/locale/serverdb_pl.mo
%%DATADIR%%/%%VER%%/locale/serverdb_pt.mo
%%DATADIR%%/%%VER%%/locale/serverdb_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/serverdb_ru.mo
%%DATADIR%%/%%VER%%/locale/serverdb_sr.mo
%%DATADIR%%/%%VER%%/locale/serverdb_tr.mo
%%DATADIR%%/%%VER%%/locale/serverdb_uk.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_bg.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_cs.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_de.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_es.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_fi.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_fr.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_hr.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_hu.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_it.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_nl.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_pl.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_pt.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_ru.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_sr.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_tr.mo
%%DATADIR%%/%%VER%%/locale/sharedfileswindow_uk.mo
%%DATADIR%%/%%VER%%/locale/theme_bg.mo
%%DATADIR%%/%%VER%%/locale/theme_cs.mo
%%DATADIR%%/%%VER%%/locale/theme_de.mo
%%DATADIR%%/%%VER%%/locale/theme_es.mo
%%DATADIR%%/%%VER%%/locale/theme_fi.mo
%%DATADIR%%/%%VER%%/locale/theme_fr.mo
%%DATADIR%%/%%VER%%/locale/theme_hr.mo
%%DATADIR%%/%%VER%%/locale/theme_hu.mo
%%DATADIR%%/%%VER%%/locale/theme_it.mo
%%DATADIR%%/%%VER%%/locale/theme_nl.mo
%%DATADIR%%/%%VER%%/locale/theme_pl.mo
%%DATADIR%%/%%VER%%/locale/theme_pt.mo
%%DATADIR%%/%%VER%%/locale/theme_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/theme_ru.mo
%%DATADIR%%/%%VER%%/locale/theme_sr.mo
%%DATADIR%%/%%VER%%/locale/theme_tr.mo
%%DATADIR%%/%%VER%%/locale/theme_uk.mo
%%DATADIR%%/%%VER%%/locale/torrent_bg.mo
%%DATADIR%%/%%VER%%/locale/torrent_cs.mo
%%DATADIR%%/%%VER%%/locale/torrent_de.mo
%%DATADIR%%/%%VER%%/locale/torrent_es.mo
%%DATADIR%%/%%VER%%/locale/torrent_fi.mo
%%DATADIR%%/%%VER%%/locale/torrent_fr.mo
%%DATADIR%%/%%VER%%/locale/torrent_hr.mo
%%DATADIR%%/%%VER%%/locale/torrent_hu.mo
%%DATADIR%%/%%VER%%/locale/torrent_it.mo
%%DATADIR%%/%%VER%%/locale/torrent_nl.mo
%%DATADIR%%/%%VER%%/locale/torrent_pl.mo
%%DATADIR%%/%%VER%%/locale/torrent_pt.mo
%%DATADIR%%/%%VER%%/locale/torrent_pt_BR.mo
%%DATADIR%%/%%VER%%/locale/torrent_ru.mo
%%DATADIR%%/%%VER%%/locale/torrent_sr.mo
%%DATADIR%%/%%VER%%/locale/torrent_tr.mo
%%DATADIR%%/%%VER%%/locale/torrent_uk.mo
%%DATADIR%%/%%VER%%/modules/caps/crypt/lamerizer
%%DATADIR%%/%%VER%%/modules/caps/crypt/rijndael
%%DATADIR%%/%%VER%%/modules/caps/crypt/rot13
%%DATADIR%%/%%VER%%/modules/caps/serverimport/mircimport
%%DATADIR%%/%%VER%%/msgcolors/all-black.msgclr
%%DATADIR%%/%%VER%%/msgcolors/all-gray.msgclr
%%DATADIR%%/%%VER%%/msgcolors/all-green.msgclr
%%DATADIR%%/%%VER%%/msgcolors/all-white.msgclr
%%DATADIR%%/%%VER%%/msgcolors/colored-2.msgclr
%%DATADIR%%/%%VER%%/msgcolors/colored.msgclr
%%DATADIR%%/%%VER%%/msgcolors/default.msgclr
%%DATADIR%%/%%VER%%/msgcolors/heavy-colors.msgclr
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_accept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_action.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_addons.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_afraid.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_alert.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_alias.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_angel.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_angry.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_applet.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_autotilewindows.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_avatar.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_away.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ban.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_banexcept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_banunexcept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_biggrin.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_biggrineyes.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_biggringlasses.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_binarytext.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_blacksquare.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_bluesquare.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_bomb.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_bookmarks.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_broadcastnotice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_broadcastprivmsg.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_bug.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_cafe.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_canvas.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_caption.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_cascadewindows.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanadmin.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanadminaway.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanmode.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanmodehide.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_channel.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_channelnotice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_channelnoticecrypted.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanowner.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanowneraway.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanprivmsg.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanprivmsgcrypted.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanserv.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanunadmin.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_chanunowner.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_class.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_classeditor.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_classicwindowlist.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_classnotbuilt.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_close.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_clown.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_colors.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_console.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_copy.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_cry.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ctcpreply.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ctcpreplyunknown.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ctcprequestflood.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ctcprequestignored.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ctcprequestreplied.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ctcprequestunknown.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_cut.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_cyansquare.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dccchatmsg.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dccchatmsgcrypted.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dccerror.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dccmsg.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dccrequest.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dccvoice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_deadchannel.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_deadquery.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_default.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_deircop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_deleteitem.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_demoralized.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_deop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_deuserop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_devil.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_devoice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_discard.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dkgreensquare.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dock.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_dockwidget.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_edititem.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_editor.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_epilogue.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_event.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_eventnohandlers.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_eye.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_failupdate.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_file.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_files.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_filetransfer.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_finger.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_floppy.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_folder.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_function.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_gnutella.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_greensquare.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_gui.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_halfdeop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_halfop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_halfopaway.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_handler.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_handlerdisabled.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_heart.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_heartbroken.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_help.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_hidedoubleview.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_hidelistview.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_home.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_homepage.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_iconmanager.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_icq.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_icqblue.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_icqlightgreen.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_icqlightyellow.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_icqred.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_icqyellow.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_idea.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ident.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ignore.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_inlove.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_input.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_invisible.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_invite.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_inviteexcept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_inviteunexcept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_irc.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_irc0.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_irc1.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_irc2.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_irc3.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_irc4.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_irc5.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ircop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ircopaway.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ircview.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_join.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_key.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_kick.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_kiss.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_kvirc.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_limit.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_links.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_linux.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_list.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_locked.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_lockedoff.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_log.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_look.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_maxhorizontal.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_maximize.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_maxvertical.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mdihelp.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_meban.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mebanexcept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mebanunexcept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mechanadmin.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mechanowner.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mechanunadmin.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mechanunowner.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_medehalfop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_medeircop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_medeop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_medeuserop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_medevoice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mehalfop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_meinviteexcept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_meinviteunexcept.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_meircop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mekick.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_memoserv.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_meop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_message.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_messages.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_messagesent.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_meunban.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_meuserop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mevoice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_minimize.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_minus.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_mode.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_motd.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_multimedia.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_namespace.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_newitem.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_newitembywizard.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_nick.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_nicknameproblem.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_nickserv.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ninja.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_nochannel.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_none.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_notaway.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_notifyoffline.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_notifyonline.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_notupdate.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_op.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_opaway.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_options.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ownprivmsg.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ownprivmsgcrypted.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_package.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_parsererror.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_parserwarning.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_part.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_paste.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_pirate.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_play.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_plus.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_popup.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_popupmenu.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_prologue.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_proxy.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_puke.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_query.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_querynotice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_querynoticecrypted.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_queryprivmsg.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_queryprivmsgcrypted.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_querytrace.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_quit.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_quitapp.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_quitsplit.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_rage.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_raw.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_rawevent.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_raweventnohandlers.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_record.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_redsquare.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_refresh.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_regusers.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_restore.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_retry.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_rose.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_saycolors.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_sayicon.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_saykvs.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_saysmile.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_screenshot.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_scriptaction.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_scriptcenter.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_search.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_server.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_servererror.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_serverinfo.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_servernotice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_serverping.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_servnotice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_sexbot.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_sexfemale.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_sexircop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_sexmale.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_sharedfiles.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_showdoubleview.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_showlistview.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_shy.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_slurp.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_smile.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_socketerror.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_socketmessage.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_socketwarning.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_sound.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_spam.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_split.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_spy.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ssl.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_stats.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_statusbar.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_surprised1.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_surprised2.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_systemerror.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_systemmessage.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_systemwarning.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_tearsmile.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_terminal.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_textencoding.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_textexclamative.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_textpoints.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_theme.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_themeoptions.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_tilewindows.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_time.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_tongue.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_tongue2.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_toolbar.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_topic.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_transfer.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_transparent.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_treewindowlist.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_ugly.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_unban.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_undock.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_unhandled.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_unlocked.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_unlockedoff.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_unreadtext.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_unrecognized.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_update.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_url.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_userlist.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_userop.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_useropaway.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_userwindow.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_violetsquare.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_voice.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_voiceaway.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_wallops.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_who.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_whoischannels.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_whoisidle.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_whoisother.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_whoisserver.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_whoisuser.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_world.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_xy.png
%%DATADIR%%/%%VER%%/pics/coresmall/kcs_yellowsquare.png
%%DATADIR%%/%%VER%%/pics/kvi_activitymeter.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_actioneditor.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_actions.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_addons.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_aliaseditor.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_cascadewindows.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_channellist.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_channels.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_channelspopup.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_classeditor.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_codetester.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_connected.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_connecting.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_disconnected.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_eventeditor.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_filetransfer.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_folder.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_help.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpback.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpclose.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpforward.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpindex.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpsearch.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_identity.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_irccontextdisplay.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_keyboard.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_kvircwww.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_kvs.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_log.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_mailinglist.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_minimizeallwindows.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_networklinks.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_newirccontext.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_nickpopup.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_nokeyboard.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_open.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_pack.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_popupeditor.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_quit.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_raweditor.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_regusers.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_remove.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_save.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_sayicon.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_screenshot.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_separator.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_server.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_servers.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_settings.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_sharedfiles.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_socketspy.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_theme.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_themeoptions.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_tilewindows.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_toolbareditor.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_tools.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_trashcan.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_unknown.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_url.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_usermode.png
%%DATADIR%%/%%VER%%/pics/kvi_bigicon_www.png
%%DATADIR%%/%%VER%%/pics/kvi_dccfiletransfericons.png
%%DATADIR%%/%%VER%%/pics/kvi_dock.png
%%DATADIR%%/%%VER%%/pics/kvi_dock_part-0.png
%%DATADIR%%/%%VER%%/pics/kvi_dock_part-1.png
%%DATADIR%%/%%VER%%/pics/kvi_dock_part-2.png
%%DATADIR%%/%%VER%%/pics/kvi_horizontal_left.png
%%DATADIR%%/%%VER%%/pics/kvi_horizontal_right.png
%%DATADIR%%/%%VER%%/pics/kvi_httpicons.png
%%DATADIR%%/%%VER%%/pics/kvi_icon_refresh.png
%%DATADIR%%/%%VER%%/pics/kvi_mircimport.png
%%DATADIR%%/%%VER%%/pics/kvi_setup_label.png
%%DATADIR%%/%%VER%%/pics/kvi_setup_theme_hires.png
%%DATADIR%%/%%VER%%/pics/kvi_setup_theme_lowres.png
%%DATADIR%%/%%VER%%/pics/kvi_splash.png
%%DATADIR%%/%%VER%%/pics/kvi_splash_overlay.png
%%DATADIR%%/%%VER%%/pics/kvi_tip.png
%%DATADIR%%/%%VER%%/pics/kvi_toolbutton_menuindicator.png
%%DATADIR%%/%%VER%%/pics/kvi_userchanstate.png
%%DATADIR%%/%%VER%%/pics/notifier_background.png
%%DATADIR%%/%%VER%%/pics/notifier_close.png
%%DATADIR%%/%%VER%%/pics/notifier_down.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_next_clicked.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_next_off.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_next_on.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_prev_clicked.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_prev_off.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_prev_on.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_write_clicked.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_write_off.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_body_write_on.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_close_clicked.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_close_clicked_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_close_out.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_close_out_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_close_over.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_close_over_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_close_clicked.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_close_off.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_close_on.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_next_clicked.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_next_out.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_next_over.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_prev_clicked.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_prev_out.png
%%DATADIR%%/%%VER%%/pics/notifier_icon_tab_prev_over.png
%%DATADIR%%/%%VER%%/pics/notifier_left.png
%%DATADIR%%/%%VER%%/pics/notifier_pen.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_body_dwn.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_body_dwndx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_body_dwnsx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_body_dx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_body_kvirc.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_body_kvirc_dwn.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_body_kvirc_sx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_body_sx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_caption_bkg.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_caption_bkg_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_caption_dx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_caption_dx_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_caption_sx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_caption_sx_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_bkg.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_dx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_focused_bkg.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_focused_dx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_focused_sx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_sx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_unfocused_bkg.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_unfocused_dx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_tab_unfocused_sx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_dwn.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_dwn_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_dwndx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_dwndx_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_dwnsx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_dwnsx_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_dx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_dx_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_sx.png
%%DATADIR%%/%%VER%%/pics/notifier_pix_wnd_sx_hl.png
%%DATADIR%%/%%VER%%/pics/notifier_right.png
%%DATADIR%%/%%VER%%/pics/notifier_up.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_actions.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_codetester.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_folder.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_help.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_identity.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_keyboard.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_minimizeallwindows.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_newirccontext.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_open.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_regusers.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_save.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_screenshot.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_settings.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_theme.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_themeoptions.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_tilewindows.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_tools.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/kvi_bigicon_trashcan.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/pixmapGlobalTransparencyBackground.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/pixmapInputBackground.png
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/themedata.kvc
%%DATADIR%%/%%VER%%/themes/Aria-1.0.0/themeinfo.kvc
%%DATADIR%%/%%VER%%/themes/MinimalDark-1.0.0/themedata.kvc
%%DATADIR%%/%%VER%%/themes/MinimalDark-1.0.0/themeinfo.kvc
share/pixmaps/kvirc.png
%%KDE%%share/mime/packages/kvirc.xml