From: delaco Date: Fri, 22 Sep 2006 23:05:21 +0000 (+0000) Subject: MONSTER-REVISION! X-Git-Tag: v2.3-beta1~961 X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=commitdiff_plain;h=f1baee3ed43cd2c7d74893bc00ea876e3ff894da MONSTER-REVISION! * Alte und ueberfluessige Pakete entfernt. * Proxy-Pfade gefixt. * MySQL in ISO gepackt. * Apache2-Konfigurations-Fix. * XAMPP entfernt. STILL EXPERIMENTAL * make.sh aufgeraeumt. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@293 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- diff --git a/config/httpd/global.conf b/config/httpd/global.conf index 42bfaf37cb..a977026436 100644 --- a/config/httpd/global.conf +++ b/config/httpd/global.conf @@ -1,9 +1,10 @@ Timeout 300 ServerSignature on UseCanonicalName off -ServerTokens OS +ServerTokens Full LogLevel warn CustomLog /var/log/httpd/access_log combined Include /etc/httpd/conf/hostname.conf HostnameLookups off AddHandler cgi-script .cgi +EnableSendfile Off diff --git a/doc/packages-list.txt b/doc/packages-list.txt index 6ac05568fe..5dcafffbae 100644 --- a/doc/packages-list.txt +++ b/doc/packages-list.txt @@ -107,6 +107,7 @@ * hdparm-6.3 * htop-0.6.2 * httpd-2.2.2 +* httpd-2.2.2-config * iana-etc-2.00 * ibod * iftop-0.17 @@ -206,6 +207,7 @@ * readline-5.1 * rp-pppoe-3.5 * rrdtool-1.0.49 +* rsync-2.6.8 * samba-3.0.23b * sata300_sataii150_tx_series_linux2.4_open_source_1.00.0.15 * screen-4.0.2 @@ -223,6 +225,7 @@ * squidGuard-1.2.0 * startscripts * stund_0.96_Aug13 +* subversion-1.3.1 * sudo-1.6.8p12 * sysklogd-1.4.1 * syslinux-3.20 diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi index 888653d85e..6fedf4e273 100644 --- a/html/cgi-bin/proxy.cgi +++ b/html/cgi-bin/proxy.cgi @@ -87,8 +87,8 @@ my $cre_svhosts = "${General::swroot}/proxy/advanced/cre/supervisors"; my $identhosts = "$identdir/hosts"; -my $authdir = "/usr/lib/squid/advproxy/auth"; -my $errordir = "/usr/lib/squid/advproxy/errors"; +my $authdir = "/usr/lib/squid/auth"; +my $errordir = "/usr/lib/squid/errors"; my $acl_src_subnets = "$acldir/src_subnets.acl"; my $acl_src_banned_ip = "$acldir/src_banned_ip.acl"; @@ -3643,7 +3643,7 @@ END if ($proxysettings{'ENABLE_FILTER'} eq 'on') { print FILE < ACCESS MESSAGE - -
+
$msgtext1 diff --git a/lfs/apache2 b/lfs/apache2 index 2e79faf85f..d4e176e9fd 100644 --- a/lfs/apache2 +++ b/lfs/apache2 @@ -32,9 +32,11 @@ THISAPP = httpd-$(VER) DL_FILE = $(THISAPP).tar.bz2 DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) -TARGET = $(DIR_INFO)/$(THISAPP) -PROG = apache2 -PAK_VER = 1 +ifeq "$(PASS)" "CONFIG" + TARGET = $(DIR_INFO)/$(THISAPP)-config +else + TARGET = $(DIR_INFO)/$(THISAPP) +endif ############################################################################### # Top-level Rules @@ -57,9 +59,6 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects)) md5 : $(subst %,%_MD5,$(objects)) -dist: - @$(PAK) - ############################################################################### # Downloading, checking, md5sum ############################################################################### @@ -79,6 +78,30 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) +ifeq "$(PASS)" "CONFIG" + # DO THIS IN AN EXTRA STEP BECAUSE PHP AND SUBVERSION WILL FAIL. + + cp -rf $(DIR_CONF)/httpd/* /etc/httpd/conf + ln -sf $(CONFIG_ROOT)/main/hostname.conf /etc/httpd/conf/ + -find /etc/httpd/conf -name .svn -exec rm -rf {} \; + + # Copy all html/cgi-bin files + mkdir -p /home/httpd/{cgi-bin,html} + cp -aR $(DIR_SRC)/html/* /home/httpd + -find /home/httpd -name .svn -exec rm -rf {} \; + cp $(DIR_DL)/sflogo.png /home/httpd/html/images/ + + # Change CONFIG_ROOT in cgi-scripts + for i in /home/httpd/cgi-bin/{*,logs.cgi/*,vpn.cgi/*}; do \ + if [ -f $$i ]; then \ + sed -i "s+CONFIG_ROOT+$(CONFIG_ROOT)+g" $$i; \ + fi; \ + done + chown -R root:root /home/httpd + chmod -R 755 /home/httpd/cgi-bin + chmod -R 644 /home/httpd/html + chmod 755 /home/httpd/html /home/httpd/html/{index.cgi,redirect.cgi,dial.cgi,images,include} +else @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && patch -Np1 -i $(DIR_DL)/httpd-2.2.2-config-1.patch @@ -116,25 +139,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) /usr/share/man/man1/{dbmmanage,ht{dbm,digest,passwd}}.1 \ /usr/share/man/man8/{ab,apachectl,apxs,htcacheclean,httpd}.8 \ /usr/share/man/man8/{logresolve,rotatelogs,suexec}.8 - - cp -rf $(DIR_CONF)/httpd/* /etc/httpd/conf - ln -sf $(CONFIG_ROOT)/main/hostname.conf /etc/httpd/conf/ - - # Copy all html/cgi-bin files - mkdir -p /home/httpd/{cgi-bin,html} - cp -aR $(DIR_SRC)/html/* /home/httpd - -find /home/httpd -name .svn -exec rm -rf {} \; - cp $(DIR_DL)/sflogo.png /home/httpd/html/images/ - - # Change CONFIG_ROOT in cgi-scripts - for i in /home/httpd/cgi-bin/{*,logs.cgi/*,vpn.cgi/*}; do \ - if [ -f $$i ]; then \ - sed -i "s+CONFIG_ROOT+$(CONFIG_ROOT)+g" $$i; \ - fi; \ - done - chown -R root:root /home/httpd - chmod -R 755 /home/httpd/cgi-bin - chmod -R 644 /home/httpd/html - chmod 755 /home/httpd/html /home/httpd/html/{index.cgi,redirect.cgi,dial.cgi,images,include} @rm -rf $(DIR_APP) +endif @$(POSTBUILD) diff --git a/lfs/pammysql b/lfs/pammysql index 86437c1398..2a2a38048f 100644 --- a/lfs/pammysql +++ b/lfs/pammysql @@ -30,7 +30,7 @@ VER = 0.7RC1 THISAPP = pam_mysql-0.7RC1 DL_FILE = $(THISAPP).tar.gz -DL_FROM = $(URL_SFNET)/pam-mysql +DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) @@ -72,8 +72,8 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && ./configure --with-pam=/usr --with-pam-mods-dir=/lib/security --with-mysql=/opt/lampp --with-openssl=/usr # --with-cyrus-sasl2=/usr - #cd $(DIR_APP) && make + cd $(DIR_APP) && ./configure --with-pam=/usr --with-pam-mods-dir=/lib/security --with-mysql=/usr --with-openssl=/usr # --with-cyrus-sasl2=/usr + cd $(DIR_APP) && make cd $(DIR_APP) && make install @rm -rf $(DIR_APP) @$(POSTBUILD) diff --git a/lfs/postfix b/lfs/postfix index 5f8a2e51ac..997cc7249f 100644 --- a/lfs/postfix +++ b/lfs/postfix @@ -78,8 +78,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && make -f Makefile.init makefiles \ - 'CCARGS=-DDEF_DAEMON_DIR=\"/usr/lib/postfix\" -DDEF_MANPAGE_DIR=\"/usr/share/man\" -DUSE_TLS -I/usr/include/openssl -DUSE_SALS_AUTH -I/usr/include/sasl -I/opt/lampp/include -DHAS_MYSQL -I/opt/lampp/include/mysql' \ - 'AUXLIBS=-L/usr/lib -L/usr/lib/sasl2 -lz -lm -lssl -lcrypto -lmysqlclient -L/opt/lampp/lib/mysql -lsasl2 -L/opt/lampp/lib' + 'CCARGS=-DDEF_DAEMON_DIR=\"/usr/lib/postfix\" -DDEF_MANPAGE_DIR=\"/usr/share/man\" -DUSE_TLS -I/usr/include/openssl -DUSE_SALS_AUTH -I/usr/include/sasl -DHAS_MYSQL -I/usr/include/mysql' \ + 'AUXLIBS=-L/usr/lib -L/usr/lib/sasl2 -lz -lm -lssl -lcrypto -lmysqlclient -L/usr/lib/mysql -lsasl2 -L/usr/lib' cd $(DIR_APP) && make cd $(DIR_APP) && sh postfix-install -non-interactive ## Install configuration diff --git a/lfs/saslauthd b/lfs/saslauthd index 44128afee0..ea23f4cf06 100644 --- a/lfs/saslauthd +++ b/lfs/saslauthd @@ -18,12 +18,6 @@ # Makefiles are based on LFSMake, which is # # Copyright (C) 2002 Rod Roard # # # -# Modifications by: # -# ??-12-2003 Mark Wormgoor < mark@wormgoor.com> # -# - Modified Makefile for IPCop build # -# # -# $Id: ntp,v 1.6.2.3 2005/02/05 15:38:15 gespinasse Exp $ -# # ############################################################################### ############################################################################### @@ -36,7 +30,7 @@ VER = 2.1.21 THISAPP = cyrus-sasl-$(VER) DL_FILE = $(THISAPP).tar.gz -DL_FROM = http://ftp.andrew.cmu.edu/pub/cyrus-mail +DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) ifeq "$(PASS)" "1" TARGET = $(DIR_INFO)/$(THISAPP) @@ -83,28 +77,30 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) ifeq "$(PASS)" "1" - cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc --with-dblib=berkeley --with-dbpath=/var/lib/sasl/sasldb2 --with-saslauthd=/var/run/saslauthd + cd $(DIR_APP) && ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --with-dblib=berkeley \ + --with-dbpath=/var/lib/sasl/sasldb2 \ + --with-saslauthd=/var/run/saslauthd else # WITH LDAP SUPPORT AT THIS TIME cd $(DIR_APP) && ./configure --prefix=/usr \ --enable-anon --enable-plain \ - --disable-krb4 --disable-otp --disable-cram --disable-digest \ + --disable-krb4 --disable-otp \ + --disable-cram --disable-digest \ --with-dblib=berkeley --with-ldap=/usr \ --enable-sql \ --with-pam=/lib/security \ --with-openssl=/usr --without-pgsql \ - --with-mysql=/opt/lampp \ + --with-mysql=/usr \ --sysconfdir=/var/ipfire/sasl \ --with-dbpath=/var/lib/sasl/sasldb2 \ --with-saslauthd=/var/run/saslauthd endif cd $(DIR_APP) && make cd $(DIR_APP) && make install -# install -v -m644 saslauthd/saslauthd.8 /usr/share/man/man8 -# install -v -m755 -d /usr/share/doc/$(THISAPP) -# install -v -m644 doc/{*.{html,txt,fig},ONEWS,TODO} saslauthd/LDAP_SASLAUTHD /usr/share/doc/$(THISAPP) ifeq "$(PASS)" "2" install -v -m700 -d /var/lib/sasl mkdir -p /var/run/saslauthd diff --git a/lfs/subversion b/lfs/subversion index 86b9337896..90e0420bdd 100644 --- a/lfs/subversion +++ b/lfs/subversion @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = subversion -PAK_VER = ipfire-beta1 +PAK_VER = 1 ############################################################################### # Top-level Rules @@ -79,7 +79,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && ./configure --prefix=/usr \ --without-berkeley-db \ - --with-installbuilddir=/usr/lib/apr-0 + --with-installbuilddir=/usr/lib/apr-0 \ + --with-ssl --disable-nls \ + --disable-mod-activation cd $(DIR_APP) && make cd $(DIR_APP) && make install @rm -rf $(DIR_APP) diff --git a/lfs/web-cyradm b/lfs/webcyradm similarity index 93% rename from lfs/web-cyradm rename to lfs/webcyradm index 31c603e0a5..3e0deebb82 100644 --- a/lfs/web-cyradm +++ b/lfs/webcyradm @@ -33,8 +33,8 @@ DL_FILE = $(THISAPP).tar.gz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) -PROG = web-cyradm -PAK_VER = ipfire-beta1 +PROG = webcyradm +PAK_VER = 1 ############################################################################### # Top-level Rules @@ -78,6 +78,7 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) -C /opt/lampp/htdocs - cd $(DIR_SRC) && tar zxf $(DIR_DL)/mail-db-mysql.tar.gz -C /opt/lampp/var/mysql + cd $(DIR_SRC) && mkdir -p /home/httpd/webcyradm + cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) -C /home/httpd/webcyradm + cd $(DIR_SRC) && tar zxf $(DIR_DL)/mail-db-mysql.tar.gz -C /srv/mysql @$(POSTBUILD) diff --git a/lfs/xampp b/lfs/xampp deleted file mode 100644 index 2e98283e73..0000000000 --- a/lfs/xampp +++ /dev/null @@ -1,117 +0,0 @@ -############################################################################### -# This file is part of the IPCop Firewall. # -# # -# IPCop is free software; you can redistribute it and/or modify # -# it under the terms of the GNU General Public License as published by # -# the Free Software Foundation; either version 2 of the License, or # -# (at your option) any later version. # -# # -# IPCop is distributed in the hope that it will be useful, # -# but WITHOUT ANY WARRANTY; without even the implied warranty of # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # -# GNU General Public License for more details. # -# # -# You should have received a copy of the GNU General Public License # -# along with IPCop; if not, write to the Free Software # -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# # -# Makefiles are based on LFSMake, which is # -# Copyright (C) 2002 Rod Roard # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -VER = 1.5.3a - -THISAPP = xampp-linux-$(VER) -DL_FILE = $(THISAPP).tar.gz -DL_FROM = $(URL_IPFIRE) -DIR_APP = /opt/lampp -TARGET = $(DIR_INFO)/$(THISAPP) -PROG = xampp -PAK_VER = 1 - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) \ - xampp-linux-devel-$(VER).tar.gz \ - PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz \ - Python-AddOn-1.3.tar.gz \ - wwget-beta-for-ipfire.tar.gz \ - wwget.dump - -$(DL_FILE) = $(DL_FROM)/$(DL_FILE) -xampp-linux-devel-$(VER).tar.gz = $(URL_IPFIRE)/xampp-linux-devel-$(VER).tar.gz -PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz = $(URL_IPFIRE)/PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz -Python-AddOn-1.3.tar.gz = $(URL_IPFIRE)/Python-AddOn-1.3.tar.gz -wwget-beta-for-ipfire.tar.gz = $(URL_IPFIRE)/wwget-beta-for-ipfire.tar.gz -wwget.dump = $(URL_IPFIRE)/wwget.dump - -$(DL_FILE)_MD5 = 422ab1faa4ab7afb3be8918ab8223b6b -xampp-linux-devel-$(VER).tar.gz_MD5 = 30b4bce92ec389adf61cbf67246efd1f -PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz_MD5 = 63171afe553fd557032407e1ba6af477 -Python-AddOn-1.3.tar.gz_MD5 = 5a962ea63c3e502227c8cca30e0ce786 -wwget-beta-for-ipfire.tar.gz_MD5 = 6591e663cf911cc745b44ca0ab38d24c -wwget.dump_MD5 = 1d3d78214da692284e15b617b3bdd6e2 - -install : $(TARGET) - -check : $(patsubst %,$(DIR_CHK)/%,$(objects)) - -download :$(patsubst %,$(DIR_DL)/%,$(objects)) - -md5 : $(subst %,%_MD5,$(objects)) - -dist: - @$(PAK) - -############################################################################### -# Downloading, checking, md5sum -############################################################################### - -$(patsubst %,$(DIR_CHK)/%,$(objects)) : - @$(CHECK) - -$(patsubst %,$(DIR_DL)/%,$(objects)) : - @$(LOAD) - -$(subst %,%_MD5,$(objects)) : - @$(MD5) - -############################################################################### -# Installation Details -############################################################################### - -$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) - @$(PREBUILD) - @rm -rf $(DIR_APP) - cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) -C /opt - cd $(DIR_SRC) && tar zxf $(DIR_DL)/xampp-linux-devel-$(VER).tar.gz -C /opt - cd $(DIR_SRC) && tar zxf $(DIR_DL)/Python-AddOn-1.3.tar.gz -C /tmp -# cd $(DIR_SRC) && tar zxf $(DIR_DL)/PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz -C /tmp - cd $(DIR_SRC) && tar zxf $(DIR_DL)/wwget-beta-for-ipfire.tar.gz -C /opt/lampp/htdocs -# cd /tmp/PostGreSQL-AddOn-1.0-pgsql8.1 && ./INSTALL -# rm -rf /tmp/PostGreSQL-AddOn-1.0-pgsql8.1 - cd /tmp/Python-AddOn-1.3 && cp -fr lampp/bin /opt/lampp - cd /tmp/Python-AddOn-1.3 && cp -fr lampp/cgi-bin /opt/lampp - cd /tmp/Python-AddOn-1.3 && cp -fr lampp/etc /opt/lampp - cd /tmp/Python-AddOn-1.3 && cp -fr lampp/htdocs /opt/lampp - cd /tmp/Python-AddOn-1.3 && cp -fr lampp/include /opt/lampp - cd /tmp/Python-AddOn-1.3 && cp -fr lampp/lib /opt/lampp - # cd /tmp/Python-AddOn-1.3 && cp -fr lampp/licenses /opt/lampp - # cd /tmp/Python-AddOn-1.3 && cp -fr lampp/man /opt/lampp - cd /tmp/Python-AddOn-1.3 && cp -fr lampp/modules /opt/lampp - # cd /tmp/Python-AddOn-1.3 && cp -fr lampp/share /opt/lampp - rm -rf /tmp/Python-AddOn-1.3 - grep etc/python.conf /opt/lampp/etc/httpd.conf || echo -e "Include etc/python.conf" >> /opt/lampp/etc/httpd.conf - chown -R nobody.nobody /opt/lampp/htdocs - ln -fs /opt/lampp/lib/mysql/libmysqlclient.* /usr/lib - ldconfig - @$(POSTBUILD) diff --git a/make.sh b/make.sh index 6ece8f3def..eb03634650 100644 --- a/make.sh +++ b/make.sh @@ -606,7 +606,6 @@ buildipcop() { ipcopmake mysql ipcopmake saslauthd PASS=1 ipcopmake openldap - #ipcopmake apache ipcopmake apache2 ipcopmake php ipcopmake arping @@ -676,7 +675,6 @@ buildipcop() { ipcopmake setserial ipcopmake setup ipcopmake snort - #ipcopmake speedycgi ipcopmake squid ipcopmake squid-graph ipcopmake squidguard @@ -686,10 +684,8 @@ buildipcop() { ipcopmake wireless ipcopmake libsafe ipcopmake 3c5x9setup -# echo -ne "`date -u '+%b %e %T'`: Building ### IPFire modules ### \n" | tee -a $LOGFILE ipcopmake pakfire ipcopmake startscripts -## Zuerst die Libs und dann die Programme. Ordnung muss sein! ipcopmake java ipcopmake bootsplash ipcopmake spandsp @@ -697,19 +693,15 @@ buildipcop() { ipcopmake openvpn ipcopmake pkg-config ipcopmake glib - ipcopmake xampp ipcopmake pam ipcopmake pammysql ipcopmake saslauthd PASS=2 ipcopmake xinetd ipcopmake ghostscript ipcopmake cups -# ipcopmake lpd ## Im Moment aus, da CUPS vorhanden ist. ipcopmake samba ipcopmake sudo ipcopmake mc -# ipcopmake pwlib -# ipcopmake openh323 ipcopmake wget ipcopmake wput ipcopmake bridge-utils @@ -723,7 +715,7 @@ buildipcop() { ipcopmake procmail ipcopmake fetchmail ipcopmake cyrusimap - ipcopmake web-cyradm + ipcopmake webcyradm ipcopmake mailx ipcopmake clamav ipcopmake razor @@ -751,10 +743,9 @@ buildipcop() { ipcopmake applejuice ipcopmake ocaml ipcopmake mldonkey -# ipcopmake sane echo -ne "`date -u '+%b %e %T'`: Building ### Net-Tools ### \n" | tee -a $LOGFILE ipcopmake ntop -# ipcopmake rsync + ipcopmake rsync ipcopmake tcpwrapper ipcopmake portmap ipcopmake nfs @@ -766,10 +757,11 @@ buildipcop() { ipcopmake etherwake ipcopmake ethereal ipcopmake tftp-hpa - #ipcopmake subversion + ipcopmake subversion ipcopmake iptraf ipcopmake nagios ipcopmake yasuc + ipcopmake apache2 PASS=CONFIG } buildinstaller() { @@ -882,7 +874,7 @@ ipfirepackages() { touch $BASEDIR/build/install/packages/$i.empty done fi - ipfiredist amavisd +# ipfiredist amavisd ipfiredist applejuice ipfiredist asterisk ipfiredist clamav @@ -898,7 +890,6 @@ ipfirepackages() { ipfiredist libogg ipfiredist libtiff ipfiredist libvorbis - ipfiredist libxml2 ipfiredist mailx ipfiredist mldonkey ipfiredist mpeg2dec @@ -914,9 +905,7 @@ ipfirepackages() { ipfiredist spamassassin ipfiredist subversion ipfiredist videolan - ipfiredist web-cyradm - ipfiredist xampp -# ipfiredist xinetd + ipfiredist webcyradm ipfiredist xvid ipfiredist yasuc test -d $BASEDIR/packages || mkdir $BASEDIR/packages diff --git a/src/ROOTFILES.i386 b/src/ROOTFILES.i386 index 2b101fe4e9..ecb53cd228 100644 --- a/src/ROOTFILES.i386 +++ b/src/ROOTFILES.i386 @@ -24263,7 +24263,7 @@ usr/sbin/pppoa3 ##usr/lib/perl5/site_perl/5.8.5/alpha-linux/auto/CGI/SpeedyCGI/.packlist #usr/lib/perl5/site_perl/5.8.5/CGI/SpeedyCGI.pm ## -## squid-2.5.STABLE14 +## squid-2.6.STABLE3 ## #etc/squid #etc/squid/cachemgr.conf @@ -24280,6 +24280,7 @@ etc/squid/squid.conf #usr/lib/squid #usr/lib/squid/cachemgr.cgi #usr/lib/squid/diskd +#usr/lib/squid/diskd-daemon #usr/lib/squid/errors #usr/lib/squid/errors/Azerbaijani #usr/lib/squid/errors/Azerbaijani/ERR_ACCESS_DENIED @@ -29470,3 +29471,287 @@ usr/lib/xml2Conf.sh #usr/share/man/man1/xmlcatalog.1 #usr/share/man/man1/xmllint.1 #usr/share/man/man3/libxml.3 +## +## mysql-5.0.24a +## +etc/my.cnf +#srv +#srv/mysql +srv/mysql/mysql +srv/mysql/mysql-bin.000001 +srv/mysql/mysql-bin.000002 +#srv/mysql/mysql-bin.index +#srv/mysql/mysql/columns_priv.MYD +#srv/mysql/mysql/columns_priv.MYI +#srv/mysql/mysql/columns_priv.frm +#srv/mysql/mysql/db.MYD +#srv/mysql/mysql/db.MYI +#srv/mysql/mysql/db.frm +#srv/mysql/mysql/func.MYD +#srv/mysql/mysql/func.MYI +#srv/mysql/mysql/func.frm +#srv/mysql/mysql/help_category.MYD +#srv/mysql/mysql/help_category.MYI +#srv/mysql/mysql/help_category.frm +#srv/mysql/mysql/help_keyword.MYD +#srv/mysql/mysql/help_keyword.MYI +#srv/mysql/mysql/help_keyword.frm +#srv/mysql/mysql/help_relation.MYD +#srv/mysql/mysql/help_relation.MYI +#srv/mysql/mysql/help_relation.frm +#srv/mysql/mysql/help_topic.MYD +#srv/mysql/mysql/help_topic.MYI +#srv/mysql/mysql/help_topic.frm +#srv/mysql/mysql/host.MYD +#srv/mysql/mysql/host.MYI +#srv/mysql/mysql/host.frm +#srv/mysql/mysql/proc.MYD +#srv/mysql/mysql/proc.MYI +#srv/mysql/mysql/proc.frm +#srv/mysql/mysql/procs_priv.MYD +#srv/mysql/mysql/procs_priv.MYI +#srv/mysql/mysql/procs_priv.frm +#srv/mysql/mysql/tables_priv.MYD +#srv/mysql/mysql/tables_priv.MYI +#srv/mysql/mysql/tables_priv.frm +#srv/mysql/mysql/time_zone.MYD +#srv/mysql/mysql/time_zone.MYI +#srv/mysql/mysql/time_zone.frm +#srv/mysql/mysql/time_zone_leap_second.MYD +#srv/mysql/mysql/time_zone_leap_second.MYI +#srv/mysql/mysql/time_zone_leap_second.frm +#srv/mysql/mysql/time_zone_name.MYD +#srv/mysql/mysql/time_zone_name.MYI +#srv/mysql/mysql/time_zone_name.frm +#srv/mysql/mysql/time_zone_transition.MYD +#srv/mysql/mysql/time_zone_transition.MYI +#srv/mysql/mysql/time_zone_transition.frm +#srv/mysql/mysql/time_zone_transition_type.MYD +#srv/mysql/mysql/time_zone_transition_type.MYI +#srv/mysql/mysql/time_zone_transition_type.frm +#srv/mysql/mysql/user.MYD +#srv/mysql/mysql/user.MYI +#srv/mysql/mysql/user.frm +srv/mysql/test +usr/bin/comp_err +usr/bin/innochecksum +#usr/bin/msql2mysql +usr/bin/my_print_defaults +usr/bin/myisam_ftdump +usr/bin/myisamchk +usr/bin/myisamlog +usr/bin/myisampack +usr/bin/mysql +usr/bin/mysql_client_test +usr/bin/mysql_config +usr/bin/mysql_convert_table_format +usr/bin/mysql_create_system_tables +usr/bin/mysql_explain_log +usr/bin/mysql_find_rows +usr/bin/mysql_fix_extensions +usr/bin/mysql_fix_privilege_tables +usr/bin/mysql_install_db +usr/bin/mysql_secure_installation +usr/bin/mysql_setpermission +usr/bin/mysql_tableinfo +usr/bin/mysql_tzinfo_to_sql +usr/bin/mysql_upgrade +usr/bin/mysql_upgrade_shell +usr/bin/mysql_waitpid +usr/bin/mysql_zap +usr/bin/mysqlaccess +usr/bin/mysqladmin +usr/bin/mysqlbinlog +usr/bin/mysqlbug +usr/bin/mysqlcheck +usr/bin/mysqld_multi +usr/bin/mysqld_safe +usr/bin/mysqldump +#usr/bin/mysqldumpslow +#usr/bin/mysqlhotcopy +usr/bin/mysqlimport +usr/bin/mysqlshow +usr/bin/mysqltest +#usr/bin/mysqltestmanager +#usr/bin/mysqltestmanager-pwgen +#usr/bin/mysqltestmanagerc +usr/bin/perror +usr/bin/replace +usr/bin/resolve_stack_dump +usr/bin/resolveip +#usr/include/mysql +#usr/include/mysql/errmsg.h +#usr/include/mysql/keycache.h +#usr/include/mysql/m_ctype.h +#usr/include/mysql/m_string.h +#usr/include/mysql/my_alloc.h +#usr/include/mysql/my_config.h +#usr/include/mysql/my_dbug.h +#usr/include/mysql/my_dir.h +#usr/include/mysql/my_getopt.h +#usr/include/mysql/my_global.h +#usr/include/mysql/my_list.h +#usr/include/mysql/my_net.h +#usr/include/mysql/my_no_pthread.h +#usr/include/mysql/my_pthread.h +#usr/include/mysql/my_semaphore.h +#usr/include/mysql/my_sys.h +#usr/include/mysql/my_xml.h +#usr/include/mysql/mysql.h +#usr/include/mysql/mysql_com.h +#usr/include/mysql/mysql_embed.h +#usr/include/mysql/mysql_time.h +#usr/include/mysql/mysql_version.h +#usr/include/mysql/mysqld_ername.h +#usr/include/mysql/mysqld_error.h +#usr/include/mysql/raid.h +#usr/include/mysql/sql_common.h +#usr/include/mysql/sql_state.h +#usr/include/mysql/sslopt-case.h +#usr/include/mysql/sslopt-longopts.h +#usr/include/mysql/sslopt-vars.h +#usr/include/mysql/typelib.h +usr/lib/libmysqlclient.so +usr/lib/libmysqlclient.so.15 +usr/lib/libmysqlclient.so.15.0.0 +usr/lib/libmysqlclient_r.so +usr/lib/libmysqlclient_r.so.15 +usr/lib/libmysqlclient_r.so.15.0.0 +#usr/lib/mysql +usr/lib/mysql/libdbug.a +usr/lib/mysql/libheap.a +usr/lib/mysql/libmyisam.a +usr/lib/mysql/libmyisammrg.a +#usr/lib/mysql/libmysqlclient.a +#usr/lib/mysql/libmysqlclient.la +usr/lib/mysql/libmysqlclient.so +usr/lib/mysql/libmysqlclient.so.15 +usr/lib/mysql/libmysqlclient.so.15.0.0 +#usr/lib/mysql/libmysqlclient_r.a +#usr/lib/mysql/libmysqlclient_r.la +usr/lib/mysql/libmysqlclient_r.so +usr/lib/mysql/libmysqlclient_r.so.15 +usr/lib/mysql/libmysqlclient_r.so.15.0.0 +usr/lib/mysql/libmystrings.a +usr/lib/mysql/libmysys.a +usr/lib/mysql/libvio.a +usr/sbin/mysqld +usr/sbin/mysqlmanager +#usr/share/info/mysql.info +#usr/share/man/man1/msql2mysql.1 +#usr/share/man/man1/myisam_ftdump.1 +#usr/share/man/man1/myisamchk.1 +#usr/share/man/man1/myisamlog.1 +#usr/share/man/man1/myisampack.1 +#usr/share/man/man1/mysql.1 +#usr/share/man/man1/mysql.server.1 +#usr/share/man/man1/mysql_config.1 +#usr/share/man/man1/mysql_explain_log.1 +#usr/share/man/man1/mysql_fix_privilege_tables.1 +#usr/share/man/man1/mysql_upgrade.1 +#usr/share/man/man1/mysql_zap.1 +#usr/share/man/man1/mysqlaccess.1 +#usr/share/man/man1/mysqladmin.1 +#usr/share/man/man1/mysqlbinlog.1 +#usr/share/man/man1/mysqlcheck.1 +#usr/share/man/man1/mysqld.1 +#usr/share/man/man1/mysqld_multi.1 +#usr/share/man/man1/mysqld_safe.1 +#usr/share/man/man1/mysqldump.1 +#usr/share/man/man1/mysqlhotcopy.1 +#usr/share/man/man1/mysqlimport.1 +#usr/share/man/man1/mysqlman.1 +#usr/share/man/man1/mysqlmanager.1 +#usr/share/man/man1/mysqlshow.1 +#usr/share/man/man1/perror.1 +#usr/share/man/man1/replace.1 +#usr/share/man/man1/safe_mysqld.1 +#usr/share/mysql +#usr/share/mysql/binary-configure +usr/share/mysql/charsets +#usr/share/mysql/charsets/Index.xml +#usr/share/mysql/charsets/README +#usr/share/mysql/charsets/armscii8.xml +#usr/share/mysql/charsets/ascii.xml +#usr/share/mysql/charsets/cp1250.xml +#usr/share/mysql/charsets/cp1251.xml +#usr/share/mysql/charsets/cp1256.xml +#usr/share/mysql/charsets/cp1257.xml +#usr/share/mysql/charsets/cp850.xml +#usr/share/mysql/charsets/cp852.xml +#usr/share/mysql/charsets/cp866.xml +#usr/share/mysql/charsets/dec8.xml +#usr/share/mysql/charsets/geostd8.xml +#usr/share/mysql/charsets/greek.xml +#usr/share/mysql/charsets/hebrew.xml +#usr/share/mysql/charsets/hp8.xml +#usr/share/mysql/charsets/keybcs2.xml +#usr/share/mysql/charsets/koi8r.xml +#usr/share/mysql/charsets/koi8u.xml +#usr/share/mysql/charsets/latin1.xml +#usr/share/mysql/charsets/latin2.xml +#usr/share/mysql/charsets/latin5.xml +#usr/share/mysql/charsets/latin7.xml +#usr/share/mysql/charsets/macce.xml +#usr/share/mysql/charsets/macroman.xml +#usr/share/mysql/charsets/swe7.xml +#usr/share/mysql/czech +#usr/share/mysql/czech/errmsg.sys +#usr/share/mysql/danish +#usr/share/mysql/danish/errmsg.sys +#usr/share/mysql/dutch +#usr/share/mysql/dutch/errmsg.sys +#usr/share/mysql/english +usr/share/mysql/english/errmsg.sys +usr/share/mysql/errmsg.txt +#usr/share/mysql/estonian +#usr/share/mysql/estonian/errmsg.sys +usr/share/mysql/fill_help_tables.sql +#usr/share/mysql/french +#usr/share/mysql/french/errmsg.sys +#usr/share/mysql/german +usr/share/mysql/german/errmsg.sys +#usr/share/mysql/greek +#usr/share/mysql/greek/errmsg.sys +#usr/share/mysql/hungarian +#usr/share/mysql/hungarian/errmsg.sys +#usr/share/mysql/italian +#usr/share/mysql/italian/errmsg.sys +#usr/share/mysql/japanese +#usr/share/mysql/japanese/errmsg.sys +#usr/share/mysql/korean +#usr/share/mysql/korean/errmsg.sys +#usr/share/mysql/mi_test_all +#usr/share/mysql/mi_test_all.res +#usr/share/mysql/my-huge.cnf +#usr/share/mysql/my-innodb-heavy-4G.cnf +#usr/share/mysql/my-large.cnf +#usr/share/mysql/my-medium.cnf +#usr/share/mysql/my-small.cnf +#usr/share/mysql/mysql-log-rotate +#usr/share/mysql/mysql.server +#usr/share/mysql/mysql_fix_privilege_tables.sql +#usr/share/mysql/ndb-config-2-node.ini +#usr/share/mysql/norwegian +#usr/share/mysql/norwegian-ny +#usr/share/mysql/norwegian-ny/errmsg.sys +#usr/share/mysql/norwegian/errmsg.sys +#usr/share/mysql/polish +#usr/share/mysql/polish/errmsg.sys +#usr/share/mysql/portuguese +#usr/share/mysql/portuguese/errmsg.sys +#usr/share/mysql/romanian +#usr/share/mysql/romanian/errmsg.sys +#usr/share/mysql/russian +#usr/share/mysql/russian/errmsg.sys +#usr/share/mysql/serbian +#usr/share/mysql/serbian/errmsg.sys +#usr/share/mysql/slovak +#usr/share/mysql/slovak/errmsg.sys +#usr/share/mysql/spanish +#usr/share/mysql/spanish/errmsg.sys +#usr/share/mysql/swedish +#usr/share/mysql/swedish/errmsg.sys +#usr/share/mysql/ukrainian +#usr/share/mysql/ukrainian/errmsg.sys +var/run/mysql diff --git a/src/paks/libxml2/depends.txt b/src/paks/ffmpeg/depends.txt similarity index 100% rename from src/paks/libxml2/depends.txt rename to src/paks/ffmpeg/depends.txt diff --git a/src/paks/mc/depends.txt b/src/paks/libmad/depends.txt similarity index 100% rename from src/paks/mc/depends.txt rename to src/paks/libmad/depends.txt diff --git a/src/paks/libxml2/ROOTFILES b/src/paks/libxml2/ROOTFILES deleted file mode 100644 index e9f76b0293..0000000000 --- a/src/paks/libxml2/ROOTFILES +++ /dev/null @@ -1,333 +0,0 @@ -usr/bin/xml2-config -usr/bin/xmlcatalog -usr/bin/xmllint -#usr/include/libxml2 -#usr/include/libxml2/libxml -#usr/include/libxml2/libxml/DOCBparser.h -#usr/include/libxml2/libxml/HTMLparser.h -#usr/include/libxml2/libxml/HTMLtree.h -#usr/include/libxml2/libxml/SAX.h -#usr/include/libxml2/libxml/SAX2.h -#usr/include/libxml2/libxml/c14n.h -#usr/include/libxml2/libxml/catalog.h -#usr/include/libxml2/libxml/chvalid.h -#usr/include/libxml2/libxml/debugXML.h -#usr/include/libxml2/libxml/dict.h -#usr/include/libxml2/libxml/encoding.h -#usr/include/libxml2/libxml/entities.h -#usr/include/libxml2/libxml/globals.h -#usr/include/libxml2/libxml/hash.h -#usr/include/libxml2/libxml/list.h -#usr/include/libxml2/libxml/nanoftp.h -#usr/include/libxml2/libxml/nanohttp.h -#usr/include/libxml2/libxml/parser.h -#usr/include/libxml2/libxml/parserInternals.h -#usr/include/libxml2/libxml/pattern.h -#usr/include/libxml2/libxml/relaxng.h -#usr/include/libxml2/libxml/schemasInternals.h -#usr/include/libxml2/libxml/schematron.h -#usr/include/libxml2/libxml/threads.h -#usr/include/libxml2/libxml/tree.h -#usr/include/libxml2/libxml/uri.h -#usr/include/libxml2/libxml/valid.h -#usr/include/libxml2/libxml/xinclude.h -#usr/include/libxml2/libxml/xlink.h -#usr/include/libxml2/libxml/xmlIO.h -#usr/include/libxml2/libxml/xmlautomata.h -#usr/include/libxml2/libxml/xmlerror.h -#usr/include/libxml2/libxml/xmlexports.h -#usr/include/libxml2/libxml/xmlmemory.h -#usr/include/libxml2/libxml/xmlmodule.h -#usr/include/libxml2/libxml/xmlreader.h -#usr/include/libxml2/libxml/xmlregexp.h -#usr/include/libxml2/libxml/xmlsave.h -#usr/include/libxml2/libxml/xmlschemas.h -#usr/include/libxml2/libxml/xmlschemastypes.h -#usr/include/libxml2/libxml/xmlstring.h -#usr/include/libxml2/libxml/xmlunicode.h -#usr/include/libxml2/libxml/xmlversion.h -#usr/include/libxml2/libxml/xmlwriter.h -#usr/include/libxml2/libxml/xpath.h -#usr/include/libxml2/libxml/xpathInternals.h -#usr/include/libxml2/libxml/xpointer.h -usr/lib/libxml2.a -usr/lib/libxml2.la -usr/lib/libxml2.so -usr/lib/libxml2.so.2 -usr/lib/libxml2.so.2.6.22 -usr/lib/pkgconfig/libxml-2.0.pc -usr/lib/python2.3/site-packages/drv_libxml2.py -usr/lib/python2.3/site-packages/libxml2.py -usr/lib/python2.3/site-packages/libxml2mod.a -usr/lib/python2.3/site-packages/libxml2mod.la -usr/lib/python2.3/site-packages/libxml2mod.so -usr/lib/xml2Conf.sh -#usr/share/aclocal/libxml.m4 -#usr/share/doc/libxml2-2.6.22 -#usr/share/doc/libxml2-2.6.22/Copyright -#usr/share/doc/libxml2-2.6.22/examples -#usr/share/doc/libxml2-2.6.22/examples/testHTML.c -#usr/share/doc/libxml2-2.6.22/examples/testSAX.c -#usr/share/doc/libxml2-2.6.22/examples/testXPath.c -#usr/share/doc/libxml2-2.6.22/examples/xmllint.c -#usr/share/doc/libxml2-2.6.22/html -#usr/share/doc/libxml2-2.6.22/html/DOM.gif -#usr/share/doc/libxml2-2.6.22/html/FAQ.html -#usr/share/doc/libxml2-2.6.22/html/Libxml2-Logo-180x168.gif -#usr/share/doc/libxml2-2.6.22/html/Libxml2-Logo-90x34.gif -#usr/share/doc/libxml2-2.6.22/html/encoding.html -#usr/share/doc/libxml2-2.6.22/html/examples.xml -#usr/share/doc/libxml2-2.6.22/html/examples.xsl -#usr/share/doc/libxml2-2.6.22/html/html -#usr/share/doc/libxml2-2.6.22/html/html/book1.html -#usr/share/doc/libxml2-2.6.22/html/html/home.png -#usr/share/doc/libxml2-2.6.22/html/html/index.html -#usr/share/doc/libxml2-2.6.22/html/html/left.png -#usr/share/doc/libxml2-2.6.22/html/html/libxml-DOCBparser.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-HTMLparser.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-HTMLtree.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-SAX.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-SAX2.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-c14n.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-catalog.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-chvalid.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-debugXML.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-dict.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-encoding.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-entities.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-globals.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-hash.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-lib.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-list.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-nanoftp.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-nanohttp.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-parser.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-parserInternals.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-pattern.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-relaxng.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-schemasInternals.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-schematron.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-threads.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-tree.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-uri.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-valid.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xinclude.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xlink.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlIO.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlautomata.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlerror.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlexports.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlmemory.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlmodule.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlreader.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlregexp.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlsave.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlschemas.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlschemastypes.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlstring.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlunicode.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlversion.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlwriter.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xpath.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xpathInternals.html -#usr/share/doc/libxml2-2.6.22/html/html/libxml-xpointer.html -#usr/share/doc/libxml2-2.6.22/html/html/right.png -#usr/share/doc/libxml2-2.6.22/html/html/up.png -#usr/share/doc/libxml2-2.6.22/html/io1.c -#usr/share/doc/libxml2-2.6.22/html/io1.res -#usr/share/doc/libxml2-2.6.22/html/io2.c -#usr/share/doc/libxml2-2.6.22/html/io2.res -#usr/share/doc/libxml2-2.6.22/html/libxml.gif -#usr/share/doc/libxml2-2.6.22/html/parse1.c -#usr/share/doc/libxml2-2.6.22/html/parse2.c -#usr/share/doc/libxml2-2.6.22/html/parse3.c -#usr/share/doc/libxml2-2.6.22/html/parse4.c -#usr/share/doc/libxml2-2.6.22/html/reader1.c -#usr/share/doc/libxml2-2.6.22/html/reader1.res -#usr/share/doc/libxml2-2.6.22/html/reader2.c -#usr/share/doc/libxml2-2.6.22/html/reader3.c -#usr/share/doc/libxml2-2.6.22/html/reader3.res -#usr/share/doc/libxml2-2.6.22/html/reader4.c -#usr/share/doc/libxml2-2.6.22/html/reader4.res -#usr/share/doc/libxml2-2.6.22/html/redhat.gif -#usr/share/doc/libxml2-2.6.22/html/smallfootonly.gif -#usr/share/doc/libxml2-2.6.22/html/structure.gif -#usr/share/doc/libxml2-2.6.22/html/test1.xml -#usr/share/doc/libxml2-2.6.22/html/test2.xml -#usr/share/doc/libxml2-2.6.22/html/test3.xml -#usr/share/doc/libxml2-2.6.22/html/testWriter.c -#usr/share/doc/libxml2-2.6.22/html/tree1.c -#usr/share/doc/libxml2-2.6.22/html/tree1.res -#usr/share/doc/libxml2-2.6.22/html/tree2.c -#usr/share/doc/libxml2-2.6.22/html/tree2.res -#usr/share/doc/libxml2-2.6.22/html/tst.xml -#usr/share/doc/libxml2-2.6.22/html/tutorial -#usr/share/doc/libxml2-2.6.22/html/tutorial/apa.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/apb.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/apc.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/apd.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ape.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/apf.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/apg.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/aph.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/api.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s02.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s03.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s04.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s05.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s06.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s07.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s08.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s09.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/images -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/blank.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/1.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/10.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/2.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/3.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/4.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/5.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/6.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/7.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/8.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/9.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/caution.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/draft.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/home.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/important.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/next.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/note.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/prev.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/tip.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/toc-blank.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/toc-minus.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/toc-plus.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/up.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/images/warning.png -#usr/share/doc/libxml2-2.6.22/html/tutorial/includeaddattribute.c -#usr/share/doc/libxml2-2.6.22/html/tutorial/includeaddkeyword.c -#usr/share/doc/libxml2-2.6.22/html/tutorial/includeconvert.c -#usr/share/doc/libxml2-2.6.22/html/tutorial/includegetattribute.c -#usr/share/doc/libxml2-2.6.22/html/tutorial/includekeyword.c -#usr/share/doc/libxml2-2.6.22/html/tutorial/includexpath.c -#usr/share/doc/libxml2-2.6.22/html/tutorial/index.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/ix01.html -#usr/share/doc/libxml2-2.6.22/html/tutorial/xmltutorial.pdf -#usr/share/doc/libxml2-2.6.22/html/w3c.png -#usr/share/doc/libxml2-2.6.22/html/writer.xml -#usr/share/doc/libxml2-2.6.22/html/xml.html -#usr/share/doc/libxml2-2.6.22/html/xpath1.c -#usr/share/doc/libxml2-2.6.22/html/xpath1.res -#usr/share/doc/libxml2-2.6.22/html/xpath2.c -#usr/share/doc/libxml2-2.6.22/html/xpath2.res -#usr/share/doc/libxml2-python-2.6.22 -#usr/share/doc/libxml2-python-2.6.22/TODO -#usr/share/doc/libxml2-python-2.6.22/examples -#usr/share/doc/libxml2-python-2.6.22/examples/attribs.py -#usr/share/doc/libxml2-python-2.6.22/examples/build.py -#usr/share/doc/libxml2-python-2.6.22/examples/ctxterror.py -#usr/share/doc/libxml2-python-2.6.22/examples/cutnpaste.py -#usr/share/doc/libxml2-python-2.6.22/examples/dtdvalid.py -#usr/share/doc/libxml2-python-2.6.22/examples/error.py -#usr/share/doc/libxml2-python-2.6.22/examples/inbuf.py -#usr/share/doc/libxml2-python-2.6.22/examples/indexes.py -#usr/share/doc/libxml2-python-2.6.22/examples/invalid.xml -#usr/share/doc/libxml2-python-2.6.22/examples/nsdel.py -#usr/share/doc/libxml2-python-2.6.22/examples/outbuf.py -#usr/share/doc/libxml2-python-2.6.22/examples/push.py -#usr/share/doc/libxml2-python-2.6.22/examples/pushSAX.py -#usr/share/doc/libxml2-python-2.6.22/examples/pushSAXhtml.py -#usr/share/doc/libxml2-python-2.6.22/examples/reader.py -#usr/share/doc/libxml2-python-2.6.22/examples/reader2.py -#usr/share/doc/libxml2-python-2.6.22/examples/reader3.py -#usr/share/doc/libxml2-python-2.6.22/examples/reader4.py -#usr/share/doc/libxml2-python-2.6.22/examples/reader5.py -#usr/share/doc/libxml2-python-2.6.22/examples/reader6.py -#usr/share/doc/libxml2-python-2.6.22/examples/reader7.py -#usr/share/doc/libxml2-python-2.6.22/examples/reader8.py -#usr/share/doc/libxml2-python-2.6.22/examples/readererr.py -#usr/share/doc/libxml2-python-2.6.22/examples/readernext.py -#usr/share/doc/libxml2-python-2.6.22/examples/regexp.py -#usr/share/doc/libxml2-python-2.6.22/examples/relaxng.py -#usr/share/doc/libxml2-python-2.6.22/examples/resolver.py -#usr/share/doc/libxml2-python-2.6.22/examples/schema.py -#usr/share/doc/libxml2-python-2.6.22/examples/serialize.py -#usr/share/doc/libxml2-python-2.6.22/examples/sync.py -#usr/share/doc/libxml2-python-2.6.22/examples/test.dtd -#usr/share/doc/libxml2-python-2.6.22/examples/thread2.py -#usr/share/doc/libxml2-python-2.6.22/examples/tst.py -#usr/share/doc/libxml2-python-2.6.22/examples/tst.xml -#usr/share/doc/libxml2-python-2.6.22/examples/tstLastError.py -#usr/share/doc/libxml2-python-2.6.22/examples/tstURI.py -#usr/share/doc/libxml2-python-2.6.22/examples/tstmem.py -#usr/share/doc/libxml2-python-2.6.22/examples/tstxpath.py -#usr/share/doc/libxml2-python-2.6.22/examples/valid.xml -#usr/share/doc/libxml2-python-2.6.22/examples/validDTD.py -#usr/share/doc/libxml2-python-2.6.22/examples/validRNG.py -#usr/share/doc/libxml2-python-2.6.22/examples/validSchemas.py -#usr/share/doc/libxml2-python-2.6.22/examples/validate.py -#usr/share/doc/libxml2-python-2.6.22/examples/walker.py -#usr/share/doc/libxml2-python-2.6.22/examples/xpath.py -#usr/share/doc/libxml2-python-2.6.22/examples/xpathext.py -#usr/share/doc/libxml2-python-2.6.22/examples/xpathret.py -#usr/share/gtk-doc/html/libxml2 -#usr/share/gtk-doc/html/libxml2/general.html -#usr/share/gtk-doc/html/libxml2/home.png -#usr/share/gtk-doc/html/libxml2/index.html -#usr/share/gtk-doc/html/libxml2/left.png -#usr/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html -#usr/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html -#usr/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html -#usr/share/gtk-doc/html/libxml2/libxml2-SAX.html -#usr/share/gtk-doc/html/libxml2/libxml2-SAX2.html -#usr/share/gtk-doc/html/libxml2/libxml2-c14n.html -#usr/share/gtk-doc/html/libxml2/libxml2-catalog.html -#usr/share/gtk-doc/html/libxml2/libxml2-chvalid.html -#usr/share/gtk-doc/html/libxml2/libxml2-debugXML.html -#usr/share/gtk-doc/html/libxml2/libxml2-dict.html -#usr/share/gtk-doc/html/libxml2/libxml2-encoding.html -#usr/share/gtk-doc/html/libxml2/libxml2-entities.html -#usr/share/gtk-doc/html/libxml2/libxml2-globals.html -#usr/share/gtk-doc/html/libxml2/libxml2-hash.html -#usr/share/gtk-doc/html/libxml2/libxml2-list.html -#usr/share/gtk-doc/html/libxml2/libxml2-nanoftp.html -#usr/share/gtk-doc/html/libxml2/libxml2-nanohttp.html -#usr/share/gtk-doc/html/libxml2/libxml2-parser.html -#usr/share/gtk-doc/html/libxml2/libxml2-parserInternals.html -#usr/share/gtk-doc/html/libxml2/libxml2-pattern.html -#usr/share/gtk-doc/html/libxml2/libxml2-relaxng.html -#usr/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html -#usr/share/gtk-doc/html/libxml2/libxml2-schematron.html -#usr/share/gtk-doc/html/libxml2/libxml2-threads.html -#usr/share/gtk-doc/html/libxml2/libxml2-tree.html -#usr/share/gtk-doc/html/libxml2/libxml2-uri.html -#usr/share/gtk-doc/html/libxml2/libxml2-valid.html -#usr/share/gtk-doc/html/libxml2/libxml2-xinclude.html -#usr/share/gtk-doc/html/libxml2/libxml2-xlink.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlIO.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlerror.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlexports.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlreader.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlsave.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlstring.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlversion.html -#usr/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html -#usr/share/gtk-doc/html/libxml2/libxml2-xpath.html -#usr/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html -#usr/share/gtk-doc/html/libxml2/libxml2-xpointer.html -#usr/share/gtk-doc/html/libxml2/libxml2.devhelp -#usr/share/gtk-doc/html/libxml2/right.png -#usr/share/gtk-doc/html/libxml2/style.css -#usr/share/gtk-doc/html/libxml2/up.png -#usr/share/man/man1/xml2-config.1 -#usr/share/man/man1/xmlcatalog.1 -#usr/share/man/man1/xmllint.1 -#usr/share/man/man3/libxml.3 diff --git a/src/paks/libxml2/install.sh b/src/paks/libxml2/install.sh deleted file mode 100644 index 3a9ce551bf..0000000000 --- a/src/paks/libxml2/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -# -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Extract the files -tar xfz files.tgz -C / -cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/libxml2/uninstall.sh b/src/paks/libxml2/uninstall.sh deleted file mode 100644 index ad6122665e..0000000000 --- a/src/paks/libxml2/uninstall.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Delete the files -## Befehl fehlt noch -rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/mc/ROOTFILES b/src/paks/mc/ROOTFILES deleted file mode 100644 index fd2ecdb7bc..0000000000 --- a/src/paks/mc/ROOTFILES +++ /dev/null @@ -1,158 +0,0 @@ -usr/bin/mc -usr/bin/mcc -usr/bin/mcedit -usr/bin/mcmfmt -usr/bin/mcview -usr/lib/mc -usr/lib/mc/cons.saver -#usr/share/locale/az/LC_MESSAGES/mc.mo -#usr/share/locale/be/LC_MESSAGES/mc.mo -#usr/share/locale/bg/LC_MESSAGES/mc.mo -#usr/share/locale/ca/LC_MESSAGES/mc.mo -#usr/share/locale/cs/LC_MESSAGES/mc.mo -#usr/share/locale/da/LC_MESSAGES/mc.mo -#usr/share/locale/de/LC_MESSAGES/mc.mo -#usr/share/locale/el/LC_MESSAGES/mc.mo -#usr/share/locale/es/LC_MESSAGES/mc.mo -#usr/share/locale/eu/LC_MESSAGES/mc.mo -#usr/share/locale/fi/LC_MESSAGES/mc.mo -#usr/share/locale/fr/LC_MESSAGES/mc.mo -#usr/share/locale/hu/LC_MESSAGES/mc.mo -#usr/share/locale/it/LC_MESSAGES/mc.mo -#usr/share/locale/ja/LC_MESSAGES/mc.mo -#usr/share/locale/ko/LC_MESSAGES/mc.mo -#usr/share/locale/lt/LC_MESSAGES/mc.mo -#usr/share/locale/lv/LC_MESSAGES/mc.mo -#usr/share/locale/mn/LC_MESSAGES/mc.mo -#usr/share/locale/nl/LC_MESSAGES/mc.mo -#usr/share/locale/no/LC_MESSAGES/mc.mo -#usr/share/locale/pl/LC_MESSAGES/mc.mo -#usr/share/locale/pt/LC_MESSAGES/mc.mo -#usr/share/locale/pt_BR/LC_MESSAGES/mc.mo -#usr/share/locale/ro/LC_MESSAGES/mc.mo -#usr/share/locale/ru/LC_MESSAGES/mc.mo -#usr/share/locale/sk/LC_MESSAGES/mc.mo -#usr/share/locale/sl/LC_MESSAGES/mc.mo -#usr/share/locale/sr/LC_MESSAGES/mc.mo -#usr/share/locale/sv/LC_MESSAGES/mc.mo -#usr/share/locale/ta/LC_MESSAGES/mc.mo -#usr/share/locale/tr/LC_MESSAGES/mc.mo -#usr/share/locale/uk/LC_MESSAGES/mc.mo -#usr/share/locale/wa/LC_MESSAGES/mc.mo -#usr/share/locale/zh_CN/LC_MESSAGES/mc.mo -#usr/share/locale/zh_TW/LC_MESSAGES/mc.mo -#usr/share/man/es/man1/mc.1 -#usr/share/man/hu/man1/mc.1 -#usr/share/man/it/man1/mc.1 -#usr/share/man/man1/mc.1 -#usr/share/man/man1/mcedit.1 -#usr/share/man/man1/mcview.1 -#usr/share/man/pl/man1/mc.1 -#usr/share/man/ru/man1 -#usr/share/man/ru/man1/mc.1 -#usr/share/man/sr -#usr/share/man/sr/man1 -#usr/share/man/sr/man1/mc.1 -#usr/share/man/sr/man8 -usr/share/mc -#usr/share/mc/bin -#usr/share/mc/bin/mc-wrapper.csh -#usr/share/mc/bin/mc-wrapper.sh -#usr/share/mc/bin/mc.csh -#usr/share/mc/bin/mc.sh -#usr/share/mc/cedit.menu -#usr/share/mc/edit.indent.rc -#usr/share/mc/edit.spell.rc -#usr/share/mc/extfs -#usr/share/mc/extfs/README -#usr/share/mc/extfs/a -#usr/share/mc/extfs/apt -#usr/share/mc/extfs/audio -#usr/share/mc/extfs/bpp -#usr/share/mc/extfs/deb -#usr/share/mc/extfs/deba -#usr/share/mc/extfs/debd -#usr/share/mc/extfs/dpkg -#usr/share/mc/extfs/extfs.ini -#usr/share/mc/extfs/hp48 -#usr/share/mc/extfs/iso9660 -#usr/share/mc/extfs/lslR -#usr/share/mc/extfs/mailfs -#usr/share/mc/extfs/patchfs -#usr/share/mc/extfs/rpm -#usr/share/mc/extfs/rpms -#usr/share/mc/extfs/sfs.ini -#usr/share/mc/extfs/trpm -#usr/share/mc/extfs/uar -#usr/share/mc/extfs/uarj -#usr/share/mc/extfs/uha -#usr/share/mc/extfs/ulha -#usr/share/mc/extfs/urar -#usr/share/mc/extfs/uzip -#usr/share/mc/extfs/uzoo -#usr/share/mc/mc.ext -#usr/share/mc/mc.hint -#usr/share/mc/mc.hint.cs -#usr/share/mc/mc.hint.es -#usr/share/mc/mc.hint.hu -#usr/share/mc/mc.hint.it -#usr/share/mc/mc.hint.nl -#usr/share/mc/mc.hint.pl -#usr/share/mc/mc.hint.ru -#usr/share/mc/mc.hint.sr -#usr/share/mc/mc.hint.uk -#usr/share/mc/mc.hint.zh -#usr/share/mc/mc.hlp -#usr/share/mc/mc.hlp.es -#usr/share/mc/mc.hlp.hu -#usr/share/mc/mc.hlp.it -#usr/share/mc/mc.hlp.pl -#usr/share/mc/mc.hlp.ru -#usr/share/mc/mc.hlp.sr -#usr/share/mc/mc.lib -#usr/share/mc/mc.menu -#usr/share/mc/mc.menu.sr -#usr/share/mc/syntax -#usr/share/mc/syntax/Syntax -#usr/share/mc/syntax/ada95.syntax -#usr/share/mc/syntax/aspx.syntax -#usr/share/mc/syntax/assembler.syntax -#usr/share/mc/syntax/c.syntax -#usr/share/mc/syntax/changelog.syntax -#usr/share/mc/syntax/cs.syntax -#usr/share/mc/syntax/diff.syntax -#usr/share/mc/syntax/dos.syntax -#usr/share/mc/syntax/eiffel.syntax -#usr/share/mc/syntax/fortran.syntax -#usr/share/mc/syntax/html.syntax -#usr/share/mc/syntax/idl.syntax -#usr/share/mc/syntax/java.syntax -#usr/share/mc/syntax/js.syntax -#usr/share/mc/syntax/latex.syntax -#usr/share/mc/syntax/lisp.syntax -#usr/share/mc/syntax/lsm.syntax -#usr/share/mc/syntax/lua.syntax -#usr/share/mc/syntax/m4.syntax -#usr/share/mc/syntax/mail.syntax -#usr/share/mc/syntax/makefile.syntax -#usr/share/mc/syntax/ml.syntax -#usr/share/mc/syntax/nroff.syntax -#usr/share/mc/syntax/octave.syntax -#usr/share/mc/syntax/pascal.syntax -#usr/share/mc/syntax/perl.syntax -#usr/share/mc/syntax/php.syntax -#usr/share/mc/syntax/po.syntax -#usr/share/mc/syntax/povray.syntax -#usr/share/mc/syntax/python.syntax -#usr/share/mc/syntax/ruby.syntax -#usr/share/mc/syntax/sh.syntax -#usr/share/mc/syntax/slang.syntax -#usr/share/mc/syntax/smalltalk.syntax -#usr/share/mc/syntax/spec.syntax -#usr/share/mc/syntax/sql.syntax -#usr/share/mc/syntax/swig.syntax -#usr/share/mc/syntax/syntax.syntax -#usr/share/mc/syntax/tcl.syntax -#usr/share/mc/syntax/texinfo.syntax -#usr/share/mc/syntax/unknown.syntax -#usr/share/mc/syntax/xml.syntax diff --git a/src/paks/mc/install.sh b/src/paks/mc/install.sh deleted file mode 100644 index 5d732b114d..0000000000 --- a/src/paks/mc/install.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -tar xfz files.tgz -C / - diff --git a/src/paks/web-cyradm/depends.txt b/src/paks/mpeg2dec/depends.txt similarity index 100% rename from src/paks/web-cyradm/depends.txt rename to src/paks/mpeg2dec/depends.txt diff --git a/src/paks/mysql/install.sh b/src/paks/mysql/install.sh deleted file mode 100644 index 3a9ce551bf..0000000000 --- a/src/paks/mysql/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -# -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Extract the files -tar xfz files.tgz -C / -cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/mysql/uninstall.sh b/src/paks/mysql/uninstall.sh deleted file mode 100644 index ad6122665e..0000000000 --- a/src/paks/mysql/uninstall.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Delete the files -## Befehl fehlt noch -rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/xampp/depends.txt b/src/paks/nagios/depends.txt similarity index 100% rename from src/paks/xampp/depends.txt rename to src/paks/nagios/depends.txt diff --git a/src/paks/php/ROOTFILES b/src/paks/php/ROOTFILES deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/src/paks/php/install.sh b/src/paks/php/install.sh deleted file mode 100644 index 3a9ce551bf..0000000000 --- a/src/paks/php/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -# -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Extract the files -tar xfz files.tgz -C / -cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/php/uninstall.sh b/src/paks/php/uninstall.sh deleted file mode 100644 index ad6122665e..0000000000 --- a/src/paks/php/uninstall.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Delete the files -## Befehl fehlt noch -rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/subversion/ROOTFILES b/src/paks/subversion/ROOTFILES index 00b0935118..2a3827e97e 100644 --- a/src/paks/subversion/ROOTFILES +++ b/src/paks/subversion/ROOTFILES @@ -1,11 +1,11 @@ -usr/bin/apr-config -usr/bin/apu-config -usr/bin/neon-config +#usr/bin/apr-config +#usr/bin/apu-config +#usr/bin/neon-config usr/bin/svn usr/bin/svnadmin usr/bin/svndumpfilter usr/bin/svnlook -#usr/bin/svnserve +usr/bin/svnserve usr/bin/svnversion #usr/include/apr-0 #usr/include/apr-0/apr.h @@ -129,11 +129,11 @@ usr/bin/svnversion #usr/include/subversion-1/svn_version.h #usr/include/subversion-1/svn_wc.h #usr/include/subversion-1/svn_xml.h +usr/lib/apache/mod_authz_svn.so +usr/lib/apache/mod_dav_svn.so #usr/lib/apr-0 #usr/lib/apr-0/apr_rules.mk #usr/lib/apr-0/libtool -#usr/lib/apr.exp -#usr/lib/aprutil.exp #usr/lib/libapr-0.a #usr/lib/libapr-0.la usr/lib/libapr-0.so @@ -267,18 +267,6 @@ usr/lib/libsvn_wc-1.so.0.0.0 #usr/share/doc/neon-0.25.5/html/refxml.html #usr/share/doc/neon-0.25.5/html/using.html #usr/share/doc/neon-0.25.5/html/xml.html -#usr/share/locale/de/LC_MESSAGES/subversion.mo -#usr/share/locale/es/LC_MESSAGES/subversion.mo -#usr/share/locale/fr/LC_MESSAGES/subversion.mo -#usr/share/locale/it/LC_MESSAGES/subversion.mo -#usr/share/locale/ja/LC_MESSAGES/subversion.mo -#usr/share/locale/ko/LC_MESSAGES/subversion.mo -#usr/share/locale/nb/LC_MESSAGES/subversion.mo -#usr/share/locale/pl/LC_MESSAGES/subversion.mo -#usr/share/locale/pt_BR/LC_MESSAGES/subversion.mo -#usr/share/locale/sv/LC_MESSAGES/subversion.mo -#usr/share/locale/zh_CN/LC_MESSAGES/subversion.mo -#usr/share/locale/zh_TW/LC_MESSAGES/subversion.mo #usr/share/man/man1/neon-config.1 #usr/share/man/man1/svn.1 #usr/share/man/man1/svnadmin.1 diff --git a/src/paks/xinetd/depends.txt b/src/paks/videolan/depends.txt similarity index 100% rename from src/paks/xinetd/depends.txt rename to src/paks/videolan/depends.txt diff --git a/src/paks/web-cyradm/install.sh b/src/paks/web-cyradm/install.sh deleted file mode 100644 index 3a9ce551bf..0000000000 --- a/src/paks/web-cyradm/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -# -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Extract the files -tar xfz files.tgz -C / -cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/web-cyradm/uninstall.sh b/src/paks/web-cyradm/uninstall.sh deleted file mode 100644 index ad6122665e..0000000000 --- a/src/paks/web-cyradm/uninstall.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Delete the files -## Befehl fehlt noch -rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/web-cyradm/ROOTFILES b/src/paks/webcyradm/ROOTFILES similarity index 100% rename from src/paks/web-cyradm/ROOTFILES rename to src/paks/webcyradm/ROOTFILES diff --git a/src/paks/apache2/ROOTFILES b/src/paks/webcyradm/depends.txt similarity index 100% rename from src/paks/apache2/ROOTFILES rename to src/paks/webcyradm/depends.txt diff --git a/src/paks/apache2/install.sh b/src/paks/webcyradm/install.sh similarity index 100% rename from src/paks/apache2/install.sh rename to src/paks/webcyradm/install.sh diff --git a/src/paks/apache2/uninstall.sh b/src/paks/webcyradm/uninstall.sh similarity index 100% rename from src/paks/apache2/uninstall.sh rename to src/paks/webcyradm/uninstall.sh diff --git a/src/paks/xampp/ROOTFILES b/src/paks/xampp/ROOTFILES deleted file mode 100644 index ba8664ead2..0000000000 --- a/src/paks/xampp/ROOTFILES +++ /dev/null @@ -1,21808 +0,0 @@ -#opt/lampp -opt/lampp/RELEASENOTES -opt/lampp/backup -#opt/lampp/bin -opt/lampp/bin/.0.2 -opt/lampp/bin/CA -opt/lampp/bin/CA.pl -opt/lampp/bin/CA.sh -opt/lampp/bin/DB -opt/lampp/bin/DB/scripts -opt/lampp/bin/DB/scripts/DB_DataObject_createTables.bat -opt/lampp/bin/GET -opt/lampp/bin/HEAD -opt/lampp/bin/Makefile.in -opt/lampp/bin/POST -opt/lampp/bin/a2p -opt/lampp/bin/ab -opt/lampp/bin/apachectl -opt/lampp/bin/apr-1-config -opt/lampp/bin/apreq2-config -opt/lampp/bin/apu-1-config -opt/lampp/bin/apxs -opt/lampp/bin/autopoint -opt/lampp/bin/bdftogd -opt/lampp/bin/bsqldb -opt/lampp/bin/bunzip2 -opt/lampp/bin/bzcat -opt/lampp/bin/bzcmp -opt/lampp/bin/bzdiff -opt/lampp/bin/bzegrep -opt/lampp/bin/bzfgrep -opt/lampp/bin/bzgrep -opt/lampp/bin/bzip2 -opt/lampp/bin/bzip2recover -opt/lampp/bin/bzless -opt/lampp/bin/bzmore -opt/lampp/bin/c2ph -opt/lampp/bin/c_hash -opt/lampp/bin/c_info -opt/lampp/bin/c_issuer -opt/lampp/bin/c_name -opt/lampp/bin/c_rehash -opt/lampp/bin/captoinfo -opt/lampp/bin/checkgid -opt/lampp/bin/clear -opt/lampp/bin/clusterdb -opt/lampp/bin/comp_err -opt/lampp/bin/config.m4 -opt/lampp/bin/cpan -opt/lampp/bin/createdb -opt/lampp/bin/createlang -opt/lampp/bin/createuser -opt/lampp/bin/curl -opt/lampp/bin/curl-config -opt/lampp/bin/dbiprof -opt/lampp/bin/dbiproxy -opt/lampp/bin/dbish -opt/lampp/bin/dbl2png -opt/lampp/bin/dbmmanage -opt/lampp/bin/ddclient -opt/lampp/bin/defncopy -opt/lampp/bin/der_chop -opt/lampp/bin/dprofpp -opt/lampp/bin/dropdb -opt/lampp/bin/droplang -opt/lampp/bin/dropuser -opt/lampp/bin/ecpg -opt/lampp/bin/enc2xs -opt/lampp/bin/envvars -opt/lampp/bin/envvars-std -opt/lampp/bin/find2perl -opt/lampp/bin/freebcp -opt/lampp/bin/freetype-config -opt/lampp/bin/ftpcount -opt/lampp/bin/ftpdctl -opt/lampp/bin/ftptop -opt/lampp/bin/ftpwho -opt/lampp/bin/gd2copypal -opt/lampp/bin/gd2topng -opt/lampp/bin/gdparttopng -opt/lampp/bin/gdtopng -opt/lampp/bin/gettext -opt/lampp/bin/gettextize -opt/lampp/bin/h2ph -opt/lampp/bin/h2xs -opt/lampp/bin/htcacheclean -opt/lampp/bin/htdbm -opt/lampp/bin/htdigest -opt/lampp/bin/htpasswd -opt/lampp/bin/httpd -opt/lampp/bin/httxt2dbm -opt/lampp/bin/idle -opt/lampp/bin/infocmp -opt/lampp/bin/infotocap -opt/lampp/bin/initdb -opt/lampp/bin/innochecksum -opt/lampp/bin/instmodsh -opt/lampp/bin/ipcclean -opt/lampp/bin/isamchk -opt/lampp/bin/isamlog -opt/lampp/bin/ldapadd -opt/lampp/bin/ldapcompare -opt/lampp/bin/ldapdelete -opt/lampp/bin/ldapmodify -opt/lampp/bin/ldapmodrdn -opt/lampp/bin/ldappasswd -opt/lampp/bin/ldapsearch -opt/lampp/bin/ldapwhoami -opt/lampp/bin/libmcrypt-config -opt/lampp/bin/libnetcfg -opt/lampp/bin/libpng-config -opt/lampp/bin/libpng12-config -opt/lampp/bin/listaction -opt/lampp/bin/listaction_d -opt/lampp/bin/listfdb -opt/lampp/bin/listjpeg -opt/lampp/bin/listmp3 -opt/lampp/bin/listswf -opt/lampp/bin/listswf_d -opt/lampp/bin/logresolve -opt/lampp/bin/lwp-download -opt/lampp/bin/lwp-mirror -opt/lampp/bin/lwp-request -opt/lampp/bin/lwp-rget -opt/lampp/bin/make_win_binary_distribution -opt/lampp/bin/make_win_src_distribution -opt/lampp/bin/makefdb -opt/lampp/bin/makeswf -opt/lampp/bin/ming-config -opt/lampp/bin/mp2bug -opt/lampp/bin/mp2doc -opt/lampp/bin/msgattrib -opt/lampp/bin/msgcat -opt/lampp/bin/msgcmp -opt/lampp/bin/msgcomm -opt/lampp/bin/msgconv -opt/lampp/bin/msgen -opt/lampp/bin/msgexec -opt/lampp/bin/msgfilter -opt/lampp/bin/msgfmt -opt/lampp/bin/msggrep -opt/lampp/bin/msginit -opt/lampp/bin/msgmerge -opt/lampp/bin/msgunfmt -opt/lampp/bin/msguniq -opt/lampp/bin/msql2mysql -opt/lampp/bin/my_print_defaults -opt/lampp/bin/myisam_ftdump -opt/lampp/bin/myisamchk -opt/lampp/bin/myisamlog -opt/lampp/bin/myisampack -opt/lampp/bin/mysql -opt/lampp/bin/mysql.server -opt/lampp/bin/mysql_client_test -opt/lampp/bin/mysql_config -opt/lampp/bin/mysql_convert_table_format -opt/lampp/bin/mysql_create_system_tables -opt/lampp/bin/mysql_explain_log -opt/lampp/bin/mysql_find_rows -opt/lampp/bin/mysql_fix_extensions -opt/lampp/bin/mysql_fix_privilege_tables -opt/lampp/bin/mysql_install -opt/lampp/bin/mysql_install_db -opt/lampp/bin/mysql_secure_installation -opt/lampp/bin/mysql_setpermission -opt/lampp/bin/mysql_tableinfo -opt/lampp/bin/mysql_tzinfo_to_sql -opt/lampp/bin/mysql_upgrade -opt/lampp/bin/mysql_waitpid -opt/lampp/bin/mysql_zap -opt/lampp/bin/mysqlaccess -opt/lampp/bin/mysqladmin -opt/lampp/bin/mysqlbinlog -opt/lampp/bin/mysqlbug -opt/lampp/bin/mysqlcheck -opt/lampp/bin/mysqld_multi -opt/lampp/bin/mysqld_safe -opt/lampp/bin/mysqldump -opt/lampp/bin/mysqldumpslow -opt/lampp/bin/mysqlhotcopy -opt/lampp/bin/mysqlimport -opt/lampp/bin/mysqlshow -opt/lampp/bin/mysqltest -opt/lampp/bin/mysqltestmanager -opt/lampp/bin/mysqltestmanager-pwgen -opt/lampp/bin/mysqltestmanagerc -opt/lampp/bin/ngettext -opt/lampp/bin/openssl -opt/lampp/bin/openssl_fips_fingerprint -opt/lampp/bin/ora_explain -opt/lampp/bin/pack_isam -opt/lampp/bin/pear -opt/lampp/bin/peardev -opt/lampp/bin/pearize -opt/lampp/bin/pecl -opt/lampp/bin/perl -opt/lampp/bin/perl5.8.7 -opt/lampp/bin/perlbug -opt/lampp/bin/perlcc -opt/lampp/bin/perldoc -opt/lampp/bin/perlivp -opt/lampp/bin/perror -opt/lampp/bin/pg_config -opt/lampp/bin/pg_controldata -opt/lampp/bin/pg_ctl -opt/lampp/bin/pg_dump -opt/lampp/bin/pg_dumpall -opt/lampp/bin/pg_resetxlog -opt/lampp/bin/pg_restore -opt/lampp/bin/php -opt/lampp/bin/php- -opt/lampp/bin/php-4.4.2 -opt/lampp/bin/php-5.1.4 -opt/lampp/bin/php-config -opt/lampp/bin/php-config-4.4.2 -opt/lampp/bin/php-config-5.1.4 -opt/lampp/bin/phpize -opt/lampp/bin/phpize-4.4.2 -opt/lampp/bin/phpize-5.1.4 -opt/lampp/bin/phptar -opt/lampp/bin/piconv -opt/lampp/bin/pl2pm -opt/lampp/bin/pngtogd -opt/lampp/bin/pngtogd2 -opt/lampp/bin/pod2html -opt/lampp/bin/pod2latex -opt/lampp/bin/pod2man -opt/lampp/bin/pod2text -opt/lampp/bin/pod2usage -opt/lampp/bin/podchecker -opt/lampp/bin/podselect -opt/lampp/bin/postgres -opt/lampp/bin/postmaster -opt/lampp/bin/prove -opt/lampp/bin/psed -opt/lampp/bin/psql -opt/lampp/bin/pstruct -opt/lampp/bin/ptar -opt/lampp/bin/ptardiff -opt/lampp/bin/pydoc -opt/lampp/bin/python -opt/lampp/bin/python2.4 -opt/lampp/bin/raw2adpcm -opt/lampp/bin/reindexdb -opt/lampp/bin/replace -opt/lampp/bin/reset -opt/lampp/bin/resolve_stack_dump -opt/lampp/bin/resolveip -opt/lampp/bin/rotatelogs -opt/lampp/bin/s2p -opt/lampp/bin/sabcmd -opt/lampp/bin/sablot-config -opt/lampp/bin/showtable -opt/lampp/bin/smtpd.py -opt/lampp/bin/splain -opt/lampp/bin/sqlite -opt/lampp/bin/sqlite3 -opt/lampp/bin/suexec -opt/lampp/bin/swftoperl -opt/lampp/bin/swftophp -opt/lampp/bin/swftopython -opt/lampp/bin/tack -opt/lampp/bin/tdspool -opt/lampp/bin/tic -opt/lampp/bin/toe -opt/lampp/bin/tput -opt/lampp/bin/tset -opt/lampp/bin/tsql -opt/lampp/bin/unzzip -opt/lampp/bin/vacuumdb -opt/lampp/bin/webalizer -opt/lampp/bin/webazolver -opt/lampp/bin/webpng -opt/lampp/bin/xgettext -opt/lampp/bin/xml2-config -opt/lampp/bin/xmlcatalog -opt/lampp/bin/xmllint -opt/lampp/bin/xrpcomp -opt/lampp/bin/xslt-config -opt/lampp/bin/xsltproc -opt/lampp/bin/xsubpp -opt/lampp/bin/zzcat -opt/lampp/bin/zzdir -opt/lampp/bin/zzxorcat -opt/lampp/bin/zzxorcopy -opt/lampp/bin/zzxordir -opt/lampp/build -opt/lampp/build/apr_rules.mk -opt/lampp/build/config.nice -opt/lampp/build/config_vars.mk -opt/lampp/build/instdso.sh -opt/lampp/build/library.mk -opt/lampp/build/libtool -opt/lampp/build/ltlib.mk -opt/lampp/build/make_exports.awk -opt/lampp/build/make_var_export.awk -opt/lampp/build/mkdir.sh -opt/lampp/build/program.mk -opt/lampp/build/rules.mk -opt/lampp/build/special.mk -opt/lampp/cgi-bin -opt/lampp/cgi-bin/printenv -opt/lampp/cgi-bin/python.cgi -opt/lampp/cgi-bin/test-cgi -#opt/lampp/doc -#opt/lampp/doc/postgresql -#opt/lampp/doc/postgresql/html -#opt/lampp/doc/postgresql/html/LEGALNOTICE.html -#opt/lampp/doc/postgresql/html/admin.html -#opt/lampp/doc/postgresql/html/app-clusterdb.html -#opt/lampp/doc/postgresql/html/app-createdb.html -#opt/lampp/doc/postgresql/html/app-createlang.html -#opt/lampp/doc/postgresql/html/app-createuser.html -#opt/lampp/doc/postgresql/html/app-dropdb.html -#opt/lampp/doc/postgresql/html/app-droplang.html -#opt/lampp/doc/postgresql/html/app-dropuser.html -#opt/lampp/doc/postgresql/html/app-ecpg.html -#opt/lampp/doc/postgresql/html/app-initdb.html -#opt/lampp/doc/postgresql/html/app-ipcclean.html -#opt/lampp/doc/postgresql/html/app-pg-ctl.html -#opt/lampp/doc/postgresql/html/app-pg-dumpall.html -#opt/lampp/doc/postgresql/html/app-pgconfig.html -#opt/lampp/doc/postgresql/html/app-pgcontroldata.html -#opt/lampp/doc/postgresql/html/app-pgdump.html -#opt/lampp/doc/postgresql/html/app-pgresetxlog.html -#opt/lampp/doc/postgresql/html/app-pgrestore.html -#opt/lampp/doc/postgresql/html/app-postgres.html -#opt/lampp/doc/postgresql/html/app-postmaster.html -#opt/lampp/doc/postgresql/html/app-psql.html -#opt/lampp/doc/postgresql/html/app-reindexdb.html -#opt/lampp/doc/postgresql/html/app-vacuumdb.html -#opt/lampp/doc/postgresql/html/appendixes.html -#opt/lampp/doc/postgresql/html/applevel-consistency.html -#opt/lampp/doc/postgresql/html/arrays.html -#opt/lampp/doc/postgresql/html/auth-methods.html -#opt/lampp/doc/postgresql/html/backup-file.html -#opt/lampp/doc/postgresql/html/backup-online.html -#opt/lampp/doc/postgresql/html/backup.html -#opt/lampp/doc/postgresql/html/biblio.html -#opt/lampp/doc/postgresql/html/bki-commands.html -#opt/lampp/doc/postgresql/html/bki-example.html -#opt/lampp/doc/postgresql/html/bki-structure.html -#opt/lampp/doc/postgresql/html/bki.html -#opt/lampp/doc/postgresql/html/bookindex.html -#opt/lampp/doc/postgresql/html/bug-reporting.html -#opt/lampp/doc/postgresql/html/catalog-pg-aggregate.html -#opt/lampp/doc/postgresql/html/catalog-pg-am.html -#opt/lampp/doc/postgresql/html/catalog-pg-amop.html -#opt/lampp/doc/postgresql/html/catalog-pg-amproc.html -#opt/lampp/doc/postgresql/html/catalog-pg-attrdef.html -#opt/lampp/doc/postgresql/html/catalog-pg-attribute.html -#opt/lampp/doc/postgresql/html/catalog-pg-auth-members.html -#opt/lampp/doc/postgresql/html/catalog-pg-authid.html -#opt/lampp/doc/postgresql/html/catalog-pg-autovacuum.html -#opt/lampp/doc/postgresql/html/catalog-pg-cast.html -#opt/lampp/doc/postgresql/html/catalog-pg-class.html -#opt/lampp/doc/postgresql/html/catalog-pg-constraint.html -#opt/lampp/doc/postgresql/html/catalog-pg-conversion.html -#opt/lampp/doc/postgresql/html/catalog-pg-database.html -#opt/lampp/doc/postgresql/html/catalog-pg-depend.html -#opt/lampp/doc/postgresql/html/catalog-pg-description.html -#opt/lampp/doc/postgresql/html/catalog-pg-index.html -#opt/lampp/doc/postgresql/html/catalog-pg-inherits.html -#opt/lampp/doc/postgresql/html/catalog-pg-language.html -#opt/lampp/doc/postgresql/html/catalog-pg-largeobject.html -#opt/lampp/doc/postgresql/html/catalog-pg-listener.html -#opt/lampp/doc/postgresql/html/catalog-pg-namespace.html -#opt/lampp/doc/postgresql/html/catalog-pg-opclass.html -#opt/lampp/doc/postgresql/html/catalog-pg-operator.html -#opt/lampp/doc/postgresql/html/catalog-pg-pltemplate.html -#opt/lampp/doc/postgresql/html/catalog-pg-proc.html -#opt/lampp/doc/postgresql/html/catalog-pg-rewrite.html -#opt/lampp/doc/postgresql/html/catalog-pg-shdepend.html -#opt/lampp/doc/postgresql/html/catalog-pg-statistic.html -#opt/lampp/doc/postgresql/html/catalog-pg-tablespace.html -#opt/lampp/doc/postgresql/html/catalog-pg-trigger.html -#opt/lampp/doc/postgresql/html/catalog-pg-type.html -#opt/lampp/doc/postgresql/html/catalogs.html -#opt/lampp/doc/postgresql/html/charset.html -#opt/lampp/doc/postgresql/html/client-authentication-problems.html -#opt/lampp/doc/postgresql/html/client-authentication.html -#opt/lampp/doc/postgresql/html/client-interfaces.html -#opt/lampp/doc/postgresql/html/connect-estab.html -#opt/lampp/doc/postgresql/html/creating-cluster.html -#opt/lampp/doc/postgresql/html/cvs-tree.html -#opt/lampp/doc/postgresql/html/cvs.html -#opt/lampp/doc/postgresql/html/cvsup.html -#opt/lampp/doc/postgresql/html/datatype-binary.html -#opt/lampp/doc/postgresql/html/datatype-bit.html -#opt/lampp/doc/postgresql/html/datatype-boolean.html -#opt/lampp/doc/postgresql/html/datatype-character.html -#opt/lampp/doc/postgresql/html/datatype-datetime.html -#opt/lampp/doc/postgresql/html/datatype-geometric.html -#opt/lampp/doc/postgresql/html/datatype-money.html -#opt/lampp/doc/postgresql/html/datatype-net-types.html -#opt/lampp/doc/postgresql/html/datatype-oid.html -#opt/lampp/doc/postgresql/html/datatype-pseudo.html -#opt/lampp/doc/postgresql/html/datatype.html -#opt/lampp/doc/postgresql/html/datetime-appendix.html -#opt/lampp/doc/postgresql/html/datetime-keywords.html -#opt/lampp/doc/postgresql/html/datetime-units-history.html -#opt/lampp/doc/postgresql/html/ddl-alter.html -#opt/lampp/doc/postgresql/html/ddl-constraints.html -#opt/lampp/doc/postgresql/html/ddl-default.html -#opt/lampp/doc/postgresql/html/ddl-depend.html -#opt/lampp/doc/postgresql/html/ddl-inherit.html -#opt/lampp/doc/postgresql/html/ddl-others.html -#opt/lampp/doc/postgresql/html/ddl-partitioning.html -#opt/lampp/doc/postgresql/html/ddl-priv.html -#opt/lampp/doc/postgresql/html/ddl-schemas.html -#opt/lampp/doc/postgresql/html/ddl-system-columns.html -#opt/lampp/doc/postgresql/html/ddl.html -#opt/lampp/doc/postgresql/html/disk-full.html -#opt/lampp/doc/postgresql/html/diskusage.html -#opt/lampp/doc/postgresql/html/dml-delete.html -#opt/lampp/doc/postgresql/html/dml-update.html -#opt/lampp/doc/postgresql/html/dml.html -#opt/lampp/doc/postgresql/html/docguide-authoring.html -#opt/lampp/doc/postgresql/html/docguide-build.html -#opt/lampp/doc/postgresql/html/docguide-style.html -#opt/lampp/doc/postgresql/html/docguide-toolsets.html -#opt/lampp/doc/postgresql/html/docguide.html -#opt/lampp/doc/postgresql/html/ecpg-commands.html -#opt/lampp/doc/postgresql/html/ecpg-connect.html -#opt/lampp/doc/postgresql/html/ecpg-descriptors.html -#opt/lampp/doc/postgresql/html/ecpg-develop.html -#opt/lampp/doc/postgresql/html/ecpg-disconnect.html -#opt/lampp/doc/postgresql/html/ecpg-dynamic.html -#opt/lampp/doc/postgresql/html/ecpg-errors.html -#opt/lampp/doc/postgresql/html/ecpg-include.html -#opt/lampp/doc/postgresql/html/ecpg-library.html -#opt/lampp/doc/postgresql/html/ecpg-process.html -#opt/lampp/doc/postgresql/html/ecpg-set-connection.html -#opt/lampp/doc/postgresql/html/ecpg-variables.html -#opt/lampp/doc/postgresql/html/ecpg.html -#opt/lampp/doc/postgresql/html/encryption-options.html -#opt/lampp/doc/postgresql/html/errcodes-appendix.html -#opt/lampp/doc/postgresql/html/error-message-reporting.html -#opt/lampp/doc/postgresql/html/error-style-guide.html -#opt/lampp/doc/postgresql/html/executor.html -#opt/lampp/doc/postgresql/html/explicit-joins.html -#opt/lampp/doc/postgresql/html/explicit-locking.html -#opt/lampp/doc/postgresql/html/extend-type-system.html -#opt/lampp/doc/postgresql/html/extend.html -#opt/lampp/doc/postgresql/html/external-extensions.html -#opt/lampp/doc/postgresql/html/external-projects.html -#opt/lampp/doc/postgresql/html/features.html -#opt/lampp/doc/postgresql/html/functions-admin.html -#opt/lampp/doc/postgresql/html/functions-aggregate.html -#opt/lampp/doc/postgresql/html/functions-array.html -#opt/lampp/doc/postgresql/html/functions-binarystring.html -#opt/lampp/doc/postgresql/html/functions-bitstring.html -#opt/lampp/doc/postgresql/html/functions-comparison.html -#opt/lampp/doc/postgresql/html/functions-comparisons.html -#opt/lampp/doc/postgresql/html/functions-conditional.html -#opt/lampp/doc/postgresql/html/functions-datetime.html -#opt/lampp/doc/postgresql/html/functions-formatting.html -#opt/lampp/doc/postgresql/html/functions-geometry.html -#opt/lampp/doc/postgresql/html/functions-info.html -#opt/lampp/doc/postgresql/html/functions-matching.html -#opt/lampp/doc/postgresql/html/functions-math.html -#opt/lampp/doc/postgresql/html/functions-net.html -#opt/lampp/doc/postgresql/html/functions-sequence.html -#opt/lampp/doc/postgresql/html/functions-srf.html -#opt/lampp/doc/postgresql/html/functions-string.html -#opt/lampp/doc/postgresql/html/functions-subquery.html -#opt/lampp/doc/postgresql/html/functions.html -#opt/lampp/doc/postgresql/html/geqo-biblio.html -#opt/lampp/doc/postgresql/html/geqo-intro2.html -#opt/lampp/doc/postgresql/html/geqo-pg-intro.html -#opt/lampp/doc/postgresql/html/geqo.html -#opt/lampp/doc/postgresql/html/gist-examples.html -#opt/lampp/doc/postgresql/html/gist-extensibility.html -#opt/lampp/doc/postgresql/html/gist-implementation.html -#opt/lampp/doc/postgresql/html/gist-recovery.html -#opt/lampp/doc/postgresql/html/gist.html -#opt/lampp/doc/postgresql/html/history.html -#opt/lampp/doc/postgresql/html/index-cost-estimation.html -#opt/lampp/doc/postgresql/html/index-functions.html -#opt/lampp/doc/postgresql/html/index-locking.html -#opt/lampp/doc/postgresql/html/index-scanning.html -#opt/lampp/doc/postgresql/html/index-unique-checks.html -#opt/lampp/doc/postgresql/html/index.html -#opt/lampp/doc/postgresql/html/indexam.html -#opt/lampp/doc/postgresql/html/indexes-bitmap-scans.html -#opt/lampp/doc/postgresql/html/indexes-examine.html -#opt/lampp/doc/postgresql/html/indexes-expressional.html -#opt/lampp/doc/postgresql/html/indexes-multicolumn.html -#opt/lampp/doc/postgresql/html/indexes-opclass.html -#opt/lampp/doc/postgresql/html/indexes-partial.html -#opt/lampp/doc/postgresql/html/indexes-types.html -#opt/lampp/doc/postgresql/html/indexes-unique.html -#opt/lampp/doc/postgresql/html/indexes.html -#opt/lampp/doc/postgresql/html/information-schema.html -#opt/lampp/doc/postgresql/html/infoschema-applicable-roles.html -#opt/lampp/doc/postgresql/html/infoschema-check-constraints.html -#opt/lampp/doc/postgresql/html/infoschema-column-domain-usage.html -#opt/lampp/doc/postgresql/html/infoschema-column-privileges.html -#opt/lampp/doc/postgresql/html/infoschema-column-udt-usage.html -#opt/lampp/doc/postgresql/html/infoschema-columns.html -#opt/lampp/doc/postgresql/html/infoschema-constraint-column-usage.html -#opt/lampp/doc/postgresql/html/infoschema-constraint-table-usage.html -#opt/lampp/doc/postgresql/html/infoschema-data-type-privileges.html -#opt/lampp/doc/postgresql/html/infoschema-datatypes.html -#opt/lampp/doc/postgresql/html/infoschema-domain-constraints.html -#opt/lampp/doc/postgresql/html/infoschema-domain-udt-usage.html -#opt/lampp/doc/postgresql/html/infoschema-domains.html -#opt/lampp/doc/postgresql/html/infoschema-element-types.html -#opt/lampp/doc/postgresql/html/infoschema-enabled-roles.html -#opt/lampp/doc/postgresql/html/infoschema-information-schema-catalog-name.html -#opt/lampp/doc/postgresql/html/infoschema-key-column-usage.html -#opt/lampp/doc/postgresql/html/infoschema-parameters.html -#opt/lampp/doc/postgresql/html/infoschema-referential-constraints.html -#opt/lampp/doc/postgresql/html/infoschema-role-column-grants.html -#opt/lampp/doc/postgresql/html/infoschema-role-routine-grants.html -#opt/lampp/doc/postgresql/html/infoschema-role-table-grants.html -#opt/lampp/doc/postgresql/html/infoschema-role-usage-grants.html -#opt/lampp/doc/postgresql/html/infoschema-routine-privileges.html -#opt/lampp/doc/postgresql/html/infoschema-routines.html -#opt/lampp/doc/postgresql/html/infoschema-schemata.html -#opt/lampp/doc/postgresql/html/infoschema-sql-features.html -#opt/lampp/doc/postgresql/html/infoschema-sql-implementation-info.html -#opt/lampp/doc/postgresql/html/infoschema-sql-languages.html -#opt/lampp/doc/postgresql/html/infoschema-sql-packages.html -#opt/lampp/doc/postgresql/html/infoschema-sql-sizing-profiles.html -#opt/lampp/doc/postgresql/html/infoschema-sql-sizing.html -#opt/lampp/doc/postgresql/html/infoschema-table-constraints.html -#opt/lampp/doc/postgresql/html/infoschema-table-privileges.html -#opt/lampp/doc/postgresql/html/infoschema-tables.html -#opt/lampp/doc/postgresql/html/infoschema-triggers.html -#opt/lampp/doc/postgresql/html/infoschema-usage-privileges.html -#opt/lampp/doc/postgresql/html/infoschema-view-column-usage.html -#opt/lampp/doc/postgresql/html/infoschema-view-table-usage.html -#opt/lampp/doc/postgresql/html/infoschema-views.html -#opt/lampp/doc/postgresql/html/install-getsource.html -#opt/lampp/doc/postgresql/html/install-post.html -#opt/lampp/doc/postgresql/html/install-procedure.html -#opt/lampp/doc/postgresql/html/install-requirements.html -#opt/lampp/doc/postgresql/html/install-upgrading.html -#opt/lampp/doc/postgresql/html/install-win32.html -#opt/lampp/doc/postgresql/html/installation.html -#opt/lampp/doc/postgresql/html/internals.html -#opt/lampp/doc/postgresql/html/kernel-resources.html -#opt/lampp/doc/postgresql/html/largeobjects.html -#opt/lampp/doc/postgresql/html/libpq-async.html -#opt/lampp/doc/postgresql/html/libpq-build.html -#opt/lampp/doc/postgresql/html/libpq-cancel.html -#opt/lampp/doc/postgresql/html/libpq-control.html -#opt/lampp/doc/postgresql/html/libpq-copy.html -#opt/lampp/doc/postgresql/html/libpq-envars.html -#opt/lampp/doc/postgresql/html/libpq-example.html -#opt/lampp/doc/postgresql/html/libpq-exec.html -#opt/lampp/doc/postgresql/html/libpq-fastpath.html -#opt/lampp/doc/postgresql/html/libpq-notice-processing.html -#opt/lampp/doc/postgresql/html/libpq-notify.html -#opt/lampp/doc/postgresql/html/libpq-pgpass.html -#opt/lampp/doc/postgresql/html/libpq-ssl.html -#opt/lampp/doc/postgresql/html/libpq-status.html -#opt/lampp/doc/postgresql/html/libpq-threading.html -#opt/lampp/doc/postgresql/html/libpq.html -#opt/lampp/doc/postgresql/html/lo-examplesect.html -#opt/lampp/doc/postgresql/html/lo-funcs.html -#opt/lampp/doc/postgresql/html/lo-implementation.html -#opt/lampp/doc/postgresql/html/lo-interfaces.html -#opt/lampp/doc/postgresql/html/locking-indexes.html -#opt/lampp/doc/postgresql/html/logfile-maintenance.html -#opt/lampp/doc/postgresql/html/maintenance.html -#opt/lampp/doc/postgresql/html/manage-ag-config.html -#opt/lampp/doc/postgresql/html/manage-ag-createdb.html -#opt/lampp/doc/postgresql/html/manage-ag-dropdb.html -#opt/lampp/doc/postgresql/html/manage-ag-tablespaces.html -#opt/lampp/doc/postgresql/html/manage-ag-templatedbs.html -#opt/lampp/doc/postgresql/html/managing-databases.html -#opt/lampp/doc/postgresql/html/migration.html -#opt/lampp/doc/postgresql/html/monitoring-locks.html -#opt/lampp/doc/postgresql/html/monitoring-stats.html -#opt/lampp/doc/postgresql/html/monitoring.html -#opt/lampp/doc/postgresql/html/multibyte.html -#opt/lampp/doc/postgresql/html/mvcc.html -#opt/lampp/doc/postgresql/html/nls-programmer.html -#opt/lampp/doc/postgresql/html/nls.html -#opt/lampp/doc/postgresql/html/notation.html -#opt/lampp/doc/postgresql/html/overview.html -#opt/lampp/doc/postgresql/html/parser-stage.html -#opt/lampp/doc/postgresql/html/performance-tips.html -#opt/lampp/doc/postgresql/html/perm-functions.html -#opt/lampp/doc/postgresql/html/planner-optimizer.html -#opt/lampp/doc/postgresql/html/planner-stats-details.html -#opt/lampp/doc/postgresql/html/planner-stats.html -#opt/lampp/doc/postgresql/html/plhandler.html -#opt/lampp/doc/postgresql/html/plperl-data.html -#opt/lampp/doc/postgresql/html/plperl-database.html -#opt/lampp/doc/postgresql/html/plperl-global.html -#opt/lampp/doc/postgresql/html/plperl-missing.html -#opt/lampp/doc/postgresql/html/plperl-triggers.html -#opt/lampp/doc/postgresql/html/plperl-trusted.html -#opt/lampp/doc/postgresql/html/plperl.html -#opt/lampp/doc/postgresql/html/plpgsql-control-structures.html -#opt/lampp/doc/postgresql/html/plpgsql-cursors.html -#opt/lampp/doc/postgresql/html/plpgsql-declarations.html -#opt/lampp/doc/postgresql/html/plpgsql-development-tips.html -#opt/lampp/doc/postgresql/html/plpgsql-errors-and-messages.html -#opt/lampp/doc/postgresql/html/plpgsql-expressions.html -#opt/lampp/doc/postgresql/html/plpgsql-porting.html -#opt/lampp/doc/postgresql/html/plpgsql-statements.html -#opt/lampp/doc/postgresql/html/plpgsql-structure.html -#opt/lampp/doc/postgresql/html/plpgsql-trigger.html -#opt/lampp/doc/postgresql/html/plpgsql.html -#opt/lampp/doc/postgresql/html/plpython-database.html -#opt/lampp/doc/postgresql/html/plpython-trigger.html -#opt/lampp/doc/postgresql/html/plpython.html -#opt/lampp/doc/postgresql/html/pltcl-data.html -#opt/lampp/doc/postgresql/html/pltcl-dbaccess.html -#opt/lampp/doc/postgresql/html/pltcl-functions.html -#opt/lampp/doc/postgresql/html/pltcl-global.html -#opt/lampp/doc/postgresql/html/pltcl-procnames.html -#opt/lampp/doc/postgresql/html/pltcl-trigger.html -#opt/lampp/doc/postgresql/html/pltcl-unknown.html -#opt/lampp/doc/postgresql/html/pltcl.html -#opt/lampp/doc/postgresql/html/populate.html -#opt/lampp/doc/postgresql/html/postmaster-shutdown.html -#opt/lampp/doc/postgresql/html/postmaster-start.html -#opt/lampp/doc/postgresql/html/preface.html -#opt/lampp/doc/postgresql/html/privileges.html -#opt/lampp/doc/postgresql/html/protocol-changes.html -#opt/lampp/doc/postgresql/html/protocol-error-fields.html -#opt/lampp/doc/postgresql/html/protocol-flow.html -#opt/lampp/doc/postgresql/html/protocol-message-formats.html -#opt/lampp/doc/postgresql/html/protocol-message-types.html -#opt/lampp/doc/postgresql/html/protocol.html -#opt/lampp/doc/postgresql/html/queries-limit.html -#opt/lampp/doc/postgresql/html/queries-order.html -#opt/lampp/doc/postgresql/html/queries-select-lists.html -#opt/lampp/doc/postgresql/html/queries-table-expressions.html -#opt/lampp/doc/postgresql/html/queries-union.html -#opt/lampp/doc/postgresql/html/queries.html -#opt/lampp/doc/postgresql/html/reference-client.html -#opt/lampp/doc/postgresql/html/reference-server.html -#opt/lampp/doc/postgresql/html/reference.html -#opt/lampp/doc/postgresql/html/regress-evaluation.html -#opt/lampp/doc/postgresql/html/regress-variant.html -#opt/lampp/doc/postgresql/html/regress.html -#opt/lampp/doc/postgresql/html/release-0-01.html -#opt/lampp/doc/postgresql/html/release-0-02.html -#opt/lampp/doc/postgresql/html/release-0-03.html -#opt/lampp/doc/postgresql/html/release-1-0.html -#opt/lampp/doc/postgresql/html/release-1-01.html -#opt/lampp/doc/postgresql/html/release-1-02.html -#opt/lampp/doc/postgresql/html/release-1-09.html -#opt/lampp/doc/postgresql/html/release-6-0.html -#opt/lampp/doc/postgresql/html/release-6-1-1.html -#opt/lampp/doc/postgresql/html/release-6-1.html -#opt/lampp/doc/postgresql/html/release-6-2-1.html -#opt/lampp/doc/postgresql/html/release-6-2.html -#opt/lampp/doc/postgresql/html/release-6-3-1.html -#opt/lampp/doc/postgresql/html/release-6-3-2.html -#opt/lampp/doc/postgresql/html/release-6-3.html -#opt/lampp/doc/postgresql/html/release-6-4-1.html -#opt/lampp/doc/postgresql/html/release-6-4-2.html -#opt/lampp/doc/postgresql/html/release-6-4.html -#opt/lampp/doc/postgresql/html/release-6-5-1.html -#opt/lampp/doc/postgresql/html/release-6-5-2.html -#opt/lampp/doc/postgresql/html/release-6-5-3.html -#opt/lampp/doc/postgresql/html/release-6-5.html -#opt/lampp/doc/postgresql/html/release-7-0-1.html -#opt/lampp/doc/postgresql/html/release-7-0-2.html -#opt/lampp/doc/postgresql/html/release-7-0-3.html -#opt/lampp/doc/postgresql/html/release-7-0.html -#opt/lampp/doc/postgresql/html/release-7-1-1.html -#opt/lampp/doc/postgresql/html/release-7-1-2.html -#opt/lampp/doc/postgresql/html/release-7-1-3.html -#opt/lampp/doc/postgresql/html/release-7-1.html -#opt/lampp/doc/postgresql/html/release-7-2-1.html -#opt/lampp/doc/postgresql/html/release-7-2-2.html -#opt/lampp/doc/postgresql/html/release-7-2-3.html -#opt/lampp/doc/postgresql/html/release-7-2-4.html -#opt/lampp/doc/postgresql/html/release-7-2-5.html -#opt/lampp/doc/postgresql/html/release-7-2-6.html -#opt/lampp/doc/postgresql/html/release-7-2-7.html -#opt/lampp/doc/postgresql/html/release-7-2-8.html -#opt/lampp/doc/postgresql/html/release-7-2.html -#opt/lampp/doc/postgresql/html/release-7-3-1.html -#opt/lampp/doc/postgresql/html/release-7-3-10.html -#opt/lampp/doc/postgresql/html/release-7-3-11.html -#opt/lampp/doc/postgresql/html/release-7-3-2.html -#opt/lampp/doc/postgresql/html/release-7-3-3.html -#opt/lampp/doc/postgresql/html/release-7-3-4.html -#opt/lampp/doc/postgresql/html/release-7-3-5.html -#opt/lampp/doc/postgresql/html/release-7-3-6.html -#opt/lampp/doc/postgresql/html/release-7-3-7.html -#opt/lampp/doc/postgresql/html/release-7-3-8.html -#opt/lampp/doc/postgresql/html/release-7-3-9.html -#opt/lampp/doc/postgresql/html/release-7-3.html -#opt/lampp/doc/postgresql/html/release-7-4-1.html -#opt/lampp/doc/postgresql/html/release-7-4-2.html -#opt/lampp/doc/postgresql/html/release-7-4-3.html -#opt/lampp/doc/postgresql/html/release-7-4-4.html -#opt/lampp/doc/postgresql/html/release-7-4-5.html -#opt/lampp/doc/postgresql/html/release-7-4-6.html -#opt/lampp/doc/postgresql/html/release-7-4-7.html -#opt/lampp/doc/postgresql/html/release-7-4-8.html -#opt/lampp/doc/postgresql/html/release-7-4-9.html -#opt/lampp/doc/postgresql/html/release-7-4.html -#opt/lampp/doc/postgresql/html/release-8-0-1.html -#opt/lampp/doc/postgresql/html/release-8-0-2.html -#opt/lampp/doc/postgresql/html/release-8-0-3.html -#opt/lampp/doc/postgresql/html/release-8-0-4.html -#opt/lampp/doc/postgresql/html/release-8-0.html -#opt/lampp/doc/postgresql/html/release.html -#opt/lampp/doc/postgresql/html/resources.html -#opt/lampp/doc/postgresql/html/role-attributes.html -#opt/lampp/doc/postgresql/html/role-membership.html -#opt/lampp/doc/postgresql/html/routine-reindex.html -#opt/lampp/doc/postgresql/html/rowtypes.html -#opt/lampp/doc/postgresql/html/rule-system.html -#opt/lampp/doc/postgresql/html/rules-privileges.html -#opt/lampp/doc/postgresql/html/rules-status.html -#opt/lampp/doc/postgresql/html/rules-triggers.html -#opt/lampp/doc/postgresql/html/rules-update.html -#opt/lampp/doc/postgresql/html/rules-views.html -#opt/lampp/doc/postgresql/html/rules.html -#opt/lampp/doc/postgresql/html/runtime-config-autovacuum.html -#opt/lampp/doc/postgresql/html/runtime-config-client.html -#opt/lampp/doc/postgresql/html/runtime-config-compatible.html -#opt/lampp/doc/postgresql/html/runtime-config-connection.html -#opt/lampp/doc/postgresql/html/runtime-config-custom.html -#opt/lampp/doc/postgresql/html/runtime-config-developer.html -#opt/lampp/doc/postgresql/html/runtime-config-file-locations.html -#opt/lampp/doc/postgresql/html/runtime-config-locks.html -#opt/lampp/doc/postgresql/html/runtime-config-logging.html -#opt/lampp/doc/postgresql/html/runtime-config-preset.html -#opt/lampp/doc/postgresql/html/runtime-config-query.html -#opt/lampp/doc/postgresql/html/runtime-config-resource.html -#opt/lampp/doc/postgresql/html/runtime-config-short.html -#opt/lampp/doc/postgresql/html/runtime-config-statistics.html -#opt/lampp/doc/postgresql/html/runtime-config-wal.html -#opt/lampp/doc/postgresql/html/runtime-config.html -#opt/lampp/doc/postgresql/html/runtime.html -#opt/lampp/doc/postgresql/html/server-programming.html -#opt/lampp/doc/postgresql/html/source.html -#opt/lampp/doc/postgresql/html/spi-examples.html -#opt/lampp/doc/postgresql/html/spi-interface-support.html -#opt/lampp/doc/postgresql/html/spi-memory.html -#opt/lampp/doc/postgresql/html/spi-realloc.html -#opt/lampp/doc/postgresql/html/spi-spi-connect.html -#opt/lampp/doc/postgresql/html/spi-spi-copytuple.html -#opt/lampp/doc/postgresql/html/spi-spi-cursor-close.html -#opt/lampp/doc/postgresql/html/spi-spi-cursor-fetch.html -#opt/lampp/doc/postgresql/html/spi-spi-cursor-find.html -#opt/lampp/doc/postgresql/html/spi-spi-cursor-move.html -#opt/lampp/doc/postgresql/html/spi-spi-cursor-open.html -#opt/lampp/doc/postgresql/html/spi-spi-exec.html -#opt/lampp/doc/postgresql/html/spi-spi-execp.html -#opt/lampp/doc/postgresql/html/spi-spi-execute-plan.html -#opt/lampp/doc/postgresql/html/spi-spi-execute.html -#opt/lampp/doc/postgresql/html/spi-spi-finish.html -#opt/lampp/doc/postgresql/html/spi-spi-fname.html -#opt/lampp/doc/postgresql/html/spi-spi-fnumber.html -#opt/lampp/doc/postgresql/html/spi-spi-freeplan.html -#opt/lampp/doc/postgresql/html/spi-spi-freetuple.html -#opt/lampp/doc/postgresql/html/spi-spi-freetupletable.html -#opt/lampp/doc/postgresql/html/spi-spi-getargcount.html -#opt/lampp/doc/postgresql/html/spi-spi-getargtypeid.html -#opt/lampp/doc/postgresql/html/spi-spi-getbinval.html -#opt/lampp/doc/postgresql/html/spi-spi-getnspname.html -#opt/lampp/doc/postgresql/html/spi-spi-getrelname.html -#opt/lampp/doc/postgresql/html/spi-spi-gettype.html -#opt/lampp/doc/postgresql/html/spi-spi-gettypeid.html -#opt/lampp/doc/postgresql/html/spi-spi-getvalue.html -#opt/lampp/doc/postgresql/html/spi-spi-is-cursor-plan.html -#opt/lampp/doc/postgresql/html/spi-spi-modifytuple.html -#opt/lampp/doc/postgresql/html/spi-spi-palloc.html -#opt/lampp/doc/postgresql/html/spi-spi-pfree.html -#opt/lampp/doc/postgresql/html/spi-spi-pop.html -#opt/lampp/doc/postgresql/html/spi-spi-prepare.html -#opt/lampp/doc/postgresql/html/spi-spi-push.html -#opt/lampp/doc/postgresql/html/spi-spi-returntuple.html -#opt/lampp/doc/postgresql/html/spi-spi-saveplan.html -#opt/lampp/doc/postgresql/html/spi-visibility.html -#opt/lampp/doc/postgresql/html/spi.html -#opt/lampp/doc/postgresql/html/sql-abort.html -#opt/lampp/doc/postgresql/html/sql-alteraggregate.html -#opt/lampp/doc/postgresql/html/sql-alterconversion.html -#opt/lampp/doc/postgresql/html/sql-alterdatabase.html -#opt/lampp/doc/postgresql/html/sql-alterdomain.html -#opt/lampp/doc/postgresql/html/sql-alterfunction.html -#opt/lampp/doc/postgresql/html/sql-altergroup.html -#opt/lampp/doc/postgresql/html/sql-alterindex.html -#opt/lampp/doc/postgresql/html/sql-alterlanguage.html -#opt/lampp/doc/postgresql/html/sql-alteropclass.html -#opt/lampp/doc/postgresql/html/sql-alteroperator.html -#opt/lampp/doc/postgresql/html/sql-alterrole.html -#opt/lampp/doc/postgresql/html/sql-alterschema.html -#opt/lampp/doc/postgresql/html/sql-altersequence.html -#opt/lampp/doc/postgresql/html/sql-altertable.html -#opt/lampp/doc/postgresql/html/sql-altertablespace.html -#opt/lampp/doc/postgresql/html/sql-altertrigger.html -#opt/lampp/doc/postgresql/html/sql-altertype.html -#opt/lampp/doc/postgresql/html/sql-alteruser.html -#opt/lampp/doc/postgresql/html/sql-analyze.html -#opt/lampp/doc/postgresql/html/sql-begin.html -#opt/lampp/doc/postgresql/html/sql-checkpoint.html -#opt/lampp/doc/postgresql/html/sql-close.html -#opt/lampp/doc/postgresql/html/sql-cluster.html -#opt/lampp/doc/postgresql/html/sql-commands.html -#opt/lampp/doc/postgresql/html/sql-comment.html -#opt/lampp/doc/postgresql/html/sql-commit-prepared.html -#opt/lampp/doc/postgresql/html/sql-commit.html -#opt/lampp/doc/postgresql/html/sql-copy.html -#opt/lampp/doc/postgresql/html/sql-createaggregate.html -#opt/lampp/doc/postgresql/html/sql-createcast.html -#opt/lampp/doc/postgresql/html/sql-createconstraint.html -#opt/lampp/doc/postgresql/html/sql-createconversion.html -#opt/lampp/doc/postgresql/html/sql-createdatabase.html -#opt/lampp/doc/postgresql/html/sql-createdomain.html -#opt/lampp/doc/postgresql/html/sql-createfunction.html -#opt/lampp/doc/postgresql/html/sql-creategroup.html -#opt/lampp/doc/postgresql/html/sql-createindex.html -#opt/lampp/doc/postgresql/html/sql-createlanguage.html -#opt/lampp/doc/postgresql/html/sql-createopclass.html -#opt/lampp/doc/postgresql/html/sql-createoperator.html -#opt/lampp/doc/postgresql/html/sql-createrole.html -#opt/lampp/doc/postgresql/html/sql-createrule.html -#opt/lampp/doc/postgresql/html/sql-createschema.html -#opt/lampp/doc/postgresql/html/sql-createsequence.html -#opt/lampp/doc/postgresql/html/sql-createtable.html -#opt/lampp/doc/postgresql/html/sql-createtableas.html -#opt/lampp/doc/postgresql/html/sql-createtablespace.html -#opt/lampp/doc/postgresql/html/sql-createtrigger.html -#opt/lampp/doc/postgresql/html/sql-createtype.html -#opt/lampp/doc/postgresql/html/sql-createuser.html -#opt/lampp/doc/postgresql/html/sql-createview.html -#opt/lampp/doc/postgresql/html/sql-deallocate.html -#opt/lampp/doc/postgresql/html/sql-declare.html -#opt/lampp/doc/postgresql/html/sql-delete.html -#opt/lampp/doc/postgresql/html/sql-dropaggregate.html -#opt/lampp/doc/postgresql/html/sql-dropcast.html -#opt/lampp/doc/postgresql/html/sql-dropconversion.html -#opt/lampp/doc/postgresql/html/sql-dropdatabase.html -#opt/lampp/doc/postgresql/html/sql-dropdomain.html -#opt/lampp/doc/postgresql/html/sql-dropfunction.html -#opt/lampp/doc/postgresql/html/sql-dropgroup.html -#opt/lampp/doc/postgresql/html/sql-dropindex.html -#opt/lampp/doc/postgresql/html/sql-droplanguage.html -#opt/lampp/doc/postgresql/html/sql-dropopclass.html -#opt/lampp/doc/postgresql/html/sql-dropoperator.html -#opt/lampp/doc/postgresql/html/sql-droprole.html -#opt/lampp/doc/postgresql/html/sql-droprule.html -#opt/lampp/doc/postgresql/html/sql-dropschema.html -#opt/lampp/doc/postgresql/html/sql-dropsequence.html -#opt/lampp/doc/postgresql/html/sql-droptable.html -#opt/lampp/doc/postgresql/html/sql-droptablespace.html -#opt/lampp/doc/postgresql/html/sql-droptrigger.html -#opt/lampp/doc/postgresql/html/sql-droptype.html -#opt/lampp/doc/postgresql/html/sql-dropuser.html -#opt/lampp/doc/postgresql/html/sql-dropview.html -#opt/lampp/doc/postgresql/html/sql-end.html -#opt/lampp/doc/postgresql/html/sql-execute.html -#opt/lampp/doc/postgresql/html/sql-explain.html -#opt/lampp/doc/postgresql/html/sql-expressions.html -#opt/lampp/doc/postgresql/html/sql-fetch.html -#opt/lampp/doc/postgresql/html/sql-grant.html -#opt/lampp/doc/postgresql/html/sql-insert.html -#opt/lampp/doc/postgresql/html/sql-keywords-appendix.html -#opt/lampp/doc/postgresql/html/sql-listen.html -#opt/lampp/doc/postgresql/html/sql-load.html -#opt/lampp/doc/postgresql/html/sql-lock.html -#opt/lampp/doc/postgresql/html/sql-move.html -#opt/lampp/doc/postgresql/html/sql-notify.html -#opt/lampp/doc/postgresql/html/sql-prepare-transaction.html -#opt/lampp/doc/postgresql/html/sql-prepare.html -#opt/lampp/doc/postgresql/html/sql-reindex.html -#opt/lampp/doc/postgresql/html/sql-release-savepoint.html -#opt/lampp/doc/postgresql/html/sql-reset.html -#opt/lampp/doc/postgresql/html/sql-revoke.html -#opt/lampp/doc/postgresql/html/sql-rollback-prepared.html -#opt/lampp/doc/postgresql/html/sql-rollback-to.html -#opt/lampp/doc/postgresql/html/sql-rollback.html -#opt/lampp/doc/postgresql/html/sql-savepoint.html -#opt/lampp/doc/postgresql/html/sql-select.html -#opt/lampp/doc/postgresql/html/sql-selectinto.html -#opt/lampp/doc/postgresql/html/sql-set-constraints.html -#opt/lampp/doc/postgresql/html/sql-set-role.html -#opt/lampp/doc/postgresql/html/sql-set-session-authorization.html -#opt/lampp/doc/postgresql/html/sql-set-transaction.html -#opt/lampp/doc/postgresql/html/sql-set.html -#opt/lampp/doc/postgresql/html/sql-show.html -#opt/lampp/doc/postgresql/html/sql-start-transaction.html -#opt/lampp/doc/postgresql/html/sql-syntax.html -#opt/lampp/doc/postgresql/html/sql-truncate.html -#opt/lampp/doc/postgresql/html/sql-unlisten.html -#opt/lampp/doc/postgresql/html/sql-update.html -#opt/lampp/doc/postgresql/html/sql-vacuum.html -#opt/lampp/doc/postgresql/html/sql.html -#opt/lampp/doc/postgresql/html/ssh-tunnels.html -#opt/lampp/doc/postgresql/html/ssl-tcp.html -#opt/lampp/doc/postgresql/html/storage-page-layout.html -#opt/lampp/doc/postgresql/html/storage-toast.html -#opt/lampp/doc/postgresql/html/storage.html -#opt/lampp/doc/postgresql/html/stylesheet.css -#opt/lampp/doc/postgresql/html/supported-platforms.html -#opt/lampp/doc/postgresql/html/transaction-iso.html -#opt/lampp/doc/postgresql/html/trigger-datachanges.html -#opt/lampp/doc/postgresql/html/trigger-example.html -#opt/lampp/doc/postgresql/html/trigger-interface.html -#opt/lampp/doc/postgresql/html/triggers.html -#opt/lampp/doc/postgresql/html/tutorial-accessdb.html -#opt/lampp/doc/postgresql/html/tutorial-advanced.html -#opt/lampp/doc/postgresql/html/tutorial-agg.html -#opt/lampp/doc/postgresql/html/tutorial-arch.html -#opt/lampp/doc/postgresql/html/tutorial-concepts.html -#opt/lampp/doc/postgresql/html/tutorial-conclusion.html -#opt/lampp/doc/postgresql/html/tutorial-createdb.html -#opt/lampp/doc/postgresql/html/tutorial-delete.html -#opt/lampp/doc/postgresql/html/tutorial-fk.html -#opt/lampp/doc/postgresql/html/tutorial-inheritance.html -#opt/lampp/doc/postgresql/html/tutorial-join.html -#opt/lampp/doc/postgresql/html/tutorial-populate.html -#opt/lampp/doc/postgresql/html/tutorial-select.html -#opt/lampp/doc/postgresql/html/tutorial-sql.html -#opt/lampp/doc/postgresql/html/tutorial-start.html -#opt/lampp/doc/postgresql/html/tutorial-table.html -#opt/lampp/doc/postgresql/html/tutorial-transactions.html -#opt/lampp/doc/postgresql/html/tutorial-update.html -#opt/lampp/doc/postgresql/html/tutorial-views.html -#opt/lampp/doc/postgresql/html/tutorial.html -#opt/lampp/doc/postgresql/html/typeconv-func.html -#opt/lampp/doc/postgresql/html/typeconv-oper.html -#opt/lampp/doc/postgresql/html/typeconv-query.html -#opt/lampp/doc/postgresql/html/typeconv-union-case.html -#opt/lampp/doc/postgresql/html/typeconv.html -#opt/lampp/doc/postgresql/html/unsupported-features-sql-standard.html -#opt/lampp/doc/postgresql/html/user-manag.html -#opt/lampp/doc/postgresql/html/view-pg-group.html -#opt/lampp/doc/postgresql/html/view-pg-indexes.html -#opt/lampp/doc/postgresql/html/view-pg-locks.html -#opt/lampp/doc/postgresql/html/view-pg-prepared-xacts.html -#opt/lampp/doc/postgresql/html/view-pg-roles.html -#opt/lampp/doc/postgresql/html/view-pg-rules.html -#opt/lampp/doc/postgresql/html/view-pg-settings.html -#opt/lampp/doc/postgresql/html/view-pg-shadow.html -#opt/lampp/doc/postgresql/html/view-pg-stats.html -#opt/lampp/doc/postgresql/html/view-pg-tables.html -#opt/lampp/doc/postgresql/html/view-pg-user.html -#opt/lampp/doc/postgresql/html/view-pg-views.html -#opt/lampp/doc/postgresql/html/views-overview.html -#opt/lampp/doc/postgresql/html/wal-configuration.html -#opt/lampp/doc/postgresql/html/wal-internals.html -#opt/lampp/doc/postgresql/html/wal-intro.html -#opt/lampp/doc/postgresql/html/wal.html -#opt/lampp/doc/postgresql/html/xaggr.html -#opt/lampp/doc/postgresql/html/xfunc-c.html -#opt/lampp/doc/postgresql/html/xfunc-internal.html -#opt/lampp/doc/postgresql/html/xfunc-overload.html -#opt/lampp/doc/postgresql/html/xfunc-pl.html -#opt/lampp/doc/postgresql/html/xfunc-sql.html -#opt/lampp/doc/postgresql/html/xfunc-volatility.html -#opt/lampp/doc/postgresql/html/xfunc.html -#opt/lampp/doc/postgresql/html/xindex.html -#opt/lampp/doc/postgresql/html/xoper-optimization.html -#opt/lampp/doc/postgresql/html/xoper.html -#opt/lampp/doc/postgresql/html/xplang.html -#opt/lampp/doc/postgresql/html/xtypes.html -opt/lampp/error -opt/lampp/error/HTTP_BAD_GATEWAY.html.var -opt/lampp/error/HTTP_BAD_REQUEST.html.var -opt/lampp/error/HTTP_FORBIDDEN.html.var -opt/lampp/error/HTTP_GONE.html.var -opt/lampp/error/HTTP_INTERNAL_SERVER_ERROR.html.var -opt/lampp/error/HTTP_LENGTH_REQUIRED.html.var -opt/lampp/error/HTTP_METHOD_NOT_ALLOWED.html.var -opt/lampp/error/HTTP_NOT_FOUND.html.var -opt/lampp/error/HTTP_NOT_IMPLEMENTED.html.var -opt/lampp/error/HTTP_PRECONDITION_FAILED.html.var -opt/lampp/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var -opt/lampp/error/HTTP_REQUEST_TIME_OUT.html.var -opt/lampp/error/HTTP_REQUEST_URI_TOO_LARGE.html.var -opt/lampp/error/HTTP_SERVICE_UNAVAILABLE.html.var -opt/lampp/error/HTTP_UNAUTHORIZED.html.var -opt/lampp/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var -opt/lampp/error/HTTP_VARIANT_ALSO_VARIES.html.var -opt/lampp/error/README -opt/lampp/error/contact.html.var -opt/lampp/error/include -opt/lampp/error/include/bottom.html -opt/lampp/error/include/spacer.html -opt/lampp/error/include/top.html -opt/lampp/etc -opt/lampp/etc/ddclient -opt/lampp/etc/ddclient/ddclient.conf -opt/lampp/etc/extra -opt/lampp/etc/extra/httpd-autoindex.conf -opt/lampp/etc/extra/httpd-dav.conf -opt/lampp/etc/extra/httpd-default.conf -opt/lampp/etc/extra/httpd-info.conf -opt/lampp/etc/extra/httpd-languages.conf -opt/lampp/etc/extra/httpd-manual.conf -opt/lampp/etc/extra/httpd-mpm.conf -opt/lampp/etc/extra/httpd-multilang-errordoc.conf -opt/lampp/etc/extra/httpd-ssl.conf -opt/lampp/etc/extra/httpd-userdir.conf -opt/lampp/etc/extra/httpd-vhosts.conf -opt/lampp/etc/extra/httpd-xampp.conf -opt/lampp/etc/freetds.conf -opt/lampp/etc/httpd.conf -opt/lampp/etc/httpd.conf.bak -opt/lampp/etc/lampp -opt/lampp/etc/lampp/selinux -opt/lampp/etc/lampp/startftp -opt/lampp/etc/lampp/startssl -opt/lampp/etc/locales.conf -opt/lampp/etc/magic -opt/lampp/etc/mime.types -opt/lampp/etc/my.cnf -opt/lampp/etc/old -opt/lampp/etc/old/httpd.conf-pre-1.5.1 -opt/lampp/etc/old/my.cnf-pre-1.5 -opt/lampp/etc/old/ssl.conf-pre-1.5.1 -opt/lampp/etc/openldap -opt/lampp/etc/openldap/ldap.conf -opt/lampp/etc/openldap/ldap.conf.default -opt/lampp/etc/openssl.cnf -opt/lampp/etc/original -opt/lampp/etc/original/extra -opt/lampp/etc/original/extra/httpd-autoindex.conf -opt/lampp/etc/original/extra/httpd-dav.conf -opt/lampp/etc/original/extra/httpd-default.conf -opt/lampp/etc/original/extra/httpd-info.conf -opt/lampp/etc/original/extra/httpd-languages.conf -opt/lampp/etc/original/extra/httpd-manual.conf -opt/lampp/etc/original/extra/httpd-mpm.conf -opt/lampp/etc/original/extra/httpd-multilang-errordoc.conf -opt/lampp/etc/original/extra/httpd-ssl.conf -opt/lampp/etc/original/extra/httpd-userdir.conf -opt/lampp/etc/original/extra/httpd-vhosts.conf -opt/lampp/etc/original/httpd.conf -opt/lampp/etc/pear.conf -opt/lampp/etc/php.ini -opt/lampp/etc/pool.conf -opt/lampp/etc/proftpd.conf -opt/lampp/etc/python.conf -opt/lampp/etc/ssl.crt -opt/lampp/etc/ssl.crt/server.crt -opt/lampp/etc/ssl.key -opt/lampp/etc/ssl.key/server.key -opt/lampp/etc/webalizer.conf -opt/lampp/etc/webalizer.conf.sample -opt/lampp/htdocs -opt/lampp/htdocs/index.html -opt/lampp/htdocs/python -opt/lampp/htdocs/python/python.py -opt/lampp/htdocs/webalizer -opt/lampp/htdocs/xampp -opt/lampp/htdocs/xampp/.version -opt/lampp/htdocs/xampp/AnkeCalligraph.TTF -opt/lampp/htdocs/xampp/AnkeCalligraph.fdb -opt/lampp/htdocs/xampp/biorhythm.php -opt/lampp/htdocs/xampp/cds-fpdf.php -opt/lampp/htdocs/xampp/cds.php -opt/lampp/htdocs/xampp/cgi.cgi -opt/lampp/htdocs/xampp/charset.php -opt/lampp/htdocs/xampp/components.php -opt/lampp/htdocs/xampp/contrib -opt/lampp/htdocs/xampp/contrib/BabelSans-B.fdb -opt/lampp/htdocs/xampp/contrib/cds.xml -opt/lampp/htdocs/xampp/contrib/dom.php -opt/lampp/htdocs/xampp/contrib/interbase.php -opt/lampp/htdocs/xampp/contrib/interbase.pl -opt/lampp/htdocs/xampp/contrib/mingstats.html -opt/lampp/htdocs/xampp/contrib/mingstats_swf.php -opt/lampp/htdocs/xampp/contrib/mysql.php -opt/lampp/htdocs/xampp/contrib/mysql.pl -opt/lampp/htdocs/xampp/contrib/oracle.php -opt/lampp/htdocs/xampp/contrib/oracle.pl -opt/lampp/htdocs/xampp/contrib/postgresql.php -opt/lampp/htdocs/xampp/contrib/postgresql.pl -opt/lampp/htdocs/xampp/contrib/sax.php -opt/lampp/htdocs/xampp/contrib/soap.php -opt/lampp/htdocs/xampp/contrib/sql2xml.php -opt/lampp/htdocs/xampp/contrib/sqlite.php -opt/lampp/htdocs/xampp/contrib/sqlite.pl -opt/lampp/htdocs/xampp/contrib/testperldbi.pl -opt/lampp/htdocs/xampp/contrib/xmlrss.php -opt/lampp/htdocs/xampp/guestbook-de.pl -opt/lampp/htdocs/xampp/guestbook-en.pl -opt/lampp/htdocs/xampp/guestbook-es.pl -opt/lampp/htdocs/xampp/guestbook-fr.pl -opt/lampp/htdocs/xampp/guestbook-it.pl -opt/lampp/htdocs/xampp/guestbook-nl.pl -opt/lampp/htdocs/xampp/guestbook-no.pl -opt/lampp/htdocs/xampp/guestbook-pl.pl -opt/lampp/htdocs/xampp/guestbook-pt_br.pl -opt/lampp/htdocs/xampp/guestbook-zh.pl -opt/lampp/htdocs/xampp/guestbook.dat -opt/lampp/htdocs/xampp/head.php -opt/lampp/htdocs/xampp/iart.php -opt/lampp/htdocs/xampp/img -opt/lampp/htdocs/xampp/img/apachefriends.gif -opt/lampp/htdocs/xampp/img/blank.gif -opt/lampp/htdocs/xampp/img/head-for.gif -opt/lampp/htdocs/xampp/img/head-fuer.gif -opt/lampp/htdocs/xampp/img/head-linux.gif -opt/lampp/htdocs/xampp/img/head-solaris.gif -opt/lampp/htdocs/xampp/img/head-windows.gif -opt/lampp/htdocs/xampp/img/head-xampp.gif -opt/lampp/htdocs/xampp/img/lb.gif -opt/lampp/htdocs/xampp/img/logo-big.gif -opt/lampp/htdocs/xampp/img/logo-small.gif -opt/lampp/htdocs/xampp/img/logo-small.jpg -opt/lampp/htdocs/xampp/img/lt.gif -opt/lampp/htdocs/xampp/img/new.png -opt/lampp/htdocs/xampp/img/rb.gif -opt/lampp/htdocs/xampp/img/rt.gif -opt/lampp/htdocs/xampp/img/signature-kay.gif -opt/lampp/htdocs/xampp/img/signature-oswald.gif -opt/lampp/htdocs/xampp/img/status1.gif -opt/lampp/htdocs/xampp/img/status2.gif -opt/lampp/htdocs/xampp/img/status3.gif -opt/lampp/htdocs/xampp/img/status4.gif -opt/lampp/htdocs/xampp/img/status5.gif -opt/lampp/htdocs/xampp/img/strichel.gif -opt/lampp/htdocs/xampp/img/xampp-logo.jpg -opt/lampp/htdocs/xampp/img/xampp-logo.jpg.org -opt/lampp/htdocs/xampp/index.php -opt/lampp/htdocs/xampp/lang -opt/lampp/htdocs/xampp/lang.php -opt/lampp/htdocs/xampp/lang.tmp -opt/lampp/htdocs/xampp/lang/de.php -opt/lampp/htdocs/xampp/lang/en.php -opt/lampp/htdocs/xampp/lang/es.php -opt/lampp/htdocs/xampp/lang/fr.php -opt/lampp/htdocs/xampp/lang/it.php -opt/lampp/htdocs/xampp/lang/nl.php -opt/lampp/htdocs/xampp/lang/no.php -opt/lampp/htdocs/xampp/lang/pl.php -opt/lampp/htdocs/xampp/lang/pt_br.php -opt/lampp/htdocs/xampp/lang/zh.php -opt/lampp/htdocs/xampp/langsettings.php -opt/lampp/htdocs/xampp/manuals.php -opt/lampp/htdocs/xampp/ming.php -opt/lampp/htdocs/xampp/mingswf.php -opt/lampp/htdocs/xampp/mysql.php -opt/lampp/htdocs/xampp/navi.php -opt/lampp/htdocs/xampp/perl.pl -opt/lampp/htdocs/xampp/phonebook.php -opt/lampp/htdocs/xampp/php.php -opt/lampp/htdocs/xampp/phpinfo.php -opt/lampp/htdocs/xampp/security.php -opt/lampp/htdocs/xampp/showcode.php -opt/lampp/htdocs/xampp/softwarelist.inc -opt/lampp/htdocs/xampp/splash-logo.php -opt/lampp/htdocs/xampp/splash-swf.php -opt/lampp/htdocs/xampp/splash.php -opt/lampp/htdocs/xampp/sqlite -opt/lampp/htdocs/xampp/sqlite/.htaccess -opt/lampp/htdocs/xampp/sqlite/cdcol -opt/lampp/htdocs/xampp/sqlite/phonebook.sqlite -opt/lampp/htdocs/xampp/ssi.inc -opt/lampp/htdocs/xampp/ssi.shtml -opt/lampp/htdocs/xampp/start.php -opt/lampp/htdocs/xampp/status.php -opt/lampp/htdocs/xampp/test.php -opt/lampp/htdocs/xampp/webalizer.php -opt/lampp/htdocs/xampp/xampp.css -opt/lampp/htdocs/xampp/xampp.js -opt/lampp/icons -opt/lampp/icons/README -opt/lampp/icons/a.gif -opt/lampp/icons/a.png -opt/lampp/icons/alert.black.gif -opt/lampp/icons/alert.black.png -opt/lampp/icons/alert.red.gif -opt/lampp/icons/alert.red.png -opt/lampp/icons/apache_pb.gif -opt/lampp/icons/apache_pb.png -opt/lampp/icons/apache_pb2.gif -opt/lampp/icons/apache_pb2.png -opt/lampp/icons/apache_pb2_ani.gif -opt/lampp/icons/back.gif -opt/lampp/icons/back.png -opt/lampp/icons/ball.gray.gif -opt/lampp/icons/ball.gray.png -opt/lampp/icons/ball.red.gif -opt/lampp/icons/ball.red.png -opt/lampp/icons/binary.gif -opt/lampp/icons/binary.png -opt/lampp/icons/binhex.gif -opt/lampp/icons/binhex.png -opt/lampp/icons/blank.gif -opt/lampp/icons/blank.png -opt/lampp/icons/bomb.gif -opt/lampp/icons/bomb.png -opt/lampp/icons/box1.gif -opt/lampp/icons/box1.png -opt/lampp/icons/box2.gif -opt/lampp/icons/box2.png -opt/lampp/icons/broken.gif -opt/lampp/icons/broken.png -opt/lampp/icons/burst.gif -opt/lampp/icons/burst.png -opt/lampp/icons/c.gif -opt/lampp/icons/c.png -opt/lampp/icons/comp.blue.gif -opt/lampp/icons/comp.blue.png -opt/lampp/icons/comp.gray.gif -opt/lampp/icons/comp.gray.png -opt/lampp/icons/compressed.gif -opt/lampp/icons/compressed.png -opt/lampp/icons/continued.gif -opt/lampp/icons/continued.png -opt/lampp/icons/dir.gif -opt/lampp/icons/dir.png -opt/lampp/icons/diskimg.gif -opt/lampp/icons/diskimg.png -opt/lampp/icons/down.gif -opt/lampp/icons/down.png -opt/lampp/icons/dvi.gif -opt/lampp/icons/dvi.png -opt/lampp/icons/f.gif -opt/lampp/icons/f.png -opt/lampp/icons/folder.gif -opt/lampp/icons/folder.open.gif -opt/lampp/icons/folder.open.png -opt/lampp/icons/folder.png -opt/lampp/icons/folder.sec.gif -opt/lampp/icons/folder.sec.png -opt/lampp/icons/forward.gif -opt/lampp/icons/forward.png -opt/lampp/icons/generic.gif -opt/lampp/icons/generic.png -opt/lampp/icons/generic.red.gif -opt/lampp/icons/generic.red.png -opt/lampp/icons/generic.sec.gif -opt/lampp/icons/generic.sec.png -opt/lampp/icons/hand.right.gif -opt/lampp/icons/hand.right.png -opt/lampp/icons/hand.up.gif -opt/lampp/icons/hand.up.png -opt/lampp/icons/icon.sheet.gif -opt/lampp/icons/icon.sheet.png -opt/lampp/icons/image1.gif -opt/lampp/icons/image1.png -opt/lampp/icons/image2.gif -opt/lampp/icons/image2.png -opt/lampp/icons/image3.gif -opt/lampp/icons/image3.png -opt/lampp/icons/index.gif -opt/lampp/icons/index.png -opt/lampp/icons/layout.gif -opt/lampp/icons/layout.png -opt/lampp/icons/left.gif -opt/lampp/icons/left.png -opt/lampp/icons/link.gif -opt/lampp/icons/link.png -opt/lampp/icons/movie.gif -opt/lampp/icons/movie.png -opt/lampp/icons/p.gif -opt/lampp/icons/p.png -opt/lampp/icons/patch.gif -opt/lampp/icons/patch.png -opt/lampp/icons/pdf.gif -opt/lampp/icons/pdf.png -opt/lampp/icons/pie0.gif -opt/lampp/icons/pie0.png -opt/lampp/icons/pie1.gif -opt/lampp/icons/pie1.png -opt/lampp/icons/pie2.gif -opt/lampp/icons/pie2.png -opt/lampp/icons/pie3.gif -opt/lampp/icons/pie3.png -opt/lampp/icons/pie4.gif -opt/lampp/icons/pie4.png -opt/lampp/icons/pie5.gif -opt/lampp/icons/pie5.png -opt/lampp/icons/pie6.gif -opt/lampp/icons/pie6.png -opt/lampp/icons/pie7.gif -opt/lampp/icons/pie7.png -opt/lampp/icons/pie8.gif -opt/lampp/icons/pie8.png -opt/lampp/icons/portal.gif -opt/lampp/icons/portal.png -opt/lampp/icons/ps.gif -opt/lampp/icons/ps.png -opt/lampp/icons/quill.gif -opt/lampp/icons/quill.png -opt/lampp/icons/right.gif -opt/lampp/icons/right.png -opt/lampp/icons/screw1.gif -opt/lampp/icons/screw1.png -opt/lampp/icons/screw2.gif -opt/lampp/icons/screw2.png -opt/lampp/icons/script.gif -opt/lampp/icons/script.png -opt/lampp/icons/small -opt/lampp/icons/small/README.txt -opt/lampp/icons/small/back.gif -opt/lampp/icons/small/back.png -opt/lampp/icons/small/binary.gif -opt/lampp/icons/small/binary.png -opt/lampp/icons/small/binhex.gif -opt/lampp/icons/small/binhex.png -opt/lampp/icons/small/blank.gif -opt/lampp/icons/small/blank.png -opt/lampp/icons/small/broken.gif -opt/lampp/icons/small/broken.png -opt/lampp/icons/small/burst.gif -opt/lampp/icons/small/burst.png -opt/lampp/icons/small/comp1.gif -opt/lampp/icons/small/comp1.png -opt/lampp/icons/small/comp2.gif -opt/lampp/icons/small/comp2.png -opt/lampp/icons/small/compressed.gif -opt/lampp/icons/small/compressed.png -opt/lampp/icons/small/continued.gif -opt/lampp/icons/small/continued.png -opt/lampp/icons/small/dir.gif -opt/lampp/icons/small/dir.png -opt/lampp/icons/small/dir2.gif -opt/lampp/icons/small/dir2.png -opt/lampp/icons/small/doc.gif -opt/lampp/icons/small/doc.png -opt/lampp/icons/small/forward.gif -opt/lampp/icons/small/forward.png -opt/lampp/icons/small/generic.gif -opt/lampp/icons/small/generic.png -opt/lampp/icons/small/generic2.gif -opt/lampp/icons/small/generic2.png -opt/lampp/icons/small/generic3.gif -opt/lampp/icons/small/generic3.png -opt/lampp/icons/small/image.gif -opt/lampp/icons/small/image.png -opt/lampp/icons/small/image2.gif -opt/lampp/icons/small/image2.png -opt/lampp/icons/small/index.gif -opt/lampp/icons/small/index.png -opt/lampp/icons/small/key.gif -opt/lampp/icons/small/key.png -opt/lampp/icons/small/movie.gif -opt/lampp/icons/small/movie.png -opt/lampp/icons/small/patch.gif -opt/lampp/icons/small/patch.png -opt/lampp/icons/small/ps.gif -opt/lampp/icons/small/ps.png -opt/lampp/icons/small/rainbow.gif -opt/lampp/icons/small/rainbow.png -opt/lampp/icons/small/sound.gif -opt/lampp/icons/small/sound.png -opt/lampp/icons/small/sound2.gif -opt/lampp/icons/small/sound2.png -opt/lampp/icons/small/tar.gif -opt/lampp/icons/small/tar.png -opt/lampp/icons/small/text.gif -opt/lampp/icons/small/text.png -opt/lampp/icons/small/transfer.gif -opt/lampp/icons/small/transfer.png -opt/lampp/icons/small/unknown.gif -opt/lampp/icons/small/unknown.png -opt/lampp/icons/small/uu.gif -opt/lampp/icons/small/uu.png -opt/lampp/icons/sound1.gif -opt/lampp/icons/sound1.png -opt/lampp/icons/sound2.gif -opt/lampp/icons/sound2.png -opt/lampp/icons/sphere1.gif -opt/lampp/icons/sphere1.png -opt/lampp/icons/sphere2.gif -opt/lampp/icons/sphere2.png -opt/lampp/icons/tar.gif -opt/lampp/icons/tar.png -opt/lampp/icons/tex.gif -opt/lampp/icons/tex.png -opt/lampp/icons/text.gif -opt/lampp/icons/text.png -opt/lampp/icons/transfer.gif -opt/lampp/icons/transfer.png -opt/lampp/icons/unknown.gif -opt/lampp/icons/unknown.png -opt/lampp/icons/up.gif -opt/lampp/icons/up.png -opt/lampp/icons/uu.gif -opt/lampp/icons/uu.png -opt/lampp/icons/uuencoded.gif -opt/lampp/icons/uuencoded.png -opt/lampp/icons/world1.gif -opt/lampp/icons/world1.png -opt/lampp/icons/world2.gif -opt/lampp/icons/world2.png -#opt/lampp/include -#opt/lampp/include/ap_compat.h -#opt/lampp/include/ap_config.h -#opt/lampp/include/ap_config_auto.h -#opt/lampp/include/ap_config_layout.h -#opt/lampp/include/ap_listen.h -#opt/lampp/include/ap_mmn.h -#opt/lampp/include/ap_mpm.h -#opt/lampp/include/ap_provider.h -#opt/lampp/include/ap_regex.h -#opt/lampp/include/ap_regkey.h -#opt/lampp/include/ap_release.h -#opt/lampp/include/apr.h -#opt/lampp/include/apr_allocator.h -#opt/lampp/include/apr_anylock.h -#opt/lampp/include/apr_atomic.h -#opt/lampp/include/apr_base64.h -#opt/lampp/include/apr_buckets.h -#opt/lampp/include/apr_date.h -#opt/lampp/include/apr_dbd.h -#opt/lampp/include/apr_dbm.h -#opt/lampp/include/apr_dso.h -#opt/lampp/include/apr_env.h -#opt/lampp/include/apr_errno.h -#opt/lampp/include/apr_file_info.h -#opt/lampp/include/apr_file_io.h -#opt/lampp/include/apr_fnmatch.h -#opt/lampp/include/apr_general.h -#opt/lampp/include/apr_getopt.h -#opt/lampp/include/apr_global_mutex.h -#opt/lampp/include/apr_hash.h -#opt/lampp/include/apr_hooks.h -#opt/lampp/include/apr_inherit.h -#opt/lampp/include/apr_ldap.h -#opt/lampp/include/apr_ldap_init.h -#opt/lampp/include/apr_ldap_option.h -#opt/lampp/include/apr_ldap_url.h -#opt/lampp/include/apr_lib.h -#opt/lampp/include/apr_md4.h -#opt/lampp/include/apr_md5.h -#opt/lampp/include/apr_mmap.h -#opt/lampp/include/apr_network_io.h -#opt/lampp/include/apr_optional.h -#opt/lampp/include/apr_optional_hooks.h -#opt/lampp/include/apr_poll.h -#opt/lampp/include/apr_pools.h -#opt/lampp/include/apr_portable.h -#opt/lampp/include/apr_proc_mutex.h -#opt/lampp/include/apr_queue.h -#opt/lampp/include/apr_random.h -#opt/lampp/include/apr_reslist.h -#opt/lampp/include/apr_ring.h -#opt/lampp/include/apr_rmm.h -#opt/lampp/include/apr_sdbm.h -#opt/lampp/include/apr_sha1.h -#opt/lampp/include/apr_shm.h -#opt/lampp/include/apr_signal.h -#opt/lampp/include/apr_strings.h -#opt/lampp/include/apr_strmatch.h -#opt/lampp/include/apr_support.h -#opt/lampp/include/apr_tables.h -#opt/lampp/include/apr_thread_cond.h -#opt/lampp/include/apr_thread_mutex.h -#opt/lampp/include/apr_thread_proc.h -#opt/lampp/include/apr_thread_rwlock.h -#opt/lampp/include/apr_time.h -#opt/lampp/include/apr_uri.h -#opt/lampp/include/apr_user.h -#opt/lampp/include/apr_uuid.h -#opt/lampp/include/apr_version.h -#opt/lampp/include/apr_want.h -#opt/lampp/include/apr_xlate.h -#opt/lampp/include/apr_xml.h -#opt/lampp/include/apreq2 -#opt/lampp/include/apreq2/apreq.h -#opt/lampp/include/apreq2/apreq_cookie.h -#opt/lampp/include/apreq2/apreq_env.h -#opt/lampp/include/apreq2/apreq_error.h -#opt/lampp/include/apreq2/apreq_module.h -#opt/lampp/include/apreq2/apreq_module_apache2.h -#opt/lampp/include/apreq2/apreq_param.h -#opt/lampp/include/apreq2/apreq_params.h -#opt/lampp/include/apreq2/apreq_parser.h -#opt/lampp/include/apreq2/apreq_util.h -#opt/lampp/include/apreq2/apreq_version.h -#opt/lampp/include/apu.h -#opt/lampp/include/apu_version.h -#opt/lampp/include/apu_want.h -#opt/lampp/include/bkpublic.h -#opt/lampp/include/bzlib.h -#opt/lampp/include/c-client -#opt/lampp/include/c-client/c-client.h -#opt/lampp/include/c-client/env.h -#opt/lampp/include/c-client/env_unix.h -#opt/lampp/include/c-client/fs.h -#opt/lampp/include/c-client/ftl.h -#opt/lampp/include/c-client/imap4r1.h -#opt/lampp/include/c-client/linkage.h -#opt/lampp/include/c-client/mail.h -#opt/lampp/include/c-client/misc.h -#opt/lampp/include/c-client/nl.h -#opt/lampp/include/c-client/nntp.h -#opt/lampp/include/c-client/osdep.h -#opt/lampp/include/c-client/rfc822.h -#opt/lampp/include/c-client/smtp.h -#opt/lampp/include/c-client/tcp.h -#opt/lampp/include/common.h -#opt/lampp/include/cspublic.h -#opt/lampp/include/cstypes.h -#opt/lampp/include/ctlib.h -#opt/lampp/include/ctpublic.h -#opt/lampp/include/curl -#opt/lampp/include/curl/curl.h -#opt/lampp/include/curl/curlver.h -#opt/lampp/include/curl/easy.h -#opt/lampp/include/curl/mprintf.h -#opt/lampp/include/curl/multi.h -#opt/lampp/include/curl/stdcheaders.h -#opt/lampp/include/curl/types.h -#opt/lampp/include/cxx_common.h -#opt/lampp/include/cxx_except.h -#opt/lampp/include/dblib.h -#opt/lampp/include/disptmpl.h -#opt/lampp/include/ecpg_informix.h -#opt/lampp/include/ecpgerrno.h -#opt/lampp/include/ecpglib.h -#opt/lampp/include/ecpgtype.h -#opt/lampp/include/expat.h -#opt/lampp/include/freebcp.h -#opt/lampp/include/freetype2 -#opt/lampp/include/freetype2/freetype -#opt/lampp/include/freetype2/freetype/cache -#opt/lampp/include/freetype2/freetype/cache/ftccache.h -#opt/lampp/include/freetype2/freetype/cache/ftccmap.h -#opt/lampp/include/freetype2/freetype/cache/ftcglyph.h -#opt/lampp/include/freetype2/freetype/cache/ftcimage.h -#opt/lampp/include/freetype2/freetype/cache/ftcmanag.h -#opt/lampp/include/freetype2/freetype/cache/ftcsbits.h -#opt/lampp/include/freetype2/freetype/cache/ftlru.h -#opt/lampp/include/freetype2/freetype/config -#opt/lampp/include/freetype2/freetype/config/ftconfig.h -#opt/lampp/include/freetype2/freetype/config/ftheader.h -#opt/lampp/include/freetype2/freetype/config/ftmodule.h -#opt/lampp/include/freetype2/freetype/config/ftoption.h -#opt/lampp/include/freetype2/freetype/config/ftstdlib.h -#opt/lampp/include/freetype2/freetype/freetype.h -#opt/lampp/include/freetype2/freetype/ftbbox.h -#opt/lampp/include/freetype2/freetype/ftbdf.h -#opt/lampp/include/freetype2/freetype/ftcache.h -#opt/lampp/include/freetype2/freetype/ftchapters.h -#opt/lampp/include/freetype2/freetype/fterrdef.h -#opt/lampp/include/freetype2/freetype/fterrors.h -#opt/lampp/include/freetype2/freetype/ftglyph.h -#opt/lampp/include/freetype2/freetype/ftgzip.h -#opt/lampp/include/freetype2/freetype/ftimage.h -#opt/lampp/include/freetype2/freetype/ftincrem.h -#opt/lampp/include/freetype2/freetype/ftlist.h -#opt/lampp/include/freetype2/freetype/ftmac.h -#opt/lampp/include/freetype2/freetype/ftmm.h -#opt/lampp/include/freetype2/freetype/ftmodapi.h -#opt/lampp/include/freetype2/freetype/ftmoderr.h -#opt/lampp/include/freetype2/freetype/ftmodule.h -#opt/lampp/include/freetype2/freetype/ftoutln.h -#opt/lampp/include/freetype2/freetype/ftpfr.h -#opt/lampp/include/freetype2/freetype/ftrender.h -#opt/lampp/include/freetype2/freetype/ftsizes.h -#opt/lampp/include/freetype2/freetype/ftsnames.h -#opt/lampp/include/freetype2/freetype/ftstroke.h -#opt/lampp/include/freetype2/freetype/ftsynth.h -#opt/lampp/include/freetype2/freetype/ftsysio.h -#opt/lampp/include/freetype2/freetype/ftsysmem.h -#opt/lampp/include/freetype2/freetype/ftsystem.h -#opt/lampp/include/freetype2/freetype/fttrigon.h -#opt/lampp/include/freetype2/freetype/fttypes.h -#opt/lampp/include/freetype2/freetype/ftwinfnt.h -#opt/lampp/include/freetype2/freetype/ftxf86.h -#opt/lampp/include/freetype2/freetype/internal -#opt/lampp/include/freetype2/freetype/internal/autohint.h -#opt/lampp/include/freetype2/freetype/internal/cfftypes.h -#opt/lampp/include/freetype2/freetype/internal/fnttypes.h -#opt/lampp/include/freetype2/freetype/internal/ftcalc.h -#opt/lampp/include/freetype2/freetype/internal/ftdebug.h -#opt/lampp/include/freetype2/freetype/internal/ftdriver.h -#opt/lampp/include/freetype2/freetype/internal/ftextend.h -#opt/lampp/include/freetype2/freetype/internal/ftgloadr.h -#opt/lampp/include/freetype2/freetype/internal/ftmemory.h -#opt/lampp/include/freetype2/freetype/internal/ftobjs.h -#opt/lampp/include/freetype2/freetype/internal/ftserv.h -#opt/lampp/include/freetype2/freetype/internal/ftstream.h -#opt/lampp/include/freetype2/freetype/internal/fttrace.h -#opt/lampp/include/freetype2/freetype/internal/internal.h -#opt/lampp/include/freetype2/freetype/internal/pcftypes.h -#opt/lampp/include/freetype2/freetype/internal/psaux.h -#opt/lampp/include/freetype2/freetype/internal/psglobal.h -#opt/lampp/include/freetype2/freetype/internal/pshints.h -#opt/lampp/include/freetype2/freetype/internal/psnames.h -#opt/lampp/include/freetype2/freetype/internal/sfnt.h -#opt/lampp/include/freetype2/freetype/internal/svbdf.h -#opt/lampp/include/freetype2/freetype/internal/svgldict.h -#opt/lampp/include/freetype2/freetype/internal/svmm.h -#opt/lampp/include/freetype2/freetype/internal/svpfr.h -#opt/lampp/include/freetype2/freetype/internal/svpostnm.h -#opt/lampp/include/freetype2/freetype/internal/svpscmap.h -#opt/lampp/include/freetype2/freetype/internal/svpsinfo.h -#opt/lampp/include/freetype2/freetype/internal/svsfnt.h -#opt/lampp/include/freetype2/freetype/internal/svwinfnt.h -#opt/lampp/include/freetype2/freetype/internal/svxf86nm.h -#opt/lampp/include/freetype2/freetype/internal/t1types.h -#opt/lampp/include/freetype2/freetype/internal/tttypes.h -#opt/lampp/include/freetype2/freetype/t1tables.h -#opt/lampp/include/freetype2/freetype/ttnameid.h -#opt/lampp/include/freetype2/freetype/tttables.h -#opt/lampp/include/freetype2/freetype/tttags.h -#opt/lampp/include/freetype2/freetype/ttunpat.h -#opt/lampp/include/ft2build.h -#opt/lampp/include/gd.h -#opt/lampp/include/gd_io.h -#opt/lampp/include/gdbm.h -#opt/lampp/include/gdcache.h -#opt/lampp/include/gdfontg.h -#opt/lampp/include/gdfontl.h -#opt/lampp/include/gdfontmb.h -#opt/lampp/include/gdfonts.h -#opt/lampp/include/gdfontt.h -#opt/lampp/include/http_config.h -#opt/lampp/include/http_connection.h -#opt/lampp/include/http_core.h -#opt/lampp/include/http_log.h -#opt/lampp/include/http_main.h -#opt/lampp/include/http_protocol.h -#opt/lampp/include/http_request.h -#opt/lampp/include/http_vhost.h -#opt/lampp/include/httpd.h -#opt/lampp/include/jconfig.h -#opt/lampp/include/jerror.h -#opt/lampp/include/jisx0208.h -#opt/lampp/include/jmorecfg.h -#opt/lampp/include/jpeglib.h -#opt/lampp/include/lber.h -#opt/lampp/include/lber_types.h -#opt/lampp/include/ldap.h -#opt/lampp/include/ldap_cdefs.h -#opt/lampp/include/ldap_features.h -#opt/lampp/include/ldap_schema.h -#opt/lampp/include/ldap_utf8.h -#opt/lampp/include/libexslt -#opt/lampp/include/libexslt/exslt.h -#opt/lampp/include/libexslt/exsltconfig.h -#opt/lampp/include/libexslt/exsltexports.h -#opt/lampp/include/libintl.h -#opt/lampp/include/libpng -#opt/lampp/include/libpng12 -#opt/lampp/include/libpng12/png.h -#opt/lampp/include/libpng12/pngconf.h -#opt/lampp/include/libpq -#opt/lampp/include/libpq-fe.h -#opt/lampp/include/libpq/libpq-fs.h -#opt/lampp/include/libxml2 -#opt/lampp/include/libxml2/libxml -#opt/lampp/include/libxml2/libxml/DOCBparser.h -#opt/lampp/include/libxml2/libxml/HTMLparser.h -#opt/lampp/include/libxml2/libxml/HTMLtree.h -#opt/lampp/include/libxml2/libxml/SAX.h -#opt/lampp/include/libxml2/libxml/SAX2.h -#opt/lampp/include/libxml2/libxml/c14n.h -#opt/lampp/include/libxml2/libxml/catalog.h -#opt/lampp/include/libxml2/libxml/chvalid.h -#opt/lampp/include/libxml2/libxml/debugXML.h -#opt/lampp/include/libxml2/libxml/dict.h -#opt/lampp/include/libxml2/libxml/encoding.h -#opt/lampp/include/libxml2/libxml/entities.h -#opt/lampp/include/libxml2/libxml/globals.h -#opt/lampp/include/libxml2/libxml/hash.h -#opt/lampp/include/libxml2/libxml/list.h -#opt/lampp/include/libxml2/libxml/nanoftp.h -#opt/lampp/include/libxml2/libxml/nanohttp.h -#opt/lampp/include/libxml2/libxml/parser.h -#opt/lampp/include/libxml2/libxml/parserInternals.h -#opt/lampp/include/libxml2/libxml/pattern.h -#opt/lampp/include/libxml2/libxml/relaxng.h -#opt/lampp/include/libxml2/libxml/schemasInternals.h -#opt/lampp/include/libxml2/libxml/threads.h -#opt/lampp/include/libxml2/libxml/tree.h -#opt/lampp/include/libxml2/libxml/uri.h -#opt/lampp/include/libxml2/libxml/valid.h -#opt/lampp/include/libxml2/libxml/xinclude.h -#opt/lampp/include/libxml2/libxml/xlink.h -#opt/lampp/include/libxml2/libxml/xmlIO.h -#opt/lampp/include/libxml2/libxml/xmlautomata.h -#opt/lampp/include/libxml2/libxml/xmlerror.h -#opt/lampp/include/libxml2/libxml/xmlexports.h -#opt/lampp/include/libxml2/libxml/xmlmemory.h -#opt/lampp/include/libxml2/libxml/xmlreader.h -#opt/lampp/include/libxml2/libxml/xmlregexp.h -#opt/lampp/include/libxml2/libxml/xmlsave.h -#opt/lampp/include/libxml2/libxml/xmlschemas.h -#opt/lampp/include/libxml2/libxml/xmlschemastypes.h -#opt/lampp/include/libxml2/libxml/xmlstring.h -#opt/lampp/include/libxml2/libxml/xmlunicode.h -#opt/lampp/include/libxml2/libxml/xmlversion.h -#opt/lampp/include/libxml2/libxml/xmlwin32version.h -#opt/lampp/include/libxml2/libxml/xmlwriter.h -#opt/lampp/include/libxml2/libxml/xpath.h -#opt/lampp/include/libxml2/libxml/xpathInternals.h -#opt/lampp/include/libxml2/libxml/xpointer.h -#opt/lampp/include/libxslt -#opt/lampp/include/libxslt/attributes.h -#opt/lampp/include/libxslt/documents.h -#opt/lampp/include/libxslt/extensions.h -#opt/lampp/include/libxslt/extra.h -#opt/lampp/include/libxslt/functions.h -#opt/lampp/include/libxslt/imports.h -#opt/lampp/include/libxslt/keys.h -#opt/lampp/include/libxslt/namespaces.h -#opt/lampp/include/libxslt/numbersInternals.h -#opt/lampp/include/libxslt/pattern.h -#opt/lampp/include/libxslt/preproc.h -#opt/lampp/include/libxslt/security.h -#opt/lampp/include/libxslt/templates.h -#opt/lampp/include/libxslt/transform.h -#opt/lampp/include/libxslt/variables.h -#opt/lampp/include/libxslt/xslt.h -#opt/lampp/include/libxslt/xsltInternals.h -#opt/lampp/include/libxslt/xsltconfig.h -#opt/lampp/include/libxslt/xsltexports.h -#opt/lampp/include/libxslt/xsltutils.h -#opt/lampp/include/mcrypt.h -#opt/lampp/include/mhash.h -#opt/lampp/include/ming.h -#opt/lampp/include/ming_config.h -#opt/lampp/include/mingpp.h -#opt/lampp/include/mod_auth.h -#opt/lampp/include/mod_cgi.h -#opt/lampp/include/mod_core.h -#opt/lampp/include/mod_dav.h -#opt/lampp/include/mod_dbd.h -#opt/lampp/include/mod_include.h -#opt/lampp/include/mod_log_config.h -#opt/lampp/include/mod_perl.h -#opt/lampp/include/mod_proxy.h -#opt/lampp/include/mod_ssl.h -#opt/lampp/include/mod_status.h -#opt/lampp/include/modperl_apache_compat.h -#opt/lampp/include/modperl_apache_includes.h -#opt/lampp/include/modperl_apr_compat.h -#opt/lampp/include/modperl_apr_includes.h -#opt/lampp/include/modperl_apr_perlio.h -#opt/lampp/include/modperl_bucket.h -#opt/lampp/include/modperl_callback.h -#opt/lampp/include/modperl_cgi.h -#opt/lampp/include/modperl_cmd.h -#opt/lampp/include/modperl_common_includes.h -#opt/lampp/include/modperl_common_log.h -#opt/lampp/include/modperl_common_types.h -#opt/lampp/include/modperl_common_util.h -#opt/lampp/include/modperl_config.h -#opt/lampp/include/modperl_const.h -#opt/lampp/include/modperl_constants.h -#opt/lampp/include/modperl_debug.h -#opt/lampp/include/modperl_directives.h -#opt/lampp/include/modperl_env.h -#opt/lampp/include/modperl_error.h -#opt/lampp/include/modperl_filter.h -#opt/lampp/include/modperl_flags.h -#opt/lampp/include/modperl_global.h -#opt/lampp/include/modperl_gtop.h -#opt/lampp/include/modperl_handler.h -#opt/lampp/include/modperl_hooks.h -#opt/lampp/include/modperl_interp.h -#opt/lampp/include/modperl_io.h -#opt/lampp/include/modperl_io_apache.h -#opt/lampp/include/modperl_largefiles.h -#opt/lampp/include/modperl_log.h -#opt/lampp/include/modperl_mgv.h -#opt/lampp/include/modperl_module.h -#opt/lampp/include/modperl_options.h -#opt/lampp/include/modperl_pcw.h -#opt/lampp/include/modperl_perl.h -#opt/lampp/include/modperl_perl_global.h -#opt/lampp/include/modperl_perl_includes.h -#opt/lampp/include/modperl_perl_pp.h -#opt/lampp/include/modperl_perl_unembed.h -#opt/lampp/include/modperl_svptr_table.h -#opt/lampp/include/modperl_sys.h -#opt/lampp/include/modperl_time.h -#opt/lampp/include/modperl_tipool.h -#opt/lampp/include/modperl_trace.h -#opt/lampp/include/modperl_types.h -#opt/lampp/include/modperl_util.h -#opt/lampp/include/modperl_xs_sv_convert.h -#opt/lampp/include/modperl_xs_typedefs.h -#opt/lampp/include/modperl_xs_util.h -#opt/lampp/include/mpm.h -#opt/lampp/include/mpm_common.h -#opt/lampp/include/mpm_default.h -#opt/lampp/include/mysql -#opt/lampp/include/mysql/errmsg.h -#opt/lampp/include/mysql/keycache.h -#opt/lampp/include/mysql/m_ctype.h -#opt/lampp/include/mysql/m_string.h -#opt/lampp/include/mysql/my_alloc.h -#opt/lampp/include/mysql/my_config.h -#opt/lampp/include/mysql/my_dbug.h -#opt/lampp/include/mysql/my_dir.h -#opt/lampp/include/mysql/my_getopt.h -#opt/lampp/include/mysql/my_global.h -#opt/lampp/include/mysql/my_list.h -#opt/lampp/include/mysql/my_net.h -#opt/lampp/include/mysql/my_no_pthread.h -#opt/lampp/include/mysql/my_pthread.h -#opt/lampp/include/mysql/my_semaphore.h -#opt/lampp/include/mysql/my_sys.h -#opt/lampp/include/mysql/my_xml.h -#opt/lampp/include/mysql/mysql.h -#opt/lampp/include/mysql/mysql_com.h -#opt/lampp/include/mysql/mysql_embed.h -#opt/lampp/include/mysql/mysql_time.h -#opt/lampp/include/mysql/mysql_version.h -#opt/lampp/include/mysql/mysqld_ername.h -#opt/lampp/include/mysql/mysqld_error.h -#opt/lampp/include/mysql/raid.h -#opt/lampp/include/mysql/readline.h -#opt/lampp/include/mysql/sql_common.h -#opt/lampp/include/mysql/sql_state.h -#opt/lampp/include/mysql/sslopt-case.h -#opt/lampp/include/mysql/sslopt-longopts.h -#opt/lampp/include/mysql/sslopt-vars.h -#opt/lampp/include/mysql/typelib.h -#opt/lampp/include/ncurses -#opt/lampp/include/ncurses/curses.h -#opt/lampp/include/ncurses/cursesapp.h -#opt/lampp/include/ncurses/cursesf.h -#opt/lampp/include/ncurses/cursesm.h -#opt/lampp/include/ncurses/cursesp.h -#opt/lampp/include/ncurses/cursesw.h -#opt/lampp/include/ncurses/cursslk.h -#opt/lampp/include/ncurses/eti.h -#opt/lampp/include/ncurses/etip.h -#opt/lampp/include/ncurses/form.h -#opt/lampp/include/ncurses/menu.h -#opt/lampp/include/ncurses/ncurses.h -#opt/lampp/include/ncurses/ncurses_dll.h -#opt/lampp/include/ncurses/panel.h -#opt/lampp/include/ncurses/term.h -#opt/lampp/include/ncurses/termcap.h -#opt/lampp/include/ncurses/unctrl.h -#opt/lampp/include/openssl -#opt/lampp/include/openssl/aes.h -#opt/lampp/include/openssl/asn1.h -#opt/lampp/include/openssl/asn1_mac.h -#opt/lampp/include/openssl/asn1t.h -#opt/lampp/include/openssl/bio.h -#opt/lampp/include/openssl/blowfish.h -#opt/lampp/include/openssl/bn.h -#opt/lampp/include/openssl/buffer.h -#opt/lampp/include/openssl/cast.h -#opt/lampp/include/openssl/comp.h -#opt/lampp/include/openssl/conf.h -#opt/lampp/include/openssl/conf_api.h -#opt/lampp/include/openssl/crypto.h -#opt/lampp/include/openssl/des.h -#opt/lampp/include/openssl/des_old.h -#opt/lampp/include/openssl/dh.h -#opt/lampp/include/openssl/dsa.h -#opt/lampp/include/openssl/dso.h -#opt/lampp/include/openssl/dtls1.h -#opt/lampp/include/openssl/e_os.h -#opt/lampp/include/openssl/e_os2.h -#opt/lampp/include/openssl/ebcdic.h -#opt/lampp/include/openssl/ec.h -#opt/lampp/include/openssl/ecdh.h -#opt/lampp/include/openssl/ecdsa.h -#opt/lampp/include/openssl/engine.h -#opt/lampp/include/openssl/err.h -#opt/lampp/include/openssl/evp.h -#opt/lampp/include/openssl/fips.h -#opt/lampp/include/openssl/fips_rand.h -#opt/lampp/include/openssl/hmac.h -#opt/lampp/include/openssl/idea.h -#opt/lampp/include/openssl/krb5_asn.h -#opt/lampp/include/openssl/kssl.h -#opt/lampp/include/openssl/lhash.h -#opt/lampp/include/openssl/md2.h -#opt/lampp/include/openssl/md4.h -#opt/lampp/include/openssl/md5.h -#opt/lampp/include/openssl/mdc2.h -#opt/lampp/include/openssl/obj_mac.h -#opt/lampp/include/openssl/objects.h -#opt/lampp/include/openssl/ocsp.h -#opt/lampp/include/openssl/opensslconf.h -#opt/lampp/include/openssl/opensslv.h -#opt/lampp/include/openssl/ossl_typ.h -#opt/lampp/include/openssl/pem.h -#opt/lampp/include/openssl/pem2.h -#opt/lampp/include/openssl/pkcs12.h -#opt/lampp/include/openssl/pkcs7.h -#opt/lampp/include/openssl/pq_compat.h -#opt/lampp/include/openssl/pqueue.h -#opt/lampp/include/openssl/rand.h -#opt/lampp/include/openssl/rc2.h -#opt/lampp/include/openssl/rc4.h -#opt/lampp/include/openssl/rc5.h -#opt/lampp/include/openssl/ripemd.h -#opt/lampp/include/openssl/rsa.h -#opt/lampp/include/openssl/safestack.h -#opt/lampp/include/openssl/sha.h -#opt/lampp/include/openssl/ssl.h -#opt/lampp/include/openssl/ssl2.h -#opt/lampp/include/openssl/ssl23.h -#opt/lampp/include/openssl/ssl3.h -#opt/lampp/include/openssl/stack.h -#opt/lampp/include/openssl/store.h -#opt/lampp/include/openssl/symhacks.h -#opt/lampp/include/openssl/tls1.h -#opt/lampp/include/openssl/tmdiff.h -#opt/lampp/include/openssl/txt_db.h -#opt/lampp/include/openssl/ui.h -#opt/lampp/include/openssl/ui_compat.h -#opt/lampp/include/openssl/x509.h -#opt/lampp/include/openssl/x509_vfy.h -#opt/lampp/include/openssl/x509v3.h -#opt/lampp/include/os.h -#opt/lampp/include/pcre.h -#opt/lampp/include/pcreposix.h -#opt/lampp/include/pg_config.h -#opt/lampp/include/pg_config_manual.h -#opt/lampp/include/pg_config_os.h -#opt/lampp/include/pgtypes_date.h -#opt/lampp/include/pgtypes_error.h -#opt/lampp/include/pgtypes_interval.h -#opt/lampp/include/pgtypes_numeric.h -#opt/lampp/include/pgtypes_timestamp.h -#opt/lampp/include/php -#opt/lampp/include/php/TSRM -#opt/lampp/include/php/TSRM/TSRM.h -#opt/lampp/include/php/TSRM/acconfig.h -#opt/lampp/include/php/TSRM/readdir.h -#opt/lampp/include/php/TSRM/tsrm_config.h -#opt/lampp/include/php/TSRM/tsrm_config.w32.h -#opt/lampp/include/php/TSRM/tsrm_config_common.h -#opt/lampp/include/php/TSRM/tsrm_nw.h -#opt/lampp/include/php/TSRM/tsrm_strtok_r.h -#opt/lampp/include/php/TSRM/tsrm_virtual_cwd.h -#opt/lampp/include/php/TSRM/tsrm_win32.h -#opt/lampp/include/php/Zend -#opt/lampp/include/php/Zend/FlexLexer.h -#opt/lampp/include/php/Zend/acconfig.h -#opt/lampp/include/php/Zend/zend.h -#opt/lampp/include/php/Zend/zend_API.h -#opt/lampp/include/php/Zend/zend_alloc.h -#opt/lampp/include/php/Zend/zend_builtin_functions.h -#opt/lampp/include/php/Zend/zend_compile.h -#opt/lampp/include/php/Zend/zend_config.h -#opt/lampp/include/php/Zend/zend_config.nw.h -#opt/lampp/include/php/Zend/zend_config.w32.h -#opt/lampp/include/php/Zend/zend_constants.h -#opt/lampp/include/php/Zend/zend_dynamic_array.h -#opt/lampp/include/php/Zend/zend_errors.h -#opt/lampp/include/php/Zend/zend_exceptions.h -#opt/lampp/include/php/Zend/zend_execute.h -#opt/lampp/include/php/Zend/zend_extensions.h -#opt/lampp/include/php/Zend/zend_fast_cache.h -#opt/lampp/include/php/Zend/zend_globals.h -#opt/lampp/include/php/Zend/zend_globals_macros.h -#opt/lampp/include/php/Zend/zend_hash.h -#opt/lampp/include/php/Zend/zend_highlight.h -#opt/lampp/include/php/Zend/zend_indent.h -#opt/lampp/include/php/Zend/zend_ini.h -#opt/lampp/include/php/Zend/zend_ini_parser.h -#opt/lampp/include/php/Zend/zend_ini_scanner.h -#opt/lampp/include/php/Zend/zend_interfaces.h -#opt/lampp/include/php/Zend/zend_istdiostream.h -#opt/lampp/include/php/Zend/zend_iterators.h -#opt/lampp/include/php/Zend/zend_language_parser.h -#opt/lampp/include/php/Zend/zend_language_scanner.h -#opt/lampp/include/php/Zend/zend_list.h -#opt/lampp/include/php/Zend/zend_llist.h -#opt/lampp/include/php/Zend/zend_mm.h -#opt/lampp/include/php/Zend/zend_modules.h -#opt/lampp/include/php/Zend/zend_multibyte.h -#opt/lampp/include/php/Zend/zend_multiply.h -#opt/lampp/include/php/Zend/zend_object_handlers.h -#opt/lampp/include/php/Zend/zend_objects.h -#opt/lampp/include/php/Zend/zend_objects_API.h -#opt/lampp/include/php/Zend/zend_operators.h -#opt/lampp/include/php/Zend/zend_ptr_stack.h -#opt/lampp/include/php/Zend/zend_qsort.h -#opt/lampp/include/php/Zend/zend_stack.h -#opt/lampp/include/php/Zend/zend_static_allocator.h -#opt/lampp/include/php/Zend/zend_stream.h -#opt/lampp/include/php/Zend/zend_strtod.h -#opt/lampp/include/php/Zend/zend_ts_hash.h -#opt/lampp/include/php/Zend/zend_types.h -#opt/lampp/include/php/Zend/zend_variables.h -#opt/lampp/include/php/Zend/zend_vm.h -#opt/lampp/include/php/Zend/zend_vm_def.h -#opt/lampp/include/php/Zend/zend_vm_execute.h -#opt/lampp/include/php/Zend/zend_vm_opcodes.h -#opt/lampp/include/php/ext -#opt/lampp/include/php/ext/date -#opt/lampp/include/php/ext/date/lib -#opt/lampp/include/php/ext/date/lib/timelib.h -#opt/lampp/include/php/ext/date/lib/timelib_config.h -#opt/lampp/include/php/ext/date/lib/timelib_structs.h -#opt/lampp/include/php/ext/date/php_date.h -#opt/lampp/include/php/ext/dom -#opt/lampp/include/php/ext/dom/xml_common.h -#opt/lampp/include/php/ext/gd -#opt/lampp/include/php/ext/gd/gdcache.h -#opt/lampp/include/php/ext/gd/gdttf.h -#opt/lampp/include/php/ext/gd/libgd -#opt/lampp/include/php/ext/gd/libgd/gd.h -#opt/lampp/include/php/ext/gd/libgd/gd_io.h -#opt/lampp/include/php/ext/gd/libgd/gdcache.h -#opt/lampp/include/php/ext/gd/libgd/gdfontg.h -#opt/lampp/include/php/ext/gd/libgd/gdfontl.h -#opt/lampp/include/php/ext/gd/libgd/gdfontmb.h -#opt/lampp/include/php/ext/gd/libgd/gdfonts.h -#opt/lampp/include/php/ext/gd/libgd/gdfontt.h -#opt/lampp/include/php/ext/gd/libgd/gdhelpers.h -#opt/lampp/include/php/ext/gd/libgd/jisx0208.h -#opt/lampp/include/php/ext/gd/libgd/wbmp.h -#opt/lampp/include/php/ext/gd/php_gd.h -#opt/lampp/include/php/ext/hash -#opt/lampp/include/php/ext/hash/php_hash.h -#opt/lampp/include/php/ext/hash/php_hash_adler32.h -#opt/lampp/include/php/ext/hash/php_hash_crc32.h -#opt/lampp/include/php/ext/hash/php_hash_gost.h -#opt/lampp/include/php/ext/hash/php_hash_haval.h -#opt/lampp/include/php/ext/hash/php_hash_md.h -#opt/lampp/include/php/ext/hash/php_hash_ripemd.h -#opt/lampp/include/php/ext/hash/php_hash_sha.h -#opt/lampp/include/php/ext/hash/php_hash_snefru.h -#opt/lampp/include/php/ext/hash/php_hash_tiger.h -#opt/lampp/include/php/ext/hash/php_hash_types.h -#opt/lampp/include/php/ext/hash/php_hash_whirlpool.h -#opt/lampp/include/php/ext/iconv -#opt/lampp/include/php/ext/iconv/php_have_bsd_iconv.h -#opt/lampp/include/php/ext/iconv/php_have_glibc_iconv.h -#opt/lampp/include/php/ext/iconv/php_have_iconv.h -#opt/lampp/include/php/ext/iconv/php_have_libiconv.h -#opt/lampp/include/php/ext/iconv/php_iconv.h -#opt/lampp/include/php/ext/iconv/php_iconv_supports_errno.h -#opt/lampp/include/php/ext/iconv/php_php_iconv_h_path.h -#opt/lampp/include/php/ext/iconv/php_php_iconv_impl.h -#opt/lampp/include/php/ext/libxml -#opt/lampp/include/php/ext/libxml/php_libxml.h -#opt/lampp/include/php/ext/mbstring -#opt/lampp/include/php/ext/mbstring/libmbfl -#opt/lampp/include/php/ext/mbstring/libmbfl/config.h -#opt/lampp/include/php/ext/pcre -#opt/lampp/include/php/ext/pcre/pcrelib -#opt/lampp/include/php/ext/pcre/pcrelib/internal.h -#opt/lampp/include/php/ext/pcre/pcrelib/pcre.h -#opt/lampp/include/php/ext/pcre/pcrelib/pcre_internal.h -#opt/lampp/include/php/ext/pcre/pcrelib/pcre_scanner.h -#opt/lampp/include/php/ext/pcre/pcrelib/pcre_stringpiece.h -#opt/lampp/include/php/ext/pcre/pcrelib/pcrecpp.h -#opt/lampp/include/php/ext/pcre/pcrelib/pcrecpparg.h -#opt/lampp/include/php/ext/pcre/pcrelib/pcreposix.h -#opt/lampp/include/php/ext/pcre/pcrelib/ucp.h -#opt/lampp/include/php/ext/pcre/pcrelib/ucpinternal.h -#opt/lampp/include/php/ext/pcre/php_pcre.h -#opt/lampp/include/php/ext/pdo -#opt/lampp/include/php/ext/pdo/php_pdo.h -#opt/lampp/include/php/ext/pdo/php_pdo_driver.h -#opt/lampp/include/php/ext/session -#opt/lampp/include/php/ext/session/mod_files.h -#opt/lampp/include/php/ext/session/mod_user.h -#opt/lampp/include/php/ext/session/php_session.h -#opt/lampp/include/php/ext/sqlite -#opt/lampp/include/php/ext/sqlite/libsqlite -#opt/lampp/include/php/ext/sqlite/libsqlite/src -#opt/lampp/include/php/ext/standard -#opt/lampp/include/php/ext/standard/base64.h -#opt/lampp/include/php/ext/standard/basic_functions.h -#opt/lampp/include/php/ext/standard/crc32.h -#opt/lampp/include/php/ext/standard/credits.h -#opt/lampp/include/php/ext/standard/credits_ext.h -#opt/lampp/include/php/ext/standard/credits_sapi.h -#opt/lampp/include/php/ext/standard/css.h -#opt/lampp/include/php/ext/standard/cyr_convert.h -#opt/lampp/include/php/ext/standard/datetime.h -#opt/lampp/include/php/ext/standard/dl.h -#opt/lampp/include/php/ext/standard/dns.h -#opt/lampp/include/php/ext/standard/exec.h -#opt/lampp/include/php/ext/standard/file.h -#opt/lampp/include/php/ext/standard/flock_compat.h -#opt/lampp/include/php/ext/standard/fsock.h -#opt/lampp/include/php/ext/standard/head.h -#opt/lampp/include/php/ext/standard/html.h -#opt/lampp/include/php/ext/standard/info.h -#opt/lampp/include/php/ext/standard/md5.h -#opt/lampp/include/php/ext/standard/microtime.h -#opt/lampp/include/php/ext/standard/pack.h -#opt/lampp/include/php/ext/standard/pageinfo.h -#opt/lampp/include/php/ext/standard/php_array.h -#opt/lampp/include/php/ext/standard/php_assert.h -#opt/lampp/include/php/ext/standard/php_browscap.h -#opt/lampp/include/php/ext/standard/php_crypt.h -#opt/lampp/include/php/ext/standard/php_dir.h -#opt/lampp/include/php/ext/standard/php_ext_syslog.h -#opt/lampp/include/php/ext/standard/php_filestat.h -#opt/lampp/include/php/ext/standard/php_fopen_wrappers.h -#opt/lampp/include/php/ext/standard/php_ftok.h -#opt/lampp/include/php/ext/standard/php_http.h -#opt/lampp/include/php/ext/standard/php_image.h -#opt/lampp/include/php/ext/standard/php_incomplete_class.h -#opt/lampp/include/php/ext/standard/php_iptc.h -#opt/lampp/include/php/ext/standard/php_lcg.h -#opt/lampp/include/php/ext/standard/php_link.h -#opt/lampp/include/php/ext/standard/php_mail.h -#opt/lampp/include/php/ext/standard/php_math.h -#opt/lampp/include/php/ext/standard/php_metaphone.h -#opt/lampp/include/php/ext/standard/php_rand.h -#opt/lampp/include/php/ext/standard/php_smart_str.h -#opt/lampp/include/php/ext/standard/php_smart_str_public.h -#opt/lampp/include/php/ext/standard/php_standard.h -#opt/lampp/include/php/ext/standard/php_string.h -#opt/lampp/include/php/ext/standard/php_type.h -#opt/lampp/include/php/ext/standard/php_uuencode.h -#opt/lampp/include/php/ext/standard/php_var.h -#opt/lampp/include/php/ext/standard/php_versioning.h -#opt/lampp/include/php/ext/standard/proc_open.h -#opt/lampp/include/php/ext/standard/quot_print.h -#opt/lampp/include/php/ext/standard/reg.h -#opt/lampp/include/php/ext/standard/scanf.h -#opt/lampp/include/php/ext/standard/sha1.h -#opt/lampp/include/php/ext/standard/streamsfuncs.h -#opt/lampp/include/php/ext/standard/uniqid.h -#opt/lampp/include/php/ext/standard/url.h -#opt/lampp/include/php/ext/standard/url_scanner.h -#opt/lampp/include/php/ext/standard/url_scanner_ex.h -#opt/lampp/include/php/ext/xml -#opt/lampp/include/php/ext/xml/expat_compat.h -#opt/lampp/include/php/ext/xml/php_xml.h -#opt/lampp/include/php/include -#opt/lampp/include/php/main -#opt/lampp/include/php/main/SAPI.h -#opt/lampp/include/php/main/build-defs.h -#opt/lampp/include/php/main/config.w32.h -#opt/lampp/include/php/main/fopen_wrappers.h -#opt/lampp/include/php/main/logos.h -#opt/lampp/include/php/main/php.h -#opt/lampp/include/php/main/php3_compat.h -#opt/lampp/include/php/main/php_compat.h -#opt/lampp/include/php/main/php_config.h -#opt/lampp/include/php/main/php_content_types.h -#opt/lampp/include/php/main/php_globals.h -#opt/lampp/include/php/main/php_ini.h -#opt/lampp/include/php/main/php_logos.h -#opt/lampp/include/php/main/php_main.h -#opt/lampp/include/php/main/php_memory_streams.h -#opt/lampp/include/php/main/php_network.h -#opt/lampp/include/php/main/php_open_temporary_file.h -#opt/lampp/include/php/main/php_output.h -#opt/lampp/include/php/main/php_reentrancy.h -#opt/lampp/include/php/main/php_regex.h -#opt/lampp/include/php/main/php_scandir.h -#opt/lampp/include/php/main/php_streams.h -#opt/lampp/include/php/main/php_syslog.h -#opt/lampp/include/php/main/php_ticks.h -#opt/lampp/include/php/main/php_variables.h -#opt/lampp/include/php/main/php_version.h -#opt/lampp/include/php/main/rfc1867.h -#opt/lampp/include/php/main/safe_mode.h -#opt/lampp/include/php/main/snprintf.h -#opt/lampp/include/php/main/spprintf.h -#opt/lampp/include/php/main/streams -#opt/lampp/include/php/main/streams/php_stream_context.h -#opt/lampp/include/php/main/streams/php_stream_filter_api.h -#opt/lampp/include/php/main/streams/php_stream_mmap.h -#opt/lampp/include/php/main/streams/php_stream_plain_wrapper.h -#opt/lampp/include/php/main/streams/php_stream_transport.h -#opt/lampp/include/php/main/streams/php_stream_userspace.h -#opt/lampp/include/php/main/streams/php_streams_int.h -#opt/lampp/include/php/main/win95nt.h -#opt/lampp/include/php/regex -#opt/lampp/include/php/regex/cclass.h -#opt/lampp/include/php/regex/cname.h -#opt/lampp/include/php/regex/regex.h -#opt/lampp/include/php/regex/regex2.h -#opt/lampp/include/php/regex/regex_extra.h -#opt/lampp/include/php/regex/utils.h -#opt/lampp/include/png.h -#opt/lampp/include/pngconf.h -#opt/lampp/include/postgres_ext.h -#opt/lampp/include/postgresql -#opt/lampp/include/postgresql/informix -#opt/lampp/include/postgresql/informix/esql -#opt/lampp/include/postgresql/informix/esql/datetime.h -#opt/lampp/include/postgresql/informix/esql/decimal.h -#opt/lampp/include/postgresql/informix/esql/sqlda.h -#opt/lampp/include/postgresql/informix/esql/sqltypes.h -#opt/lampp/include/postgresql/internal -#opt/lampp/include/postgresql/internal/c.h -#opt/lampp/include/postgresql/internal/libpq -#opt/lampp/include/postgresql/internal/libpq-int.h -#opt/lampp/include/postgresql/internal/libpq/pqcomm.h -#opt/lampp/include/postgresql/internal/port.h -#opt/lampp/include/postgresql/internal/postgres_fe.h -#opt/lampp/include/postgresql/internal/pqexpbuffer.h -#opt/lampp/include/postgresql/server -#opt/lampp/include/postgresql/server/access -#opt/lampp/include/postgresql/server/access/attnum.h -#opt/lampp/include/postgresql/server/access/clog.h -#opt/lampp/include/postgresql/server/access/genam.h -#opt/lampp/include/postgresql/server/access/gist.h -#opt/lampp/include/postgresql/server/access/gist_private.h -#opt/lampp/include/postgresql/server/access/gistscan.h -#opt/lampp/include/postgresql/server/access/hash.h -#opt/lampp/include/postgresql/server/access/heapam.h -#opt/lampp/include/postgresql/server/access/hio.h -#opt/lampp/include/postgresql/server/access/htup.h -#opt/lampp/include/postgresql/server/access/iqual.h -#opt/lampp/include/postgresql/server/access/itup.h -#opt/lampp/include/postgresql/server/access/multixact.h -#opt/lampp/include/postgresql/server/access/nbtree.h -#opt/lampp/include/postgresql/server/access/printtup.h -#opt/lampp/include/postgresql/server/access/relscan.h -#opt/lampp/include/postgresql/server/access/rmgr.h -#opt/lampp/include/postgresql/server/access/rtree.h -#opt/lampp/include/postgresql/server/access/rtscan.h -#opt/lampp/include/postgresql/server/access/sdir.h -#opt/lampp/include/postgresql/server/access/skey.h -#opt/lampp/include/postgresql/server/access/slru.h -#opt/lampp/include/postgresql/server/access/subtrans.h -#opt/lampp/include/postgresql/server/access/transam.h -#opt/lampp/include/postgresql/server/access/tupdesc.h -#opt/lampp/include/postgresql/server/access/tupmacs.h -#opt/lampp/include/postgresql/server/access/tuptoaster.h -#opt/lampp/include/postgresql/server/access/twophase.h -#opt/lampp/include/postgresql/server/access/twophase_rmgr.h -#opt/lampp/include/postgresql/server/access/valid.h -#opt/lampp/include/postgresql/server/access/xact.h -#opt/lampp/include/postgresql/server/access/xlog.h -#opt/lampp/include/postgresql/server/access/xlog_internal.h -#opt/lampp/include/postgresql/server/access/xlogdefs.h -#opt/lampp/include/postgresql/server/access/xlogutils.h -#opt/lampp/include/postgresql/server/bootstrap -#opt/lampp/include/postgresql/server/bootstrap/bootstrap.h -#opt/lampp/include/postgresql/server/c.h -#opt/lampp/include/postgresql/server/catalog -#opt/lampp/include/postgresql/server/catalog/catalog.h -#opt/lampp/include/postgresql/server/catalog/catversion.h -#opt/lampp/include/postgresql/server/catalog/dependency.h -#opt/lampp/include/postgresql/server/catalog/heap.h -#opt/lampp/include/postgresql/server/catalog/index.h -#opt/lampp/include/postgresql/server/catalog/indexing.h -#opt/lampp/include/postgresql/server/catalog/namespace.h -#opt/lampp/include/postgresql/server/catalog/pg_aggregate.h -#opt/lampp/include/postgresql/server/catalog/pg_am.h -#opt/lampp/include/postgresql/server/catalog/pg_amop.h -#opt/lampp/include/postgresql/server/catalog/pg_amproc.h -#opt/lampp/include/postgresql/server/catalog/pg_attrdef.h -#opt/lampp/include/postgresql/server/catalog/pg_attribute.h -#opt/lampp/include/postgresql/server/catalog/pg_auth_members.h -#opt/lampp/include/postgresql/server/catalog/pg_authid.h -#opt/lampp/include/postgresql/server/catalog/pg_autovacuum.h -#opt/lampp/include/postgresql/server/catalog/pg_cast.h -#opt/lampp/include/postgresql/server/catalog/pg_class.h -#opt/lampp/include/postgresql/server/catalog/pg_constraint.h -#opt/lampp/include/postgresql/server/catalog/pg_control.h -#opt/lampp/include/postgresql/server/catalog/pg_conversion.h -#opt/lampp/include/postgresql/server/catalog/pg_database.h -#opt/lampp/include/postgresql/server/catalog/pg_depend.h -#opt/lampp/include/postgresql/server/catalog/pg_description.h -#opt/lampp/include/postgresql/server/catalog/pg_index.h -#opt/lampp/include/postgresql/server/catalog/pg_inherits.h -#opt/lampp/include/postgresql/server/catalog/pg_language.h -#opt/lampp/include/postgresql/server/catalog/pg_largeobject.h -#opt/lampp/include/postgresql/server/catalog/pg_listener.h -#opt/lampp/include/postgresql/server/catalog/pg_namespace.h -#opt/lampp/include/postgresql/server/catalog/pg_opclass.h -#opt/lampp/include/postgresql/server/catalog/pg_operator.h -#opt/lampp/include/postgresql/server/catalog/pg_pltemplate.h -#opt/lampp/include/postgresql/server/catalog/pg_proc.h -#opt/lampp/include/postgresql/server/catalog/pg_rewrite.h -#opt/lampp/include/postgresql/server/catalog/pg_shdepend.h -#opt/lampp/include/postgresql/server/catalog/pg_statistic.h -#opt/lampp/include/postgresql/server/catalog/pg_tablespace.h -#opt/lampp/include/postgresql/server/catalog/pg_trigger.h -#opt/lampp/include/postgresql/server/catalog/pg_type.h -#opt/lampp/include/postgresql/server/commands -#opt/lampp/include/postgresql/server/commands/alter.h -#opt/lampp/include/postgresql/server/commands/async.h -#opt/lampp/include/postgresql/server/commands/cluster.h -#opt/lampp/include/postgresql/server/commands/comment.h -#opt/lampp/include/postgresql/server/commands/conversioncmds.h -#opt/lampp/include/postgresql/server/commands/copy.h -#opt/lampp/include/postgresql/server/commands/dbcommands.h -#opt/lampp/include/postgresql/server/commands/defrem.h -#opt/lampp/include/postgresql/server/commands/explain.h -#opt/lampp/include/postgresql/server/commands/lockcmds.h -#opt/lampp/include/postgresql/server/commands/portalcmds.h -#opt/lampp/include/postgresql/server/commands/prepare.h -#opt/lampp/include/postgresql/server/commands/proclang.h -#opt/lampp/include/postgresql/server/commands/schemacmds.h -#opt/lampp/include/postgresql/server/commands/sequence.h -#opt/lampp/include/postgresql/server/commands/tablecmds.h -#opt/lampp/include/postgresql/server/commands/tablespace.h -#opt/lampp/include/postgresql/server/commands/trigger.h -#opt/lampp/include/postgresql/server/commands/typecmds.h -#opt/lampp/include/postgresql/server/commands/user.h -#opt/lampp/include/postgresql/server/commands/vacuum.h -#opt/lampp/include/postgresql/server/commands/variable.h -#opt/lampp/include/postgresql/server/commands/version.h -#opt/lampp/include/postgresql/server/commands/view.h -#opt/lampp/include/postgresql/server/dynloader.h -#opt/lampp/include/postgresql/server/executor -#opt/lampp/include/postgresql/server/executor/execdebug.h -#opt/lampp/include/postgresql/server/executor/execdefs.h -#opt/lampp/include/postgresql/server/executor/execdesc.h -#opt/lampp/include/postgresql/server/executor/executor.h -#opt/lampp/include/postgresql/server/executor/functions.h -#opt/lampp/include/postgresql/server/executor/hashjoin.h -#opt/lampp/include/postgresql/server/executor/instrument.h -#opt/lampp/include/postgresql/server/executor/nodeAgg.h -#opt/lampp/include/postgresql/server/executor/nodeAppend.h -#opt/lampp/include/postgresql/server/executor/nodeBitmapAnd.h -#opt/lampp/include/postgresql/server/executor/nodeBitmapHeapscan.h -#opt/lampp/include/postgresql/server/executor/nodeBitmapIndexscan.h -#opt/lampp/include/postgresql/server/executor/nodeBitmapOr.h -#opt/lampp/include/postgresql/server/executor/nodeFunctionscan.h -#opt/lampp/include/postgresql/server/executor/nodeGroup.h -#opt/lampp/include/postgresql/server/executor/nodeHash.h -#opt/lampp/include/postgresql/server/executor/nodeHashjoin.h -#opt/lampp/include/postgresql/server/executor/nodeIndexscan.h -#opt/lampp/include/postgresql/server/executor/nodeLimit.h -#opt/lampp/include/postgresql/server/executor/nodeMaterial.h -#opt/lampp/include/postgresql/server/executor/nodeMergejoin.h -#opt/lampp/include/postgresql/server/executor/nodeNestloop.h -#opt/lampp/include/postgresql/server/executor/nodeResult.h -#opt/lampp/include/postgresql/server/executor/nodeSeqscan.h -#opt/lampp/include/postgresql/server/executor/nodeSetOp.h -#opt/lampp/include/postgresql/server/executor/nodeSort.h -#opt/lampp/include/postgresql/server/executor/nodeSubplan.h -#opt/lampp/include/postgresql/server/executor/nodeSubqueryscan.h -#opt/lampp/include/postgresql/server/executor/nodeTidscan.h -#opt/lampp/include/postgresql/server/executor/nodeUnique.h -#opt/lampp/include/postgresql/server/executor/spi.h -#opt/lampp/include/postgresql/server/executor/spi_priv.h -#opt/lampp/include/postgresql/server/executor/tstoreReceiver.h -#opt/lampp/include/postgresql/server/executor/tuptable.h -#opt/lampp/include/postgresql/server/fmgr.h -#opt/lampp/include/postgresql/server/funcapi.h -#opt/lampp/include/postgresql/server/getaddrinfo.h -#opt/lampp/include/postgresql/server/getopt_long.h -#opt/lampp/include/postgresql/server/lib -#opt/lampp/include/postgresql/server/lib/dllist.h -#opt/lampp/include/postgresql/server/lib/stringinfo.h -#opt/lampp/include/postgresql/server/libpq -#opt/lampp/include/postgresql/server/libpq/auth.h -#opt/lampp/include/postgresql/server/libpq/be-fsstubs.h -#opt/lampp/include/postgresql/server/libpq/crypt.h -#opt/lampp/include/postgresql/server/libpq/hba.h -#opt/lampp/include/postgresql/server/libpq/ip.h -#opt/lampp/include/postgresql/server/libpq/libpq-be.h -#opt/lampp/include/postgresql/server/libpq/libpq-fs.h -#opt/lampp/include/postgresql/server/libpq/libpq.h -#opt/lampp/include/postgresql/server/libpq/pqcomm.h -#opt/lampp/include/postgresql/server/libpq/pqformat.h -#opt/lampp/include/postgresql/server/libpq/pqsignal.h -#opt/lampp/include/postgresql/server/mb -#opt/lampp/include/postgresql/server/mb/pg_wchar.h -#opt/lampp/include/postgresql/server/miscadmin.h -#opt/lampp/include/postgresql/server/nodes -#opt/lampp/include/postgresql/server/nodes/bitmapset.h -#opt/lampp/include/postgresql/server/nodes/execnodes.h -#opt/lampp/include/postgresql/server/nodes/makefuncs.h -#opt/lampp/include/postgresql/server/nodes/memnodes.h -#opt/lampp/include/postgresql/server/nodes/nodeFuncs.h -#opt/lampp/include/postgresql/server/nodes/nodes.h -#opt/lampp/include/postgresql/server/nodes/params.h -#opt/lampp/include/postgresql/server/nodes/parsenodes.h -#opt/lampp/include/postgresql/server/nodes/pg_list.h -#opt/lampp/include/postgresql/server/nodes/plannodes.h -#opt/lampp/include/postgresql/server/nodes/primnodes.h -#opt/lampp/include/postgresql/server/nodes/print.h -#opt/lampp/include/postgresql/server/nodes/readfuncs.h -#opt/lampp/include/postgresql/server/nodes/relation.h -#opt/lampp/include/postgresql/server/nodes/tidbitmap.h -#opt/lampp/include/postgresql/server/nodes/value.h -#opt/lampp/include/postgresql/server/optimizer -#opt/lampp/include/postgresql/server/optimizer/clauses.h -#opt/lampp/include/postgresql/server/optimizer/cost.h -#opt/lampp/include/postgresql/server/optimizer/geqo.h -#opt/lampp/include/postgresql/server/optimizer/geqo_copy.h -#opt/lampp/include/postgresql/server/optimizer/geqo_gene.h -#opt/lampp/include/postgresql/server/optimizer/geqo_misc.h -#opt/lampp/include/postgresql/server/optimizer/geqo_mutation.h -#opt/lampp/include/postgresql/server/optimizer/geqo_pool.h -#opt/lampp/include/postgresql/server/optimizer/geqo_random.h -#opt/lampp/include/postgresql/server/optimizer/geqo_recombination.h -#opt/lampp/include/postgresql/server/optimizer/geqo_selection.h -#opt/lampp/include/postgresql/server/optimizer/joininfo.h -#opt/lampp/include/postgresql/server/optimizer/pathnode.h -#opt/lampp/include/postgresql/server/optimizer/paths.h -#opt/lampp/include/postgresql/server/optimizer/plancat.h -#opt/lampp/include/postgresql/server/optimizer/planmain.h -#opt/lampp/include/postgresql/server/optimizer/planner.h -#opt/lampp/include/postgresql/server/optimizer/predtest.h -#opt/lampp/include/postgresql/server/optimizer/prep.h -#opt/lampp/include/postgresql/server/optimizer/restrictinfo.h -#opt/lampp/include/postgresql/server/optimizer/subselect.h -#opt/lampp/include/postgresql/server/optimizer/tlist.h -#opt/lampp/include/postgresql/server/optimizer/var.h -#opt/lampp/include/postgresql/server/parser -#opt/lampp/include/postgresql/server/parser/analyze.h -#opt/lampp/include/postgresql/server/parser/gramparse.h -#opt/lampp/include/postgresql/server/parser/keywords.h -#opt/lampp/include/postgresql/server/parser/parse.h -#opt/lampp/include/postgresql/server/parser/parse_agg.h -#opt/lampp/include/postgresql/server/parser/parse_clause.h -#opt/lampp/include/postgresql/server/parser/parse_coerce.h -#opt/lampp/include/postgresql/server/parser/parse_expr.h -#opt/lampp/include/postgresql/server/parser/parse_func.h -#opt/lampp/include/postgresql/server/parser/parse_node.h -#opt/lampp/include/postgresql/server/parser/parse_oper.h -#opt/lampp/include/postgresql/server/parser/parse_relation.h -#opt/lampp/include/postgresql/server/parser/parse_target.h -#opt/lampp/include/postgresql/server/parser/parse_type.h -#opt/lampp/include/postgresql/server/parser/parser.h -#opt/lampp/include/postgresql/server/parser/parsetree.h -#opt/lampp/include/postgresql/server/parser/scansup.h -#opt/lampp/include/postgresql/server/pg_config.h -#opt/lampp/include/postgresql/server/pg_config_manual.h -#opt/lampp/include/postgresql/server/pg_config_os.h -#opt/lampp/include/postgresql/server/pgstat.h -#opt/lampp/include/postgresql/server/pgtime.h -#opt/lampp/include/postgresql/server/port -#opt/lampp/include/postgresql/server/port.h -#opt/lampp/include/postgresql/server/port/aix.h -#opt/lampp/include/postgresql/server/port/beos.h -#opt/lampp/include/postgresql/server/port/bsdi.h -#opt/lampp/include/postgresql/server/port/cygwin.h -#opt/lampp/include/postgresql/server/port/darwin.h -#opt/lampp/include/postgresql/server/port/dgux.h -#opt/lampp/include/postgresql/server/port/freebsd.h -#opt/lampp/include/postgresql/server/port/hpux.h -#opt/lampp/include/postgresql/server/port/irix.h -#opt/lampp/include/postgresql/server/port/linux.h -#opt/lampp/include/postgresql/server/port/netbsd.h -#opt/lampp/include/postgresql/server/port/nextstep.h -#opt/lampp/include/postgresql/server/port/openbsd.h -#opt/lampp/include/postgresql/server/port/osf.h -#opt/lampp/include/postgresql/server/port/qnx4.h -#opt/lampp/include/postgresql/server/port/sco.h -#opt/lampp/include/postgresql/server/port/solaris.h -#opt/lampp/include/postgresql/server/port/sunos4.h -#opt/lampp/include/postgresql/server/port/svr4.h -#opt/lampp/include/postgresql/server/port/ultrix4.h -#opt/lampp/include/postgresql/server/port/univel.h -#opt/lampp/include/postgresql/server/port/unixware.h -#opt/lampp/include/postgresql/server/port/win32 -#opt/lampp/include/postgresql/server/port/win32.h -#opt/lampp/include/postgresql/server/port/win32/arpa -#opt/lampp/include/postgresql/server/port/win32/arpa/inet.h -#opt/lampp/include/postgresql/server/port/win32/dlfcn.h -#opt/lampp/include/postgresql/server/port/win32/grp.h -#opt/lampp/include/postgresql/server/port/win32/netdb.h -#opt/lampp/include/postgresql/server/port/win32/netinet -#opt/lampp/include/postgresql/server/port/win32/netinet/in.h -#opt/lampp/include/postgresql/server/port/win32/pwd.h -#opt/lampp/include/postgresql/server/port/win32/sys -#opt/lampp/include/postgresql/server/port/win32/sys/socket.h -#opt/lampp/include/postgresql/server/port/win32/sys/wait.h -#opt/lampp/include/postgresql/server/postgres.h -#opt/lampp/include/postgresql/server/postgres_ext.h -#opt/lampp/include/postgresql/server/postgres_fe.h -#opt/lampp/include/postgresql/server/regex -#opt/lampp/include/postgresql/server/regex/regcustom.h -#opt/lampp/include/postgresql/server/regex/regerrs.h -#opt/lampp/include/postgresql/server/regex/regex.h -#opt/lampp/include/postgresql/server/regex/regguts.h -#opt/lampp/include/postgresql/server/rewrite -#opt/lampp/include/postgresql/server/rewrite/prs2lock.h -#opt/lampp/include/postgresql/server/rewrite/rewriteDefine.h -#opt/lampp/include/postgresql/server/rewrite/rewriteHandler.h -#opt/lampp/include/postgresql/server/rewrite/rewriteManip.h -#opt/lampp/include/postgresql/server/rewrite/rewriteRemove.h -#opt/lampp/include/postgresql/server/rewrite/rewriteSupport.h -#opt/lampp/include/postgresql/server/rusagestub.h -#opt/lampp/include/postgresql/server/storage -#opt/lampp/include/postgresql/server/storage/backendid.h -#opt/lampp/include/postgresql/server/storage/block.h -#opt/lampp/include/postgresql/server/storage/buf.h -#opt/lampp/include/postgresql/server/storage/buf_internals.h -#opt/lampp/include/postgresql/server/storage/buffile.h -#opt/lampp/include/postgresql/server/storage/bufmgr.h -#opt/lampp/include/postgresql/server/storage/bufpage.h -#opt/lampp/include/postgresql/server/storage/fd.h -#opt/lampp/include/postgresql/server/storage/freespace.h -#opt/lampp/include/postgresql/server/storage/ipc.h -#opt/lampp/include/postgresql/server/storage/item.h -#opt/lampp/include/postgresql/server/storage/itemid.h -#opt/lampp/include/postgresql/server/storage/itempos.h -#opt/lampp/include/postgresql/server/storage/itemptr.h -#opt/lampp/include/postgresql/server/storage/large_object.h -#opt/lampp/include/postgresql/server/storage/lmgr.h -#opt/lampp/include/postgresql/server/storage/lock.h -#opt/lampp/include/postgresql/server/storage/lwlock.h -#opt/lampp/include/postgresql/server/storage/off.h -#opt/lampp/include/postgresql/server/storage/pg_sema.h -#opt/lampp/include/postgresql/server/storage/pg_shmem.h -#opt/lampp/include/postgresql/server/storage/pmsignal.h -#opt/lampp/include/postgresql/server/storage/pos.h -#opt/lampp/include/postgresql/server/storage/proc.h -#opt/lampp/include/postgresql/server/storage/procarray.h -#opt/lampp/include/postgresql/server/storage/relfilenode.h -#opt/lampp/include/postgresql/server/storage/s_lock.h -#opt/lampp/include/postgresql/server/storage/shmem.h -#opt/lampp/include/postgresql/server/storage/sinval.h -#opt/lampp/include/postgresql/server/storage/sinvaladt.h -#opt/lampp/include/postgresql/server/storage/smgr.h -#opt/lampp/include/postgresql/server/storage/spin.h -#opt/lampp/include/postgresql/server/strdup.h -#opt/lampp/include/postgresql/server/tcop -#opt/lampp/include/postgresql/server/tcop/dest.h -#opt/lampp/include/postgresql/server/tcop/fastpath.h -#opt/lampp/include/postgresql/server/tcop/pquery.h -#opt/lampp/include/postgresql/server/tcop/tcopdebug.h -#opt/lampp/include/postgresql/server/tcop/tcopprot.h -#opt/lampp/include/postgresql/server/tcop/utility.h -#opt/lampp/include/postgresql/server/utils -#opt/lampp/include/postgresql/server/utils/acl.h -#opt/lampp/include/postgresql/server/utils/array.h -#opt/lampp/include/postgresql/server/utils/ascii.h -#opt/lampp/include/postgresql/server/utils/builtins.h -#opt/lampp/include/postgresql/server/utils/cash.h -#opt/lampp/include/postgresql/server/utils/catcache.h -#opt/lampp/include/postgresql/server/utils/date.h -#opt/lampp/include/postgresql/server/utils/datetime.h -#opt/lampp/include/postgresql/server/utils/datum.h -#opt/lampp/include/postgresql/server/utils/dynahash.h -#opt/lampp/include/postgresql/server/utils/dynamic_loader.h -#opt/lampp/include/postgresql/server/utils/elog.h -#opt/lampp/include/postgresql/server/utils/errcodes.h -#opt/lampp/include/postgresql/server/utils/flatfiles.h -#opt/lampp/include/postgresql/server/utils/fmgroids.h -#opt/lampp/include/postgresql/server/utils/fmgrtab.h -#opt/lampp/include/postgresql/server/utils/formatting.h -#opt/lampp/include/postgresql/server/utils/geo_decls.h -#opt/lampp/include/postgresql/server/utils/guc.h -#opt/lampp/include/postgresql/server/utils/guc_tables.h -#opt/lampp/include/postgresql/server/utils/help_config.h -#opt/lampp/include/postgresql/server/utils/hsearch.h -#opt/lampp/include/postgresql/server/utils/inet.h -#opt/lampp/include/postgresql/server/utils/int8.h -#opt/lampp/include/postgresql/server/utils/inval.h -#opt/lampp/include/postgresql/server/utils/logtape.h -#opt/lampp/include/postgresql/server/utils/lsyscache.h -#opt/lampp/include/postgresql/server/utils/memutils.h -#opt/lampp/include/postgresql/server/utils/nabstime.h -#opt/lampp/include/postgresql/server/utils/numeric.h -#opt/lampp/include/postgresql/server/utils/palloc.h -#opt/lampp/include/postgresql/server/utils/pg_crc.h -#opt/lampp/include/postgresql/server/utils/pg_locale.h -#opt/lampp/include/postgresql/server/utils/pg_lzcompress.h -#opt/lampp/include/postgresql/server/utils/pg_rusage.h -#opt/lampp/include/postgresql/server/utils/portal.h -#opt/lampp/include/postgresql/server/utils/ps_status.h -#opt/lampp/include/postgresql/server/utils/rel.h -#opt/lampp/include/postgresql/server/utils/relcache.h -#opt/lampp/include/postgresql/server/utils/resowner.h -#opt/lampp/include/postgresql/server/utils/selfuncs.h -#opt/lampp/include/postgresql/server/utils/syscache.h -#opt/lampp/include/postgresql/server/utils/timestamp.h -#opt/lampp/include/postgresql/server/utils/tqual.h -#opt/lampp/include/postgresql/server/utils/tuplesort.h -#opt/lampp/include/postgresql/server/utils/tuplestore.h -#opt/lampp/include/postgresql/server/utils/typcache.h -#opt/lampp/include/postgresql/server/utils/varbit.h -#opt/lampp/include/proto-lber.h -#opt/lampp/include/python2.4 -#opt/lampp/include/python2.4/Python.h -#opt/lampp/include/python2.4/abstract.h -#opt/lampp/include/python2.4/bitset.h -#opt/lampp/include/python2.4/boolobject.h -#opt/lampp/include/python2.4/bufferobject.h -#opt/lampp/include/python2.4/cStringIO.h -#opt/lampp/include/python2.4/cellobject.h -#opt/lampp/include/python2.4/ceval.h -#opt/lampp/include/python2.4/classobject.h -#opt/lampp/include/python2.4/cobject.h -#opt/lampp/include/python2.4/codecs.h -#opt/lampp/include/python2.4/compile.h -#opt/lampp/include/python2.4/complexobject.h -#opt/lampp/include/python2.4/datetime.h -#opt/lampp/include/python2.4/descrobject.h -#opt/lampp/include/python2.4/dictobject.h -#opt/lampp/include/python2.4/enumobject.h -#opt/lampp/include/python2.4/errcode.h -#opt/lampp/include/python2.4/eval.h -#opt/lampp/include/python2.4/fileobject.h -#opt/lampp/include/python2.4/floatobject.h -#opt/lampp/include/python2.4/frameobject.h -#opt/lampp/include/python2.4/funcobject.h -#opt/lampp/include/python2.4/genobject.h -#opt/lampp/include/python2.4/graminit.h -#opt/lampp/include/python2.4/grammar.h -#opt/lampp/include/python2.4/import.h -#opt/lampp/include/python2.4/intobject.h -#opt/lampp/include/python2.4/intrcheck.h -#opt/lampp/include/python2.4/iterobject.h -#opt/lampp/include/python2.4/listobject.h -#opt/lampp/include/python2.4/longintrepr.h -#opt/lampp/include/python2.4/longobject.h -#opt/lampp/include/python2.4/marshal.h -#opt/lampp/include/python2.4/metagrammar.h -#opt/lampp/include/python2.4/methodobject.h -#opt/lampp/include/python2.4/modsupport.h -#opt/lampp/include/python2.4/moduleobject.h -#opt/lampp/include/python2.4/node.h -#opt/lampp/include/python2.4/object.h -#opt/lampp/include/python2.4/objimpl.h -#opt/lampp/include/python2.4/opcode.h -#opt/lampp/include/python2.4/osdefs.h -#opt/lampp/include/python2.4/parsetok.h -#opt/lampp/include/python2.4/patchlevel.h -#opt/lampp/include/python2.4/pgen.h -#opt/lampp/include/python2.4/pgenheaders.h -#opt/lampp/include/python2.4/py_curses.h -#opt/lampp/include/python2.4/pyconfig.h -#opt/lampp/include/python2.4/pydebug.h -#opt/lampp/include/python2.4/pyerrors.h -#opt/lampp/include/python2.4/pyfpe.h -#opt/lampp/include/python2.4/pygetopt.h -#opt/lampp/include/python2.4/pymactoolbox.h -#opt/lampp/include/python2.4/pymem.h -#opt/lampp/include/python2.4/pyport.h -#opt/lampp/include/python2.4/pystate.h -#opt/lampp/include/python2.4/pystrtod.h -#opt/lampp/include/python2.4/pythonrun.h -#opt/lampp/include/python2.4/pythread.h -#opt/lampp/include/python2.4/rangeobject.h -#opt/lampp/include/python2.4/setobject.h -#opt/lampp/include/python2.4/sliceobject.h -#opt/lampp/include/python2.4/stringobject.h -#opt/lampp/include/python2.4/structmember.h -#opt/lampp/include/python2.4/structseq.h -#opt/lampp/include/python2.4/symtable.h -#opt/lampp/include/python2.4/sysmodule.h -#opt/lampp/include/python2.4/timefuncs.h -#opt/lampp/include/python2.4/token.h -#opt/lampp/include/python2.4/traceback.h -#opt/lampp/include/python2.4/tupleobject.h -#opt/lampp/include/python2.4/ucnhash.h -#opt/lampp/include/python2.4/unicodeobject.h -#opt/lampp/include/python2.4/weakrefobject.h -#opt/lampp/include/sabcfg.h -#opt/lampp/include/sabdbg.h -#opt/lampp/include/sablot.h -#opt/lampp/include/scoreboard.h -#opt/lampp/include/sdom.h -#opt/lampp/include/shandler.h -#opt/lampp/include/slapi-plugin.h -#opt/lampp/include/sql3types.h -#opt/lampp/include/sqlca.h -#opt/lampp/include/sqldb.h -#opt/lampp/include/sqlfront.h -#opt/lampp/include/sqlite.h -#opt/lampp/include/sqlite3.h -#opt/lampp/include/srchpref.h -#opt/lampp/include/sxpath.h -#opt/lampp/include/sybdb.h -#opt/lampp/include/syberror.h -#opt/lampp/include/sybfront.h -#opt/lampp/include/tds.h -#opt/lampp/include/tds_configs.h -#opt/lampp/include/tds_sysdep_public.h -#opt/lampp/include/tdsconvert.h -#opt/lampp/include/tdsodbc.h -#opt/lampp/include/tdssrv.h -#opt/lampp/include/tdsutil.h -#opt/lampp/include/tdsver.h -#opt/lampp/include/unixd.h -#opt/lampp/include/util_cfgtree.h -#opt/lampp/include/util_charset.h -#opt/lampp/include/util_ebcdic.h -#opt/lampp/include/util_filter.h -#opt/lampp/include/util_ldap.h -#opt/lampp/include/util_md5.h -#opt/lampp/include/util_script.h -#opt/lampp/include/util_time.h -#opt/lampp/include/util_xml.h -#opt/lampp/include/wbmp.h -#opt/lampp/include/zconf.h -#opt/lampp/include/zlib.h -#opt/lampp/include/zutil.h -#opt/lampp/include/zzip -#opt/lampp/include/zzip-io.h -#opt/lampp/include/zzip.h -#opt/lampp/include/zzip/_config.h -#opt/lampp/include/zzip/_msvc.h -#opt/lampp/include/zzip/conf.h -#opt/lampp/include/zzip/file.h -#opt/lampp/include/zzip/format.h -#opt/lampp/include/zzip/lib.h -#opt/lampp/include/zzip/plugin.h -#opt/lampp/include/zzip/stdint.h -#opt/lampp/include/zzip/wrap.h -#opt/lampp/include/zzip/zzip.h -#opt/lampp/include/zziplib.h -opt/lampp/info -opt/lampp/info/mysql.info -opt/lampp/lampp -opt/lampp/lib -opt/lampp/lib/APRVARS -opt/lampp/lib/VERSION -opt/lampp/lib/apr.exp -opt/lampp/lib/aprutil.exp -opt/lampp/lib/engines -opt/lampp/lib/engines/lib4758cca.so -opt/lampp/lib/engines/libaep.so -opt/lampp/lib/engines/libatalla.so -opt/lampp/lib/engines/libchil.so -opt/lampp/lib/engines/libcswift.so -opt/lampp/lib/engines/libgmp.so -opt/lampp/lib/engines/libnuron.so -opt/lampp/lib/engines/libsureware.so -opt/lampp/lib/engines/libubsec.so -opt/lampp/lib/fonts -opt/lampp/lib/fonts/Courier-Bold.afm -opt/lampp/lib/fonts/Courier-BoldOblique.afm -opt/lampp/lib/fonts/Courier-Oblique.afm -opt/lampp/lib/fonts/Courier.afm -opt/lampp/lib/fonts/Helvetica-Bold.afm -opt/lampp/lib/fonts/Helvetica-BoldOblique.afm -opt/lampp/lib/fonts/Helvetica-Oblique.afm -opt/lampp/lib/fonts/Helvetica.afm -opt/lampp/lib/fonts/Symbol.afm -opt/lampp/lib/fonts/Times-Bold.afm -opt/lampp/lib/fonts/Times-BoldItalic.afm -opt/lampp/lib/fonts/Times-Italic.afm -opt/lampp/lib/fonts/Times-Roman.afm -opt/lampp/lib/fonts/ZapfDingbats.afm -opt/lampp/lib/fonts/php_Courier-Bold.afm -opt/lampp/lib/fonts/php_Courier-BoldOblique.afm -opt/lampp/lib/fonts/php_Courier-Oblique.afm -opt/lampp/lib/fonts/php_Courier.afm -opt/lampp/lib/fonts/php_Helvetica-Bold.afm -opt/lampp/lib/fonts/php_Helvetica-BoldOblique.afm -opt/lampp/lib/fonts/php_Helvetica-Oblique.afm -opt/lampp/lib/fonts/php_Helvetica.afm -opt/lampp/lib/fonts/php_Symbol.afm -opt/lampp/lib/fonts/php_Times-Bold.afm -opt/lampp/lib/fonts/php_Times-BoldItalic.afm -opt/lampp/lib/fonts/php_Times-Italic.afm -opt/lampp/lib/fonts/php_Times-Roman.afm -opt/lampp/lib/fonts/php_ZapfDingbats.afm -opt/lampp/lib/fonts/php_a0100131.afm -opt/lampp/lib/fonts/php_a010013l.afm -opt/lampp/lib/gettext -opt/lampp/lib/gettext/hostname -opt/lampp/lib/gettext/project-id -opt/lampp/lib/gettext/urlget -opt/lampp/lib/gettext/user-email -#opt/lampp/lib/libapr-0.a -#opt/lampp/lib/libapr-0.la -opt/lampp/lib/libapr-0.so -opt/lampp/lib/libapr-0.so.0 -opt/lampp/lib/libapr-0.so.0.9.7 -#opt/lampp/lib/libapr-1.a -#opt/lampp/lib/libapr-1.la -opt/lampp/lib/libapr-1.so -opt/lampp/lib/libapr-1.so.0 -opt/lampp/lib/libapr-1.so.0.2.7 -#opt/lampp/lib/libapr.a -#opt/lampp/lib/libapreq2.a -#opt/lampp/lib/libapreq2.la -opt/lampp/lib/libapreq2.so -opt/lampp/lib/libapreq2.so.3 -opt/lampp/lib/libapreq2.so.3.5.7 -#opt/lampp/lib/libaprutil-0.a -#opt/lampp/lib/libaprutil-0.la -opt/lampp/lib/libaprutil-0.so -opt/lampp/lib/libaprutil-0.so.0 -opt/lampp/lib/libaprutil-0.so.0.9.7 -#opt/lampp/lib/libaprutil-1.a -#opt/lampp/lib/libaprutil-1.la -opt/lampp/lib/libaprutil-1.so -opt/lampp/lib/libaprutil-1.so.0 -opt/lampp/lib/libaprutil-1.so.0.2.7 -#opt/lampp/lib/libaprutil.a -opt/lampp/lib/libaprutil.so -opt/lampp/lib/libaprutil.so.0 -opt/lampp/lib/libaprutil.so.0.0.0 -#opt/lampp/lib/libbz2.a -#opt/lampp/lib/libc-client.a -opt/lampp/lib/libc-client.so -#opt/lampp/lib/libcrypto.a -opt/lampp/lib/libcrypto.so -opt/lampp/lib/libcrypto.so.0.9.8 -#opt/lampp/lib/libct.a -#opt/lampp/lib/libct.la -opt/lampp/lib/libct.so -opt/lampp/lib/libct.so.3 -opt/lampp/lib/libct.so.3.0.0 -#opt/lampp/lib/libcurl.a -#opt/lampp/lib/libcurl.la -opt/lampp/lib/libcurl.so -opt/lampp/lib/libcurl.so.3 -opt/lampp/lib/libcurl.so.3.0.0 -opt/lampp/lib/libdb.so.3 -#opt/lampp/lib/libecpg.a -opt/lampp/lib/libecpg.so -opt/lampp/lib/libecpg.so.5 -opt/lampp/lib/libecpg.so.5.1 -#opt/lampp/lib/libecpg_compat.a -opt/lampp/lib/libecpg_compat.so -opt/lampp/lib/libecpg_compat.so.2 -opt/lampp/lib/libecpg_compat.so.2.1 -#opt/lampp/lib/libexpat.a -opt/lampp/lib/libexpat.so -opt/lampp/lib/libexpat.so.0 -opt/lampp/lib/libexpat.so.0.1.0 -#opt/lampp/lib/libexslt.a -opt/lampp/lib/libexslt.la -opt/lampp/lib/libexslt.so -opt/lampp/lib/libexslt.so.0 -opt/lampp/lib/libexslt.so.0.8.6 -#opt/lampp/lib/libform.a -opt/lampp/lib/libform.so -opt/lampp/lib/libform.so.5 -opt/lampp/lib/libform.so.5.3 -opt/lampp/lib/libform_g.a -#opt/lampp/lib/libfreetype.a -#opt/lampp/lib/libfreetype.la -opt/lampp/lib/libfreetype.so -opt/lampp/lib/libfreetype.so.6 -opt/lampp/lib/libfreetype.so.6.3.5 -#opt/lampp/lib/libgd.a -opt/lampp/lib/libgd.so -opt/lampp/lib/libgd.so.2 -opt/lampp/lib/libgd.so.2.0.0 -#opt/lampp/lib/libgdbm.a -#opt/lampp/lib/libgdbm.la -opt/lampp/lib/libgdbm.so -opt/lampp/lib/libgdbm.so.2 -opt/lampp/lib/libgdbm.so.2.0.0 -opt/lampp/lib/libgettextlib-0.11.5.so -#opt/lampp/lib/libgettextlib.la -opt/lampp/lib/libgettextlib.so -opt/lampp/lib/libgettextsrc-0.11.5.so -#opt/lampp/lib/libgettextsrc.la -opt/lampp/lib/libgettextsrc.so -#opt/lampp/lib/libintl.a -#opt/lampp/lib/libintl.la -opt/lampp/lib/libintl.so -opt/lampp/lib/libintl.so.2 -opt/lampp/lib/libintl.so.2.2.0 -opt/lampp/lib/libjpeg.so -opt/lampp/lib/libjpeg.so.62 -opt/lampp/lib/libjpeg.so.62.0.0 -opt/lampp/lib/liblber-2.3.so.0 -opt/lampp/lib/liblber-2.3.so.0.1.6 -#opt/lampp/lib/liblber.la -opt/lampp/lib/liblber.so -opt/lampp/lib/libldap-2.3.so.0 -opt/lampp/lib/libldap-2.3.so.0.1.6 -#opt/lampp/lib/libldap.la -opt/lampp/lib/libldap.so -opt/lampp/lib/libldap_r-2.3.so.0 -opt/lampp/lib/libldap_r-2.3.so.0.1.6 -#opt/lampp/lib/libldap_r.la -opt/lampp/lib/libldap_r.so -#opt/lampp/lib/libmcrypt -#opt/lampp/lib/libmcrypt.la -opt/lampp/lib/libmcrypt.so -opt/lampp/lib/libmcrypt.so.4 -opt/lampp/lib/libmcrypt.so.4.4.7 -#opt/lampp/lib/libmenu.a -opt/lampp/lib/libmenu.so -opt/lampp/lib/libmenu.so.5 -opt/lampp/lib/libmenu.so.5.3 -opt/lampp/lib/libmenu_g.a -#opt/lampp/lib/libmhash.la -opt/lampp/lib/libmhash.so -opt/lampp/lib/libmhash.so.2 -opt/lampp/lib/libmhash.so.2.0.0 -#opt/lampp/lib/libming.a -opt/lampp/lib/libming.so -opt/lampp/lib/libming.so.0 -opt/lampp/lib/libming.so.0.3.0 -#opt/lampp/lib/libncurses.a -#opt/lampp/lib/libncurses.a -opt/lampp/lib/libncurses.so -opt/lampp/lib/libncurses.so.5 -opt/lampp/lib/libncurses.so.5.3 -opt/lampp/lib/libncurses_g.a -#opt/lampp/lib/libpanel.a -opt/lampp/lib/libpanel.so -opt/lampp/lib/libpanel.so.5 -opt/lampp/lib/libpanel.so.5.3 -opt/lampp/lib/libpanel_g.a -opt/lampp/lib/libpgport.a -#opt/lampp/lib/libpgtypes.a -opt/lampp/lib/libpgtypes.so -opt/lampp/lib/libpgtypes.so.2 -opt/lampp/lib/libpgtypes.so.2.1 -#opt/lampp/lib/libpng.a -opt/lampp/lib/libpng.so -opt/lampp/lib/libpng.so.3 -opt/lampp/lib/libpng.so.3.1.2.7 -#opt/lampp/lib/libpng12.a -opt/lampp/lib/libpng12.so -opt/lampp/lib/libpng12.so.0 -opt/lampp/lib/libpng12.so.0.1.2.7 -#opt/lampp/lib/libpq.a -opt/lampp/lib/libpq.so -opt/lampp/lib/libpq.so.4 -opt/lampp/lib/libpq.so.4.1 -#opt/lampp/lib/libsablot.a -#opt/lampp/lib/libsablot.la -opt/lampp/lib/libsablot.so -opt/lampp/lib/libsablot.so.0 -opt/lampp/lib/libsablot.so.0.100.0 -#opt/lampp/lib/libsqlite.a -#opt/lampp/lib/libsqlite.la -opt/lampp/lib/libsqlite.so -opt/lampp/lib/libsqlite.so.0 -opt/lampp/lib/libsqlite.so.0.8.6 -#opt/lampp/lib/libsqlite3.a -#opt/lampp/lib/libsqlite3.la -opt/lampp/lib/libsqlite3.so -opt/lampp/lib/libsqlite3.so.0 -opt/lampp/lib/libsqlite3.so.0.8.6 -#opt/lampp/lib/libssl.a -opt/lampp/lib/libssl.so -opt/lampp/lib/libssl.so.0.9.8 -#opt/lampp/lib/libsybdb.a -#opt/lampp/lib/libsybdb.la -opt/lampp/lib/libsybdb.so -opt/lampp/lib/libsybdb.so.5 -opt/lampp/lib/libsybdb.so.5.0.0 -#opt/lampp/lib/libtds.a -#opt/lampp/lib/libtds.la -opt/lampp/lib/libtds.so -opt/lampp/lib/libtds.so.4 -opt/lampp/lib/libtds.so.4.0.0 -#opt/lampp/lib/libtdssrv.a -#opt/lampp/lib/libtdssrv.la -opt/lampp/lib/libtdssrv.so -opt/lampp/lib/libtdssrv.so.2 -opt/lampp/lib/libtdssrv.so.2.0.0 -#opt/lampp/lib/libxml2.a -#opt/lampp/lib/libxml2.la -opt/lampp/lib/libxml2.so -opt/lampp/lib/libxml2.so.2 -opt/lampp/lib/libxml2.so.2.6.11 -#opt/lampp/lib/libxslt.a -#opt/lampp/lib/libxslt.la -opt/lampp/lib/libxslt.so -opt/lampp/lib/libxslt.so.1 -opt/lampp/lib/libxslt.so.1.1.8 -#opt/lampp/lib/libz.a -opt/lampp/lib/libz.so -opt/lampp/lib/libz.so.1 -opt/lampp/lib/libz.so.1.2.3 -opt/lampp/lib/libzzip-0.so.13 -opt/lampp/lib/libzzip-0.so.13.0.23 -#opt/lampp/lib/libzzip.a -#opt/lampp/lib/libzzip.la -opt/lampp/lib/libzzip.so -opt/lampp/lib/libzzipwrap-0.so.13 -opt/lampp/lib/libzzipwrap-0.so.13.0.23 -#opt/lampp/lib/libzzipwrap.a -#opt/lampp/lib/libzzipwrap.la -opt/lampp/lib/libzzipwrap.so -opt/lampp/lib/mysql -opt/lampp/lib/mysql/libdbug.a -opt/lampp/lib/mysql/libheap.a -opt/lampp/lib/mysql/libmyisam.a -opt/lampp/lib/mysql/libmyisammrg.a -#opt/lampp/lib/mysql/libmysqlclient.a -#opt/lampp/lib/mysql/libmysqlclient.la -opt/lampp/lib/mysql/libmysqlclient.so -opt/lampp/lib/mysql/libmysqlclient.so.15 -opt/lampp/lib/mysql/libmysqlclient.so.15.0.0 -#opt/lampp/lib/mysql/libmysqlclient_r.a -#opt/lampp/lib/mysql/libmysqlclient_r.la -opt/lampp/lib/mysql/libmysqlclient_r.so -opt/lampp/lib/mysql/libmysqlclient_r.so.15 -opt/lampp/lib/mysql/libmysqlclient_r.so.15.0.0 -opt/lampp/lib/mysql/libmystrings.a -opt/lampp/lib/mysql/libmysys.a -opt/lampp/lib/mysql/libvio.a -opt/lampp/lib/perl5 -opt/lampp/lib/perl5/5.8.7 -opt/lampp/lib/perl5/5.8.7/AnyDBM_File.pm -opt/lampp/lib/perl5/5.8.7/Attribute -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers.pm -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/Changes -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/README -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/Demo.pm -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/Descriptions.pm -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/MyClass.pm -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo2.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo3.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo4.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo_call.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo_chain.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo_cycle.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo_hashdir.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo_phases.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo_range.pl -opt/lampp/lib/perl5/5.8.7/Attribute/Handlers/demo/demo_rawdata.pl -opt/lampp/lib/perl5/5.8.7/AutoLoader.pm -opt/lampp/lib/perl5/5.8.7/AutoSplit.pm -opt/lampp/lib/perl5/5.8.7/B -opt/lampp/lib/perl5/5.8.7/B/assemble -opt/lampp/lib/perl5/5.8.7/B/cc_harness -opt/lampp/lib/perl5/5.8.7/B/disassemble -opt/lampp/lib/perl5/5.8.7/B/makeliblinks -opt/lampp/lib/perl5/5.8.7/Benchmark.pm -opt/lampp/lib/perl5/5.8.7/CGI -opt/lampp/lib/perl5/5.8.7/CGI.pm -opt/lampp/lib/perl5/5.8.7/CGI/Apache.pm -opt/lampp/lib/perl5/5.8.7/CGI/Carp.pm -opt/lampp/lib/perl5/5.8.7/CGI/Changes -opt/lampp/lib/perl5/5.8.7/CGI/Cookie.pm -opt/lampp/lib/perl5/5.8.7/CGI/Fast.pm -opt/lampp/lib/perl5/5.8.7/CGI/Pretty.pm -opt/lampp/lib/perl5/5.8.7/CGI/Push.pm -opt/lampp/lib/perl5/5.8.7/CGI/Switch.pm -opt/lampp/lib/perl5/5.8.7/CGI/Util.pm -opt/lampp/lib/perl5/5.8.7/CGI/eg -opt/lampp/lib/perl5/5.8.7/CGI/eg/RunMeFirst -opt/lampp/lib/perl5/5.8.7/CGI/eg/caution.xbm -opt/lampp/lib/perl5/5.8.7/CGI/eg/clickable_image.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/cookie.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/crash.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/customize.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/diff_upload.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/dna_small_gif.uu -opt/lampp/lib/perl5/5.8.7/CGI/eg/file_upload.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/frameset.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/index.html -opt/lampp/lib/perl5/5.8.7/CGI/eg/internal_links.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/javascript.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/make_links.pl -opt/lampp/lib/perl5/5.8.7/CGI/eg/monty.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/multiple_forms.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/nph-clock.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/nph-multipart.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/popup.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/save_state.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/tryit.cgi -opt/lampp/lib/perl5/5.8.7/CGI/eg/wilogo_gif.uu -opt/lampp/lib/perl5/5.8.7/CPAN -opt/lampp/lib/perl5/5.8.7/CPAN.pm -opt/lampp/lib/perl5/5.8.7/CPAN/Admin.pm -opt/lampp/lib/perl5/5.8.7/CPAN/Config.pm -opt/lampp/lib/perl5/5.8.7/CPAN/Config.pm~ -opt/lampp/lib/perl5/5.8.7/CPAN/Debug.pm -opt/lampp/lib/perl5/5.8.7/CPAN/FirstTime.pm -opt/lampp/lib/perl5/5.8.7/CPAN/HandleConfig.pm -opt/lampp/lib/perl5/5.8.7/CPAN/META.yml -opt/lampp/lib/perl5/5.8.7/CPAN/Nox.pm -opt/lampp/lib/perl5/5.8.7/CPAN/PAUSE2003.pub -opt/lampp/lib/perl5/5.8.7/CPAN/SIGNATURE -opt/lampp/lib/perl5/5.8.7/CPAN/Tarzip.pm -opt/lampp/lib/perl5/5.8.7/CPAN/Version.pm -opt/lampp/lib/perl5/5.8.7/Carp -opt/lampp/lib/perl5/5.8.7/Carp.pm -opt/lampp/lib/perl5/5.8.7/Carp/Heavy.pm -opt/lampp/lib/perl5/5.8.7/Class -opt/lampp/lib/perl5/5.8.7/Class/ISA -opt/lampp/lib/perl5/5.8.7/Class/ISA.pm -opt/lampp/lib/perl5/5.8.7/Class/ISA/ChangeLog -opt/lampp/lib/perl5/5.8.7/Class/Struct.pm -opt/lampp/lib/perl5/5.8.7/DB.pm -opt/lampp/lib/perl5/5.8.7/DBM_Filter -opt/lampp/lib/perl5/5.8.7/DBM_Filter.pm -opt/lampp/lib/perl5/5.8.7/DBM_Filter/Changes -opt/lampp/lib/perl5/5.8.7/DBM_Filter/compress.pm -opt/lampp/lib/perl5/5.8.7/DBM_Filter/encode.pm -opt/lampp/lib/perl5/5.8.7/DBM_Filter/int32.pm -opt/lampp/lib/perl5/5.8.7/DBM_Filter/null.pm -opt/lampp/lib/perl5/5.8.7/DBM_Filter/utf8.pm -opt/lampp/lib/perl5/5.8.7/Devel -opt/lampp/lib/perl5/5.8.7/Devel/SelfStubber.pm -opt/lampp/lib/perl5/5.8.7/Digest -opt/lampp/lib/perl5/5.8.7/Digest.pm -opt/lampp/lib/perl5/5.8.7/Digest/Changes -opt/lampp/lib/perl5/5.8.7/Digest/base.pm -opt/lampp/lib/perl5/5.8.7/Digest/file.pm -opt/lampp/lib/perl5/5.8.7/DirHandle.pm -opt/lampp/lib/perl5/5.8.7/Dumpvalue.pm -opt/lampp/lib/perl5/5.8.7/Encode -opt/lampp/lib/perl5/5.8.7/Encode/CN -opt/lampp/lib/perl5/5.8.7/Encode/CN/HZ.pm -opt/lampp/lib/perl5/5.8.7/Encode/Changes.e2x -opt/lampp/lib/perl5/5.8.7/Encode/ConfigLocal_PM.e2x -opt/lampp/lib/perl5/5.8.7/Encode/JP -opt/lampp/lib/perl5/5.8.7/Encode/JP/H2Z.pm -opt/lampp/lib/perl5/5.8.7/Encode/JP/JIS7.pm -opt/lampp/lib/perl5/5.8.7/Encode/KR -opt/lampp/lib/perl5/5.8.7/Encode/KR/2022_KR.pm -opt/lampp/lib/perl5/5.8.7/Encode/MIME -opt/lampp/lib/perl5/5.8.7/Encode/MIME/Header.pm -opt/lampp/lib/perl5/5.8.7/Encode/Makefile_PL.e2x -opt/lampp/lib/perl5/5.8.7/Encode/PerlIO.pod -opt/lampp/lib/perl5/5.8.7/Encode/README.e2x -opt/lampp/lib/perl5/5.8.7/Encode/Supported.pod -opt/lampp/lib/perl5/5.8.7/Encode/Unicode -opt/lampp/lib/perl5/5.8.7/Encode/Unicode/UTF7.pm -opt/lampp/lib/perl5/5.8.7/Encode/_PM.e2x -opt/lampp/lib/perl5/5.8.7/Encode/_T.e2x -opt/lampp/lib/perl5/5.8.7/Encode/encode.h -opt/lampp/lib/perl5/5.8.7/English.pm -opt/lampp/lib/perl5/5.8.7/Env.pm -opt/lampp/lib/perl5/5.8.7/Exporter -opt/lampp/lib/perl5/5.8.7/Exporter.pm -opt/lampp/lib/perl5/5.8.7/Exporter/Heavy.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils -opt/lampp/lib/perl5/5.8.7/ExtUtils/Changes -opt/lampp/lib/perl5/5.8.7/ExtUtils/Command -opt/lampp/lib/perl5/5.8.7/ExtUtils/Command.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Command/MM.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Constant -opt/lampp/lib/perl5/5.8.7/ExtUtils/Constant.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Constant/Base.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Constant/Utils.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Constant/XS.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Embed.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Install.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Installed.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Liblist -opt/lampp/lib/perl5/5.8.7/ExtUtils/Liblist.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Liblist/Kid.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MANIFEST.SKIP -opt/lampp/lib/perl5/5.8.7/ExtUtils/META.yml -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_Any.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_BeOS.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_Cygwin.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_DOS.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_MacOS.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_NW5.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_OS2.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_UWIN.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_Unix.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_VMS.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_Win32.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MM_Win95.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MY.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MakeMaker -opt/lampp/lib/perl5/5.8.7/ExtUtils/MakeMaker.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MakeMaker/FAQ.pod -opt/lampp/lib/perl5/5.8.7/ExtUtils/MakeMaker/Tutorial.pod -opt/lampp/lib/perl5/5.8.7/ExtUtils/MakeMaker/bytes.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/MakeMaker/vmsish.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Manifest.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Miniperl.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Mkbootstrap.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/Mksymlists.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/NOTES -opt/lampp/lib/perl5/5.8.7/ExtUtils/PATCHING -opt/lampp/lib/perl5/5.8.7/ExtUtils/Packlist.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/README -opt/lampp/lib/perl5/5.8.7/ExtUtils/TODO -opt/lampp/lib/perl5/5.8.7/ExtUtils/testlib.pm -opt/lampp/lib/perl5/5.8.7/ExtUtils/typemap -opt/lampp/lib/perl5/5.8.7/ExtUtils/xsubpp -opt/lampp/lib/perl5/5.8.7/Fatal.pm -opt/lampp/lib/perl5/5.8.7/File -opt/lampp/lib/perl5/5.8.7/File/Basename.pm -opt/lampp/lib/perl5/5.8.7/File/CheckTree.pm -opt/lampp/lib/perl5/5.8.7/File/Compare.pm -opt/lampp/lib/perl5/5.8.7/File/Copy.pm -opt/lampp/lib/perl5/5.8.7/File/DosGlob.pm -opt/lampp/lib/perl5/5.8.7/File/Find.pm -opt/lampp/lib/perl5/5.8.7/File/Path.pm -opt/lampp/lib/perl5/5.8.7/File/Spec -opt/lampp/lib/perl5/5.8.7/File/Spec.pm -opt/lampp/lib/perl5/5.8.7/File/Spec/Cygwin.pm -opt/lampp/lib/perl5/5.8.7/File/Spec/Epoc.pm -opt/lampp/lib/perl5/5.8.7/File/Spec/Functions.pm -opt/lampp/lib/perl5/5.8.7/File/Spec/Mac.pm -opt/lampp/lib/perl5/5.8.7/File/Spec/OS2.pm -opt/lampp/lib/perl5/5.8.7/File/Spec/Unix.pm -opt/lampp/lib/perl5/5.8.7/File/Spec/VMS.pm -opt/lampp/lib/perl5/5.8.7/File/Spec/Win32.pm -opt/lampp/lib/perl5/5.8.7/File/Temp.pm -opt/lampp/lib/perl5/5.8.7/File/stat.pm -opt/lampp/lib/perl5/5.8.7/FileCache.pm -opt/lampp/lib/perl5/5.8.7/FileHandle.pm -opt/lampp/lib/perl5/5.8.7/Filter -opt/lampp/lib/perl5/5.8.7/Filter/Simple -opt/lampp/lib/perl5/5.8.7/Filter/Simple.pm -opt/lampp/lib/perl5/5.8.7/Filter/Simple/Changes -opt/lampp/lib/perl5/5.8.7/Filter/Simple/README -opt/lampp/lib/perl5/5.8.7/FindBin.pm -opt/lampp/lib/perl5/5.8.7/Getopt -opt/lampp/lib/perl5/5.8.7/Getopt/Long -opt/lampp/lib/perl5/5.8.7/Getopt/Long.pm -opt/lampp/lib/perl5/5.8.7/Getopt/Long/CHANGES -opt/lampp/lib/perl5/5.8.7/Getopt/Long/README -opt/lampp/lib/perl5/5.8.7/Getopt/Std.pm -opt/lampp/lib/perl5/5.8.7/Hash -opt/lampp/lib/perl5/5.8.7/Hash/Util.pm -opt/lampp/lib/perl5/5.8.7/I18N -opt/lampp/lib/perl5/5.8.7/I18N/Collate.pm -opt/lampp/lib/perl5/5.8.7/I18N/LangTags -opt/lampp/lib/perl5/5.8.7/I18N/LangTags.pm -opt/lampp/lib/perl5/5.8.7/I18N/LangTags/ChangeLog -opt/lampp/lib/perl5/5.8.7/I18N/LangTags/Detect.pm -opt/lampp/lib/perl5/5.8.7/I18N/LangTags/List.pm -opt/lampp/lib/perl5/5.8.7/I18N/LangTags/README -opt/lampp/lib/perl5/5.8.7/IO -opt/lampp/lib/perl5/5.8.7/IO/Socket -opt/lampp/lib/perl5/5.8.7/IO/Socket/INET.pm -opt/lampp/lib/perl5/5.8.7/IO/Socket/UNIX.pm -opt/lampp/lib/perl5/5.8.7/IPC -opt/lampp/lib/perl5/5.8.7/IPC/Open2.pm -opt/lampp/lib/perl5/5.8.7/IPC/Open3.pm -opt/lampp/lib/perl5/5.8.7/List -opt/lampp/lib/perl5/5.8.7/List/Util.pm -opt/lampp/lib/perl5/5.8.7/Locale -opt/lampp/lib/perl5/5.8.7/Locale/Codes -opt/lampp/lib/perl5/5.8.7/Locale/Codes/ChangeLog -opt/lampp/lib/perl5/5.8.7/Locale/Codes/README -opt/lampp/lib/perl5/5.8.7/Locale/Constants.pm -opt/lampp/lib/perl5/5.8.7/Locale/Constants.pod -opt/lampp/lib/perl5/5.8.7/Locale/Country.pm -opt/lampp/lib/perl5/5.8.7/Locale/Country.pod -opt/lampp/lib/perl5/5.8.7/Locale/Currency.pm -opt/lampp/lib/perl5/5.8.7/Locale/Currency.pod -opt/lampp/lib/perl5/5.8.7/Locale/Language.pm -opt/lampp/lib/perl5/5.8.7/Locale/Language.pod -opt/lampp/lib/perl5/5.8.7/Locale/Maketext -opt/lampp/lib/perl5/5.8.7/Locale/Maketext.pm -opt/lampp/lib/perl5/5.8.7/Locale/Maketext.pod -opt/lampp/lib/perl5/5.8.7/Locale/Maketext/ChangeLog -opt/lampp/lib/perl5/5.8.7/Locale/Maketext/Guts.pm -opt/lampp/lib/perl5/5.8.7/Locale/Maketext/GutsLoader.pm -opt/lampp/lib/perl5/5.8.7/Locale/Maketext/README -opt/lampp/lib/perl5/5.8.7/Locale/Maketext/TPJ13.pod -opt/lampp/lib/perl5/5.8.7/Locale/Script.pm -opt/lampp/lib/perl5/5.8.7/Locale/Script.pod -opt/lampp/lib/perl5/5.8.7/Math -opt/lampp/lib/perl5/5.8.7/Math/BigFloat -opt/lampp/lib/perl5/5.8.7/Math/BigFloat.pm -opt/lampp/lib/perl5/5.8.7/Math/BigFloat/Trace.pm -opt/lampp/lib/perl5/5.8.7/Math/BigInt -opt/lampp/lib/perl5/5.8.7/Math/BigInt.pm -opt/lampp/lib/perl5/5.8.7/Math/BigInt/Calc.pm -opt/lampp/lib/perl5/5.8.7/Math/BigInt/CalcEmu.pm -opt/lampp/lib/perl5/5.8.7/Math/BigInt/Trace.pm -opt/lampp/lib/perl5/5.8.7/Math/BigRat.pm -opt/lampp/lib/perl5/5.8.7/Math/Complex.pm -opt/lampp/lib/perl5/5.8.7/Math/Trig.pm -opt/lampp/lib/perl5/5.8.7/Memoize -opt/lampp/lib/perl5/5.8.7/Memoize.pm -opt/lampp/lib/perl5/5.8.7/Memoize/AnyDBM_File.pm -opt/lampp/lib/perl5/5.8.7/Memoize/Expire.pm -opt/lampp/lib/perl5/5.8.7/Memoize/ExpireFile.pm -opt/lampp/lib/perl5/5.8.7/Memoize/ExpireTest.pm -opt/lampp/lib/perl5/5.8.7/Memoize/NDBM_File.pm -opt/lampp/lib/perl5/5.8.7/Memoize/README -opt/lampp/lib/perl5/5.8.7/Memoize/SDBM_File.pm -opt/lampp/lib/perl5/5.8.7/Memoize/Storable.pm -opt/lampp/lib/perl5/5.8.7/Memoize/TODO -opt/lampp/lib/perl5/5.8.7/NEXT -opt/lampp/lib/perl5/5.8.7/NEXT.pm -opt/lampp/lib/perl5/5.8.7/NEXT/Changes -opt/lampp/lib/perl5/5.8.7/NEXT/README -opt/lampp/lib/perl5/5.8.7/Net -opt/lampp/lib/perl5/5.8.7/Net/Changes.libnet -opt/lampp/lib/perl5/5.8.7/Net/Cmd.pm -opt/lampp/lib/perl5/5.8.7/Net/Config.eg -opt/lampp/lib/perl5/5.8.7/Net/Config.pm -opt/lampp/lib/perl5/5.8.7/Net/Domain.pm -opt/lampp/lib/perl5/5.8.7/Net/FTP -opt/lampp/lib/perl5/5.8.7/Net/FTP.pm -opt/lampp/lib/perl5/5.8.7/Net/FTP/A.pm -opt/lampp/lib/perl5/5.8.7/Net/FTP/E.pm -opt/lampp/lib/perl5/5.8.7/Net/FTP/I.pm -opt/lampp/lib/perl5/5.8.7/Net/FTP/L.pm -opt/lampp/lib/perl5/5.8.7/Net/FTP/dataconn.pm -opt/lampp/lib/perl5/5.8.7/Net/Hostname.eg -opt/lampp/lib/perl5/5.8.7/Net/NNTP.pm -opt/lampp/lib/perl5/5.8.7/Net/Netrc.pm -opt/lampp/lib/perl5/5.8.7/Net/POP3.pm -opt/lampp/lib/perl5/5.8.7/Net/Ping -opt/lampp/lib/perl5/5.8.7/Net/Ping.pm -opt/lampp/lib/perl5/5.8.7/Net/Ping/Changes -opt/lampp/lib/perl5/5.8.7/Net/README.libnet -opt/lampp/lib/perl5/5.8.7/Net/SMTP.pm -opt/lampp/lib/perl5/5.8.7/Net/Time.pm -opt/lampp/lib/perl5/5.8.7/Net/demos -opt/lampp/lib/perl5/5.8.7/Net/demos/ftp -opt/lampp/lib/perl5/5.8.7/Net/demos/inetd -opt/lampp/lib/perl5/5.8.7/Net/demos/nntp -opt/lampp/lib/perl5/5.8.7/Net/demos/nntp.mirror -opt/lampp/lib/perl5/5.8.7/Net/demos/pop3 -opt/lampp/lib/perl5/5.8.7/Net/demos/smtp.self -opt/lampp/lib/perl5/5.8.7/Net/demos/time -opt/lampp/lib/perl5/5.8.7/Net/hostent.pm -opt/lampp/lib/perl5/5.8.7/Net/libnetFAQ.pod -opt/lampp/lib/perl5/5.8.7/Net/netent.pm -opt/lampp/lib/perl5/5.8.7/Net/protoent.pm -opt/lampp/lib/perl5/5.8.7/Net/servent.pm -opt/lampp/lib/perl5/5.8.7/PerlIO -opt/lampp/lib/perl5/5.8.7/PerlIO.pm -opt/lampp/lib/perl5/5.8.7/PerlIO/via -opt/lampp/lib/perl5/5.8.7/PerlIO/via/QuotedPrint.pm -opt/lampp/lib/perl5/5.8.7/Pod -opt/lampp/lib/perl5/5.8.7/Pod/Checker.pm -opt/lampp/lib/perl5/5.8.7/Pod/Find.pm -opt/lampp/lib/perl5/5.8.7/Pod/Functions.pm -opt/lampp/lib/perl5/5.8.7/Pod/Html.pm -opt/lampp/lib/perl5/5.8.7/Pod/InputObjects.pm -opt/lampp/lib/perl5/5.8.7/Pod/LaTeX.pm -opt/lampp/lib/perl5/5.8.7/Pod/Man.pm -opt/lampp/lib/perl5/5.8.7/Pod/ParseLink.pm -opt/lampp/lib/perl5/5.8.7/Pod/ParseUtils.pm -opt/lampp/lib/perl5/5.8.7/Pod/Parser.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/BaseTo.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/GetOptsOO.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/ToChecker.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/ToMan.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/ToNroff.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/ToPod.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/ToRtf.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/ToText.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/ToTk.pm -opt/lampp/lib/perl5/5.8.7/Pod/Perldoc/ToXml.pm -opt/lampp/lib/perl5/5.8.7/Pod/PlainText.pm -opt/lampp/lib/perl5/5.8.7/Pod/Plainer.pm -opt/lampp/lib/perl5/5.8.7/Pod/Select.pm -opt/lampp/lib/perl5/5.8.7/Pod/Text -opt/lampp/lib/perl5/5.8.7/Pod/Text.pm -opt/lampp/lib/perl5/5.8.7/Pod/Text/Color.pm -opt/lampp/lib/perl5/5.8.7/Pod/Text/Overstrike.pm -opt/lampp/lib/perl5/5.8.7/Pod/Text/Termcap.pm -opt/lampp/lib/perl5/5.8.7/Pod/Usage.pm -opt/lampp/lib/perl5/5.8.7/Scalar -opt/lampp/lib/perl5/5.8.7/Scalar/Util.pm -opt/lampp/lib/perl5/5.8.7/Search -opt/lampp/lib/perl5/5.8.7/Search/Dict.pm -opt/lampp/lib/perl5/5.8.7/SelectSaver.pm -opt/lampp/lib/perl5/5.8.7/SelfLoader.pm -opt/lampp/lib/perl5/5.8.7/Shell.pm -opt/lampp/lib/perl5/5.8.7/Switch -opt/lampp/lib/perl5/5.8.7/Switch.pm -opt/lampp/lib/perl5/5.8.7/Switch/Changes -opt/lampp/lib/perl5/5.8.7/Switch/README -opt/lampp/lib/perl5/5.8.7/Symbol.pm -opt/lampp/lib/perl5/5.8.7/Term -opt/lampp/lib/perl5/5.8.7/Term/ANSIColor -opt/lampp/lib/perl5/5.8.7/Term/ANSIColor.pm -opt/lampp/lib/perl5/5.8.7/Term/ANSIColor/ChangeLog -opt/lampp/lib/perl5/5.8.7/Term/ANSIColor/README -opt/lampp/lib/perl5/5.8.7/Term/Cap.pm -opt/lampp/lib/perl5/5.8.7/Term/Complete.pm -opt/lampp/lib/perl5/5.8.7/Term/ReadLine.pm -opt/lampp/lib/perl5/5.8.7/Test -opt/lampp/lib/perl5/5.8.7/Test.pm -opt/lampp/lib/perl5/5.8.7/Test/Builder.pm -opt/lampp/lib/perl5/5.8.7/Test/Harness -opt/lampp/lib/perl5/5.8.7/Test/Harness.pm -opt/lampp/lib/perl5/5.8.7/Test/Harness/Assert.pm -opt/lampp/lib/perl5/5.8.7/Test/Harness/Changes -opt/lampp/lib/perl5/5.8.7/Test/Harness/Iterator.pm -opt/lampp/lib/perl5/5.8.7/Test/Harness/Point.pm -opt/lampp/lib/perl5/5.8.7/Test/Harness/Straps.pm -opt/lampp/lib/perl5/5.8.7/Test/Harness/TAP.pod -opt/lampp/lib/perl5/5.8.7/Test/More.pm -opt/lampp/lib/perl5/5.8.7/Test/Simple -opt/lampp/lib/perl5/5.8.7/Test/Simple.pm -opt/lampp/lib/perl5/5.8.7/Test/Simple/Changes -opt/lampp/lib/perl5/5.8.7/Test/Simple/README -opt/lampp/lib/perl5/5.8.7/Test/Simple/TODO -opt/lampp/lib/perl5/5.8.7/Test/Tutorial.pod -opt/lampp/lib/perl5/5.8.7/Text -opt/lampp/lib/perl5/5.8.7/Text/Abbrev.pm -opt/lampp/lib/perl5/5.8.7/Text/Balanced -opt/lampp/lib/perl5/5.8.7/Text/Balanced.pm -opt/lampp/lib/perl5/5.8.7/Text/Balanced/Changes -opt/lampp/lib/perl5/5.8.7/Text/Balanced/README -opt/lampp/lib/perl5/5.8.7/Text/ParseWords.pm -opt/lampp/lib/perl5/5.8.7/Text/Soundex.pm -opt/lampp/lib/perl5/5.8.7/Text/Tabs.pm -opt/lampp/lib/perl5/5.8.7/Text/TabsWrap -opt/lampp/lib/perl5/5.8.7/Text/TabsWrap/CHANGELOG -opt/lampp/lib/perl5/5.8.7/Text/Wrap.pm -opt/lampp/lib/perl5/5.8.7/Thread -opt/lampp/lib/perl5/5.8.7/Thread.pm -opt/lampp/lib/perl5/5.8.7/Thread/Queue.pm -opt/lampp/lib/perl5/5.8.7/Thread/Semaphore.pm -opt/lampp/lib/perl5/5.8.7/Tie -opt/lampp/lib/perl5/5.8.7/Tie/Array.pm -opt/lampp/lib/perl5/5.8.7/Tie/File.pm -opt/lampp/lib/perl5/5.8.7/Tie/Handle.pm -opt/lampp/lib/perl5/5.8.7/Tie/Hash.pm -opt/lampp/lib/perl5/5.8.7/Tie/Memoize.pm -opt/lampp/lib/perl5/5.8.7/Tie/RefHash.pm -opt/lampp/lib/perl5/5.8.7/Tie/Scalar.pm -opt/lampp/lib/perl5/5.8.7/Tie/SubstrHash.pm -opt/lampp/lib/perl5/5.8.7/Time -opt/lampp/lib/perl5/5.8.7/Time/Local.pm -opt/lampp/lib/perl5/5.8.7/Time/gmtime.pm -opt/lampp/lib/perl5/5.8.7/Time/localtime.pm -opt/lampp/lib/perl5/5.8.7/Time/tm.pm -opt/lampp/lib/perl5/5.8.7/UNIVERSAL.pm -opt/lampp/lib/perl5/5.8.7/Unicode -opt/lampp/lib/perl5/5.8.7/Unicode/Collate -opt/lampp/lib/perl5/5.8.7/Unicode/Collate.pm -opt/lampp/lib/perl5/5.8.7/Unicode/Collate/Changes -opt/lampp/lib/perl5/5.8.7/Unicode/Collate/README -opt/lampp/lib/perl5/5.8.7/Unicode/Collate/keys.txt -opt/lampp/lib/perl5/5.8.7/Unicode/README -opt/lampp/lib/perl5/5.8.7/Unicode/UCD.pm -opt/lampp/lib/perl5/5.8.7/User -opt/lampp/lib/perl5/5.8.7/User/grent.pm -opt/lampp/lib/perl5/5.8.7/User/pwent.pm -opt/lampp/lib/perl5/5.8.7/abbrev.pl -opt/lampp/lib/perl5/5.8.7/assert.pl -opt/lampp/lib/perl5/5.8.7/attributes.pm -opt/lampp/lib/perl5/5.8.7/auto -opt/lampp/lib/perl5/5.8.7/auto/POSIX -opt/lampp/lib/perl5/5.8.7/auto/POSIX/SigAction -opt/lampp/lib/perl5/5.8.7/auto/POSIX/SigAction/flags.al -opt/lampp/lib/perl5/5.8.7/auto/POSIX/SigAction/handler.al -opt/lampp/lib/perl5/5.8.7/auto/POSIX/SigAction/mask.al -opt/lampp/lib/perl5/5.8.7/auto/POSIX/SigAction/safe.al -opt/lampp/lib/perl5/5.8.7/autouse.pm -opt/lampp/lib/perl5/5.8.7/base.pm -opt/lampp/lib/perl5/5.8.7/bigfloat.pl -opt/lampp/lib/perl5/5.8.7/bigint.pl -opt/lampp/lib/perl5/5.8.7/bigint.pm -opt/lampp/lib/perl5/5.8.7/bignum.pm -opt/lampp/lib/perl5/5.8.7/bigrat.pl -opt/lampp/lib/perl5/5.8.7/bigrat.pm -opt/lampp/lib/perl5/5.8.7/blib.pm -opt/lampp/lib/perl5/5.8.7/bytes.pm -opt/lampp/lib/perl5/5.8.7/bytes_heavy.pl -opt/lampp/lib/perl5/5.8.7/cacheout.pl -opt/lampp/lib/perl5/5.8.7/charnames.pm -opt/lampp/lib/perl5/5.8.7/complete.pl -opt/lampp/lib/perl5/5.8.7/constant.pm -opt/lampp/lib/perl5/5.8.7/ctime.pl -opt/lampp/lib/perl5/5.8.7/dbm_filter_util.pl -opt/lampp/lib/perl5/5.8.7/diagnostics.pm -opt/lampp/lib/perl5/5.8.7/dotsh.pl -opt/lampp/lib/perl5/5.8.7/dumpvar.pl -opt/lampp/lib/perl5/5.8.7/exceptions.pl -opt/lampp/lib/perl5/5.8.7/fastcwd.pl -opt/lampp/lib/perl5/5.8.7/fields.pm -opt/lampp/lib/perl5/5.8.7/filetest.pm -opt/lampp/lib/perl5/5.8.7/find.pl -opt/lampp/lib/perl5/5.8.7/finddepth.pl -opt/lampp/lib/perl5/5.8.7/flush.pl -opt/lampp/lib/perl5/5.8.7/getcwd.pl -opt/lampp/lib/perl5/5.8.7/getopt.pl -opt/lampp/lib/perl5/5.8.7/getopts.pl -opt/lampp/lib/perl5/5.8.7/hostname.pl -opt/lampp/lib/perl5/5.8.7/i686-linux -opt/lampp/lib/perl5/5.8.7/i686-linux/.packlist -opt/lampp/lib/perl5/5.8.7/i686-linux/B -opt/lampp/lib/perl5/5.8.7/i686-linux/B.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Asmdata.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Assembler.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Bblock.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Bytecode.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/C.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/CC.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Concise.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Debug.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Deparse.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Disassembler.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Lint.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Showlex.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Stackobj.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Stash.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Terse.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/B/Xref.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/ByteLoader.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/EXTERN.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/INTERN.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/XSUB.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/av.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/cc_runtime.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/config.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/cop.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/cv.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/dosish.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/embed.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/embedvar.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/fakesdio.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/fakethr.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/form.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/gv.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/handy.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/hv.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/intrpvar.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/iperlsys.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/keywords.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/libperl.a -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/malloc_ctl.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/mg.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/nostdio.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/op.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/opcode.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/opnames.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/pad.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/patchlevel.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/perl.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/perlapi.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/perlio.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/perliol.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/perlsdio.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/perlsfio.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/perlvars.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/perly.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/pp.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/pp_proto.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/proto.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/reentr.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/reentr.inc -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/regcomp.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/regexp.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/regnodes.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/scope.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/sv.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/thrdvar.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/thread.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/uconfig.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/unixish.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/utf8.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/utfebcdic.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/util.h -opt/lampp/lib/perl5/5.8.7/i686-linux/CORE/warnings.h -opt/lampp/lib/perl5/5.8.7/i686-linux/Config.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Config.pod -opt/lampp/lib/perl5/5.8.7/i686-linux/Config_heavy.pl -opt/lampp/lib/perl5/5.8.7/i686-linux/Cwd.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Data -opt/lampp/lib/perl5/5.8.7/i686-linux/Data/Dumper.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Devel -opt/lampp/lib/perl5/5.8.7/i686-linux/Devel/DProf.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Devel/PPPort.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Devel/Peek.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Digest -opt/lampp/lib/perl5/5.8.7/i686-linux/Digest/MD5.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/DynaLoader.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/Alias.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/Byte.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/CJKConstants.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/CN.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/Config.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/EBCDIC.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/Encoder.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/Encoding.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/Guess.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/JP.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/KR.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/Symbol.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/TW.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Encode/Unicode.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Errno.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Fcntl.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Glob.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec/Cygwin.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec/Epoc.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec/Functions.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec/Mac.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec/OS2.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec/Unix.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec/VMS.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/File/Spec/Win32.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Filter -opt/lampp/lib/perl5/5.8.7/i686-linux/Filter/Util -opt/lampp/lib/perl5/5.8.7/i686-linux/Filter/Util/Call.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/I18N -opt/lampp/lib/perl5/5.8.7/i686-linux/I18N/Langinfo.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO -opt/lampp/lib/perl5/5.8.7/i686-linux/IO.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO/Dir.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO/File.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO/Handle.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO/Pipe.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO/Poll.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO/Seekable.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO/Select.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IO/Socket.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IPC -opt/lampp/lib/perl5/5.8.7/i686-linux/IPC/Msg.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IPC/Semaphore.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/IPC/SysV.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/MIME -opt/lampp/lib/perl5/5.8.7/i686-linux/MIME/Base64.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/MIME/QuotedPrint.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/O.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Opcode.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/POSIX.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/POSIX.pod -opt/lampp/lib/perl5/5.8.7/i686-linux/PerlIO -opt/lampp/lib/perl5/5.8.7/i686-linux/PerlIO/encoding.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/PerlIO/scalar.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/PerlIO/via.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/SDBM_File.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Safe.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Socket.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Storable.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Sys -opt/lampp/lib/perl5/5.8.7/i686-linux/Sys/Hostname.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Sys/Syslog.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Time -opt/lampp/lib/perl5/5.8.7/i686-linux/Time/HiRes.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/Unicode -opt/lampp/lib/perl5/5.8.7/i686-linux/Unicode/Normalize.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/XS -opt/lampp/lib/perl5/5.8.7/i686-linux/XS/APItest.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/XS/Typemap.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/XSLoader.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/attrs.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/auto -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/B -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/B/B.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/B/B.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/B/C -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/B/C/C.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/B/C/C.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/ByteLoader -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/ByteLoader/ByteLoader.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/ByteLoader/ByteLoader.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/CPAN -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/CPAN/.packlist -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Cwd -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Cwd/.packlist -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Cwd/Cwd.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Cwd/Cwd.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Data -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Data/Dumper -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Data/Dumper/Dumper.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Data/Dumper/Dumper.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/DProf -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/DProf/DProf.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/DProf/DProf.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/PPPort -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/PPPort/PPPort.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/PPPort/PPPort.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/Peek -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/Peek/Peek.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Devel/Peek/Peek.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Digest -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Digest/MD5 -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Digest/MD5/.packlist -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Digest/MD5/MD5.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Digest/MD5/MD5.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/DynaLoader -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/DynaLoader/DynaLoader.a -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/DynaLoader/autosplit.ix -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/DynaLoader/dl_expandspec.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/DynaLoader/dl_find_symbol_anywhere.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/DynaLoader/dl_findfile.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/DynaLoader/extralibs.ld -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Byte -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Byte/Byte.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Byte/Byte.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/CN -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/CN/CN.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/CN/CN.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/EBCDIC -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/EBCDIC/EBCDIC.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/EBCDIC/EBCDIC.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Encode.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Encode.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/JP -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/JP/JP.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/JP/JP.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/KR -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/KR/KR.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/KR/KR.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Symbol -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Symbol/Symbol.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Symbol/Symbol.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/TW -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/TW/TW.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/TW/TW.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Unicode -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Unicode/Unicode.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Encode/Unicode/Unicode.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Fcntl -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Fcntl/Fcntl.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Fcntl/Fcntl.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/File -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/File/Glob -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/File/Glob/Glob.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/File/Glob/Glob.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Filter -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Filter/Util -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Filter/Util/Call -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Filter/Util/Call/Call.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Filter/Util/Call/Call.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/I18N -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/I18N/Langinfo -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/I18N/Langinfo/Langinfo.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/I18N/Langinfo/Langinfo.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/I18N/Langinfo/autosplit.ix -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/IO -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/IO/IO.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/IO/IO.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/IPC -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/IPC/SysV -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/IPC/SysV/SysV.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/IPC/SysV/SysV.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/List -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/List/Util -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/List/Util/Util.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/List/Util/Util.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/MIME -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/MIME/Base64 -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/MIME/Base64/Base64.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/MIME/Base64/Base64.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Opcode -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Opcode/Opcode.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Opcode/Opcode.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/POSIX.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/POSIX.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/abs.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/alarm.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/assert.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/atan2.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/atexit.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/atof.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/atoi.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/atol.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/autosplit.ix -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/bsearch.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/calloc.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/chdir.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/chmod.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/chown.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/clearerr.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/closedir.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/cos.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/creat.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/div.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/errno.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/execl.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/execle.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/execlp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/execv.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/execve.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/execvp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/exit.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/exp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fabs.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fclose.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fcntl.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fdopen.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/feof.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/ferror.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fflush.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fgetc.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fgetpos.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fgets.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fileno.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fopen.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fork.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fprintf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fputc.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fputs.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fread.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/free.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/freopen.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fscanf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fseek.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fsetpos.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fstat.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fsync.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/ftell.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/fwrite.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getc.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getchar.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getegid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getenv.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/geteuid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getgid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getgrgid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getgrnam.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getgroups.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getlogin.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getpgrp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getpid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getppid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getpwnam.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getpwuid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/gets.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/getuid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/gmtime.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/isatty.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/kill.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/labs.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/ldiv.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/link.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/load_imports.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/localtime.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/log.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/longjmp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/malloc.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/memchr.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/memcmp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/memcpy.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/memmove.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/memset.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/mkdir.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/offsetof.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/opendir.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/perror.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/pow.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/printf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/putc.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/putchar.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/puts.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/qsort.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/raise.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/rand.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/readdir.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/realloc.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/redef.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/remove.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/rename.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/rewind.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/rewinddir.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/rmdir.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/scanf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/setbuf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/setjmp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/setvbuf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/siglongjmp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/sigsetjmp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/sin.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/sleep.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/sprintf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/sqrt.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/srand.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/sscanf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/stat.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strcat.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strchr.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strcmp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strcpy.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strcspn.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strerror.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strlen.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strncat.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strncmp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strncpy.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strpbrk.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strrchr.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strspn.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strstr.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/strtok.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/system.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/time.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/tmpfile.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/tolower.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/toupper.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/umask.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/ungetc.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/unimpl.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/unlink.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/usage.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/utime.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/vfprintf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/vprintf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/vsprintf.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/wait.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/POSIX/waitpid.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/encoding -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/encoding/encoding.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/encoding/encoding.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/scalar -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/scalar/scalar.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/scalar/scalar.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/via -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/via/via.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/PerlIO/via/via.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/SDBM_File -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/SDBM_File/SDBM_File.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/SDBM_File/SDBM_File.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Socket -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Socket/Socket.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Socket/Socket.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/CAN_FLOCK.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/Storable.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/Storable.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/_freeze.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/_retrieve.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/_store.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/_store_fd.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/autosplit.ix -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/fd_retrieve.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/freeze.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/lock_nstore.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/lock_retrieve.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/lock_store.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/logcarp.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/logcroak.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/nfreeze.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/nstore.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/nstore_fd.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/read_magic.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/retrieve.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/show_file_magic.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/store.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/store_fd.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Storable/thaw.al -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Sys -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Sys/Hostname -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Sys/Hostname/Hostname.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Sys/Hostname/Hostname.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Sys/Hostname/autosplit.ix -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Sys/Syslog -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Sys/Syslog/Syslog.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Sys/Syslog/Syslog.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Time -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Time/HiRes -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Time/HiRes/HiRes.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Time/HiRes/HiRes.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Unicode -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Unicode/Normalize -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Unicode/Normalize/Normalize.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/Unicode/Normalize/Normalize.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/XS -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/XS/APItest -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/XS/APItest/APItest.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/XS/APItest/APItest.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/XS/Typemap -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/XS/Typemap/Typemap.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/XS/Typemap/Typemap.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/attrs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/attrs/attrs.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/attrs/attrs.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/re -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/re/re.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/re/re.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/sdbm -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/sdbm/extralibs.ld -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/threads -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/threads/shared -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/threads/shared/shared.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/threads/shared/shared.so -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/threads/threads.bs -opt/lampp/lib/perl5/5.8.7/i686-linux/auto/threads/threads.so -opt/lampp/lib/perl5/5.8.7/i686-linux/encoding.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/lib.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/ops.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/perllocal.pod -opt/lampp/lib/perl5/5.8.7/i686-linux/re.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/threads -opt/lampp/lib/perl5/5.8.7/i686-linux/threads.pm -opt/lampp/lib/perl5/5.8.7/i686-linux/threads/shared.pm -opt/lampp/lib/perl5/5.8.7/if.pm -opt/lampp/lib/perl5/5.8.7/importenv.pl -opt/lampp/lib/perl5/5.8.7/integer.pm -opt/lampp/lib/perl5/5.8.7/less.pm -opt/lampp/lib/perl5/5.8.7/locale.pm -opt/lampp/lib/perl5/5.8.7/look.pl -opt/lampp/lib/perl5/5.8.7/newgetopt.pl -opt/lampp/lib/perl5/5.8.7/open.pm -opt/lampp/lib/perl5/5.8.7/open2.pl -opt/lampp/lib/perl5/5.8.7/open3.pl -opt/lampp/lib/perl5/5.8.7/overload.pm -opt/lampp/lib/perl5/5.8.7/perl5db.pl -opt/lampp/lib/perl5/5.8.7/pod -opt/lampp/lib/perl5/5.8.7/pod/a2p.pod -opt/lampp/lib/perl5/5.8.7/pod/perl.pod -opt/lampp/lib/perl5/5.8.7/pod/perl5004delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl5005delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl561delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl56delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl570delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl571delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl572delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl573delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl581delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl582delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl583delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl584delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl585delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl586delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl587delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perl58delta.pod -opt/lampp/lib/perl5/5.8.7/pod/perlaix.pod -opt/lampp/lib/perl5/5.8.7/pod/perlamiga.pod -opt/lampp/lib/perl5/5.8.7/pod/perlapi.pod -opt/lampp/lib/perl5/5.8.7/pod/perlapio.pod -opt/lampp/lib/perl5/5.8.7/pod/perlapollo.pod -opt/lampp/lib/perl5/5.8.7/pod/perlartistic.pod -opt/lampp/lib/perl5/5.8.7/pod/perlbeos.pod -opt/lampp/lib/perl5/5.8.7/pod/perlbook.pod -opt/lampp/lib/perl5/5.8.7/pod/perlboot.pod -opt/lampp/lib/perl5/5.8.7/pod/perlbot.pod -opt/lampp/lib/perl5/5.8.7/pod/perlbs2000.pod -opt/lampp/lib/perl5/5.8.7/pod/perlcall.pod -opt/lampp/lib/perl5/5.8.7/pod/perlce.pod -opt/lampp/lib/perl5/5.8.7/pod/perlcheat.pod -opt/lampp/lib/perl5/5.8.7/pod/perlclib.pod -opt/lampp/lib/perl5/5.8.7/pod/perlcn.pod -opt/lampp/lib/perl5/5.8.7/pod/perlcompile.pod -opt/lampp/lib/perl5/5.8.7/pod/perlcygwin.pod -opt/lampp/lib/perl5/5.8.7/pod/perldata.pod -opt/lampp/lib/perl5/5.8.7/pod/perldbmfilter.pod -opt/lampp/lib/perl5/5.8.7/pod/perldebguts.pod -opt/lampp/lib/perl5/5.8.7/pod/perldebtut.pod -opt/lampp/lib/perl5/5.8.7/pod/perldebug.pod -opt/lampp/lib/perl5/5.8.7/pod/perldelta.pod -opt/lampp/lib/perl5/5.8.7/pod/perldgux.pod -opt/lampp/lib/perl5/5.8.7/pod/perldiag.pod -opt/lampp/lib/perl5/5.8.7/pod/perldoc.pod -opt/lampp/lib/perl5/5.8.7/pod/perldos.pod -opt/lampp/lib/perl5/5.8.7/pod/perldsc.pod -opt/lampp/lib/perl5/5.8.7/pod/perlebcdic.pod -opt/lampp/lib/perl5/5.8.7/pod/perlembed.pod -opt/lampp/lib/perl5/5.8.7/pod/perlepoc.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq1.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq2.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq3.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq4.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq5.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq6.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq7.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq8.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfaq9.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfilter.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfork.pod -opt/lampp/lib/perl5/5.8.7/pod/perlform.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfreebsd.pod -opt/lampp/lib/perl5/5.8.7/pod/perlfunc.pod -opt/lampp/lib/perl5/5.8.7/pod/perlgpl.pod -opt/lampp/lib/perl5/5.8.7/pod/perlguts.pod -opt/lampp/lib/perl5/5.8.7/pod/perlhack.pod -opt/lampp/lib/perl5/5.8.7/pod/perlhist.pod -opt/lampp/lib/perl5/5.8.7/pod/perlhpux.pod -opt/lampp/lib/perl5/5.8.7/pod/perlhurd.pod -opt/lampp/lib/perl5/5.8.7/pod/perlintern.pod -opt/lampp/lib/perl5/5.8.7/pod/perlintro.pod -opt/lampp/lib/perl5/5.8.7/pod/perliol.pod -opt/lampp/lib/perl5/5.8.7/pod/perlipc.pod -opt/lampp/lib/perl5/5.8.7/pod/perlirix.pod -opt/lampp/lib/perl5/5.8.7/pod/perljp.pod -opt/lampp/lib/perl5/5.8.7/pod/perlko.pod -opt/lampp/lib/perl5/5.8.7/pod/perllexwarn.pod -opt/lampp/lib/perl5/5.8.7/pod/perllocale.pod -opt/lampp/lib/perl5/5.8.7/pod/perllol.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmachten.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmacos.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmacosx.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmint.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmod.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmodinstall.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmodlib.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmodstyle.pod -opt/lampp/lib/perl5/5.8.7/pod/perlmpeix.pod -opt/lampp/lib/perl5/5.8.7/pod/perlnetware.pod -opt/lampp/lib/perl5/5.8.7/pod/perlnewmod.pod -opt/lampp/lib/perl5/5.8.7/pod/perlnumber.pod -opt/lampp/lib/perl5/5.8.7/pod/perlobj.pod -opt/lampp/lib/perl5/5.8.7/pod/perlop.pod -opt/lampp/lib/perl5/5.8.7/pod/perlopenbsd.pod -opt/lampp/lib/perl5/5.8.7/pod/perlopentut.pod -opt/lampp/lib/perl5/5.8.7/pod/perlos2.pod -opt/lampp/lib/perl5/5.8.7/pod/perlos390.pod -opt/lampp/lib/perl5/5.8.7/pod/perlos400.pod -opt/lampp/lib/perl5/5.8.7/pod/perlothrtut.pod -opt/lampp/lib/perl5/5.8.7/pod/perlpacktut.pod -opt/lampp/lib/perl5/5.8.7/pod/perlplan9.pod -opt/lampp/lib/perl5/5.8.7/pod/perlpod.pod -opt/lampp/lib/perl5/5.8.7/pod/perlpodspec.pod -opt/lampp/lib/perl5/5.8.7/pod/perlport.pod -opt/lampp/lib/perl5/5.8.7/pod/perlqnx.pod -opt/lampp/lib/perl5/5.8.7/pod/perlre.pod -opt/lampp/lib/perl5/5.8.7/pod/perlref.pod -opt/lampp/lib/perl5/5.8.7/pod/perlreftut.pod -opt/lampp/lib/perl5/5.8.7/pod/perlrequick.pod -opt/lampp/lib/perl5/5.8.7/pod/perlreref.pod -opt/lampp/lib/perl5/5.8.7/pod/perlretut.pod -opt/lampp/lib/perl5/5.8.7/pod/perlrun.pod -opt/lampp/lib/perl5/5.8.7/pod/perlsec.pod -opt/lampp/lib/perl5/5.8.7/pod/perlsolaris.pod -opt/lampp/lib/perl5/5.8.7/pod/perlstyle.pod -opt/lampp/lib/perl5/5.8.7/pod/perlsub.pod -opt/lampp/lib/perl5/5.8.7/pod/perlsyn.pod -opt/lampp/lib/perl5/5.8.7/pod/perlthrtut.pod -opt/lampp/lib/perl5/5.8.7/pod/perltie.pod -opt/lampp/lib/perl5/5.8.7/pod/perltoc.pod -opt/lampp/lib/perl5/5.8.7/pod/perltodo.pod -opt/lampp/lib/perl5/5.8.7/pod/perltooc.pod -opt/lampp/lib/perl5/5.8.7/pod/perltoot.pod -opt/lampp/lib/perl5/5.8.7/pod/perltrap.pod -opt/lampp/lib/perl5/5.8.7/pod/perltru64.pod -opt/lampp/lib/perl5/5.8.7/pod/perltw.pod -opt/lampp/lib/perl5/5.8.7/pod/perlunicode.pod -opt/lampp/lib/perl5/5.8.7/pod/perluniintro.pod -opt/lampp/lib/perl5/5.8.7/pod/perlutil.pod -opt/lampp/lib/perl5/5.8.7/pod/perluts.pod -opt/lampp/lib/perl5/5.8.7/pod/perlvar.pod -opt/lampp/lib/perl5/5.8.7/pod/perlvmesa.pod -opt/lampp/lib/perl5/5.8.7/pod/perlvms.pod -opt/lampp/lib/perl5/5.8.7/pod/perlvos.pod -opt/lampp/lib/perl5/5.8.7/pod/perlwin32.pod -opt/lampp/lib/perl5/5.8.7/pod/perlxs.pod -opt/lampp/lib/perl5/5.8.7/pod/perlxstut.pod -opt/lampp/lib/perl5/5.8.7/pwd.pl -opt/lampp/lib/perl5/5.8.7/shellwords.pl -opt/lampp/lib/perl5/5.8.7/sigtrap.pm -opt/lampp/lib/perl5/5.8.7/sort.pm -opt/lampp/lib/perl5/5.8.7/stat.pl -opt/lampp/lib/perl5/5.8.7/strict.pm -opt/lampp/lib/perl5/5.8.7/subs.pm -opt/lampp/lib/perl5/5.8.7/syslog.pl -opt/lampp/lib/perl5/5.8.7/tainted.pl -opt/lampp/lib/perl5/5.8.7/termcap.pl -opt/lampp/lib/perl5/5.8.7/timelocal.pl -opt/lampp/lib/perl5/5.8.7/unicore -opt/lampp/lib/perl5/5.8.7/unicore/ArabicShaping.txt -opt/lampp/lib/perl5/5.8.7/unicore/BidiMirroring.txt -opt/lampp/lib/perl5/5.8.7/unicore/Blocks.txt -opt/lampp/lib/perl5/5.8.7/unicore/Canonical.pl -opt/lampp/lib/perl5/5.8.7/unicore/CaseFolding.txt -opt/lampp/lib/perl5/5.8.7/unicore/CombiningClass.pl -opt/lampp/lib/perl5/5.8.7/unicore/CompositionExclusions.txt -opt/lampp/lib/perl5/5.8.7/unicore/Decomposition.pl -opt/lampp/lib/perl5/5.8.7/unicore/EastAsianWidth.txt -opt/lampp/lib/perl5/5.8.7/unicore/Exact.pl -opt/lampp/lib/perl5/5.8.7/unicore/HangulSyllableType.txt -opt/lampp/lib/perl5/5.8.7/unicore/Index.txt -opt/lampp/lib/perl5/5.8.7/unicore/Jamo.txt -opt/lampp/lib/perl5/5.8.7/unicore/LineBreak.txt -opt/lampp/lib/perl5/5.8.7/unicore/Name.pl -opt/lampp/lib/perl5/5.8.7/unicore/NamedSequences.txt -opt/lampp/lib/perl5/5.8.7/unicore/NamesList.txt -opt/lampp/lib/perl5/5.8.7/unicore/NormalizationCorrections.txt -opt/lampp/lib/perl5/5.8.7/unicore/PVA.pl -opt/lampp/lib/perl5/5.8.7/unicore/PropList.txt -opt/lampp/lib/perl5/5.8.7/unicore/PropValueAliases.txt -opt/lampp/lib/perl5/5.8.7/unicore/Properties -opt/lampp/lib/perl5/5.8.7/unicore/PropertyAliases.txt -opt/lampp/lib/perl5/5.8.7/unicore/README.perl -opt/lampp/lib/perl5/5.8.7/unicore/ReadMe.txt -opt/lampp/lib/perl5/5.8.7/unicore/Scripts.txt -opt/lampp/lib/perl5/5.8.7/unicore/SpecialCasing.txt -opt/lampp/lib/perl5/5.8.7/unicore/StandardizedVariants.txt -opt/lampp/lib/perl5/5.8.7/unicore/To -opt/lampp/lib/perl5/5.8.7/unicore/To/Digit.pl -opt/lampp/lib/perl5/5.8.7/unicore/To/Fold.pl -opt/lampp/lib/perl5/5.8.7/unicore/To/Lower.pl -opt/lampp/lib/perl5/5.8.7/unicore/To/Title.pl -opt/lampp/lib/perl5/5.8.7/unicore/To/Upper.pl -opt/lampp/lib/perl5/5.8.7/unicore/UnicodeData.txt -opt/lampp/lib/perl5/5.8.7/unicore/lib -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/AL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/AN.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/B.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/BN.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/CS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/EN.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/ES.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/ET.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/L.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/LRE.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/LRO.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/NSM.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/ON.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/PDF.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/R.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/RLE.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/RLO.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/S.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/bc/WS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/A.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/AL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/AR.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/ATAR.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/ATB.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/ATBL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/B.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/BL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/BR.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/DA.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/DB.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/IS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/KV.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/L.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/NK.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/NR.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/OV.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/R.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ccc/VR.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/can.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/com.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/enc.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/fin.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/font.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/fra.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/init.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/iso.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/med.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/nar.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/nb.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/sml.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/sqr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/sub.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/sup.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/vert.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/dt/wide.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ea -opt/lampp/lib/perl5/5.8.7/unicore/lib/ea/A.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ea/F.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ea/H.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ea/N.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ea/Na.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/ea/W.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/AHex.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/ASCII.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Alnum.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Alpha.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Alphabet.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Any.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Arab.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Armn.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/AsciiHex.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Assigned.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Beng.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/BidiC.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/BidiCont.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Blank.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Bopo.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Brai.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Bugi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Buhd.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/C.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Canadian.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Cc.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Cf.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Cher.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Cn.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Cntrl.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Co.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Copt.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Cprt.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Cs.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Cyrl.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Dash.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Dash2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Dep.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Deprecat.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Deva.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Dia.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Diacriti.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Digit.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Dsrt.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Ethi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Ext.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Extender.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Geor.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Glag.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Goth.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/GrLink.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Graph.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Grapheme.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Grek.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Gujr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Guru.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Hang.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Hani.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Hano.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Hebr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Hex.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/HexDigit.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Hira.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Hyphen.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Hyphen2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/IDSB.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/IDST.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/IdContin.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/IdStart.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Ideo.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Ideograp.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/IdsBinar.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/IdsTrina.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InAegean.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InAlphab.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InAncie2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InAncien.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InArabi2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InArabi3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InArabi4.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InArabic.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InArmeni.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InArrows.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBasicL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBengal.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBlockE.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBopom2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBopomo.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBoxDra.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBraill.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBugine.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InBuhid.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InByzant.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCherok.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkCo2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkCo3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkCo4.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkCom.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkRad.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkStr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkSym.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkUn2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkUn3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCjkUni.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCombi2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCombi3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCombi4.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCombin.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InContro.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCoptic.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCurren.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCyprio.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCyril2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InCyrill.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InDesere.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InDevana.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InDingba.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InEnclo2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InEnclos.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InEthio2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InEthio3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InEthiop.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGenera.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGeomet.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGeorg2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGeorgi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGlagol.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGothic.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGreekA.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGreekE.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGujara.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InGurmuk.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHalfwi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHangu2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHangu3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHangul.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHanuno.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHebrew.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHighPr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHighSu.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InHiraga.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InIdeogr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InIpaExt.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InKanbun.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InKangxi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InKannad.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InKatak2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InKataka.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InKharos.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InKhmer.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InKhmerS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLao.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLatin1.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLatin2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLatin3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLatinE.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLetter.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLimbu.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLinea2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLinear.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InLowSur.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMalaya.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMathe2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMathem.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMisce2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMisce3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMisce4.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMisce5.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMiscel.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InModifi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMongol.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMusica.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InMyanma.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InNewTai.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InNumber.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InOgham.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InOldIta.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InOldPer.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InOptica.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InOriya.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InOsmany.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InPhone2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InPhonet.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InPrivat.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InRunic.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InShavia.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSinhal.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSmallF.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSpacin.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSpecia.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSupers.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSuppl2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSuppl3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSuppl4.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSuppl5.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSuppl6.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSupple.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSyloti.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InSyriac.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTagalo.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTagban.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTags.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTaiLe.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTaiXua.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTamil.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTelugu.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InThaana.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InThai.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTibeta.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InTifina.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InUgarit.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InUnifie.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InVaria2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InVariat.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InVertic.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InYiRadi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InYiSyll.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/InYijing.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/JoinC.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/JoinCont.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Kana.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Khar.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Khmr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Knda.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/L.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/LC.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/LOE.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Laoo.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Latn.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Limb.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/LinearB.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Ll.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Lm.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Lo.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/LogicalO.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Lower.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Lowercas.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Lt.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Lu.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/M.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Math.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Mc.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Me.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Mlym.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Mn.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Mong.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Mymr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/N.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/NChar.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Nd.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/NewTaiLu.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Nl.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/No.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Nonchara.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OAlpha.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/ODI.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OGrExt.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OIDC.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OIDS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OLower.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OMath.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OUpper.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Ogam.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OldItali.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OldPersi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Orya.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Osma.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OtherAlp.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OtherDef.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OtherGra.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OtherIdC.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OtherIdS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OtherLow.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OtherMat.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/OtherUpp.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/P.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/PatSyn.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/PatWS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/PatternS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/PatternW.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Pc.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Pd.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Pe.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Pf.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Pi.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Po.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Print.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Ps.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Punct.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/QMark.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Qaai.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Quotatio.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Radical.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Radical2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Runr.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/S.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/SD.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/STerm.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Sc.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Shaw.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Sinh.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Sk.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Sm.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/So.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/SoftDott.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Space.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/SpacePer.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Sterm2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/SylotiNa.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Syrc.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Tagb.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/TaiLe.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Taml.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Telu.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Term.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Terminal.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Tfng.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Tglg.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Thaa.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Thai.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Tibt.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Title.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/UIdeo.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Ugar.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/UnifiedI.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Upper.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Uppercas.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/VS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Variatio.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/WSpace.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/WhiteSpa.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Word.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/XDigit.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Yiii.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Z.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Zl.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Zp.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Zs.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/Zyyy.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/_CanonDC.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/_CaseIgn.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/gc_sc/_CombAbo.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/hst -opt/lampp/lib/perl5/5.8.7/unicore/lib/hst/L.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/hst/LV.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/hst/LVT.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/hst/T.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/hst/V.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/jt -opt/lampp/lib/perl5/5.8.7/unicore/lib/jt/C.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/jt/D.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/jt/R.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/jt/U.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/AI.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/AL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/B2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/BA.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/BB.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/BK.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/CB.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/CL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/CM.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/CR.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/EX.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/GL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/H2.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/H3.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/HY.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/ID.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/IN.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/IS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/JL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/JT.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/JV.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/LF.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/NL.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/NS.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/NU.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/OP.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/PO.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/PR.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/QU.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/SA.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/SG.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/SP.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/SY.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/WJ.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/XX.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/lb/ZW.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/nt -opt/lampp/lib/perl5/5.8.7/unicore/lib/nt/De.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/nt/Di.pl -opt/lampp/lib/perl5/5.8.7/unicore/lib/nt/Nu.pl -opt/lampp/lib/perl5/5.8.7/unicore/mktables -opt/lampp/lib/perl5/5.8.7/unicore/mktables.lst -opt/lampp/lib/perl5/5.8.7/unicore/version -opt/lampp/lib/perl5/5.8.7/utf8.pm -opt/lampp/lib/perl5/5.8.7/utf8_heavy.pl -opt/lampp/lib/perl5/5.8.7/validate.pl -opt/lampp/lib/perl5/5.8.7/vars.pm -opt/lampp/lib/perl5/5.8.7/vmsish.pm -opt/lampp/lib/perl5/5.8.7/warnings -opt/lampp/lib/perl5/5.8.7/warnings.pm -opt/lampp/lib/perl5/5.8.7/warnings/register.pm -opt/lampp/lib/perl5/site_perl -opt/lampp/lib/perl5/site_perl/5.8.7 -opt/lampp/lib/perl5/site_perl/5.8.7/Archive -opt/lampp/lib/perl5/site_perl/5.8.7/Archive/Tar -opt/lampp/lib/perl5/site_perl/5.8.7/Archive/Tar.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Archive/Tar/Constant.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Archive/Tar/File.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Bundle -opt/lampp/lib/perl5/site_perl/5.8.7/Bundle/LWP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/DBD -opt/lampp/lib/perl5/site_perl/5.8.7/DBD/DBD-PgPP.ja.pod -opt/lampp/lib/perl5/site_perl/5.8.7/DBD/PgPP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Data -opt/lampp/lib/perl5/site_perl/5.8.7/Data/ShowTable.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder.pod -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/C -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/C/grammar.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/CallbackMap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/FunctionMap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/MapUtil.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/PODTemplate.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/ParseSource.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/StructureMap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/TypeMap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/XSBuilder/WrapXS.pm -opt/lampp/lib/perl5/site_perl/5.8.7/ExtUtils/xsbuilder.osc2002.pod -opt/lampp/lib/perl5/site_perl/5.8.7/File -opt/lampp/lib/perl5/site_perl/5.8.7/File/Listing.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTML -opt/lampp/lib/perl5/site_perl/5.8.7/HTML/Form.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTML/Tagset.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Cookies -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Cookies.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Cookies/Microsoft.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Cookies/Netscape.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Daemon.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Date.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Headers -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Headers.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Headers/Auth.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Headers/ETag.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Headers/Util.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Message.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Negotiate.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Request -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Request.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Request/Common.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Response.pm -opt/lampp/lib/perl5/site_perl/5.8.7/HTTP/Status.pm -opt/lampp/lib/perl5/site_perl/5.8.7/IO -opt/lampp/lib/perl5/site_perl/5.8.7/IO/Zlib.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP -opt/lampp/lib/perl5/site_perl/5.8.7/LWP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Authen -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Authen/Basic.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Authen/Digest.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Authen/Ntlm.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/ConnCache.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Debug.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/DebugFile.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/MediaTypes.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/MemberMixin.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/GHTTP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/cpan.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/data.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/file.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/ftp.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/gopher.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/http.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/http10.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/https.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/https10.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/loopback.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/mailto.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/nntp.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Protocol/nogo.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/RobotUA.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/Simple.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/UserAgent.pm -opt/lampp/lib/perl5/site_perl/5.8.7/LWP/media.types -opt/lampp/lib/perl5/site_perl/5.8.7/Net -opt/lampp/lib/perl5/site_perl/5.8.7/Net/HTTP -opt/lampp/lib/perl5/site_perl/5.8.7/Net/HTTP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Net/HTTP/Methods.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Net/HTTP/NB.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Net/HTTPS.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Net/Telnet.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Parse -opt/lampp/lib/perl5/site_perl/5.8.7/Parse/RecDescent.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Parse/RecDescent.pod -opt/lampp/lib/perl5/site_perl/5.8.7/Term -opt/lampp/lib/perl5/site_perl/5.8.7/Term/ReadLine -opt/lampp/lib/perl5/site_perl/5.8.7/Term/ReadLine/Perl.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Term/ReadLine/readline.pm -opt/lampp/lib/perl5/site_perl/5.8.7/Tie -opt/lampp/lib/perl5/site_perl/5.8.7/Tie/IxHash.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI -opt/lampp/lib/perl5/site_perl/5.8.7/URI.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/Escape.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/Heuristic.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/QueryParam.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/Split.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/URL.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/WithBase.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/_foreign.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/_generic.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/_ldap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/_login.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/_query.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/_segment.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/_server.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/_userpass.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/data.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file/Base.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file/FAT.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file/Mac.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file/OS2.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file/QNX.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file/Unix.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/file/Win32.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/ftp.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/gopher.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/http.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/https.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/ldap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/ldapi.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/ldaps.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/mailto.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/mms.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/news.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/nntp.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/pop.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/rlogin.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/rsync.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/rtsp.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/rtspu.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/sip.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/sips.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/snews.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/ssh.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/telnet.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/tn3270.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/urn -opt/lampp/lib/perl5/site_perl/5.8.7/URI/urn.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/urn/isbn.pm -opt/lampp/lib/perl5/site_perl/5.8.7/URI/urn/oid.pm -opt/lampp/lib/perl5/site_perl/5.8.7/WWW -opt/lampp/lib/perl5/site_perl/5.8.7/WWW/RobotRules -opt/lampp/lib/perl5/site_perl/5.8.7/WWW/RobotRules.pm -opt/lampp/lib/perl5/site_perl/5.8.7/WWW/RobotRules/AnyDBM_File.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Base64.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Brigade.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Bucket.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/BucketAlloc.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/BucketType.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Const.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Date.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/DummyVersions.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Error.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Finfo.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/IpSubnet.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/OS.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/PerlIO.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Pool.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Apache2.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Apache2.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/CGI.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/CGI.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Cookie.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Cookie.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Error.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Error.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Hook.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Hook.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Param.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Param.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Parser.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Request/Parser.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/SockAddr.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Socket.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Status.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/String.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Table.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/ThreadMutex.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/URI.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/UUID.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/Util.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/APR/XSLoader.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/Test.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/Test5005compat.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestBuild.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestClient.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestCommon.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestCommonPost.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestConfig.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestConfigC.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestConfigData.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestConfigPHP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestConfigParrot.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestConfigParse.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestConfigPerl.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestHandler.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestHarness.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestHarnessPHP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestMB.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestMM.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestPerlDB.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestReport.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestReportPerl.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestRequest.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestRun.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestRunPHP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestRunParrot.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestRunPerl.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestSSLCA.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestServer.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestSmoke.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestSmokePerl.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestSort.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestTrace.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache/TestUtil.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2 -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Access.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Build.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/BuildConfig.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/CmdParms.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Command.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Connection.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Const.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Cookie.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Directive.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Filter.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/FilterRec.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/HookRun.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Log.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/MPM.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Module.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/ParseSource.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/PerlSections -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/PerlSections.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/PerlSections/Dump.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Process.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Reload.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Request.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/RequestIO.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/RequestRec.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/RequestUtil.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Resource.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Response.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/ServerRec.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/ServerUtil.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/SizeLimit.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/SourceTables.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Status.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/SubProcess.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/SubRequest.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/URI.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Upload.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/Util.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/XSLoader.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/compat.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Apache2/porting.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Bundle -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Bundle/Apache2.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Bundle/ApacheTest.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Bundle/DBD -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Bundle/DBD/mysql.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Bundle/DBI.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Compress -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Compress/Zlib.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/DBM.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/ExampleP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/File.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/InterBase -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/InterBase.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/InterBase/GetInfo.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/InterBase/TypeInfo.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/NullP.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/Oracle -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/Oracle.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/Oracle/GetInfo.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/Proxy.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/SQLite.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/SQLite2.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/Sponge.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/getsqlite.pl -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/mysql -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/mysql.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/mysql/GetInfo.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBD/mysql/INSTALL.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Changes.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Const -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Const/GetInfo -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Const/GetInfo/ANSI.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Const/GetInfo/ODBC.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Const/GetInfoReturn.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Const/GetInfoType.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/DBD -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/DBD.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/DBD/Metadata.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/FAQ.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Profile.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/ProfileData.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/ProfileDumper -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/ProfileDumper.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/ProfileDumper/Apache.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/ProxyServer.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/PurePerl.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/Roadmap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/SQL -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/SQL/Nano.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/DBI/W32ODBC.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/HTML -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/HTML/Entities.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/HTML/Filter.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/HTML/HeadParser.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/HTML/LinkExtor.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/HTML/Parser.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/HTML/PullParser.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/HTML/TokeParser.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/BuildMM.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/BuildOptions.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/CScan.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/Code.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/Config.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/Const.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/FunctionMap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/Global.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/MM.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/Manifest.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/MapUtil.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/MethodLookup.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/ParseSource.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/PerlRun.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/PerlRunPrefork.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/Registry.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/RegistryBB.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/RegistryCooker.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/RegistryLoader.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/RegistryPrefork.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/StructureMap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/TestReport.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/TestRun.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/TypeMap.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/Util.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/ModPerl/WrapXS.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Mysql -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Mysql.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Mysql/Statement.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Oraperl.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Roadmap.pod -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Term -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Term/ReadKey.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Win32 -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/Win32/DBIODBC.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/APR.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/APR.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Base64 -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Base64/Base64.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Base64/Base64.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Brigade -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Brigade/Brigade.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Brigade/Brigade.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Bucket -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Bucket/Bucket.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Bucket/Bucket.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/BucketAlloc -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/BucketAlloc/BucketAlloc.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/BucketAlloc/BucketAlloc.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/BucketType -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/BucketType/BucketType.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/BucketType/BucketType.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Const -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Const/Const.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Const/Const.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Date -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Date/Date.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Date/Date.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Error -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Error/Error.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Error/Error.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Finfo -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Finfo/Finfo.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Finfo/Finfo.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/IpSubnet -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/IpSubnet/IpSubnet.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/IpSubnet/IpSubnet.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/OS -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/OS/OS.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/OS/OS.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/PerlIO -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/PerlIO/PerlIO.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/PerlIO/PerlIO.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Pool -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Pool/Pool.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Pool/Pool.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Apache2 -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Apache2/Apache2.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Apache2/Apache2.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/CGI -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/CGI/CGI.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/CGI/CGI.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Cookie -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Cookie/Cookie.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Cookie/Cookie.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Error -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Error/Error.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Error/Error.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Hook -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Hook/Hook.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Hook/Hook.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Param -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Param/Param.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Param/Param.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Parser -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Parser/Parser.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Parser/Parser.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Request.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Request/Request.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/SockAddr -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/SockAddr/SockAddr.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/SockAddr/SockAddr.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Socket -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Socket/Socket.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Socket/Socket.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Status -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Status/Status.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Status/Status.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/String -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/String/String.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/String/String.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Table -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Table/Table.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Table/Table.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/ThreadMutex -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/ThreadMutex/ThreadMutex.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/ThreadMutex/ThreadMutex.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/URI -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/URI/URI.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/URI/URI.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/UUID -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/UUID/UUID.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/UUID/UUID.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Util -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Util/Util.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/APR/Util/Util.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2 -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Access -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Access/Access.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Access/Access.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Build -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Build/autosplit.ix -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/CmdParms -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/CmdParms/CmdParms.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/CmdParms/CmdParms.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Command -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Command/Command.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Command/Command.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Connection -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Connection/Connection.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Connection/Connection.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Const -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Const/Const.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Const/Const.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Directive -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Directive/Directive.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Directive/Directive.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Filter -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Filter/Filter.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Filter/Filter.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/FilterRec -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/FilterRec/FilterRec.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/FilterRec/FilterRec.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/HookRun -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/HookRun/HookRun.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/HookRun/HookRun.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Log -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Log/Log.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Log/Log.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/MPM -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/MPM/MPM.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/MPM/MPM.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Module -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Module/Module.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Module/Module.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Process -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Process/Process.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Process/Process.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestIO -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestIO/RequestIO.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestIO/RequestIO.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestRec -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestRec/RequestRec.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestRec/RequestRec.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestUtil -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestUtil/RequestUtil.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/RequestUtil/RequestUtil.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Response -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Response/Response.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Response/Response.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/ServerRec -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/ServerRec/ServerRec.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/ServerRec/ServerRec.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/ServerUtil -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/ServerUtil/ServerUtil.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/ServerUtil/ServerUtil.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/SubProcess -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/SubProcess/SubProcess.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/SubProcess/SubProcess.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/SubRequest -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/SubRequest/SubRequest.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/SubRequest/SubRequest.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/URI -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/URI/URI.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/URI/URI.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Util -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Util/Util.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/Util/Util.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Apache2/typemap -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Archive -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Archive/Tar -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Archive/Tar/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Compress -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Compress/Zlib -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Compress/Zlib/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Compress/Zlib/Zlib.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Compress/Zlib/Zlib.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Compress/Zlib/autosplit.ix -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/InterBase -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/InterBase/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/InterBase/InterBase.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/InterBase/InterBase.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/Oracle -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/Oracle/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/Oracle/Oracle.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/Oracle/Oracle.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/Oracle/Oracle.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/Oracle/dbdimp.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/Oracle/mk.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/Oracle/ocitrace.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/PgPP -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/PgPP/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/SQLite -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/SQLite/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/SQLite/SQLite.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/SQLite/SQLite.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/SQLite2 -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/SQLite2/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/SQLite2/SQLite2.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/SQLite2/SQLite2.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/mysql -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/mysql/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/mysql/mysql.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBD/mysql/mysql.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/DBI.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/DBI.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/DBIXS.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/Driver.xst -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/Driver_xst.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/dbd_xsh.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/dbi_sql.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/dbipport.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/DBI/dbivport.h -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Data -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Data/ShowTable -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Data/ShowTable/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ExtUtils -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ExtUtils/XSBuilder -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ExtUtils/XSBuilder/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/HTML -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/HTML/Parser -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/HTML/Parser/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/HTML/Parser/Parser.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/HTML/Parser/Parser.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/HTML/Tagset -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/HTML/Tagset/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/IO -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/IO/Zlib -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/IO/Zlib/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/LWP -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/LWP/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Const -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Const/Const.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Const/Const.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Global -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Global/Global.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Global/Global.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Util -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Util/Util.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/ModPerl/Util/Util.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Net -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Net/Telnet -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Net/Telnet/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Parse -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Parse/RecDescent -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Parse/RecDescent/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Term -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Term/ReadKey -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Term/ReadKey/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Term/ReadKey/ReadKey.bs -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Term/ReadKey/ReadKey.so -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Term/ReadKey/autosplit.ix -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Term/ReadLine -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Term/ReadLine/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Tie -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Tie/IxHash -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/Tie/IxHash/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/URI -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/URI/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/libapreq2 -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/libapreq2/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/mod_perl2 -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/auto/mod_perl2/.packlist -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/mod_perl2.pm -opt/lampp/lib/perl5/site_perl/5.8.7/i686-linux/oraperl.ph -opt/lampp/lib/perl5/site_perl/5.8.7/lwpcook.pod -opt/lampp/lib/perl5/site_perl/5.8.7/lwptut.pod -opt/lampp/lib/php -opt/lampp/lib/php/.channels -opt/lampp/lib/php/.channels/.alias -opt/lampp/lib/php/.channels/.alias/pear.txt -opt/lampp/lib/php/.channels/.alias/pecl.txt -opt/lampp/lib/php/.channels/__uri.reg -opt/lampp/lib/php/.channels/pear.php.net.reg -opt/lampp/lib/php/.channels/pecl.php.net.reg -opt/lampp/lib/php/.depdb -opt/lampp/lib/php/.depdblock -opt/lampp/lib/php/.filemap -opt/lampp/lib/php/.lock -opt/lampp/lib/php/.registry -opt/lampp/lib/php/.registry/.channel.__uri -opt/lampp/lib/php/.registry/.channel.pecl.php.net -opt/lampp/lib/php/.registry/archive_tar.reg -opt/lampp/lib/php/.registry/auth.reg -opt/lampp/lib/php/.registry/auth_http.reg -opt/lampp/lib/php/.registry/auth_prefmanager.reg -opt/lampp/lib/php/.registry/auth_radius.reg -opt/lampp/lib/php/.registry/auth_sasl.reg -opt/lampp/lib/php/.registry/benchmark.reg -opt/lampp/lib/php/.registry/cache.reg -opt/lampp/lib/php/.registry/cache_lite.reg -opt/lampp/lib/php/.registry/config.reg -opt/lampp/lib/php/.registry/console_getopt.reg -opt/lampp/lib/php/.registry/console_table.reg -opt/lampp/lib/php/.registry/contact_vcard_build.reg -opt/lampp/lib/php/.registry/contact_vcard_parse.reg -opt/lampp/lib/php/.registry/crypt_cbc.reg -opt/lampp/lib/php/.registry/crypt_chap.reg -opt/lampp/lib/php/.registry/crypt_rc4.reg -opt/lampp/lib/php/.registry/crypt_xtea.reg -opt/lampp/lib/php/.registry/date.reg -opt/lampp/lib/php/.registry/db.reg -opt/lampp/lib/php/.registry/db_dataobject.reg -opt/lampp/lib/php/.registry/db_ldap.reg -opt/lampp/lib/php/.registry/db_nestedset.reg -opt/lampp/lib/php/.registry/db_pager.reg -opt/lampp/lib/php/.registry/db_querytool.reg -opt/lampp/lib/php/.registry/dba.reg -opt/lampp/lib/php/.registry/file.reg -opt/lampp/lib/php/.registry/file_find.reg -opt/lampp/lib/php/.registry/file_htaccess.reg -opt/lampp/lib/php/.registry/file_passwd.reg -opt/lampp/lib/php/.registry/file_searchreplace.reg -opt/lampp/lib/php/.registry/file_smbpasswd.reg -opt/lampp/lib/php/.registry/fsm.reg -opt/lampp/lib/php/.registry/html_bbcodeparser.reg -opt/lampp/lib/php/.registry/html_common.reg -opt/lampp/lib/php/.registry/html_crypt.reg -opt/lampp/lib/php/.registry/html_css.reg -opt/lampp/lib/php/.registry/html_form.reg -opt/lampp/lib/php/.registry/html_javascript.reg -opt/lampp/lib/php/.registry/html_menu.reg -opt/lampp/lib/php/.registry/html_page.reg -opt/lampp/lib/php/.registry/html_progress.reg -opt/lampp/lib/php/.registry/html_quickform.reg -opt/lampp/lib/php/.registry/html_select_common.reg -opt/lampp/lib/php/.registry/html_table.reg -opt/lampp/lib/php/.registry/html_template_it.reg -opt/lampp/lib/php/.registry/html_template_phplib.reg -opt/lampp/lib/php/.registry/html_template_sigma.reg -opt/lampp/lib/php/.registry/html_template_xipe.reg -opt/lampp/lib/php/.registry/html_treemenu.reg -opt/lampp/lib/php/.registry/http.reg -opt/lampp/lib/php/.registry/http_request.reg -opt/lampp/lib/php/.registry/http_upload.reg -opt/lampp/lib/php/.registry/image_color.reg -opt/lampp/lib/php/.registry/image_gis.reg -opt/lampp/lib/php/.registry/image_graphviz.reg -opt/lampp/lib/php/.registry/image_iptc.reg -opt/lampp/lib/php/.registry/log.reg -opt/lampp/lib/php/.registry/mail.reg -opt/lampp/lib/php/.registry/mail_mime.reg -opt/lampp/lib/php/.registry/mail_queue.reg -opt/lampp/lib/php/.registry/math_basex.reg -opt/lampp/lib/php/.registry/math_fibonacci.reg -opt/lampp/lib/php/.registry/math_integer.reg -opt/lampp/lib/php/.registry/math_matrix.reg -opt/lampp/lib/php/.registry/math_rpn.reg -opt/lampp/lib/php/.registry/math_stats.reg -opt/lampp/lib/php/.registry/math_trigop.reg -opt/lampp/lib/php/.registry/math_vector.reg -opt/lampp/lib/php/.registry/mdb.reg -opt/lampp/lib/php/.registry/mdb_querytool.reg -opt/lampp/lib/php/.registry/mp3_id.reg -opt/lampp/lib/php/.registry/net_checkip.reg -opt/lampp/lib/php/.registry/net_dict.reg -opt/lampp/lib/php/.registry/net_dig.reg -opt/lampp/lib/php/.registry/net_dns.reg -opt/lampp/lib/php/.registry/net_finger.reg -opt/lampp/lib/php/.registry/net_ftp.reg -opt/lampp/lib/php/.registry/net_geo.reg -opt/lampp/lib/php/.registry/net_ident.reg -opt/lampp/lib/php/.registry/net_ipv4.reg -opt/lampp/lib/php/.registry/net_nntp.reg -opt/lampp/lib/php/.registry/net_ping.reg -opt/lampp/lib/php/.registry/net_pop3.reg -opt/lampp/lib/php/.registry/net_portscan.reg -opt/lampp/lib/php/.registry/net_sieve.reg -opt/lampp/lib/php/.registry/net_smartirc.reg -opt/lampp/lib/php/.registry/net_smtp.reg -opt/lampp/lib/php/.registry/net_socket.reg -opt/lampp/lib/php/.registry/net_url.reg -opt/lampp/lib/php/.registry/net_useragent_detect.reg -opt/lampp/lib/php/.registry/net_whois.reg -opt/lampp/lib/php/.registry/pager.reg -opt/lampp/lib/php/.registry/payment_clieop.reg -opt/lampp/lib/php/.registry/pear.reg -opt/lampp/lib/php/.registry/pear_info.reg -opt/lampp/lib/php/.registry/pear_packagefilemanager.reg -opt/lampp/lib/php/.registry/phpunit.reg -opt/lampp/lib/php/.registry/science_chemistry.reg -opt/lampp/lib/php/.registry/stream_shm.reg -opt/lampp/lib/php/.registry/stream_var.reg -opt/lampp/lib/php/.registry/system_command.reg -opt/lampp/lib/php/.registry/tclink.reg -opt/lampp/lib/php/.registry/text_password.reg -opt/lampp/lib/php/.registry/text_statistics.reg -opt/lampp/lib/php/.registry/translation.reg -opt/lampp/lib/php/.registry/tree.reg -opt/lampp/lib/php/.registry/validate.reg -opt/lampp/lib/php/.registry/var_dump.reg -opt/lampp/lib/php/.registry/xml_cssml.reg -opt/lampp/lib/php/.registry/xml_fo2pdf.reg -opt/lampp/lib/php/.registry/xml_htmlsax.reg -opt/lampp/lib/php/.registry/xml_image2svg.reg -opt/lampp/lib/php/.registry/xml_nitf.reg -opt/lampp/lib/php/.registry/xml_parser.reg -opt/lampp/lib/php/.registry/xml_rpc.reg -opt/lampp/lib/php/.registry/xml_rss.reg -opt/lampp/lib/php/.registry/xml_sql2xml.reg -opt/lampp/lib/php/.registry/xml_svg.reg -opt/lampp/lib/php/.registry/xml_transformer.reg -opt/lampp/lib/php/.registry/xml_tree.reg -opt/lampp/lib/php/.registry/xml_util.reg -opt/lampp/lib/php/.tmpspplus.php -opt/lampp/lib/php/Archive -opt/lampp/lib/php/Archive/Tar.php -opt/lampp/lib/php/Auth -opt/lampp/lib/php/Auth.php -opt/lampp/lib/php/Auth/Auth.php -opt/lampp/lib/php/Auth/Container -opt/lampp/lib/php/Auth/Container.php -opt/lampp/lib/php/Auth/Container/DB.php -opt/lampp/lib/php/Auth/Container/File.php -opt/lampp/lib/php/Auth/Container/IMAP.php -opt/lampp/lib/php/Auth/Container/LDAP.php -opt/lampp/lib/php/Auth/Container/MDB.php -opt/lampp/lib/php/Auth/Container/POP3.php -opt/lampp/lib/php/Auth/Container/RADIUS.php -opt/lampp/lib/php/Auth/Container/SMBPasswd.php -opt/lampp/lib/php/Auth/Container/SOAP.php -opt/lampp/lib/php/Auth/Container/vpopmail.php -opt/lampp/lib/php/Auth/HTTP.php -opt/lampp/lib/php/Auth/PrefManager.php -opt/lampp/lib/php/Auth/RADIUS.php -opt/lampp/lib/php/Auth/SASL -opt/lampp/lib/php/Auth/SASL.php -opt/lampp/lib/php/Auth/SASL/Anonymous.php -opt/lampp/lib/php/Auth/SASL/Common.php -opt/lampp/lib/php/Auth/SASL/CramMD5.php -opt/lampp/lib/php/Auth/SASL/DigestMD5.php -opt/lampp/lib/php/Auth/SASL/Login.php -opt/lampp/lib/php/Auth/SASL/Plain.php -opt/lampp/lib/php/Auth_HTTP -opt/lampp/lib/php/Benchmark -opt/lampp/lib/php/Benchmark/Iterate.php -opt/lampp/lib/php/Benchmark/Profiler.php -opt/lampp/lib/php/Benchmark/Timer.php -opt/lampp/lib/php/Cache -opt/lampp/lib/php/Cache.php -opt/lampp/lib/php/Cache/Application.php -opt/lampp/lib/php/Cache/Container -opt/lampp/lib/php/Cache/Container.php -opt/lampp/lib/php/Cache/Container/db.php -opt/lampp/lib/php/Cache/Container/dbx.php -opt/lampp/lib/php/Cache/Container/file.php -opt/lampp/lib/php/Cache/Container/mdb.php -opt/lampp/lib/php/Cache/Container/msession.php -opt/lampp/lib/php/Cache/Container/phplib.php -opt/lampp/lib/php/Cache/Container/shm.php -opt/lampp/lib/php/Cache/Container/trifile.php -opt/lampp/lib/php/Cache/Error.php -opt/lampp/lib/php/Cache/Function.php -opt/lampp/lib/php/Cache/Graphics.php -opt/lampp/lib/php/Cache/HTTP_Request.php -opt/lampp/lib/php/Cache/Lite -opt/lampp/lib/php/Cache/Lite.php -opt/lampp/lib/php/Cache/Lite/File.php -opt/lampp/lib/php/Cache/Lite/Function.php -opt/lampp/lib/php/Cache/Lite/Output.php -opt/lampp/lib/php/Cache/Output.php -opt/lampp/lib/php/Cache/OutputCompression.php -opt/lampp/lib/php/Config -opt/lampp/lib/php/Config.php -opt/lampp/lib/php/Config/Container -opt/lampp/lib/php/Config/Container.php -opt/lampp/lib/php/Config/Container/Apache.php -opt/lampp/lib/php/Config/Container/GenericConf.php -opt/lampp/lib/php/Config/Container/IniCommented.php -opt/lampp/lib/php/Config/Container/IniFile.php -opt/lampp/lib/php/Config/Container/PHPArray.php -opt/lampp/lib/php/Config/Container/PHPConstants.php -opt/lampp/lib/php/Config/Container/XML.php -opt/lampp/lib/php/Console -opt/lampp/lib/php/Console/Getopt.php -opt/lampp/lib/php/Console/Table.php -opt/lampp/lib/php/Contact_Vcard_Build.php -opt/lampp/lib/php/Contact_Vcard_Parse.php -opt/lampp/lib/php/Crypt -opt/lampp/lib/php/Crypt/CBC.php -opt/lampp/lib/php/Crypt/CHAP.php -opt/lampp/lib/php/Crypt/HCEMD5.php -opt/lampp/lib/php/Crypt/Rc4.php -opt/lampp/lib/php/Crypt/Xtea.php -opt/lampp/lib/php/Crypt/XteaTest.php -opt/lampp/lib/php/DB -opt/lampp/lib/php/DB.php -opt/lampp/lib/php/DB/DataObject -opt/lampp/lib/php/DB/DataObject.php -opt/lampp/lib/php/DB/DataObject/Cast.php -opt/lampp/lib/php/DB/DataObject/Error.php -opt/lampp/lib/php/DB/DataObject/Generator.php -opt/lampp/lib/php/DB/DataObject/createTables.php -opt/lampp/lib/php/DB/NestedSet -opt/lampp/lib/php/DB/NestedSet.php -opt/lampp/lib/php/DB/NestedSet/DB.php -opt/lampp/lib/php/DB/NestedSet/Event.php -opt/lampp/lib/php/DB/NestedSet/MDB.php -opt/lampp/lib/php/DB/NestedSet/Output.php -opt/lampp/lib/php/DB/NestedSet/TigraMenu.php -opt/lampp/lib/php/DB/NestedSet/TreeMenu.php -opt/lampp/lib/php/DB/Pager.php -opt/lampp/lib/php/DB/QueryTool -opt/lampp/lib/php/DB/QueryTool.php -opt/lampp/lib/php/DB/QueryTool/EasyJoin.php -opt/lampp/lib/php/DB/QueryTool/Query.php -opt/lampp/lib/php/DB/QueryTool/Result -opt/lampp/lib/php/DB/QueryTool/Result.php -opt/lampp/lib/php/DB/QueryTool/Result/Object.php -opt/lampp/lib/php/DB/common.php -opt/lampp/lib/php/DB/dbase.php -opt/lampp/lib/php/DB/fbsql.php -opt/lampp/lib/php/DB/ibase.php -opt/lampp/lib/php/DB/ifx.php -opt/lampp/lib/php/DB/ldap.php -opt/lampp/lib/php/DB/msql.php -opt/lampp/lib/php/DB/mssql.php -opt/lampp/lib/php/DB/mysql.php -opt/lampp/lib/php/DB/mysqli.php -opt/lampp/lib/php/DB/oci8.php -opt/lampp/lib/php/DB/odbc.php -opt/lampp/lib/php/DB/pgsql.php -opt/lampp/lib/php/DB/sqlite.php -opt/lampp/lib/php/DB/storage.php -opt/lampp/lib/php/DB/sybase.php -opt/lampp/lib/php/DBA -opt/lampp/lib/php/DBA.php -opt/lampp/lib/php/DBA/Compatibility.php -opt/lampp/lib/php/DBA/Driver -opt/lampp/lib/php/DBA/Driver/Builtin.php -opt/lampp/lib/php/DBA/Driver/File.php -opt/lampp/lib/php/Date -opt/lampp/lib/php/Date.php -opt/lampp/lib/php/Date/Calc.php -opt/lampp/lib/php/Date/Human.php -opt/lampp/lib/php/Date/Span.php -opt/lampp/lib/php/Date/TimeZone.php -opt/lampp/lib/php/FSM.php -opt/lampp/lib/php/File -opt/lampp/lib/php/File.php -opt/lampp/lib/php/File/CSV.php -opt/lampp/lib/php/File/Find.php -opt/lampp/lib/php/File/HtAccess.php -opt/lampp/lib/php/File/Passwd -opt/lampp/lib/php/File/Passwd.php -opt/lampp/lib/php/File/Passwd/Authbasic.php -opt/lampp/lib/php/File/Passwd/Authdigest.php -opt/lampp/lib/php/File/Passwd/Common.php -opt/lampp/lib/php/File/Passwd/Custom.php -opt/lampp/lib/php/File/Passwd/Cvs.php -opt/lampp/lib/php/File/Passwd/Smb.php -opt/lampp/lib/php/File/Passwd/Unix.php -opt/lampp/lib/php/File/SMBPasswd.php -opt/lampp/lib/php/File/SearchReplace.php -opt/lampp/lib/php/File/Util.php -opt/lampp/lib/php/HTML -opt/lampp/lib/php/HTML/BBCodeParser -opt/lampp/lib/php/HTML/BBCodeParser.php -opt/lampp/lib/php/HTML/BBCodeParser/Filter -opt/lampp/lib/php/HTML/BBCodeParser/Filter/Basic.php -opt/lampp/lib/php/HTML/BBCodeParser/Filter/Email.php -opt/lampp/lib/php/HTML/BBCodeParser/Filter/Extended.php -opt/lampp/lib/php/HTML/BBCodeParser/Filter/Images.php -opt/lampp/lib/php/HTML/BBCodeParser/Filter/Links.php -opt/lampp/lib/php/HTML/BBCodeParser/Filter/Lists.php -opt/lampp/lib/php/HTML/BBCodeParser/example -opt/lampp/lib/php/HTML/BBCodeParser/example/BBCodeParser.ini -opt/lampp/lib/php/HTML/BBCodeParser/example/parser.php -opt/lampp/lib/php/HTML/CSS.php -opt/lampp/lib/php/HTML/Common.php -opt/lampp/lib/php/HTML/Crypt.php -opt/lampp/lib/php/HTML/Form.php -opt/lampp/lib/php/HTML/HTML -opt/lampp/lib/php/HTML/IT.php -opt/lampp/lib/php/HTML/ITX.php -opt/lampp/lib/php/HTML/IT_Error.php -opt/lampp/lib/php/HTML/Javascript -opt/lampp/lib/php/HTML/Javascript.php -opt/lampp/lib/php/HTML/Javascript/Convert.php -opt/lampp/lib/php/HTML/Menu -opt/lampp/lib/php/HTML/Menu.php -opt/lampp/lib/php/HTML/Menu/ArrayRenderer.php -opt/lampp/lib/php/HTML/Menu/DirectRenderer.php -opt/lampp/lib/php/HTML/Menu/DirectTreeRenderer.php -opt/lampp/lib/php/HTML/Menu/Renderer.php -opt/lampp/lib/php/HTML/Menu/SigmaRenderer.php -opt/lampp/lib/php/HTML/Menu/SigmaTreeRenderer.php -opt/lampp/lib/php/HTML/MenuBrowser.php -opt/lampp/lib/php/HTML/Page -opt/lampp/lib/php/HTML/Page.php -opt/lampp/lib/php/HTML/Page/Doctypes.php -opt/lampp/lib/php/HTML/Page/Namespaces.php -opt/lampp/lib/php/HTML/Processor.php -opt/lampp/lib/php/HTML/Progress -opt/lampp/lib/php/HTML/Progress.php -opt/lampp/lib/php/HTML/Progress/DM.php -opt/lampp/lib/php/HTML/Progress/UI.php -opt/lampp/lib/php/HTML/Progress/generator -opt/lampp/lib/php/HTML/Progress/generator.php -opt/lampp/lib/php/HTML/Progress/generator/HTMLPage.php -opt/lampp/lib/php/HTML/Progress/generator/ITDynamic.php -opt/lampp/lib/php/HTML/Progress/generator/SmartyDynamic.php -opt/lampp/lib/php/HTML/Progress/generator/default.php -opt/lampp/lib/php/HTML/Progress/generator/pages.php -opt/lampp/lib/php/HTML/Progress/generator/preview.php -opt/lampp/lib/php/HTML/Progress/generator/process.php -opt/lampp/lib/php/HTML/Progress/model.php -opt/lampp/lib/php/HTML/Progress/monitor.php -opt/lampp/lib/php/HTML/Progress/observer.php -opt/lampp/lib/php/HTML/QuickForm -opt/lampp/lib/php/HTML/QuickForm.php -opt/lampp/lib/php/HTML/QuickForm/Renderer -opt/lampp/lib/php/HTML/QuickForm/Renderer.php -opt/lampp/lib/php/HTML/QuickForm/Renderer/Array.php -opt/lampp/lib/php/HTML/QuickForm/Renderer/ArraySmarty.php -opt/lampp/lib/php/HTML/QuickForm/Renderer/Default.php -opt/lampp/lib/php/HTML/QuickForm/Renderer/ITDynamic.php -opt/lampp/lib/php/HTML/QuickForm/Renderer/ITStatic.php -opt/lampp/lib/php/HTML/QuickForm/Renderer/Object.php -opt/lampp/lib/php/HTML/QuickForm/Renderer/ObjectFlexy.php -opt/lampp/lib/php/HTML/QuickForm/Renderer/QuickHtml.php -opt/lampp/lib/php/HTML/QuickForm/Rule -opt/lampp/lib/php/HTML/QuickForm/Rule.php -opt/lampp/lib/php/HTML/QuickForm/Rule/Callback.php -opt/lampp/lib/php/HTML/QuickForm/Rule/Compare.php -opt/lampp/lib/php/HTML/QuickForm/Rule/Email.php -opt/lampp/lib/php/HTML/QuickForm/Rule/Range.php -opt/lampp/lib/php/HTML/QuickForm/Rule/Regex.php -opt/lampp/lib/php/HTML/QuickForm/Rule/Required.php -opt/lampp/lib/php/HTML/QuickForm/RuleRegistry.php -opt/lampp/lib/php/HTML/QuickForm/advcheckbox.php -opt/lampp/lib/php/HTML/QuickForm/autocomplete.php -opt/lampp/lib/php/HTML/QuickForm/button.php -opt/lampp/lib/php/HTML/QuickForm/checkbox.php -opt/lampp/lib/php/HTML/QuickForm/date.php -opt/lampp/lib/php/HTML/QuickForm/element.php -opt/lampp/lib/php/HTML/QuickForm/file.php -opt/lampp/lib/php/HTML/QuickForm/group.php -opt/lampp/lib/php/HTML/QuickForm/header.php -opt/lampp/lib/php/HTML/QuickForm/hidden.php -opt/lampp/lib/php/HTML/QuickForm/hiddenselect.php -opt/lampp/lib/php/HTML/QuickForm/hierselect.php -opt/lampp/lib/php/HTML/QuickForm/html.php -opt/lampp/lib/php/HTML/QuickForm/image.php -opt/lampp/lib/php/HTML/QuickForm/input.php -opt/lampp/lib/php/HTML/QuickForm/link.php -opt/lampp/lib/php/HTML/QuickForm/password.php -opt/lampp/lib/php/HTML/QuickForm/radio.php -opt/lampp/lib/php/HTML/QuickForm/reset.php -opt/lampp/lib/php/HTML/QuickForm/select.php -opt/lampp/lib/php/HTML/QuickForm/static.php -opt/lampp/lib/php/HTML/QuickForm/submit.php -opt/lampp/lib/php/HTML/QuickForm/text.php -opt/lampp/lib/php/HTML/QuickForm/textarea.php -opt/lampp/lib/php/HTML/QuickForm/xbutton.php -opt/lampp/lib/php/HTML/Select -opt/lampp/lib/php/HTML/Select.php -opt/lampp/lib/php/HTML/Select/Common -opt/lampp/lib/php/HTML/Select/Common/Country.php -opt/lampp/lib/php/HTML/Select/Common/FRDepartements.php -opt/lampp/lib/php/HTML/Select/Common/UKCounty.php -opt/lampp/lib/php/HTML/Select/Common/USState.php -opt/lampp/lib/php/HTML/Select/Common/examples -opt/lampp/lib/php/HTML/Select/Common/examples/Country.php -opt/lampp/lib/php/HTML/Select/Common/examples/FRDepartements.php -opt/lampp/lib/php/HTML/Select/Common/examples/UKCounty.php -opt/lampp/lib/php/HTML/Select/Common/examples/USState.php -opt/lampp/lib/php/HTML/Table.php -opt/lampp/lib/php/HTML/Template -opt/lampp/lib/php/HTML/Template/IT.php -opt/lampp/lib/php/HTML/Template/ITX.php -opt/lampp/lib/php/HTML/Template/IT_Error.php -opt/lampp/lib/php/HTML/Template/PHPLIB.php -opt/lampp/lib/php/HTML/Template/Sigma.php -opt/lampp/lib/php/HTML/Template/Xipe -opt/lampp/lib/php/HTML/Template/Xipe.php -opt/lampp/lib/php/HTML/Template/Xipe/Cache.php -opt/lampp/lib/php/HTML/Template/Xipe/Filter -opt/lampp/lib/php/HTML/Template/Xipe/Filter/Basic.php -opt/lampp/lib/php/HTML/Template/Xipe/Filter/Internal.php -opt/lampp/lib/php/HTML/Template/Xipe/Filter/Modifier.php -opt/lampp/lib/php/HTML/Template/Xipe/Filter/QuickForm.php -opt/lampp/lib/php/HTML/Template/Xipe/Filter/SimpleTag.php -opt/lampp/lib/php/HTML/Template/Xipe/Filter/TagLib.php -opt/lampp/lib/php/HTML/Template/Xipe/Filter/Translate.php -opt/lampp/lib/php/HTML/Template/Xipe/Main.php -opt/lampp/lib/php/HTML/Template/Xipe/Options.php -opt/lampp/lib/php/HTML/Template/Xipe/XMLConfig.php -opt/lampp/lib/php/HTML/TreeMenu.php -opt/lampp/lib/php/HTML/docs -opt/lampp/lib/php/HTML/docs/example.php -opt/lampp/lib/php/HTML/docs/map_fs.php -opt/lampp/lib/php/HTML/tutorials -opt/lampp/lib/php/HTML/tutorials/HTML_Progress -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/addlistener.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/apiversion.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/display.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/display_errors-p6.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/drawcirclesegments.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/eh_basic_display.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/eh_push_callback.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getanimspeed.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getborderattributes.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getcellattributes.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getcellcoordinates.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getcellcount.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getdm.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getfillway.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getident.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getincrement.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getlisteners.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getmaximum.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getminimum.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getorientation.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getpercentcomplete.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getprogressattributes.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getscript.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getstring.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getstringattributes.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getstyle.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getui.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/getvalue.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/haserrors.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/hide.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/incvalue.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/indeterminate.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/isborderpainted.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/isindeterminate.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/isstringpainted.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/listing-2.1.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/listing-2.2.1.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/listing-2.2.2.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/listing-2.3.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/monitor_default.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/monitor_improved.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/monitor_indeterminate.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/monitor_itdynamic.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/monitor_itdynamic_tpl.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/observer_basic.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/observer_complex.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/removelistener.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setanimspeed.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setborderattributes.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setborderpainted.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setcellattributes.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setcellcoordinates.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setcellcount.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setdm.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setfillway.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setident.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setincrement.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setindeterminate.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setmaximum.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setminimum.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setmodel.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setorientation.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setprogressattributes.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setscript.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setstring.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setstringattributes.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setstringpainted.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setui.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/setvalue.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/sleep.php -opt/lampp/lib/php/HTML/tutorials/HTML_Progress/examples/tohtml.php -opt/lampp/lib/php/HTTP -opt/lampp/lib/php/HTTP.php -opt/lampp/lib/php/HTTP/Compress.php -opt/lampp/lib/php/HTTP/Request -opt/lampp/lib/php/HTTP/Request.php -opt/lampp/lib/php/HTTP/Request/Listener.php -opt/lampp/lib/php/HTTP/Upload.php -opt/lampp/lib/php/Image -opt/lampp/lib/php/Image/Color.php -opt/lampp/lib/php/Image/GIS -opt/lampp/lib/php/Image/GIS.php -opt/lampp/lib/php/Image/GIS/LineSet.php -opt/lampp/lib/php/Image/GIS/Parser -opt/lampp/lib/php/Image/GIS/Parser.php -opt/lampp/lib/php/Image/GIS/Parser/E00.php -opt/lampp/lib/php/Image/GIS/Renderer -opt/lampp/lib/php/Image/GIS/Renderer.php -opt/lampp/lib/php/Image/GIS/Renderer/GD.php -opt/lampp/lib/php/Image/GIS/Renderer/SVG.php -opt/lampp/lib/php/Image/GraphViz.php -opt/lampp/lib/php/Image/IPTC.php -opt/lampp/lib/php/Log -opt/lampp/lib/php/Log.php -opt/lampp/lib/php/Log/composite.php -opt/lampp/lib/php/Log/console.php -opt/lampp/lib/php/Log/daemon.php -opt/lampp/lib/php/Log/display.php -opt/lampp/lib/php/Log/error_log.php -opt/lampp/lib/php/Log/file.php -opt/lampp/lib/php/Log/mail.php -opt/lampp/lib/php/Log/mcal.php -opt/lampp/lib/php/Log/null.php -opt/lampp/lib/php/Log/observer.php -opt/lampp/lib/php/Log/sql.php -opt/lampp/lib/php/Log/sqlite.php -opt/lampp/lib/php/Log/syslog.php -opt/lampp/lib/php/Log/win.php -opt/lampp/lib/php/MDB -opt/lampp/lib/php/MDB.php -opt/lampp/lib/php/MDB/Common.php -opt/lampp/lib/php/MDB/Date.php -opt/lampp/lib/php/MDB/Manager.php -opt/lampp/lib/php/MDB/Modules -opt/lampp/lib/php/MDB/Modules/LOB.php -opt/lampp/lib/php/MDB/Modules/Manager -opt/lampp/lib/php/MDB/Modules/Manager/Common.php -opt/lampp/lib/php/MDB/Modules/Manager/fbsql.php -opt/lampp/lib/php/MDB/Modules/Manager/ibase.php -opt/lampp/lib/php/MDB/Modules/Manager/mssql.php -opt/lampp/lib/php/MDB/Modules/Manager/mysql.php -opt/lampp/lib/php/MDB/Modules/Manager/oci8.php -opt/lampp/lib/php/MDB/Modules/Manager/pgsql.php -opt/lampp/lib/php/MDB/Parser.php -opt/lampp/lib/php/MDB/QueryTool -opt/lampp/lib/php/MDB/QueryTool.php -opt/lampp/lib/php/MDB/QueryTool/EasyJoin.php -opt/lampp/lib/php/MDB/QueryTool/Query.php -opt/lampp/lib/php/MDB/QueryTool/Result -opt/lampp/lib/php/MDB/QueryTool/Result.php -opt/lampp/lib/php/MDB/QueryTool/Result/Object.php -opt/lampp/lib/php/MDB/fbsql.php -opt/lampp/lib/php/MDB/ibase.php -opt/lampp/lib/php/MDB/metabase_wrapper.php -opt/lampp/lib/php/MDB/mssql.php -opt/lampp/lib/php/MDB/mysql.php -opt/lampp/lib/php/MDB/oci8.php -opt/lampp/lib/php/MDB/peardb_wrapper.php -opt/lampp/lib/php/MDB/pgsql.php -opt/lampp/lib/php/MDB/querysim.php -opt/lampp/lib/php/MDB/reverse_engineer_xml_schema.php -opt/lampp/lib/php/MP3 -opt/lampp/lib/php/MP3/Id.php -opt/lampp/lib/php/Mail -opt/lampp/lib/php/Mail.php -opt/lampp/lib/php/Mail/Queue -opt/lampp/lib/php/Mail/Queue.php -opt/lampp/lib/php/Mail/Queue/Body.php -opt/lampp/lib/php/Mail/Queue/Container -opt/lampp/lib/php/Mail/Queue/Container.php -opt/lampp/lib/php/Mail/Queue/Container/db.php -opt/lampp/lib/php/Mail/Queue/Container/mdb.php -opt/lampp/lib/php/Mail/Queue/Container/mdb2.php -opt/lampp/lib/php/Mail/RFC822.php -opt/lampp/lib/php/Mail/mail.php -opt/lampp/lib/php/Mail/mime.php -opt/lampp/lib/php/Mail/mimeDecode.php -opt/lampp/lib/php/Mail/mimePart.php -opt/lampp/lib/php/Mail/null.php -opt/lampp/lib/php/Mail/sendmail.php -opt/lampp/lib/php/Mail/smtp.php -opt/lampp/lib/php/Math -opt/lampp/lib/php/Math/Basex.php -opt/lampp/lib/php/Math/Fibonacci -opt/lampp/lib/php/Math/Fibonacci.php -opt/lampp/lib/php/Math/Fibonacci/_fibonacciTable.php -opt/lampp/lib/php/Math/Integer.php -opt/lampp/lib/php/Math/IntegerOp.php -opt/lampp/lib/php/Math/Matrix.php -opt/lampp/lib/php/Math/RPN.php -opt/lampp/lib/php/Math/Stats.php -opt/lampp/lib/php/Math/TrigOp.php -opt/lampp/lib/php/Math/Vector -opt/lampp/lib/php/Math/Vector/Tuple.php -opt/lampp/lib/php/Math/Vector/Vector.php -opt/lampp/lib/php/Math/Vector/Vector2.php -opt/lampp/lib/php/Math/Vector/Vector3.php -opt/lampp/lib/php/Math/Vector/VectorOp.php -opt/lampp/lib/php/Math/Vector/examples -opt/lampp/lib/php/Math/Vector/examples/tuple_creation.php -opt/lampp/lib/php/Math/Vector/examples/vector_creation.php -opt/lampp/lib/php/Math/Vector/examples/vector_operations.php -opt/lampp/lib/php/Math/examples -opt/lampp/lib/php/Math/examples/data.mat -opt/lampp/lib/php/Math/examples/ex_math_matrix.php -opt/lampp/lib/php/Math/examples/ex_stats_cummulative_data.php -opt/lampp/lib/php/Math/examples/ex_stats_simple.php -opt/lampp/lib/php/Math/test -opt/lampp/lib/php/Math/test/instance_methods.php -opt/lampp/lib/php/Math/test/static_methods.php -opt/lampp/lib/php/Math/test/testMath_Fibonacci.php -opt/lampp/lib/php/Math/test/testMath_Integer.php -opt/lampp/lib/php/Net -opt/lampp/lib/php/Net/CheckIP.php -opt/lampp/lib/php/Net/Curl.php -opt/lampp/lib/php/Net/DNS -opt/lampp/lib/php/Net/DNS.php -opt/lampp/lib/php/Net/DNS/Header.php -opt/lampp/lib/php/Net/DNS/Packet.php -opt/lampp/lib/php/Net/DNS/Question.php -opt/lampp/lib/php/Net/DNS/RR -opt/lampp/lib/php/Net/DNS/RR.php -opt/lampp/lib/php/Net/DNS/RR/A.php -opt/lampp/lib/php/Net/DNS/RR/CNAME.php -opt/lampp/lib/php/Net/DNS/RR/MX.php -opt/lampp/lib/php/Net/DNS/RR/NS.php -opt/lampp/lib/php/Net/DNS/RR/PTR.php -opt/lampp/lib/php/Net/DNS/RR/SOA.php -opt/lampp/lib/php/Net/DNS/RR/TSIG.php -opt/lampp/lib/php/Net/DNS/Resolver.php -opt/lampp/lib/php/Net/Dict.php -opt/lampp/lib/php/Net/Dig.php -opt/lampp/lib/php/Net/FTP -opt/lampp/lib/php/Net/FTP.php -opt/lampp/lib/php/Net/FTP/Observer.php -opt/lampp/lib/php/Net/Finger.php -opt/lampp/lib/php/Net/Geo.php -opt/lampp/lib/php/Net/IPv4.php -opt/lampp/lib/php/Net/Ident.php -opt/lampp/lib/php/Net/NNTP -opt/lampp/lib/php/Net/NNTP.php -opt/lampp/lib/php/Net/NNTP/Client.php -opt/lampp/lib/php/Net/NNTP/Protocol -opt/lampp/lib/php/Net/NNTP/Protocol/Client.php -opt/lampp/lib/php/Net/POP3.php -opt/lampp/lib/php/Net/Ping.php -opt/lampp/lib/php/Net/Portscan.php -opt/lampp/lib/php/Net/SMTP.php -opt/lampp/lib/php/Net/Sieve.php -opt/lampp/lib/php/Net/SmartIRC -opt/lampp/lib/php/Net/SmartIRC.php -opt/lampp/lib/php/Net/SmartIRC/defines.php -opt/lampp/lib/php/Net/SmartIRC/irccommands.php -opt/lampp/lib/php/Net/SmartIRC/messagehandler.php -opt/lampp/lib/php/Net/Socket.php -opt/lampp/lib/php/Net/URL.php -opt/lampp/lib/php/Net/UserAgent -opt/lampp/lib/php/Net/UserAgent/Detect.php -opt/lampp/lib/php/Net/Whois.php -opt/lampp/lib/php/Net/tests -opt/lampp/lib/php/Net/tests/01-portscan.php -opt/lampp/lib/php/OS -opt/lampp/lib/php/OS/Guess.php -opt/lampp/lib/php/PEAR -opt/lampp/lib/php/PEAR.php -opt/lampp/lib/php/PEAR/Autoloader.php -opt/lampp/lib/php/PEAR/Builder.php -opt/lampp/lib/php/PEAR/ChannelFile -opt/lampp/lib/php/PEAR/ChannelFile.php -opt/lampp/lib/php/PEAR/ChannelFile/Parser.php -opt/lampp/lib/php/PEAR/Command -opt/lampp/lib/php/PEAR/Command.php -opt/lampp/lib/php/PEAR/Command/Auth.php -opt/lampp/lib/php/PEAR/Command/Auth.xml -opt/lampp/lib/php/PEAR/Command/Build.php -opt/lampp/lib/php/PEAR/Command/Build.xml -opt/lampp/lib/php/PEAR/Command/Channels.php -opt/lampp/lib/php/PEAR/Command/Channels.xml -opt/lampp/lib/php/PEAR/Command/Common.php -opt/lampp/lib/php/PEAR/Command/Config.php -opt/lampp/lib/php/PEAR/Command/Config.xml -opt/lampp/lib/php/PEAR/Command/Install.php -opt/lampp/lib/php/PEAR/Command/Install.xml -opt/lampp/lib/php/PEAR/Command/Mirror.php -opt/lampp/lib/php/PEAR/Command/Mirror.xml -opt/lampp/lib/php/PEAR/Command/Package.php -opt/lampp/lib/php/PEAR/Command/Package.xml -opt/lampp/lib/php/PEAR/Command/Pickle.php -opt/lampp/lib/php/PEAR/Command/Pickle.xml -opt/lampp/lib/php/PEAR/Command/Registry.php -opt/lampp/lib/php/PEAR/Command/Registry.xml -opt/lampp/lib/php/PEAR/Command/Remote.php -opt/lampp/lib/php/PEAR/Command/Remote.xml -opt/lampp/lib/php/PEAR/Command/Test.php -opt/lampp/lib/php/PEAR/Command/Test.xml -opt/lampp/lib/php/PEAR/Common.php -opt/lampp/lib/php/PEAR/Config.php -opt/lampp/lib/php/PEAR/Dependency.php -opt/lampp/lib/php/PEAR/Dependency2.php -opt/lampp/lib/php/PEAR/DependencyDB.php -opt/lampp/lib/php/PEAR/Downloader -opt/lampp/lib/php/PEAR/Downloader.php -opt/lampp/lib/php/PEAR/Downloader/Package.php -opt/lampp/lib/php/PEAR/ErrorStack.php -opt/lampp/lib/php/PEAR/Exception.php -opt/lampp/lib/php/PEAR/Frontend -opt/lampp/lib/php/PEAR/Frontend.php -opt/lampp/lib/php/PEAR/Frontend/CLI.php -opt/lampp/lib/php/PEAR/Info.php -opt/lampp/lib/php/PEAR/Installer -opt/lampp/lib/php/PEAR/Installer.php -opt/lampp/lib/php/PEAR/Installer/Role -opt/lampp/lib/php/PEAR/Installer/Role.php -opt/lampp/lib/php/PEAR/Installer/Role/Common.php -opt/lampp/lib/php/PEAR/Installer/Role/Data.php -opt/lampp/lib/php/PEAR/Installer/Role/Data.xml -opt/lampp/lib/php/PEAR/Installer/Role/Doc.php -opt/lampp/lib/php/PEAR/Installer/Role/Doc.xml -opt/lampp/lib/php/PEAR/Installer/Role/Ext.php -opt/lampp/lib/php/PEAR/Installer/Role/Ext.xml -opt/lampp/lib/php/PEAR/Installer/Role/Php.php -opt/lampp/lib/php/PEAR/Installer/Role/Php.xml -opt/lampp/lib/php/PEAR/Installer/Role/Script.php -opt/lampp/lib/php/PEAR/Installer/Role/Script.xml -opt/lampp/lib/php/PEAR/Installer/Role/Src.php -opt/lampp/lib/php/PEAR/Installer/Role/Src.xml -opt/lampp/lib/php/PEAR/Installer/Role/Test.php -opt/lampp/lib/php/PEAR/Installer/Role/Test.xml -opt/lampp/lib/php/PEAR/PackageFile -opt/lampp/lib/php/PEAR/PackageFile.php -opt/lampp/lib/php/PEAR/PackageFile/Generator -opt/lampp/lib/php/PEAR/PackageFile/Generator/v1.php -opt/lampp/lib/php/PEAR/PackageFile/Generator/v2.php -opt/lampp/lib/php/PEAR/PackageFile/Parser -opt/lampp/lib/php/PEAR/PackageFile/Parser/v1.php -opt/lampp/lib/php/PEAR/PackageFile/Parser/v2.php -opt/lampp/lib/php/PEAR/PackageFile/v1.php -opt/lampp/lib/php/PEAR/PackageFile/v2 -opt/lampp/lib/php/PEAR/PackageFile/v2.php -opt/lampp/lib/php/PEAR/PackageFile/v2/Validator.php -opt/lampp/lib/php/PEAR/PackageFile/v2/rw.php -opt/lampp/lib/php/PEAR/PackageFileManager -opt/lampp/lib/php/PEAR/PackageFileManager.php -opt/lampp/lib/php/PEAR/PackageFileManager/Cvs.php -opt/lampp/lib/php/PEAR/PackageFileManager/File.php -opt/lampp/lib/php/PEAR/PackageFileManager/Perforce.php -opt/lampp/lib/php/PEAR/PackageFileManager/SimpleGenerator.php -opt/lampp/lib/php/PEAR/PackageFileManager/Svn.php -opt/lampp/lib/php/PEAR/PackageFileManager/XMLOutput.php -opt/lampp/lib/php/PEAR/Packager.php -opt/lampp/lib/php/PEAR/REST -opt/lampp/lib/php/PEAR/REST.php -opt/lampp/lib/php/PEAR/REST/10.php -opt/lampp/lib/php/PEAR/REST/11.php -opt/lampp/lib/php/PEAR/Registry.php -opt/lampp/lib/php/PEAR/Remote.php -opt/lampp/lib/php/PEAR/RunTest.php -opt/lampp/lib/php/PEAR/Task -opt/lampp/lib/php/PEAR/Task/Common.php -opt/lampp/lib/php/PEAR/Task/Postinstallscript -opt/lampp/lib/php/PEAR/Task/Postinstallscript.php -opt/lampp/lib/php/PEAR/Task/Postinstallscript/rw.php -opt/lampp/lib/php/PEAR/Task/Replace -opt/lampp/lib/php/PEAR/Task/Replace.php -opt/lampp/lib/php/PEAR/Task/Replace/rw.php -opt/lampp/lib/php/PEAR/Task/Unixeol -opt/lampp/lib/php/PEAR/Task/Unixeol.php -opt/lampp/lib/php/PEAR/Task/Unixeol/rw.php -opt/lampp/lib/php/PEAR/Task/Windowseol -opt/lampp/lib/php/PEAR/Task/Windowseol.php -opt/lampp/lib/php/PEAR/Task/Windowseol/rw.php -opt/lampp/lib/php/PEAR/Validate.php -opt/lampp/lib/php/PEAR/Validator -opt/lampp/lib/php/PEAR/Validator/PECL.php -opt/lampp/lib/php/PEAR/XMLParser.php -opt/lampp/lib/php/PEAR/tests -opt/lampp/lib/php/PEAR/tests/pear_info.php -opt/lampp/lib/php/PHPUnit -opt/lampp/lib/php/PHPUnit.php -opt/lampp/lib/php/PHPUnit/Assert.php -opt/lampp/lib/php/PHPUnit/GUI -opt/lampp/lib/php/PHPUnit/GUI/Gtk.php -opt/lampp/lib/php/PHPUnit/GUI/HTML.php -opt/lampp/lib/php/PHPUnit/GUI/HTML.tpl -opt/lampp/lib/php/PHPUnit/GUI/SetupDecorator.php -opt/lampp/lib/php/PHPUnit/RepeatedTest.php -opt/lampp/lib/php/PHPUnit/Skeleton.php -opt/lampp/lib/php/PHPUnit/TestCase.php -opt/lampp/lib/php/PHPUnit/TestDecorator.php -opt/lampp/lib/php/PHPUnit/TestFailure.php -opt/lampp/lib/php/PHPUnit/TestListener.php -opt/lampp/lib/php/PHPUnit/TestResult.php -opt/lampp/lib/php/PHPUnit/TestSuite.php -opt/lampp/lib/php/Pager -opt/lampp/lib/php/Pager/Common.php -opt/lampp/lib/php/Pager/Jumping.php -opt/lampp/lib/php/Pager/Pager.php -opt/lampp/lib/php/Pager/Sliding.php -opt/lampp/lib/php/Payment_Clieop -opt/lampp/lib/php/Payment_Clieop/Samples -opt/lampp/lib/php/Payment_Clieop/Samples/creditor.php -opt/lampp/lib/php/Payment_Clieop/Samples/debtor.php -opt/lampp/lib/php/Payment_Clieop/clieop.php -opt/lampp/lib/php/Payment_Clieop/clieop_transaction.php -opt/lampp/lib/php/Schedule -opt/lampp/lib/php/Schedule/At.php -opt/lampp/lib/php/Science -opt/lampp/lib/php/Science/Chemistry -opt/lampp/lib/php/Science/Chemistry.php -opt/lampp/lib/php/Science/Chemistry/Atom.php -opt/lampp/lib/php/Science/Chemistry/Atom_PDB.php -opt/lampp/lib/php/Science/Chemistry/Coordinates.php -opt/lampp/lib/php/Science/Chemistry/Element.php -opt/lampp/lib/php/Science/Chemistry/Macromolecule.php -opt/lampp/lib/php/Science/Chemistry/Macromolecule_PDB.php -opt/lampp/lib/php/Science/Chemistry/Molecule.php -opt/lampp/lib/php/Science/Chemistry/Molecule_XYZ.php -opt/lampp/lib/php/Science/Chemistry/PDBFile.php -opt/lampp/lib/php/Science/Chemistry/PDBParser.php -opt/lampp/lib/php/Science/Chemistry/Periodic_Table.php -opt/lampp/lib/php/Science/Chemistry/Residue_PDB.php -opt/lampp/lib/php/Science/Chemistry/test -opt/lampp/lib/php/Science/Chemistry/test/pdb2xyz.php -opt/lampp/lib/php/Science/Chemistry/test/testChem.php -opt/lampp/lib/php/Science/Chemistry/test/testPDB.php -opt/lampp/lib/php/Science/Chemistry/test/xyz2cml.php -opt/lampp/lib/php/Stream -opt/lampp/lib/php/Stream/SHM.php -opt/lampp/lib/php/Stream/Var.php -opt/lampp/lib/php/System -opt/lampp/lib/php/System.php -opt/lampp/lib/php/System/Command.php -opt/lampp/lib/php/Text -opt/lampp/lib/php/Text/Password.php -opt/lampp/lib/php/Text/Statistics.php -opt/lampp/lib/php/Text/Word.php -opt/lampp/lib/php/Translation -opt/lampp/lib/php/Translation/translation.class.php -opt/lampp/lib/php/Translation/translation.str_mgmt.php -opt/lampp/lib/php/Translation/translationutf8.class.php -opt/lampp/lib/php/Tree -opt/lampp/lib/php/Tree/Common.php -opt/lampp/lib/php/Tree/Dynamic -opt/lampp/lib/php/Tree/Dynamic/DBnested.php -opt/lampp/lib/php/Tree/Error.php -opt/lampp/lib/php/Tree/Memory -opt/lampp/lib/php/Tree/Memory.php -opt/lampp/lib/php/Tree/Memory/Array.php -opt/lampp/lib/php/Tree/Memory/DBnested.php -opt/lampp/lib/php/Tree/Memory/DBsimple.php -opt/lampp/lib/php/Tree/Memory/Filesystem.php -opt/lampp/lib/php/Tree/Memory/XML.php -opt/lampp/lib/php/Tree/Options.php -opt/lampp/lib/php/Tree/OptionsDB.php -opt/lampp/lib/php/Tree/Tree.php -opt/lampp/lib/php/Validate -opt/lampp/lib/php/Validate.php -opt/lampp/lib/php/Validate/ES.php -opt/lampp/lib/php/Validate/FR.php -opt/lampp/lib/php/Validate/UK.php -opt/lampp/lib/php/Validate/US.php -opt/lampp/lib/php/Validate/pt_BR.php -opt/lampp/lib/php/Var_Dump -opt/lampp/lib/php/Var_Dump.php -opt/lampp/lib/php/Var_Dump/Renderer -opt/lampp/lib/php/Var_Dump/Renderer.php -opt/lampp/lib/php/Var_Dump/Renderer/Common.php -opt/lampp/lib/php/Var_Dump/Renderer/HTML4_Table.php -opt/lampp/lib/php/Var_Dump/Renderer/HTML4_Text.php -opt/lampp/lib/php/Var_Dump/Renderer/Table.php -opt/lampp/lib/php/Var_Dump/Renderer/Text.php -opt/lampp/lib/php/Var_Dump/Renderer/XHTML_Table.php -opt/lampp/lib/php/Var_Dump/Renderer/XHTML_Text.php -opt/lampp/lib/php/Var_Dump/Renderer/XML.php -opt/lampp/lib/php/XML -opt/lampp/lib/php/XML/HTMLSax -opt/lampp/lib/php/XML/HTMLSax/XML_HTMLSax_Decorators.php -opt/lampp/lib/php/XML/HTMLSax/XML_HTMLSax_States.php -opt/lampp/lib/php/XML/NITF.php -opt/lampp/lib/php/XML/Parser -opt/lampp/lib/php/XML/Parser.php -opt/lampp/lib/php/XML/Parser/Simple.php -opt/lampp/lib/php/XML/RPC -opt/lampp/lib/php/XML/RPC.php -opt/lampp/lib/php/XML/RPC/Dump.php -opt/lampp/lib/php/XML/RPC/Server.php -opt/lampp/lib/php/XML/RSS.php -opt/lampp/lib/php/XML/SVG.php -opt/lampp/lib/php/XML/Transformer -opt/lampp/lib/php/XML/Transformer.php -opt/lampp/lib/php/XML/Transformer/CallbackRegistry.php -opt/lampp/lib/php/XML/Transformer/Driver -opt/lampp/lib/php/XML/Transformer/Driver/Cache.php -opt/lampp/lib/php/XML/Transformer/Driver/OutputBuffer.php -opt/lampp/lib/php/XML/Transformer/Namespace -opt/lampp/lib/php/XML/Transformer/Namespace.php -opt/lampp/lib/php/XML/Transformer/Namespace/Anchor.php -opt/lampp/lib/php/XML/Transformer/Namespace/DocBook.php -opt/lampp/lib/php/XML/Transformer/Namespace/Image.php -opt/lampp/lib/php/XML/Transformer/Namespace/PHP.php -opt/lampp/lib/php/XML/Transformer/Namespace/Widget.php -opt/lampp/lib/php/XML/Transformer/Tests -opt/lampp/lib/php/XML/Transformer/Tests/AllTests.php -opt/lampp/lib/php/XML/Transformer/Tests/TestNamespace.php -opt/lampp/lib/php/XML/Transformer/Tests/TransformerTest.php -opt/lampp/lib/php/XML/Tree -opt/lampp/lib/php/XML/Tree.php -opt/lampp/lib/php/XML/Tree/Node.php -opt/lampp/lib/php/XML/Util.php -opt/lampp/lib/php/XML/XML_HTMLSax.php -opt/lampp/lib/php/XML/docs -opt/lampp/lib/php/XML/docs/examples -opt/lampp/lib/php/XML/fo2pdf.php -opt/lampp/lib/php/XML/image2svg.php -opt/lampp/lib/php/XML/sql2xml.php -opt/lampp/lib/php/XML/sql2xml_ext.php -opt/lampp/lib/php/XML_CSSML -opt/lampp/lib/php/XML_CSSML/CSSML -opt/lampp/lib/php/XML_CSSML/CSSML.php -opt/lampp/lib/php/XML_CSSML/CSSML/error.php -opt/lampp/lib/php/XML_CSSML/CSSML/libxslt.php -opt/lampp/lib/php/XML_CSSML/CSSML/xslt.php -opt/lampp/lib/php/XML_CSSML/docs -opt/lampp/lib/php/XML_CSSML/docs/example.php -opt/lampp/lib/php/build -opt/lampp/lib/php/build/Makefile.global -opt/lampp/lib/php/build/acinclude.m4 -opt/lampp/lib/php/build/config.guess -opt/lampp/lib/php/build/config.sub -opt/lampp/lib/php/build/dynlib.m4 -opt/lampp/lib/php/build/dynlib.mk -opt/lampp/lib/php/build/fastgen.sh -opt/lampp/lib/php/build/library.mk -opt/lampp/lib/php/build/libtool.m4 -opt/lampp/lib/php/build/ltlib.mk -opt/lampp/lib/php/build/ltmain.sh -opt/lampp/lib/php/build/mkdep.awk -opt/lampp/lib/php/build/pear.m4 -opt/lampp/lib/php/build/phpize.m4 -opt/lampp/lib/php/build/program.mk -opt/lampp/lib/php/build/rules.mk -opt/lampp/lib/php/build/rules_common.mk -opt/lampp/lib/php/build/rules_pear.mk -opt/lampp/lib/php/build/run-tests.php -opt/lampp/lib/php/build/scan_makefile_in.awk -opt/lampp/lib/php/build/shtool -opt/lampp/lib/php/class.ezpdf.php -opt/lampp/lib/php/class.pdf.php -opt/lampp/lib/php/data -opt/lampp/lib/php/data/Cache -opt/lampp/lib/php/data/Cache/Container -opt/lampp/lib/php/data/Cache/Container/mdb_cache_schema.xml -opt/lampp/lib/php/data/HTML_Progress -opt/lampp/lib/php/data/HTML_Progress/ChangeLog -opt/lampp/lib/php/data/HTML_Progress/HISTORY -opt/lampp/lib/php/data/HTML_Progress/INSTALL -opt/lampp/lib/php/data/HTML_Progress/LICENSE -opt/lampp/lib/php/data/HTML_Progress/README -opt/lampp/lib/php/data/HTML_Progress/Release-0.4.1 -opt/lampp/lib/php/data/HTML_Progress/Release-0.4.2 -opt/lampp/lib/php/data/HTML_Progress/Release-0.5.0 -opt/lampp/lib/php/data/HTML_Progress/Release-0.6.0 -opt/lampp/lib/php/data/HTML_Progress/Release-0.6.1 -opt/lampp/lib/php/data/HTML_Progress/Release-0.6.2 -opt/lampp/lib/php/data/HTML_Progress/Release-1.0 -opt/lampp/lib/php/data/HTML_Progress/Release-1.1 -opt/lampp/lib/php/data/HTML_Progress/Release-1.2.0 -opt/lampp/lib/php/data/HTML_Progress/Release-1.2.0RC1 -opt/lampp/lib/php/data/HTML_Progress/Release-1.2.0RC2 -opt/lampp/lib/php/data/HTML_Progress/Release-1.2.0RC3 -opt/lampp/lib/php/data/HTML_Progress/Release-1.2.2 -opt/lampp/lib/php/data/HTML_Progress/tutorials -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/A_install.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/B_migration12.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/C_faq.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/HTML_Progress.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/HTML_Progress.pkg.ini -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/beginner.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.getincrement.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.getmaximum.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.getminimum.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.getpercentcomplete.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.getvalue.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.incvalue.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.setincrement.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.setmaximum.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.setminimum.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/dm.setvalue.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/examples -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/examples/ancestor.ini -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/examples/progress.js -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/expert.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/expert.pkg.ini -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/gettingstarted.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/howto.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/howto.pkg.ini -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/indeterminate.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/caution.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/example.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/important.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/note.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/ancestor.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/bgimages.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/bluesand.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/bluesandplus.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/border.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/border1.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/border2.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/border3.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/bullit.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/circle080.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/default.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/determinate.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/inahurry.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/indeterminate.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/indeterminate_basic.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/javadanse.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/monitor_complex.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/monitor_default1.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/monitor_function_callback.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/monitor_itdynamic.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/monitor_simple.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/nostring.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/observer_complex.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/progressmaker.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/rect64.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/redsandback.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/scratch1.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/scratch21.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/scratch22.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/smallest.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/square.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/string.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/string1.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/template.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/vertical1.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/screenshots/vertical2.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/tip.gif -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/tip.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/media/warning.png -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.accept.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.callprogresshandler.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.getprogresselement.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.getscript.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.getstyle.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.iscanceled.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.isstarted.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.notify.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.run.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.setcaption.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.setprogresselement.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.setprogresshandler.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/monitor.tohtml.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/observer.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part1-introduction.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part2-errorhandling.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part2-firstprogressmeter.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part2-gettingstarted.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part2-gettingstarted.pkg.ini -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part2-indeterminate.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part2-monitor.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part2-observer.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part2-progresshandler.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part3-reference.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part3-reference.pkg.ini -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part4-appendixes.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/part4-appendixes.pkg.ini -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/preface.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.addlistener.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.apiversion.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.constants.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.display.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.getanimspeed.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.getdm.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.geterror.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.getident.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.getlisteners.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.getstring.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.getui.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.haserrors.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.hide.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.isborderpainted.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.isindeterminate.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.isstringpainted.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.process.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.raiseerror.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.removelistener.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.run.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setanimspeed.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setborderpainted.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setdm.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setident.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setindeterminate.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setmodel.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setprogresshandler.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setstring.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setstringpainted.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.setui.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.sleep.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.toarray.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/progress.tohtml.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/reference.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/reference.pkg.ini -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.drawcirclesegments.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getborderattributes.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getcellattributes.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getcellcoordinates.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getcellcount.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getfillway.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getorientation.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getprogressattributes.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getscript.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getstringattributes.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.getstyle.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setborderattributes.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setcellattributes.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setcellcoordinates.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setcellcount.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setfillway.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setorientation.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setprogressattributes.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setscript.pkg -opt/lampp/lib/php/data/HTML_Progress/tutorials/HTML_Progress/ui.setstringattributes.pkg -opt/lampp/lib/php/data/HTML_Template_Sigma -opt/lampp/lib/php/data/HTML_Template_Sigma/tests -opt/lampp/lib/php/data/HTML_Template_Sigma/tests/templates -opt/lampp/lib/php/data/HTML_TreeMenu -opt/lampp/lib/php/data/HTML_TreeMenu/TreeMenu.js -opt/lampp/lib/php/data/HTML_TreeMenu/images -opt/lampp/lib/php/data/HTML_TreeMenu/images/branch.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/branchbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/branchtop.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/folder-expanded.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/folder.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/line.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/linebottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/minus.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/minusbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/minustop.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/plus.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/plusbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/images/plustop.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/branch.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/branchbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/branchtop.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/folder-expanded.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/folder.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/line.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/linebottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/minus.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/minusbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/minustop.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/plus.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/plusbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt/plustop.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2 -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/branch.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/branchbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/branchtop.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/folder-expanded.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/folder.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/line.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/linebottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/minus.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/minusbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/minustop.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/plus.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/plusbottom.gif -opt/lampp/lib/php/data/HTML_TreeMenu/imagesAlt2/plustop.gif -opt/lampp/lib/php/data/Log -opt/lampp/lib/php/data/Log/misc -opt/lampp/lib/php/data/Log/misc/log.sql -opt/lampp/lib/php/data/Mail_Mime -opt/lampp/lib/php/data/Mail_Mime/xmail.dtd -opt/lampp/lib/php/data/Mail_Mime/xmail.xsl -opt/lampp/lib/php/data/PEAR -opt/lampp/lib/php/data/PEAR/package.dtd -opt/lampp/lib/php/data/PEAR/template.spec -opt/lampp/lib/php/data/Science_Chemistry -opt/lampp/lib/php/data/Science_Chemistry/Chemistry -opt/lampp/lib/php/data/Science_Chemistry/Chemistry/test -opt/lampp/lib/php/data/Science_Chemistry/Chemistry/test/1hca.pdb -opt/lampp/lib/php/data/Science_Chemistry/Chemistry/test/his.pdb -opt/lampp/lib/php/data/Science_Chemistry/Chemistry/test/his.xyz -opt/lampp/lib/php/data/Science_Chemistry/Chemistry/test/lys.pdb -opt/lampp/lib/php/data/Science_Chemistry/Chemistry/test/lys.xyz -opt/lampp/lib/php/data/Science_Chemistry/Chemistry/test/small.pdb -opt/lampp/lib/php/data/Science_Chemistry/Chemistry/test/water.cml -opt/lampp/lib/php/data/Var_Dump -opt/lampp/lib/php/data/Var_Dump/memory-usage.txt -opt/lampp/lib/php/data/Var_Dump/renderer-xml.dtd -opt/lampp/lib/php/data/XML_CSSML -opt/lampp/lib/php/data/XML_CSSML/docs -opt/lampp/lib/php/data/XML_CSSML/docs/CSSML.xml -#opt/lampp/lib/php/doc -#opt/lampp/lib/php/doc/Archive_Tar -#opt/lampp/lib/php/doc/Archive_Tar/docs -#opt/lampp/lib/php/doc/Archive_Tar/docs/Archive_Tar.txt -#opt/lampp/lib/php/doc/Auth -#opt/lampp/lib/php/doc/Auth/README.Auth -#opt/lampp/lib/php/doc/Auth_PrefManager -#opt/lampp/lib/php/doc/Auth_PrefManager/docs -#opt/lampp/lib/php/doc/Auth_PrefManager/docs/PM_Example.php -#opt/lampp/lib/php/doc/Benchmark -#opt/lampp/lib/php/doc/Benchmark/doc -#opt/lampp/lib/php/doc/Benchmark/doc/timer_example.php -#opt/lampp/lib/php/doc/Cache_Lite -#opt/lampp/lib/php/doc/Cache_Lite/LICENSE -#opt/lampp/lib/php/doc/Cache_Lite/TODO -#opt/lampp/lib/php/doc/Cache_Lite/docs -#opt/lampp/lib/php/doc/Cache_Lite/docs/examples -#opt/lampp/lib/php/doc/Cache_Lite/docs/technical -#opt/lampp/lib/php/doc/Cache_Lite/tests -#opt/lampp/lib/php/doc/Cache_Lite/tests/readme -#opt/lampp/lib/php/doc/Config -#opt/lampp/lib/php/doc/Config/docs -#opt/lampp/lib/php/doc/Config/docs/Apache.php -#opt/lampp/lib/php/doc/Config/docs/IniCommented.php -#opt/lampp/lib/php/doc/Config/docs/IniFromScratch.php -#opt/lampp/lib/php/doc/DB -#opt/lampp/lib/php/doc/DB/doc -#opt/lampp/lib/php/doc/DB/doc/IDEAS -#opt/lampp/lib/php/doc/DB/doc/MAINTAINERS -#opt/lampp/lib/php/doc/DB/doc/STATUS -#opt/lampp/lib/php/doc/DB/doc/TESTERS -#opt/lampp/lib/php/doc/DBA -#opt/lampp/lib/php/doc/DBA/docs -#opt/lampp/lib/php/doc/DBA/docs/README.txt -#opt/lampp/lib/php/doc/DB_DataObject -#opt/lampp/lib/php/doc/DB_DataObject/docs -#opt/lampp/lib/php/doc/DB_DataObject/docs/example.ini -#opt/lampp/lib/php/doc/DB_NestedSet -#opt/lampp/lib/php/doc/DB_NestedSet/docs -#opt/lampp/lib/php/doc/DB_NestedSet/docs/README -#opt/lampp/lib/php/doc/DB_NestedSet/docs/TigraMenu_example.php -#opt/lampp/lib/php/doc/DB_NestedSet/docs/TreeMenu_example.php -#opt/lampp/lib/php/doc/DB_NestedSet/docs/migrateDB.txt -#opt/lampp/lib/php/doc/DB_NestedSet/docs/mysql.sql -#opt/lampp/lib/php/doc/DB_NestedSet/docs/testdb_mysql.sql -#opt/lampp/lib/php/doc/DB_QueryTool -#opt/lampp/lib/php/doc/DB_QueryTool/docs -#opt/lampp/lib/php/doc/DB_QueryTool/docs/examples -#opt/lampp/lib/php/doc/DB_QueryTool/docs/examples/example.php -#opt/lampp/lib/php/doc/DB_QueryTool/docs/examples/mysql.sql -#opt/lampp/lib/php/doc/DB_QueryTool/docs/examples/pgsql.sql -#opt/lampp/lib/php/doc/DB_QueryTool/tests -#opt/lampp/lib/php/doc/Date -#opt/lampp/lib/php/doc/Date/TODO -#opt/lampp/lib/php/doc/FSM -#opt/lampp/lib/php/doc/FSM/docs -#opt/lampp/lib/php/doc/FSM/docs/examples -#opt/lampp/lib/php/doc/FSM/docs/examples/rpn.php -#opt/lampp/lib/php/doc/FSM/docs/guide.txt -#opt/lampp/lib/php/doc/File_SMBPasswd -#opt/lampp/lib/php/doc/File_SMBPasswd/examples -#opt/lampp/lib/php/doc/File_SMBPasswd/examples/smbpasswd -#opt/lampp/lib/php/doc/File_SMBPasswd/examples/smbpasswd.php -#opt/lampp/lib/php/doc/HTML_CSS -#opt/lampp/lib/php/doc/HTML_CSS/examples -#opt/lampp/lib/php/doc/HTML_CSS/examples/CSS_InHeader.php -#opt/lampp/lib/php/doc/HTML_CSS/examples/CSS_Inline.php -#opt/lampp/lib/php/doc/HTML_CSS/examples/CSS_Stylesheet.php -#opt/lampp/lib/php/doc/HTML_Menu -#opt/lampp/lib/php/doc/HTML_Menu/examples -#opt/lampp/lib/php/doc/HTML_Menu/examples/data -#opt/lampp/lib/php/doc/HTML_Menu/examples/data/menu.php -#opt/lampp/lib/php/doc/HTML_Menu/examples/directtree.php -#opt/lampp/lib/php/doc/HTML_Menu/examples/sigma.php -#opt/lampp/lib/php/doc/HTML_Menu/examples/sigmatree.php -#opt/lampp/lib/php/doc/HTML_Menu/examples/templates -#opt/lampp/lib/php/doc/HTML_Menu/examples/templates/sigma.html -#opt/lampp/lib/php/doc/HTML_Menu/examples/templates/sigmatree.html -#opt/lampp/lib/php/doc/HTML_Menu/examples/types.php -#opt/lampp/lib/php/doc/HTML_Page -#opt/lampp/lib/php/doc/HTML_Page/examples -#opt/lampp/lib/php/doc/HTML_Page/examples/Page_Complex.php -#opt/lampp/lib/php/doc/HTML_Page/examples/Page_NoDoctype.php -#opt/lampp/lib/php/doc/HTML_Page/examples/Page_Simple.php -#opt/lampp/lib/php/doc/HTML_Progress -#opt/lampp/lib/php/doc/HTML_Progress/docs -#opt/lampp/lib/php/doc/HTML_Progress/examples -#opt/lampp/lib/php/doc/HTML_Progress/examples/examples.css -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/ancestor.ini -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/bgimages.ini -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/bluesand.ini -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/bullit.ini -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/custom.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/default.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/default.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/embedded.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/embedded.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/htmlpage.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/htmlpage.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/itdynamic.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/redsandback.ini -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/smallest.ini -#opt/lampp/lib/php/doc/HTML_Progress/examples/generator/smartydynamic.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/highlighter.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/ancestor.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/ancestor.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/bgimages.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/bgimages.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/bluesand.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/bluesand.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/bluesandplus.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/bluesandplus.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/bullit.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/bullit.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/download.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/javadanse.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/javadanse.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/model.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/model.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/nostring.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/nostring.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/progress_number.js -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/redsandback.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/redsandback.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/smallest.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/smallest.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/string.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/horizontal/string.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/images -#opt/lampp/lib/php/doc/HTML_Progress/examples/images/config.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/images/hands.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/images/home.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/images/image.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/images/info.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/images/run.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/images/source.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/indeterminate -#opt/lampp/lib/php/doc/HTML_Progress/examples/indeterminate/half_basic.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/indeterminate/half_basic.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/indeterminate/half_monitor.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/indeterminate/half_monitor.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/index.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/model -#opt/lampp/lib/php/doc/HTML_Progress/examples/model/inicommented.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/model/inicommented.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/model/javadanse.ini -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/default1.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/default1.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/default2.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/default2.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/function_callback.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/function_callback.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/htmlpage.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/htmlpage.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/itdynamic.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/itdynamic.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/method_callback.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/monitor/method_callback.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/multiple -#opt/lampp/lib/php/doc/HTML_Progress/examples/multiple/vertical.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/multiple/vertical.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/circleback.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/circleback.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/circleplain.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/circleplain.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/ellipse.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/ellipse.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/rectangle.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/rectangle.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/rectangleback.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/rectangleback.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/square.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/square.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/squareback.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/newshape/squareback.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/observer -#opt/lampp/lib/php/doc/HTML_Progress/examples/observer/complex.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/observer/complex.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/observer/default.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/observer/default.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/observer/simple.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/observer/simple.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/pear-power.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/preload -#opt/lampp/lib/php/doc/HTML_Progress/examples/preload/hidden.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/preload/hidden.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/preload/shockwaveflash.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/preload/shockwaveflash.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/preload/sw4p.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/ancestor.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/bgimages.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/bluesand.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/bluesandplus.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/bullit.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/cb010.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/cb060.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/cb100.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/circle000.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/circle040.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/circle080.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/circle100.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/default.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/e000.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/e040.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/e080.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/e100.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/generator_embedded.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/generator_standard.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/horizontal.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/indeterminate.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/indeterminate_half_basic.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/itxstatic.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/javadanse.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/model.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/monitor_complex.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/monitor_default1.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/monitor_function_callback.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/monitor_itdynamic.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/monitor_method_callback.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/monitor_simple.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/monitor_template.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/nostring.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/observer_complex.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/observer_simple.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/observer_standard.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/rect153.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/rect64.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/redsandback.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/smallest.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/square.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/square44.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/string.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/string1.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/template.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/upload_ftp.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/upload_logs.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/upload_mixed.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/upload_popup.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/upload_selfref.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/vertical1.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/vertical2.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/vertical3.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/vertical4.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/screenshots/vumeter.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/cross.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/installing.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/itdynamic.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/itdynamic_generator.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/itdynamic_monitor.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/itdynamic_uploader.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/itdynamic_uploader2.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/itxstatic.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/itxstatic.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/smarty-dynamic.tpl -#opt/lampp/lib/php/doc/HTML_Progress/examples/templates/wizard.png -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/download.gif -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/formbasic.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/formpopup.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/formselfref.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/ftp.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/ftpupload.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/ftpupload.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/hbar.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/http1.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/http2.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/http3.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/http4.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/logsupload.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/mixedupload.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/mixedupload.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/progressbar.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/selfref.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/upload/vbar.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/vertical -#opt/lampp/lib/php/doc/HTML_Progress/examples/vertical/basic.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/vertical/basic.php -#opt/lampp/lib/php/doc/HTML_Progress/examples/vertical/limit.html -#opt/lampp/lib/php/doc/HTML_Progress/examples/vertical/limit.php -#opt/lampp/lib/php/doc/HTML_Progress/tutorials -#opt/lampp/lib/php/doc/HTML_Progress/tutorials/HTML_Progress -#opt/lampp/lib/php/doc/HTML_Progress/tutorials/HTML_Progress/examples -#opt/lampp/lib/php/doc/HTML_Progress/tutorials/HTML_Progress/examples/listing-2.2.html -#opt/lampp/lib/php/doc/HTML_Progress/tutorials/HTML_Progress/examples/monitor_itdynamic.html -#opt/lampp/lib/php/doc/HTML_QuickForm -#opt/lampp/lib/php/doc/HTML_QuickForm/docs -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/elements.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/filters.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/formrule.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/groups.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/FlexyDynamic_example.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/FlexyStatic_example.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/ITDynamic_example.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/ITDynamic_example2.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/ITStatic_example.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/QuickHtml_example.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/SmartyDynamic_example.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/SmartyStatic_example.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/multiple-labels.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/flexy-dynamic.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/flexy-static.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/html.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/it-dynamic-2.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/it-dynamic.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/it-static.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/label.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/smarty-dynamic-fancygroup.tpl -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/smarty-dynamic-green.tpl -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/smarty-dynamic.tpl -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/smarty-static.tpl -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/styles -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/styles/fancygroup.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/renderers/templates/styles/green.html -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/rules-builtin.php -#opt/lampp/lib/php/doc/HTML_QuickForm/docs/rules-custom.php -#opt/lampp/lib/php/doc/HTML_Template_Sigma -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/example_1.php -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/example_2.php -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/example_3.php -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/example_4.php -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates/example_1.html -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates/example_2.html -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates/example_3.html -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates/example_3_add.html -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates/example_3_include.html -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates/example_3_replace_1.html -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates/example_3_replace_2.html -#opt/lampp/lib/php/doc/HTML_Template_Sigma/docs/templates/example_4.html -#opt/lampp/lib/php/doc/HTML_Template_Xipe -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/Cache -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/Cache/index.php -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/Cache/index.tpl -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/Cache/tmp -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/Cache/tmp/.htaccess -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/autoBracesOff -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/autoBracesOff/index.php -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/autoBracesOff/index.tpl -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/autoBracesOff/tmp -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/autoBracesOff/tmp/.htaccess -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/fullFeatured -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/fullFeatured/index.php -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/fullFeatured/index.tpl -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/fullFeatured/tmp -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/fullFeatured/tmp/.htaccess -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes/include.mcr -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes/include.tpl -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes/include1.mcr -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes/include1.tpl -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes/index.php -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes/index.tpl -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes/tmp -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/includes/tmp/.htaccess -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/simple -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/simple/index.php -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/simple/index.tpl -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/simple/tmp -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/simple/tmp/.htaccess -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/style.css -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/translate.mysql.sql -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/xmlConfig -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/xmlConfig/config.xml -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/xmlConfig/index.php -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/xmlConfig/index.tpl -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/xmlConfig/tmp -#opt/lampp/lib/php/doc/HTML_Template_Xipe/docs/xmlConfig/tmp/.htaccess -#opt/lampp/lib/php/doc/HTML_TreeMenu -#opt/lampp/lib/php/doc/HTML_TreeMenu/docs -#opt/lampp/lib/php/doc/HTML_TreeMenu/docs/HTML_TreeMenu.doc -#opt/lampp/lib/php/doc/HTML_TreeMenu/docs/HTML_TreeMenu.pdf -#opt/lampp/lib/php/doc/HTTP_Request -#opt/lampp/lib/php/doc/HTTP_Request/docs -#opt/lampp/lib/php/doc/HTTP_Request/docs/download-progress.php -#opt/lampp/lib/php/doc/HTTP_Request/docs/example.php -#opt/lampp/lib/php/doc/HTTP_Upload -#opt/lampp/lib/php/doc/HTTP_Upload/docs -#opt/lampp/lib/php/doc/HTTP_Upload/docs/upload_example.php -#opt/lampp/lib/php/doc/Log -#opt/lampp/lib/php/doc/Log/docs -#opt/lampp/lib/php/doc/Log/docs/examples -#opt/lampp/lib/php/doc/Log/docs/examples/composite.php -#opt/lampp/lib/php/doc/Log/docs/examples/console.php -#opt/lampp/lib/php/doc/Log/docs/examples/display.php -#opt/lampp/lib/php/doc/Log/docs/examples/error_log.php -#opt/lampp/lib/php/doc/Log/docs/examples/file.php -#opt/lampp/lib/php/doc/Log/docs/examples/mail.php -#opt/lampp/lib/php/doc/Log/docs/examples/null.php -#opt/lampp/lib/php/doc/Log/docs/examples/observer_mail.php -#opt/lampp/lib/php/doc/Log/docs/examples/pear_error_handler.php -#opt/lampp/lib/php/doc/Log/docs/examples/php_error_handler.php -#opt/lampp/lib/php/doc/Log/docs/examples/sql.php -#opt/lampp/lib/php/doc/Log/docs/examples/sqlite.php -#opt/lampp/lib/php/doc/Log/docs/examples/syslog.php -#opt/lampp/lib/php/doc/Log/docs/examples/win.php -#opt/lampp/lib/php/doc/Log/docs/guide.txt -#opt/lampp/lib/php/doc/MDB -#opt/lampp/lib/php/doc/MDB/MAINTAINERS -#opt/lampp/lib/php/doc/MDB/README -#opt/lampp/lib/php/doc/MDB/TODO -#opt/lampp/lib/php/doc/MDB/doc -#opt/lampp/lib/php/doc/MDB/doc/Modules_Manager_skeleton.php -#opt/lampp/lib/php/doc/MDB/doc/datatypes.html -#opt/lampp/lib/php/doc/MDB/doc/skeleton.php -#opt/lampp/lib/php/doc/MDB/doc/tutorial.html -#opt/lampp/lib/php/doc/MDB/doc/xml_schema.xsl -#opt/lampp/lib/php/doc/MDB/doc/xml_schema_documentation.html -#opt/lampp/lib/php/doc/MDB_QueryTool -#opt/lampp/lib/php/doc/MDB_QueryTool/docs -#opt/lampp/lib/php/doc/MDB_QueryTool/docs/examples -#opt/lampp/lib/php/doc/MDB_QueryTool/docs/examples/example.php -#opt/lampp/lib/php/doc/MDB_QueryTool/docs/examples/mysql.sql -#opt/lampp/lib/php/doc/MDB_QueryTool/docs/examples/pgsql.sql -#opt/lampp/lib/php/doc/Mail_Queue -#opt/lampp/lib/php/doc/Mail_Queue/docs -#opt/lampp/lib/php/doc/Mail_Queue/docs/README -#opt/lampp/lib/php/doc/Mail_Queue/docs/TODO -#opt/lampp/lib/php/doc/Mail_Queue/docs/add_example.php -#opt/lampp/lib/php/doc/Mail_Queue/docs/base.php -#opt/lampp/lib/php/doc/Mail_Queue/docs/mdb_mail_queue_schema.xml -#opt/lampp/lib/php/doc/Mail_Queue/docs/mysql.sql -#opt/lampp/lib/php/doc/Mail_Queue/docs/pgsql.sql -#opt/lampp/lib/php/doc/Mail_Queue/docs/send_example.php -#opt/lampp/lib/php/doc/Net_FTP -#opt/lampp/lib/php/doc/Net_FTP/example -#opt/lampp/lib/php/doc/Net_FTP/example/extensions.ini -#opt/lampp/lib/php/doc/Net_FTP/example/index.php -#opt/lampp/lib/php/doc/Net_FTP/example/observer.php -#opt/lampp/lib/php/doc/Net_NNTP -#opt/lampp/lib/php/doc/Net_NNTP/docs -#opt/lampp/lib/php/doc/Net_NNTP/docs/examples -#opt/lampp/lib/php/doc/Net_NNTP/docs/examples/news.php.net -#opt/lampp/lib/php/doc/Net_NNTP/docs/examples/news.php.net/group.php -#opt/lampp/lib/php/doc/Net_NNTP/docs/examples/news.php.net/index.php -#opt/lampp/lib/php/doc/Net_NNTP/docs/examples/news.php.net/read.php -#opt/lampp/lib/php/doc/Net_NNTP/examples -#opt/lampp/lib/php/doc/Net_NNTP/examples/news.php.net -#opt/lampp/lib/php/doc/Net_Ping -#opt/lampp/lib/php/doc/Net_Ping/docs -#opt/lampp/lib/php/doc/Net_Ping/docs/examples -#opt/lampp/lib/php/doc/Net_Ping/docs/examples/example.php -#opt/lampp/lib/php/doc/Net_SMTP -#opt/lampp/lib/php/doc/Net_SMTP/docs -#opt/lampp/lib/php/doc/Net_SMTP/docs/examples -#opt/lampp/lib/php/doc/Net_SMTP/docs/examples/basic.php -#opt/lampp/lib/php/doc/Net_SMTP/docs/guide.txt -#opt/lampp/lib/php/doc/Net_SmartIRC -#opt/lampp/lib/php/doc/Net_SmartIRC/CHANGELOG -#opt/lampp/lib/php/doc/Net_SmartIRC/CREDITS -#opt/lampp/lib/php/doc/Net_SmartIRC/FEATURES -#opt/lampp/lib/php/doc/Net_SmartIRC/LICENSE -#opt/lampp/lib/php/doc/Net_SmartIRC/README -#opt/lampp/lib/php/doc/Net_SmartIRC/docs -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/DOCUMENTATION -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HOWTO -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_Error.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_actionhandler.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_base.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_channel.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_channeluser.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_data.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_irccommands.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_ircuser.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_listenfor.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_messagehandler.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_timehandler.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/Net_SmartIRC_user.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_SmartIRC_defines_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_SmartIRC_irccommands_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_SmartIRC_messagehandler_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_SmartIRC_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example2_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example3_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example4_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example5_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example6_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example7_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example_php.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/Net_SmartIRC/mybot.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/classtrees_Net_SmartIRC.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/elementindex.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/elementindex_Net_SmartIRC.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/errors.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/index.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/li_Net_SmartIRC.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/TreeMenu.js -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/background.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/empty.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Class.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Constant.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Constants.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Constructor.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Destructor.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Disk.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/FolderClosed.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/FolderOpened.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Functions.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/GhostClass.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/I.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/L.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Lminus.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Lplus.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/PrivateDataMember.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/PrivateMethod.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/PrivateProperty.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/ProtectedDataMember.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/ProtectedMethod.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/ProtectedProperty.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/PublicDataMember.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/PublicMethod.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/PublicProperty.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/T.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Thumbs.db -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Tminus.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Tplus.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/Class.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/Disk.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/FolderOpened.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/Functions.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/branch.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/branchbottom.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/branchtop.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/classFolder.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/file.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/folder.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/line.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/linebottom.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/minus.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/minusbottom.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/minustop.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/plus.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/plusbottom.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/TreeMenuJS/plustop.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Types.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Variable.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/Vars.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/blank.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/checkerboard.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/classFolder.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/error.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/file.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/foldericon.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/leftbg.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/minus.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/msgError.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/msgFatalError.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/msgHint.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/msgInformation.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/msgWarning.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/openfoldericon.png -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/pearlogo.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/plus.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/spacer.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/images/spacer2.gif -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/lib -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/lib/classTree.js -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/lib/tab.webfx.css -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/lib/tabpane.js -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/lib/ua.js -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/media/style.css -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/ric_CHANGELOG.html -#opt/lampp/lib/php/doc/Net_SmartIRC/docs/HTML/ric_README.html -#opt/lampp/lib/php/doc/Net_SmartIRC/examples -#opt/lampp/lib/php/doc/Net_SmartIRC/examples/example.php -#opt/lampp/lib/php/doc/Net_SmartIRC/examples/example2.php -#opt/lampp/lib/php/doc/Net_SmartIRC/examples/example3.php -#opt/lampp/lib/php/doc/Net_SmartIRC/examples/example4.php -#opt/lampp/lib/php/doc/Net_SmartIRC/examples/example5.php -#opt/lampp/lib/php/doc/Net_SmartIRC/examples/example6.php -#opt/lampp/lib/php/doc/Net_SmartIRC/examples/example7.php -#opt/lampp/lib/php/doc/Net_URL -#opt/lampp/lib/php/doc/Net_URL/docs -#opt/lampp/lib/php/doc/Net_URL/docs/example.php -#opt/lampp/lib/php/doc/PEAR_PackageFileManager -#opt/lampp/lib/php/doc/PEAR_PackageFileManager/examples -#opt/lampp/lib/php/doc/PEAR_PackageFileManager/examples/createPhpDocumentor_package.xml.php -#opt/lampp/lib/php/doc/PEAR_PackageFileManager/examples/generatePackage.xml.php -#opt/lampp/lib/php/doc/Pager -#opt/lampp/lib/php/doc/Pager/examples -#opt/lampp/lib/php/doc/Pager/examples/Pager_Wrapper.php -#opt/lampp/lib/php/doc/Pager/examples/example.php -#opt/lampp/lib/php/doc/Pager_Sliding -#opt/lampp/lib/php/doc/Pager_Sliding/examples -#opt/lampp/lib/php/doc/SQLite -#opt/lampp/lib/php/doc/SQLite/.tmpCREDITS -#opt/lampp/lib/php/doc/SQLite/.tmpREADME -#opt/lampp/lib/php/doc/SQLite/.tmpTODO -#opt/lampp/lib/php/doc/SQLite/.tmpsqlite.php -#opt/lampp/lib/php/doc/SQLite/libsqlite -#opt/lampp/lib/php/doc/SQLite/libsqlite/.tmpREADME -#opt/lampp/lib/php/doc/Stream_Var -#opt/lampp/lib/php/doc/Stream_Var/examples -#opt/lampp/lib/php/doc/Stream_Var/examples/example_dir.php -#opt/lampp/lib/php/doc/Stream_Var/examples/example_file.php -#opt/lampp/lib/php/doc/Stream_Var/examples/example_modes.php -#opt/lampp/lib/php/doc/Translation -#opt/lampp/lib/php/doc/Translation/doc -#opt/lampp/lib/php/doc/Translation/docs -#opt/lampp/lib/php/doc/Translation/docs/TTranslationUTF8.html -#opt/lampp/lib/php/doc/Translation/docs/Translation.html -#opt/lampp/lib/php/doc/Translation/docs/Translation_str_mgmt_php.html -#opt/lampp/lib/php/doc/Translation/docs/stylesheet.css -#opt/lampp/lib/php/doc/Tree -#opt/lampp/lib/php/doc/Tree/docs -#opt/lampp/lib/php/doc/Tree/docs/Dynamic_DBnested.php -#opt/lampp/lib/php/doc/Tree/docs/Dynamic_DBnested.sql -#opt/lampp/lib/php/doc/Tree/docs/Memory_DBnested.php -#opt/lampp/lib/php/doc/Tree/docs/Memory_DBsimple.php -#opt/lampp/lib/php/doc/Tree/docs/Memory_XML.php -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/closedFolder.gif -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/config.xml -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/copy.gif -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/cut.gif -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/delete.gif -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/folder.gif -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/index.php -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/index.tpl -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/mysql_db.sql -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/openFolder.gif -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/paste.gif -#opt/lampp/lib/php/doc/Tree/docs/TreeEditor/treeClass.php -#opt/lampp/lib/php/doc/Tree/docs/TreeView -#opt/lampp/lib/php/doc/Tree/docs/TreeView/index.php -#opt/lampp/lib/php/doc/Tree/docs/TreeView/index.tpl -#opt/lampp/lib/php/doc/Tree/docs/config.xml -#opt/lampp/lib/php/doc/Validate -#opt/lampp/lib/php/doc/Validate/docs -#opt/lampp/lib/php/doc/Validate/docs/sample_multiple.php -#opt/lampp/lib/php/doc/Var_Dump -#opt/lampp/lib/php/doc/Var_Dump/example-1.php -#opt/lampp/lib/php/doc/Var_Dump/example-2.php -#opt/lampp/lib/php/doc/Var_Dump/example-3.php -#opt/lampp/lib/php/doc/Var_Dump/example-4.php -#opt/lampp/lib/php/doc/Var_Dump/example-5.php -#opt/lampp/lib/php/doc/Var_Dump/example-6.php -#opt/lampp/lib/php/doc/XML_HTMLSax -#opt/lampp/lib/php/doc/XML_HTMLSax/docs -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/Readme -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/examples -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/examples/ExpatvsHtmlSax.php -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/examples/HTMLtoXHTML.php -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/examples/SimpleExample.php -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/examples/example.html -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/tests -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/tests/index.php -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/tests/unit_tests.php -#opt/lampp/lib/php/doc/XML_HTMLSax/docs/tests/xml_htmlsax_test.php -#opt/lampp/lib/php/doc/XML_Parser -#opt/lampp/lib/php/doc/XML_Parser/examples -#opt/lampp/lib/php/doc/XML_Parser/examples/xml_parser_file.php -#opt/lampp/lib/php/doc/XML_Parser/examples/xml_parser_file.xml -#opt/lampp/lib/php/doc/XML_Parser/examples/xml_parser_handler.php -#opt/lampp/lib/php/doc/XML_Parser/examples/xml_parser_simple1.php -#opt/lampp/lib/php/doc/XML_Parser/examples/xml_parser_simple1.xml -#opt/lampp/lib/php/doc/XML_Parser/examples/xml_parser_simple2.php -#opt/lampp/lib/php/doc/XML_Parser/examples/xml_parser_simple2.xml -#opt/lampp/lib/php/doc/XML_Parser/examples/xml_parser_simple_handler.php -#opt/lampp/lib/php/doc/XML_Transformer -#opt/lampp/lib/php/doc/XML_Transformer/README -#opt/lampp/lib/php/doc/XML_Util -#opt/lampp/lib/php/doc/XML_Util/examples -#opt/lampp/lib/php/doc/XML_Util/examples/example.php -#opt/lampp/lib/php/doc/XML_Util/examples/example2.php -#opt/lampp/lib/php/doc/XML_sql2xml -#opt/lampp/lib/php/doc/XML_sql2xml/doc -#opt/lampp/lib/php/doc/XML_sql2xml/doc/bands.xml -#opt/lampp/lib/php/doc/XML_sql2xml/doc/tutorial.html -#opt/lampp/lib/php/doc/XML_sql2xml/doc/xmltest.sql -#opt/lampp/lib/php/doc/radius -#opt/lampp/lib/php/doc/radius/examples -#opt/lampp/lib/php/doc/radius/examples/.tmpdes.php -#opt/lampp/lib/php/doc/radius/examples/.tmpmschap.php -#opt/lampp/lib/php/doc/radius/examples/.tmpmschaptest.php -#opt/lampp/lib/php/doc/radius/examples/.tmpradius-acct.php -#opt/lampp/lib/php/doc/radius/examples/.tmpradius-auth.php -#opt/lampp/lib/php/doc/xdebug -#opt/lampp/lib/php/doc/xdebug/.tmpCREDITS -#opt/lampp/lib/php/doc/xdebug/.tmpChangelog -#opt/lampp/lib/php/doc/xdebug/.tmpLICENSE -#opt/lampp/lib/php/doc/xdebug/.tmpNEWS -#opt/lampp/lib/php/doc/xdebug/.tmpREADME -#opt/lampp/lib/php/doc/zip -#opt/lampp/lib/php/doc/zip/.tmpCREDITS -#opt/lampp/lib/php/doc/zip/.tmpphp_zip.h -#opt/lampp/lib/php/docs -#opt/lampp/lib/php/docs/Archive_Tar -#opt/lampp/lib/php/docs/Archive_Tar/docs -#opt/lampp/lib/php/docs/Auth -#opt/lampp/lib/php/docs/Auth_PrefManager -#opt/lampp/lib/php/docs/Auth_PrefManager/docs -#opt/lampp/lib/php/docs/Auth_RADIUS -#opt/lampp/lib/php/docs/Auth_RADIUS/examples -#opt/lampp/lib/php/docs/Auth_RADIUS/examples/radius-acct.php -#opt/lampp/lib/php/docs/Auth_RADIUS/examples/radius-auth.php -#opt/lampp/lib/php/docs/Benchmark -#opt/lampp/lib/php/docs/Benchmark/doc -#opt/lampp/lib/php/docs/Cache_Lite -#opt/lampp/lib/php/docs/Cache_Lite/docs -#opt/lampp/lib/php/docs/Cache_Lite/tests -#opt/lampp/lib/php/docs/Config -#opt/lampp/lib/php/docs/Config/docs -#opt/lampp/lib/php/docs/Contact_Vcard_Build -#opt/lampp/lib/php/docs/Contact_Vcard_Parse -#opt/lampp/lib/php/docs/DB -#opt/lampp/lib/php/docs/DB/DB -#opt/lampp/lib/php/docs/DB/doc -#opt/lampp/lib/php/docs/DBA -#opt/lampp/lib/php/docs/DBA/docs -#opt/lampp/lib/php/docs/DB_NestedSet -#opt/lampp/lib/php/docs/DB_NestedSet/docs -#opt/lampp/lib/php/docs/DB_QueryTool -#opt/lampp/lib/php/docs/DB_QueryTool/docs -#opt/lampp/lib/php/docs/DB_QueryTool/tests -#opt/lampp/lib/php/docs/HTML_Javascript -#opt/lampp/lib/php/docs/HTML_Javascript/examples -#opt/lampp/lib/php/docs/HTML_Javascript/examples/javascript.php -#opt/lampp/lib/php/docs/HTML_Javascript/examples/js.php -#opt/lampp/lib/php/docs/HTML_QuickForm -#opt/lampp/lib/php/docs/HTML_QuickForm/docs -#opt/lampp/lib/php/docs/HTML_QuickForm/docs/renderers -#opt/lampp/lib/php/docs/HTML_QuickForm/docs/renderers/templates -#opt/lampp/lib/php/docs/HTML_Table -#opt/lampp/lib/php/docs/HTML_Table/docs -#opt/lampp/lib/php/docs/HTML_Table/docs/Table_example1.php -#opt/lampp/lib/php/docs/HTML_Table/docs/Table_example2.php -#opt/lampp/lib/php/docs/HTML_Template_IT -#opt/lampp/lib/php/docs/HTML_Template_IT/examples -#opt/lampp/lib/php/docs/HTML_Template_IT/examples/sample_it.php -#opt/lampp/lib/php/docs/HTML_Template_IT/examples/templates -#opt/lampp/lib/php/docs/HTML_Template_IT/examples/templates/main.tpl.htm -#opt/lampp/lib/php/docs/HTML_Template_PHPLIB -#opt/lampp/lib/php/docs/HTML_Template_PHPLIB/examples -#opt/lampp/lib/php/docs/HTML_Template_PHPLIB/examples/README -#opt/lampp/lib/php/docs/HTML_Template_PHPLIB/examples/block.ihtml -#opt/lampp/lib/php/docs/HTML_Template_PHPLIB/examples/block.php -#opt/lampp/lib/php/docs/HTML_Template_PHPLIB/examples/ittest.php -#opt/lampp/lib/php/docs/HTML_Template_PHPLIB/examples/tpl1.ihtml -#opt/lampp/lib/php/docs/HTML_Template_PHPLIB/examples/tpl1.php -#opt/lampp/lib/php/docs/HTML_Template_Sigma -#opt/lampp/lib/php/docs/HTML_Template_Sigma/docs -#opt/lampp/lib/php/docs/HTML_Template_Sigma/docs/templates -#opt/lampp/lib/php/docs/HTML_Template_Xipe -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/Cache -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/Cache/tmp -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/autoBracesOff -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/autoBracesOff/tmp -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/fullFeatured -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/fullFeatured/tmp -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/includes -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/includes/tmp -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/simple -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/simple/tmp -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/xmlConfig -#opt/lampp/lib/php/docs/HTML_Template_Xipe/docs/xmlConfig/tmp -#opt/lampp/lib/php/docs/HTML_TreeMenu -#opt/lampp/lib/php/docs/HTML_TreeMenu/docs -#opt/lampp/lib/php/docs/HTTP_Request -#opt/lampp/lib/php/docs/HTTP_Request/docs -#opt/lampp/lib/php/docs/HTTP_Upload -#opt/lampp/lib/php/docs/HTTP_Upload/docs -#opt/lampp/lib/php/docs/MDB -#opt/lampp/lib/php/docs/MDB/doc -#opt/lampp/lib/php/docs/Mail_Queue -#opt/lampp/lib/php/docs/Mail_Queue/docs -#opt/lampp/lib/php/docs/Math_Matrix -#opt/lampp/lib/php/docs/Math_Matrix/README-Math_Matrix -#opt/lampp/lib/php/docs/Math_Stats -#opt/lampp/lib/php/docs/Math_Stats/README-Math_Stats -#opt/lampp/lib/php/docs/Net_Dict -#opt/lampp/lib/php/docs/Net_Dict/docs -#opt/lampp/lib/php/docs/Net_Dict/docs/dict.php -#opt/lampp/lib/php/docs/Net_Geo -#opt/lampp/lib/php/docs/Net_Geo/README -#opt/lampp/lib/php/docs/Net_NNTP -#opt/lampp/lib/php/docs/Net_Portscan -#opt/lampp/lib/php/docs/Net_Portscan/README.portscan -#opt/lampp/lib/php/docs/Net_SmartIRC -#opt/lampp/lib/php/docs/Net_SmartIRC/docs -#opt/lampp/lib/php/docs/Net_SmartIRC/docs/HTML -#opt/lampp/lib/php/docs/Net_SmartIRC/docs/HTML/Net_SmartIRC -#opt/lampp/lib/php/docs/Net_SmartIRC/docs/HTML/media -#opt/lampp/lib/php/docs/Net_SmartIRC/docs/HTML/media/images -#opt/lampp/lib/php/docs/Net_SmartIRC/docs/HTML/media/lib -#opt/lampp/lib/php/docs/Net_SmartIRC/examples -#opt/lampp/lib/php/docs/Net_URL -#opt/lampp/lib/php/docs/Net_URL/docs -#opt/lampp/lib/php/docs/Pager_Sliding -#opt/lampp/lib/php/docs/Pager_Sliding/examples -#opt/lampp/lib/php/docs/SQLite -#opt/lampp/lib/php/docs/SQLite/.tmpCREDITS -#opt/lampp/lib/php/docs/SQLite/.tmpREADME -#opt/lampp/lib/php/docs/SQLite/.tmpTODO -#opt/lampp/lib/php/docs/SQLite/.tmpsqlite.php -#opt/lampp/lib/php/docs/SQLite/libsqlite -#opt/lampp/lib/php/docs/SQLite/libsqlite/.tmpREADME -#opt/lampp/lib/php/docs/Science_Chemistry -#opt/lampp/lib/php/docs/Science_Chemistry/Chemistry -#opt/lampp/lib/php/docs/Science_Chemistry/Chemistry/README -#opt/lampp/lib/php/docs/Science_Chemistry/Chemistry/TODO -#opt/lampp/lib/php/docs/Science_Chemistry/Chemistry/doc -#opt/lampp/lib/php/docs/TCLink -#opt/lampp/lib/php/docs/TCLink/LICENSE -#opt/lampp/lib/php/docs/TCLink/README -#opt/lampp/lib/php/docs/TCLink/docs -#opt/lampp/lib/php/docs/TCLink/docs/TCDevGuide.html -#opt/lampp/lib/php/docs/TCLink/docs/TCDevGuide.txt -#opt/lampp/lib/php/docs/Translation -#opt/lampp/lib/php/docs/Translation/doc -#opt/lampp/lib/php/docs/XML_HTMLSax -#opt/lampp/lib/php/docs/XML_HTMLSax/docs -#opt/lampp/lib/php/docs/XML_fo2pdf -#opt/lampp/lib/php/docs/XML_fo2pdf/README.fo2pdf -#opt/lampp/lib/php/docs/XML_fo2pdf/simple.fo -#opt/lampp/lib/php/docs/apd -#opt/lampp/lib/php/docs/apd/.tmpLICENSE -#opt/lampp/lib/php/docs/apd/.tmpREADME -#opt/lampp/lib/php/docs/bz2 -#opt/lampp/lib/php/docs/bz2/.tmpCREDITS -#opt/lampp/lib/php/docs/bz2/.tmpphp_bz2.h -#opt/lampp/lib/php/docs/fribidi -#opt/lampp/lib/php/docs/fribidi/.tmpCREDITS -#opt/lampp/lib/php/docs/fribidi/.tmpREADME -#opt/lampp/lib/php/docs/spplus -#opt/lampp/lib/php/docs/spplus/.tmpCREDITS -#opt/lampp/lib/php/docs/tcexample.php -#opt/lampp/lib/php/docs/tctest.php -opt/lampp/lib/php/encoder.php -opt/lampp/lib/php/extensions -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429 -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/dbx.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/eaccelerator.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/interbase.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/ming.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/oci8.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/pgsql.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/radius.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/sqlite.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20020429/zip.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20041030 -opt/lampp/lib/php/extensions/no-debug-non-zts-20041030/pgsql.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922 -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922/dbx.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922/interbase.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922/ming.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922/oci8.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922/pgsql.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922/radius.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922/sqlite.so -opt/lampp/lib/php/extensions/no-debug-non-zts-20050922/zip.so -opt/lampp/lib/php/font -opt/lampp/lib/php/font/courier.php -opt/lampp/lib/php/font/helvetica.php -opt/lampp/lib/php/font/helveticab.php -opt/lampp/lib/php/font/helveticabi.php -opt/lampp/lib/php/font/helveticai.php -opt/lampp/lib/php/font/makefont -opt/lampp/lib/php/font/makefont/cp1250.map -opt/lampp/lib/php/font/makefont/cp1251.map -opt/lampp/lib/php/font/makefont/cp1252.map -opt/lampp/lib/php/font/makefont/cp1253.map -opt/lampp/lib/php/font/makefont/cp1254.map -opt/lampp/lib/php/font/makefont/cp1255.map -opt/lampp/lib/php/font/makefont/cp1257.map -opt/lampp/lib/php/font/makefont/cp1258.map -opt/lampp/lib/php/font/makefont/cp874.map -opt/lampp/lib/php/font/makefont/iso-8859-1.map -opt/lampp/lib/php/font/makefont/iso-8859-11.map -opt/lampp/lib/php/font/makefont/iso-8859-15.map -opt/lampp/lib/php/font/makefont/iso-8859-16.map -opt/lampp/lib/php/font/makefont/iso-8859-2.map -opt/lampp/lib/php/font/makefont/iso-8859-4.map -opt/lampp/lib/php/font/makefont/iso-8859-5.map -opt/lampp/lib/php/font/makefont/iso-8859-7.map -opt/lampp/lib/php/font/makefont/iso-8859-9.map -opt/lampp/lib/php/font/makefont/koi8-r.map -opt/lampp/lib/php/font/makefont/koi8-u.map -opt/lampp/lib/php/font/makefont/makefont.php -opt/lampp/lib/php/font/symbol.php -opt/lampp/lib/php/font/times.php -opt/lampp/lib/php/font/timesb.php -opt/lampp/lib/php/font/timesbi.php -opt/lampp/lib/php/font/timesi.php -opt/lampp/lib/php/font/zapfdingbats.php -opt/lampp/lib/php/fpdf.php -opt/lampp/lib/php/pearcmd.php -opt/lampp/lib/php/peclcmd.php -opt/lampp/lib/php/test -opt/lampp/lib/php/test/Auth -opt/lampp/lib/php/test/Auth/tests -opt/lampp/lib/php/test/Auth/tests/DBContainer.php -opt/lampp/lib/php/test/Auth/tests/FileContainer.php -opt/lampp/lib/php/test/Auth/tests/POP3Container.php -opt/lampp/lib/php/test/Auth/tests/POP3aContainer.php -opt/lampp/lib/php/test/Auth/tests/TestAuthContainer.php -opt/lampp/lib/php/test/Auth/tests/auth_container_db_options.php -opt/lampp/lib/php/test/Auth/tests/auth_container_file_options.php -opt/lampp/lib/php/test/Auth/tests/auth_container_pop3_options.php -opt/lampp/lib/php/test/Auth/tests/auth_container_pop3a_options.php -opt/lampp/lib/php/test/Auth/tests/tests.php -opt/lampp/lib/php/test/Auth/tests/users -opt/lampp/lib/php/test/Auth_HTTP -opt/lampp/lib/php/test/Auth_HTTP/tests -opt/lampp/lib/php/test/Auth_HTTP/tests/sample.sql -opt/lampp/lib/php/test/Auth_HTTP/tests/test_basic_simple.php -opt/lampp/lib/php/test/Auth_HTTP/tests/test_digest_get.php -opt/lampp/lib/php/test/Auth_HTTP/tests/test_digest_post.php -opt/lampp/lib/php/test/Auth_HTTP/tests/test_digest_simple.php -opt/lampp/lib/php/test/Cache_Lite -opt/lampp/lib/php/test/Cache_Lite/tests -opt/lampp/lib/php/test/Cache_Lite/tests/bench.php -opt/lampp/lib/php/test/Cache_Lite/tests/bench2.php -opt/lampp/lib/php/test/Cache_Lite/tests/bench3.php -opt/lampp/lib/php/test/Cache_Lite/tests/test.php -opt/lampp/lib/php/test/Cache_Lite/tests/test2.php -opt/lampp/lib/php/test/Cache_Lite/tests/test3.php -opt/lampp/lib/php/test/Config -opt/lampp/lib/php/test/Config/test -opt/lampp/lib/php/test/Config/test/bug2742.ini -opt/lampp/lib/php/test/Config/test/bug2742.phpt -opt/lampp/lib/php/test/Config/test/bug2780.phpt -opt/lampp/lib/php/test/Config/test/bug3051.phpt -opt/lampp/lib/php/test/Config/test/bug3051.xml -opt/lampp/lib/php/test/Config/test/bug3298.phpt -opt/lampp/lib/php/test/Config/test/bug3298.xml -opt/lampp/lib/php/test/Config/test/phpt_test.php.inc -opt/lampp/lib/php/test/Config/test/setup.php.inc -opt/lampp/lib/php/test/Contact_Vcard_Build -opt/lampp/lib/php/test/Contact_Vcard_Build/test.php -opt/lampp/lib/php/test/Contact_Vcard_Parse -opt/lampp/lib/php/test/Contact_Vcard_Parse/test.php -opt/lampp/lib/php/test/Contact_Vcard_Parse/test.vcf -opt/lampp/lib/php/test/Crypt_CHAP -opt/lampp/lib/php/test/Crypt_CHAP/tests -opt/lampp/lib/php/test/Crypt_CHAP/tests/chaptest.php -opt/lampp/lib/php/test/DB -opt/lampp/lib/php/test/DB/tests -opt/lampp/lib/php/test/DB/tests/db_error.phpt -opt/lampp/lib/php/test/DB/tests/db_error2.phpt -opt/lampp/lib/php/test/DB/tests/db_factory.phpt -opt/lampp/lib/php/test/DB/tests/db_ismanip.phpt -opt/lampp/lib/php/test/DB/tests/db_parsedsn.phpt -opt/lampp/lib/php/test/DB/tests/driver -opt/lampp/lib/php/test/DB/tests/driver/01connect.phpt -opt/lampp/lib/php/test/DB/tests/driver/02fetch.phpt -opt/lampp/lib/php/test/DB/tests/driver/03simplequery.phpt -opt/lampp/lib/php/test/DB/tests/driver/04numcols.phpt -opt/lampp/lib/php/test/DB/tests/driver/05sequences.phpt -opt/lampp/lib/php/test/DB/tests/driver/06prepexec.phpt -opt/lampp/lib/php/test/DB/tests/driver/08affectedrows.phpt -opt/lampp/lib/php/test/DB/tests/driver/09numrows.phpt -opt/lampp/lib/php/test/DB/tests/driver/10errormap.phpt -opt/lampp/lib/php/test/DB/tests/driver/11transactions.phpt -opt/lampp/lib/php/test/DB/tests/driver/13limit.phpt -opt/lampp/lib/php/test/DB/tests/driver/14fetchmode_object.phpt -opt/lampp/lib/php/test/DB/tests/driver/15quote.phpt -opt/lampp/lib/php/test/DB/tests/driver/16tableinfo.phpt -opt/lampp/lib/php/test/DB/tests/driver/17query.phpt -opt/lampp/lib/php/test/DB/tests/driver/18get.phpt -opt/lampp/lib/php/test/DB/tests/driver/19getlistof.phpt -opt/lampp/lib/php/test/DB/tests/driver/connect.inc -opt/lampp/lib/php/test/DB/tests/driver/mktable.inc -opt/lampp/lib/php/test/DB/tests/driver/multiconnect.php -opt/lampp/lib/php/test/DB/tests/driver/run.cvs -opt/lampp/lib/php/test/DB/tests/driver/setup.inc.cvs -opt/lampp/lib/php/test/DB/tests/driver/skipif.inc -opt/lampp/lib/php/test/DB/tests/errors.inc -opt/lampp/lib/php/test/DB/tests/fetchmode_object.inc -opt/lampp/lib/php/test/DB/tests/fetchmodes.inc -opt/lampp/lib/php/test/DB/tests/include.inc -opt/lampp/lib/php/test/DB/tests/limit.inc -opt/lampp/lib/php/test/DB/tests/numcols.inc -opt/lampp/lib/php/test/DB/tests/numrows.inc -opt/lampp/lib/php/test/DB/tests/prepexe.inc -opt/lampp/lib/php/test/DB/tests/run.cvs -opt/lampp/lib/php/test/DB/tests/sequences.inc -opt/lampp/lib/php/test/DB/tests/simplequery.inc -opt/lampp/lib/php/test/DB/tests/skipif.inc -opt/lampp/lib/php/test/DB/tests/transactions.inc -opt/lampp/lib/php/test/DBA -opt/lampp/lib/php/test/DBA/tests -opt/lampp/lib/php/test/DBA/tests/benchmark_drivers.php -opt/lampp/lib/php/test/DBA/tests/test_compatibility.php -opt/lampp/lib/php/test/DBA/tests/test_drivers.php -opt/lampp/lib/php/test/DB_NestedSet -opt/lampp/lib/php/test/DB_NestedSet/tests -opt/lampp/lib/php/test/DB_NestedSet/tests/NestedSet -opt/lampp/lib/php/test/DB_NestedSet/tests/NestedSet/api.php -opt/lampp/lib/php/test/DB_NestedSet/tests/NestedSet/creation.php -opt/lampp/lib/php/test/DB_NestedSet/tests/NestedSet/manipulation.php -opt/lampp/lib/php/test/DB_NestedSet/tests/NestedSet/query.php -opt/lampp/lib/php/test/DB_NestedSet/tests/TestBase.php -opt/lampp/lib/php/test/DB_NestedSet/tests/UnitTest.php -opt/lampp/lib/php/test/DB_NestedSet/tests/index.php -opt/lampp/lib/php/test/DB_QueryTool -opt/lampp/lib/php/test/DB_QueryTool/tests -opt/lampp/lib/php/test/DB_QueryTool/tests/Common.php -opt/lampp/lib/php/test/DB_QueryTool/tests/Get.php -opt/lampp/lib/php/test/DB_QueryTool/tests/GetAll.php -opt/lampp/lib/php/test/DB_QueryTool/tests/GetCount.php -opt/lampp/lib/php/test/DB_QueryTool/tests/GetQueryString.php -opt/lampp/lib/php/test/DB_QueryTool/tests/Having.php -opt/lampp/lib/php/test/DB_QueryTool/tests/Limit.php -opt/lampp/lib/php/test/DB_QueryTool/tests/SetDbInstance.php -opt/lampp/lib/php/test/DB_QueryTool/tests/UnitTest.php -opt/lampp/lib/php/test/DB_QueryTool/tests/Where.php -opt/lampp/lib/php/test/DB_QueryTool/tests/index.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/all_tests.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_include.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_testDbInstance.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_testGet.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_testGetAll.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_testGetCount.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_testGetQueryString.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_testHaving.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_testLimit.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_testWhere.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_test_base.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_tests_get.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_querytool_tests_usage.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/db_settings.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/index.php -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/readme.txt -opt/lampp/lib/php/test/DB_QueryTool/tests/simpletest_tests/simple_include.php -opt/lampp/lib/php/test/DB_QueryTool/tests/sql.php -opt/lampp/lib/php/test/Date -opt/lampp/lib/php/test/Date/tests -opt/lampp/lib/php/test/Date/tests/bug674.php -opt/lampp/lib/php/test/Date/tests/bug727_1.php -opt/lampp/lib/php/test/Date/tests/bug727_2.php -opt/lampp/lib/php/test/Date/tests/bug727_3.php -opt/lampp/lib/php/test/Date/tests/bug727_4.php -opt/lampp/lib/php/test/Date/tests/bug967.php -opt/lampp/lib/php/test/Date/tests/test_calc.php -opt/lampp/lib/php/test/Date/tests/test_date_methods_span.php -opt/lampp/lib/php/test/Date/tests/testunit.php -opt/lampp/lib/php/test/Date/tests/testunit_date.php -opt/lampp/lib/php/test/Date/tests/testunit_date_span.php -opt/lampp/lib/php/test/Date/tests/weeksinmonth_4_monday.txt -opt/lampp/lib/php/test/Date/tests/weeksinmonth_4_sunday.txt -opt/lampp/lib/php/test/Date/tests/weeksinmonth_rdm_monday.txt -opt/lampp/lib/php/test/Date/tests/weeksinmonth_rdm_sunday.txt -opt/lampp/lib/php/test/Date/tests/wknotest.txt -opt/lampp/lib/php/test/FSM -opt/lampp/lib/php/test/FSM/tests -opt/lampp/lib/php/test/FSM/tests/001.phpt -opt/lampp/lib/php/test/File -opt/lampp/lib/php/test/File/tests -opt/lampp/lib/php/test/File/tests/CSV -opt/lampp/lib/php/test/File/tests/CSV/001.csv -opt/lampp/lib/php/test/File/tests/CSV/001.phpt -opt/lampp/lib/php/test/File/tests/CSV/002.csv -opt/lampp/lib/php/test/File/tests/CSV/002.phpt -opt/lampp/lib/php/test/File/tests/CSV/003.csv -opt/lampp/lib/php/test/File/tests/CSV/003.phpt -opt/lampp/lib/php/test/File/tests/CSV/004.csv -opt/lampp/lib/php/test/File/tests/CSV/004.phpt -opt/lampp/lib/php/test/File/tests/CSV/005.csv -opt/lampp/lib/php/test/File/tests/CSV/005.phpt -opt/lampp/lib/php/test/File/tests/CSV/006.csv -opt/lampp/lib/php/test/File/tests/CSV/006.phpt -opt/lampp/lib/php/test/File/tests/CSV/tests.txt -opt/lampp/lib/php/test/File/tests/FileTest.php -opt/lampp/lib/php/test/File/tests/parser.php -opt/lampp/lib/php/test/File/tests/test.csv -opt/lampp/lib/php/test/File_Passwd -opt/lampp/lib/php/test/File_Passwd/tests -opt/lampp/lib/php/test/File_Passwd/tests/README.txt -opt/lampp/lib/php/test/File_Passwd/tests/common.txt -opt/lampp/lib/php/test/File_Passwd/tests/passwd.authbasic.txt -opt/lampp/lib/php/test/File_Passwd/tests/passwd.authdigest.txt -opt/lampp/lib/php/test/File_Passwd/tests/passwd.custom.txt -opt/lampp/lib/php/test/File_Passwd/tests/passwd.cvs.txt -opt/lampp/lib/php/test/File_Passwd/tests/passwd.smb.txt -opt/lampp/lib/php/test/File_Passwd/tests/passwd.unix.txt -opt/lampp/lib/php/test/File_Passwd/tests/test_authbasic.php -opt/lampp/lib/php/test/File_Passwd/tests/test_authdigest.php -opt/lampp/lib/php/test/File_Passwd/tests/test_common.php -opt/lampp/lib/php/test/File_Passwd/tests/test_custom.php -opt/lampp/lib/php/test/File_Passwd/tests/test_cvs.php -opt/lampp/lib/php/test/File_Passwd/tests/test_file_passwd.php -opt/lampp/lib/php/test/File_Passwd/tests/test_smb.php -opt/lampp/lib/php/test/File_Passwd/tests/test_unix.php -opt/lampp/lib/php/test/File_Passwd/tests/testsuite.php -opt/lampp/lib/php/test/HTML_Form -opt/lampp/lib/php/test/HTML_Form/tests -opt/lampp/lib/php/test/HTML_Form/tests/form.phpt -opt/lampp/lib/php/test/HTML_Progress -opt/lampp/lib/php/test/HTML_Progress/tests -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_Bug28.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_DM_new.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_DM_setIncrement.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_DM_setMaximum.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_DM_setMinimum.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_DM_setValue.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_getBorderAttributes.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_getCellAttributes.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_getProgressAttributes.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_getStringAttributes.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_new.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_setCellAttributes.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_setCellCoordinates.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_setCellCount.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_setFillWay.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_setOrientation.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_UI_setScript.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_addListener.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_getDM.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_getString.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_getUI.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_removeListener.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_setAnimSpeed.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_setBorderPainted.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_setDM.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_setIndeterminate.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_setModel.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_setString.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_setStringPainted.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_Progress_TestCase_setUI.php -opt/lampp/lib/php/test/HTML_Progress/tests/HTML_TestListener.php -opt/lampp/lib/php/test/HTML_Progress/tests/TestUnit.php -opt/lampp/lib/php/test/HTML_Progress/tests/ancestor.ini -opt/lampp/lib/php/test/HTML_Progress/tests/progress3.js -opt/lampp/lib/php/test/HTML_Progress/tests/stylesheet.css -opt/lampp/lib/php/test/HTML_Progress/tests/testsuite.php -opt/lampp/lib/php/test/HTML_Template_Sigma -opt/lampp/lib/php/test/HTML_Template_Sigma/tests -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/Console_TestListener.php -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/Sigma_api_testcase.php -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/Sigma_cache_testcase.php -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/Sigma_usage_testcase.php -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/__include.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/addblock.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/blockiteration.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/blocks.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/callback.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/globals.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/include.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/loadtemplatefile.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/templates/replaceblock.html -opt/lampp/lib/php/test/HTML_Template_Sigma/tests/test.php -opt/lampp/lib/php/test/Log -opt/lampp/lib/php/test/Log/tests -opt/lampp/lib/php/test/Log/tests/composite.phpt -opt/lampp/lib/php/test/Log/tests/console.phpt -opt/lampp/lib/php/test/Log/tests/display.phpt -opt/lampp/lib/php/test/Log/tests/error_log.phpt -opt/lampp/lib/php/test/Log/tests/extract.phpt -opt/lampp/lib/php/test/Log/tests/extract2.phpt -opt/lampp/lib/php/test/Log/tests/factory.phpt -opt/lampp/lib/php/test/Log/tests/null.phpt -opt/lampp/lib/php/test/Log/tests/priority.phpt -opt/lampp/lib/php/test/Log/tests/singleton.phpt -opt/lampp/lib/php/test/Log/tests/sql_ident.phpt -opt/lampp/lib/php/test/Log/tests/sqlite.phpt -opt/lampp/lib/php/test/MDB -opt/lampp/lib/php/test/MDB/tests -opt/lampp/lib/php/test/MDB/tests/Console_TestListener.php -opt/lampp/lib/php/test/MDB/tests/HTML_TestListener.php -opt/lampp/lib/php/test/MDB/tests/MDB_api_testcase.php -opt/lampp/lib/php/test/MDB/tests/MDB_bugs_testcase.php -opt/lampp/lib/php/test/MDB/tests/MDB_manager_testcase.php -opt/lampp/lib/php/test/MDB/tests/MDB_pear_wrapper_test.php -opt/lampp/lib/php/test/MDB/tests/MDB_test.php -opt/lampp/lib/php/test/MDB/tests/MDB_usage_testcase.php -opt/lampp/lib/php/test/MDB/tests/README -opt/lampp/lib/php/test/MDB/tests/clitest.php -opt/lampp/lib/php/test/MDB/tests/driver_test.php -opt/lampp/lib/php/test/MDB/tests/driver_test.schema -opt/lampp/lib/php/test/MDB/tests/driver_test_config.php -opt/lampp/lib/php/test/MDB/tests/lob_test.schema -opt/lampp/lib/php/test/MDB/tests/metapear_test_db.schema -opt/lampp/lib/php/test/MDB/tests/setup_test.php -opt/lampp/lib/php/test/MDB/tests/templates -opt/lampp/lib/php/test/MDB/tests/templates/results.tpl -opt/lampp/lib/php/test/MDB/tests/test.php -opt/lampp/lib/php/test/MDB/tests/test.schema -opt/lampp/lib/php/test/MDB/tests/testUtils.php -opt/lampp/lib/php/test/MDB/tests/test_setup.php.dist -opt/lampp/lib/php/test/MDB/tests/testchoose.php -opt/lampp/lib/php/test/MDB/tests/tests.css -opt/lampp/lib/php/test/MDB_QueryTool -opt/lampp/lib/php/test/MDB_QueryTool/tests -opt/lampp/lib/php/test/MDB_QueryTool/tests/Common.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/Get.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/GetAll.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/GetCount.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/GetQueryString.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/Having.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/Limit.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/SetDbInstance.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/UnitTest.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/Where.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/index.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/all_tests.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/db_settings.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/index.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_include.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_testDbInstance.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_testGet.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_testGetAll.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_testGetCount.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_testGetQueryString.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_testHaving.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_testLimit.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_testWhere.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_test_base.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_tests_get.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/mdb_querytool_tests_usage.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/readme.txt -opt/lampp/lib/php/test/MDB_QueryTool/tests/simpletest_tests/simple_include.php -opt/lampp/lib/php/test/MDB_QueryTool/tests/sql.php -opt/lampp/lib/php/test/Mail -opt/lampp/lib/php/test/Mail/tests -opt/lampp/lib/php/test/Mail/tests/rfc822.phpt -opt/lampp/lib/php/test/Math_Basex -opt/lampp/lib/php/test/Math_Basex/tests -opt/lampp/lib/php/test/Math_Basex/tests/Basex.php -opt/lampp/lib/php/test/Math_Basex/tests/bcmath.integer-test.php -opt/lampp/lib/php/test/Math_Basex/tests/convert_base.php -opt/lampp/lib/php/test/Math_Basex/tests/gmp.integer-test.php -opt/lampp/lib/php/test/Math_Basex/tests/integer-test.php -opt/lampp/lib/php/test/Math_Basex/tests/noext.integer-test.php -opt/lampp/lib/php/test/Net_POP3 -opt/lampp/lib/php/test/Net_POP3/Net_POP3_example.php -opt/lampp/lib/php/test/Net_Ping -opt/lampp/lib/php/test/Net_Ping/tests -opt/lampp/lib/php/test/Net_Ping/tests/test_result_parsers.php -opt/lampp/lib/php/test/Net_SMTP -opt/lampp/lib/php/test/Net_SMTP/tests -opt/lampp/lib/php/test/Net_SMTP/tests/auth.phpt -opt/lampp/lib/php/test/Net_SMTP/tests/basic.phpt -opt/lampp/lib/php/test/Net_SMTP/tests/config.php.dist -opt/lampp/lib/php/test/Net_Sieve -opt/lampp/lib/php/test/Net_Sieve/test_sieve.php -opt/lampp/lib/php/test/Net_UserAgent_Detect -opt/lampp/lib/php/test/Net_UserAgent_Detect/tests -opt/lampp/lib/php/test/Net_UserAgent_Detect/tests/example.php -opt/lampp/lib/php/test/PEAR_PackageFileManager -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/Bad_file.php -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/.test -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/blarfoo -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/blarfoo/blartest.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/subfoo -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/subfoo/subsubfoo -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/subfoo/subsubfoo/boo.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/subfoo/test11.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/subfoo/test12.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/test1.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/test2.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/testCVS -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/testCVS/testEntries -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/footest/testCVS/testEntries.Extra -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/setup.php.inc -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/test_dirList_invalid.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/test_dirList_valid.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/test_dirList_valid_with_ignore.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/test_dirList_valid_with_include.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/test_general_valid1.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_CVS/test_general_valid2.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_complex_multiple_no.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_complex_multiple_pass.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_complex_no.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_emptyarray.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_nonarray.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_simple_dir_no.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_simple_dir_pass.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_simple_no.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/checkIgnore/test_simple_pass.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_bug1217 -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_bug1217.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_bug1217/0 -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_bug1217/firstfile.php -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_bug1217/fourthfile.php -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_bug1217/secondfile.php -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_invalid.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_valid.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_valid_addhiddenfiles.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_valid_with_ignore.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/dirList/test_valid_with_include.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/getFileList -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/getFileList/test_valid.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/getRegExpableSearchString -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/getRegExpableSearchString/test_1.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/getRegExpableSearchString/test_dir_regexp.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/getRegExpableSearchString/test_file_regexp.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setDir -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setDir/test_concept.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setup.php.inc -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupDirs -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupDirs/test_concept.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupDirs/test_valid.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupIgnore -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupIgnore/test_complex.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupIgnore/test_complex_multiple.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupIgnore/test_emptyarray.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupIgnore/test_nonarray.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupIgnore/test_simple.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupIgnore/test_simple_0.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_File/setupIgnore/test_simple_dir.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_XMLOutput -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/PEAR_PackageFileManager_XMLOutput/test_valid1.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/Test_file.php -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addConfigureOption -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addConfigureOption/test_invalid_nosetoptions.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addConfigureOption/test_valid_add1.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addConfigureOption/test_valid_add2.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addConfigureOption/test_valid_replace.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addDependency -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addDependency/test_invalid_nosetoptions.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addDependency/test_invalid_phppkg.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addDependency/test_valid_add_php.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addDependency/test_valid_add_pkg_explicit.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addDependency/test_valid_add_pkg_implicit.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addDependency/test_valid_replace.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addMaintainer -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addMaintainer/test_invalid_nosetoptions.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addMaintainer/test_invalid_wrongrole.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addMaintainer/test_valid_add.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addMaintainer/test_valid_replace.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addReplacement -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addReplacement/test_invalid_replacement.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addReplacement/test_valid_replacement.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addRole -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addRole/test_invalid_role.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/addRole/test_valid_role.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/.test -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/blarfoo -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/blarfoo/blartest.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/subfoo -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/subfoo/subsubfoo -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/subfoo/subsubfoo/boo.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/subfoo/test11.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/subfoo/test12.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/test1.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/test2.txt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/testCVS -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/testCVS/testEntries -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/footest/testCVS/testEntries.Extra -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML/test_invalid_nodescription.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML/test_invalid_nopackage.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML/test_invalid_nosummary.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML/test_valid_simple.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML/test_valid_withdeps.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML/test_valid_withdepsfalse.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML/test_valid_withmaintainers.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/generateNewPackageXML/test_valid_withmaintainersfalse.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/getExistingPackageXML -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/getExistingPackageXML/test_invalid_notexists_nopackage.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/getExistingPackageXML/test_invalid_wrongdir.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/getExistingPackageXML/test_valid_deps.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/getExistingPackageXML/test_valid_maintainers.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/getExistingPackageXML/test_valid_simple.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/importOptions -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/importOptions/test_invalid.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/importOptions/test_valid.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/phpt_test.php.inc -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_invalid_badfilelistgenerator1.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_invalid_badfilelistgenerator2.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_invalid_badfilelistgenerator3.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_invalid_filelistgeneratorcustom.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_invalid_nobaseinstalldir.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_invalid_nopackagedir.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_invalid_nostate.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_invalid_noversion.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_valid_filelistgeneratorcustom.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_valid_filelistgeneratorcvs.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setOptions/test_valid_filelistgeneratorfile.phpt -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/setup.php.inc -opt/lampp/lib/php/test/PEAR_PackageFileManager/tests/test1_package.xml -opt/lampp/lib/php/test/Pager -opt/lampp/lib/php/test/Pager/tests -opt/lampp/lib/php/test/Pager/tests/README -opt/lampp/lib/php/test/Pager/tests/all_tests.php -opt/lampp/lib/php/test/Pager/tests/pager_include.php -opt/lampp/lib/php/test/Pager/tests/pager_jumping_noData_test.php -opt/lampp/lib/php/test/Pager/tests/pager_jumping_test.php -opt/lampp/lib/php/test/Pager/tests/pager_jumping_tests.php -opt/lampp/lib/php/test/Pager/tests/pager_noData_test.php -opt/lampp/lib/php/test/Pager/tests/pager_sliding_noData_test.php -opt/lampp/lib/php/test/Pager/tests/pager_sliding_notExpanded_test.php -opt/lampp/lib/php/test/Pager/tests/pager_sliding_test.php -opt/lampp/lib/php/test/Pager/tests/pager_sliding_tests.php -opt/lampp/lib/php/test/Pager/tests/pager_test.php -opt/lampp/lib/php/test/Pager/tests/pager_test_xss.php -opt/lampp/lib/php/test/Pager/tests/pager_tests.php -opt/lampp/lib/php/test/Pager/tests/pager_wrapper_include.php -opt/lampp/lib/php/test/Pager/tests/pager_wrapper_test.php -opt/lampp/lib/php/test/Pager/tests/simple_include.php -opt/lampp/lib/php/test/SQLite -opt/lampp/lib/php/test/SQLite/tests -opt/lampp/lib/php/test/SQLite/tests/.tmpblankdb.inc -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_001.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_002.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_003.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_004.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_005.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_006.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_007.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_008.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_009.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_010.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_011.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_012.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_013.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_014.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_015.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_016.phpt -opt/lampp/lib/php/test/SQLite/tests/.tmpsqlite_017.phpt -opt/lampp/lib/php/test/Text_Password -opt/lampp/lib/php/test/Text_Password/tests -opt/lampp/lib/php/test/Text_Password/tests/01-text-password.phpt -opt/lampp/lib/php/test/Validate -opt/lampp/lib/php/test/Validate/tests -opt/lampp/lib/php/test/Validate/tests/credit_card.php -opt/lampp/lib/php/test/Validate/tests/date.php -opt/lampp/lib/php/test/Validate/tests/number.php -opt/lampp/lib/php/test/Var_Dump -opt/lampp/lib/php/test/Var_Dump/bug1321.phpt -opt/lampp/lib/php/test/Var_Dump/bug3396.phpt -opt/lampp/lib/php/test/Var_Dump/bug3416.phpt -opt/lampp/lib/php/test/Var_Dump/bug490.phpt -opt/lampp/lib/php/test/Var_Dump/ignore-list.phpt -opt/lampp/lib/php/test/Var_Dump/renderer-html4_table.phpt -opt/lampp/lib/php/test/Var_Dump/renderer-html4_text.phpt -opt/lampp/lib/php/test/Var_Dump/renderer-table.phpt -opt/lampp/lib/php/test/Var_Dump/renderer-text.phpt -opt/lampp/lib/php/test/Var_Dump/renderer-xhtml_table.phpt -opt/lampp/lib/php/test/Var_Dump/renderer-xhtml_text.phpt -opt/lampp/lib/php/test/Var_Dump/renderer-xml.phpt -opt/lampp/lib/php/test/Var_Dump/text-compact_mode.phpt -opt/lampp/lib/php/test/Var_Dump/text-normal_mode.phpt -opt/lampp/lib/php/test/Var_Dump/text-wide_mode.phpt -opt/lampp/lib/php/test/Var_Dump/toString-array.phpt -opt/lampp/lib/php/test/Var_Dump/toString-bool.phpt -opt/lampp/lib/php/test/Var_Dump/toString-float.phpt -opt/lampp/lib/php/test/Var_Dump/toString-int.phpt -opt/lampp/lib/php/test/Var_Dump/toString-null.phpt -opt/lampp/lib/php/test/Var_Dump/toString-object.phpt -opt/lampp/lib/php/test/Var_Dump/toString-resource.phpt -opt/lampp/lib/php/test/XML_Parser -opt/lampp/lib/php/test/XML_Parser/tests -opt/lampp/lib/php/test/XML_Parser/tests/001.phpt -opt/lampp/lib/php/test/XML_Parser/tests/002.phpt -opt/lampp/lib/php/test/XML_Parser/tests/003.phpt -opt/lampp/lib/php/test/XML_Parser/tests/004.phpt -opt/lampp/lib/php/test/XML_Parser/tests/005.phpt -opt/lampp/lib/php/test/XML_Parser/tests/test2.xml -opt/lampp/lib/php/test/XML_Parser/tests/test3.xml -opt/lampp/lib/php/test/XML_RPC -opt/lampp/lib/php/test/XML_RPC/tests -opt/lampp/lib/php/test/XML_RPC/tests/allgot.inc -opt/lampp/lib/php/test/XML_RPC/tests/empty-value-struct.php -opt/lampp/lib/php/test/XML_RPC/tests/empty-value.php -opt/lampp/lib/php/test/XML_RPC/tests/protoport.php -opt/lampp/lib/php/test/XML_RPC/tests/test_Dump.php -opt/lampp/lib/php/test/XML_RPC/tests/types.php -opt/lampp/lib/php/tests -opt/lampp/lib/php/tests/Cache_Lite -opt/lampp/lib/php/tests/Cache_Lite/tests -opt/lampp/lib/php/tests/DB -opt/lampp/lib/php/tests/DB/tests -opt/lampp/lib/php/tests/DB/tests/driver -opt/lampp/lib/php/tests/DB/tests/ibase -opt/lampp/lib/php/tests/DB/tests/mysql -opt/lampp/lib/php/tests/DB/tests/oci8 -opt/lampp/lib/php/tests/DB/tests/odbc -opt/lampp/lib/php/tests/DB/tests/pgsql -opt/lampp/lib/php/tests/DBA -opt/lampp/lib/php/tests/DBA/tests -opt/lampp/lib/php/tests/File -opt/lampp/lib/php/tests/File/tests -opt/lampp/lib/php/tests/HTML_Javascript -opt/lampp/lib/php/tests/HTML_Javascript/tests -opt/lampp/lib/php/tests/HTML_Javascript/tests/js.php -opt/lampp/lib/php/tests/HTML_Javascript/tests/output.php -opt/lampp/lib/php/tests/HTML_Template_IT -opt/lampp/lib/php/tests/HTML_Template_IT/tests -opt/lampp/lib/php/tests/HTML_Template_IT/tests/Console_TestListener.php -opt/lampp/lib/php/tests/HTML_Template_IT/tests/ITX_api_testcase.php -opt/lampp/lib/php/tests/HTML_Template_IT/tests/ITX_usage_testcase.php -opt/lampp/lib/php/tests/HTML_Template_IT/tests/IT_api_testcase.php -opt/lampp/lib/php/tests/HTML_Template_IT/tests/IT_usage_testcase.php -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates/__include.html -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates/addblock.html -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates/blockiteration.html -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates/blocks.html -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates/globals.html -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates/include.html -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates/loadtemplatefile.html -opt/lampp/lib/php/tests/HTML_Template_IT/tests/templates/replaceblock.html -opt/lampp/lib/php/tests/HTML_Template_IT/tests/test.php -opt/lampp/lib/php/tests/HTML_Template_Sigma -opt/lampp/lib/php/tests/HTML_Template_Sigma/tests -opt/lampp/lib/php/tests/MDB -opt/lampp/lib/php/tests/MDB/tests -opt/lampp/lib/php/tests/MDB/tests/templates -opt/lampp/lib/php/tests/Math_Basex -opt/lampp/lib/php/tests/Math_Basex/tests -opt/lampp/lib/php/tests/SQLite -opt/lampp/lib/php/tests/SQLite/tests -opt/lampp/lib/php/tests/SQLite/tests/.tmpblankdb.inc -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_001.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_002.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_003.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_004.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_005.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_006.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_007.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_008.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_009.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_010.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_011.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_012.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_013.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_014.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_015.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_016.phpt -opt/lampp/lib/php/tests/SQLite/tests/.tmpsqlite_017.phpt -opt/lampp/lib/php/tests/Text_Statistics -opt/lampp/lib/php/tests/Text_Statistics/tests -opt/lampp/lib/php/tests/Text_Statistics/tests/Statistics.phpt -opt/lampp/lib/php/tests/Text_Statistics/tests/Word.phpt -opt/lampp/lib/php/tests/XML_HTMLSax -opt/lampp/lib/php/tests/XML_HTMLSax/docs -opt/lampp/lib/php/tests/XML_HTMLSax/docs/examples -opt/lampp/lib/php/tests/XML_Parser -opt/lampp/lib/php/tests/XML_Parser/tests -opt/lampp/lib/php/tests/XML_RSS -opt/lampp/lib/php/tests/XML_RSS/tests -opt/lampp/lib/php/tests/XML_RSS/tests/01-parse.phpt -opt/lampp/lib/php/tests/XML_RSS/tests/test.rss -opt/lampp/lib/php/tests/XML_image2svg -opt/lampp/lib/php/tests/XML_image2svg/tests -opt/lampp/lib/php/tests/XML_image2svg/tests/Test_image2svg.php -opt/lampp/lib/php/tests/XML_image2svg/tests/test.bmp -opt/lampp/lib/php/tests/XML_image2svg/tests/test.gif -opt/lampp/lib/php/tests/XML_image2svg/tests/test.jpg -opt/lampp/lib/php/tests/XML_image2svg/tests/test.png -opt/lampp/lib/php/tests/XML_image2svg/tests/tpl.image.svg -opt/lampp/lib/pkgconfig -opt/lampp/lib/pkgconfig/apr-1.pc -opt/lampp/lib/pkgconfig/apr-util-1.pc -opt/lampp/lib/pkgconfig/freetype2.pc -opt/lampp/lib/pkgconfig/libcrypto.pc -opt/lampp/lib/pkgconfig/libexslt.pc -opt/lampp/lib/pkgconfig/libpng.pc -opt/lampp/lib/pkgconfig/libpng12.pc -opt/lampp/lib/pkgconfig/libssl.pc -opt/lampp/lib/pkgconfig/libxml-2.0.pc -opt/lampp/lib/pkgconfig/libxslt.pc -opt/lampp/lib/pkgconfig/openssl.pc -opt/lampp/lib/pkgconfig/sqlite.pc -opt/lampp/lib/pkgconfig/sqlite3.pc -opt/lampp/lib/pkgconfig/zzip-zlib-config.pc -opt/lampp/lib/pkgconfig/zziplib.pc -opt/lampp/lib/pkgconfig/zzipwrap.pc -opt/lampp/lib/postgresql -opt/lampp/lib/postgresql/ascii_and_mic.so -opt/lampp/lib/postgresql/cyrillic_and_mic.so -opt/lampp/lib/postgresql/euc_cn_and_mic.so -opt/lampp/lib/postgresql/euc_jp_and_sjis.so -opt/lampp/lib/postgresql/euc_kr_and_mic.so -opt/lampp/lib/postgresql/euc_tw_and_big5.so -opt/lampp/lib/postgresql/latin2_and_win1250.so -opt/lampp/lib/postgresql/latin_and_mic.so -opt/lampp/lib/postgresql/pgxs -opt/lampp/lib/postgresql/pgxs/config -opt/lampp/lib/postgresql/pgxs/config/install-sh -opt/lampp/lib/postgresql/pgxs/config/mkinstalldirs -opt/lampp/lib/postgresql/pgxs/src -opt/lampp/lib/postgresql/pgxs/src/Makefile.global -opt/lampp/lib/postgresql/pgxs/src/Makefile.port -opt/lampp/lib/postgresql/pgxs/src/Makefile.shlib -opt/lampp/lib/postgresql/pgxs/src/makefiles -opt/lampp/lib/postgresql/pgxs/src/makefiles/pgxs.mk -opt/lampp/lib/postgresql/pgxs/src/nls-global.mk -opt/lampp/lib/postgresql/plpgsql.so -opt/lampp/lib/postgresql/utf8_and_ascii.so -opt/lampp/lib/postgresql/utf8_and_big5.so -opt/lampp/lib/postgresql/utf8_and_cyrillic.so -opt/lampp/lib/postgresql/utf8_and_euc_cn.so -opt/lampp/lib/postgresql/utf8_and_euc_jp.so -opt/lampp/lib/postgresql/utf8_and_euc_kr.so -opt/lampp/lib/postgresql/utf8_and_euc_tw.so -opt/lampp/lib/postgresql/utf8_and_gb18030.so -opt/lampp/lib/postgresql/utf8_and_gbk.so -opt/lampp/lib/postgresql/utf8_and_iso8859.so -opt/lampp/lib/postgresql/utf8_and_iso8859_1.so -opt/lampp/lib/postgresql/utf8_and_johab.so -opt/lampp/lib/postgresql/utf8_and_sjis.so -opt/lampp/lib/postgresql/utf8_and_uhc.so -opt/lampp/lib/postgresql/utf8_and_win1250.so -opt/lampp/lib/postgresql/utf8_and_win1252.so -opt/lampp/lib/postgresql/utf8_and_win1256.so -opt/lampp/lib/postgresql/utf8_and_win1258.so -opt/lampp/lib/postgresql/utf8_and_win874.so -opt/lampp/lib/python2.4 -opt/lampp/lib/python2.4/BaseHTTPServer.py -opt/lampp/lib/python2.4/BaseHTTPServer.pyc -opt/lampp/lib/python2.4/BaseHTTPServer.pyo -opt/lampp/lib/python2.4/Bastion.py -opt/lampp/lib/python2.4/Bastion.pyc -opt/lampp/lib/python2.4/Bastion.pyo -opt/lampp/lib/python2.4/CGIHTTPServer.py -opt/lampp/lib/python2.4/CGIHTTPServer.pyc -opt/lampp/lib/python2.4/CGIHTTPServer.pyo -opt/lampp/lib/python2.4/ConfigParser.py -opt/lampp/lib/python2.4/ConfigParser.pyc -opt/lampp/lib/python2.4/ConfigParser.pyo -opt/lampp/lib/python2.4/Cookie.py -opt/lampp/lib/python2.4/Cookie.pyc -opt/lampp/lib/python2.4/Cookie.pyo -opt/lampp/lib/python2.4/DocXMLRPCServer.py -opt/lampp/lib/python2.4/DocXMLRPCServer.pyc -opt/lampp/lib/python2.4/DocXMLRPCServer.pyo -opt/lampp/lib/python2.4/HTMLParser.py -opt/lampp/lib/python2.4/HTMLParser.pyc -opt/lampp/lib/python2.4/HTMLParser.pyo -opt/lampp/lib/python2.4/LICENSE.txt -opt/lampp/lib/python2.4/MimeWriter.py -opt/lampp/lib/python2.4/MimeWriter.pyc -opt/lampp/lib/python2.4/MimeWriter.pyo -opt/lampp/lib/python2.4/Queue.py -opt/lampp/lib/python2.4/Queue.pyc -opt/lampp/lib/python2.4/Queue.pyo -opt/lampp/lib/python2.4/SimpleHTTPServer.py -opt/lampp/lib/python2.4/SimpleHTTPServer.pyc -opt/lampp/lib/python2.4/SimpleHTTPServer.pyo -opt/lampp/lib/python2.4/SimpleXMLRPCServer.py -opt/lampp/lib/python2.4/SimpleXMLRPCServer.pyc -opt/lampp/lib/python2.4/SimpleXMLRPCServer.pyo -opt/lampp/lib/python2.4/SocketServer.py -opt/lampp/lib/python2.4/SocketServer.pyc -opt/lampp/lib/python2.4/SocketServer.pyo -opt/lampp/lib/python2.4/StringIO.py -opt/lampp/lib/python2.4/StringIO.pyc -opt/lampp/lib/python2.4/StringIO.pyo -opt/lampp/lib/python2.4/UserDict.py -opt/lampp/lib/python2.4/UserDict.pyc -opt/lampp/lib/python2.4/UserDict.pyo -opt/lampp/lib/python2.4/UserList.py -opt/lampp/lib/python2.4/UserList.pyc -opt/lampp/lib/python2.4/UserList.pyo -opt/lampp/lib/python2.4/UserString.py -opt/lampp/lib/python2.4/UserString.pyc -opt/lampp/lib/python2.4/UserString.pyo -opt/lampp/lib/python2.4/_LWPCookieJar.py -opt/lampp/lib/python2.4/_LWPCookieJar.pyc -opt/lampp/lib/python2.4/_LWPCookieJar.pyo -opt/lampp/lib/python2.4/_MozillaCookieJar.py -opt/lampp/lib/python2.4/_MozillaCookieJar.pyc -opt/lampp/lib/python2.4/_MozillaCookieJar.pyo -opt/lampp/lib/python2.4/__future__.py -opt/lampp/lib/python2.4/__future__.pyc -opt/lampp/lib/python2.4/__future__.pyo -opt/lampp/lib/python2.4/__phello__.foo.py -opt/lampp/lib/python2.4/__phello__.foo.pyc -opt/lampp/lib/python2.4/__phello__.foo.pyo -opt/lampp/lib/python2.4/_strptime.py -opt/lampp/lib/python2.4/_strptime.pyc -opt/lampp/lib/python2.4/_strptime.pyo -opt/lampp/lib/python2.4/_threading_local.py -opt/lampp/lib/python2.4/_threading_local.pyc -opt/lampp/lib/python2.4/_threading_local.pyo -opt/lampp/lib/python2.4/aifc.py -opt/lampp/lib/python2.4/aifc.pyc -opt/lampp/lib/python2.4/aifc.pyo -opt/lampp/lib/python2.4/anydbm.py -opt/lampp/lib/python2.4/anydbm.pyc -opt/lampp/lib/python2.4/anydbm.pyo -opt/lampp/lib/python2.4/asynchat.py -opt/lampp/lib/python2.4/asynchat.pyc -opt/lampp/lib/python2.4/asynchat.pyo -opt/lampp/lib/python2.4/asyncore.py -opt/lampp/lib/python2.4/asyncore.pyc -opt/lampp/lib/python2.4/asyncore.pyo -opt/lampp/lib/python2.4/atexit.py -opt/lampp/lib/python2.4/atexit.pyc -opt/lampp/lib/python2.4/atexit.pyo -opt/lampp/lib/python2.4/audiodev.py -opt/lampp/lib/python2.4/audiodev.pyc -opt/lampp/lib/python2.4/audiodev.pyo -opt/lampp/lib/python2.4/base64.py -opt/lampp/lib/python2.4/base64.pyc -opt/lampp/lib/python2.4/base64.pyo -opt/lampp/lib/python2.4/bdb.py -opt/lampp/lib/python2.4/bdb.pyc -opt/lampp/lib/python2.4/bdb.pyo -opt/lampp/lib/python2.4/binhex.py -opt/lampp/lib/python2.4/binhex.pyc -opt/lampp/lib/python2.4/binhex.pyo -opt/lampp/lib/python2.4/bisect.py -opt/lampp/lib/python2.4/bisect.pyc -opt/lampp/lib/python2.4/bisect.pyo -opt/lampp/lib/python2.4/bsddb -opt/lampp/lib/python2.4/bsddb/__init__.py -opt/lampp/lib/python2.4/bsddb/__init__.pyc -opt/lampp/lib/python2.4/bsddb/__init__.pyo -opt/lampp/lib/python2.4/bsddb/db.py -opt/lampp/lib/python2.4/bsddb/db.pyc -opt/lampp/lib/python2.4/bsddb/db.pyo -opt/lampp/lib/python2.4/bsddb/dbobj.py -opt/lampp/lib/python2.4/bsddb/dbobj.pyc -opt/lampp/lib/python2.4/bsddb/dbobj.pyo -opt/lampp/lib/python2.4/bsddb/dbrecio.py -opt/lampp/lib/python2.4/bsddb/dbrecio.pyc -opt/lampp/lib/python2.4/bsddb/dbrecio.pyo -opt/lampp/lib/python2.4/bsddb/dbshelve.py -opt/lampp/lib/python2.4/bsddb/dbshelve.pyc -opt/lampp/lib/python2.4/bsddb/dbshelve.pyo -opt/lampp/lib/python2.4/bsddb/dbtables.py -opt/lampp/lib/python2.4/bsddb/dbtables.pyc -opt/lampp/lib/python2.4/bsddb/dbtables.pyo -opt/lampp/lib/python2.4/bsddb/dbutils.py -opt/lampp/lib/python2.4/bsddb/dbutils.pyc -opt/lampp/lib/python2.4/bsddb/dbutils.pyo -opt/lampp/lib/python2.4/bsddb/test -opt/lampp/lib/python2.4/bsddb/test/__init__.py -opt/lampp/lib/python2.4/bsddb/test/__init__.pyc -opt/lampp/lib/python2.4/bsddb/test/__init__.pyo -opt/lampp/lib/python2.4/bsddb/test/test_all.py -opt/lampp/lib/python2.4/bsddb/test/test_all.pyc -opt/lampp/lib/python2.4/bsddb/test/test_all.pyo -opt/lampp/lib/python2.4/bsddb/test/test_associate.py -opt/lampp/lib/python2.4/bsddb/test/test_associate.pyc -opt/lampp/lib/python2.4/bsddb/test/test_associate.pyo -opt/lampp/lib/python2.4/bsddb/test/test_basics.py -opt/lampp/lib/python2.4/bsddb/test/test_basics.pyc -opt/lampp/lib/python2.4/bsddb/test/test_basics.pyo -opt/lampp/lib/python2.4/bsddb/test/test_compat.py -opt/lampp/lib/python2.4/bsddb/test/test_compat.pyc -opt/lampp/lib/python2.4/bsddb/test/test_compat.pyo -opt/lampp/lib/python2.4/bsddb/test/test_dbobj.py -opt/lampp/lib/python2.4/bsddb/test/test_dbobj.pyc -opt/lampp/lib/python2.4/bsddb/test/test_dbobj.pyo -opt/lampp/lib/python2.4/bsddb/test/test_dbshelve.py -opt/lampp/lib/python2.4/bsddb/test/test_dbshelve.pyc -opt/lampp/lib/python2.4/bsddb/test/test_dbshelve.pyo -opt/lampp/lib/python2.4/bsddb/test/test_dbtables.py -opt/lampp/lib/python2.4/bsddb/test/test_dbtables.pyc -opt/lampp/lib/python2.4/bsddb/test/test_dbtables.pyo -opt/lampp/lib/python2.4/bsddb/test/test_env_close.py -opt/lampp/lib/python2.4/bsddb/test/test_env_close.pyc -opt/lampp/lib/python2.4/bsddb/test/test_env_close.pyo -opt/lampp/lib/python2.4/bsddb/test/test_get_none.py -opt/lampp/lib/python2.4/bsddb/test/test_get_none.pyc -opt/lampp/lib/python2.4/bsddb/test/test_get_none.pyo -opt/lampp/lib/python2.4/bsddb/test/test_join.py -opt/lampp/lib/python2.4/bsddb/test/test_join.pyc -opt/lampp/lib/python2.4/bsddb/test/test_join.pyo -opt/lampp/lib/python2.4/bsddb/test/test_lock.py -opt/lampp/lib/python2.4/bsddb/test/test_lock.pyc -opt/lampp/lib/python2.4/bsddb/test/test_lock.pyo -opt/lampp/lib/python2.4/bsddb/test/test_misc.py -opt/lampp/lib/python2.4/bsddb/test/test_misc.pyc -opt/lampp/lib/python2.4/bsddb/test/test_misc.pyo -opt/lampp/lib/python2.4/bsddb/test/test_queue.py -opt/lampp/lib/python2.4/bsddb/test/test_queue.pyc -opt/lampp/lib/python2.4/bsddb/test/test_queue.pyo -opt/lampp/lib/python2.4/bsddb/test/test_recno.py -opt/lampp/lib/python2.4/bsddb/test/test_recno.pyc -opt/lampp/lib/python2.4/bsddb/test/test_recno.pyo -opt/lampp/lib/python2.4/bsddb/test/test_thread.py -opt/lampp/lib/python2.4/bsddb/test/test_thread.pyc -opt/lampp/lib/python2.4/bsddb/test/test_thread.pyo -opt/lampp/lib/python2.4/calendar.py -opt/lampp/lib/python2.4/calendar.pyc -opt/lampp/lib/python2.4/calendar.pyo -opt/lampp/lib/python2.4/cgi.py -opt/lampp/lib/python2.4/cgi.pyc -opt/lampp/lib/python2.4/cgi.pyo -opt/lampp/lib/python2.4/cgitb.py -opt/lampp/lib/python2.4/cgitb.pyc -opt/lampp/lib/python2.4/cgitb.pyo -opt/lampp/lib/python2.4/chunk.py -opt/lampp/lib/python2.4/chunk.pyc -opt/lampp/lib/python2.4/chunk.pyo -opt/lampp/lib/python2.4/cmd.py -opt/lampp/lib/python2.4/cmd.pyc -opt/lampp/lib/python2.4/cmd.pyo -opt/lampp/lib/python2.4/code.py -opt/lampp/lib/python2.4/code.pyc -opt/lampp/lib/python2.4/code.pyo -opt/lampp/lib/python2.4/codecs.py -opt/lampp/lib/python2.4/codecs.pyc -opt/lampp/lib/python2.4/codecs.pyo -opt/lampp/lib/python2.4/codeop.py -opt/lampp/lib/python2.4/codeop.pyc -opt/lampp/lib/python2.4/codeop.pyo -opt/lampp/lib/python2.4/colorsys.py -opt/lampp/lib/python2.4/colorsys.pyc -opt/lampp/lib/python2.4/colorsys.pyo -opt/lampp/lib/python2.4/commands.py -opt/lampp/lib/python2.4/commands.pyc -opt/lampp/lib/python2.4/commands.pyo -opt/lampp/lib/python2.4/compileall.py -opt/lampp/lib/python2.4/compileall.pyc -opt/lampp/lib/python2.4/compileall.pyo -opt/lampp/lib/python2.4/compiler -opt/lampp/lib/python2.4/compiler/__init__.py -opt/lampp/lib/python2.4/compiler/__init__.pyc -opt/lampp/lib/python2.4/compiler/__init__.pyo -opt/lampp/lib/python2.4/compiler/ast.py -opt/lampp/lib/python2.4/compiler/ast.pyc -opt/lampp/lib/python2.4/compiler/ast.pyo -opt/lampp/lib/python2.4/compiler/consts.py -opt/lampp/lib/python2.4/compiler/consts.pyc -opt/lampp/lib/python2.4/compiler/consts.pyo -opt/lampp/lib/python2.4/compiler/future.py -opt/lampp/lib/python2.4/compiler/future.pyc -opt/lampp/lib/python2.4/compiler/future.pyo -opt/lampp/lib/python2.4/compiler/misc.py -opt/lampp/lib/python2.4/compiler/misc.pyc -opt/lampp/lib/python2.4/compiler/misc.pyo -opt/lampp/lib/python2.4/compiler/pyassem.py -opt/lampp/lib/python2.4/compiler/pyassem.pyc -opt/lampp/lib/python2.4/compiler/pyassem.pyo -opt/lampp/lib/python2.4/compiler/pycodegen.py -opt/lampp/lib/python2.4/compiler/pycodegen.pyc -opt/lampp/lib/python2.4/compiler/pycodegen.pyo -opt/lampp/lib/python2.4/compiler/symbols.py -opt/lampp/lib/python2.4/compiler/symbols.pyc -opt/lampp/lib/python2.4/compiler/symbols.pyo -opt/lampp/lib/python2.4/compiler/syntax.py -opt/lampp/lib/python2.4/compiler/syntax.pyc -opt/lampp/lib/python2.4/compiler/syntax.pyo -opt/lampp/lib/python2.4/compiler/transformer.py -opt/lampp/lib/python2.4/compiler/transformer.pyc -opt/lampp/lib/python2.4/compiler/transformer.pyo -opt/lampp/lib/python2.4/compiler/visitor.py -opt/lampp/lib/python2.4/compiler/visitor.pyc -opt/lampp/lib/python2.4/compiler/visitor.pyo -opt/lampp/lib/python2.4/config -opt/lampp/lib/python2.4/config/Makefile -opt/lampp/lib/python2.4/config/Setup -opt/lampp/lib/python2.4/config/Setup.config -opt/lampp/lib/python2.4/config/Setup.local -opt/lampp/lib/python2.4/config/config.c -opt/lampp/lib/python2.4/config/config.c.in -opt/lampp/lib/python2.4/config/install-sh -opt/lampp/lib/python2.4/config/libpython2.4.a -opt/lampp/lib/python2.4/config/makesetup -opt/lampp/lib/python2.4/config/python.o -opt/lampp/lib/python2.4/cookielib.py -opt/lampp/lib/python2.4/cookielib.pyc -opt/lampp/lib/python2.4/cookielib.pyo -opt/lampp/lib/python2.4/copy.py -opt/lampp/lib/python2.4/copy.pyc -opt/lampp/lib/python2.4/copy.pyo -opt/lampp/lib/python2.4/copy_reg.py -opt/lampp/lib/python2.4/copy_reg.pyc -opt/lampp/lib/python2.4/copy_reg.pyo -opt/lampp/lib/python2.4/csv.py -opt/lampp/lib/python2.4/csv.pyc -opt/lampp/lib/python2.4/csv.pyo -opt/lampp/lib/python2.4/curses -opt/lampp/lib/python2.4/curses/__init__.py -opt/lampp/lib/python2.4/curses/__init__.pyc -opt/lampp/lib/python2.4/curses/__init__.pyo -opt/lampp/lib/python2.4/curses/ascii.py -opt/lampp/lib/python2.4/curses/ascii.pyc -opt/lampp/lib/python2.4/curses/ascii.pyo -opt/lampp/lib/python2.4/curses/has_key.py -opt/lampp/lib/python2.4/curses/has_key.pyc -opt/lampp/lib/python2.4/curses/has_key.pyo -opt/lampp/lib/python2.4/curses/panel.py -opt/lampp/lib/python2.4/curses/panel.pyc -opt/lampp/lib/python2.4/curses/panel.pyo -opt/lampp/lib/python2.4/curses/textpad.py -opt/lampp/lib/python2.4/curses/textpad.pyc -opt/lampp/lib/python2.4/curses/textpad.pyo -opt/lampp/lib/python2.4/curses/wrapper.py -opt/lampp/lib/python2.4/curses/wrapper.pyc -opt/lampp/lib/python2.4/curses/wrapper.pyo -opt/lampp/lib/python2.4/dbhash.py -opt/lampp/lib/python2.4/dbhash.pyc -opt/lampp/lib/python2.4/dbhash.pyo -opt/lampp/lib/python2.4/decimal.py -opt/lampp/lib/python2.4/decimal.pyc -opt/lampp/lib/python2.4/decimal.pyo -opt/lampp/lib/python2.4/difflib.py -opt/lampp/lib/python2.4/difflib.pyc -opt/lampp/lib/python2.4/difflib.pyo -opt/lampp/lib/python2.4/dircache.py -opt/lampp/lib/python2.4/dircache.pyc -opt/lampp/lib/python2.4/dircache.pyo -opt/lampp/lib/python2.4/dis.py -opt/lampp/lib/python2.4/dis.pyc -opt/lampp/lib/python2.4/dis.pyo -opt/lampp/lib/python2.4/distutils -opt/lampp/lib/python2.4/distutils/README -opt/lampp/lib/python2.4/distutils/__init__.py -opt/lampp/lib/python2.4/distutils/__init__.pyc -opt/lampp/lib/python2.4/distutils/__init__.pyo -opt/lampp/lib/python2.4/distutils/archive_util.py -opt/lampp/lib/python2.4/distutils/archive_util.pyc -opt/lampp/lib/python2.4/distutils/archive_util.pyo -opt/lampp/lib/python2.4/distutils/bcppcompiler.py -opt/lampp/lib/python2.4/distutils/bcppcompiler.pyc -opt/lampp/lib/python2.4/distutils/bcppcompiler.pyo -opt/lampp/lib/python2.4/distutils/ccompiler.py -opt/lampp/lib/python2.4/distutils/ccompiler.pyc -opt/lampp/lib/python2.4/distutils/ccompiler.pyo -opt/lampp/lib/python2.4/distutils/cmd.py -opt/lampp/lib/python2.4/distutils/cmd.pyc -opt/lampp/lib/python2.4/distutils/cmd.pyo -opt/lampp/lib/python2.4/distutils/command -opt/lampp/lib/python2.4/distutils/command/__init__.py -opt/lampp/lib/python2.4/distutils/command/__init__.pyc -opt/lampp/lib/python2.4/distutils/command/__init__.pyo -opt/lampp/lib/python2.4/distutils/command/bdist.py -opt/lampp/lib/python2.4/distutils/command/bdist.pyc -opt/lampp/lib/python2.4/distutils/command/bdist.pyo -opt/lampp/lib/python2.4/distutils/command/bdist_dumb.py -opt/lampp/lib/python2.4/distutils/command/bdist_dumb.pyc -opt/lampp/lib/python2.4/distutils/command/bdist_dumb.pyo -opt/lampp/lib/python2.4/distutils/command/bdist_rpm.py -opt/lampp/lib/python2.4/distutils/command/bdist_rpm.pyc -opt/lampp/lib/python2.4/distutils/command/bdist_rpm.pyo -opt/lampp/lib/python2.4/distutils/command/bdist_wininst.py -opt/lampp/lib/python2.4/distutils/command/bdist_wininst.pyc -opt/lampp/lib/python2.4/distutils/command/bdist_wininst.pyo -opt/lampp/lib/python2.4/distutils/command/build.py -opt/lampp/lib/python2.4/distutils/command/build.pyc -opt/lampp/lib/python2.4/distutils/command/build.pyo -opt/lampp/lib/python2.4/distutils/command/build_clib.py -opt/lampp/lib/python2.4/distutils/command/build_clib.pyc -opt/lampp/lib/python2.4/distutils/command/build_clib.pyo -opt/lampp/lib/python2.4/distutils/command/build_ext.py -opt/lampp/lib/python2.4/distutils/command/build_ext.pyc -opt/lampp/lib/python2.4/distutils/command/build_ext.pyo -opt/lampp/lib/python2.4/distutils/command/build_py.py -opt/lampp/lib/python2.4/distutils/command/build_py.pyc -opt/lampp/lib/python2.4/distutils/command/build_py.pyo -opt/lampp/lib/python2.4/distutils/command/build_scripts.py -opt/lampp/lib/python2.4/distutils/command/build_scripts.pyc -opt/lampp/lib/python2.4/distutils/command/build_scripts.pyo -opt/lampp/lib/python2.4/distutils/command/clean.py -opt/lampp/lib/python2.4/distutils/command/clean.pyc -opt/lampp/lib/python2.4/distutils/command/clean.pyo -opt/lampp/lib/python2.4/distutils/command/command_template -opt/lampp/lib/python2.4/distutils/command/config.py -opt/lampp/lib/python2.4/distutils/command/config.pyc -opt/lampp/lib/python2.4/distutils/command/config.pyo -opt/lampp/lib/python2.4/distutils/command/install.py -opt/lampp/lib/python2.4/distutils/command/install.pyc -opt/lampp/lib/python2.4/distutils/command/install.pyo -opt/lampp/lib/python2.4/distutils/command/install_data.py -opt/lampp/lib/python2.4/distutils/command/install_data.pyc -opt/lampp/lib/python2.4/distutils/command/install_data.pyo -opt/lampp/lib/python2.4/distutils/command/install_headers.py -opt/lampp/lib/python2.4/distutils/command/install_headers.pyc -opt/lampp/lib/python2.4/distutils/command/install_headers.pyo -opt/lampp/lib/python2.4/distutils/command/install_lib.py -opt/lampp/lib/python2.4/distutils/command/install_lib.pyc -opt/lampp/lib/python2.4/distutils/command/install_lib.pyo -opt/lampp/lib/python2.4/distutils/command/install_scripts.py -opt/lampp/lib/python2.4/distutils/command/install_scripts.pyc -opt/lampp/lib/python2.4/distutils/command/install_scripts.pyo -opt/lampp/lib/python2.4/distutils/command/register.py -opt/lampp/lib/python2.4/distutils/command/register.pyc -opt/lampp/lib/python2.4/distutils/command/register.pyo -opt/lampp/lib/python2.4/distutils/command/sdist.py -opt/lampp/lib/python2.4/distutils/command/sdist.pyc -opt/lampp/lib/python2.4/distutils/command/sdist.pyo -opt/lampp/lib/python2.4/distutils/command/wininst-6.exe -opt/lampp/lib/python2.4/distutils/command/wininst-7.1.exe -opt/lampp/lib/python2.4/distutils/core.py -opt/lampp/lib/python2.4/distutils/core.pyc -opt/lampp/lib/python2.4/distutils/core.pyo -opt/lampp/lib/python2.4/distutils/cygwinccompiler.py -opt/lampp/lib/python2.4/distutils/cygwinccompiler.pyc -opt/lampp/lib/python2.4/distutils/cygwinccompiler.pyo -opt/lampp/lib/python2.4/distutils/debug.py -opt/lampp/lib/python2.4/distutils/debug.pyc -opt/lampp/lib/python2.4/distutils/debug.pyo -opt/lampp/lib/python2.4/distutils/dep_util.py -opt/lampp/lib/python2.4/distutils/dep_util.pyc -opt/lampp/lib/python2.4/distutils/dep_util.pyo -opt/lampp/lib/python2.4/distutils/dir_util.py -opt/lampp/lib/python2.4/distutils/dir_util.pyc -opt/lampp/lib/python2.4/distutils/dir_util.pyo -opt/lampp/lib/python2.4/distutils/dist.py -opt/lampp/lib/python2.4/distutils/dist.pyc -opt/lampp/lib/python2.4/distutils/dist.pyo -opt/lampp/lib/python2.4/distutils/emxccompiler.py -opt/lampp/lib/python2.4/distutils/emxccompiler.pyc -opt/lampp/lib/python2.4/distutils/emxccompiler.pyo -opt/lampp/lib/python2.4/distutils/errors.py -opt/lampp/lib/python2.4/distutils/errors.pyc -opt/lampp/lib/python2.4/distutils/errors.pyo -opt/lampp/lib/python2.4/distutils/extension.py -opt/lampp/lib/python2.4/distutils/extension.pyc -opt/lampp/lib/python2.4/distutils/extension.pyo -opt/lampp/lib/python2.4/distutils/fancy_getopt.py -opt/lampp/lib/python2.4/distutils/fancy_getopt.pyc -opt/lampp/lib/python2.4/distutils/fancy_getopt.pyo -opt/lampp/lib/python2.4/distutils/file_util.py -opt/lampp/lib/python2.4/distutils/file_util.pyc -opt/lampp/lib/python2.4/distutils/file_util.pyo -opt/lampp/lib/python2.4/distutils/filelist.py -opt/lampp/lib/python2.4/distutils/filelist.pyc -opt/lampp/lib/python2.4/distutils/filelist.pyo -opt/lampp/lib/python2.4/distutils/log.py -opt/lampp/lib/python2.4/distutils/log.pyc -opt/lampp/lib/python2.4/distutils/log.pyo -opt/lampp/lib/python2.4/distutils/msvccompiler.py -opt/lampp/lib/python2.4/distutils/msvccompiler.pyc -opt/lampp/lib/python2.4/distutils/msvccompiler.pyo -opt/lampp/lib/python2.4/distutils/mwerkscompiler.py -opt/lampp/lib/python2.4/distutils/mwerkscompiler.pyc -opt/lampp/lib/python2.4/distutils/mwerkscompiler.pyo -opt/lampp/lib/python2.4/distutils/spawn.py -opt/lampp/lib/python2.4/distutils/spawn.pyc -opt/lampp/lib/python2.4/distutils/spawn.pyo -opt/lampp/lib/python2.4/distutils/sysconfig.py -opt/lampp/lib/python2.4/distutils/sysconfig.pyc -opt/lampp/lib/python2.4/distutils/sysconfig.pyo -opt/lampp/lib/python2.4/distutils/tests -opt/lampp/lib/python2.4/distutils/tests/__init__.py -opt/lampp/lib/python2.4/distutils/tests/__init__.pyc -opt/lampp/lib/python2.4/distutils/tests/__init__.pyo -opt/lampp/lib/python2.4/distutils/tests/support.py -opt/lampp/lib/python2.4/distutils/tests/support.pyc -opt/lampp/lib/python2.4/distutils/tests/support.pyo -opt/lampp/lib/python2.4/distutils/tests/test_build_py.py -opt/lampp/lib/python2.4/distutils/tests/test_build_py.pyc -opt/lampp/lib/python2.4/distutils/tests/test_build_py.pyo -opt/lampp/lib/python2.4/distutils/tests/test_build_scripts.py -opt/lampp/lib/python2.4/distutils/tests/test_build_scripts.pyc -opt/lampp/lib/python2.4/distutils/tests/test_build_scripts.pyo -opt/lampp/lib/python2.4/distutils/tests/test_dist.py -opt/lampp/lib/python2.4/distutils/tests/test_dist.pyc -opt/lampp/lib/python2.4/distutils/tests/test_dist.pyo -opt/lampp/lib/python2.4/distutils/tests/test_install.py -opt/lampp/lib/python2.4/distutils/tests/test_install.pyc -opt/lampp/lib/python2.4/distutils/tests/test_install.pyo -opt/lampp/lib/python2.4/distutils/tests/test_install_scripts.py -opt/lampp/lib/python2.4/distutils/tests/test_install_scripts.pyc -opt/lampp/lib/python2.4/distutils/tests/test_install_scripts.pyo -opt/lampp/lib/python2.4/distutils/text_file.py -opt/lampp/lib/python2.4/distutils/text_file.pyc -opt/lampp/lib/python2.4/distutils/text_file.pyo -opt/lampp/lib/python2.4/distutils/unixccompiler.py -opt/lampp/lib/python2.4/distutils/unixccompiler.pyc -opt/lampp/lib/python2.4/distutils/unixccompiler.pyo -opt/lampp/lib/python2.4/distutils/util.py -opt/lampp/lib/python2.4/distutils/util.pyc -opt/lampp/lib/python2.4/distutils/util.pyo -opt/lampp/lib/python2.4/distutils/version.py -opt/lampp/lib/python2.4/distutils/version.pyc -opt/lampp/lib/python2.4/distutils/version.pyo -opt/lampp/lib/python2.4/doctest.py -opt/lampp/lib/python2.4/doctest.pyc -opt/lampp/lib/python2.4/doctest.pyo -opt/lampp/lib/python2.4/dumbdbm.py -opt/lampp/lib/python2.4/dumbdbm.pyc -opt/lampp/lib/python2.4/dumbdbm.pyo -opt/lampp/lib/python2.4/dummy_thread.py -opt/lampp/lib/python2.4/dummy_thread.pyc -opt/lampp/lib/python2.4/dummy_thread.pyo -opt/lampp/lib/python2.4/dummy_threading.py -opt/lampp/lib/python2.4/dummy_threading.pyc -opt/lampp/lib/python2.4/dummy_threading.pyo -opt/lampp/lib/python2.4/email -opt/lampp/lib/python2.4/email/Charset.py -opt/lampp/lib/python2.4/email/Charset.pyc -opt/lampp/lib/python2.4/email/Charset.pyo -opt/lampp/lib/python2.4/email/Encoders.py -opt/lampp/lib/python2.4/email/Encoders.pyc -opt/lampp/lib/python2.4/email/Encoders.pyo -opt/lampp/lib/python2.4/email/Errors.py -opt/lampp/lib/python2.4/email/Errors.pyc -opt/lampp/lib/python2.4/email/Errors.pyo -opt/lampp/lib/python2.4/email/FeedParser.py -opt/lampp/lib/python2.4/email/FeedParser.pyc -opt/lampp/lib/python2.4/email/FeedParser.pyo -opt/lampp/lib/python2.4/email/Generator.py -opt/lampp/lib/python2.4/email/Generator.pyc -opt/lampp/lib/python2.4/email/Generator.pyo -opt/lampp/lib/python2.4/email/Header.py -opt/lampp/lib/python2.4/email/Header.pyc -opt/lampp/lib/python2.4/email/Header.pyo -opt/lampp/lib/python2.4/email/Iterators.py -opt/lampp/lib/python2.4/email/Iterators.pyc -opt/lampp/lib/python2.4/email/Iterators.pyo -opt/lampp/lib/python2.4/email/MIMEAudio.py -opt/lampp/lib/python2.4/email/MIMEAudio.pyc -opt/lampp/lib/python2.4/email/MIMEAudio.pyo -opt/lampp/lib/python2.4/email/MIMEBase.py -opt/lampp/lib/python2.4/email/MIMEBase.pyc -opt/lampp/lib/python2.4/email/MIMEBase.pyo -opt/lampp/lib/python2.4/email/MIMEImage.py -opt/lampp/lib/python2.4/email/MIMEImage.pyc -opt/lampp/lib/python2.4/email/MIMEImage.pyo -opt/lampp/lib/python2.4/email/MIMEMessage.py -opt/lampp/lib/python2.4/email/MIMEMessage.pyc -opt/lampp/lib/python2.4/email/MIMEMessage.pyo -opt/lampp/lib/python2.4/email/MIMEMultipart.py -opt/lampp/lib/python2.4/email/MIMEMultipart.pyc -opt/lampp/lib/python2.4/email/MIMEMultipart.pyo -opt/lampp/lib/python2.4/email/MIMENonMultipart.py -opt/lampp/lib/python2.4/email/MIMENonMultipart.pyc -opt/lampp/lib/python2.4/email/MIMENonMultipart.pyo -opt/lampp/lib/python2.4/email/MIMEText.py -opt/lampp/lib/python2.4/email/MIMEText.pyc -opt/lampp/lib/python2.4/email/MIMEText.pyo -opt/lampp/lib/python2.4/email/Message.py -opt/lampp/lib/python2.4/email/Message.pyc -opt/lampp/lib/python2.4/email/Message.pyo -opt/lampp/lib/python2.4/email/Parser.py -opt/lampp/lib/python2.4/email/Parser.pyc -opt/lampp/lib/python2.4/email/Parser.pyo -opt/lampp/lib/python2.4/email/Utils.py -opt/lampp/lib/python2.4/email/Utils.pyc -opt/lampp/lib/python2.4/email/Utils.pyo -opt/lampp/lib/python2.4/email/__init__.py -opt/lampp/lib/python2.4/email/__init__.pyc -opt/lampp/lib/python2.4/email/__init__.pyo -opt/lampp/lib/python2.4/email/_parseaddr.py -opt/lampp/lib/python2.4/email/_parseaddr.pyc -opt/lampp/lib/python2.4/email/_parseaddr.pyo -opt/lampp/lib/python2.4/email/base64MIME.py -opt/lampp/lib/python2.4/email/base64MIME.pyc -opt/lampp/lib/python2.4/email/base64MIME.pyo -opt/lampp/lib/python2.4/email/quopriMIME.py -opt/lampp/lib/python2.4/email/quopriMIME.pyc -opt/lampp/lib/python2.4/email/quopriMIME.pyo -opt/lampp/lib/python2.4/email/test -opt/lampp/lib/python2.4/email/test/__init__.py -opt/lampp/lib/python2.4/email/test/__init__.pyc -opt/lampp/lib/python2.4/email/test/__init__.pyo -opt/lampp/lib/python2.4/email/test/data -opt/lampp/lib/python2.4/email/test/data/PyBanner048.gif -opt/lampp/lib/python2.4/email/test/data/audiotest.au -opt/lampp/lib/python2.4/email/test/data/msg_01.txt -opt/lampp/lib/python2.4/email/test/data/msg_02.txt -opt/lampp/lib/python2.4/email/test/data/msg_03.txt -opt/lampp/lib/python2.4/email/test/data/msg_04.txt -opt/lampp/lib/python2.4/email/test/data/msg_05.txt -opt/lampp/lib/python2.4/email/test/data/msg_06.txt -opt/lampp/lib/python2.4/email/test/data/msg_07.txt -opt/lampp/lib/python2.4/email/test/data/msg_08.txt -opt/lampp/lib/python2.4/email/test/data/msg_09.txt -opt/lampp/lib/python2.4/email/test/data/msg_10.txt -opt/lampp/lib/python2.4/email/test/data/msg_11.txt -opt/lampp/lib/python2.4/email/test/data/msg_12.txt -opt/lampp/lib/python2.4/email/test/data/msg_12a.txt -opt/lampp/lib/python2.4/email/test/data/msg_13.txt -opt/lampp/lib/python2.4/email/test/data/msg_14.txt -opt/lampp/lib/python2.4/email/test/data/msg_15.txt -opt/lampp/lib/python2.4/email/test/data/msg_16.txt -opt/lampp/lib/python2.4/email/test/data/msg_17.txt -opt/lampp/lib/python2.4/email/test/data/msg_18.txt -opt/lampp/lib/python2.4/email/test/data/msg_19.txt -opt/lampp/lib/python2.4/email/test/data/msg_20.txt -opt/lampp/lib/python2.4/email/test/data/msg_21.txt -opt/lampp/lib/python2.4/email/test/data/msg_22.txt -opt/lampp/lib/python2.4/email/test/data/msg_23.txt -opt/lampp/lib/python2.4/email/test/data/msg_24.txt -opt/lampp/lib/python2.4/email/test/data/msg_25.txt -opt/lampp/lib/python2.4/email/test/data/msg_26.txt -opt/lampp/lib/python2.4/email/test/data/msg_27.txt -opt/lampp/lib/python2.4/email/test/data/msg_28.txt -opt/lampp/lib/python2.4/email/test/data/msg_29.txt -opt/lampp/lib/python2.4/email/test/data/msg_30.txt -opt/lampp/lib/python2.4/email/test/data/msg_31.txt -opt/lampp/lib/python2.4/email/test/data/msg_32.txt -opt/lampp/lib/python2.4/email/test/data/msg_33.txt -opt/lampp/lib/python2.4/email/test/data/msg_34.txt -opt/lampp/lib/python2.4/email/test/data/msg_35.txt -opt/lampp/lib/python2.4/email/test/data/msg_36.txt -opt/lampp/lib/python2.4/email/test/data/msg_37.txt -opt/lampp/lib/python2.4/email/test/data/msg_38.txt -opt/lampp/lib/python2.4/email/test/data/msg_39.txt -opt/lampp/lib/python2.4/email/test/data/msg_40.txt -opt/lampp/lib/python2.4/email/test/data/msg_41.txt -opt/lampp/lib/python2.4/email/test/data/msg_42.txt -opt/lampp/lib/python2.4/email/test/data/msg_43.txt -opt/lampp/lib/python2.4/email/test/test_email.py -opt/lampp/lib/python2.4/email/test/test_email.pyc -opt/lampp/lib/python2.4/email/test/test_email.pyo -opt/lampp/lib/python2.4/email/test/test_email_codecs.py -opt/lampp/lib/python2.4/email/test/test_email_codecs.pyc -opt/lampp/lib/python2.4/email/test/test_email_codecs.pyo -opt/lampp/lib/python2.4/email/test/test_email_torture.py -opt/lampp/lib/python2.4/email/test/test_email_torture.pyc -opt/lampp/lib/python2.4/email/test/test_email_torture.pyo -opt/lampp/lib/python2.4/encodings -opt/lampp/lib/python2.4/encodings/__init__.py -opt/lampp/lib/python2.4/encodings/__init__.pyc -opt/lampp/lib/python2.4/encodings/__init__.pyo -opt/lampp/lib/python2.4/encodings/aliases.py -opt/lampp/lib/python2.4/encodings/aliases.pyc -opt/lampp/lib/python2.4/encodings/aliases.pyo -opt/lampp/lib/python2.4/encodings/ascii.py -opt/lampp/lib/python2.4/encodings/ascii.pyc -opt/lampp/lib/python2.4/encodings/ascii.pyo -opt/lampp/lib/python2.4/encodings/base64_codec.py -opt/lampp/lib/python2.4/encodings/base64_codec.pyc -opt/lampp/lib/python2.4/encodings/base64_codec.pyo -opt/lampp/lib/python2.4/encodings/big5.py -opt/lampp/lib/python2.4/encodings/big5.pyc -opt/lampp/lib/python2.4/encodings/big5.pyo -opt/lampp/lib/python2.4/encodings/big5hkscs.py -opt/lampp/lib/python2.4/encodings/big5hkscs.pyc -opt/lampp/lib/python2.4/encodings/big5hkscs.pyo -opt/lampp/lib/python2.4/encodings/bz2_codec.py -opt/lampp/lib/python2.4/encodings/bz2_codec.pyc -opt/lampp/lib/python2.4/encodings/bz2_codec.pyo -opt/lampp/lib/python2.4/encodings/charmap.py -opt/lampp/lib/python2.4/encodings/charmap.pyc -opt/lampp/lib/python2.4/encodings/charmap.pyo -opt/lampp/lib/python2.4/encodings/cp037.py -opt/lampp/lib/python2.4/encodings/cp037.pyc -opt/lampp/lib/python2.4/encodings/cp037.pyo -opt/lampp/lib/python2.4/encodings/cp1006.py -opt/lampp/lib/python2.4/encodings/cp1006.pyc -opt/lampp/lib/python2.4/encodings/cp1006.pyo -opt/lampp/lib/python2.4/encodings/cp1026.py -opt/lampp/lib/python2.4/encodings/cp1026.pyc -opt/lampp/lib/python2.4/encodings/cp1026.pyo -opt/lampp/lib/python2.4/encodings/cp1140.py -opt/lampp/lib/python2.4/encodings/cp1140.pyc -opt/lampp/lib/python2.4/encodings/cp1140.pyo -opt/lampp/lib/python2.4/encodings/cp1250.py -opt/lampp/lib/python2.4/encodings/cp1250.pyc -opt/lampp/lib/python2.4/encodings/cp1250.pyo -opt/lampp/lib/python2.4/encodings/cp1251.py -opt/lampp/lib/python2.4/encodings/cp1251.pyc -opt/lampp/lib/python2.4/encodings/cp1251.pyo -opt/lampp/lib/python2.4/encodings/cp1252.py -opt/lampp/lib/python2.4/encodings/cp1252.pyc -opt/lampp/lib/python2.4/encodings/cp1252.pyo -opt/lampp/lib/python2.4/encodings/cp1253.py -opt/lampp/lib/python2.4/encodings/cp1253.pyc -opt/lampp/lib/python2.4/encodings/cp1253.pyo -opt/lampp/lib/python2.4/encodings/cp1254.py -opt/lampp/lib/python2.4/encodings/cp1254.pyc -opt/lampp/lib/python2.4/encodings/cp1254.pyo -opt/lampp/lib/python2.4/encodings/cp1255.py -opt/lampp/lib/python2.4/encodings/cp1255.pyc -opt/lampp/lib/python2.4/encodings/cp1255.pyo -opt/lampp/lib/python2.4/encodings/cp1256.py -opt/lampp/lib/python2.4/encodings/cp1256.pyc -opt/lampp/lib/python2.4/encodings/cp1256.pyo -opt/lampp/lib/python2.4/encodings/cp1257.py -opt/lampp/lib/python2.4/encodings/cp1257.pyc -opt/lampp/lib/python2.4/encodings/cp1257.pyo -opt/lampp/lib/python2.4/encodings/cp1258.py -opt/lampp/lib/python2.4/encodings/cp1258.pyc -opt/lampp/lib/python2.4/encodings/cp1258.pyo -opt/lampp/lib/python2.4/encodings/cp424.py -opt/lampp/lib/python2.4/encodings/cp424.pyc -opt/lampp/lib/python2.4/encodings/cp424.pyo -opt/lampp/lib/python2.4/encodings/cp437.py -opt/lampp/lib/python2.4/encodings/cp437.pyc -opt/lampp/lib/python2.4/encodings/cp437.pyo -opt/lampp/lib/python2.4/encodings/cp500.py -opt/lampp/lib/python2.4/encodings/cp500.pyc -opt/lampp/lib/python2.4/encodings/cp500.pyo -opt/lampp/lib/python2.4/encodings/cp737.py -opt/lampp/lib/python2.4/encodings/cp737.pyc -opt/lampp/lib/python2.4/encodings/cp737.pyo -opt/lampp/lib/python2.4/encodings/cp775.py -opt/lampp/lib/python2.4/encodings/cp775.pyc -opt/lampp/lib/python2.4/encodings/cp775.pyo -opt/lampp/lib/python2.4/encodings/cp850.py -opt/lampp/lib/python2.4/encodings/cp850.pyc -opt/lampp/lib/python2.4/encodings/cp850.pyo -opt/lampp/lib/python2.4/encodings/cp852.py -opt/lampp/lib/python2.4/encodings/cp852.pyc -opt/lampp/lib/python2.4/encodings/cp852.pyo -opt/lampp/lib/python2.4/encodings/cp855.py -opt/lampp/lib/python2.4/encodings/cp855.pyc -opt/lampp/lib/python2.4/encodings/cp855.pyo -opt/lampp/lib/python2.4/encodings/cp856.py -opt/lampp/lib/python2.4/encodings/cp856.pyc -opt/lampp/lib/python2.4/encodings/cp856.pyo -opt/lampp/lib/python2.4/encodings/cp857.py -opt/lampp/lib/python2.4/encodings/cp857.pyc -opt/lampp/lib/python2.4/encodings/cp857.pyo -opt/lampp/lib/python2.4/encodings/cp860.py -opt/lampp/lib/python2.4/encodings/cp860.pyc -opt/lampp/lib/python2.4/encodings/cp860.pyo -opt/lampp/lib/python2.4/encodings/cp861.py -opt/lampp/lib/python2.4/encodings/cp861.pyc -opt/lampp/lib/python2.4/encodings/cp861.pyo -opt/lampp/lib/python2.4/encodings/cp862.py -opt/lampp/lib/python2.4/encodings/cp862.pyc -opt/lampp/lib/python2.4/encodings/cp862.pyo -opt/lampp/lib/python2.4/encodings/cp863.py -opt/lampp/lib/python2.4/encodings/cp863.pyc -opt/lampp/lib/python2.4/encodings/cp863.pyo -opt/lampp/lib/python2.4/encodings/cp864.py -opt/lampp/lib/python2.4/encodings/cp864.pyc -opt/lampp/lib/python2.4/encodings/cp864.pyo -opt/lampp/lib/python2.4/encodings/cp865.py -opt/lampp/lib/python2.4/encodings/cp865.pyc -opt/lampp/lib/python2.4/encodings/cp865.pyo -opt/lampp/lib/python2.4/encodings/cp866.py -opt/lampp/lib/python2.4/encodings/cp866.pyc -opt/lampp/lib/python2.4/encodings/cp866.pyo -opt/lampp/lib/python2.4/encodings/cp869.py -opt/lampp/lib/python2.4/encodings/cp869.pyc -opt/lampp/lib/python2.4/encodings/cp869.pyo -opt/lampp/lib/python2.4/encodings/cp874.py -opt/lampp/lib/python2.4/encodings/cp874.pyc -opt/lampp/lib/python2.4/encodings/cp874.pyo -opt/lampp/lib/python2.4/encodings/cp875.py -opt/lampp/lib/python2.4/encodings/cp875.pyc -opt/lampp/lib/python2.4/encodings/cp875.pyo -opt/lampp/lib/python2.4/encodings/cp932.py -opt/lampp/lib/python2.4/encodings/cp932.pyc -opt/lampp/lib/python2.4/encodings/cp932.pyo -opt/lampp/lib/python2.4/encodings/cp949.py -opt/lampp/lib/python2.4/encodings/cp949.pyc -opt/lampp/lib/python2.4/encodings/cp949.pyo -opt/lampp/lib/python2.4/encodings/cp950.py -opt/lampp/lib/python2.4/encodings/cp950.pyc -opt/lampp/lib/python2.4/encodings/cp950.pyo -opt/lampp/lib/python2.4/encodings/euc_jis_2004.py -opt/lampp/lib/python2.4/encodings/euc_jis_2004.pyc -opt/lampp/lib/python2.4/encodings/euc_jis_2004.pyo -opt/lampp/lib/python2.4/encodings/euc_jisx0213.py -opt/lampp/lib/python2.4/encodings/euc_jisx0213.pyc -opt/lampp/lib/python2.4/encodings/euc_jisx0213.pyo -opt/lampp/lib/python2.4/encodings/euc_jp.py -opt/lampp/lib/python2.4/encodings/euc_jp.pyc -opt/lampp/lib/python2.4/encodings/euc_jp.pyo -opt/lampp/lib/python2.4/encodings/euc_kr.py -opt/lampp/lib/python2.4/encodings/euc_kr.pyc -opt/lampp/lib/python2.4/encodings/euc_kr.pyo -opt/lampp/lib/python2.4/encodings/gb18030.py -opt/lampp/lib/python2.4/encodings/gb18030.pyc -opt/lampp/lib/python2.4/encodings/gb18030.pyo -opt/lampp/lib/python2.4/encodings/gb2312.py -opt/lampp/lib/python2.4/encodings/gb2312.pyc -opt/lampp/lib/python2.4/encodings/gb2312.pyo -opt/lampp/lib/python2.4/encodings/gbk.py -opt/lampp/lib/python2.4/encodings/gbk.pyc -opt/lampp/lib/python2.4/encodings/gbk.pyo -opt/lampp/lib/python2.4/encodings/hex_codec.py -opt/lampp/lib/python2.4/encodings/hex_codec.pyc -opt/lampp/lib/python2.4/encodings/hex_codec.pyo -opt/lampp/lib/python2.4/encodings/hp_roman8.py -opt/lampp/lib/python2.4/encodings/hp_roman8.pyc -opt/lampp/lib/python2.4/encodings/hp_roman8.pyo -opt/lampp/lib/python2.4/encodings/hz.py -opt/lampp/lib/python2.4/encodings/hz.pyc -opt/lampp/lib/python2.4/encodings/hz.pyo -opt/lampp/lib/python2.4/encodings/idna.py -opt/lampp/lib/python2.4/encodings/idna.pyc -opt/lampp/lib/python2.4/encodings/idna.pyo -opt/lampp/lib/python2.4/encodings/iso2022_jp.py -opt/lampp/lib/python2.4/encodings/iso2022_jp.pyc -opt/lampp/lib/python2.4/encodings/iso2022_jp.pyo -opt/lampp/lib/python2.4/encodings/iso2022_jp_1.py -opt/lampp/lib/python2.4/encodings/iso2022_jp_1.pyc -opt/lampp/lib/python2.4/encodings/iso2022_jp_1.pyo -opt/lampp/lib/python2.4/encodings/iso2022_jp_2.py -opt/lampp/lib/python2.4/encodings/iso2022_jp_2.pyc -opt/lampp/lib/python2.4/encodings/iso2022_jp_2.pyo -opt/lampp/lib/python2.4/encodings/iso2022_jp_2004.py -opt/lampp/lib/python2.4/encodings/iso2022_jp_2004.pyc -opt/lampp/lib/python2.4/encodings/iso2022_jp_2004.pyo -opt/lampp/lib/python2.4/encodings/iso2022_jp_3.py -opt/lampp/lib/python2.4/encodings/iso2022_jp_3.pyc -opt/lampp/lib/python2.4/encodings/iso2022_jp_3.pyo -opt/lampp/lib/python2.4/encodings/iso2022_jp_ext.py -opt/lampp/lib/python2.4/encodings/iso2022_jp_ext.pyc -opt/lampp/lib/python2.4/encodings/iso2022_jp_ext.pyo -opt/lampp/lib/python2.4/encodings/iso2022_kr.py -opt/lampp/lib/python2.4/encodings/iso2022_kr.pyc -opt/lampp/lib/python2.4/encodings/iso2022_kr.pyo -opt/lampp/lib/python2.4/encodings/iso8859_1.py -opt/lampp/lib/python2.4/encodings/iso8859_1.pyc -opt/lampp/lib/python2.4/encodings/iso8859_1.pyo -opt/lampp/lib/python2.4/encodings/iso8859_10.py -opt/lampp/lib/python2.4/encodings/iso8859_10.pyc -opt/lampp/lib/python2.4/encodings/iso8859_10.pyo -opt/lampp/lib/python2.4/encodings/iso8859_11.py -opt/lampp/lib/python2.4/encodings/iso8859_11.pyc -opt/lampp/lib/python2.4/encodings/iso8859_11.pyo -opt/lampp/lib/python2.4/encodings/iso8859_13.py -opt/lampp/lib/python2.4/encodings/iso8859_13.pyc -opt/lampp/lib/python2.4/encodings/iso8859_13.pyo -opt/lampp/lib/python2.4/encodings/iso8859_14.py -opt/lampp/lib/python2.4/encodings/iso8859_14.pyc -opt/lampp/lib/python2.4/encodings/iso8859_14.pyo -opt/lampp/lib/python2.4/encodings/iso8859_15.py -opt/lampp/lib/python2.4/encodings/iso8859_15.pyc -opt/lampp/lib/python2.4/encodings/iso8859_15.pyo -opt/lampp/lib/python2.4/encodings/iso8859_16.py -opt/lampp/lib/python2.4/encodings/iso8859_16.pyc -opt/lampp/lib/python2.4/encodings/iso8859_16.pyo -opt/lampp/lib/python2.4/encodings/iso8859_2.py -opt/lampp/lib/python2.4/encodings/iso8859_2.pyc -opt/lampp/lib/python2.4/encodings/iso8859_2.pyo -opt/lampp/lib/python2.4/encodings/iso8859_3.py -opt/lampp/lib/python2.4/encodings/iso8859_3.pyc -opt/lampp/lib/python2.4/encodings/iso8859_3.pyo -opt/lampp/lib/python2.4/encodings/iso8859_4.py -opt/lampp/lib/python2.4/encodings/iso8859_4.pyc -opt/lampp/lib/python2.4/encodings/iso8859_4.pyo -opt/lampp/lib/python2.4/encodings/iso8859_5.py -opt/lampp/lib/python2.4/encodings/iso8859_5.pyc -opt/lampp/lib/python2.4/encodings/iso8859_5.pyo -opt/lampp/lib/python2.4/encodings/iso8859_6.py -opt/lampp/lib/python2.4/encodings/iso8859_6.pyc -opt/lampp/lib/python2.4/encodings/iso8859_6.pyo -opt/lampp/lib/python2.4/encodings/iso8859_7.py -opt/lampp/lib/python2.4/encodings/iso8859_7.pyc -opt/lampp/lib/python2.4/encodings/iso8859_7.pyo -opt/lampp/lib/python2.4/encodings/iso8859_8.py -opt/lampp/lib/python2.4/encodings/iso8859_8.pyc -opt/lampp/lib/python2.4/encodings/iso8859_8.pyo -opt/lampp/lib/python2.4/encodings/iso8859_9.py -opt/lampp/lib/python2.4/encodings/iso8859_9.pyc -opt/lampp/lib/python2.4/encodings/iso8859_9.pyo -opt/lampp/lib/python2.4/encodings/johab.py -opt/lampp/lib/python2.4/encodings/johab.pyc -opt/lampp/lib/python2.4/encodings/johab.pyo -opt/lampp/lib/python2.4/encodings/koi8_r.py -opt/lampp/lib/python2.4/encodings/koi8_r.pyc -opt/lampp/lib/python2.4/encodings/koi8_r.pyo -opt/lampp/lib/python2.4/encodings/koi8_u.py -opt/lampp/lib/python2.4/encodings/koi8_u.pyc -opt/lampp/lib/python2.4/encodings/koi8_u.pyo -opt/lampp/lib/python2.4/encodings/latin_1.py -opt/lampp/lib/python2.4/encodings/latin_1.pyc -opt/lampp/lib/python2.4/encodings/latin_1.pyo -opt/lampp/lib/python2.4/encodings/mac_cyrillic.py -opt/lampp/lib/python2.4/encodings/mac_cyrillic.pyc -opt/lampp/lib/python2.4/encodings/mac_cyrillic.pyo -opt/lampp/lib/python2.4/encodings/mac_greek.py -opt/lampp/lib/python2.4/encodings/mac_greek.pyc -opt/lampp/lib/python2.4/encodings/mac_greek.pyo -opt/lampp/lib/python2.4/encodings/mac_iceland.py -opt/lampp/lib/python2.4/encodings/mac_iceland.pyc -opt/lampp/lib/python2.4/encodings/mac_iceland.pyo -opt/lampp/lib/python2.4/encodings/mac_latin2.py -opt/lampp/lib/python2.4/encodings/mac_latin2.pyc -opt/lampp/lib/python2.4/encodings/mac_latin2.pyo -opt/lampp/lib/python2.4/encodings/mac_roman.py -opt/lampp/lib/python2.4/encodings/mac_roman.pyc -opt/lampp/lib/python2.4/encodings/mac_roman.pyo -opt/lampp/lib/python2.4/encodings/mac_turkish.py -opt/lampp/lib/python2.4/encodings/mac_turkish.pyc -opt/lampp/lib/python2.4/encodings/mac_turkish.pyo -opt/lampp/lib/python2.4/encodings/mbcs.py -opt/lampp/lib/python2.4/encodings/mbcs.pyc -opt/lampp/lib/python2.4/encodings/mbcs.pyo -opt/lampp/lib/python2.4/encodings/palmos.py -opt/lampp/lib/python2.4/encodings/palmos.pyc -opt/lampp/lib/python2.4/encodings/palmos.pyo -opt/lampp/lib/python2.4/encodings/ptcp154.py -opt/lampp/lib/python2.4/encodings/ptcp154.pyc -opt/lampp/lib/python2.4/encodings/ptcp154.pyo -opt/lampp/lib/python2.4/encodings/punycode.py -opt/lampp/lib/python2.4/encodings/punycode.pyc -opt/lampp/lib/python2.4/encodings/punycode.pyo -opt/lampp/lib/python2.4/encodings/quopri_codec.py -opt/lampp/lib/python2.4/encodings/quopri_codec.pyc -opt/lampp/lib/python2.4/encodings/quopri_codec.pyo -opt/lampp/lib/python2.4/encodings/raw_unicode_escape.py -opt/lampp/lib/python2.4/encodings/raw_unicode_escape.pyc -opt/lampp/lib/python2.4/encodings/raw_unicode_escape.pyo -opt/lampp/lib/python2.4/encodings/rot_13.py -opt/lampp/lib/python2.4/encodings/rot_13.pyc -opt/lampp/lib/python2.4/encodings/rot_13.pyo -opt/lampp/lib/python2.4/encodings/shift_jis.py -opt/lampp/lib/python2.4/encodings/shift_jis.pyc -opt/lampp/lib/python2.4/encodings/shift_jis.pyo -opt/lampp/lib/python2.4/encodings/shift_jis_2004.py -opt/lampp/lib/python2.4/encodings/shift_jis_2004.pyc -opt/lampp/lib/python2.4/encodings/shift_jis_2004.pyo -opt/lampp/lib/python2.4/encodings/shift_jisx0213.py -opt/lampp/lib/python2.4/encodings/shift_jisx0213.pyc -opt/lampp/lib/python2.4/encodings/shift_jisx0213.pyo -opt/lampp/lib/python2.4/encodings/string_escape.py -opt/lampp/lib/python2.4/encodings/string_escape.pyc -opt/lampp/lib/python2.4/encodings/string_escape.pyo -opt/lampp/lib/python2.4/encodings/tis_620.py -opt/lampp/lib/python2.4/encodings/tis_620.pyc -opt/lampp/lib/python2.4/encodings/tis_620.pyo -opt/lampp/lib/python2.4/encodings/undefined.py -opt/lampp/lib/python2.4/encodings/undefined.pyc -opt/lampp/lib/python2.4/encodings/undefined.pyo -opt/lampp/lib/python2.4/encodings/unicode_escape.py -opt/lampp/lib/python2.4/encodings/unicode_escape.pyc -opt/lampp/lib/python2.4/encodings/unicode_escape.pyo -opt/lampp/lib/python2.4/encodings/unicode_internal.py -opt/lampp/lib/python2.4/encodings/unicode_internal.pyc -opt/lampp/lib/python2.4/encodings/unicode_internal.pyo -opt/lampp/lib/python2.4/encodings/utf_16.py -opt/lampp/lib/python2.4/encodings/utf_16.pyc -opt/lampp/lib/python2.4/encodings/utf_16.pyo -opt/lampp/lib/python2.4/encodings/utf_16_be.py -opt/lampp/lib/python2.4/encodings/utf_16_be.pyc -opt/lampp/lib/python2.4/encodings/utf_16_be.pyo -opt/lampp/lib/python2.4/encodings/utf_16_le.py -opt/lampp/lib/python2.4/encodings/utf_16_le.pyc -opt/lampp/lib/python2.4/encodings/utf_16_le.pyo -opt/lampp/lib/python2.4/encodings/utf_7.py -opt/lampp/lib/python2.4/encodings/utf_7.pyc -opt/lampp/lib/python2.4/encodings/utf_7.pyo -opt/lampp/lib/python2.4/encodings/utf_8.py -opt/lampp/lib/python2.4/encodings/utf_8.pyc -opt/lampp/lib/python2.4/encodings/utf_8.pyo -opt/lampp/lib/python2.4/encodings/uu_codec.py -opt/lampp/lib/python2.4/encodings/uu_codec.pyc -opt/lampp/lib/python2.4/encodings/uu_codec.pyo -opt/lampp/lib/python2.4/encodings/zlib_codec.py -opt/lampp/lib/python2.4/encodings/zlib_codec.pyc -opt/lampp/lib/python2.4/encodings/zlib_codec.pyo -opt/lampp/lib/python2.4/filecmp.py -opt/lampp/lib/python2.4/filecmp.pyc -opt/lampp/lib/python2.4/filecmp.pyo -opt/lampp/lib/python2.4/fileinput.py -opt/lampp/lib/python2.4/fileinput.pyc -opt/lampp/lib/python2.4/fileinput.pyo -opt/lampp/lib/python2.4/fnmatch.py -opt/lampp/lib/python2.4/fnmatch.pyc -opt/lampp/lib/python2.4/fnmatch.pyo -opt/lampp/lib/python2.4/formatter.py -opt/lampp/lib/python2.4/formatter.pyc -opt/lampp/lib/python2.4/formatter.pyo -opt/lampp/lib/python2.4/fpformat.py -opt/lampp/lib/python2.4/fpformat.pyc -opt/lampp/lib/python2.4/fpformat.pyo -opt/lampp/lib/python2.4/ftplib.py -opt/lampp/lib/python2.4/ftplib.pyc -opt/lampp/lib/python2.4/ftplib.pyo -opt/lampp/lib/python2.4/getopt.py -opt/lampp/lib/python2.4/getopt.pyc -opt/lampp/lib/python2.4/getopt.pyo -opt/lampp/lib/python2.4/getpass.py -opt/lampp/lib/python2.4/getpass.pyc -opt/lampp/lib/python2.4/getpass.pyo -opt/lampp/lib/python2.4/gettext.py -opt/lampp/lib/python2.4/gettext.pyc -opt/lampp/lib/python2.4/gettext.pyo -opt/lampp/lib/python2.4/glob.py -opt/lampp/lib/python2.4/glob.pyc -opt/lampp/lib/python2.4/glob.pyo -opt/lampp/lib/python2.4/gopherlib.py -opt/lampp/lib/python2.4/gopherlib.pyc -opt/lampp/lib/python2.4/gopherlib.pyo -opt/lampp/lib/python2.4/gzip.py -opt/lampp/lib/python2.4/gzip.pyc -opt/lampp/lib/python2.4/gzip.pyo -opt/lampp/lib/python2.4/heapq.py -opt/lampp/lib/python2.4/heapq.pyc -opt/lampp/lib/python2.4/heapq.pyo -opt/lampp/lib/python2.4/hmac.py -opt/lampp/lib/python2.4/hmac.pyc -opt/lampp/lib/python2.4/hmac.pyo -opt/lampp/lib/python2.4/hotshot -opt/lampp/lib/python2.4/hotshot/__init__.py -opt/lampp/lib/python2.4/hotshot/__init__.pyc -opt/lampp/lib/python2.4/hotshot/__init__.pyo -opt/lampp/lib/python2.4/hotshot/log.py -opt/lampp/lib/python2.4/hotshot/log.pyc -opt/lampp/lib/python2.4/hotshot/log.pyo -opt/lampp/lib/python2.4/hotshot/stats.py -opt/lampp/lib/python2.4/hotshot/stats.pyc -opt/lampp/lib/python2.4/hotshot/stats.pyo -opt/lampp/lib/python2.4/hotshot/stones.py -opt/lampp/lib/python2.4/hotshot/stones.pyc -opt/lampp/lib/python2.4/hotshot/stones.pyo -opt/lampp/lib/python2.4/htmlentitydefs.py -opt/lampp/lib/python2.4/htmlentitydefs.pyc -opt/lampp/lib/python2.4/htmlentitydefs.pyo -opt/lampp/lib/python2.4/htmllib.py -opt/lampp/lib/python2.4/htmllib.pyc -opt/lampp/lib/python2.4/htmllib.pyo -opt/lampp/lib/python2.4/httplib.py -opt/lampp/lib/python2.4/httplib.pyc -opt/lampp/lib/python2.4/httplib.pyo -opt/lampp/lib/python2.4/idlelib -opt/lampp/lib/python2.4/idlelib/AutoExpand.py -opt/lampp/lib/python2.4/idlelib/AutoExpand.pyc -opt/lampp/lib/python2.4/idlelib/AutoExpand.pyo -opt/lampp/lib/python2.4/idlelib/Bindings.py -opt/lampp/lib/python2.4/idlelib/Bindings.pyc -opt/lampp/lib/python2.4/idlelib/Bindings.pyo -opt/lampp/lib/python2.4/idlelib/CREDITS.txt -opt/lampp/lib/python2.4/idlelib/CallTipWindow.py -opt/lampp/lib/python2.4/idlelib/CallTipWindow.pyc -opt/lampp/lib/python2.4/idlelib/CallTipWindow.pyo -opt/lampp/lib/python2.4/idlelib/CallTips.py -opt/lampp/lib/python2.4/idlelib/CallTips.pyc -opt/lampp/lib/python2.4/idlelib/CallTips.pyo -opt/lampp/lib/python2.4/idlelib/ChangeLog -opt/lampp/lib/python2.4/idlelib/ClassBrowser.py -opt/lampp/lib/python2.4/idlelib/ClassBrowser.pyc -opt/lampp/lib/python2.4/idlelib/ClassBrowser.pyo -opt/lampp/lib/python2.4/idlelib/CodeContext.py -opt/lampp/lib/python2.4/idlelib/CodeContext.pyc -opt/lampp/lib/python2.4/idlelib/CodeContext.pyo -opt/lampp/lib/python2.4/idlelib/ColorDelegator.py -opt/lampp/lib/python2.4/idlelib/ColorDelegator.pyc -opt/lampp/lib/python2.4/idlelib/ColorDelegator.pyo -opt/lampp/lib/python2.4/idlelib/Debugger.py -opt/lampp/lib/python2.4/idlelib/Debugger.pyc -opt/lampp/lib/python2.4/idlelib/Debugger.pyo -opt/lampp/lib/python2.4/idlelib/Delegator.py -opt/lampp/lib/python2.4/idlelib/Delegator.pyc -opt/lampp/lib/python2.4/idlelib/Delegator.pyo -opt/lampp/lib/python2.4/idlelib/EditorWindow.py -opt/lampp/lib/python2.4/idlelib/EditorWindow.pyc -opt/lampp/lib/python2.4/idlelib/EditorWindow.pyo -opt/lampp/lib/python2.4/idlelib/FileList.py -opt/lampp/lib/python2.4/idlelib/FileList.pyc -opt/lampp/lib/python2.4/idlelib/FileList.pyo -opt/lampp/lib/python2.4/idlelib/FormatParagraph.py -opt/lampp/lib/python2.4/idlelib/FormatParagraph.pyc -opt/lampp/lib/python2.4/idlelib/FormatParagraph.pyo -opt/lampp/lib/python2.4/idlelib/GrepDialog.py -opt/lampp/lib/python2.4/idlelib/GrepDialog.pyc -opt/lampp/lib/python2.4/idlelib/GrepDialog.pyo -opt/lampp/lib/python2.4/idlelib/HISTORY.txt -opt/lampp/lib/python2.4/idlelib/IOBinding.py -opt/lampp/lib/python2.4/idlelib/IOBinding.pyc -opt/lampp/lib/python2.4/idlelib/IOBinding.pyo -opt/lampp/lib/python2.4/idlelib/Icons -opt/lampp/lib/python2.4/idlelib/Icons/folder.gif -opt/lampp/lib/python2.4/idlelib/Icons/idle.icns -opt/lampp/lib/python2.4/idlelib/Icons/minusnode.gif -opt/lampp/lib/python2.4/idlelib/Icons/openfolder.gif -opt/lampp/lib/python2.4/idlelib/Icons/plusnode.gif -opt/lampp/lib/python2.4/idlelib/Icons/python.gif -opt/lampp/lib/python2.4/idlelib/Icons/tk.gif -opt/lampp/lib/python2.4/idlelib/IdleHistory.py -opt/lampp/lib/python2.4/idlelib/IdleHistory.pyc -opt/lampp/lib/python2.4/idlelib/IdleHistory.pyo -opt/lampp/lib/python2.4/idlelib/MultiStatusBar.py -opt/lampp/lib/python2.4/idlelib/MultiStatusBar.pyc -opt/lampp/lib/python2.4/idlelib/MultiStatusBar.pyo -opt/lampp/lib/python2.4/idlelib/NEWS.txt -opt/lampp/lib/python2.4/idlelib/ObjectBrowser.py -opt/lampp/lib/python2.4/idlelib/ObjectBrowser.pyc -opt/lampp/lib/python2.4/idlelib/ObjectBrowser.pyo -opt/lampp/lib/python2.4/idlelib/OutputWindow.py -opt/lampp/lib/python2.4/idlelib/OutputWindow.pyc -opt/lampp/lib/python2.4/idlelib/OutputWindow.pyo -opt/lampp/lib/python2.4/idlelib/ParenMatch.py -opt/lampp/lib/python2.4/idlelib/ParenMatch.pyc -opt/lampp/lib/python2.4/idlelib/ParenMatch.pyo -opt/lampp/lib/python2.4/idlelib/PathBrowser.py -opt/lampp/lib/python2.4/idlelib/PathBrowser.pyc -opt/lampp/lib/python2.4/idlelib/PathBrowser.pyo -opt/lampp/lib/python2.4/idlelib/Percolator.py -opt/lampp/lib/python2.4/idlelib/Percolator.pyc -opt/lampp/lib/python2.4/idlelib/Percolator.pyo -opt/lampp/lib/python2.4/idlelib/PyParse.py -opt/lampp/lib/python2.4/idlelib/PyParse.pyc -opt/lampp/lib/python2.4/idlelib/PyParse.pyo -opt/lampp/lib/python2.4/idlelib/PyShell.py -opt/lampp/lib/python2.4/idlelib/PyShell.pyc -opt/lampp/lib/python2.4/idlelib/PyShell.pyo -opt/lampp/lib/python2.4/idlelib/README.txt -opt/lampp/lib/python2.4/idlelib/RemoteDebugger.py -opt/lampp/lib/python2.4/idlelib/RemoteDebugger.pyc -opt/lampp/lib/python2.4/idlelib/RemoteDebugger.pyo -opt/lampp/lib/python2.4/idlelib/RemoteObjectBrowser.py -opt/lampp/lib/python2.4/idlelib/RemoteObjectBrowser.pyc -opt/lampp/lib/python2.4/idlelib/RemoteObjectBrowser.pyo -opt/lampp/lib/python2.4/idlelib/ReplaceDialog.py -opt/lampp/lib/python2.4/idlelib/ReplaceDialog.pyc -opt/lampp/lib/python2.4/idlelib/ReplaceDialog.pyo -opt/lampp/lib/python2.4/idlelib/ScriptBinding.py -opt/lampp/lib/python2.4/idlelib/ScriptBinding.pyc -opt/lampp/lib/python2.4/idlelib/ScriptBinding.pyo -opt/lampp/lib/python2.4/idlelib/ScrolledList.py -opt/lampp/lib/python2.4/idlelib/ScrolledList.pyc -opt/lampp/lib/python2.4/idlelib/ScrolledList.pyo -opt/lampp/lib/python2.4/idlelib/SearchDialog.py -opt/lampp/lib/python2.4/idlelib/SearchDialog.pyc -opt/lampp/lib/python2.4/idlelib/SearchDialog.pyo -opt/lampp/lib/python2.4/idlelib/SearchDialogBase.py -opt/lampp/lib/python2.4/idlelib/SearchDialogBase.pyc -opt/lampp/lib/python2.4/idlelib/SearchDialogBase.pyo -opt/lampp/lib/python2.4/idlelib/SearchEngine.py -opt/lampp/lib/python2.4/idlelib/SearchEngine.pyc -opt/lampp/lib/python2.4/idlelib/SearchEngine.pyo -opt/lampp/lib/python2.4/idlelib/StackViewer.py -opt/lampp/lib/python2.4/idlelib/StackViewer.pyc -opt/lampp/lib/python2.4/idlelib/StackViewer.pyo -opt/lampp/lib/python2.4/idlelib/TODO.txt -opt/lampp/lib/python2.4/idlelib/ToolTip.py -opt/lampp/lib/python2.4/idlelib/ToolTip.pyc -opt/lampp/lib/python2.4/idlelib/ToolTip.pyo -opt/lampp/lib/python2.4/idlelib/TreeWidget.py -opt/lampp/lib/python2.4/idlelib/TreeWidget.pyc -opt/lampp/lib/python2.4/idlelib/TreeWidget.pyo -opt/lampp/lib/python2.4/idlelib/UndoDelegator.py -opt/lampp/lib/python2.4/idlelib/UndoDelegator.pyc -opt/lampp/lib/python2.4/idlelib/UndoDelegator.pyo -opt/lampp/lib/python2.4/idlelib/WidgetRedirector.py -opt/lampp/lib/python2.4/idlelib/WidgetRedirector.pyc -opt/lampp/lib/python2.4/idlelib/WidgetRedirector.pyo -opt/lampp/lib/python2.4/idlelib/WindowList.py -opt/lampp/lib/python2.4/idlelib/WindowList.pyc -opt/lampp/lib/python2.4/idlelib/WindowList.pyo -opt/lampp/lib/python2.4/idlelib/ZoomHeight.py -opt/lampp/lib/python2.4/idlelib/ZoomHeight.pyc -opt/lampp/lib/python2.4/idlelib/ZoomHeight.pyo -opt/lampp/lib/python2.4/idlelib/__init__.py -opt/lampp/lib/python2.4/idlelib/__init__.pyc -opt/lampp/lib/python2.4/idlelib/__init__.pyo -opt/lampp/lib/python2.4/idlelib/aboutDialog.py -opt/lampp/lib/python2.4/idlelib/aboutDialog.pyc -opt/lampp/lib/python2.4/idlelib/aboutDialog.pyo -opt/lampp/lib/python2.4/idlelib/buildapp.py -opt/lampp/lib/python2.4/idlelib/buildapp.pyc -opt/lampp/lib/python2.4/idlelib/buildapp.pyo -opt/lampp/lib/python2.4/idlelib/config-extensions.def -opt/lampp/lib/python2.4/idlelib/config-highlight.def -opt/lampp/lib/python2.4/idlelib/config-keys.def -opt/lampp/lib/python2.4/idlelib/config-main.def -opt/lampp/lib/python2.4/idlelib/configDialog.py -opt/lampp/lib/python2.4/idlelib/configDialog.pyc -opt/lampp/lib/python2.4/idlelib/configDialog.pyo -opt/lampp/lib/python2.4/idlelib/configHandler.py -opt/lampp/lib/python2.4/idlelib/configHandler.pyc -opt/lampp/lib/python2.4/idlelib/configHandler.pyo -opt/lampp/lib/python2.4/idlelib/configHelpSourceEdit.py -opt/lampp/lib/python2.4/idlelib/configHelpSourceEdit.pyc -opt/lampp/lib/python2.4/idlelib/configHelpSourceEdit.pyo -opt/lampp/lib/python2.4/idlelib/configSectionNameDialog.py -opt/lampp/lib/python2.4/idlelib/configSectionNameDialog.pyc -opt/lampp/lib/python2.4/idlelib/configSectionNameDialog.pyo -opt/lampp/lib/python2.4/idlelib/dynOptionMenuWidget.py -opt/lampp/lib/python2.4/idlelib/dynOptionMenuWidget.pyc -opt/lampp/lib/python2.4/idlelib/dynOptionMenuWidget.pyo -opt/lampp/lib/python2.4/idlelib/extend.txt -opt/lampp/lib/python2.4/idlelib/help.txt -opt/lampp/lib/python2.4/idlelib/idle.bat -opt/lampp/lib/python2.4/idlelib/idle.py -opt/lampp/lib/python2.4/idlelib/idle.pyc -opt/lampp/lib/python2.4/idlelib/idle.pyo -opt/lampp/lib/python2.4/idlelib/idle.pyw -opt/lampp/lib/python2.4/idlelib/idlever.py -opt/lampp/lib/python2.4/idlelib/idlever.pyc -opt/lampp/lib/python2.4/idlelib/idlever.pyo -opt/lampp/lib/python2.4/idlelib/keybindingDialog.py -opt/lampp/lib/python2.4/idlelib/keybindingDialog.pyc -opt/lampp/lib/python2.4/idlelib/keybindingDialog.pyo -opt/lampp/lib/python2.4/idlelib/rpc.py -opt/lampp/lib/python2.4/idlelib/rpc.pyc -opt/lampp/lib/python2.4/idlelib/rpc.pyo -opt/lampp/lib/python2.4/idlelib/run.py -opt/lampp/lib/python2.4/idlelib/run.pyc -opt/lampp/lib/python2.4/idlelib/run.pyo -opt/lampp/lib/python2.4/idlelib/tabpage.py -opt/lampp/lib/python2.4/idlelib/tabpage.pyc -opt/lampp/lib/python2.4/idlelib/tabpage.pyo -opt/lampp/lib/python2.4/idlelib/testcode.py -opt/lampp/lib/python2.4/idlelib/testcode.pyc -opt/lampp/lib/python2.4/idlelib/testcode.pyo -opt/lampp/lib/python2.4/idlelib/textView.py -opt/lampp/lib/python2.4/idlelib/textView.pyc -opt/lampp/lib/python2.4/idlelib/textView.pyo -opt/lampp/lib/python2.4/ihooks.py -opt/lampp/lib/python2.4/ihooks.pyc -opt/lampp/lib/python2.4/ihooks.pyo -opt/lampp/lib/python2.4/imaplib.py -opt/lampp/lib/python2.4/imaplib.pyc -opt/lampp/lib/python2.4/imaplib.pyo -opt/lampp/lib/python2.4/imghdr.py -opt/lampp/lib/python2.4/imghdr.pyc -opt/lampp/lib/python2.4/imghdr.pyo -opt/lampp/lib/python2.4/imputil.py -opt/lampp/lib/python2.4/imputil.pyc -opt/lampp/lib/python2.4/imputil.pyo -opt/lampp/lib/python2.4/inspect.py -opt/lampp/lib/python2.4/inspect.pyc -opt/lampp/lib/python2.4/inspect.pyo -opt/lampp/lib/python2.4/keyword.py -opt/lampp/lib/python2.4/keyword.pyc -opt/lampp/lib/python2.4/keyword.pyo -opt/lampp/lib/python2.4/lib-dynload -opt/lampp/lib/python2.4/lib-dynload/_bisect.so -opt/lampp/lib/python2.4/lib-dynload/_codecs_cn.so -opt/lampp/lib/python2.4/lib-dynload/_codecs_hk.so -opt/lampp/lib/python2.4/lib-dynload/_codecs_iso2022.so -opt/lampp/lib/python2.4/lib-dynload/_codecs_jp.so -opt/lampp/lib/python2.4/lib-dynload/_codecs_kr.so -opt/lampp/lib/python2.4/lib-dynload/_codecs_tw.so -opt/lampp/lib/python2.4/lib-dynload/_csv.so -opt/lampp/lib/python2.4/lib-dynload/_curses.so -opt/lampp/lib/python2.4/lib-dynload/_curses_panel.so -opt/lampp/lib/python2.4/lib-dynload/_heapq.so -opt/lampp/lib/python2.4/lib-dynload/_hotshot.so -opt/lampp/lib/python2.4/lib-dynload/_locale_failed.so -opt/lampp/lib/python2.4/lib-dynload/_multibytecodec.so -opt/lampp/lib/python2.4/lib-dynload/_random.so -opt/lampp/lib/python2.4/lib-dynload/_socket.so -opt/lampp/lib/python2.4/lib-dynload/_ssl_failed.so -opt/lampp/lib/python2.4/lib-dynload/_testcapi.so -opt/lampp/lib/python2.4/lib-dynload/_tkinter.so -opt/lampp/lib/python2.4/lib-dynload/_weakref.so -opt/lampp/lib/python2.4/lib-dynload/array.so -opt/lampp/lib/python2.4/lib-dynload/audioop.so -opt/lampp/lib/python2.4/lib-dynload/binascii.so -opt/lampp/lib/python2.4/lib-dynload/bz2.so -opt/lampp/lib/python2.4/lib-dynload/cPickle.so -opt/lampp/lib/python2.4/lib-dynload/cStringIO.so -opt/lampp/lib/python2.4/lib-dynload/cmath.so -opt/lampp/lib/python2.4/lib-dynload/collections.so -opt/lampp/lib/python2.4/lib-dynload/crypt.so -opt/lampp/lib/python2.4/lib-dynload/datetime.so -opt/lampp/lib/python2.4/lib-dynload/dl.so -opt/lampp/lib/python2.4/lib-dynload/fcntl.so -opt/lampp/lib/python2.4/lib-dynload/gdbm.so -opt/lampp/lib/python2.4/lib-dynload/grp.so -opt/lampp/lib/python2.4/lib-dynload/imageop.so -opt/lampp/lib/python2.4/lib-dynload/itertools.so -opt/lampp/lib/python2.4/lib-dynload/linuxaudiodev.so -opt/lampp/lib/python2.4/lib-dynload/math.so -opt/lampp/lib/python2.4/lib-dynload/md5.so -opt/lampp/lib/python2.4/lib-dynload/mmap.so -opt/lampp/lib/python2.4/lib-dynload/nis.so -opt/lampp/lib/python2.4/lib-dynload/operator.so -opt/lampp/lib/python2.4/lib-dynload/ossaudiodev.so -opt/lampp/lib/python2.4/lib-dynload/parser.so -opt/lampp/lib/python2.4/lib-dynload/pwd.so -opt/lampp/lib/python2.4/lib-dynload/pyexpat.so -opt/lampp/lib/python2.4/lib-dynload/regex.so -opt/lampp/lib/python2.4/lib-dynload/resource.so -opt/lampp/lib/python2.4/lib-dynload/rgbimg.so -opt/lampp/lib/python2.4/lib-dynload/select.so -opt/lampp/lib/python2.4/lib-dynload/sha.so -opt/lampp/lib/python2.4/lib-dynload/strop.so -opt/lampp/lib/python2.4/lib-dynload/struct.so -opt/lampp/lib/python2.4/lib-dynload/syslog.so -opt/lampp/lib/python2.4/lib-dynload/termios.so -opt/lampp/lib/python2.4/lib-dynload/time.so -opt/lampp/lib/python2.4/lib-dynload/timing.so -opt/lampp/lib/python2.4/lib-dynload/unicodedata.so -opt/lampp/lib/python2.4/lib-dynload/zlib.so -opt/lampp/lib/python2.4/lib-old -opt/lampp/lib/python2.4/lib-old/Para.py -opt/lampp/lib/python2.4/lib-old/Para.pyc -opt/lampp/lib/python2.4/lib-old/Para.pyo -opt/lampp/lib/python2.4/lib-old/addpack.py -opt/lampp/lib/python2.4/lib-old/addpack.pyc -opt/lampp/lib/python2.4/lib-old/addpack.pyo -opt/lampp/lib/python2.4/lib-old/cmp.py -opt/lampp/lib/python2.4/lib-old/cmp.pyc -opt/lampp/lib/python2.4/lib-old/cmp.pyo -opt/lampp/lib/python2.4/lib-old/cmpcache.py -opt/lampp/lib/python2.4/lib-old/cmpcache.pyc -opt/lampp/lib/python2.4/lib-old/cmpcache.pyo -opt/lampp/lib/python2.4/lib-old/codehack.py -opt/lampp/lib/python2.4/lib-old/codehack.pyc -opt/lampp/lib/python2.4/lib-old/codehack.pyo -opt/lampp/lib/python2.4/lib-old/dircmp.py -opt/lampp/lib/python2.4/lib-old/dircmp.pyc -opt/lampp/lib/python2.4/lib-old/dircmp.pyo -opt/lampp/lib/python2.4/lib-old/dump.py -opt/lampp/lib/python2.4/lib-old/dump.pyc -opt/lampp/lib/python2.4/lib-old/dump.pyo -opt/lampp/lib/python2.4/lib-old/find.py -opt/lampp/lib/python2.4/lib-old/find.pyc -opt/lampp/lib/python2.4/lib-old/find.pyo -opt/lampp/lib/python2.4/lib-old/fmt.py -opt/lampp/lib/python2.4/lib-old/fmt.pyc -opt/lampp/lib/python2.4/lib-old/fmt.pyo -opt/lampp/lib/python2.4/lib-old/grep.py -opt/lampp/lib/python2.4/lib-old/grep.pyc -opt/lampp/lib/python2.4/lib-old/grep.pyo -opt/lampp/lib/python2.4/lib-old/lockfile.py -opt/lampp/lib/python2.4/lib-old/lockfile.pyc -opt/lampp/lib/python2.4/lib-old/lockfile.pyo -opt/lampp/lib/python2.4/lib-old/newdir.py -opt/lampp/lib/python2.4/lib-old/newdir.pyc -opt/lampp/lib/python2.4/lib-old/newdir.pyo -opt/lampp/lib/python2.4/lib-old/ni.py -opt/lampp/lib/python2.4/lib-old/ni.pyc -opt/lampp/lib/python2.4/lib-old/ni.pyo -opt/lampp/lib/python2.4/lib-old/packmail.py -opt/lampp/lib/python2.4/lib-old/packmail.pyc -opt/lampp/lib/python2.4/lib-old/packmail.pyo -opt/lampp/lib/python2.4/lib-old/poly.py -opt/lampp/lib/python2.4/lib-old/poly.pyc -opt/lampp/lib/python2.4/lib-old/poly.pyo -opt/lampp/lib/python2.4/lib-old/rand.py -opt/lampp/lib/python2.4/lib-old/rand.pyc -opt/lampp/lib/python2.4/lib-old/rand.pyo -opt/lampp/lib/python2.4/lib-old/tb.py -opt/lampp/lib/python2.4/lib-old/tb.pyc -opt/lampp/lib/python2.4/lib-old/tb.pyo -opt/lampp/lib/python2.4/lib-old/util.py -opt/lampp/lib/python2.4/lib-old/util.pyc -opt/lampp/lib/python2.4/lib-old/util.pyo -opt/lampp/lib/python2.4/lib-old/whatsound.py -opt/lampp/lib/python2.4/lib-old/whatsound.pyc -opt/lampp/lib/python2.4/lib-old/whatsound.pyo -opt/lampp/lib/python2.4/lib-old/zmod.py -opt/lampp/lib/python2.4/lib-old/zmod.pyc -opt/lampp/lib/python2.4/lib-old/zmod.pyo -opt/lampp/lib/python2.4/lib-tk -opt/lampp/lib/python2.4/lib-tk/Canvas.py -opt/lampp/lib/python2.4/lib-tk/Canvas.pyc -opt/lampp/lib/python2.4/lib-tk/Canvas.pyo -opt/lampp/lib/python2.4/lib-tk/Dialog.py -opt/lampp/lib/python2.4/lib-tk/Dialog.pyc -opt/lampp/lib/python2.4/lib-tk/Dialog.pyo -opt/lampp/lib/python2.4/lib-tk/FileDialog.py -opt/lampp/lib/python2.4/lib-tk/FileDialog.pyc -opt/lampp/lib/python2.4/lib-tk/FileDialog.pyo -opt/lampp/lib/python2.4/lib-tk/FixTk.py -opt/lampp/lib/python2.4/lib-tk/FixTk.pyc -opt/lampp/lib/python2.4/lib-tk/FixTk.pyo -opt/lampp/lib/python2.4/lib-tk/ScrolledText.py -opt/lampp/lib/python2.4/lib-tk/ScrolledText.pyc -opt/lampp/lib/python2.4/lib-tk/ScrolledText.pyo -opt/lampp/lib/python2.4/lib-tk/SimpleDialog.py -opt/lampp/lib/python2.4/lib-tk/SimpleDialog.pyc -opt/lampp/lib/python2.4/lib-tk/SimpleDialog.pyo -opt/lampp/lib/python2.4/lib-tk/Tix.py -opt/lampp/lib/python2.4/lib-tk/Tix.pyc -opt/lampp/lib/python2.4/lib-tk/Tix.pyo -opt/lampp/lib/python2.4/lib-tk/Tkconstants.py -opt/lampp/lib/python2.4/lib-tk/Tkconstants.pyc -opt/lampp/lib/python2.4/lib-tk/Tkconstants.pyo -opt/lampp/lib/python2.4/lib-tk/Tkdnd.py -opt/lampp/lib/python2.4/lib-tk/Tkdnd.pyc -opt/lampp/lib/python2.4/lib-tk/Tkdnd.pyo -opt/lampp/lib/python2.4/lib-tk/Tkinter.py -opt/lampp/lib/python2.4/lib-tk/Tkinter.pyc -opt/lampp/lib/python2.4/lib-tk/Tkinter.pyo -opt/lampp/lib/python2.4/lib-tk/tkColorChooser.py -opt/lampp/lib/python2.4/lib-tk/tkColorChooser.pyc -opt/lampp/lib/python2.4/lib-tk/tkColorChooser.pyo -opt/lampp/lib/python2.4/lib-tk/tkCommonDialog.py -opt/lampp/lib/python2.4/lib-tk/tkCommonDialog.pyc -opt/lampp/lib/python2.4/lib-tk/tkCommonDialog.pyo -opt/lampp/lib/python2.4/lib-tk/tkFileDialog.py -opt/lampp/lib/python2.4/lib-tk/tkFileDialog.pyc -opt/lampp/lib/python2.4/lib-tk/tkFileDialog.pyo -opt/lampp/lib/python2.4/lib-tk/tkFont.py -opt/lampp/lib/python2.4/lib-tk/tkFont.pyc -opt/lampp/lib/python2.4/lib-tk/tkFont.pyo -opt/lampp/lib/python2.4/lib-tk/tkMessageBox.py -opt/lampp/lib/python2.4/lib-tk/tkMessageBox.pyc -opt/lampp/lib/python2.4/lib-tk/tkMessageBox.pyo -opt/lampp/lib/python2.4/lib-tk/tkSimpleDialog.py -opt/lampp/lib/python2.4/lib-tk/tkSimpleDialog.pyc -opt/lampp/lib/python2.4/lib-tk/tkSimpleDialog.pyo -opt/lampp/lib/python2.4/lib-tk/turtle.py -opt/lampp/lib/python2.4/lib-tk/turtle.pyc -opt/lampp/lib/python2.4/lib-tk/turtle.pyo -opt/lampp/lib/python2.4/linecache.py -opt/lampp/lib/python2.4/linecache.pyc -opt/lampp/lib/python2.4/linecache.pyo -opt/lampp/lib/python2.4/locale.py -opt/lampp/lib/python2.4/locale.pyc -opt/lampp/lib/python2.4/locale.pyo -opt/lampp/lib/python2.4/logging -opt/lampp/lib/python2.4/logging/__init__.py -opt/lampp/lib/python2.4/logging/__init__.pyc -opt/lampp/lib/python2.4/logging/__init__.pyo -opt/lampp/lib/python2.4/logging/config.py -opt/lampp/lib/python2.4/logging/config.pyc -opt/lampp/lib/python2.4/logging/config.pyo -opt/lampp/lib/python2.4/logging/handlers.py -opt/lampp/lib/python2.4/logging/handlers.pyc -opt/lampp/lib/python2.4/logging/handlers.pyo -opt/lampp/lib/python2.4/macpath.py -opt/lampp/lib/python2.4/macpath.pyc -opt/lampp/lib/python2.4/macpath.pyo -opt/lampp/lib/python2.4/macurl2path.py -opt/lampp/lib/python2.4/macurl2path.pyc -opt/lampp/lib/python2.4/macurl2path.pyo -opt/lampp/lib/python2.4/mailbox.py -opt/lampp/lib/python2.4/mailbox.pyc -opt/lampp/lib/python2.4/mailbox.pyo -opt/lampp/lib/python2.4/mailcap.py -opt/lampp/lib/python2.4/mailcap.pyc -opt/lampp/lib/python2.4/mailcap.pyo -opt/lampp/lib/python2.4/markupbase.py -opt/lampp/lib/python2.4/markupbase.pyc -opt/lampp/lib/python2.4/markupbase.pyo -opt/lampp/lib/python2.4/mhlib.py -opt/lampp/lib/python2.4/mhlib.pyc -opt/lampp/lib/python2.4/mhlib.pyo -opt/lampp/lib/python2.4/mimetools.py -opt/lampp/lib/python2.4/mimetools.pyc -opt/lampp/lib/python2.4/mimetools.pyo -opt/lampp/lib/python2.4/mimetypes.py -opt/lampp/lib/python2.4/mimetypes.pyc -opt/lampp/lib/python2.4/mimetypes.pyo -opt/lampp/lib/python2.4/mimify.py -opt/lampp/lib/python2.4/mimify.pyc -opt/lampp/lib/python2.4/mimify.pyo -opt/lampp/lib/python2.4/modulefinder.py -opt/lampp/lib/python2.4/modulefinder.pyc -opt/lampp/lib/python2.4/modulefinder.pyo -opt/lampp/lib/python2.4/multifile.py -opt/lampp/lib/python2.4/multifile.pyc -opt/lampp/lib/python2.4/multifile.pyo -opt/lampp/lib/python2.4/mutex.py -opt/lampp/lib/python2.4/mutex.pyc -opt/lampp/lib/python2.4/mutex.pyo -opt/lampp/lib/python2.4/netrc.py -opt/lampp/lib/python2.4/netrc.pyc -opt/lampp/lib/python2.4/netrc.pyo -opt/lampp/lib/python2.4/new.py -opt/lampp/lib/python2.4/new.pyc -opt/lampp/lib/python2.4/new.pyo -opt/lampp/lib/python2.4/nntplib.py -opt/lampp/lib/python2.4/nntplib.pyc -opt/lampp/lib/python2.4/nntplib.pyo -opt/lampp/lib/python2.4/ntpath.py -opt/lampp/lib/python2.4/ntpath.pyc -opt/lampp/lib/python2.4/ntpath.pyo -opt/lampp/lib/python2.4/nturl2path.py -opt/lampp/lib/python2.4/nturl2path.pyc -opt/lampp/lib/python2.4/nturl2path.pyo -opt/lampp/lib/python2.4/opcode.py -opt/lampp/lib/python2.4/opcode.pyc -opt/lampp/lib/python2.4/opcode.pyo -opt/lampp/lib/python2.4/optparse.py -opt/lampp/lib/python2.4/optparse.pyc -opt/lampp/lib/python2.4/optparse.pyo -opt/lampp/lib/python2.4/os.py -opt/lampp/lib/python2.4/os.pyc -opt/lampp/lib/python2.4/os.pyo -opt/lampp/lib/python2.4/os2emxpath.py -opt/lampp/lib/python2.4/os2emxpath.pyc -opt/lampp/lib/python2.4/os2emxpath.pyo -opt/lampp/lib/python2.4/pdb.doc -opt/lampp/lib/python2.4/pdb.py -opt/lampp/lib/python2.4/pdb.pyc -opt/lampp/lib/python2.4/pdb.pyo -opt/lampp/lib/python2.4/pickle.py -opt/lampp/lib/python2.4/pickle.pyc -opt/lampp/lib/python2.4/pickle.pyo -opt/lampp/lib/python2.4/pickletools.py -opt/lampp/lib/python2.4/pickletools.pyc -opt/lampp/lib/python2.4/pickletools.pyo -opt/lampp/lib/python2.4/pipes.py -opt/lampp/lib/python2.4/pipes.pyc -opt/lampp/lib/python2.4/pipes.pyo -opt/lampp/lib/python2.4/pkgutil.py -opt/lampp/lib/python2.4/pkgutil.pyc -opt/lampp/lib/python2.4/pkgutil.pyo -opt/lampp/lib/python2.4/plat-linux2 -opt/lampp/lib/python2.4/plat-linux2/CDROM.py -opt/lampp/lib/python2.4/plat-linux2/CDROM.pyc -opt/lampp/lib/python2.4/plat-linux2/CDROM.pyo -opt/lampp/lib/python2.4/plat-linux2/DLFCN.py -opt/lampp/lib/python2.4/plat-linux2/DLFCN.pyc -opt/lampp/lib/python2.4/plat-linux2/DLFCN.pyo -opt/lampp/lib/python2.4/plat-linux2/IN.py -opt/lampp/lib/python2.4/plat-linux2/IN.pyc -opt/lampp/lib/python2.4/plat-linux2/IN.pyo -opt/lampp/lib/python2.4/plat-linux2/TYPES.py -opt/lampp/lib/python2.4/plat-linux2/TYPES.pyc -opt/lampp/lib/python2.4/plat-linux2/TYPES.pyo -opt/lampp/lib/python2.4/plat-linux2/regen -opt/lampp/lib/python2.4/platform.py -opt/lampp/lib/python2.4/platform.pyc -opt/lampp/lib/python2.4/platform.pyo -opt/lampp/lib/python2.4/popen2.py -opt/lampp/lib/python2.4/popen2.pyc -opt/lampp/lib/python2.4/popen2.pyo -opt/lampp/lib/python2.4/poplib.py -opt/lampp/lib/python2.4/poplib.pyc -opt/lampp/lib/python2.4/poplib.pyo -opt/lampp/lib/python2.4/posixfile.py -opt/lampp/lib/python2.4/posixfile.pyc -opt/lampp/lib/python2.4/posixfile.pyo -opt/lampp/lib/python2.4/posixpath.py -opt/lampp/lib/python2.4/posixpath.pyc -opt/lampp/lib/python2.4/posixpath.pyo -opt/lampp/lib/python2.4/pprint.py -opt/lampp/lib/python2.4/pprint.pyc -opt/lampp/lib/python2.4/pprint.pyo -opt/lampp/lib/python2.4/profile.doc -opt/lampp/lib/python2.4/profile.py -opt/lampp/lib/python2.4/profile.pyc -opt/lampp/lib/python2.4/profile.pyo -opt/lampp/lib/python2.4/pstats.py -opt/lampp/lib/python2.4/pstats.pyc -opt/lampp/lib/python2.4/pstats.pyo -opt/lampp/lib/python2.4/pty.py -opt/lampp/lib/python2.4/pty.pyc -opt/lampp/lib/python2.4/pty.pyo -opt/lampp/lib/python2.4/py_compile.py -opt/lampp/lib/python2.4/py_compile.pyc -opt/lampp/lib/python2.4/py_compile.pyo -opt/lampp/lib/python2.4/pyclbr.py -opt/lampp/lib/python2.4/pyclbr.pyc -opt/lampp/lib/python2.4/pyclbr.pyo -opt/lampp/lib/python2.4/pydoc.py -opt/lampp/lib/python2.4/pydoc.pyc -opt/lampp/lib/python2.4/pydoc.pyo -opt/lampp/lib/python2.4/quopri.py -opt/lampp/lib/python2.4/quopri.pyc -opt/lampp/lib/python2.4/quopri.pyo -opt/lampp/lib/python2.4/random.py -opt/lampp/lib/python2.4/random.pyc -opt/lampp/lib/python2.4/random.pyo -opt/lampp/lib/python2.4/re.py -opt/lampp/lib/python2.4/re.pyc -opt/lampp/lib/python2.4/re.pyo -opt/lampp/lib/python2.4/reconvert.py -opt/lampp/lib/python2.4/reconvert.pyc -opt/lampp/lib/python2.4/reconvert.pyo -opt/lampp/lib/python2.4/regex_syntax.py -opt/lampp/lib/python2.4/regex_syntax.pyc -opt/lampp/lib/python2.4/regex_syntax.pyo -opt/lampp/lib/python2.4/regsub.py -opt/lampp/lib/python2.4/regsub.pyc -opt/lampp/lib/python2.4/regsub.pyo -opt/lampp/lib/python2.4/repr.py -opt/lampp/lib/python2.4/repr.pyc -opt/lampp/lib/python2.4/repr.pyo -opt/lampp/lib/python2.4/rexec.py -opt/lampp/lib/python2.4/rexec.pyc -opt/lampp/lib/python2.4/rexec.pyo -opt/lampp/lib/python2.4/rfc822.py -opt/lampp/lib/python2.4/rfc822.pyc -opt/lampp/lib/python2.4/rfc822.pyo -opt/lampp/lib/python2.4/rlcompleter.py -opt/lampp/lib/python2.4/rlcompleter.pyc -opt/lampp/lib/python2.4/rlcompleter.pyo -opt/lampp/lib/python2.4/robotparser.py -opt/lampp/lib/python2.4/robotparser.pyc -opt/lampp/lib/python2.4/robotparser.pyo -opt/lampp/lib/python2.4/sched.py -opt/lampp/lib/python2.4/sched.pyc -opt/lampp/lib/python2.4/sched.pyo -opt/lampp/lib/python2.4/sets.py -opt/lampp/lib/python2.4/sets.pyc -opt/lampp/lib/python2.4/sets.pyo -opt/lampp/lib/python2.4/sgmllib.py -opt/lampp/lib/python2.4/sgmllib.pyc -opt/lampp/lib/python2.4/sgmllib.pyo -opt/lampp/lib/python2.4/shelve.py -opt/lampp/lib/python2.4/shelve.pyc -opt/lampp/lib/python2.4/shelve.pyo -opt/lampp/lib/python2.4/shlex.py -opt/lampp/lib/python2.4/shlex.pyc -opt/lampp/lib/python2.4/shlex.pyo -opt/lampp/lib/python2.4/shutil.py -opt/lampp/lib/python2.4/shutil.pyc -opt/lampp/lib/python2.4/shutil.pyo -opt/lampp/lib/python2.4/site-packages -opt/lampp/lib/python2.4/site-packages/README -opt/lampp/lib/python2.4/site-packages/mod_python -opt/lampp/lib/python2.4/site-packages/mod_python/Cookie.py -opt/lampp/lib/python2.4/site-packages/mod_python/Cookie.pyc -opt/lampp/lib/python2.4/site-packages/mod_python/Cookie.pyo -opt/lampp/lib/python2.4/site-packages/mod_python/Session.py -opt/lampp/lib/python2.4/site-packages/mod_python/Session.pyc -opt/lampp/lib/python2.4/site-packages/mod_python/Session.pyo -opt/lampp/lib/python2.4/site-packages/mod_python/__init__.py -opt/lampp/lib/python2.4/site-packages/mod_python/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mod_python/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mod_python/_psp.so -opt/lampp/lib/python2.4/site-packages/mod_python/apache.py -opt/lampp/lib/python2.4/site-packages/mod_python/apache.pyc -opt/lampp/lib/python2.4/site-packages/mod_python/apache.pyo -opt/lampp/lib/python2.4/site-packages/mod_python/cgihandler.py -opt/lampp/lib/python2.4/site-packages/mod_python/cgihandler.pyc -opt/lampp/lib/python2.4/site-packages/mod_python/cgihandler.pyo -opt/lampp/lib/python2.4/site-packages/mod_python/psp.py -opt/lampp/lib/python2.4/site-packages/mod_python/psp.pyc -opt/lampp/lib/python2.4/site-packages/mod_python/psp.pyo -opt/lampp/lib/python2.4/site-packages/mod_python/publisher.py -opt/lampp/lib/python2.4/site-packages/mod_python/publisher.pyc -opt/lampp/lib/python2.4/site-packages/mod_python/publisher.pyo -opt/lampp/lib/python2.4/site-packages/mod_python/util.py -opt/lampp/lib/python2.4/site-packages/mod_python/util.pyc -opt/lampp/lib/python2.4/site-packages/mod_python/util.pyo -opt/lampp/lib/python2.4/site-packages/mx -opt/lampp/lib/python2.4/site-packages/mx/BeeBase -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeBase.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeBase.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeBase.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeDict.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeDict.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeDict.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeIndex.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeIndex.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeIndex.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeStorage.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeStorage.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/BeeStorage.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/COPYRIGHT -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/Cache.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/Cache.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/Cache.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/Doc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/Doc/mxBeeBase.html -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/Doc/mxLicense.html -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/ExitFunctions.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/ExitFunctions.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/ExitFunctions.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/FileLock.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/FileLock.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/FileLock.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/LICENSE -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/README -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/btr.h -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/mxBeeBase.h -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/mxBeeBase.so -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/mxh.h -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/test.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/test.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/mxBeeBase/test.pyo -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/showBeeDict.py -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/showBeeDict.pyc -opt/lampp/lib/python2.4/site-packages/mx/BeeBase/showBeeDict.pyo -opt/lampp/lib/python2.4/site-packages/mx/COPYRIGHT -opt/lampp/lib/python2.4/site-packages/mx/DateTime -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ARPA.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ARPA.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ARPA.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/COPYRIGHT -opt/lampp/lib/python2.4/site-packages/mx/DateTime/DateTime.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/DateTime.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/DateTime.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Doc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Doc/mxDateTime-History.html -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Doc/mxDateTime.html -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Doc/mxLicense.html -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/AtomicClock.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/AtomicClock.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/AtomicClock.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/CommandLine.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/CommandLine.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/CommandLine.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/Y2000.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/Y2000.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/Y2000.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/alarm.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/alarm.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/alarm.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/lifespan.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/lifespan.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/lifespan.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/numdate.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/numdate.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Examples/numdate.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Feasts.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Feasts.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Feasts.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ISO.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ISO.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ISO.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/LICENSE -opt/lampp/lib/python2.4/site-packages/mx/DateTime/LazyModule.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/LazyModule.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/LazyModule.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Locale.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Locale.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Locale.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/NIST.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/NIST.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/NIST.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ODMG.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ODMG.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/ODMG.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Parser.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Parser.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Parser.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/README -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Timezone.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Timezone.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/Timezone.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/mxDateTime.h -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/mxDateTime.so -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/mxDateTime_Python.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/mxDateTime_Python.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/mxDateTime_Python.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/mxh.h -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/test.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/test.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/test.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testcmp.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testcmp.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testcmp.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testcomdates.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testcomdates.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testcomdates.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testnow.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testnow.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testnow.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/teststrftime.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/teststrftime.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/teststrftime.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testsubclassing.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testsubclassing.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testsubclassing.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testticks.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testticks.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/mxDateTime/testticks.pyo -opt/lampp/lib/python2.4/site-packages/mx/DateTime/timegm.py -opt/lampp/lib/python2.4/site-packages/mx/DateTime/timegm.pyc -opt/lampp/lib/python2.4/site-packages/mx/DateTime/timegm.pyo -opt/lampp/lib/python2.4/site-packages/mx/Doc -opt/lampp/lib/python2.4/site-packages/mx/Doc/eGenix-mx-Extensions.html -opt/lampp/lib/python2.4/site-packages/mx/Doc/mxBeeBase.html -opt/lampp/lib/python2.4/site-packages/mx/Doc/mxDateTime.html -opt/lampp/lib/python2.4/site-packages/mx/Doc/mxLicense.html -opt/lampp/lib/python2.4/site-packages/mx/Doc/mxProxy.html -opt/lampp/lib/python2.4/site-packages/mx/Doc/mxQueue.html -opt/lampp/lib/python2.4/site-packages/mx/Doc/mxStack.html -opt/lampp/lib/python2.4/site-packages/mx/Doc/mxTextTools.html -opt/lampp/lib/python2.4/site-packages/mx/Doc/mxTools.html -opt/lampp/lib/python2.4/site-packages/mx/LICENSE -opt/lampp/lib/python2.4/site-packages/mx/Log.py -opt/lampp/lib/python2.4/site-packages/mx/Log.pyc -opt/lampp/lib/python2.4/site-packages/mx/Log.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc -opt/lampp/lib/python2.4/site-packages/mx/Misc/Cache.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/Cache.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/Cache.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/CommandLine.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/CommandLine.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/CommandLine.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/ConfigFile.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/ConfigFile.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/ConfigFile.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/Cookie.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/Cookie.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/Cookie.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/FileLock.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/FileLock.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/FileLock.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/LazyModule.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/LazyModule.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/LazyModule.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/Namespace.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/Namespace.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/Namespace.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/OrderedMapping.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/OrderedMapping.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/OrderedMapping.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/PackageTools.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/PackageTools.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/PackageTools.pyo -opt/lampp/lib/python2.4/site-packages/mx/Misc/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Misc/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Misc/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/NewBuiltins.py -opt/lampp/lib/python2.4/site-packages/mx/NewBuiltins.pyc -opt/lampp/lib/python2.4/site-packages/mx/NewBuiltins.pyo -opt/lampp/lib/python2.4/site-packages/mx/Proxy -opt/lampp/lib/python2.4/site-packages/mx/Proxy/COPYRIGHT -opt/lampp/lib/python2.4/site-packages/mx/Proxy/Doc -opt/lampp/lib/python2.4/site-packages/mx/Proxy/Doc/mxLicense.html -opt/lampp/lib/python2.4/site-packages/mx/Proxy/Doc/mxProxy.html -opt/lampp/lib/python2.4/site-packages/mx/Proxy/LICENSE -opt/lampp/lib/python2.4/site-packages/mx/Proxy/Proxy.py -opt/lampp/lib/python2.4/site-packages/mx/Proxy/Proxy.pyc -opt/lampp/lib/python2.4/site-packages/mx/Proxy/Proxy.pyo -opt/lampp/lib/python2.4/site-packages/mx/Proxy/README -opt/lampp/lib/python2.4/site-packages/mx/Proxy/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Proxy/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Proxy/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/mxProxy.h -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/mxProxy.so -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/mxh.h -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/test.py -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/test.pyc -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/test.pyo -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/testvlad.py -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/testvlad.pyc -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/testvlad.pyo -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/weakreftest.py -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/weakreftest.pyc -opt/lampp/lib/python2.4/site-packages/mx/Proxy/mxProxy/weakreftest.pyo -opt/lampp/lib/python2.4/site-packages/mx/Queue -opt/lampp/lib/python2.4/site-packages/mx/Queue/COPYRIGHT -opt/lampp/lib/python2.4/site-packages/mx/Queue/Doc -opt/lampp/lib/python2.4/site-packages/mx/Queue/Doc/mxLicense.html -opt/lampp/lib/python2.4/site-packages/mx/Queue/Doc/mxQueue.html -opt/lampp/lib/python2.4/site-packages/mx/Queue/LICENSE -opt/lampp/lib/python2.4/site-packages/mx/Queue/README -opt/lampp/lib/python2.4/site-packages/mx/Queue/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Queue/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Queue/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/mxQueue.h -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/mxQueue.so -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/mxh.h -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/test.py -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/test.pyc -opt/lampp/lib/python2.4/site-packages/mx/Queue/mxQueue/test.pyo -opt/lampp/lib/python2.4/site-packages/mx/Queue/queuebench.py -opt/lampp/lib/python2.4/site-packages/mx/Queue/queuebench.pyc -opt/lampp/lib/python2.4/site-packages/mx/Queue/queuebench.pyo -opt/lampp/lib/python2.4/site-packages/mx/Stack -opt/lampp/lib/python2.4/site-packages/mx/Stack/UserStack.py -opt/lampp/lib/python2.4/site-packages/mx/Stack/UserStack.pyc -opt/lampp/lib/python2.4/site-packages/mx/Stack/UserStack.pyo -opt/lampp/lib/python2.4/site-packages/mx/Stack/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Stack/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Stack/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Stack/mxStack -opt/lampp/lib/python2.4/site-packages/mx/Stack/mxStack/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Stack/mxStack/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Stack/mxStack/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Stack/mxStack/mxStack.so -opt/lampp/lib/python2.4/site-packages/mx/Stack/mxStack/test.py -opt/lampp/lib/python2.4/site-packages/mx/Stack/mxStack/test.pyc -opt/lampp/lib/python2.4/site-packages/mx/Stack/mxStack/test.pyo -opt/lampp/lib/python2.4/site-packages/mx/Stack/stackbench.py -opt/lampp/lib/python2.4/site-packages/mx/Stack/stackbench.pyc -opt/lampp/lib/python2.4/site-packages/mx/Stack/stackbench.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools -opt/lampp/lib/python2.4/site-packages/mx/TextTools/COPYRIGHT -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/Sets.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/Sets.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/Sets.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/TagTables.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/TagTables.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/TagTables.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Constants/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Doc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Doc/mxLicense.html -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Doc/mxTextTools.html -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/HTML.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/HTML.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/HTML.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Loop.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Loop.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Loop.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Python.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Python.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Python.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/RTF.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/RTF.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/RTF.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/RegExp.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/RegExp.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/RegExp.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Tim.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Tim.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Tim.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Words.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Words.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/Words.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/altRTF.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/altRTF.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/altRTF.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/mysplit.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/mysplit.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/mysplit.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/pytag.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/pytag.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/Examples/pytag.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/LICENSE -opt/lampp/lib/python2.4/site-packages/mx/TextTools/README -opt/lampp/lib/python2.4/site-packages/mx/TextTools/TextTools.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/TextTools.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/TextTools.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/mxTextTools.h -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/mxTextTools.so -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/mxbmse.h -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/mxh.h -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/mxte.h -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/test.py -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/test.pyc -opt/lampp/lib/python2.4/site-packages/mx/TextTools/mxTextTools/test.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools -opt/lampp/lib/python2.4/site-packages/mx/Tools/COPYRIGHT -opt/lampp/lib/python2.4/site-packages/mx/Tools/Doc -opt/lampp/lib/python2.4/site-packages/mx/Tools/Doc/mxLicense.html -opt/lampp/lib/python2.4/site-packages/mx/Tools/Doc/mxTools.html -opt/lampp/lib/python2.4/site-packages/mx/Tools/Examples -opt/lampp/lib/python2.4/site-packages/mx/Tools/Examples/Acquisition.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/Examples/Acquisition.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/Examples/Acquisition.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/Examples/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/Examples/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/Examples/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/LICENSE -opt/lampp/lib/python2.4/site-packages/mx/Tools/NewBuiltins.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/NewBuiltins.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/NewBuiltins.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/README -opt/lampp/lib/python2.4/site-packages/mx/Tools/Tools.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/Tools.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/Tools.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/__init__.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/bench1.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/bench1.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/bench1.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/bench2.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/bench2.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/bench2.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/hack.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/hack.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/hack.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/mxTools.h -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/mxTools.so -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/mxh.h -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/test.py -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/test.pyc -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/test.pyo -opt/lampp/lib/python2.4/site-packages/mx/Tools/mxTools/xmap.so -opt/lampp/lib/python2.4/site-packages/mx/__init__.py -opt/lampp/lib/python2.4/site-packages/mx/__init__.pyc -opt/lampp/lib/python2.4/site-packages/mx/__init__.pyo -opt/lampp/lib/python2.4/site-packages/psyco -opt/lampp/lib/python2.4/site-packages/psyco/__init__.py -opt/lampp/lib/python2.4/site-packages/psyco/__init__.pyc -opt/lampp/lib/python2.4/site-packages/psyco/_psyco.so -opt/lampp/lib/python2.4/site-packages/psyco/classes.py -opt/lampp/lib/python2.4/site-packages/psyco/classes.pyc -opt/lampp/lib/python2.4/site-packages/psyco/core.py -opt/lampp/lib/python2.4/site-packages/psyco/core.pyc -opt/lampp/lib/python2.4/site-packages/psyco/kdictproxy.py -opt/lampp/lib/python2.4/site-packages/psyco/kdictproxy.pyc -opt/lampp/lib/python2.4/site-packages/psyco/logger.py -opt/lampp/lib/python2.4/site-packages/psyco/logger.pyc -opt/lampp/lib/python2.4/site-packages/psyco/profiler.py -opt/lampp/lib/python2.4/site-packages/psyco/profiler.pyc -opt/lampp/lib/python2.4/site-packages/psyco/support.py -opt/lampp/lib/python2.4/site-packages/psyco/support.pyc -opt/lampp/lib/python2.4/site.py -opt/lampp/lib/python2.4/site.pyc -opt/lampp/lib/python2.4/site.pyo -opt/lampp/lib/python2.4/smtpd.py -opt/lampp/lib/python2.4/smtpd.pyc -opt/lampp/lib/python2.4/smtpd.pyo -opt/lampp/lib/python2.4/smtplib.py -opt/lampp/lib/python2.4/smtplib.pyc -opt/lampp/lib/python2.4/smtplib.pyo -opt/lampp/lib/python2.4/sndhdr.py -opt/lampp/lib/python2.4/sndhdr.pyc -opt/lampp/lib/python2.4/sndhdr.pyo -opt/lampp/lib/python2.4/socket.py -opt/lampp/lib/python2.4/socket.pyc -opt/lampp/lib/python2.4/socket.pyo -opt/lampp/lib/python2.4/sre.py -opt/lampp/lib/python2.4/sre.pyc -opt/lampp/lib/python2.4/sre.pyo -opt/lampp/lib/python2.4/sre_compile.py -opt/lampp/lib/python2.4/sre_compile.pyc -opt/lampp/lib/python2.4/sre_compile.pyo -opt/lampp/lib/python2.4/sre_constants.py -opt/lampp/lib/python2.4/sre_constants.pyc -opt/lampp/lib/python2.4/sre_constants.pyo -opt/lampp/lib/python2.4/sre_parse.py -opt/lampp/lib/python2.4/sre_parse.pyc -opt/lampp/lib/python2.4/sre_parse.pyo -opt/lampp/lib/python2.4/stat.py -opt/lampp/lib/python2.4/stat.pyc -opt/lampp/lib/python2.4/stat.pyo -opt/lampp/lib/python2.4/statcache.py -opt/lampp/lib/python2.4/statcache.pyc -opt/lampp/lib/python2.4/statcache.pyo -opt/lampp/lib/python2.4/statvfs.py -opt/lampp/lib/python2.4/statvfs.pyc -opt/lampp/lib/python2.4/statvfs.pyo -opt/lampp/lib/python2.4/string.py -opt/lampp/lib/python2.4/string.pyc -opt/lampp/lib/python2.4/string.pyo -opt/lampp/lib/python2.4/stringold.py -opt/lampp/lib/python2.4/stringold.pyc -opt/lampp/lib/python2.4/stringold.pyo -opt/lampp/lib/python2.4/stringprep.py -opt/lampp/lib/python2.4/stringprep.pyc -opt/lampp/lib/python2.4/stringprep.pyo -opt/lampp/lib/python2.4/subprocess.py -opt/lampp/lib/python2.4/subprocess.pyc -opt/lampp/lib/python2.4/subprocess.pyo -opt/lampp/lib/python2.4/sunau.py -opt/lampp/lib/python2.4/sunau.pyc -opt/lampp/lib/python2.4/sunau.pyo -opt/lampp/lib/python2.4/sunaudio.py -opt/lampp/lib/python2.4/sunaudio.pyc -opt/lampp/lib/python2.4/sunaudio.pyo -opt/lampp/lib/python2.4/symbol.py -opt/lampp/lib/python2.4/symbol.pyc -opt/lampp/lib/python2.4/symbol.pyo -opt/lampp/lib/python2.4/symtable.py -opt/lampp/lib/python2.4/symtable.pyc -opt/lampp/lib/python2.4/symtable.pyo -opt/lampp/lib/python2.4/tabnanny.py -opt/lampp/lib/python2.4/tabnanny.pyc -opt/lampp/lib/python2.4/tabnanny.pyo -opt/lampp/lib/python2.4/tarfile.py -opt/lampp/lib/python2.4/tarfile.pyc -opt/lampp/lib/python2.4/tarfile.pyo -opt/lampp/lib/python2.4/telnetlib.py -opt/lampp/lib/python2.4/telnetlib.pyc -opt/lampp/lib/python2.4/telnetlib.pyo -opt/lampp/lib/python2.4/tempfile.py -opt/lampp/lib/python2.4/tempfile.pyc -opt/lampp/lib/python2.4/tempfile.pyo -opt/lampp/lib/python2.4/test -opt/lampp/lib/python2.4/test/185test.db -opt/lampp/lib/python2.4/test/README -opt/lampp/lib/python2.4/test/__init__.py -opt/lampp/lib/python2.4/test/__init__.pyc -opt/lampp/lib/python2.4/test/__init__.pyo -opt/lampp/lib/python2.4/test/audiotest.au -opt/lampp/lib/python2.4/test/autotest.py -opt/lampp/lib/python2.4/test/autotest.pyc -opt/lampp/lib/python2.4/test/autotest.pyo -opt/lampp/lib/python2.4/test/badsyntax_future3.py -opt/lampp/lib/python2.4/test/badsyntax_future4.py -opt/lampp/lib/python2.4/test/badsyntax_future5.py -opt/lampp/lib/python2.4/test/badsyntax_future6.py -opt/lampp/lib/python2.4/test/badsyntax_future7.py -opt/lampp/lib/python2.4/test/badsyntax_future8.py -opt/lampp/lib/python2.4/test/badsyntax_future9.py -opt/lampp/lib/python2.4/test/badsyntax_nocaret.py -opt/lampp/lib/python2.4/test/cfgparser.1 -opt/lampp/lib/python2.4/test/cjkencodings_test.py -opt/lampp/lib/python2.4/test/cjkencodings_test.pyc -opt/lampp/lib/python2.4/test/cjkencodings_test.pyo -opt/lampp/lib/python2.4/test/decimaltestdata -opt/lampp/lib/python2.4/test/decimaltestdata/abs.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/add.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/base.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/clamp.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/compare.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/decimal128.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/decimal32.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/decimal64.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/divide.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/divideint.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/inexact.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/max.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/min.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/minus.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/multiply.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/normalize.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/plus.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/power.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/quantize.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/randomBound32.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/randoms.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/remainder.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/remainderNear.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/rescale.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/rounding.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/samequantum.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/squareroot.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/subtract.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/testall.decTest -opt/lampp/lib/python2.4/test/decimaltestdata/tointegral.decTest -opt/lampp/lib/python2.4/test/doctest_aliases.py -opt/lampp/lib/python2.4/test/doctest_aliases.pyc -opt/lampp/lib/python2.4/test/doctest_aliases.pyo -opt/lampp/lib/python2.4/test/double_const.py -opt/lampp/lib/python2.4/test/double_const.pyc -opt/lampp/lib/python2.4/test/double_const.pyo -opt/lampp/lib/python2.4/test/greyrgb.uue -opt/lampp/lib/python2.4/test/list_tests.py -opt/lampp/lib/python2.4/test/list_tests.pyc -opt/lampp/lib/python2.4/test/list_tests.pyo -opt/lampp/lib/python2.4/test/mapping_tests.py -opt/lampp/lib/python2.4/test/mapping_tests.pyc -opt/lampp/lib/python2.4/test/mapping_tests.pyo -opt/lampp/lib/python2.4/test/output -opt/lampp/lib/python2.4/test/output/test_MimeWriter -opt/lampp/lib/python2.4/test/output/test_asynchat -opt/lampp/lib/python2.4/test/output/test_augassign -opt/lampp/lib/python2.4/test/output/test_cgi -opt/lampp/lib/python2.4/test/output/test_class -opt/lampp/lib/python2.4/test/output/test_coercion -opt/lampp/lib/python2.4/test/output/test_compare -opt/lampp/lib/python2.4/test/output/test_cookie -opt/lampp/lib/python2.4/test/output/test_exceptions -opt/lampp/lib/python2.4/test/output/test_extcall -opt/lampp/lib/python2.4/test/output/test_frozen -opt/lampp/lib/python2.4/test/output/test_global -opt/lampp/lib/python2.4/test/output/test_grammar -opt/lampp/lib/python2.4/test/output/test_httplib -opt/lampp/lib/python2.4/test/output/test_linuxaudiodev -opt/lampp/lib/python2.4/test/output/test_logging -opt/lampp/lib/python2.4/test/output/test_math -opt/lampp/lib/python2.4/test/output/test_mmap -opt/lampp/lib/python2.4/test/output/test_new -opt/lampp/lib/python2.4/test/output/test_nis -opt/lampp/lib/python2.4/test/output/test_opcodes -opt/lampp/lib/python2.4/test/output/test_openpty -opt/lampp/lib/python2.4/test/output/test_operations -opt/lampp/lib/python2.4/test/output/test_ossaudiodev -opt/lampp/lib/python2.4/test/output/test_pep277 -opt/lampp/lib/python2.4/test/output/test_pkg -opt/lampp/lib/python2.4/test/output/test_poll -opt/lampp/lib/python2.4/test/output/test_popen -opt/lampp/lib/python2.4/test/output/test_popen2 -opt/lampp/lib/python2.4/test/output/test_profile -opt/lampp/lib/python2.4/test/output/test_pty -opt/lampp/lib/python2.4/test/output/test_pyexpat -opt/lampp/lib/python2.4/test/output/test_regex -opt/lampp/lib/python2.4/test/output/test_resource -opt/lampp/lib/python2.4/test/output/test_rgbimg -opt/lampp/lib/python2.4/test/output/test_scope -opt/lampp/lib/python2.4/test/output/test_signal -opt/lampp/lib/python2.4/test/output/test_thread -opt/lampp/lib/python2.4/test/output/test_threadedtempfile -opt/lampp/lib/python2.4/test/output/test_tokenize -opt/lampp/lib/python2.4/test/output/test_types -opt/lampp/lib/python2.4/test/output/test_winreg -opt/lampp/lib/python2.4/test/output/xmltests -opt/lampp/lib/python2.4/test/pickletester.py -opt/lampp/lib/python2.4/test/pickletester.pyc -opt/lampp/lib/python2.4/test/pickletester.pyo -opt/lampp/lib/python2.4/test/pyclbr_input.py -opt/lampp/lib/python2.4/test/pyclbr_input.pyc -opt/lampp/lib/python2.4/test/pyclbr_input.pyo -opt/lampp/lib/python2.4/test/pydocfodder.py -opt/lampp/lib/python2.4/test/pydocfodder.pyc -opt/lampp/lib/python2.4/test/pydocfodder.pyo -opt/lampp/lib/python2.4/test/pystone.py -opt/lampp/lib/python2.4/test/pystone.pyc -opt/lampp/lib/python2.4/test/pystone.pyo -opt/lampp/lib/python2.4/test/re_tests.py -opt/lampp/lib/python2.4/test/re_tests.pyc -opt/lampp/lib/python2.4/test/re_tests.pyo -opt/lampp/lib/python2.4/test/regex_tests.py -opt/lampp/lib/python2.4/test/regex_tests.pyc -opt/lampp/lib/python2.4/test/regex_tests.pyo -opt/lampp/lib/python2.4/test/regrtest.py -opt/lampp/lib/python2.4/test/regrtest.pyc -opt/lampp/lib/python2.4/test/regrtest.pyo -opt/lampp/lib/python2.4/test/reperf.py -opt/lampp/lib/python2.4/test/reperf.pyc -opt/lampp/lib/python2.4/test/reperf.pyo -opt/lampp/lib/python2.4/test/sample_doctest.py -opt/lampp/lib/python2.4/test/sample_doctest.pyc -opt/lampp/lib/python2.4/test/sample_doctest.pyo -opt/lampp/lib/python2.4/test/seq_tests.py -opt/lampp/lib/python2.4/test/seq_tests.pyc -opt/lampp/lib/python2.4/test/seq_tests.pyo -opt/lampp/lib/python2.4/test/sortperf.py -opt/lampp/lib/python2.4/test/sortperf.pyc -opt/lampp/lib/python2.4/test/sortperf.pyo -opt/lampp/lib/python2.4/test/string_tests.py -opt/lampp/lib/python2.4/test/string_tests.pyc -opt/lampp/lib/python2.4/test/string_tests.pyo -opt/lampp/lib/python2.4/test/test.xml -opt/lampp/lib/python2.4/test/test.xml.out -opt/lampp/lib/python2.4/test/test_MimeWriter.py -opt/lampp/lib/python2.4/test/test_MimeWriter.pyc -opt/lampp/lib/python2.4/test/test_MimeWriter.pyo -opt/lampp/lib/python2.4/test/test_StringIO.py -opt/lampp/lib/python2.4/test/test_StringIO.pyc -opt/lampp/lib/python2.4/test/test_StringIO.pyo -opt/lampp/lib/python2.4/test/test___all__.py -opt/lampp/lib/python2.4/test/test___all__.pyc -opt/lampp/lib/python2.4/test/test___all__.pyo -opt/lampp/lib/python2.4/test/test___future__.py -opt/lampp/lib/python2.4/test/test___future__.pyc -opt/lampp/lib/python2.4/test/test___future__.pyo -opt/lampp/lib/python2.4/test/test__locale.py -opt/lampp/lib/python2.4/test/test__locale.pyc -opt/lampp/lib/python2.4/test/test__locale.pyo -opt/lampp/lib/python2.4/test/test_aepack.py -opt/lampp/lib/python2.4/test/test_aepack.pyc -opt/lampp/lib/python2.4/test/test_aepack.pyo -opt/lampp/lib/python2.4/test/test_al.py -opt/lampp/lib/python2.4/test/test_al.pyc -opt/lampp/lib/python2.4/test/test_al.pyo -opt/lampp/lib/python2.4/test/test_anydbm.py -opt/lampp/lib/python2.4/test/test_anydbm.pyc -opt/lampp/lib/python2.4/test/test_anydbm.pyo -opt/lampp/lib/python2.4/test/test_applesingle.py -opt/lampp/lib/python2.4/test/test_applesingle.pyc -opt/lampp/lib/python2.4/test/test_applesingle.pyo -opt/lampp/lib/python2.4/test/test_array.py -opt/lampp/lib/python2.4/test/test_array.pyc -opt/lampp/lib/python2.4/test/test_array.pyo -opt/lampp/lib/python2.4/test/test_asynchat.py -opt/lampp/lib/python2.4/test/test_asynchat.pyc -opt/lampp/lib/python2.4/test/test_asynchat.pyo -opt/lampp/lib/python2.4/test/test_atexit.py -opt/lampp/lib/python2.4/test/test_atexit.pyc -opt/lampp/lib/python2.4/test/test_atexit.pyo -opt/lampp/lib/python2.4/test/test_audioop.py -opt/lampp/lib/python2.4/test/test_audioop.pyc -opt/lampp/lib/python2.4/test/test_audioop.pyo -opt/lampp/lib/python2.4/test/test_augassign.py -opt/lampp/lib/python2.4/test/test_augassign.pyc -opt/lampp/lib/python2.4/test/test_augassign.pyo -opt/lampp/lib/python2.4/test/test_base64.py -opt/lampp/lib/python2.4/test/test_base64.pyc -opt/lampp/lib/python2.4/test/test_base64.pyo -opt/lampp/lib/python2.4/test/test_bastion.py -opt/lampp/lib/python2.4/test/test_bastion.pyc -opt/lampp/lib/python2.4/test/test_bastion.pyo -opt/lampp/lib/python2.4/test/test_binascii.py -opt/lampp/lib/python2.4/test/test_binascii.pyc -opt/lampp/lib/python2.4/test/test_binascii.pyo -opt/lampp/lib/python2.4/test/test_binhex.py -opt/lampp/lib/python2.4/test/test_binhex.pyc -opt/lampp/lib/python2.4/test/test_binhex.pyo -opt/lampp/lib/python2.4/test/test_binop.py -opt/lampp/lib/python2.4/test/test_binop.pyc -opt/lampp/lib/python2.4/test/test_binop.pyo -opt/lampp/lib/python2.4/test/test_bisect.py -opt/lampp/lib/python2.4/test/test_bisect.pyc -opt/lampp/lib/python2.4/test/test_bisect.pyo -opt/lampp/lib/python2.4/test/test_bool.py -opt/lampp/lib/python2.4/test/test_bool.pyc -opt/lampp/lib/python2.4/test/test_bool.pyo -opt/lampp/lib/python2.4/test/test_bsddb.py -opt/lampp/lib/python2.4/test/test_bsddb.pyc -opt/lampp/lib/python2.4/test/test_bsddb.pyo -opt/lampp/lib/python2.4/test/test_bsddb185.py -opt/lampp/lib/python2.4/test/test_bsddb185.pyc -opt/lampp/lib/python2.4/test/test_bsddb185.pyo -opt/lampp/lib/python2.4/test/test_bsddb3.py -opt/lampp/lib/python2.4/test/test_bsddb3.pyc -opt/lampp/lib/python2.4/test/test_bsddb3.pyo -opt/lampp/lib/python2.4/test/test_bufio.py -opt/lampp/lib/python2.4/test/test_bufio.pyc -opt/lampp/lib/python2.4/test/test_bufio.pyo -opt/lampp/lib/python2.4/test/test_builtin.py -opt/lampp/lib/python2.4/test/test_builtin.pyc -opt/lampp/lib/python2.4/test/test_builtin.pyo -opt/lampp/lib/python2.4/test/test_bz2.py -opt/lampp/lib/python2.4/test/test_bz2.pyc -opt/lampp/lib/python2.4/test/test_bz2.pyo -opt/lampp/lib/python2.4/test/test_calendar.py -opt/lampp/lib/python2.4/test/test_calendar.pyc -opt/lampp/lib/python2.4/test/test_calendar.pyo -opt/lampp/lib/python2.4/test/test_call.py -opt/lampp/lib/python2.4/test/test_call.pyc -opt/lampp/lib/python2.4/test/test_call.pyo -opt/lampp/lib/python2.4/test/test_capi.py -opt/lampp/lib/python2.4/test/test_capi.pyc -opt/lampp/lib/python2.4/test/test_capi.pyo -opt/lampp/lib/python2.4/test/test_cd.py -opt/lampp/lib/python2.4/test/test_cd.pyc -opt/lampp/lib/python2.4/test/test_cd.pyo -opt/lampp/lib/python2.4/test/test_cfgparser.py -opt/lampp/lib/python2.4/test/test_cfgparser.pyc -opt/lampp/lib/python2.4/test/test_cfgparser.pyo -opt/lampp/lib/python2.4/test/test_cgi.py -opt/lampp/lib/python2.4/test/test_cgi.pyc -opt/lampp/lib/python2.4/test/test_cgi.pyo -opt/lampp/lib/python2.4/test/test_charmapcodec.py -opt/lampp/lib/python2.4/test/test_charmapcodec.pyc -opt/lampp/lib/python2.4/test/test_charmapcodec.pyo -opt/lampp/lib/python2.4/test/test_cl.py -opt/lampp/lib/python2.4/test/test_cl.pyc -opt/lampp/lib/python2.4/test/test_cl.pyo -opt/lampp/lib/python2.4/test/test_class.py -opt/lampp/lib/python2.4/test/test_class.pyc -opt/lampp/lib/python2.4/test/test_class.pyo -opt/lampp/lib/python2.4/test/test_cmath.py -opt/lampp/lib/python2.4/test/test_cmath.pyc -opt/lampp/lib/python2.4/test/test_cmath.pyo -opt/lampp/lib/python2.4/test/test_codeccallbacks.py -opt/lampp/lib/python2.4/test/test_codeccallbacks.pyc -opt/lampp/lib/python2.4/test/test_codeccallbacks.pyo -opt/lampp/lib/python2.4/test/test_codecencodings_cn.py -opt/lampp/lib/python2.4/test/test_codecencodings_cn.pyc -opt/lampp/lib/python2.4/test/test_codecencodings_cn.pyo -opt/lampp/lib/python2.4/test/test_codecencodings_hk.py -opt/lampp/lib/python2.4/test/test_codecencodings_hk.pyc -opt/lampp/lib/python2.4/test/test_codecencodings_hk.pyo -opt/lampp/lib/python2.4/test/test_codecencodings_jp.py -opt/lampp/lib/python2.4/test/test_codecencodings_jp.pyc -opt/lampp/lib/python2.4/test/test_codecencodings_jp.pyo -opt/lampp/lib/python2.4/test/test_codecencodings_kr.py -opt/lampp/lib/python2.4/test/test_codecencodings_kr.pyc -opt/lampp/lib/python2.4/test/test_codecencodings_kr.pyo -opt/lampp/lib/python2.4/test/test_codecencodings_tw.py -opt/lampp/lib/python2.4/test/test_codecencodings_tw.pyc -opt/lampp/lib/python2.4/test/test_codecencodings_tw.pyo -opt/lampp/lib/python2.4/test/test_codecmaps_cn.py -opt/lampp/lib/python2.4/test/test_codecmaps_cn.pyc -opt/lampp/lib/python2.4/test/test_codecmaps_cn.pyo -opt/lampp/lib/python2.4/test/test_codecmaps_hk.py -opt/lampp/lib/python2.4/test/test_codecmaps_hk.pyc -opt/lampp/lib/python2.4/test/test_codecmaps_hk.pyo -opt/lampp/lib/python2.4/test/test_codecmaps_jp.py -opt/lampp/lib/python2.4/test/test_codecmaps_jp.pyc -opt/lampp/lib/python2.4/test/test_codecmaps_jp.pyo -opt/lampp/lib/python2.4/test/test_codecmaps_kr.py -opt/lampp/lib/python2.4/test/test_codecmaps_kr.pyc -opt/lampp/lib/python2.4/test/test_codecmaps_kr.pyo -opt/lampp/lib/python2.4/test/test_codecmaps_tw.py -opt/lampp/lib/python2.4/test/test_codecmaps_tw.pyc -opt/lampp/lib/python2.4/test/test_codecmaps_tw.pyo -opt/lampp/lib/python2.4/test/test_codecs.py -opt/lampp/lib/python2.4/test/test_codecs.pyc -opt/lampp/lib/python2.4/test/test_codecs.pyo -opt/lampp/lib/python2.4/test/test_codeop.py -opt/lampp/lib/python2.4/test/test_codeop.pyc -opt/lampp/lib/python2.4/test/test_codeop.pyo -opt/lampp/lib/python2.4/test/test_coercion.py -opt/lampp/lib/python2.4/test/test_coercion.pyc -opt/lampp/lib/python2.4/test/test_coercion.pyo -opt/lampp/lib/python2.4/test/test_colorsys.py -opt/lampp/lib/python2.4/test/test_colorsys.pyc -opt/lampp/lib/python2.4/test/test_colorsys.pyo -opt/lampp/lib/python2.4/test/test_commands.py -opt/lampp/lib/python2.4/test/test_commands.pyc -opt/lampp/lib/python2.4/test/test_commands.pyo -opt/lampp/lib/python2.4/test/test_compare.py -opt/lampp/lib/python2.4/test/test_compare.pyc -opt/lampp/lib/python2.4/test/test_compare.pyo -opt/lampp/lib/python2.4/test/test_compile.py -opt/lampp/lib/python2.4/test/test_compile.pyc -opt/lampp/lib/python2.4/test/test_compile.pyo -opt/lampp/lib/python2.4/test/test_compiler.py -opt/lampp/lib/python2.4/test/test_compiler.pyc -opt/lampp/lib/python2.4/test/test_compiler.pyo -opt/lampp/lib/python2.4/test/test_complex.py -opt/lampp/lib/python2.4/test/test_complex.pyc -opt/lampp/lib/python2.4/test/test_complex.pyo -opt/lampp/lib/python2.4/test/test_contains.py -opt/lampp/lib/python2.4/test/test_contains.pyc -opt/lampp/lib/python2.4/test/test_contains.pyo -opt/lampp/lib/python2.4/test/test_cookie.py -opt/lampp/lib/python2.4/test/test_cookie.pyc -opt/lampp/lib/python2.4/test/test_cookie.pyo -opt/lampp/lib/python2.4/test/test_cookielib.py -opt/lampp/lib/python2.4/test/test_cookielib.pyc -opt/lampp/lib/python2.4/test/test_cookielib.pyo -opt/lampp/lib/python2.4/test/test_copy.py -opt/lampp/lib/python2.4/test/test_copy.pyc -opt/lampp/lib/python2.4/test/test_copy.pyo -opt/lampp/lib/python2.4/test/test_copy_reg.py -opt/lampp/lib/python2.4/test/test_copy_reg.pyc -opt/lampp/lib/python2.4/test/test_copy_reg.pyo -opt/lampp/lib/python2.4/test/test_cpickle.py -opt/lampp/lib/python2.4/test/test_cpickle.pyc -opt/lampp/lib/python2.4/test/test_cpickle.pyo -opt/lampp/lib/python2.4/test/test_crypt.py -opt/lampp/lib/python2.4/test/test_crypt.pyc -opt/lampp/lib/python2.4/test/test_crypt.pyo -opt/lampp/lib/python2.4/test/test_csv.py -opt/lampp/lib/python2.4/test/test_csv.pyc -opt/lampp/lib/python2.4/test/test_csv.pyo -opt/lampp/lib/python2.4/test/test_curses.py -opt/lampp/lib/python2.4/test/test_curses.pyc -opt/lampp/lib/python2.4/test/test_curses.pyo -opt/lampp/lib/python2.4/test/test_datetime.py -opt/lampp/lib/python2.4/test/test_datetime.pyc -opt/lampp/lib/python2.4/test/test_datetime.pyo -opt/lampp/lib/python2.4/test/test_dbm.py -opt/lampp/lib/python2.4/test/test_dbm.pyc -opt/lampp/lib/python2.4/test/test_dbm.pyo -opt/lampp/lib/python2.4/test/test_decimal.py -opt/lampp/lib/python2.4/test/test_decimal.pyc -opt/lampp/lib/python2.4/test/test_decimal.pyo -opt/lampp/lib/python2.4/test/test_decorators.py -opt/lampp/lib/python2.4/test/test_decorators.pyc -opt/lampp/lib/python2.4/test/test_decorators.pyo -opt/lampp/lib/python2.4/test/test_deque.py -opt/lampp/lib/python2.4/test/test_deque.pyc -opt/lampp/lib/python2.4/test/test_deque.pyo -opt/lampp/lib/python2.4/test/test_descr.py -opt/lampp/lib/python2.4/test/test_descr.pyc -opt/lampp/lib/python2.4/test/test_descr.pyo -opt/lampp/lib/python2.4/test/test_descrtut.py -opt/lampp/lib/python2.4/test/test_descrtut.pyc -opt/lampp/lib/python2.4/test/test_descrtut.pyo -opt/lampp/lib/python2.4/test/test_dict.py -opt/lampp/lib/python2.4/test/test_dict.pyc -opt/lampp/lib/python2.4/test/test_dict.pyo -opt/lampp/lib/python2.4/test/test_difflib.py -opt/lampp/lib/python2.4/test/test_difflib.pyc -opt/lampp/lib/python2.4/test/test_difflib.pyo -opt/lampp/lib/python2.4/test/test_difflib_expect.html -opt/lampp/lib/python2.4/test/test_dircache.py -opt/lampp/lib/python2.4/test/test_dircache.pyc -opt/lampp/lib/python2.4/test/test_dircache.pyo -opt/lampp/lib/python2.4/test/test_dis.py -opt/lampp/lib/python2.4/test/test_dis.pyc -opt/lampp/lib/python2.4/test/test_dis.pyo -opt/lampp/lib/python2.4/test/test_distutils.py -opt/lampp/lib/python2.4/test/test_distutils.pyc -opt/lampp/lib/python2.4/test/test_distutils.pyo -opt/lampp/lib/python2.4/test/test_dl.py -opt/lampp/lib/python2.4/test/test_dl.pyc -opt/lampp/lib/python2.4/test/test_dl.pyo -opt/lampp/lib/python2.4/test/test_doctest.py -opt/lampp/lib/python2.4/test/test_doctest.pyc -opt/lampp/lib/python2.4/test/test_doctest.pyo -opt/lampp/lib/python2.4/test/test_doctest.txt -opt/lampp/lib/python2.4/test/test_doctest2.py -opt/lampp/lib/python2.4/test/test_doctest2.pyc -opt/lampp/lib/python2.4/test/test_doctest2.pyo -opt/lampp/lib/python2.4/test/test_doctest2.txt -opt/lampp/lib/python2.4/test/test_dumbdbm.py -opt/lampp/lib/python2.4/test/test_dumbdbm.pyc -opt/lampp/lib/python2.4/test/test_dumbdbm.pyo -opt/lampp/lib/python2.4/test/test_dummy_thread.py -opt/lampp/lib/python2.4/test/test_dummy_thread.pyc -opt/lampp/lib/python2.4/test/test_dummy_thread.pyo -opt/lampp/lib/python2.4/test/test_dummy_threading.py -opt/lampp/lib/python2.4/test/test_dummy_threading.pyc -opt/lampp/lib/python2.4/test/test_dummy_threading.pyo -opt/lampp/lib/python2.4/test/test_email.py -opt/lampp/lib/python2.4/test/test_email.pyc -opt/lampp/lib/python2.4/test/test_email.pyo -opt/lampp/lib/python2.4/test/test_email_codecs.py -opt/lampp/lib/python2.4/test/test_email_codecs.pyc -opt/lampp/lib/python2.4/test/test_email_codecs.pyo -opt/lampp/lib/python2.4/test/test_enumerate.py -opt/lampp/lib/python2.4/test/test_enumerate.pyc -opt/lampp/lib/python2.4/test/test_enumerate.pyo -opt/lampp/lib/python2.4/test/test_eof.py -opt/lampp/lib/python2.4/test/test_eof.pyc -opt/lampp/lib/python2.4/test/test_eof.pyo -opt/lampp/lib/python2.4/test/test_errno.py -opt/lampp/lib/python2.4/test/test_errno.pyc -opt/lampp/lib/python2.4/test/test_errno.pyo -opt/lampp/lib/python2.4/test/test_exceptions.py -opt/lampp/lib/python2.4/test/test_exceptions.pyc -opt/lampp/lib/python2.4/test/test_exceptions.pyo -opt/lampp/lib/python2.4/test/test_extcall.py -opt/lampp/lib/python2.4/test/test_extcall.pyc -opt/lampp/lib/python2.4/test/test_extcall.pyo -opt/lampp/lib/python2.4/test/test_fcntl.py -opt/lampp/lib/python2.4/test/test_fcntl.pyc -opt/lampp/lib/python2.4/test/test_fcntl.pyo -opt/lampp/lib/python2.4/test/test_file.py -opt/lampp/lib/python2.4/test/test_file.pyc -opt/lampp/lib/python2.4/test/test_file.pyo -opt/lampp/lib/python2.4/test/test_filecmp.py -opt/lampp/lib/python2.4/test/test_filecmp.pyc -opt/lampp/lib/python2.4/test/test_filecmp.pyo -opt/lampp/lib/python2.4/test/test_fileinput.py -opt/lampp/lib/python2.4/test/test_fileinput.pyc -opt/lampp/lib/python2.4/test/test_fileinput.pyo -opt/lampp/lib/python2.4/test/test_fnmatch.py -opt/lampp/lib/python2.4/test/test_fnmatch.pyc -opt/lampp/lib/python2.4/test/test_fnmatch.pyo -opt/lampp/lib/python2.4/test/test_fork1.py -opt/lampp/lib/python2.4/test/test_fork1.pyc -opt/lampp/lib/python2.4/test/test_fork1.pyo -opt/lampp/lib/python2.4/test/test_format.py -opt/lampp/lib/python2.4/test/test_format.pyc -opt/lampp/lib/python2.4/test/test_format.pyo -opt/lampp/lib/python2.4/test/test_fpformat.py -opt/lampp/lib/python2.4/test/test_fpformat.pyc -opt/lampp/lib/python2.4/test/test_fpformat.pyo -opt/lampp/lib/python2.4/test/test_frozen.py -opt/lampp/lib/python2.4/test/test_frozen.pyc -opt/lampp/lib/python2.4/test/test_frozen.pyo -opt/lampp/lib/python2.4/test/test_funcattrs.py -opt/lampp/lib/python2.4/test/test_funcattrs.pyc -opt/lampp/lib/python2.4/test/test_funcattrs.pyo -opt/lampp/lib/python2.4/test/test_future.py -opt/lampp/lib/python2.4/test/test_future.pyc -opt/lampp/lib/python2.4/test/test_future.pyo -opt/lampp/lib/python2.4/test/test_future1.py -opt/lampp/lib/python2.4/test/test_future1.pyc -opt/lampp/lib/python2.4/test/test_future1.pyo -opt/lampp/lib/python2.4/test/test_future2.py -opt/lampp/lib/python2.4/test/test_future2.pyc -opt/lampp/lib/python2.4/test/test_future2.pyo -opt/lampp/lib/python2.4/test/test_future3.py -opt/lampp/lib/python2.4/test/test_future3.pyc -opt/lampp/lib/python2.4/test/test_future3.pyo -opt/lampp/lib/python2.4/test/test_gc.py -opt/lampp/lib/python2.4/test/test_gc.pyc -opt/lampp/lib/python2.4/test/test_gc.pyo -opt/lampp/lib/python2.4/test/test_gdbm.py -opt/lampp/lib/python2.4/test/test_gdbm.pyc -opt/lampp/lib/python2.4/test/test_gdbm.pyo -opt/lampp/lib/python2.4/test/test_generators.py -opt/lampp/lib/python2.4/test/test_generators.pyc -opt/lampp/lib/python2.4/test/test_generators.pyo -opt/lampp/lib/python2.4/test/test_genexps.py -opt/lampp/lib/python2.4/test/test_genexps.pyc -opt/lampp/lib/python2.4/test/test_genexps.pyo -opt/lampp/lib/python2.4/test/test_getargs.py -opt/lampp/lib/python2.4/test/test_getargs.pyc -opt/lampp/lib/python2.4/test/test_getargs.pyo -opt/lampp/lib/python2.4/test/test_getargs2.py -opt/lampp/lib/python2.4/test/test_getargs2.pyc -opt/lampp/lib/python2.4/test/test_getargs2.pyo -opt/lampp/lib/python2.4/test/test_getopt.py -opt/lampp/lib/python2.4/test/test_getopt.pyc -opt/lampp/lib/python2.4/test/test_getopt.pyo -opt/lampp/lib/python2.4/test/test_gettext.py -opt/lampp/lib/python2.4/test/test_gettext.pyc -opt/lampp/lib/python2.4/test/test_gettext.pyo -opt/lampp/lib/python2.4/test/test_gl.py -opt/lampp/lib/python2.4/test/test_gl.pyc -opt/lampp/lib/python2.4/test/test_gl.pyo -opt/lampp/lib/python2.4/test/test_glob.py -opt/lampp/lib/python2.4/test/test_glob.pyc -opt/lampp/lib/python2.4/test/test_glob.pyo -opt/lampp/lib/python2.4/test/test_global.py -opt/lampp/lib/python2.4/test/test_global.pyc -opt/lampp/lib/python2.4/test/test_global.pyo -opt/lampp/lib/python2.4/test/test_grammar.py -opt/lampp/lib/python2.4/test/test_grammar.pyc -opt/lampp/lib/python2.4/test/test_grammar.pyo -opt/lampp/lib/python2.4/test/test_grp.py -opt/lampp/lib/python2.4/test/test_grp.pyc -opt/lampp/lib/python2.4/test/test_grp.pyo -opt/lampp/lib/python2.4/test/test_gzip.py -opt/lampp/lib/python2.4/test/test_gzip.pyc -opt/lampp/lib/python2.4/test/test_gzip.pyo -opt/lampp/lib/python2.4/test/test_hash.py -opt/lampp/lib/python2.4/test/test_hash.pyc -opt/lampp/lib/python2.4/test/test_hash.pyo -opt/lampp/lib/python2.4/test/test_heapq.py -opt/lampp/lib/python2.4/test/test_heapq.pyc -opt/lampp/lib/python2.4/test/test_heapq.pyo -opt/lampp/lib/python2.4/test/test_hexoct.py -opt/lampp/lib/python2.4/test/test_hexoct.pyc -opt/lampp/lib/python2.4/test/test_hexoct.pyo -opt/lampp/lib/python2.4/test/test_hmac.py -opt/lampp/lib/python2.4/test/test_hmac.pyc -opt/lampp/lib/python2.4/test/test_hmac.pyo -opt/lampp/lib/python2.4/test/test_hotshot.py -opt/lampp/lib/python2.4/test/test_hotshot.pyc -opt/lampp/lib/python2.4/test/test_hotshot.pyo -opt/lampp/lib/python2.4/test/test_htmllib.py -opt/lampp/lib/python2.4/test/test_htmllib.pyc -opt/lampp/lib/python2.4/test/test_htmllib.pyo -opt/lampp/lib/python2.4/test/test_htmlparser.py -opt/lampp/lib/python2.4/test/test_htmlparser.pyc -opt/lampp/lib/python2.4/test/test_htmlparser.pyo -opt/lampp/lib/python2.4/test/test_httplib.py -opt/lampp/lib/python2.4/test/test_httplib.pyc -opt/lampp/lib/python2.4/test/test_httplib.pyo -opt/lampp/lib/python2.4/test/test_imageop.py -opt/lampp/lib/python2.4/test/test_imageop.pyc -opt/lampp/lib/python2.4/test/test_imageop.pyo -opt/lampp/lib/python2.4/test/test_imaplib.py -opt/lampp/lib/python2.4/test/test_imaplib.pyc -opt/lampp/lib/python2.4/test/test_imaplib.pyo -opt/lampp/lib/python2.4/test/test_imgfile.py -opt/lampp/lib/python2.4/test/test_imgfile.pyc -opt/lampp/lib/python2.4/test/test_imgfile.pyo -opt/lampp/lib/python2.4/test/test_imp.py -opt/lampp/lib/python2.4/test/test_imp.pyc -opt/lampp/lib/python2.4/test/test_imp.pyo -opt/lampp/lib/python2.4/test/test_import.py -opt/lampp/lib/python2.4/test/test_import.pyc -opt/lampp/lib/python2.4/test/test_import.pyo -opt/lampp/lib/python2.4/test/test_importhooks.py -opt/lampp/lib/python2.4/test/test_importhooks.pyc -opt/lampp/lib/python2.4/test/test_importhooks.pyo -opt/lampp/lib/python2.4/test/test_inspect.py -opt/lampp/lib/python2.4/test/test_inspect.pyc -opt/lampp/lib/python2.4/test/test_inspect.pyo -opt/lampp/lib/python2.4/test/test_ioctl.py -opt/lampp/lib/python2.4/test/test_ioctl.pyc -opt/lampp/lib/python2.4/test/test_ioctl.pyo -opt/lampp/lib/python2.4/test/test_isinstance.py -opt/lampp/lib/python2.4/test/test_isinstance.pyc -opt/lampp/lib/python2.4/test/test_isinstance.pyo -opt/lampp/lib/python2.4/test/test_iter.py -opt/lampp/lib/python2.4/test/test_iter.pyc -opt/lampp/lib/python2.4/test/test_iter.pyo -opt/lampp/lib/python2.4/test/test_iterlen.py -opt/lampp/lib/python2.4/test/test_iterlen.pyc -opt/lampp/lib/python2.4/test/test_iterlen.pyo -opt/lampp/lib/python2.4/test/test_itertools.py -opt/lampp/lib/python2.4/test/test_itertools.pyc -opt/lampp/lib/python2.4/test/test_itertools.pyo -opt/lampp/lib/python2.4/test/test_largefile.py -opt/lampp/lib/python2.4/test/test_largefile.pyc -opt/lampp/lib/python2.4/test/test_largefile.pyo -opt/lampp/lib/python2.4/test/test_linuxaudiodev.py -opt/lampp/lib/python2.4/test/test_linuxaudiodev.pyc -opt/lampp/lib/python2.4/test/test_linuxaudiodev.pyo -opt/lampp/lib/python2.4/test/test_list.py -opt/lampp/lib/python2.4/test/test_list.pyc -opt/lampp/lib/python2.4/test/test_list.pyo -opt/lampp/lib/python2.4/test/test_locale.py -opt/lampp/lib/python2.4/test/test_locale.pyc -opt/lampp/lib/python2.4/test/test_locale.pyo -opt/lampp/lib/python2.4/test/test_logging.py -opt/lampp/lib/python2.4/test/test_logging.pyc -opt/lampp/lib/python2.4/test/test_logging.pyo -opt/lampp/lib/python2.4/test/test_long.py -opt/lampp/lib/python2.4/test/test_long.pyc -opt/lampp/lib/python2.4/test/test_long.pyo -opt/lampp/lib/python2.4/test/test_long_future.py -opt/lampp/lib/python2.4/test/test_long_future.pyc -opt/lampp/lib/python2.4/test/test_long_future.pyo -opt/lampp/lib/python2.4/test/test_longexp.py -opt/lampp/lib/python2.4/test/test_longexp.pyc -opt/lampp/lib/python2.4/test/test_longexp.pyo -opt/lampp/lib/python2.4/test/test_macfs.py -opt/lampp/lib/python2.4/test/test_macfs.pyc -opt/lampp/lib/python2.4/test/test_macfs.pyo -opt/lampp/lib/python2.4/test/test_macostools.py -opt/lampp/lib/python2.4/test/test_macostools.pyc -opt/lampp/lib/python2.4/test/test_macostools.pyo -opt/lampp/lib/python2.4/test/test_macpath.py -opt/lampp/lib/python2.4/test/test_macpath.pyc -opt/lampp/lib/python2.4/test/test_macpath.pyo -opt/lampp/lib/python2.4/test/test_mailbox.py -opt/lampp/lib/python2.4/test/test_mailbox.pyc -opt/lampp/lib/python2.4/test/test_mailbox.pyo -opt/lampp/lib/python2.4/test/test_marshal.py -opt/lampp/lib/python2.4/test/test_marshal.pyc -opt/lampp/lib/python2.4/test/test_marshal.pyo -opt/lampp/lib/python2.4/test/test_math.py -opt/lampp/lib/python2.4/test/test_math.pyc -opt/lampp/lib/python2.4/test/test_math.pyo -opt/lampp/lib/python2.4/test/test_md5.py -opt/lampp/lib/python2.4/test/test_md5.pyc -opt/lampp/lib/python2.4/test/test_md5.pyo -opt/lampp/lib/python2.4/test/test_mhlib.py -opt/lampp/lib/python2.4/test/test_mhlib.pyc -opt/lampp/lib/python2.4/test/test_mhlib.pyo -opt/lampp/lib/python2.4/test/test_mimetools.py -opt/lampp/lib/python2.4/test/test_mimetools.pyc -opt/lampp/lib/python2.4/test/test_mimetools.pyo -opt/lampp/lib/python2.4/test/test_mimetypes.py -opt/lampp/lib/python2.4/test/test_mimetypes.pyc -opt/lampp/lib/python2.4/test/test_mimetypes.pyo -opt/lampp/lib/python2.4/test/test_minidom.py -opt/lampp/lib/python2.4/test/test_minidom.pyc -opt/lampp/lib/python2.4/test/test_minidom.pyo -opt/lampp/lib/python2.4/test/test_mmap.py -opt/lampp/lib/python2.4/test/test_mmap.pyc -opt/lampp/lib/python2.4/test/test_mmap.pyo -opt/lampp/lib/python2.4/test/test_module.py -opt/lampp/lib/python2.4/test/test_module.pyc -opt/lampp/lib/python2.4/test/test_module.pyo -opt/lampp/lib/python2.4/test/test_multibytecodec.py -opt/lampp/lib/python2.4/test/test_multibytecodec.pyc -opt/lampp/lib/python2.4/test/test_multibytecodec.pyo -opt/lampp/lib/python2.4/test/test_multibytecodec_support.py -opt/lampp/lib/python2.4/test/test_multibytecodec_support.pyc -opt/lampp/lib/python2.4/test/test_multibytecodec_support.pyo -opt/lampp/lib/python2.4/test/test_multifile.py -opt/lampp/lib/python2.4/test/test_multifile.pyc -opt/lampp/lib/python2.4/test/test_multifile.pyo -opt/lampp/lib/python2.4/test/test_mutants.py -opt/lampp/lib/python2.4/test/test_mutants.pyc -opt/lampp/lib/python2.4/test/test_mutants.pyo -opt/lampp/lib/python2.4/test/test_netrc.py -opt/lampp/lib/python2.4/test/test_netrc.pyc -opt/lampp/lib/python2.4/test/test_netrc.pyo -opt/lampp/lib/python2.4/test/test_new.py -opt/lampp/lib/python2.4/test/test_new.pyc -opt/lampp/lib/python2.4/test/test_new.pyo -opt/lampp/lib/python2.4/test/test_nis.py -opt/lampp/lib/python2.4/test/test_nis.pyc -opt/lampp/lib/python2.4/test/test_nis.pyo -opt/lampp/lib/python2.4/test/test_normalization.py -opt/lampp/lib/python2.4/test/test_normalization.pyc -opt/lampp/lib/python2.4/test/test_normalization.pyo -opt/lampp/lib/python2.4/test/test_ntpath.py -opt/lampp/lib/python2.4/test/test_ntpath.pyc -opt/lampp/lib/python2.4/test/test_ntpath.pyo -opt/lampp/lib/python2.4/test/test_opcodes.py -opt/lampp/lib/python2.4/test/test_opcodes.pyc -opt/lampp/lib/python2.4/test/test_opcodes.pyo -opt/lampp/lib/python2.4/test/test_openpty.py -opt/lampp/lib/python2.4/test/test_openpty.pyc -opt/lampp/lib/python2.4/test/test_openpty.pyo -opt/lampp/lib/python2.4/test/test_operations.py -opt/lampp/lib/python2.4/test/test_operations.pyc -opt/lampp/lib/python2.4/test/test_operations.pyo -opt/lampp/lib/python2.4/test/test_operator.py -opt/lampp/lib/python2.4/test/test_operator.pyc -opt/lampp/lib/python2.4/test/test_operator.pyo -opt/lampp/lib/python2.4/test/test_optparse.py -opt/lampp/lib/python2.4/test/test_optparse.pyc -opt/lampp/lib/python2.4/test/test_optparse.pyo -opt/lampp/lib/python2.4/test/test_os.py -opt/lampp/lib/python2.4/test/test_os.pyc -opt/lampp/lib/python2.4/test/test_os.pyo -opt/lampp/lib/python2.4/test/test_ossaudiodev.py -opt/lampp/lib/python2.4/test/test_ossaudiodev.pyc -opt/lampp/lib/python2.4/test/test_ossaudiodev.pyo -opt/lampp/lib/python2.4/test/test_parser.py -opt/lampp/lib/python2.4/test/test_parser.pyc -opt/lampp/lib/python2.4/test/test_parser.pyo -opt/lampp/lib/python2.4/test/test_peepholer.py -opt/lampp/lib/python2.4/test/test_peepholer.pyc -opt/lampp/lib/python2.4/test/test_peepholer.pyo -opt/lampp/lib/python2.4/test/test_pep247.py -opt/lampp/lib/python2.4/test/test_pep247.pyc -opt/lampp/lib/python2.4/test/test_pep247.pyo -opt/lampp/lib/python2.4/test/test_pep263.py -opt/lampp/lib/python2.4/test/test_pep263.pyc -opt/lampp/lib/python2.4/test/test_pep263.pyo -opt/lampp/lib/python2.4/test/test_pep277.py -opt/lampp/lib/python2.4/test/test_pep277.pyc -opt/lampp/lib/python2.4/test/test_pep277.pyo -opt/lampp/lib/python2.4/test/test_pep292.py -opt/lampp/lib/python2.4/test/test_pep292.pyc -opt/lampp/lib/python2.4/test/test_pep292.pyo -opt/lampp/lib/python2.4/test/test_pickle.py -opt/lampp/lib/python2.4/test/test_pickle.pyc -opt/lampp/lib/python2.4/test/test_pickle.pyo -opt/lampp/lib/python2.4/test/test_pickletools.py -opt/lampp/lib/python2.4/test/test_pickletools.pyc -opt/lampp/lib/python2.4/test/test_pickletools.pyo -opt/lampp/lib/python2.4/test/test_pkg.py -opt/lampp/lib/python2.4/test/test_pkg.pyc -opt/lampp/lib/python2.4/test/test_pkg.pyo -opt/lampp/lib/python2.4/test/test_pkgimport.py -opt/lampp/lib/python2.4/test/test_pkgimport.pyc -opt/lampp/lib/python2.4/test/test_pkgimport.pyo -opt/lampp/lib/python2.4/test/test_plistlib.py -opt/lampp/lib/python2.4/test/test_plistlib.pyc -opt/lampp/lib/python2.4/test/test_plistlib.pyo -opt/lampp/lib/python2.4/test/test_poll.py -opt/lampp/lib/python2.4/test/test_poll.pyc -opt/lampp/lib/python2.4/test/test_poll.pyo -opt/lampp/lib/python2.4/test/test_popen.py -opt/lampp/lib/python2.4/test/test_popen.pyc -opt/lampp/lib/python2.4/test/test_popen.pyo -opt/lampp/lib/python2.4/test/test_popen2.py -opt/lampp/lib/python2.4/test/test_popen2.pyc -opt/lampp/lib/python2.4/test/test_popen2.pyo -opt/lampp/lib/python2.4/test/test_posix.py -opt/lampp/lib/python2.4/test/test_posix.pyc -opt/lampp/lib/python2.4/test/test_posix.pyo -opt/lampp/lib/python2.4/test/test_posixpath.py -opt/lampp/lib/python2.4/test/test_posixpath.pyc -opt/lampp/lib/python2.4/test/test_posixpath.pyo -opt/lampp/lib/python2.4/test/test_pow.py -opt/lampp/lib/python2.4/test/test_pow.pyc -opt/lampp/lib/python2.4/test/test_pow.pyo -opt/lampp/lib/python2.4/test/test_pprint.py -opt/lampp/lib/python2.4/test/test_pprint.pyc -opt/lampp/lib/python2.4/test/test_pprint.pyo -opt/lampp/lib/python2.4/test/test_profile.py -opt/lampp/lib/python2.4/test/test_profile.pyc -opt/lampp/lib/python2.4/test/test_profile.pyo -opt/lampp/lib/python2.4/test/test_profilehooks.py -opt/lampp/lib/python2.4/test/test_profilehooks.pyc -opt/lampp/lib/python2.4/test/test_profilehooks.pyo -opt/lampp/lib/python2.4/test/test_pty.py -opt/lampp/lib/python2.4/test/test_pty.pyc -opt/lampp/lib/python2.4/test/test_pty.pyo -opt/lampp/lib/python2.4/test/test_pwd.py -opt/lampp/lib/python2.4/test/test_pwd.pyc -opt/lampp/lib/python2.4/test/test_pwd.pyo -opt/lampp/lib/python2.4/test/test_pyclbr.py -opt/lampp/lib/python2.4/test/test_pyclbr.pyc -opt/lampp/lib/python2.4/test/test_pyclbr.pyo -opt/lampp/lib/python2.4/test/test_pyexpat.py -opt/lampp/lib/python2.4/test/test_pyexpat.pyc -opt/lampp/lib/python2.4/test/test_pyexpat.pyo -opt/lampp/lib/python2.4/test/test_queue.py -opt/lampp/lib/python2.4/test/test_queue.pyc -opt/lampp/lib/python2.4/test/test_queue.pyo -opt/lampp/lib/python2.4/test/test_quopri.py -opt/lampp/lib/python2.4/test/test_quopri.pyc -opt/lampp/lib/python2.4/test/test_quopri.pyo -opt/lampp/lib/python2.4/test/test_random.py -opt/lampp/lib/python2.4/test/test_random.pyc -opt/lampp/lib/python2.4/test/test_random.pyo -opt/lampp/lib/python2.4/test/test_re.py -opt/lampp/lib/python2.4/test/test_re.pyc -opt/lampp/lib/python2.4/test/test_re.pyo -opt/lampp/lib/python2.4/test/test_regex.py -opt/lampp/lib/python2.4/test/test_regex.pyc -opt/lampp/lib/python2.4/test/test_regex.pyo -opt/lampp/lib/python2.4/test/test_repr.py -opt/lampp/lib/python2.4/test/test_repr.pyc -opt/lampp/lib/python2.4/test/test_repr.pyo -opt/lampp/lib/python2.4/test/test_resource.py -opt/lampp/lib/python2.4/test/test_resource.pyc -opt/lampp/lib/python2.4/test/test_resource.pyo -opt/lampp/lib/python2.4/test/test_rfc822.py -opt/lampp/lib/python2.4/test/test_rfc822.pyc -opt/lampp/lib/python2.4/test/test_rfc822.pyo -opt/lampp/lib/python2.4/test/test_rgbimg.py -opt/lampp/lib/python2.4/test/test_rgbimg.pyc -opt/lampp/lib/python2.4/test/test_rgbimg.pyo -opt/lampp/lib/python2.4/test/test_richcmp.py -opt/lampp/lib/python2.4/test/test_richcmp.pyc -opt/lampp/lib/python2.4/test/test_richcmp.pyo -opt/lampp/lib/python2.4/test/test_robotparser.py -opt/lampp/lib/python2.4/test/test_robotparser.pyc -opt/lampp/lib/python2.4/test/test_robotparser.pyo -opt/lampp/lib/python2.4/test/test_sax.py -opt/lampp/lib/python2.4/test/test_sax.pyc -opt/lampp/lib/python2.4/test/test_sax.pyo -opt/lampp/lib/python2.4/test/test_scope.py -opt/lampp/lib/python2.4/test/test_scope.pyc -opt/lampp/lib/python2.4/test/test_scope.pyo -opt/lampp/lib/python2.4/test/test_scriptpackages.py -opt/lampp/lib/python2.4/test/test_scriptpackages.pyc -opt/lampp/lib/python2.4/test/test_scriptpackages.pyo -opt/lampp/lib/python2.4/test/test_select.py -opt/lampp/lib/python2.4/test/test_select.pyc -opt/lampp/lib/python2.4/test/test_select.pyo -opt/lampp/lib/python2.4/test/test_set.py -opt/lampp/lib/python2.4/test/test_set.pyc -opt/lampp/lib/python2.4/test/test_set.pyo -opt/lampp/lib/python2.4/test/test_sets.py -opt/lampp/lib/python2.4/test/test_sets.pyc -opt/lampp/lib/python2.4/test/test_sets.pyo -opt/lampp/lib/python2.4/test/test_sgmllib.py -opt/lampp/lib/python2.4/test/test_sgmllib.pyc -opt/lampp/lib/python2.4/test/test_sgmllib.pyo -opt/lampp/lib/python2.4/test/test_sha.py -opt/lampp/lib/python2.4/test/test_sha.pyc -opt/lampp/lib/python2.4/test/test_sha.pyo -opt/lampp/lib/python2.4/test/test_shelve.py -opt/lampp/lib/python2.4/test/test_shelve.pyc -opt/lampp/lib/python2.4/test/test_shelve.pyo -opt/lampp/lib/python2.4/test/test_shlex.py -opt/lampp/lib/python2.4/test/test_shlex.pyc -opt/lampp/lib/python2.4/test/test_shlex.pyo -opt/lampp/lib/python2.4/test/test_shutil.py -opt/lampp/lib/python2.4/test/test_shutil.pyc -opt/lampp/lib/python2.4/test/test_shutil.pyo -opt/lampp/lib/python2.4/test/test_signal.py -opt/lampp/lib/python2.4/test/test_signal.pyc -opt/lampp/lib/python2.4/test/test_signal.pyo -opt/lampp/lib/python2.4/test/test_site.py -opt/lampp/lib/python2.4/test/test_site.pyc -opt/lampp/lib/python2.4/test/test_site.pyo -opt/lampp/lib/python2.4/test/test_slice.py -opt/lampp/lib/python2.4/test/test_slice.pyc -opt/lampp/lib/python2.4/test/test_slice.pyo -opt/lampp/lib/python2.4/test/test_socket.py -opt/lampp/lib/python2.4/test/test_socket.pyc -opt/lampp/lib/python2.4/test/test_socket.pyo -opt/lampp/lib/python2.4/test/test_socket_ssl.py -opt/lampp/lib/python2.4/test/test_socket_ssl.pyc -opt/lampp/lib/python2.4/test/test_socket_ssl.pyo -opt/lampp/lib/python2.4/test/test_socketserver.py -opt/lampp/lib/python2.4/test/test_socketserver.pyc -opt/lampp/lib/python2.4/test/test_socketserver.pyo -opt/lampp/lib/python2.4/test/test_softspace.py -opt/lampp/lib/python2.4/test/test_softspace.pyc -opt/lampp/lib/python2.4/test/test_softspace.pyo -opt/lampp/lib/python2.4/test/test_sort.py -opt/lampp/lib/python2.4/test/test_sort.pyc -opt/lampp/lib/python2.4/test/test_sort.pyo -opt/lampp/lib/python2.4/test/test_str.py -opt/lampp/lib/python2.4/test/test_str.pyc -opt/lampp/lib/python2.4/test/test_str.pyo -opt/lampp/lib/python2.4/test/test_strftime.py -opt/lampp/lib/python2.4/test/test_strftime.pyc -opt/lampp/lib/python2.4/test/test_strftime.pyo -opt/lampp/lib/python2.4/test/test_string.py -opt/lampp/lib/python2.4/test/test_string.pyc -opt/lampp/lib/python2.4/test/test_string.pyo -opt/lampp/lib/python2.4/test/test_stringprep.py -opt/lampp/lib/python2.4/test/test_stringprep.pyc -opt/lampp/lib/python2.4/test/test_stringprep.pyo -opt/lampp/lib/python2.4/test/test_strop.py -opt/lampp/lib/python2.4/test/test_strop.pyc -opt/lampp/lib/python2.4/test/test_strop.pyo -opt/lampp/lib/python2.4/test/test_strptime.py -opt/lampp/lib/python2.4/test/test_strptime.pyc -opt/lampp/lib/python2.4/test/test_strptime.pyo -opt/lampp/lib/python2.4/test/test_struct.py -opt/lampp/lib/python2.4/test/test_struct.pyc -opt/lampp/lib/python2.4/test/test_struct.pyo -opt/lampp/lib/python2.4/test/test_structseq.py -opt/lampp/lib/python2.4/test/test_structseq.pyc -opt/lampp/lib/python2.4/test/test_structseq.pyo -opt/lampp/lib/python2.4/test/test_subprocess.py -opt/lampp/lib/python2.4/test/test_subprocess.pyc -opt/lampp/lib/python2.4/test/test_subprocess.pyo -opt/lampp/lib/python2.4/test/test_sunaudiodev.py -opt/lampp/lib/python2.4/test/test_sunaudiodev.pyc -opt/lampp/lib/python2.4/test/test_sunaudiodev.pyo -opt/lampp/lib/python2.4/test/test_sundry.py -opt/lampp/lib/python2.4/test/test_sundry.pyc -opt/lampp/lib/python2.4/test/test_sundry.pyo -opt/lampp/lib/python2.4/test/test_support.py -opt/lampp/lib/python2.4/test/test_support.pyc -opt/lampp/lib/python2.4/test/test_support.pyo -opt/lampp/lib/python2.4/test/test_symtable.py -opt/lampp/lib/python2.4/test/test_symtable.pyc -opt/lampp/lib/python2.4/test/test_symtable.pyo -opt/lampp/lib/python2.4/test/test_syntax.py -opt/lampp/lib/python2.4/test/test_syntax.pyc -opt/lampp/lib/python2.4/test/test_syntax.pyo -opt/lampp/lib/python2.4/test/test_sys.py -opt/lampp/lib/python2.4/test/test_sys.pyc -opt/lampp/lib/python2.4/test/test_sys.pyo -opt/lampp/lib/python2.4/test/test_tarfile.py -opt/lampp/lib/python2.4/test/test_tarfile.pyc -opt/lampp/lib/python2.4/test/test_tarfile.pyo -opt/lampp/lib/python2.4/test/test_tcl.py -opt/lampp/lib/python2.4/test/test_tcl.pyc -opt/lampp/lib/python2.4/test/test_tcl.pyo -opt/lampp/lib/python2.4/test/test_tempfile.py -opt/lampp/lib/python2.4/test/test_tempfile.pyc -opt/lampp/lib/python2.4/test/test_tempfile.pyo -opt/lampp/lib/python2.4/test/test_textwrap.py -opt/lampp/lib/python2.4/test/test_textwrap.pyc -opt/lampp/lib/python2.4/test/test_textwrap.pyo -opt/lampp/lib/python2.4/test/test_thread.py -opt/lampp/lib/python2.4/test/test_thread.pyc -opt/lampp/lib/python2.4/test/test_thread.pyo -opt/lampp/lib/python2.4/test/test_threaded_import.py -opt/lampp/lib/python2.4/test/test_threaded_import.pyc -opt/lampp/lib/python2.4/test/test_threaded_import.pyo -opt/lampp/lib/python2.4/test/test_threadedtempfile.py -opt/lampp/lib/python2.4/test/test_threadedtempfile.pyc -opt/lampp/lib/python2.4/test/test_threadedtempfile.pyo -opt/lampp/lib/python2.4/test/test_threading.py -opt/lampp/lib/python2.4/test/test_threading.pyc -opt/lampp/lib/python2.4/test/test_threading.pyo -opt/lampp/lib/python2.4/test/test_threading_local.py -opt/lampp/lib/python2.4/test/test_threading_local.pyc -opt/lampp/lib/python2.4/test/test_threading_local.pyo -opt/lampp/lib/python2.4/test/test_threadsignals.py -opt/lampp/lib/python2.4/test/test_threadsignals.pyc -opt/lampp/lib/python2.4/test/test_threadsignals.pyo -opt/lampp/lib/python2.4/test/test_time.py -opt/lampp/lib/python2.4/test/test_time.pyc -opt/lampp/lib/python2.4/test/test_time.pyo -opt/lampp/lib/python2.4/test/test_timeout.py -opt/lampp/lib/python2.4/test/test_timeout.pyc -opt/lampp/lib/python2.4/test/test_timeout.pyo -opt/lampp/lib/python2.4/test/test_timing.py -opt/lampp/lib/python2.4/test/test_timing.pyc -opt/lampp/lib/python2.4/test/test_timing.pyo -opt/lampp/lib/python2.4/test/test_tokenize.py -opt/lampp/lib/python2.4/test/test_tokenize.pyc -opt/lampp/lib/python2.4/test/test_tokenize.pyo -opt/lampp/lib/python2.4/test/test_trace.py -opt/lampp/lib/python2.4/test/test_trace.pyc -opt/lampp/lib/python2.4/test/test_trace.pyo -opt/lampp/lib/python2.4/test/test_traceback.py -opt/lampp/lib/python2.4/test/test_traceback.pyc -opt/lampp/lib/python2.4/test/test_traceback.pyo -opt/lampp/lib/python2.4/test/test_transformer.py -opt/lampp/lib/python2.4/test/test_transformer.pyc -opt/lampp/lib/python2.4/test/test_transformer.pyo -opt/lampp/lib/python2.4/test/test_tuple.py -opt/lampp/lib/python2.4/test/test_tuple.pyc -opt/lampp/lib/python2.4/test/test_tuple.pyo -opt/lampp/lib/python2.4/test/test_types.py -opt/lampp/lib/python2.4/test/test_types.pyc -opt/lampp/lib/python2.4/test/test_types.pyo -opt/lampp/lib/python2.4/test/test_ucn.py -opt/lampp/lib/python2.4/test/test_ucn.pyc -opt/lampp/lib/python2.4/test/test_ucn.pyo -opt/lampp/lib/python2.4/test/test_unary.py -opt/lampp/lib/python2.4/test/test_unary.pyc -opt/lampp/lib/python2.4/test/test_unary.pyo -opt/lampp/lib/python2.4/test/test_unicode.py -opt/lampp/lib/python2.4/test/test_unicode.pyc -opt/lampp/lib/python2.4/test/test_unicode.pyo -opt/lampp/lib/python2.4/test/test_unicode_file.py -opt/lampp/lib/python2.4/test/test_unicode_file.pyc -opt/lampp/lib/python2.4/test/test_unicode_file.pyo -opt/lampp/lib/python2.4/test/test_unicodedata.py -opt/lampp/lib/python2.4/test/test_unicodedata.pyc -opt/lampp/lib/python2.4/test/test_unicodedata.pyo -opt/lampp/lib/python2.4/test/test_unittest.py -opt/lampp/lib/python2.4/test/test_unittest.pyc -opt/lampp/lib/python2.4/test/test_unittest.pyo -opt/lampp/lib/python2.4/test/test_univnewlines.py -opt/lampp/lib/python2.4/test/test_univnewlines.pyc -opt/lampp/lib/python2.4/test/test_univnewlines.pyo -opt/lampp/lib/python2.4/test/test_unpack.py -opt/lampp/lib/python2.4/test/test_unpack.pyc -opt/lampp/lib/python2.4/test/test_unpack.pyo -opt/lampp/lib/python2.4/test/test_urllib.py -opt/lampp/lib/python2.4/test/test_urllib.pyc -opt/lampp/lib/python2.4/test/test_urllib.pyo -opt/lampp/lib/python2.4/test/test_urllib2.py -opt/lampp/lib/python2.4/test/test_urllib2.pyc -opt/lampp/lib/python2.4/test/test_urllib2.pyo -opt/lampp/lib/python2.4/test/test_urllib2net.py -opt/lampp/lib/python2.4/test/test_urllib2net.pyc -opt/lampp/lib/python2.4/test/test_urllib2net.pyo -opt/lampp/lib/python2.4/test/test_urllibnet.py -opt/lampp/lib/python2.4/test/test_urllibnet.pyc -opt/lampp/lib/python2.4/test/test_urllibnet.pyo -opt/lampp/lib/python2.4/test/test_urlparse.py -opt/lampp/lib/python2.4/test/test_urlparse.pyc -opt/lampp/lib/python2.4/test/test_urlparse.pyo -opt/lampp/lib/python2.4/test/test_userdict.py -opt/lampp/lib/python2.4/test/test_userdict.pyc -opt/lampp/lib/python2.4/test/test_userdict.pyo -opt/lampp/lib/python2.4/test/test_userlist.py -opt/lampp/lib/python2.4/test/test_userlist.pyc -opt/lampp/lib/python2.4/test/test_userlist.pyo -opt/lampp/lib/python2.4/test/test_userstring.py -opt/lampp/lib/python2.4/test/test_userstring.pyc -opt/lampp/lib/python2.4/test/test_userstring.pyo -opt/lampp/lib/python2.4/test/test_uu.py -opt/lampp/lib/python2.4/test/test_uu.pyc -opt/lampp/lib/python2.4/test/test_uu.pyo -opt/lampp/lib/python2.4/test/test_warnings.py -opt/lampp/lib/python2.4/test/test_warnings.pyc -opt/lampp/lib/python2.4/test/test_warnings.pyo -opt/lampp/lib/python2.4/test/test_wave.py -opt/lampp/lib/python2.4/test/test_wave.pyc -opt/lampp/lib/python2.4/test/test_wave.pyo -opt/lampp/lib/python2.4/test/test_weakref.py -opt/lampp/lib/python2.4/test/test_weakref.pyc -opt/lampp/lib/python2.4/test/test_weakref.pyo -opt/lampp/lib/python2.4/test/test_whichdb.py -opt/lampp/lib/python2.4/test/test_whichdb.pyc -opt/lampp/lib/python2.4/test/test_whichdb.pyo -opt/lampp/lib/python2.4/test/test_winreg.py -opt/lampp/lib/python2.4/test/test_winreg.pyc -opt/lampp/lib/python2.4/test/test_winreg.pyo -opt/lampp/lib/python2.4/test/test_winsound.py -opt/lampp/lib/python2.4/test/test_winsound.pyc -opt/lampp/lib/python2.4/test/test_winsound.pyo -opt/lampp/lib/python2.4/test/test_xmllib.py -opt/lampp/lib/python2.4/test/test_xmllib.pyc -opt/lampp/lib/python2.4/test/test_xmllib.pyo -opt/lampp/lib/python2.4/test/test_xmlrpc.py -opt/lampp/lib/python2.4/test/test_xmlrpc.pyc -opt/lampp/lib/python2.4/test/test_xmlrpc.pyo -opt/lampp/lib/python2.4/test/test_xpickle.py -opt/lampp/lib/python2.4/test/test_xpickle.pyc -opt/lampp/lib/python2.4/test/test_xpickle.pyo -opt/lampp/lib/python2.4/test/test_xrange.py -opt/lampp/lib/python2.4/test/test_xrange.pyc -opt/lampp/lib/python2.4/test/test_xrange.pyo -opt/lampp/lib/python2.4/test/test_zipfile.py -opt/lampp/lib/python2.4/test/test_zipfile.pyc -opt/lampp/lib/python2.4/test/test_zipfile.pyo -opt/lampp/lib/python2.4/test/test_zipimport.py -opt/lampp/lib/python2.4/test/test_zipimport.pyc -opt/lampp/lib/python2.4/test/test_zipimport.pyo -opt/lampp/lib/python2.4/test/test_zlib.py -opt/lampp/lib/python2.4/test/test_zlib.pyc -opt/lampp/lib/python2.4/test/test_zlib.pyo -opt/lampp/lib/python2.4/test/testall.py -opt/lampp/lib/python2.4/test/testall.pyc -opt/lampp/lib/python2.4/test/testall.pyo -opt/lampp/lib/python2.4/test/testcodec.py -opt/lampp/lib/python2.4/test/testcodec.pyc -opt/lampp/lib/python2.4/test/testcodec.pyo -opt/lampp/lib/python2.4/test/testimg.uue -opt/lampp/lib/python2.4/test/testimgr.uue -opt/lampp/lib/python2.4/test/testrgb.uue -opt/lampp/lib/python2.4/test/testtar.tar -opt/lampp/lib/python2.4/test/tf_inherit_check.py -opt/lampp/lib/python2.4/test/tf_inherit_check.pyc -opt/lampp/lib/python2.4/test/tf_inherit_check.pyo -opt/lampp/lib/python2.4/test/tokenize_tests.txt -opt/lampp/lib/python2.4/test/xmltests.py -opt/lampp/lib/python2.4/test/xmltests.pyc -opt/lampp/lib/python2.4/test/xmltests.pyo -opt/lampp/lib/python2.4/textwrap.py -opt/lampp/lib/python2.4/textwrap.pyc -opt/lampp/lib/python2.4/textwrap.pyo -opt/lampp/lib/python2.4/this.py -opt/lampp/lib/python2.4/this.pyc -opt/lampp/lib/python2.4/this.pyo -opt/lampp/lib/python2.4/threading.py -opt/lampp/lib/python2.4/threading.pyc -opt/lampp/lib/python2.4/threading.pyo -opt/lampp/lib/python2.4/timeit.py -opt/lampp/lib/python2.4/timeit.pyc -opt/lampp/lib/python2.4/timeit.pyo -opt/lampp/lib/python2.4/toaiff.py -opt/lampp/lib/python2.4/toaiff.pyc -opt/lampp/lib/python2.4/toaiff.pyo -opt/lampp/lib/python2.4/token.py -opt/lampp/lib/python2.4/token.pyc -opt/lampp/lib/python2.4/token.pyo -opt/lampp/lib/python2.4/tokenize.py -opt/lampp/lib/python2.4/tokenize.pyc -opt/lampp/lib/python2.4/tokenize.pyo -opt/lampp/lib/python2.4/trace.py -opt/lampp/lib/python2.4/trace.pyc -opt/lampp/lib/python2.4/trace.pyo -opt/lampp/lib/python2.4/traceback.py -opt/lampp/lib/python2.4/traceback.pyc -opt/lampp/lib/python2.4/traceback.pyo -opt/lampp/lib/python2.4/tty.py -opt/lampp/lib/python2.4/tty.pyc -opt/lampp/lib/python2.4/tty.pyo -opt/lampp/lib/python2.4/types.py -opt/lampp/lib/python2.4/types.pyc -opt/lampp/lib/python2.4/types.pyo -opt/lampp/lib/python2.4/tzparse.py -opt/lampp/lib/python2.4/tzparse.pyc -opt/lampp/lib/python2.4/tzparse.pyo -opt/lampp/lib/python2.4/unittest.py -opt/lampp/lib/python2.4/unittest.pyc -opt/lampp/lib/python2.4/unittest.pyo -opt/lampp/lib/python2.4/urllib.py -opt/lampp/lib/python2.4/urllib.pyc -opt/lampp/lib/python2.4/urllib.pyo -opt/lampp/lib/python2.4/urllib2.py -opt/lampp/lib/python2.4/urllib2.pyc -opt/lampp/lib/python2.4/urllib2.pyo -opt/lampp/lib/python2.4/urlparse.py -opt/lampp/lib/python2.4/urlparse.pyc -opt/lampp/lib/python2.4/urlparse.pyo -opt/lampp/lib/python2.4/user.py -opt/lampp/lib/python2.4/user.pyc -opt/lampp/lib/python2.4/user.pyo -opt/lampp/lib/python2.4/uu.py -opt/lampp/lib/python2.4/uu.pyc -opt/lampp/lib/python2.4/uu.pyo -opt/lampp/lib/python2.4/warnings.py -opt/lampp/lib/python2.4/warnings.pyc -opt/lampp/lib/python2.4/warnings.pyo -opt/lampp/lib/python2.4/wave.py -opt/lampp/lib/python2.4/wave.pyc -opt/lampp/lib/python2.4/wave.pyo -opt/lampp/lib/python2.4/weakref.py -opt/lampp/lib/python2.4/weakref.pyc -opt/lampp/lib/python2.4/weakref.pyo -opt/lampp/lib/python2.4/webbrowser.py -opt/lampp/lib/python2.4/webbrowser.pyc -opt/lampp/lib/python2.4/webbrowser.pyo -opt/lampp/lib/python2.4/whichdb.py -opt/lampp/lib/python2.4/whichdb.pyc -opt/lampp/lib/python2.4/whichdb.pyo -opt/lampp/lib/python2.4/whrandom.py -opt/lampp/lib/python2.4/whrandom.pyc -opt/lampp/lib/python2.4/whrandom.pyo -opt/lampp/lib/python2.4/xdrlib.py -opt/lampp/lib/python2.4/xdrlib.pyc -opt/lampp/lib/python2.4/xdrlib.pyo -opt/lampp/lib/python2.4/xml -opt/lampp/lib/python2.4/xml/__init__.py -opt/lampp/lib/python2.4/xml/__init__.pyc -opt/lampp/lib/python2.4/xml/__init__.pyo -opt/lampp/lib/python2.4/xml/dom -opt/lampp/lib/python2.4/xml/dom/NodeFilter.py -opt/lampp/lib/python2.4/xml/dom/NodeFilter.pyc -opt/lampp/lib/python2.4/xml/dom/NodeFilter.pyo -opt/lampp/lib/python2.4/xml/dom/__init__.py -opt/lampp/lib/python2.4/xml/dom/__init__.pyc -opt/lampp/lib/python2.4/xml/dom/__init__.pyo -opt/lampp/lib/python2.4/xml/dom/domreg.py -opt/lampp/lib/python2.4/xml/dom/domreg.pyc -opt/lampp/lib/python2.4/xml/dom/domreg.pyo -opt/lampp/lib/python2.4/xml/dom/expatbuilder.py -opt/lampp/lib/python2.4/xml/dom/expatbuilder.pyc -opt/lampp/lib/python2.4/xml/dom/expatbuilder.pyo -opt/lampp/lib/python2.4/xml/dom/minicompat.py -opt/lampp/lib/python2.4/xml/dom/minicompat.pyc -opt/lampp/lib/python2.4/xml/dom/minicompat.pyo -opt/lampp/lib/python2.4/xml/dom/minidom.py -opt/lampp/lib/python2.4/xml/dom/minidom.pyc -opt/lampp/lib/python2.4/xml/dom/minidom.pyo -opt/lampp/lib/python2.4/xml/dom/pulldom.py -opt/lampp/lib/python2.4/xml/dom/pulldom.pyc -opt/lampp/lib/python2.4/xml/dom/pulldom.pyo -opt/lampp/lib/python2.4/xml/dom/xmlbuilder.py -opt/lampp/lib/python2.4/xml/dom/xmlbuilder.pyc -opt/lampp/lib/python2.4/xml/dom/xmlbuilder.pyo -opt/lampp/lib/python2.4/xml/parsers -opt/lampp/lib/python2.4/xml/parsers/__init__.py -opt/lampp/lib/python2.4/xml/parsers/__init__.pyc -opt/lampp/lib/python2.4/xml/parsers/__init__.pyo -opt/lampp/lib/python2.4/xml/parsers/expat.py -opt/lampp/lib/python2.4/xml/parsers/expat.pyc -opt/lampp/lib/python2.4/xml/parsers/expat.pyo -opt/lampp/lib/python2.4/xml/sax -opt/lampp/lib/python2.4/xml/sax/__init__.py -opt/lampp/lib/python2.4/xml/sax/__init__.pyc -opt/lampp/lib/python2.4/xml/sax/__init__.pyo -opt/lampp/lib/python2.4/xml/sax/_exceptions.py -opt/lampp/lib/python2.4/xml/sax/_exceptions.pyc -opt/lampp/lib/python2.4/xml/sax/_exceptions.pyo -opt/lampp/lib/python2.4/xml/sax/expatreader.py -opt/lampp/lib/python2.4/xml/sax/expatreader.pyc -opt/lampp/lib/python2.4/xml/sax/expatreader.pyo -opt/lampp/lib/python2.4/xml/sax/handler.py -opt/lampp/lib/python2.4/xml/sax/handler.pyc -opt/lampp/lib/python2.4/xml/sax/handler.pyo -opt/lampp/lib/python2.4/xml/sax/saxutils.py -opt/lampp/lib/python2.4/xml/sax/saxutils.pyc -opt/lampp/lib/python2.4/xml/sax/saxutils.pyo -opt/lampp/lib/python2.4/xml/sax/xmlreader.py -opt/lampp/lib/python2.4/xml/sax/xmlreader.pyc -opt/lampp/lib/python2.4/xml/sax/xmlreader.pyo -opt/lampp/lib/python2.4/xmllib.py -opt/lampp/lib/python2.4/xmllib.pyc -opt/lampp/lib/python2.4/xmllib.pyo -opt/lampp/lib/python2.4/xmlrpclib.py -opt/lampp/lib/python2.4/xmlrpclib.pyc -opt/lampp/lib/python2.4/xmlrpclib.pyo -opt/lampp/lib/python2.4/zipfile.py -opt/lampp/lib/python2.4/zipfile.pyc -opt/lampp/lib/python2.4/zipfile.pyo -opt/lampp/lib/terminfo -opt/lampp/lib/xml2Conf.sh -opt/lampp/lib/xsltConf.sh -opt/lampp/libexec -opt/lampp/licenses -opt/lampp/licenses/apache -opt/lampp/licenses/apache/LICENSE -opt/lampp/licenses/curl -opt/lampp/licenses/curl/COPYING -opt/lampp/licenses/curl/README -opt/lampp/licenses/eaccelerator -opt/lampp/licenses/eaccelerator/COPYING -opt/lampp/licenses/expat -opt/lampp/licenses/expat/COPYING -opt/lampp/licenses/fpdf -opt/lampp/licenses/fpdf/FAQ.htm -opt/lampp/licenses/freetype -opt/lampp/licenses/freetype/GPL.txt -opt/lampp/licenses/freetype/PATENTS -opt/lampp/licenses/gd -opt/lampp/licenses/gd/index.html -opt/lampp/licenses/gdbm -opt/lampp/licenses/gdbm/COPYING -opt/lampp/licenses/gettext -opt/lampp/licenses/gettext/COPYING -opt/lampp/licenses/imap -opt/lampp/licenses/imap/CPYRIGHT -opt/lampp/licenses/jpeg -opt/lampp/licenses/jpeg/README -opt/lampp/licenses/libapreq -opt/lampp/licenses/libapreq/LICENSE -opt/lampp/licenses/libpng -opt/lampp/licenses/libpng/LICENSE -opt/lampp/licenses/libxml -opt/lampp/licenses/libxml/COPYING -opt/lampp/licenses/libxslt -opt/lampp/licenses/libxslt/AUTHORS -opt/lampp/licenses/libxslt/COPYING -opt/lampp/licenses/libxslt/README -opt/lampp/licenses/mcrypt -opt/lampp/licenses/mcrypt/AUTHORS -opt/lampp/licenses/mcrypt/COPYING.LIB -opt/lampp/licenses/mcrypt/README -opt/lampp/licenses/mhash -opt/lampp/licenses/mhash/AUTHORS -opt/lampp/licenses/mhash/COPYING -opt/lampp/licenses/mhash/README -opt/lampp/licenses/ming -opt/lampp/licenses/ming/LICENSE -opt/lampp/licenses/mod_perl -opt/lampp/licenses/mod_perl/LICENSE -opt/lampp/licenses/mysql -opt/lampp/licenses/mysql/COPYING -opt/lampp/licenses/mysql/COPYING.LIB -opt/lampp/licenses/openldap -opt/lampp/licenses/openldap/COPYRIGHT -opt/lampp/licenses/openldap/LICENSE -opt/lampp/licenses/openssl -opt/lampp/licenses/openssl/LICENSE -opt/lampp/licenses/pdfclass -opt/lampp/licenses/pdfclass/LICENCE -opt/lampp/licenses/perl -opt/lampp/licenses/perl/Copying -opt/lampp/licenses/php -opt/lampp/licenses/php/LICENSE -opt/lampp/licenses/phpmyadmin -opt/lampp/licenses/phpmyadmin/LICENSE -opt/lampp/licenses/phpsqliteadmin -opt/lampp/licenses/phpsqliteadmin/copying.txt -opt/lampp/licenses/postgresql -opt/lampp/licenses/postgresql/COPYRIGHT -opt/lampp/licenses/proftpd -opt/lampp/licenses/proftpd/COPYING -opt/lampp/licenses/proftpd/license.txt -opt/lampp/licenses/sablot -opt/lampp/licenses/sablot/README -opt/lampp/licenses/sqlite -opt/lampp/licenses/sqlite/COPYRIGHT -opt/lampp/licenses/sqlite/README -opt/lampp/licenses/webalizer -opt/lampp/licenses/webalizer/COPYING -opt/lampp/licenses/webalizer/Copyright -opt/lampp/licenses/xampp-control-panel -opt/lampp/licenses/xampp-control-panel/LICENSE -opt/lampp/licenses/zlib -opt/lampp/licenses/zlib/README -opt/lampp/licenses/zziplib -opt/lampp/licenses/zziplib/COPYING.ZZIP -opt/lampp/logs -opt/lampp/logs/access_log -opt/lampp/logs/apachestart.log -opt/lampp/logs/error_log -opt/lampp/logs/ssl_request_log -#opt/lampp/man -#opt/lampp/man/man1 -#opt/lampp/man/man1/CA.pl.1 -#opt/lampp/man/man1/GET.1 -#opt/lampp/man/man1/HEAD.1 -#opt/lampp/man/man1/POST.1 -#opt/lampp/man/man1/a2p.1 -#opt/lampp/man/man1/asn1parse.1 -#opt/lampp/man/man1/autopoint.1 -#opt/lampp/man/man1/bsqldb.1 -#opt/lampp/man/man1/bzcmp.1 -#opt/lampp/man/man1/bzdiff.1 -#opt/lampp/man/man1/bzegrep.1 -#opt/lampp/man/man1/bzfgrep.1 -#opt/lampp/man/man1/bzgrep.1 -#opt/lampp/man/man1/bzip2.1 -#opt/lampp/man/man1/bzless.1 -#opt/lampp/man/man1/bzmore.1 -#opt/lampp/man/man1/c2ph.1 -#opt/lampp/man/man1/ca.1 -#opt/lampp/man/man1/captoinfo.1.gz -#opt/lampp/man/man1/ciphers.1 -#opt/lampp/man/man1/cjpeg.1 -#opt/lampp/man/man1/clear.1.gz -#opt/lampp/man/man1/cpan.1 -#opt/lampp/man/man1/crl.1 -#opt/lampp/man/man1/crl2pkcs7.1 -#opt/lampp/man/man1/curl-config.1 -#opt/lampp/man/man1/curl.1 -#opt/lampp/man/man1/dbiprof.1 -#opt/lampp/man/man1/dbiproxy.1 -#opt/lampp/man/man1/dbish.1 -#opt/lampp/man/man1/dbmmanage.1 -#opt/lampp/man/man1/defncopy.1 -#opt/lampp/man/man1/dgst.1 -#opt/lampp/man/man1/dhparam.1 -#opt/lampp/man/man1/djpeg.1 -#opt/lampp/man/man1/dprofpp.1 -#opt/lampp/man/man1/dsa.1 -#opt/lampp/man/man1/dsaparam.1 -#opt/lampp/man/man1/ec.1 -#opt/lampp/man/man1/ecparam.1 -#opt/lampp/man/man1/enc.1 -#opt/lampp/man/man1/enc2xs.1 -#opt/lampp/man/man1/errstr.1 -#opt/lampp/man/man1/fax2ps.1 -#opt/lampp/man/man1/fax2tiff.1 -#opt/lampp/man/man1/find2perl.1 -#opt/lampp/man/man1/freebcp.1 -#opt/lampp/man/man1/ftpcount.1 -#opt/lampp/man/man1/ftptop.1 -#opt/lampp/man/man1/ftpwho.1 -#opt/lampp/man/man1/gendsa.1 -#opt/lampp/man/man1/genrsa.1 -#opt/lampp/man/man1/gettext.1 -#opt/lampp/man/man1/gettextize.1 -#opt/lampp/man/man1/gif2tiff.1 -#opt/lampp/man/man1/h2ph.1 -#opt/lampp/man/man1/h2xs.1 -#opt/lampp/man/man1/htdbm.1 -#opt/lampp/man/man1/htdigest.1 -#opt/lampp/man/man1/htpasswd.1 -#opt/lampp/man/man1/infocmp.1.gz -#opt/lampp/man/man1/infotocap.1.gz -#opt/lampp/man/man1/isamchk.1 -#opt/lampp/man/man1/isamlog.1 -#opt/lampp/man/man1/jpegtran.1 -#opt/lampp/man/man1/ldapadd.1 -#opt/lampp/man/man1/ldapcompare.1 -#opt/lampp/man/man1/ldapdelete.1 -#opt/lampp/man/man1/ldapmodify.1 -#opt/lampp/man/man1/ldapmodrdn.1 -#opt/lampp/man/man1/ldappasswd.1 -#opt/lampp/man/man1/ldapsearch.1 -#opt/lampp/man/man1/ldapwhoami.1 -#opt/lampp/man/man1/libnetcfg.1 -#opt/lampp/man/man1/lwp-download.1 -#opt/lampp/man/man1/lwp-mirror.1 -#opt/lampp/man/man1/lwp-request.1 -#opt/lampp/man/man1/lwp-rget.1 -#opt/lampp/man/man1/makeswf.1 -#opt/lampp/man/man1/md2.1 -#opt/lampp/man/man1/md4.1 -#opt/lampp/man/man1/md5.1 -#opt/lampp/man/man1/mdc2.1 -#opt/lampp/man/man1/msgattrib.1 -#opt/lampp/man/man1/msgcat.1 -#opt/lampp/man/man1/msgcmp.1 -#opt/lampp/man/man1/msgcomm.1 -#opt/lampp/man/man1/msgconv.1 -#opt/lampp/man/man1/msgen.1 -#opt/lampp/man/man1/msgexec.1 -#opt/lampp/man/man1/msgfilter.1 -#opt/lampp/man/man1/msgfmt.1 -#opt/lampp/man/man1/msggrep.1 -#opt/lampp/man/man1/msginit.1 -#opt/lampp/man/man1/msgmerge.1 -#opt/lampp/man/man1/msgunfmt.1 -#opt/lampp/man/man1/msguniq.1 -#opt/lampp/man/man1/msql2mysql.1 -#opt/lampp/man/man1/myisam_ftdump.1 -#opt/lampp/man/man1/myisamchk.1 -#opt/lampp/man/man1/myisamlog.1 -#opt/lampp/man/man1/myisampack.1 -#opt/lampp/man/man1/mysql.1 -#opt/lampp/man/man1/mysql.server.1 -#opt/lampp/man/man1/mysql_config.1 -#opt/lampp/man/man1/mysql_fix_privilege_tables.1 -#opt/lampp/man/man1/mysql_upgrade.1 -#opt/lampp/man/man1/mysql_zap.1 -#opt/lampp/man/man1/mysqlaccess.1 -#opt/lampp/man/man1/mysqladmin.1 -#opt/lampp/man/man1/mysqlbinlog.1 -#opt/lampp/man/man1/mysqlcheck.1 -#opt/lampp/man/man1/mysqld.1 -#opt/lampp/man/man1/mysqld_multi.1 -#opt/lampp/man/man1/mysqld_safe.1 -#opt/lampp/man/man1/mysqldump.1 -#opt/lampp/man/man1/mysqlhotcopy.1 -#opt/lampp/man/man1/mysqlimport.1 -#opt/lampp/man/man1/mysqlman.1 -#opt/lampp/man/man1/mysqlmanager.1 -#opt/lampp/man/man1/mysqlshow.1 -#opt/lampp/man/man1/ngettext.1 -#opt/lampp/man/man1/nseq.1 -#opt/lampp/man/man1/ocsp.1 -#opt/lampp/man/man1/openssl.1 -#opt/lampp/man/man1/ora_explain.1 -#opt/lampp/man/man1/pal2rgb.1 -#opt/lampp/man/man1/passwd.1 -#opt/lampp/man/man1/perl.1 -#opt/lampp/man/man1/perl5004delta.1 -#opt/lampp/man/man1/perl5005delta.1 -#opt/lampp/man/man1/perl561delta.1 -#opt/lampp/man/man1/perl56delta.1 -#opt/lampp/man/man1/perl570delta.1 -#opt/lampp/man/man1/perl571delta.1 -#opt/lampp/man/man1/perl572delta.1 -#opt/lampp/man/man1/perl573delta.1 -#opt/lampp/man/man1/perl581delta.1 -#opt/lampp/man/man1/perl582delta.1 -#opt/lampp/man/man1/perl583delta.1 -#opt/lampp/man/man1/perl584delta.1 -#opt/lampp/man/man1/perl585delta.1 -#opt/lampp/man/man1/perl586delta.1 -#opt/lampp/man/man1/perl587delta.1 -#opt/lampp/man/man1/perl58delta.1 -#opt/lampp/man/man1/perlaix.1 -#opt/lampp/man/man1/perlamiga.1 -#opt/lampp/man/man1/perlapi.1 -#opt/lampp/man/man1/perlapio.1 -#opt/lampp/man/man1/perlapollo.1 -#opt/lampp/man/man1/perlartistic.1 -#opt/lampp/man/man1/perlbeos.1 -#opt/lampp/man/man1/perlbook.1 -#opt/lampp/man/man1/perlboot.1 -#opt/lampp/man/man1/perlbot.1 -#opt/lampp/man/man1/perlbs2000.1 -#opt/lampp/man/man1/perlbug.1 -#opt/lampp/man/man1/perlcall.1 -#opt/lampp/man/man1/perlcc.1 -#opt/lampp/man/man1/perlce.1 -#opt/lampp/man/man1/perlcheat.1 -#opt/lampp/man/man1/perlclib.1 -#opt/lampp/man/man1/perlcn.1 -#opt/lampp/man/man1/perlcompile.1 -#opt/lampp/man/man1/perlcygwin.1 -#opt/lampp/man/man1/perldata.1 -#opt/lampp/man/man1/perldbmfilter.1 -#opt/lampp/man/man1/perldebguts.1 -#opt/lampp/man/man1/perldebtut.1 -#opt/lampp/man/man1/perldebug.1 -#opt/lampp/man/man1/perldelta.1 -#opt/lampp/man/man1/perldgux.1 -#opt/lampp/man/man1/perldiag.1 -#opt/lampp/man/man1/perldoc.1 -#opt/lampp/man/man1/perldos.1 -#opt/lampp/man/man1/perldsc.1 -#opt/lampp/man/man1/perlebcdic.1 -#opt/lampp/man/man1/perlembed.1 -#opt/lampp/man/man1/perlepoc.1 -#opt/lampp/man/man1/perlfaq.1 -#opt/lampp/man/man1/perlfaq1.1 -#opt/lampp/man/man1/perlfaq2.1 -#opt/lampp/man/man1/perlfaq3.1 -#opt/lampp/man/man1/perlfaq4.1 -#opt/lampp/man/man1/perlfaq5.1 -#opt/lampp/man/man1/perlfaq6.1 -#opt/lampp/man/man1/perlfaq7.1 -#opt/lampp/man/man1/perlfaq8.1 -#opt/lampp/man/man1/perlfaq9.1 -#opt/lampp/man/man1/perlfilter.1 -#opt/lampp/man/man1/perlfork.1 -#opt/lampp/man/man1/perlform.1 -#opt/lampp/man/man1/perlfreebsd.1 -#opt/lampp/man/man1/perlfunc.1 -#opt/lampp/man/man1/perlgpl.1 -#opt/lampp/man/man1/perlguts.1 -#opt/lampp/man/man1/perlhack.1 -#opt/lampp/man/man1/perlhist.1 -#opt/lampp/man/man1/perlhpux.1 -#opt/lampp/man/man1/perlhurd.1 -#opt/lampp/man/man1/perlintern.1 -#opt/lampp/man/man1/perlintro.1 -#opt/lampp/man/man1/perliol.1 -#opt/lampp/man/man1/perlipc.1 -#opt/lampp/man/man1/perlirix.1 -#opt/lampp/man/man1/perlivp.1 -#opt/lampp/man/man1/perljp.1 -#opt/lampp/man/man1/perlko.1 -#opt/lampp/man/man1/perllexwarn.1 -#opt/lampp/man/man1/perllocale.1 -#opt/lampp/man/man1/perllol.1 -#opt/lampp/man/man1/perlmachten.1 -#opt/lampp/man/man1/perlmacos.1 -#opt/lampp/man/man1/perlmacosx.1 -#opt/lampp/man/man1/perlmint.1 -#opt/lampp/man/man1/perlmod.1 -#opt/lampp/man/man1/perlmodinstall.1 -#opt/lampp/man/man1/perlmodlib.1 -#opt/lampp/man/man1/perlmodstyle.1 -#opt/lampp/man/man1/perlmpeix.1 -#opt/lampp/man/man1/perlnetware.1 -#opt/lampp/man/man1/perlnewmod.1 -#opt/lampp/man/man1/perlnumber.1 -#opt/lampp/man/man1/perlobj.1 -#opt/lampp/man/man1/perlop.1 -#opt/lampp/man/man1/perlopenbsd.1 -#opt/lampp/man/man1/perlopentut.1 -#opt/lampp/man/man1/perlos2.1 -#opt/lampp/man/man1/perlos390.1 -#opt/lampp/man/man1/perlos400.1 -#opt/lampp/man/man1/perlothrtut.1 -#opt/lampp/man/man1/perlpacktut.1 -#opt/lampp/man/man1/perlplan9.1 -#opt/lampp/man/man1/perlpod.1 -#opt/lampp/man/man1/perlpodspec.1 -#opt/lampp/man/man1/perlport.1 -#opt/lampp/man/man1/perlqnx.1 -#opt/lampp/man/man1/perlre.1 -#opt/lampp/man/man1/perlref.1 -#opt/lampp/man/man1/perlreftut.1 -#opt/lampp/man/man1/perlrequick.1 -#opt/lampp/man/man1/perlreref.1 -#opt/lampp/man/man1/perlretut.1 -#opt/lampp/man/man1/perlrun.1 -#opt/lampp/man/man1/perlsec.1 -#opt/lampp/man/man1/perlsolaris.1 -#opt/lampp/man/man1/perlstyle.1 -#opt/lampp/man/man1/perlsub.1 -#opt/lampp/man/man1/perlsyn.1 -#opt/lampp/man/man1/perlthrtut.1 -#opt/lampp/man/man1/perltie.1 -#opt/lampp/man/man1/perltoc.1 -#opt/lampp/man/man1/perltodo.1 -#opt/lampp/man/man1/perltooc.1 -#opt/lampp/man/man1/perltoot.1 -#opt/lampp/man/man1/perltootc.1 -#opt/lampp/man/man1/perltrap.1 -#opt/lampp/man/man1/perltru64.1 -#opt/lampp/man/man1/perltw.1 -#opt/lampp/man/man1/perlunicode.1 -#opt/lampp/man/man1/perluniintro.1 -#opt/lampp/man/man1/perlutil.1 -#opt/lampp/man/man1/perluts.1 -#opt/lampp/man/man1/perlvar.1 -#opt/lampp/man/man1/perlvmesa.1 -#opt/lampp/man/man1/perlvms.1 -#opt/lampp/man/man1/perlvos.1 -#opt/lampp/man/man1/perlwin32.1 -#opt/lampp/man/man1/perlxs.1 -#opt/lampp/man/man1/perlxstut.1 -#opt/lampp/man/man1/perror.1 -#opt/lampp/man/man1/php-config.1 -#opt/lampp/man/man1/php.1 -#opt/lampp/man/man1/phpize.1 -#opt/lampp/man/man1/piconv.1 -#opt/lampp/man/man1/pkcs12.1 -#opt/lampp/man/man1/pkcs7.1 -#opt/lampp/man/man1/pkcs8.1 -#opt/lampp/man/man1/pl2pm.1 -#opt/lampp/man/man1/pod2html.1 -#opt/lampp/man/man1/pod2latex.1 -#opt/lampp/man/man1/pod2man.1 -#opt/lampp/man/man1/pod2text.1 -#opt/lampp/man/man1/pod2usage.1 -#opt/lampp/man/man1/podchecker.1 -#opt/lampp/man/man1/podselect.1 -#opt/lampp/man/man1/ppm2tiff.1 -#opt/lampp/man/man1/prove.1 -#opt/lampp/man/man1/psed.1 -#opt/lampp/man/man1/pstruct.1 -#opt/lampp/man/man1/ptar.1 -#opt/lampp/man/man1/ptardiff.1 -#opt/lampp/man/man1/rand.1 -#opt/lampp/man/man1/ras2tiff.1 -#opt/lampp/man/man1/rdjpgcom.1 -#opt/lampp/man/man1/replace.1 -#opt/lampp/man/man1/req.1 -#opt/lampp/man/man1/reset.1.gz -#opt/lampp/man/man1/rgb2ycbcr.1 -#opt/lampp/man/man1/ripemd160.1 -#opt/lampp/man/man1/rsa.1 -#opt/lampp/man/man1/rsautl.1 -#opt/lampp/man/man1/s2p.1 -#opt/lampp/man/man1/s_client.1 -#opt/lampp/man/man1/s_server.1 -#opt/lampp/man/man1/s_time.1 -#opt/lampp/man/man1/sabcmd.1 -#opt/lampp/man/man1/safe_mysqld.1 -#opt/lampp/man/man1/sess_id.1 -#opt/lampp/man/man1/sgi2tiff.1 -#opt/lampp/man/man1/sha.1 -#opt/lampp/man/man1/sha1.1 -#opt/lampp/man/man1/showtable.1 -#opt/lampp/man/man1/smime.1 -#opt/lampp/man/man1/speed.1 -#opt/lampp/man/man1/spkac.1 -#opt/lampp/man/man1/splain.1 -#opt/lampp/man/man1/tack.1 -#opt/lampp/man/man1/thumbnail.1 -#opt/lampp/man/man1/tic.1.gz -#opt/lampp/man/man1/tiff2bw.1 -#opt/lampp/man/man1/tiff2ps.1 -#opt/lampp/man/man1/tiff2rgba.1 -#opt/lampp/man/man1/tiffcmp.1 -#opt/lampp/man/man1/tiffcp.1 -#opt/lampp/man/man1/tiffdither.1 -#opt/lampp/man/man1/tiffdump.1 -#opt/lampp/man/man1/tiffgt.1 -#opt/lampp/man/man1/tiffinfo.1 -#opt/lampp/man/man1/tiffmedian.1 -#opt/lampp/man/man1/tiffsplit.1 -#opt/lampp/man/man1/tiffsv.1 -#opt/lampp/man/man1/toe.1.gz -#opt/lampp/man/man1/tput.1.gz -#opt/lampp/man/man1/tset.1.gz -#opt/lampp/man/man1/tsql.1 -#opt/lampp/man/man1/ud.1 -#opt/lampp/man/man1/verify.1 -#opt/lampp/man/man1/version.1 -#opt/lampp/man/man1/webalizer.1 -#opt/lampp/man/man1/wrjpgcom.1 -#opt/lampp/man/man1/x509.1 -#opt/lampp/man/man1/xgettext.1 -#opt/lampp/man/man1/xml2-config.1 -#opt/lampp/man/man1/xmlcatalog.1 -#opt/lampp/man/man1/xmllint.1 -#opt/lampp/man/man1/xsltproc.1 -#opt/lampp/man/man1/xsubpp.1 -#opt/lampp/man/man3 -#opt/lampp/man/man3/APR.3 -#opt/lampp/man/man3/APR::Base64.3 -#opt/lampp/man/man3/APR::Brigade.3 -#opt/lampp/man/man3/APR::Bucket.3 -#opt/lampp/man/man3/APR::BucketAlloc.3 -#opt/lampp/man/man3/APR::BucketType.3 -#opt/lampp/man/man3/APR::Const.3 -#opt/lampp/man/man3/APR::Date.3 -#opt/lampp/man/man3/APR::Error.3 -#opt/lampp/man/man3/APR::Finfo.3 -#opt/lampp/man/man3/APR::IpSubnet.3 -#opt/lampp/man/man3/APR::OS.3 -#opt/lampp/man/man3/APR::PerlIO.3 -#opt/lampp/man/man3/APR::Pool.3 -#opt/lampp/man/man3/APR::Request.3 -#opt/lampp/man/man3/APR::Request::Apache2.3 -#opt/lampp/man/man3/APR::Request::CGI.3 -#opt/lampp/man/man3/APR::Request::Cookie.3 -#opt/lampp/man/man3/APR::Request::Error.3 -#opt/lampp/man/man3/APR::Request::Hook.3 -#opt/lampp/man/man3/APR::Request::Param.3 -#opt/lampp/man/man3/APR::Request::Parser.3 -#opt/lampp/man/man3/APR::SockAddr.3 -#opt/lampp/man/man3/APR::Socket.3 -#opt/lampp/man/man3/APR::Status.3 -#opt/lampp/man/man3/APR::String.3 -#opt/lampp/man/man3/APR::Table.3 -#opt/lampp/man/man3/APR::ThreadMutex.3 -#opt/lampp/man/man3/APR::URI.3 -#opt/lampp/man/man3/APR::UUID.3 -#opt/lampp/man/man3/APR::Util.3 -#opt/lampp/man/man3/ASN1_OBJECT_free.3 -#opt/lampp/man/man3/ASN1_OBJECT_new.3 -#opt/lampp/man/man3/ASN1_STRING_cmp.3 -#opt/lampp/man/man3/ASN1_STRING_data.3 -#opt/lampp/man/man3/ASN1_STRING_dup.3 -#opt/lampp/man/man3/ASN1_STRING_free.3 -#opt/lampp/man/man3/ASN1_STRING_length.3 -#opt/lampp/man/man3/ASN1_STRING_length_set.3 -#opt/lampp/man/man3/ASN1_STRING_new.3 -#opt/lampp/man/man3/ASN1_STRING_print_ex.3 -#opt/lampp/man/man3/ASN1_STRING_print_ex_fp.3 -#opt/lampp/man/man3/ASN1_STRING_set.3 -#opt/lampp/man/man3/ASN1_STRING_type.3 -#opt/lampp/man/man3/ASN1_STRING_type_new.3 -#opt/lampp/man/man3/ASN1_generate_nconf.3 -#opt/lampp/man/man3/ASN1_generate_v3.3 -#opt/lampp/man/man3/AnyDBM_File.3 -#opt/lampp/man/man3/Apache2::Access.3 -#opt/lampp/man/man3/Apache2::Build.3 -#opt/lampp/man/man3/Apache2::CmdParms.3 -#opt/lampp/man/man3/Apache2::Command.3 -#opt/lampp/man/man3/Apache2::Connection.3 -#opt/lampp/man/man3/Apache2::Const.3 -#opt/lampp/man/man3/Apache2::Cookie.3 -#opt/lampp/man/man3/Apache2::Directive.3 -#opt/lampp/man/man3/Apache2::Filter.3 -#opt/lampp/man/man3/Apache2::FilterRec.3 -#opt/lampp/man/man3/Apache2::HookRun.3 -#opt/lampp/man/man3/Apache2::Log.3 -#opt/lampp/man/man3/Apache2::MPM.3 -#opt/lampp/man/man3/Apache2::Module.3 -#opt/lampp/man/man3/Apache2::PerlSections.3 -#opt/lampp/man/man3/Apache2::Process.3 -#opt/lampp/man/man3/Apache2::Reload.3 -#opt/lampp/man/man3/Apache2::Request.3 -#opt/lampp/man/man3/Apache2::RequestIO.3 -#opt/lampp/man/man3/Apache2::RequestRec.3 -#opt/lampp/man/man3/Apache2::RequestUtil.3 -#opt/lampp/man/man3/Apache2::Resource.3 -#opt/lampp/man/man3/Apache2::Response.3 -#opt/lampp/man/man3/Apache2::ServerRec.3 -#opt/lampp/man/man3/Apache2::ServerUtil.3 -#opt/lampp/man/man3/Apache2::SizeLimit.3 -#opt/lampp/man/man3/Apache2::Status.3 -#opt/lampp/man/man3/Apache2::SubProcess.3 -#opt/lampp/man/man3/Apache2::SubRequest.3 -#opt/lampp/man/man3/Apache2::URI.3 -#opt/lampp/man/man3/Apache2::Upload.3 -#opt/lampp/man/man3/Apache2::Util.3 -#opt/lampp/man/man3/Apache2::compat.3 -#opt/lampp/man/man3/Apache2::porting.3 -#opt/lampp/man/man3/Apache::Build.3 -#opt/lampp/man/man3/Apache::Log.3 -#opt/lampp/man/man3/Apache::Reload.3 -#opt/lampp/man/man3/Apache::RequestRec.3 -#opt/lampp/man/man3/Apache::ServerUtil.3 -#opt/lampp/man/man3/Apache::SubProcess.3 -#opt/lampp/man/man3/Apache::Test.3 -#opt/lampp/man/man3/Apache::TestConfig.3 -#opt/lampp/man/man3/Apache::TestConfigData.3 -#opt/lampp/man/man3/Apache::TestMB.3 -#opt/lampp/man/man3/Apache::TestMM.3 -#opt/lampp/man/man3/Apache::TestReport.3 -#opt/lampp/man/man3/Apache::TestRequest.3 -#opt/lampp/man/man3/Apache::TestRun.3 -#opt/lampp/man/man3/Apache::TestRunPHP.3 -#opt/lampp/man/man3/Apache::TestRunPerl.3 -#opt/lampp/man/man3/Apache::TestSmoke.3 -#opt/lampp/man/man3/Apache::TestTrace.3 -#opt/lampp/man/man3/Apache::TestUtil.3 -#opt/lampp/man/man3/Apache::compat.3 -#opt/lampp/man/man3/Archive::Tar.3 -#opt/lampp/man/man3/Archive::Tar::File.3 -#opt/lampp/man/man3/Archive::Tar::Win32.3 -#opt/lampp/man/man3/Attribute::Handlers.3 -#opt/lampp/man/man3/Attribute::Handlers::demo::Demo.3 -#opt/lampp/man/man3/Attribute::Handlers::demo::Descriptions.3 -#opt/lampp/man/man3/Attribute::Handlers::demo::MyClass.3 -#opt/lampp/man/man3/AutoLoader.3 -#opt/lampp/man/man3/AutoSplit.3 -#opt/lampp/man/man3/B.3 -#opt/lampp/man/man3/B::Asmdata.3 -#opt/lampp/man/man3/B::Assembler.3 -#opt/lampp/man/man3/B::Bblock.3 -#opt/lampp/man/man3/B::Bytecode.3 -#opt/lampp/man/man3/B::C.3 -#opt/lampp/man/man3/B::CC.3 -#opt/lampp/man/man3/B::Concise.3 -#opt/lampp/man/man3/B::Debug.3 -#opt/lampp/man/man3/B::Deparse.3 -#opt/lampp/man/man3/B::Disassembler.3 -#opt/lampp/man/man3/B::Lint.3 -#opt/lampp/man/man3/B::Showlex.3 -#opt/lampp/man/man3/B::Stackobj.3 -#opt/lampp/man/man3/B::Stash.3 -#opt/lampp/man/man3/B::Terse.3 -#opt/lampp/man/man3/B::Xref.3 -#opt/lampp/man/man3/BF_cbc_encrypt.3 -#opt/lampp/man/man3/BF_cfb64_encrypt.3 -#opt/lampp/man/man3/BF_decrypt.3 -#opt/lampp/man/man3/BF_ecb_encrypt.3 -#opt/lampp/man/man3/BF_encrypt.3 -#opt/lampp/man/man3/BF_ofb64_encrypt.3 -#opt/lampp/man/man3/BF_options.3 -#opt/lampp/man/man3/BF_set_key.3 -#opt/lampp/man/man3/BIO_append_filename.3 -#opt/lampp/man/man3/BIO_callback_ctrl.3 -#opt/lampp/man/man3/BIO_ctrl.3 -#opt/lampp/man/man3/BIO_ctrl_get_read_request.3 -#opt/lampp/man/man3/BIO_ctrl_get_write_guarantee.3 -#opt/lampp/man/man3/BIO_ctrl_pending.3 -#opt/lampp/man/man3/BIO_ctrl_reset_read_request.3 -#opt/lampp/man/man3/BIO_ctrl_wpending.3 -#opt/lampp/man/man3/BIO_debug_callback.3 -#opt/lampp/man/man3/BIO_destroy_bio_pair.3 -#opt/lampp/man/man3/BIO_do_accept.3 -#opt/lampp/man/man3/BIO_do_connect.3 -#opt/lampp/man/man3/BIO_eof.3 -#opt/lampp/man/man3/BIO_f_base64.3 -#opt/lampp/man/man3/BIO_f_buffer.3 -#opt/lampp/man/man3/BIO_f_cipher.3 -#opt/lampp/man/man3/BIO_f_md.3 -#opt/lampp/man/man3/BIO_f_null.3 -#opt/lampp/man/man3/BIO_f_ssl.3 -#opt/lampp/man/man3/BIO_find_type.3 -#opt/lampp/man/man3/BIO_flush.3 -#opt/lampp/man/man3/BIO_free.3 -#opt/lampp/man/man3/BIO_free_all.3 -#opt/lampp/man/man3/BIO_get_accept_port.3 -#opt/lampp/man/man3/BIO_get_bind_mode.3 -#opt/lampp/man/man3/BIO_get_callback.3 -#opt/lampp/man/man3/BIO_get_callback_arg.3 -#opt/lampp/man/man3/BIO_get_cipher_ctx.3 -#opt/lampp/man/man3/BIO_get_cipher_status.3 -#opt/lampp/man/man3/BIO_get_close.3 -#opt/lampp/man/man3/BIO_get_conn_hostname.3 -#opt/lampp/man/man3/BIO_get_conn_int_port.3 -#opt/lampp/man/man3/BIO_get_conn_ip.3 -#opt/lampp/man/man3/BIO_get_conn_port.3 -#opt/lampp/man/man3/BIO_get_fd.3 -#opt/lampp/man/man3/BIO_get_fp.3 -#opt/lampp/man/man3/BIO_get_info_callback.3 -#opt/lampp/man/man3/BIO_get_md.3 -#opt/lampp/man/man3/BIO_get_md_ctx.3 -#opt/lampp/man/man3/BIO_get_mem_data.3 -#opt/lampp/man/man3/BIO_get_mem_ptr.3 -#opt/lampp/man/man3/BIO_get_num_renegotiates.3 -#opt/lampp/man/man3/BIO_get_read_request.3 -#opt/lampp/man/man3/BIO_get_retry_BIO.3 -#opt/lampp/man/man3/BIO_get_retry_reason.3 -#opt/lampp/man/man3/BIO_get_ssl.3 -#opt/lampp/man/man3/BIO_get_write_buf_size.3 -#opt/lampp/man/man3/BIO_get_write_guarantee.3 -#opt/lampp/man/man3/BIO_gets.3 -#opt/lampp/man/man3/BIO_int_ctrl.3 -#opt/lampp/man/man3/BIO_make_bio_pair.3 -#opt/lampp/man/man3/BIO_new.3 -#opt/lampp/man/man3/BIO_new_bio_pair.3 -#opt/lampp/man/man3/BIO_new_buffer_ssl_connect.3 -#opt/lampp/man/man3/BIO_new_fd.3 -#opt/lampp/man/man3/BIO_new_file.3 -#opt/lampp/man/man3/BIO_new_fp.3 -#opt/lampp/man/man3/BIO_new_mem_buf.3 -#opt/lampp/man/man3/BIO_new_socket.3 -#opt/lampp/man/man3/BIO_new_ssl.3 -#opt/lampp/man/man3/BIO_new_ssl_connect.3 -#opt/lampp/man/man3/BIO_next.3 -#opt/lampp/man/man3/BIO_pending.3 -#opt/lampp/man/man3/BIO_pop.3 -#opt/lampp/man/man3/BIO_ptr_ctrl.3 -#opt/lampp/man/man3/BIO_push.3 -#opt/lampp/man/man3/BIO_puts.3 -#opt/lampp/man/man3/BIO_read.3 -#opt/lampp/man/man3/BIO_read_filename.3 -#opt/lampp/man/man3/BIO_reset.3 -#opt/lampp/man/man3/BIO_retry_type.3 -#opt/lampp/man/man3/BIO_rw_filename.3 -#opt/lampp/man/man3/BIO_s_accept.3 -#opt/lampp/man/man3/BIO_s_bio.3 -#opt/lampp/man/man3/BIO_s_connect.3 -#opt/lampp/man/man3/BIO_s_fd.3 -#opt/lampp/man/man3/BIO_s_file.3 -#opt/lampp/man/man3/BIO_s_mem.3 -#opt/lampp/man/man3/BIO_s_null.3 -#opt/lampp/man/man3/BIO_s_socket.3 -#opt/lampp/man/man3/BIO_seek.3 -#opt/lampp/man/man3/BIO_set.3 -#opt/lampp/man/man3/BIO_set_accept_bios.3 -#opt/lampp/man/man3/BIO_set_accept_port.3 -#opt/lampp/man/man3/BIO_set_bind_mode.3 -#opt/lampp/man/man3/BIO_set_callback.3 -#opt/lampp/man/man3/BIO_set_callback_arg.3 -#opt/lampp/man/man3/BIO_set_cipher.3 -#opt/lampp/man/man3/BIO_set_close.3 -#opt/lampp/man/man3/BIO_set_conn_hostname.3 -#opt/lampp/man/man3/BIO_set_conn_int_port.3 -#opt/lampp/man/man3/BIO_set_conn_ip.3 -#opt/lampp/man/man3/BIO_set_conn_port.3 -#opt/lampp/man/man3/BIO_set_fd.3 -#opt/lampp/man/man3/BIO_set_fp.3 -#opt/lampp/man/man3/BIO_set_info_callback.3 -#opt/lampp/man/man3/BIO_set_md.3 -#opt/lampp/man/man3/BIO_set_mem_buf.3 -#opt/lampp/man/man3/BIO_set_mem_eof_return.3 -#opt/lampp/man/man3/BIO_set_nbio.3 -#opt/lampp/man/man3/BIO_set_nbio_accept.3 -#opt/lampp/man/man3/BIO_set_ssl.3 -#opt/lampp/man/man3/BIO_set_ssl_mode.3 -#opt/lampp/man/man3/BIO_set_ssl_renegotiate_bytes.3 -#opt/lampp/man/man3/BIO_set_ssl_renegotiate_timeout.3 -#opt/lampp/man/man3/BIO_set_write_buf_size.3 -#opt/lampp/man/man3/BIO_should_io_special.3 -#opt/lampp/man/man3/BIO_should_read.3 -#opt/lampp/man/man3/BIO_should_retry.3 -#opt/lampp/man/man3/BIO_should_write.3 -#opt/lampp/man/man3/BIO_shutdown_wr.3 -#opt/lampp/man/man3/BIO_ssl_copy_session_id.3 -#opt/lampp/man/man3/BIO_ssl_shutdown.3 -#opt/lampp/man/man3/BIO_tell.3 -#opt/lampp/man/man3/BIO_vfree.3 -#opt/lampp/man/man3/BIO_wpending.3 -#opt/lampp/man/man3/BIO_write.3 -#opt/lampp/man/man3/BIO_write_filename.3 -#opt/lampp/man/man3/BN_BLINDING_convert.3 -#opt/lampp/man/man3/BN_BLINDING_convert_ex.3 -#opt/lampp/man/man3/BN_BLINDING_create_param.3 -#opt/lampp/man/man3/BN_BLINDING_free.3 -#opt/lampp/man/man3/BN_BLINDING_get_flags.3 -#opt/lampp/man/man3/BN_BLINDING_get_thread_id.3 -#opt/lampp/man/man3/BN_BLINDING_invert.3 -#opt/lampp/man/man3/BN_BLINDING_invert_ex.3 -#opt/lampp/man/man3/BN_BLINDING_new.3 -#opt/lampp/man/man3/BN_BLINDING_set_flags.3 -#opt/lampp/man/man3/BN_BLINDING_set_thread_id.3 -#opt/lampp/man/man3/BN_BLINDING_update.3 -#opt/lampp/man/man3/BN_CTX_end.3 -#opt/lampp/man/man3/BN_CTX_free.3 -#opt/lampp/man/man3/BN_CTX_get.3 -#opt/lampp/man/man3/BN_CTX_init.3 -#opt/lampp/man/man3/BN_CTX_new.3 -#opt/lampp/man/man3/BN_CTX_start.3 -#opt/lampp/man/man3/BN_MONT_CTX_copy.3 -#opt/lampp/man/man3/BN_MONT_CTX_free.3 -#opt/lampp/man/man3/BN_MONT_CTX_init.3 -#opt/lampp/man/man3/BN_MONT_CTX_new.3 -#opt/lampp/man/man3/BN_MONT_CTX_set.3 -#opt/lampp/man/man3/BN_RECP_CTX_free.3 -#opt/lampp/man/man3/BN_RECP_CTX_init.3 -#opt/lampp/man/man3/BN_RECP_CTX_new.3 -#opt/lampp/man/man3/BN_RECP_CTX_set.3 -#opt/lampp/man/man3/BN_add.3 -#opt/lampp/man/man3/BN_add_word.3 -#opt/lampp/man/man3/BN_bin2bn.3 -#opt/lampp/man/man3/BN_bn2bin.3 -#opt/lampp/man/man3/BN_bn2dec.3 -#opt/lampp/man/man3/BN_bn2hex.3 -#opt/lampp/man/man3/BN_bn2mpi.3 -#opt/lampp/man/man3/BN_clear.3 -#opt/lampp/man/man3/BN_clear_bit.3 -#opt/lampp/man/man3/BN_clear_free.3 -#opt/lampp/man/man3/BN_cmp.3 -#opt/lampp/man/man3/BN_copy.3 -#opt/lampp/man/man3/BN_dec2bn.3 -#opt/lampp/man/man3/BN_div.3 -#opt/lampp/man/man3/BN_div_recp.3 -#opt/lampp/man/man3/BN_div_word.3 -#opt/lampp/man/man3/BN_dup.3 -#opt/lampp/man/man3/BN_exp.3 -#opt/lampp/man/man3/BN_free.3 -#opt/lampp/man/man3/BN_from_montgomery.3 -#opt/lampp/man/man3/BN_gcd.3 -#opt/lampp/man/man3/BN_generate_prime.3 -#opt/lampp/man/man3/BN_get_word.3 -#opt/lampp/man/man3/BN_hex2bn.3 -#opt/lampp/man/man3/BN_init.3 -#opt/lampp/man/man3/BN_is_bit_set.3 -#opt/lampp/man/man3/BN_is_odd.3 -#opt/lampp/man/man3/BN_is_one.3 -#opt/lampp/man/man3/BN_is_prime.3 -#opt/lampp/man/man3/BN_is_prime_fasttest.3 -#opt/lampp/man/man3/BN_is_word.3 -#opt/lampp/man/man3/BN_is_zero.3 -#opt/lampp/man/man3/BN_lshift.3 -#opt/lampp/man/man3/BN_lshift1.3 -#opt/lampp/man/man3/BN_mask_bits.3 -#opt/lampp/man/man3/BN_mod.3 -#opt/lampp/man/man3/BN_mod_add.3 -#opt/lampp/man/man3/BN_mod_exp.3 -#opt/lampp/man/man3/BN_mod_inverse.3 -#opt/lampp/man/man3/BN_mod_mul.3 -#opt/lampp/man/man3/BN_mod_mul_montgomery.3 -#opt/lampp/man/man3/BN_mod_mul_reciprocal.3 -#opt/lampp/man/man3/BN_mod_sqr.3 -#opt/lampp/man/man3/BN_mod_sub.3 -#opt/lampp/man/man3/BN_mod_word.3 -#opt/lampp/man/man3/BN_mpi2bn.3 -#opt/lampp/man/man3/BN_mul.3 -#opt/lampp/man/man3/BN_mul_word.3 -#opt/lampp/man/man3/BN_new.3 -#opt/lampp/man/man3/BN_nnmod.3 -#opt/lampp/man/man3/BN_num_bits.3 -#opt/lampp/man/man3/BN_num_bits_word.3 -#opt/lampp/man/man3/BN_num_bytes.3 -#opt/lampp/man/man3/BN_one.3 -#opt/lampp/man/man3/BN_print.3 -#opt/lampp/man/man3/BN_print_fp.3 -#opt/lampp/man/man3/BN_pseudo_rand.3 -#opt/lampp/man/man3/BN_rand.3 -#opt/lampp/man/man3/BN_rshift.3 -#opt/lampp/man/man3/BN_rshift1.3 -#opt/lampp/man/man3/BN_set_bit.3 -#opt/lampp/man/man3/BN_set_word.3 -#opt/lampp/man/man3/BN_sqr.3 -#opt/lampp/man/man3/BN_sub.3 -#opt/lampp/man/man3/BN_sub_word.3 -#opt/lampp/man/man3/BN_swap.3 -#opt/lampp/man/man3/BN_to_montgomery.3 -#opt/lampp/man/man3/BN_ucmp.3 -#opt/lampp/man/man3/BN_value_one.3 -#opt/lampp/man/man3/BN_zero.3 -#opt/lampp/man/man3/BUF_MEM_free.3 -#opt/lampp/man/man3/BUF_MEM_grow.3 -#opt/lampp/man/man3/BUF_MEM_new.3 -#opt/lampp/man/man3/BUF_strdup.3 -#opt/lampp/man/man3/Benchmark.3 -#opt/lampp/man/man3/Bundle::Apache2.3 -#opt/lampp/man/man3/Bundle::ApacheTest.3 -#opt/lampp/man/man3/Bundle::CPAN.3 -#opt/lampp/man/man3/Bundle::DBD::mysql.3 -#opt/lampp/man/man3/Bundle::DBI.3 -#opt/lampp/man/man3/Bundle::LWP.3 -#opt/lampp/man/man3/ByteLoader.3 -#opt/lampp/man/man3/CGI.3 -#opt/lampp/man/man3/CGI::Apache.3 -#opt/lampp/man/man3/CGI::Carp.3 -#opt/lampp/man/man3/CGI::Cookie.3 -#opt/lampp/man/man3/CGI::Fast.3 -#opt/lampp/man/man3/CGI::Pretty.3 -#opt/lampp/man/man3/CGI::Push.3 -#opt/lampp/man/man3/CGI::Switch.3 -#opt/lampp/man/man3/CGI::Util.3 -#opt/lampp/man/man3/COLOR_PAIR.3ncurses.gz -#opt/lampp/man/man3/CONF_modules_free.3 -#opt/lampp/man/man3/CONF_modules_load.3 -#opt/lampp/man/man3/CONF_modules_load_file.3 -#opt/lampp/man/man3/CONF_modules_unload.3 -#opt/lampp/man/man3/CPAN.3 -#opt/lampp/man/man3/CPAN::Admin.3 -#opt/lampp/man/man3/CPAN::FirstTime.3 -#opt/lampp/man/man3/CPAN::Nox.3 -#opt/lampp/man/man3/CPAN::Version.3 -#opt/lampp/man/man3/CPAN::WAIT.3 -#opt/lampp/man/man3/CRYPTO_destroy_dynlockid.3 -#opt/lampp/man/man3/CRYPTO_get_ex_data.3 -#opt/lampp/man/man3/CRYPTO_get_new_dynlockid.3 -#opt/lampp/man/man3/CRYPTO_lock.3 -#opt/lampp/man/man3/CRYPTO_num_locks.3 -#opt/lampp/man/man3/CRYPTO_set_dynlock_create_callback.3 -#opt/lampp/man/man3/CRYPTO_set_dynlock_destroy_callback.3 -#opt/lampp/man/man3/CRYPTO_set_dynlock_lock_callback.3 -#opt/lampp/man/man3/CRYPTO_set_ex_data.3 -#opt/lampp/man/man3/CRYPTO_set_id_callback.3 -#opt/lampp/man/man3/CRYPTO_set_locking_callback.3 -#opt/lampp/man/man3/Carp.3 -#opt/lampp/man/man3/Carp::Heavy.3 -#opt/lampp/man/man3/Class::ISA.3 -#opt/lampp/man/man3/Class::Struct.3 -#opt/lampp/man/man3/Compress::Zlib.3 -#opt/lampp/man/man3/Config.3 -#opt/lampp/man/man3/Cwd.3 -#opt/lampp/man/man3/DB.3 -#opt/lampp/man/man3/DBD::DBD-PgPP.ja.3 -#opt/lampp/man/man3/DBD::DBM.3 -#opt/lampp/man/man3/DBD::File.3 -#opt/lampp/man/man3/DBD::InterBase.3 -#opt/lampp/man/man3/DBD::Oracle.3 -#opt/lampp/man/man3/DBD::Oraperl.3 -#opt/lampp/man/man3/DBD::PgPP.3 -#opt/lampp/man/man3/DBD::Proxy.3 -#opt/lampp/man/man3/DBD::SQLite.3 -#opt/lampp/man/man3/DBD::SQLite2.3 -#opt/lampp/man/man3/DBD::Sponge.3 -#opt/lampp/man/man3/DBD::mysql.3 -#opt/lampp/man/man3/DBD::mysql::INSTALL.3 -#opt/lampp/man/man3/DBI.3 -#opt/lampp/man/man3/DBI::Const::GetInfo::ANSI.3 -#opt/lampp/man/man3/DBI::Const::GetInfo::ODBC.3 -#opt/lampp/man/man3/DBI::Const::GetInfoReturn.3 -#opt/lampp/man/man3/DBI::Const::GetInfoType.3 -#opt/lampp/man/man3/DBI::DBD.3 -#opt/lampp/man/man3/DBI::DBD::Metadata.3 -#opt/lampp/man/man3/DBI::FAQ.3 -#opt/lampp/man/man3/DBI::Format.3 -#opt/lampp/man/man3/DBI::Profile.3 -#opt/lampp/man/man3/DBI::ProfileData.3 -#opt/lampp/man/man3/DBI::ProfileDumper.3 -#opt/lampp/man/man3/DBI::ProfileDumper::Apache.3 -#opt/lampp/man/man3/DBI::ProxyServer.3 -#opt/lampp/man/man3/DBI::PurePerl.3 -#opt/lampp/man/man3/DBI::SQL::Nano.3 -#opt/lampp/man/man3/DBI::Shell.3 -#opt/lampp/man/man3/DBI::W32ODBC.3 -#opt/lampp/man/man3/DBM_Filter.3 -#opt/lampp/man/man3/DBM_Filter::compress.3 -#opt/lampp/man/man3/DBM_Filter::encode.3 -#opt/lampp/man/man3/DBM_Filter::int32.3 -#opt/lampp/man/man3/DBM_Filter::null.3 -#opt/lampp/man/man3/DBM_Filter::utf8.3 -#opt/lampp/man/man3/DB_File.3 -#opt/lampp/man/man3/DES_cbc_cksum.3 -#opt/lampp/man/man3/DES_cfb64_encrypt.3 -#opt/lampp/man/man3/DES_cfb_encrypt.3 -#opt/lampp/man/man3/DES_crypt.3 -#opt/lampp/man/man3/DES_ecb2_encrypt.3 -#opt/lampp/man/man3/DES_ecb3_encrypt.3 -#opt/lampp/man/man3/DES_ecb_encrypt.3 -#opt/lampp/man/man3/DES_ede2_cbc_encrypt.3 -#opt/lampp/man/man3/DES_ede2_cfb64_encrypt.3 -#opt/lampp/man/man3/DES_ede2_ofb64_encrypt.3 -#opt/lampp/man/man3/DES_ede3_cbc_encrypt.3 -#opt/lampp/man/man3/DES_ede3_cbcm_encrypt.3 -#opt/lampp/man/man3/DES_ede3_cfb64_encrypt.3 -#opt/lampp/man/man3/DES_ede3_ofb64_encrypt.3 -#opt/lampp/man/man3/DES_enc_read.3 -#opt/lampp/man/man3/DES_enc_write.3 -#opt/lampp/man/man3/DES_fcrypt.3 -#opt/lampp/man/man3/DES_is_weak_key.3 -#opt/lampp/man/man3/DES_key_sched.3 -#opt/lampp/man/man3/DES_ncbc_encrypt.3 -#opt/lampp/man/man3/DES_ofb64_encrypt.3 -#opt/lampp/man/man3/DES_ofb_encrypt.3 -#opt/lampp/man/man3/DES_pcbc_encrypt.3 -#opt/lampp/man/man3/DES_quad_cksum.3 -#opt/lampp/man/man3/DES_random_key.3 -#opt/lampp/man/man3/DES_set_key.3 -#opt/lampp/man/man3/DES_set_key_checked.3 -#opt/lampp/man/man3/DES_set_key_unchecked.3 -#opt/lampp/man/man3/DES_set_odd_parity.3 -#opt/lampp/man/man3/DES_string_to_2keys.3 -#opt/lampp/man/man3/DES_string_to_key.3 -#opt/lampp/man/man3/DES_xcbc_encrypt.3 -#opt/lampp/man/man3/DH_OpenSSL.3 -#opt/lampp/man/man3/DH_check.3 -#opt/lampp/man/man3/DH_compute_key.3 -#opt/lampp/man/man3/DH_free.3 -#opt/lampp/man/man3/DH_generate_key.3 -#opt/lampp/man/man3/DH_generate_parameters.3 -#opt/lampp/man/man3/DH_get_default_method.3 -#opt/lampp/man/man3/DH_get_ex_data.3 -#opt/lampp/man/man3/DH_get_ex_new_index.3 -#opt/lampp/man/man3/DH_new.3 -#opt/lampp/man/man3/DH_new_method.3 -#opt/lampp/man/man3/DH_set_default_method.3 -#opt/lampp/man/man3/DH_set_ex_data.3 -#opt/lampp/man/man3/DH_set_method.3 -#opt/lampp/man/man3/DH_size.3 -#opt/lampp/man/man3/DHparams_print.3 -#opt/lampp/man/man3/DHparams_print_fp.3 -#opt/lampp/man/man3/DSA_OpenSSL.3 -#opt/lampp/man/man3/DSA_SIG_free.3 -#opt/lampp/man/man3/DSA_SIG_new.3 -#opt/lampp/man/man3/DSA_do_sign.3 -#opt/lampp/man/man3/DSA_do_verify.3 -#opt/lampp/man/man3/DSA_dup_DH.3 -#opt/lampp/man/man3/DSA_free.3 -#opt/lampp/man/man3/DSA_generate_key.3 -#opt/lampp/man/man3/DSA_generate_parameters.3 -#opt/lampp/man/man3/DSA_get_default_method.3 -#opt/lampp/man/man3/DSA_get_ex_data.3 -#opt/lampp/man/man3/DSA_get_ex_new_index.3 -#opt/lampp/man/man3/DSA_new.3 -#opt/lampp/man/man3/DSA_new_method.3 -#opt/lampp/man/man3/DSA_print.3 -#opt/lampp/man/man3/DSA_print_fp.3 -#opt/lampp/man/man3/DSA_set_default_method.3 -#opt/lampp/man/man3/DSA_set_ex_data.3 -#opt/lampp/man/man3/DSA_set_method.3 -#opt/lampp/man/man3/DSA_sign.3 -#opt/lampp/man/man3/DSA_sign_setup.3 -#opt/lampp/man/man3/DSA_size.3 -#opt/lampp/man/man3/DSA_verify.3 -#opt/lampp/man/man3/DSAparams_print.3 -#opt/lampp/man/man3/DSAparams_print_fp.3 -#opt/lampp/man/man3/Data::Dumper.3 -#opt/lampp/man/man3/Data::ShowTable.3 -#opt/lampp/man/man3/Devel::DProf.3 -#opt/lampp/man/man3/Devel::PPPort.3 -#opt/lampp/man/man3/Devel::Peek.3 -#opt/lampp/man/man3/Devel::SelfStubber.3 -#opt/lampp/man/man3/Digest.3 -#opt/lampp/man/man3/Digest::MD5.3 -#opt/lampp/man/man3/Digest::base.3 -#opt/lampp/man/man3/Digest::file.3 -#opt/lampp/man/man3/DirHandle.3 -#opt/lampp/man/man3/Dumpvalue.3 -#opt/lampp/man/man3/DynaLoader.3 -#opt/lampp/man/man3/ERR_GET_FUNC.3 -#opt/lampp/man/man3/ERR_GET_LIB.3 -#opt/lampp/man/man3/ERR_GET_REASON.3 -#opt/lampp/man/man3/ERR_PACK.3 -#opt/lampp/man/man3/ERR_add_error_data.3 -#opt/lampp/man/man3/ERR_clear_error.3 -#opt/lampp/man/man3/ERR_error_string.3 -#opt/lampp/man/man3/ERR_error_string_n.3 -#opt/lampp/man/man3/ERR_free_strings.3 -#opt/lampp/man/man3/ERR_func_error_string.3 -#opt/lampp/man/man3/ERR_get_error.3 -#opt/lampp/man/man3/ERR_get_error_line.3 -#opt/lampp/man/man3/ERR_get_error_line_data.3 -#opt/lampp/man/man3/ERR_get_next_error_library.3 -#opt/lampp/man/man3/ERR_lib_error_string.3 -#opt/lampp/man/man3/ERR_load_UI_strings.3 -#opt/lampp/man/man3/ERR_load_crypto_strings.3 -#opt/lampp/man/man3/ERR_load_strings.3 -#opt/lampp/man/man3/ERR_peek_error.3 -#opt/lampp/man/man3/ERR_peek_error_line.3 -#opt/lampp/man/man3/ERR_peek_error_line_data.3 -#opt/lampp/man/man3/ERR_peek_last_error.3 -#opt/lampp/man/man3/ERR_peek_last_error_line.3 -#opt/lampp/man/man3/ERR_peek_last_error_line_data.3 -#opt/lampp/man/man3/ERR_pop_to_mark.3 -#opt/lampp/man/man3/ERR_print_errors.3 -#opt/lampp/man/man3/ERR_print_errors_fp.3 -#opt/lampp/man/man3/ERR_put_error.3 -#opt/lampp/man/man3/ERR_reason_error_string.3 -#opt/lampp/man/man3/ERR_remove_state.3 -#opt/lampp/man/man3/ERR_set_mark.3 -#opt/lampp/man/man3/EVP_BytesToKey.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_block_size.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_cipher.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_cleanup.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_ctrl.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_flags.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_get_app_data.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_init.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_iv_length.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_key_length.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_mode.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_nid.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_set_app_data.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_set_key_length.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_set_padding.3 -#opt/lampp/man/man3/EVP_CIPHER_CTX_type.3 -#opt/lampp/man/man3/EVP_CIPHER_asn1_to_param.3 -#opt/lampp/man/man3/EVP_CIPHER_block_size.3 -#opt/lampp/man/man3/EVP_CIPHER_flags.3 -#opt/lampp/man/man3/EVP_CIPHER_iv_length.3 -#opt/lampp/man/man3/EVP_CIPHER_key_length.3 -#opt/lampp/man/man3/EVP_CIPHER_mode.3 -#opt/lampp/man/man3/EVP_CIPHER_nid.3 -#opt/lampp/man/man3/EVP_CIPHER_param_to_asn1.3 -#opt/lampp/man/man3/EVP_CIPHER_type.3 -#opt/lampp/man/man3/EVP_CipherFinal.3 -#opt/lampp/man/man3/EVP_CipherFinal_ex.3 -#opt/lampp/man/man3/EVP_CipherInit.3 -#opt/lampp/man/man3/EVP_CipherInit_ex.3 -#opt/lampp/man/man3/EVP_CipherUpdate.3 -#opt/lampp/man/man3/EVP_DecryptFinal.3 -#opt/lampp/man/man3/EVP_DecryptFinal_ex.3 -#opt/lampp/man/man3/EVP_DecryptInit.3 -#opt/lampp/man/man3/EVP_DecryptInit_ex.3 -#opt/lampp/man/man3/EVP_DecryptUpdate.3 -#opt/lampp/man/man3/EVP_DigestFinal_ex.3 -#opt/lampp/man/man3/EVP_DigestInit.3 -#opt/lampp/man/man3/EVP_DigestInit_ex.3 -#opt/lampp/man/man3/EVP_DigestUpdate.3 -#opt/lampp/man/man3/EVP_EncryptFinal.3 -#opt/lampp/man/man3/EVP_EncryptFinal_ex.3 -#opt/lampp/man/man3/EVP_EncryptInit.3 -#opt/lampp/man/man3/EVP_EncryptInit_ex.3 -#opt/lampp/man/man3/EVP_EncryptUpdate.3 -#opt/lampp/man/man3/EVP_MAX_MD_SIZE.3 -#opt/lampp/man/man3/EVP_MD_CTX_block_size.3 -#opt/lampp/man/man3/EVP_MD_CTX_cleanup.3 -#opt/lampp/man/man3/EVP_MD_CTX_copy.3 -#opt/lampp/man/man3/EVP_MD_CTX_copy_exEVP_MD_CTX_copy.3 -#opt/lampp/man/man3/EVP_MD_CTX_copy_ex.3 -#opt/lampp/man/man3/EVP_MD_CTX_create.3 -#opt/lampp/man/man3/EVP_MD_CTX_destroy.3 -#opt/lampp/man/man3/EVP_MD_CTX_init.3 -#opt/lampp/man/man3/EVP_MD_CTX_md.3 -#opt/lampp/man/man3/EVP_MD_CTX_size.3 -#opt/lampp/man/man3/EVP_MD_CTX_type.3 -#opt/lampp/man/man3/EVP_MD_block_size.3 -#opt/lampp/man/man3/EVP_MD_pkey_type.3 -#opt/lampp/man/man3/EVP_MD_size.3 -#opt/lampp/man/man3/EVP_MD_type.3 -#opt/lampp/man/man3/EVP_OpenFinal.3 -#opt/lampp/man/man3/EVP_OpenInit.3 -#opt/lampp/man/man3/EVP_OpenUpdate.3 -#opt/lampp/man/man3/EVP_PKEY_assign_DH.3 -#opt/lampp/man/man3/EVP_PKEY_assign_DSA.3 -#opt/lampp/man/man3/EVP_PKEY_assign_EC_KEY.3 -#opt/lampp/man/man3/EVP_PKEY_assign_RSA.3 -#opt/lampp/man/man3/EVP_PKEY_free.3 -#opt/lampp/man/man3/EVP_PKEY_get1_DH.3 -#opt/lampp/man/man3/EVP_PKEY_get1_DSA.3 -#opt/lampp/man/man3/EVP_PKEY_get1_EC_KEY.3 -#opt/lampp/man/man3/EVP_PKEY_get1_RSA.3 -#opt/lampp/man/man3/EVP_PKEY_new.3 -#opt/lampp/man/man3/EVP_PKEY_set1_DH.3 -#opt/lampp/man/man3/EVP_PKEY_set1_DSA.3 -#opt/lampp/man/man3/EVP_PKEY_set1_EC_KEY.3 -#opt/lampp/man/man3/EVP_PKEY_set1_RSA.3 -#opt/lampp/man/man3/EVP_PKEY_type.3 -#opt/lampp/man/man3/EVP_SealFinal.3 -#opt/lampp/man/man3/EVP_SealInit.3 -#opt/lampp/man/man3/EVP_SealUpdate.3 -#opt/lampp/man/man3/EVP_SignFinal.3 -#opt/lampp/man/man3/EVP_SignInit.3 -#opt/lampp/man/man3/EVP_SignUpdate.3 -#opt/lampp/man/man3/EVP_VerifyFinal.3 -#opt/lampp/man/man3/EVP_VerifyInit.3 -#opt/lampp/man/man3/EVP_VerifyUpdate.3 -#opt/lampp/man/man3/EVP_dss.3 -#opt/lampp/man/man3/EVP_dss1.3 -#opt/lampp/man/man3/EVP_get_cipherbyname.3 -#opt/lampp/man/man3/EVP_get_cipherbynid.3 -#opt/lampp/man/man3/EVP_get_cipherbyobj.3 -#opt/lampp/man/man3/EVP_get_digestbyname.3 -#opt/lampp/man/man3/EVP_get_digestbynid.3 -#opt/lampp/man/man3/EVP_get_digestbyobj.3 -#opt/lampp/man/man3/EVP_md2.3 -#opt/lampp/man/man3/EVP_md5.3 -#opt/lampp/man/man3/EVP_md_null.3 -#opt/lampp/man/man3/EVP_mdc2.3 -#opt/lampp/man/man3/EVP_ripemd160.3 -#opt/lampp/man/man3/EVP_sha.3 -#opt/lampp/man/man3/EVP_sha1.3 -#opt/lampp/man/man3/Encode.3 -#opt/lampp/man/man3/Encode::Alias.3 -#opt/lampp/man/man3/Encode::Byte.3 -#opt/lampp/man/man3/Encode::CJKConstants.3 -#opt/lampp/man/man3/Encode::CN.3 -#opt/lampp/man/man3/Encode::CN::HZ.3 -#opt/lampp/man/man3/Encode::Config.3 -#opt/lampp/man/man3/Encode::EBCDIC.3 -#opt/lampp/man/man3/Encode::Encoder.3 -#opt/lampp/man/man3/Encode::Encoding.3 -#opt/lampp/man/man3/Encode::Guess.3 -#opt/lampp/man/man3/Encode::JP.3 -#opt/lampp/man/man3/Encode::JP::H2Z.3 -#opt/lampp/man/man3/Encode::JP::JIS7.3 -#opt/lampp/man/man3/Encode::KR.3 -#opt/lampp/man/man3/Encode::KR::2022_KR.3 -#opt/lampp/man/man3/Encode::MIME::Header.3 -#opt/lampp/man/man3/Encode::PerlIO.3 -#opt/lampp/man/man3/Encode::Supported.3 -#opt/lampp/man/man3/Encode::Symbol.3 -#opt/lampp/man/man3/Encode::TW.3 -#opt/lampp/man/man3/Encode::Unicode.3 -#opt/lampp/man/man3/Encode::Unicode::UTF7.3 -#opt/lampp/man/man3/English.3 -#opt/lampp/man/man3/Env.3 -#opt/lampp/man/man3/Errno.3 -#opt/lampp/man/man3/Exporter.3 -#opt/lampp/man/man3/Exporter::Heavy.3 -#opt/lampp/man/man3/ExtUtils::Command.3 -#opt/lampp/man/man3/ExtUtils::Command::MM.3 -#opt/lampp/man/man3/ExtUtils::Constant.3 -#opt/lampp/man/man3/ExtUtils::Constant::Base.3 -#opt/lampp/man/man3/ExtUtils::Constant::Utils.3 -#opt/lampp/man/man3/ExtUtils::Constant::XS.3 -#opt/lampp/man/man3/ExtUtils::Embed.3 -#opt/lampp/man/man3/ExtUtils::Install.3 -#opt/lampp/man/man3/ExtUtils::Installed.3 -#opt/lampp/man/man3/ExtUtils::Liblist.3 -#opt/lampp/man/man3/ExtUtils::Liblist::Kid.3 -#opt/lampp/man/man3/ExtUtils::MM.3 -#opt/lampp/man/man3/ExtUtils::MM_Any.3 -#opt/lampp/man/man3/ExtUtils::MM_BeOS.3 -#opt/lampp/man/man3/ExtUtils::MM_Cygwin.3 -#opt/lampp/man/man3/ExtUtils::MM_DOS.3 -#opt/lampp/man/man3/ExtUtils::MM_MacOS.3 -#opt/lampp/man/man3/ExtUtils::MM_NW5.3 -#opt/lampp/man/man3/ExtUtils::MM_OS2.3 -#opt/lampp/man/man3/ExtUtils::MM_UWIN.3 -#opt/lampp/man/man3/ExtUtils::MM_Unix.3 -#opt/lampp/man/man3/ExtUtils::MM_VMS.3 -#opt/lampp/man/man3/ExtUtils::MM_Win32.3 -#opt/lampp/man/man3/ExtUtils::MM_Win95.3 -#opt/lampp/man/man3/ExtUtils::MY.3 -#opt/lampp/man/man3/ExtUtils::MakeMaker.3 -#opt/lampp/man/man3/ExtUtils::MakeMaker::FAQ.3 -#opt/lampp/man/man3/ExtUtils::MakeMaker::Tutorial.3 -#opt/lampp/man/man3/ExtUtils::MakeMaker::bytes.3 -#opt/lampp/man/man3/ExtUtils::MakeMaker::vmsish.3 -#opt/lampp/man/man3/ExtUtils::Manifest.3 -#opt/lampp/man/man3/ExtUtils::Miniperl.3 -#opt/lampp/man/man3/ExtUtils::Mkbootstrap.3 -#opt/lampp/man/man3/ExtUtils::Mksymlists.3 -#opt/lampp/man/man3/ExtUtils::Packlist.3 -#opt/lampp/man/man3/ExtUtils::XSBuilder.3 -#opt/lampp/man/man3/ExtUtils::XSBuilder::PODTemplate.3 -#opt/lampp/man/man3/ExtUtils::testlib.3 -#opt/lampp/man/man3/ExtUtils::xsbuilder.osc2002.3 -#opt/lampp/man/man3/Fatal.3 -#opt/lampp/man/man3/Fcntl.3 -#opt/lampp/man/man3/File::Basename.3 -#opt/lampp/man/man3/File::CheckTree.3 -#opt/lampp/man/man3/File::Compare.3 -#opt/lampp/man/man3/File::Copy.3 -#opt/lampp/man/man3/File::DosGlob.3 -#opt/lampp/man/man3/File::Find.3 -#opt/lampp/man/man3/File::Glob.3 -#opt/lampp/man/man3/File::Listing.3 -#opt/lampp/man/man3/File::Path.3 -#opt/lampp/man/man3/File::Spec.3 -#opt/lampp/man/man3/File::Spec::Cygwin.3 -#opt/lampp/man/man3/File::Spec::Epoc.3 -#opt/lampp/man/man3/File::Spec::Functions.3 -#opt/lampp/man/man3/File::Spec::Mac.3 -#opt/lampp/man/man3/File::Spec::OS2.3 -#opt/lampp/man/man3/File::Spec::Unix.3 -#opt/lampp/man/man3/File::Spec::VMS.3 -#opt/lampp/man/man3/File::Spec::Win32.3 -#opt/lampp/man/man3/File::Temp.3 -#opt/lampp/man/man3/File::stat.3 -#opt/lampp/man/man3/FileCache.3 -#opt/lampp/man/man3/FileHandle.3 -#opt/lampp/man/man3/Filter::Simple.3 -#opt/lampp/man/man3/Filter::Util::Call.3 -#opt/lampp/man/man3/FindBin.3 -#opt/lampp/man/man3/GDBM_File.3 -#opt/lampp/man/man3/Getopt::Long.3 -#opt/lampp/man/man3/Getopt::Std.3 -#opt/lampp/man/man3/HMAC.3 -#opt/lampp/man/man3/HMAC_Final.3 -#opt/lampp/man/man3/HMAC_Init.3 -#opt/lampp/man/man3/HMAC_Update.3 -#opt/lampp/man/man3/HMAC_cleanup.3 -#opt/lampp/man/man3/HTML::Entities.3 -#opt/lampp/man/man3/HTML::Filter.3 -#opt/lampp/man/man3/HTML::Form.3 -#opt/lampp/man/man3/HTML::HeadParser.3 -#opt/lampp/man/man3/HTML::LinkExtor.3 -#opt/lampp/man/man3/HTML::Parser.3 -#opt/lampp/man/man3/HTML::PullParser.3 -#opt/lampp/man/man3/HTML::Tagset.3 -#opt/lampp/man/man3/HTML::TokeParser.3 -#opt/lampp/man/man3/HTTP::Cookies.3 -#opt/lampp/man/man3/HTTP::Cookies::Microsoft.3 -#opt/lampp/man/man3/HTTP::Cookies::Netscape.3 -#opt/lampp/man/man3/HTTP::Daemon.3 -#opt/lampp/man/man3/HTTP::Date.3 -#opt/lampp/man/man3/HTTP::Headers.3 -#opt/lampp/man/man3/HTTP::Headers::Util.3 -#opt/lampp/man/man3/HTTP::Message.3 -#opt/lampp/man/man3/HTTP::Negotiate.3 -#opt/lampp/man/man3/HTTP::Request.3 -#opt/lampp/man/man3/HTTP::Request::Common.3 -#opt/lampp/man/man3/HTTP::Response.3 -#opt/lampp/man/man3/HTTP::Status.3 -#opt/lampp/man/man3/Hash::Util.3 -#opt/lampp/man/man3/I18N::Collate.3 -#opt/lampp/man/man3/I18N::LangTags.3 -#opt/lampp/man/man3/I18N::LangTags::Detect.3 -#opt/lampp/man/man3/I18N::LangTags::List.3 -#opt/lampp/man/man3/I18N::Langinfo.3 -#opt/lampp/man/man3/IO.3 -#opt/lampp/man/man3/IO::Dir.3 -#opt/lampp/man/man3/IO::File.3 -#opt/lampp/man/man3/IO::Handle.3 -#opt/lampp/man/man3/IO::Pipe.3 -#opt/lampp/man/man3/IO::Poll.3 -#opt/lampp/man/man3/IO::Seekable.3 -#opt/lampp/man/man3/IO::Select.3 -#opt/lampp/man/man3/IO::Socket.3 -#opt/lampp/man/man3/IO::Socket::INET.3 -#opt/lampp/man/man3/IO::Socket::UNIX.3 -#opt/lampp/man/man3/IO::String.3 -#opt/lampp/man/man3/IO::Zlib.3 -#opt/lampp/man/man3/IPC::Msg.3 -#opt/lampp/man/man3/IPC::Open2.3 -#opt/lampp/man/man3/IPC::Open3.3 -#opt/lampp/man/man3/IPC::Semaphore.3 -#opt/lampp/man/man3/IPC::SysV.3 -#opt/lampp/man/man3/LWP.3 -#opt/lampp/man/man3/LWP::Authen::Ntlm.3 -#opt/lampp/man/man3/LWP::ConnCache.3 -#opt/lampp/man/man3/LWP::Debug.3 -#opt/lampp/man/man3/LWP::DebugFile.3 -#opt/lampp/man/man3/LWP::MediaTypes.3 -#opt/lampp/man/man3/LWP::MemberMixin.3 -#opt/lampp/man/man3/LWP::Protocol.3 -#opt/lampp/man/man3/LWP::RobotUA.3 -#opt/lampp/man/man3/LWP::Simple.3 -#opt/lampp/man/man3/LWP::UserAgent.3 -#opt/lampp/man/man3/List::Util.3 -#opt/lampp/man/man3/Locale::Constants.3 -#opt/lampp/man/man3/Locale::Country.3 -#opt/lampp/man/man3/Locale::Currency.3 -#opt/lampp/man/man3/Locale::Language.3 -#opt/lampp/man/man3/Locale::Maketext.3 -#opt/lampp/man/man3/Locale::Maketext::TPJ13.3 -#opt/lampp/man/man3/Locale::Script.3 -#opt/lampp/man/man3/MD2.3 -#opt/lampp/man/man3/MD2_Final.3 -#opt/lampp/man/man3/MD2_Init.3 -#opt/lampp/man/man3/MD2_Update.3 -#opt/lampp/man/man3/MD4.3 -#opt/lampp/man/man3/MD4_Final.3 -#opt/lampp/man/man3/MD4_Init.3 -#opt/lampp/man/man3/MD4_Update.3 -#opt/lampp/man/man3/MD5.3 -#opt/lampp/man/man3/MD5_Final.3 -#opt/lampp/man/man3/MD5_Init.3 -#opt/lampp/man/man3/MD5_Update.3 -#opt/lampp/man/man3/MDC2.3 -#opt/lampp/man/man3/MDC2_Final.3 -#opt/lampp/man/man3/MDC2_Init.3 -#opt/lampp/man/man3/MDC2_Update.3 -#opt/lampp/man/man3/MIME::Base64.3 -#opt/lampp/man/man3/MIME::QuotedPrint.3 -#opt/lampp/man/man3/Math::BigFloat.3 -#opt/lampp/man/man3/Math::BigFloat::Trace.3 -#opt/lampp/man/man3/Math::BigInt.3 -#opt/lampp/man/man3/Math::BigInt::Calc.3 -#opt/lampp/man/man3/Math::BigInt::CalcEmu.3 -#opt/lampp/man/man3/Math::BigInt::Trace.3 -#opt/lampp/man/man3/Math::BigRat.3 -#opt/lampp/man/man3/Math::Complex.3 -#opt/lampp/man/man3/Math::Trig.3 -#opt/lampp/man/man3/Memoize.3 -#opt/lampp/man/man3/Memoize::AnyDBM_File.3 -#opt/lampp/man/man3/Memoize::Expire.3 -#opt/lampp/man/man3/Memoize::ExpireFile.3 -#opt/lampp/man/man3/Memoize::ExpireTest.3 -#opt/lampp/man/man3/Memoize::NDBM_File.3 -#opt/lampp/man/man3/Memoize::SDBM_File.3 -#opt/lampp/man/man3/Memoize::Storable.3 -#opt/lampp/man/man3/ModPerl::BuildMM.3 -#opt/lampp/man/man3/ModPerl::CScan.3 -#opt/lampp/man/man3/ModPerl::Code.3 -#opt/lampp/man/man3/ModPerl::Config.3 -#opt/lampp/man/man3/ModPerl::Const.3 -#opt/lampp/man/man3/ModPerl::Global.3 -#opt/lampp/man/man3/ModPerl::MM.3 -#opt/lampp/man/man3/ModPerl::MethodLookup.3 -#opt/lampp/man/man3/ModPerl::PerlRun.3 -#opt/lampp/man/man3/ModPerl::PerlRunPrefork.3 -#opt/lampp/man/man3/ModPerl::Registry.3 -#opt/lampp/man/man3/ModPerl::RegistryBB.3 -#opt/lampp/man/man3/ModPerl::RegistryCooker.3 -#opt/lampp/man/man3/ModPerl::RegistryLoader.3 -#opt/lampp/man/man3/ModPerl::RegistryPrefork.3 -#opt/lampp/man/man3/ModPerl::Util.3 -#opt/lampp/man/man3/Mysql.3 -#opt/lampp/man/man3/NDBM_File.3 -#opt/lampp/man/man3/NEXT.3 -#opt/lampp/man/man3/Net::Cmd.3 -#opt/lampp/man/man3/Net::Config.3 -#opt/lampp/man/man3/Net::Domain.3 -#opt/lampp/man/man3/Net::FTP.3 -#opt/lampp/man/man3/Net::FTP::A.3 -#opt/lampp/man/man3/Net::FTP::E.3 -#opt/lampp/man/man3/Net::FTP::I.3 -#opt/lampp/man/man3/Net::FTP::L.3 -#opt/lampp/man/man3/Net::FTP::dataconn.3 -#opt/lampp/man/man3/Net::HTTP.3 -#opt/lampp/man/man3/Net::HTTP::NB.3 -#opt/lampp/man/man3/Net::NNTP.3 -#opt/lampp/man/man3/Net::Netrc.3 -#opt/lampp/man/man3/Net::POP3.3 -#opt/lampp/man/man3/Net::Ping.3 -#opt/lampp/man/man3/Net::SMTP.3 -#opt/lampp/man/man3/Net::SSLeay.3 -#opt/lampp/man/man3/Net::SSLeay::Handle.3 -#opt/lampp/man/man3/Net::Telnet.3 -#opt/lampp/man/man3/Net::Time.3 -#opt/lampp/man/man3/Net::hostent.3 -#opt/lampp/man/man3/Net::libnetFAQ.3 -#opt/lampp/man/man3/Net::netent.3 -#opt/lampp/man/man3/Net::protoent.3 -#opt/lampp/man/man3/Net::servent.3 -#opt/lampp/man/man3/O.3 -#opt/lampp/man/man3/OBJ_cleanup.3 -#opt/lampp/man/man3/OBJ_cmp.3 -#opt/lampp/man/man3/OBJ_create.3 -#opt/lampp/man/man3/OBJ_dup.3 -#opt/lampp/man/man3/OBJ_ln2nid.3 -#opt/lampp/man/man3/OBJ_nid2ln.3 -#opt/lampp/man/man3/OBJ_nid2obj.3 -#opt/lampp/man/man3/OBJ_nid2sn.3 -#opt/lampp/man/man3/OBJ_obj2nid.3 -#opt/lampp/man/man3/OBJ_obj2txt.3 -#opt/lampp/man/man3/OBJ_sn2nid.3 -#opt/lampp/man/man3/OBJ_txt2nid.3 -#opt/lampp/man/man3/OBJ_txt2obj.3 -#opt/lampp/man/man3/ODBM_File.3 -#opt/lampp/man/man3/OPENSSL_Applink.3 -#opt/lampp/man/man3/OPENSSL_VERSION_NUMBER.3 -#opt/lampp/man/man3/OPENSSL_config.3 -#opt/lampp/man/man3/OPENSSL_ia32cap.3 -#opt/lampp/man/man3/OPENSSL_load_builtin_modules.3 -#opt/lampp/man/man3/OPENSSL_no_config.3 -#opt/lampp/man/man3/Opcode.3 -#opt/lampp/man/man3/OpenSSL_add_all_algorithms.3 -#opt/lampp/man/man3/OpenSSL_add_all_ciphers.3 -#opt/lampp/man/man3/OpenSSL_add_all_digests.3 -#opt/lampp/man/man3/OpenSSL_add_ssl_algorithms.3 -#opt/lampp/man/man3/PAIR_NUMBER.3ncurses.gz -#opt/lampp/man/man3/PEM.3 -#opt/lampp/man/man3/PKCS12_create.3 -#opt/lampp/man/man3/PKCS12_parse.3 -#opt/lampp/man/man3/PKCS7_decrypt.3 -#opt/lampp/man/man3/PKCS7_encrypt.3 -#opt/lampp/man/man3/PKCS7_sign.3 -#opt/lampp/man/man3/PKCS7_verify.3 -#opt/lampp/man/man3/POSIX.3 -#opt/lampp/man/man3/Parse::RecDescent.3 -#opt/lampp/man/man3/PerlIO.3 -#opt/lampp/man/man3/PerlIO::encoding.3 -#opt/lampp/man/man3/PerlIO::scalar.3 -#opt/lampp/man/man3/PerlIO::via.3 -#opt/lampp/man/man3/PerlIO::via::QuotedPrint.3 -#opt/lampp/man/man3/Pod::Checker.3 -#opt/lampp/man/man3/Pod::Find.3 -#opt/lampp/man/man3/Pod::Html.3 -#opt/lampp/man/man3/Pod::InputObjects.3 -#opt/lampp/man/man3/Pod::LaTeX.3 -#opt/lampp/man/man3/Pod::Man.3 -#opt/lampp/man/man3/Pod::ParseLink.3 -#opt/lampp/man/man3/Pod::ParseUtils.3 -#opt/lampp/man/man3/Pod::Parser.3 -#opt/lampp/man/man3/Pod::Perldoc::ToChecker.3 -#opt/lampp/man/man3/Pod::Perldoc::ToMan.3 -#opt/lampp/man/man3/Pod::Perldoc::ToNroff.3 -#opt/lampp/man/man3/Pod::Perldoc::ToPod.3 -#opt/lampp/man/man3/Pod::Perldoc::ToRtf.3 -#opt/lampp/man/man3/Pod::Perldoc::ToText.3 -#opt/lampp/man/man3/Pod::Perldoc::ToTk.3 -#opt/lampp/man/man3/Pod::Perldoc::ToXml.3 -#opt/lampp/man/man3/Pod::PlainText.3 -#opt/lampp/man/man3/Pod::Plainer.3 -#opt/lampp/man/man3/Pod::Select.3 -#opt/lampp/man/man3/Pod::Text.3 -#opt/lampp/man/man3/Pod::Text::Color.3 -#opt/lampp/man/man3/Pod::Text::Overstrike.3 -#opt/lampp/man/man3/Pod::Text::Termcap.3 -#opt/lampp/man/man3/Pod::Usage.3 -#opt/lampp/man/man3/RAND_SSLeay.3 -#opt/lampp/man/man3/RAND_add.3 -#opt/lampp/man/man3/RAND_bytes.3 -#opt/lampp/man/man3/RAND_cleanup.3 -#opt/lampp/man/man3/RAND_egd.3 -#opt/lampp/man/man3/RAND_event.3 -#opt/lampp/man/man3/RAND_file_name.3 -#opt/lampp/man/man3/RAND_get_rand_method.3 -#opt/lampp/man/man3/RAND_load_file.3 -#opt/lampp/man/man3/RAND_pseudo_bytes.3 -#opt/lampp/man/man3/RAND_screen.3 -#opt/lampp/man/man3/RAND_seed.3 -#opt/lampp/man/man3/RAND_set_rand_method.3 -#opt/lampp/man/man3/RAND_status.3 -#opt/lampp/man/man3/RAND_write_file.3 -#opt/lampp/man/man3/RC4.3 -#opt/lampp/man/man3/RC4_set_key.3 -#opt/lampp/man/man3/RIPEMD160.3 -#opt/lampp/man/man3/RIPEMD160_Final.3 -#opt/lampp/man/man3/RIPEMD160_Init.3 -#opt/lampp/man/man3/RIPEMD160_Update.3 -#opt/lampp/man/man3/RSA_PKCS1_SSLeay.3 -#opt/lampp/man/man3/RSA_blinding_off.3 -#opt/lampp/man/man3/RSA_blinding_on.3 -#opt/lampp/man/man3/RSA_check_key.3 -#opt/lampp/man/man3/RSA_flags.3 -#opt/lampp/man/man3/RSA_free.3 -#opt/lampp/man/man3/RSA_generate_key.3 -#opt/lampp/man/man3/RSA_get_default_method.3 -#opt/lampp/man/man3/RSA_get_ex_data.3 -#opt/lampp/man/man3/RSA_get_ex_new_index.3 -#opt/lampp/man/man3/RSA_get_method.3 -#opt/lampp/man/man3/RSA_new.3 -#opt/lampp/man/man3/RSA_new_method.3 -#opt/lampp/man/man3/RSA_null_method.3 -#opt/lampp/man/man3/RSA_padding_add_PKCS1_OAEP.3 -#opt/lampp/man/man3/RSA_padding_add_PKCS1_type_1.3 -#opt/lampp/man/man3/RSA_padding_add_PKCS1_type_2.3 -#opt/lampp/man/man3/RSA_padding_add_SSLv23.3 -#opt/lampp/man/man3/RSA_padding_add_none.3 -#opt/lampp/man/man3/RSA_padding_check_PKCS1_OAEP.3 -#opt/lampp/man/man3/RSA_padding_check_PKCS1_type_1.3 -#opt/lampp/man/man3/RSA_padding_check_PKCS1_type_2.3 -#opt/lampp/man/man3/RSA_padding_check_SSLv23.3 -#opt/lampp/man/man3/RSA_padding_check_none.3 -#opt/lampp/man/man3/RSA_print.3 -#opt/lampp/man/man3/RSA_print_fp.3 -#opt/lampp/man/man3/RSA_private_decrypt.3 -#opt/lampp/man/man3/RSA_private_encrypt.3 -#opt/lampp/man/man3/RSA_public_decrypt.3 -#opt/lampp/man/man3/RSA_public_encrypt.3 -#opt/lampp/man/man3/RSA_set_default_method.3 -#opt/lampp/man/man3/RSA_set_ex_data.3 -#opt/lampp/man/man3/RSA_set_method.3 -#opt/lampp/man/man3/RSA_sign.3 -#opt/lampp/man/man3/RSA_sign_ASN1_OCTET_STRING.3 -#opt/lampp/man/man3/RSA_size.3 -#opt/lampp/man/man3/RSA_verify.3 -#opt/lampp/man/man3/RSA_verify_ASN1_OCTET_STRING.3 -#opt/lampp/man/man3/Roadmap.3 -#opt/lampp/man/man3/SDBM_File.3 -#opt/lampp/man/man3/SHA1.3 -#opt/lampp/man/man3/SHA1_Final.3 -#opt/lampp/man/man3/SHA1_Init.3 -#opt/lampp/man/man3/SHA1_Update.3 -#opt/lampp/man/man3/SMIME_read_PKCS7.3 -#opt/lampp/man/man3/SMIME_write_PKCS7.3 -#opt/lampp/man/man3/SSL.3 -#opt/lampp/man/man3/SSL_CIPHER_description.3 -#opt/lampp/man/man3/SSL_CIPHER_get_bits.3 -#opt/lampp/man/man3/SSL_CIPHER_get_name.3 -#opt/lampp/man/man3/SSL_CIPHER_get_version.3 -#opt/lampp/man/man3/SSL_COMP_add_compression_method.3 -#opt/lampp/man/man3/SSL_CTX_add_client_CA.3 -#opt/lampp/man/man3/SSL_CTX_add_extra_chain_cert.3 -#opt/lampp/man/man3/SSL_CTX_add_session.3 -#opt/lampp/man/man3/SSL_CTX_callback_ctrl.3 -#opt/lampp/man/man3/SSL_CTX_check_private_key.3 -#opt/lampp/man/man3/SSL_CTX_ctrl.3 -#opt/lampp/man/man3/SSL_CTX_flush_sessions.3 -#opt/lampp/man/man3/SSL_CTX_free.3 -#opt/lampp/man/man3/SSL_CTX_get_cert_store.3 -#opt/lampp/man/man3/SSL_CTX_get_client_CA_list.3 -#opt/lampp/man/man3/SSL_CTX_get_client_cert_cb.3 -#opt/lampp/man/man3/SSL_CTX_get_ex_data.3 -#opt/lampp/man/man3/SSL_CTX_get_ex_new_index.3 -#opt/lampp/man/man3/SSL_CTX_get_info_callback.3 -#opt/lampp/man/man3/SSL_CTX_get_max_cert_list.3 -#opt/lampp/man/man3/SSL_CTX_get_mode.3 -#opt/lampp/man/man3/SSL_CTX_get_options.3 -#opt/lampp/man/man3/SSL_CTX_get_quiet_shutdown.3 -#opt/lampp/man/man3/SSL_CTX_get_session_cache_mode.3 -#opt/lampp/man/man3/SSL_CTX_get_timeout.3 -#opt/lampp/man/man3/SSL_CTX_get_verify_callback.3 -#opt/lampp/man/man3/SSL_CTX_get_verify_depth.3 -#opt/lampp/man/man3/SSL_CTX_get_verify_mode.3 -#opt/lampp/man/man3/SSL_CTX_load_verify_locations.3 -#opt/lampp/man/man3/SSL_CTX_need_tmp_rsa.3 -#opt/lampp/man/man3/SSL_CTX_new.3 -#opt/lampp/man/man3/SSL_CTX_remove_session.3 -#opt/lampp/man/man3/SSL_CTX_sess_accept.3 -#opt/lampp/man/man3/SSL_CTX_sess_accept_good.3 -#opt/lampp/man/man3/SSL_CTX_sess_accept_renegotiate.3 -#opt/lampp/man/man3/SSL_CTX_sess_cache_full.3 -#opt/lampp/man/man3/SSL_CTX_sess_cb_hits.3 -#opt/lampp/man/man3/SSL_CTX_sess_connect.3 -#opt/lampp/man/man3/SSL_CTX_sess_connect_good.3 -#opt/lampp/man/man3/SSL_CTX_sess_connect_renegotiate.3 -#opt/lampp/man/man3/SSL_CTX_sess_get_cache_size.3 -#opt/lampp/man/man3/SSL_CTX_sess_get_get_cb.3 -#opt/lampp/man/man3/SSL_CTX_sess_get_new_cb.3 -#opt/lampp/man/man3/SSL_CTX_sess_get_remove_cb.3 -#opt/lampp/man/man3/SSL_CTX_sess_hits.3 -#opt/lampp/man/man3/SSL_CTX_sess_misses.3 -#opt/lampp/man/man3/SSL_CTX_sess_number.3 -#opt/lampp/man/man3/SSL_CTX_sess_set_cache_size.3 -#opt/lampp/man/man3/SSL_CTX_sess_set_get_cb.3 -#opt/lampp/man/man3/SSL_CTX_sess_set_new_cb.3 -#opt/lampp/man/man3/SSL_CTX_sess_set_remove_cb.3 -#opt/lampp/man/man3/SSL_CTX_sess_timeouts.3 -#opt/lampp/man/man3/SSL_CTX_sessions.3 -#opt/lampp/man/man3/SSL_CTX_set_cert_store.3 -#opt/lampp/man/man3/SSL_CTX_set_cert_verify_callback.3 -#opt/lampp/man/man3/SSL_CTX_set_cipher_list.3 -#opt/lampp/man/man3/SSL_CTX_set_client_CA_list.3 -#opt/lampp/man/man3/SSL_CTX_set_client_cert_cb.3 -#opt/lampp/man/man3/SSL_CTX_set_default_passwd_cb.3 -#opt/lampp/man/man3/SSL_CTX_set_default_passwd_cb_userdata.3 -#opt/lampp/man/man3/SSL_CTX_set_ex_data.3 -#opt/lampp/man/man3/SSL_CTX_set_generate_session_id.3 -#opt/lampp/man/man3/SSL_CTX_set_info_callback.3 -#opt/lampp/man/man3/SSL_CTX_set_max_cert_list.3 -#opt/lampp/man/man3/SSL_CTX_set_mode.3 -#opt/lampp/man/man3/SSL_CTX_set_msg_callback.3 -#opt/lampp/man/man3/SSL_CTX_set_msg_callback_arg.3 -#opt/lampp/man/man3/SSL_CTX_set_options.3 -#opt/lampp/man/man3/SSL_CTX_set_quiet_shutdown.3 -#opt/lampp/man/man3/SSL_CTX_set_session_cache_mode.3 -#opt/lampp/man/man3/SSL_CTX_set_session_id_context.3 -#opt/lampp/man/man3/SSL_CTX_set_ssl_version.3 -#opt/lampp/man/man3/SSL_CTX_set_timeout.3 -#opt/lampp/man/man3/SSL_CTX_set_tmp_dh.3 -#opt/lampp/man/man3/SSL_CTX_set_tmp_dh_callback.3 -#opt/lampp/man/man3/SSL_CTX_set_tmp_rsa.3 -#opt/lampp/man/man3/SSL_CTX_set_tmp_rsa_callback.3 -#opt/lampp/man/man3/SSL_CTX_set_verify.3 -#opt/lampp/man/man3/SSL_CTX_set_verify_depth.3 -#opt/lampp/man/man3/SSL_CTX_use_PrivateKey.3 -#opt/lampp/man/man3/SSL_CTX_use_PrivateKey_ASN1.3 -#opt/lampp/man/man3/SSL_CTX_use_PrivateKey_file.3 -#opt/lampp/man/man3/SSL_CTX_use_RSAPrivateKey.3 -#opt/lampp/man/man3/SSL_CTX_use_RSAPrivateKey_ASN1.3 -#opt/lampp/man/man3/SSL_CTX_use_RSAPrivateKey_file.3 -#opt/lampp/man/man3/SSL_CTX_use_certificate.3 -#opt/lampp/man/man3/SSL_CTX_use_certificate_ASN1.3 -#opt/lampp/man/man3/SSL_CTX_use_certificate_chain_file.3 -#opt/lampp/man/man3/SSL_CTX_use_certificate_file.3 -#opt/lampp/man/man3/SSL_SESSION_free.3 -#opt/lampp/man/man3/SSL_SESSION_get_ex_data.3 -#opt/lampp/man/man3/SSL_SESSION_get_ex_new_index.3 -#opt/lampp/man/man3/SSL_SESSION_get_time.3 -#opt/lampp/man/man3/SSL_SESSION_get_timeout.3 -#opt/lampp/man/man3/SSL_SESSION_set_ex_data.3 -#opt/lampp/man/man3/SSL_SESSION_set_time.3 -#opt/lampp/man/man3/SSL_accept.3 -#opt/lampp/man/man3/SSL_add_client_CA.3 -#opt/lampp/man/man3/SSL_add_session.3 -#opt/lampp/man/man3/SSL_alert_desc_string.3 -#opt/lampp/man/man3/SSL_alert_desc_string_long.3 -#opt/lampp/man/man3/SSL_alert_type_string.3 -#opt/lampp/man/man3/SSL_alert_type_string_long.3 -#opt/lampp/man/man3/SSL_callback_ctrl.3 -#opt/lampp/man/man3/SSL_check_private_key.3 -#opt/lampp/man/man3/SSL_clear.3 -#opt/lampp/man/man3/SSL_connect.3 -#opt/lampp/man/man3/SSL_ctrl.3 -#opt/lampp/man/man3/SSL_do_handshake.3 -#opt/lampp/man/man3/SSL_flush_sessions.3 -#opt/lampp/man/man3/SSL_free.3 -#opt/lampp/man/man3/SSL_get_SSL_CTX.3 -#opt/lampp/man/man3/SSL_get_accept_state.3 -#opt/lampp/man/man3/SSL_get_cipher.3 -#opt/lampp/man/man3/SSL_get_cipher_bits.3 -#opt/lampp/man/man3/SSL_get_cipher_list.3 -#opt/lampp/man/man3/SSL_get_cipher_name.3 -#opt/lampp/man/man3/SSL_get_cipher_version.3 -#opt/lampp/man/man3/SSL_get_ciphers.3 -#opt/lampp/man/man3/SSL_get_client_CA_list.3 -#opt/lampp/man/man3/SSL_get_current_cipher.3 -#opt/lampp/man/man3/SSL_get_default_timeout.3 -#opt/lampp/man/man3/SSL_get_error.3 -#opt/lampp/man/man3/SSL_get_ex_data.3 -#opt/lampp/man/man3/SSL_get_ex_data_X509_STORE_CTX_idx.3 -#opt/lampp/man/man3/SSL_get_ex_new_index.3 -#opt/lampp/man/man3/SSL_get_fd.3 -#opt/lampp/man/man3/SSL_get_info_callback.3 -#opt/lampp/man/man3/SSL_get_max_cert_list.3 -#opt/lampp/man/man3/SSL_get_mode.3 -#opt/lampp/man/man3/SSL_get_msg_callback_arg.3 -#opt/lampp/man/man3/SSL_get_options.3 -#opt/lampp/man/man3/SSL_get_peer_cert_chain.3 -#opt/lampp/man/man3/SSL_get_peer_certificate.3 -#opt/lampp/man/man3/SSL_get_quiet_shutdown.3 -#opt/lampp/man/man3/SSL_get_rbio.3 -#opt/lampp/man/man3/SSL_get_session.3 -#opt/lampp/man/man3/SSL_get_shutdown.3 -#opt/lampp/man/man3/SSL_get_ssl_method.3 -#opt/lampp/man/man3/SSL_get_verify_callback.3 -#opt/lampp/man/man3/SSL_get_verify_depth.3 -#opt/lampp/man/man3/SSL_get_verify_mode.3 -#opt/lampp/man/man3/SSL_get_verify_result.3 -#opt/lampp/man/man3/SSL_get_version.3 -#opt/lampp/man/man3/SSL_has_matching_session_id.3 -#opt/lampp/man/man3/SSL_library_init.3 -#opt/lampp/man/man3/SSL_load_client_CA_file.3 -#opt/lampp/man/man3/SSL_load_error_strings.3 -#opt/lampp/man/man3/SSL_need_tmp_rsa.3 -#opt/lampp/man/man3/SSL_new.3 -#opt/lampp/man/man3/SSL_pending.3 -#opt/lampp/man/man3/SSL_read.3 -#opt/lampp/man/man3/SSL_remove_session.3 -#opt/lampp/man/man3/SSL_rstate_string.3 -#opt/lampp/man/man3/SSL_rstate_string_long.3 -#opt/lampp/man/man3/SSL_session_reused.3 -#opt/lampp/man/man3/SSL_set_bio.3 -#opt/lampp/man/man3/SSL_set_cipher_list.3 -#opt/lampp/man/man3/SSL_set_client_CA_list.3 -#opt/lampp/man/man3/SSL_set_connect_state.3 -#opt/lampp/man/man3/SSL_set_ex_data.3 -#opt/lampp/man/man3/SSL_set_fd.3 -#opt/lampp/man/man3/SSL_set_generate_session_id.3 -#opt/lampp/man/man3/SSL_set_info_callback.3 -#opt/lampp/man/man3/SSL_set_max_cert_list.3 -#opt/lampp/man/man3/SSL_set_mode.3 -#opt/lampp/man/man3/SSL_set_msg_callback.3 -#opt/lampp/man/man3/SSL_set_options.3 -#opt/lampp/man/man3/SSL_set_quiet_shutdown.3 -#opt/lampp/man/man3/SSL_set_session.3 -#opt/lampp/man/man3/SSL_set_session_id_context.3 -#opt/lampp/man/man3/SSL_set_shutdown.3 -#opt/lampp/man/man3/SSL_set_ssl_method.3 -#opt/lampp/man/man3/SSL_set_tmp_dh.3 -#opt/lampp/man/man3/SSL_set_tmp_dh_callback.3 -#opt/lampp/man/man3/SSL_set_tmp_rsa.3 -#opt/lampp/man/man3/SSL_set_tmp_rsa_callback.3 -#opt/lampp/man/man3/SSL_set_verify.3 -#opt/lampp/man/man3/SSL_set_verify_depth.3 -#opt/lampp/man/man3/SSL_set_verify_result.3 -#opt/lampp/man/man3/SSL_shutdown.3 -#opt/lampp/man/man3/SSL_state_string.3 -#opt/lampp/man/man3/SSL_state_string_long.3 -#opt/lampp/man/man3/SSL_use_PrivateKey.3 -#opt/lampp/man/man3/SSL_use_PrivateKey_ASN1.3 -#opt/lampp/man/man3/SSL_use_PrivateKey_file.3 -#opt/lampp/man/man3/SSL_use_RSAPrivateKey.3 -#opt/lampp/man/man3/SSL_use_RSAPrivateKey_ASN1.3 -#opt/lampp/man/man3/SSL_use_RSAPrivateKey_file.3 -#opt/lampp/man/man3/SSL_use_certificate.3 -#opt/lampp/man/man3/SSL_use_certificate_ASN1.3 -#opt/lampp/man/man3/SSL_use_certificate_file.3 -#opt/lampp/man/man3/SSL_want.3 -#opt/lampp/man/man3/SSL_want_nothing.3 -#opt/lampp/man/man3/SSL_want_read.3 -#opt/lampp/man/man3/SSL_want_write.3 -#opt/lampp/man/man3/SSL_want_x509_lookup.3 -#opt/lampp/man/man3/SSL_write.3 -#opt/lampp/man/man3/SSLeay.3 -#opt/lampp/man/man3/SSLeay_add_ssl_algorithms.3 -#opt/lampp/man/man3/SSLeay_version.3 -#opt/lampp/man/man3/Safe.3 -#opt/lampp/man/man3/Scalar::Util.3 -#opt/lampp/man/man3/Search::Dict.3 -#opt/lampp/man/man3/SelectSaver.3 -#opt/lampp/man/man3/SelfLoader.3 -#opt/lampp/man/man3/Shell.3 -#opt/lampp/man/man3/Socket.3 -#opt/lampp/man/man3/Storable.3 -#opt/lampp/man/man3/Switch.3 -#opt/lampp/man/man3/Symbol.3 -#opt/lampp/man/man3/Sys::Hostname.3 -#opt/lampp/man/man3/Sys::Syslog.3 -#opt/lampp/man/man3/TIFFCheckTile.3t -#opt/lampp/man/man3/TIFFClientOpen.3t -#opt/lampp/man/man3/TIFFClose.3t -#opt/lampp/man/man3/TIFFComputeStrip.3t -#opt/lampp/man/man3/TIFFComputeTile.3t -#opt/lampp/man/man3/TIFFCurrentDirectory.3t -#opt/lampp/man/man3/TIFFCurrentRow.3t -#opt/lampp/man/man3/TIFFCurrentStrip.3t -#opt/lampp/man/man3/TIFFCurrentTile.3t -#opt/lampp/man/man3/TIFFDefaultStripSize.3t -#opt/lampp/man/man3/TIFFDefaultTileSize.3t -#opt/lampp/man/man3/TIFFError.3t -#opt/lampp/man/man3/TIFFFdOpen.3t -#opt/lampp/man/man3/TIFFFileName.3t -#opt/lampp/man/man3/TIFFFileno.3t -#opt/lampp/man/man3/TIFFFindCODEC.3t -#opt/lampp/man/man3/TIFFFlush.3t -#opt/lampp/man/man3/TIFFFlushData.3t -#opt/lampp/man/man3/TIFFGetField.3t -#opt/lampp/man/man3/TIFFGetMode.3t -#opt/lampp/man/man3/TIFFIsByteSwapped.3t -#opt/lampp/man/man3/TIFFIsMSB2LSB.3t -#opt/lampp/man/man3/TIFFIsTiled.3t -#opt/lampp/man/man3/TIFFIsUpSampled.3t -#opt/lampp/man/man3/TIFFLastDirectory.3t -#opt/lampp/man/man3/TIFFNumberOfStrips.3t -#opt/lampp/man/man3/TIFFNumberOfTiles.3t -#opt/lampp/man/man3/TIFFOpen.3t -#opt/lampp/man/man3/TIFFPrintDirectory.3t -#opt/lampp/man/man3/TIFFRGBAImage.3t -#opt/lampp/man/man3/TIFFRGBAImageBegin.3t -#opt/lampp/man/man3/TIFFRGBAImageEnd.3t -#opt/lampp/man/man3/TIFFRGBAImageGet.3t -#opt/lampp/man/man3/TIFFRGBAImageOK.3t -#opt/lampp/man/man3/TIFFReadBufferSetup.3t -#opt/lampp/man/man3/TIFFReadDirectory.3t -#opt/lampp/man/man3/TIFFReadEncodedStrip.3t -#opt/lampp/man/man3/TIFFReadEncodedTile.3t -#opt/lampp/man/man3/TIFFReadRGBAImage.3t -#opt/lampp/man/man3/TIFFReadRGBAStrip.3t -#opt/lampp/man/man3/TIFFReadRGBATile.3t -#opt/lampp/man/man3/TIFFReadRawStrip.3t -#opt/lampp/man/man3/TIFFReadRawTile.3t -#opt/lampp/man/man3/TIFFReadScanline.3t -#opt/lampp/man/man3/TIFFReadTile.3t -#opt/lampp/man/man3/TIFFRegisterCODEC.3t -#opt/lampp/man/man3/TIFFReverseBits.3t -#opt/lampp/man/man3/TIFFRewriteDirectory.3t -#opt/lampp/man/man3/TIFFScanlineSize.3t -#opt/lampp/man/man3/TIFFSetDirectory.3t -#opt/lampp/man/man3/TIFFSetErrorHandler.3t -#opt/lampp/man/man3/TIFFSetField.3t -#opt/lampp/man/man3/TIFFSetSubDirectory.3t -#opt/lampp/man/man3/TIFFSetWarningHandler.3t -#opt/lampp/man/man3/TIFFStripSize.3t -#opt/lampp/man/man3/TIFFSwabArrayOfLong.3t -#opt/lampp/man/man3/TIFFSwabArrayOfShort.3t -#opt/lampp/man/man3/TIFFSwabLong.3t -#opt/lampp/man/man3/TIFFSwabShort.3t -#opt/lampp/man/man3/TIFFTileRowSize.3t -#opt/lampp/man/man3/TIFFTileSize.3t -#opt/lampp/man/man3/TIFFUnRegisterCODEC.3t -#opt/lampp/man/man3/TIFFVGetField.3t -#opt/lampp/man/man3/TIFFVSetField.3t -#opt/lampp/man/man3/TIFFVStripSize.3t -#opt/lampp/man/man3/TIFFVTileSize.3t -#opt/lampp/man/man3/TIFFWarning.3t -#opt/lampp/man/man3/TIFFWriteBufferSetup.3t -#opt/lampp/man/man3/TIFFWriteDirectory.3t -#opt/lampp/man/man3/TIFFWriteEncodedStrip.3t -#opt/lampp/man/man3/TIFFWriteEncodedTile.3t -#opt/lampp/man/man3/TIFFWriteRawStrip.3t -#opt/lampp/man/man3/TIFFWriteRawTile.3t -#opt/lampp/man/man3/TIFFWriteScanline.3t -#opt/lampp/man/man3/TIFFWriteTile.3t -#opt/lampp/man/man3/TIFFbuffer.3t -#opt/lampp/man/man3/TIFFcodec.3t -#opt/lampp/man/man3/TIFFfree.3t -#opt/lampp/man/man3/TIFFmalloc.3t -#opt/lampp/man/man3/TIFFmemcmp.3t -#opt/lampp/man/man3/TIFFmemcpy.3t -#opt/lampp/man/man3/TIFFmemory.3t -#opt/lampp/man/man3/TIFFmemset.3t -#opt/lampp/man/man3/TIFFquery.3t -#opt/lampp/man/man3/TIFFrealloc.3t -#opt/lampp/man/man3/TIFFsize.3t -#opt/lampp/man/man3/TIFFstrip.3t -#opt/lampp/man/man3/TIFFswab.3t -#opt/lampp/man/man3/TIFFtile.3t -#opt/lampp/man/man3/Term::ANSIColor.3 -#opt/lampp/man/man3/Term::Cap.3 -#opt/lampp/man/man3/Term::Complete.3 -#opt/lampp/man/man3/Term::ReadKey.3 -#opt/lampp/man/man3/Term::ReadLine.3 -#opt/lampp/man/man3/Test.3 -#opt/lampp/man/man3/Test::Builder.3 -#opt/lampp/man/man3/Test::Harness.3 -#opt/lampp/man/man3/Test::Harness::Assert.3 -#opt/lampp/man/man3/Test::Harness::Iterator.3 -#opt/lampp/man/man3/Test::Harness::Point.3 -#opt/lampp/man/man3/Test::Harness::Straps.3 -#opt/lampp/man/man3/Test::Harness::TAP.3 -#opt/lampp/man/man3/Test::More.3 -#opt/lampp/man/man3/Test::Simple.3 -#opt/lampp/man/man3/Test::Tutorial.3 -#opt/lampp/man/man3/Text::Abbrev.3 -#opt/lampp/man/man3/Text::Balanced.3 -#opt/lampp/man/man3/Text::ParseWords.3 -#opt/lampp/man/man3/Text::Soundex.3 -#opt/lampp/man/man3/Text::Tabs.3 -#opt/lampp/man/man3/Text::Wrap.3 -#opt/lampp/man/man3/Thread.3 -#opt/lampp/man/man3/Thread::Queue.3 -#opt/lampp/man/man3/Thread::Semaphore.3 -#opt/lampp/man/man3/Tie::Array.3 -#opt/lampp/man/man3/Tie::File.3 -#opt/lampp/man/man3/Tie::Handle.3 -#opt/lampp/man/man3/Tie::Hash.3 -#opt/lampp/man/man3/Tie::IxHash.3 -#opt/lampp/man/man3/Tie::Memoize.3 -#opt/lampp/man/man3/Tie::RefHash.3 -#opt/lampp/man/man3/Tie::Scalar.3 -#opt/lampp/man/man3/Tie::SubstrHash.3 -#opt/lampp/man/man3/Time::HiRes.3 -#opt/lampp/man/man3/Time::Local.3 -#opt/lampp/man/man3/Time::gmtime.3 -#opt/lampp/man/man3/Time::localtime.3 -#opt/lampp/man/man3/Time::tm.3 -#opt/lampp/man/man3/UI_OpenSSL.3 -#opt/lampp/man/man3/UI_add_error_string.3 -#opt/lampp/man/man3/UI_add_info_string.3 -#opt/lampp/man/man3/UI_add_input_boolean.3 -#opt/lampp/man/man3/UI_add_input_string.3 -#opt/lampp/man/man3/UI_add_user_data.3 -#opt/lampp/man/man3/UI_add_verify_string.3 -#opt/lampp/man/man3/UI_construct_promptUI_add_user_data.3 -#opt/lampp/man/man3/UI_construct_prompt.3 -#opt/lampp/man/man3/UI_ctrl.3 -#opt/lampp/man/man3/UI_dup_error_string.3 -#opt/lampp/man/man3/UI_dup_info_string.3 -#opt/lampp/man/man3/UI_dup_input_boolean.3 -#opt/lampp/man/man3/UI_dup_input_string.3 -#opt/lampp/man/man3/UI_dup_verify_string.3 -#opt/lampp/man/man3/UI_free.3 -#opt/lampp/man/man3/UI_get0_result.3 -#opt/lampp/man/man3/UI_get0_user_data.3 -#opt/lampp/man/man3/UI_get_default_method.3 -#opt/lampp/man/man3/UI_get_method.3 -#opt/lampp/man/man3/UI_new.3 -#opt/lampp/man/man3/UI_new_method.3 -#opt/lampp/man/man3/UI_process.3 -#opt/lampp/man/man3/UI_set_default_method.3 -#opt/lampp/man/man3/UI_set_method.3 -#opt/lampp/man/man3/UNIVERSAL.3 -#opt/lampp/man/man3/URI.3 -#opt/lampp/man/man3/URI::Escape.3 -#opt/lampp/man/man3/URI::Heuristic.3 -#opt/lampp/man/man3/URI::QueryParam.3 -#opt/lampp/man/man3/URI::Split.3 -#opt/lampp/man/man3/URI::URL.3 -#opt/lampp/man/man3/URI::WithBase.3 -#opt/lampp/man/man3/URI::data.3 -#opt/lampp/man/man3/URI::file.3 -#opt/lampp/man/man3/URI::ldap.3 -#opt/lampp/man/man3/Unicode::Collate.3 -#opt/lampp/man/man3/Unicode::Normalize.3 -#opt/lampp/man/man3/Unicode::UCD.3 -#opt/lampp/man/man3/User::grent.3 -#opt/lampp/man/man3/User::pwent.3 -#opt/lampp/man/man3/WWW::RobotRules.3 -#opt/lampp/man/man3/WWW::RobotRules::AnyDBM_File.3 -#opt/lampp/man/man3/Win32.3 -#opt/lampp/man/man3/Win32::DBIODBC.3 -#opt/lampp/man/man3/X509_NAME_ENTRY_create_by_NID.3 -#opt/lampp/man/man3/X509_NAME_ENTRY_create_by_OBJ.3 -#opt/lampp/man/man3/X509_NAME_ENTRY_create_by_txt.3 -#opt/lampp/man/man3/X509_NAME_ENTRY_get_data.3 -#opt/lampp/man/man3/X509_NAME_ENTRY_get_object.3 -#opt/lampp/man/man3/X509_NAME_ENTRY_set_data.3 -#opt/lampp/man/man3/X509_NAME_ENTRY_set_object.3 -#opt/lampp/man/man3/X509_NAME_add_entry.3 -#opt/lampp/man/man3/X509_NAME_add_entry_by_NID.3 -#opt/lampp/man/man3/X509_NAME_add_entry_by_OBJ.3 -#opt/lampp/man/man3/X509_NAME_add_entry_by_txt.3 -#opt/lampp/man/man3/X509_NAME_delete_entry.3 -#opt/lampp/man/man3/X509_NAME_entry_count.3 -#opt/lampp/man/man3/X509_NAME_get_entry.3 -#opt/lampp/man/man3/X509_NAME_get_index_by_NID.3 -#opt/lampp/man/man3/X509_NAME_get_index_by_OBJ.3 -#opt/lampp/man/man3/X509_NAME_get_text_by_NID.3 -#opt/lampp/man/man3/X509_NAME_get_text_by_OBJ.3 -#opt/lampp/man/man3/X509_NAME_oneline.3 -#opt/lampp/man/man3/X509_NAME_print.3 -#opt/lampp/man/man3/X509_NAME_print_ex.3 -#opt/lampp/man/man3/X509_NAME_print_ex_fp.3 -#opt/lampp/man/man3/X509_free.3 -#opt/lampp/man/man3/X509_new.3 -#opt/lampp/man/man3/XS::APItest.3 -#opt/lampp/man/man3/XS::Typemap.3 -#opt/lampp/man/man3/XSLoader.3 -#opt/lampp/man/man3/_nc_tracebits.3ncurses.gz -#opt/lampp/man/man3/_traceattr.3ncurses.gz -#opt/lampp/man/man3/_traceattr2.3ncurses.gz -#opt/lampp/man/man3/_tracechar.3ncurses.gz -#opt/lampp/man/man3/_tracechtype.3ncurses.gz -#opt/lampp/man/man3/_tracechtype2.3ncurses.gz -#opt/lampp/man/man3/_tracedump.3ncurses.gz -#opt/lampp/man/man3/_tracef.3ncurses.gz -#opt/lampp/man/man3/_tracemouse.3ncurses.gz -#opt/lampp/man/man3/add_wch.3ncurses.gz -#opt/lampp/man/man3/add_wchnstr.3ncurses.gz -#opt/lampp/man/man3/add_wchstr.3ncurses.gz -#opt/lampp/man/man3/addch.3ncurses.gz -#opt/lampp/man/man3/addchnstr.3ncurses.gz -#opt/lampp/man/man3/addchstr.3ncurses.gz -#opt/lampp/man/man3/addnstr.3ncurses.gz -#opt/lampp/man/man3/addnwstr.3ncurses.gz -#opt/lampp/man/man3/addstr.3ncurses.gz -#opt/lampp/man/man3/addwstr.3ncurses.gz -#opt/lampp/man/man3/assume_default_colors.3ncurses.gz -#opt/lampp/man/man3/attr.3ncurses.gz -#opt/lampp/man/man3/attr_get.3ncurses.gz -#opt/lampp/man/man3/attr_off.3ncurses.gz -#opt/lampp/man/man3/attr_on.3ncurses.gz -#opt/lampp/man/man3/attr_set.3ncurses.gz -#opt/lampp/man/man3/attributes.3 -#opt/lampp/man/man3/attributes.3menu.gz -#opt/lampp/man/man3/attroff.3ncurses.gz -#opt/lampp/man/man3/attron.3ncurses.gz -#opt/lampp/man/man3/attrs.3 -#opt/lampp/man/man3/attrset.3ncurses.gz -#opt/lampp/man/man3/autouse.3 -#opt/lampp/man/man3/base.3 -#opt/lampp/man/man3/baudrate.3ncurses.gz -#opt/lampp/man/man3/beep.3ncurses.gz -#opt/lampp/man/man3/ber_alloc_t.3 -#opt/lampp/man/man3/ber_bvarray_add.3 -#opt/lampp/man/man3/ber_bvarray_free.3 -#opt/lampp/man/man3/ber_bvdup.3 -#opt/lampp/man/man3/ber_bvecadd.3 -#opt/lampp/man/man3/ber_bvecfree.3 -#opt/lampp/man/man3/ber_bvfree.3 -#opt/lampp/man/man3/ber_bvstr.3 -#opt/lampp/man/man3/ber_bvstrdup.3 -#opt/lampp/man/man3/ber_dupbv.3 -#opt/lampp/man/man3/ber_first_element.3 -#opt/lampp/man/man3/ber_flush.3 -#opt/lampp/man/man3/ber_free.3 -#opt/lampp/man/man3/ber_get_bitstring.3 -#opt/lampp/man/man3/ber_get_boolean.3 -#opt/lampp/man/man3/ber_get_enum.3 -#opt/lampp/man/man3/ber_get_int.3 -#opt/lampp/man/man3/ber_get_next.3 -#opt/lampp/man/man3/ber_get_null.3 -#opt/lampp/man/man3/ber_get_stringa.3 -#opt/lampp/man/man3/ber_get_stringb.3 -#opt/lampp/man/man3/ber_next_element.3 -#opt/lampp/man/man3/ber_peek_tag.3 -#opt/lampp/man/man3/ber_printf.3 -#opt/lampp/man/man3/ber_put_enum.3 -#opt/lampp/man/man3/ber_put_int.3 -#opt/lampp/man/man3/ber_put_null.3 -#opt/lampp/man/man3/ber_put_ostring.3 -#opt/lampp/man/man3/ber_put_seq.3 -#opt/lampp/man/man3/ber_put_set.3 -#opt/lampp/man/man3/ber_put_string.3 -#opt/lampp/man/man3/ber_scanf.3 -#opt/lampp/man/man3/ber_skip_tag.3 -#opt/lampp/man/man3/ber_start_set.3 -#opt/lampp/man/man3/ber_str2bv.3 -#opt/lampp/man/man3/bigint.3 -#opt/lampp/man/man3/bignum.3 -#opt/lampp/man/man3/bigrat.3 -#opt/lampp/man/man3/bind_textdomain_codeset.3 -#opt/lampp/man/man3/bindtextdomain.3 -#opt/lampp/man/man3/bio.3 -#opt/lampp/man/man3/bkgd.3ncurses.gz -#opt/lampp/man/man3/bkgdset.3ncurses.gz -#opt/lampp/man/man3/bkgrnd.3ncurses.gz -#opt/lampp/man/man3/bkgrndset.3ncurses.gz -#opt/lampp/man/man3/blib.3 -#opt/lampp/man/man3/blowfish.3 -#opt/lampp/man/man3/bn.3 -#opt/lampp/man/man3/bn_add_words.3 -#opt/lampp/man/man3/bn_check_top.3 -#opt/lampp/man/man3/bn_cmp_words.3 -#opt/lampp/man/man3/bn_div_words.3 -#opt/lampp/man/man3/bn_dump.3 -#opt/lampp/man/man3/bn_expand.3 -#opt/lampp/man/man3/bn_expand2.3 -#opt/lampp/man/man3/bn_fix_top.3 -#opt/lampp/man/man3/bn_internal.3 -#opt/lampp/man/man3/bn_mul_add_words.3 -#opt/lampp/man/man3/bn_mul_comba4.3 -#opt/lampp/man/man3/bn_mul_comba8.3 -#opt/lampp/man/man3/bn_mul_high.3 -#opt/lampp/man/man3/bn_mul_low_normal.3 -#opt/lampp/man/man3/bn_mul_low_recursive.3 -#opt/lampp/man/man3/bn_mul_normal.3 -#opt/lampp/man/man3/bn_mul_part_recursive.3 -#opt/lampp/man/man3/bn_mul_recursive.3 -#opt/lampp/man/man3/bn_mul_words.3 -#opt/lampp/man/man3/bn_print.3 -#opt/lampp/man/man3/bn_set_high.3 -#opt/lampp/man/man3/bn_set_low.3 -#opt/lampp/man/man3/bn_set_max.3 -#opt/lampp/man/man3/bn_sqr_comba4.3 -#opt/lampp/man/man3/bn_sqr_comba8.3 -#opt/lampp/man/man3/bn_sqr_normal.3 -#opt/lampp/man/man3/bn_sqr_recursive.3 -#opt/lampp/man/man3/bn_sqr_words.3 -#opt/lampp/man/man3/bn_sub_words.3 -#opt/lampp/man/man3/bn_wexpand.3 -#opt/lampp/man/man3/border.3ncurses.gz -#opt/lampp/man/man3/border_set.3ncurses.gz -#opt/lampp/man/man3/bottom_panel.3curses.gz -#opt/lampp/man/man3/box.3ncurses.gz -#opt/lampp/man/man3/box_set.3ncurses.gz -#opt/lampp/man/man3/buffer.3 -#opt/lampp/man/man3/bytes.3 -#opt/lampp/man/man3/can_change_color.3ncurses.gz -#opt/lampp/man/man3/cbreak.3ncurses.gz -#opt/lampp/man/man3/charnames.3 -#opt/lampp/man/man3/chgat.3ncurses.gz -#opt/lampp/man/man3/cldap.3 -#opt/lampp/man/man3/cldap_close.3 -#opt/lampp/man/man3/cldap_open.3 -#opt/lampp/man/man3/cldap_search_s.3 -#opt/lampp/man/man3/cldap_setretryinfo.3 -#opt/lampp/man/man3/clear.3ncurses.gz -#opt/lampp/man/man3/clearok.3ncurses.gz -#opt/lampp/man/man3/clrtobot.3ncurses.gz -#opt/lampp/man/man3/clrtoeol.3ncurses.gz -#opt/lampp/man/man3/color.3ncurses.gz -#opt/lampp/man/man3/color_content.3ncurses.gz -#opt/lampp/man/man3/color_set.3ncurses.gz -#opt/lampp/man/man3/constant.3 -#opt/lampp/man/man3/copywin.3ncurses.gz -#opt/lampp/man/man3/crypto.3 -#opt/lampp/man/man3/curl_easy_cleanup.3 -#opt/lampp/man/man3/curl_easy_duphandle.3 -#opt/lampp/man/man3/curl_easy_getinfo.3 -#opt/lampp/man/man3/curl_easy_init.3 -#opt/lampp/man/man3/curl_easy_perform.3 -#opt/lampp/man/man3/curl_easy_reset.3 -#opt/lampp/man/man3/curl_easy_setopt.3 -#opt/lampp/man/man3/curl_easy_strerror.3 -#opt/lampp/man/man3/curl_escape.3 -#opt/lampp/man/man3/curl_formadd.3 -#opt/lampp/man/man3/curl_formfree.3 -#opt/lampp/man/man3/curl_formparse.3 -#opt/lampp/man/man3/curl_free.3 -#opt/lampp/man/man3/curl_getdate.3 -#opt/lampp/man/man3/curl_getenv.3 -#opt/lampp/man/man3/curl_global_cleanup.3 -#opt/lampp/man/man3/curl_global_init.3 -#opt/lampp/man/man3/curl_global_init_mem.3 -#opt/lampp/man/man3/curl_mprintf.3 -#opt/lampp/man/man3/curl_multi_add_handle.3 -#opt/lampp/man/man3/curl_multi_cleanup.3 -#opt/lampp/man/man3/curl_multi_fdset.3 -#opt/lampp/man/man3/curl_multi_info_read.3 -#opt/lampp/man/man3/curl_multi_init.3 -#opt/lampp/man/man3/curl_multi_perform.3 -#opt/lampp/man/man3/curl_multi_remove_handle.3 -#opt/lampp/man/man3/curl_multi_strerror.3 -#opt/lampp/man/man3/curl_share_cleanup.3 -#opt/lampp/man/man3/curl_share_init.3 -#opt/lampp/man/man3/curl_share_setopt.3 -#opt/lampp/man/man3/curl_share_strerror.3 -#opt/lampp/man/man3/curl_slist_append.3 -#opt/lampp/man/man3/curl_slist_free_all.3 -#opt/lampp/man/man3/curl_strequal.3 -#opt/lampp/man/man3/curl_strnequal.3 -#opt/lampp/man/man3/curl_unescape.3 -#opt/lampp/man/man3/curl_version.3 -#opt/lampp/man/man3/curl_version_info.3 -#opt/lampp/man/man3/current_field.3form.gz -#opt/lampp/man/man3/current_item.3menu.gz -#opt/lampp/man/man3/curs_set.3ncurses.gz -#opt/lampp/man/man3/curses_version.3ncurses.gz -#opt/lampp/man/man3/cursor.3form.gz -#opt/lampp/man/man3/cursor.3menu.gz -#opt/lampp/man/man3/d2i_509_CRL_fp.3 -#opt/lampp/man/man3/d2i_ASN1_OBJECT.3 -#opt/lampp/man/man3/d2i_DHparams.3 -#opt/lampp/man/man3/d2i_DSAPrivateKey.3 -#opt/lampp/man/man3/d2i_DSAPublicKey.3 -#opt/lampp/man/man3/d2i_DSA_PUBKEY.3 -#opt/lampp/man/man3/d2i_DSA_SIG.3 -#opt/lampp/man/man3/d2i_Netscape_RSA.3 -#opt/lampp/man/man3/d2i_PKCS8PrivateKey.3 -#opt/lampp/man/man3/d2i_PKCS8PrivateKey_bio.3 -#opt/lampp/man/man3/d2i_PKCS8PrivateKey_fp.3 -#opt/lampp/man/man3/d2i_RSAPrivateKey.3 -#opt/lampp/man/man3/d2i_RSAPublicKey.3 -#opt/lampp/man/man3/d2i_RSA_PUBKEY.3 -#opt/lampp/man/man3/d2i_SSL_SESSION.3 -#opt/lampp/man/man3/d2i_X509.3 -#opt/lampp/man/man3/d2i_X509_ALGOR.3 -#opt/lampp/man/man3/d2i_X509_CRL.3 -#opt/lampp/man/man3/d2i_X509_CRL_bio.3 -#opt/lampp/man/man3/d2i_X509_NAME.3 -#opt/lampp/man/man3/d2i_X509_REQ.3 -#opt/lampp/man/man3/d2i_X509_REQ_bio.3 -#opt/lampp/man/man3/d2i_X509_REQ_fp.3 -#opt/lampp/man/man3/d2i_X509_SIG.3 -#opt/lampp/man/man3/d2i_X509_bio.3 -#opt/lampp/man/man3/d2i_X509_fp.3 -#opt/lampp/man/man3/data.3form.gz -#opt/lampp/man/man3/data_ahead.3form.gz -#opt/lampp/man/man3/data_behind.3form.gz -#opt/lampp/man/man3/dcgettext.3 -#opt/lampp/man/man3/dcngettext.3 -#opt/lampp/man/man3/def_prog_mode.3ncurses.gz -#opt/lampp/man/man3/def_shell_mode.3ncurses.gz -#opt/lampp/man/man3/default_colors.3ncurses.gz -#opt/lampp/man/man3/define_key.3ncurses.gz -#opt/lampp/man/man3/del_curterm.3ncurses.gz -#opt/lampp/man/man3/del_panel.3curses.gz -#opt/lampp/man/man3/delay_output.3ncurses.gz -#opt/lampp/man/man3/delch.3ncurses.gz -#opt/lampp/man/man3/deleteln.3ncurses.gz -#opt/lampp/man/man3/delscreen.3ncurses.gz -#opt/lampp/man/man3/delwin.3ncurses.gz -#opt/lampp/man/man3/derwin.3ncurses.gz -#opt/lampp/man/man3/des.3 -#opt/lampp/man/man3/des_read_2passwords.3 -#opt/lampp/man/man3/des_read_password.3 -#opt/lampp/man/man3/des_read_pw.3 -#opt/lampp/man/man3/des_read_pw_string.3 -#opt/lampp/man/man3/dgettext.3 -#opt/lampp/man/man3/dh.3 -#opt/lampp/man/man3/diagnostics.3 -#opt/lampp/man/man3/dngettext.3 -#opt/lampp/man/man3/doupdate.3ncurses.gz -#opt/lampp/man/man3/driver.3form.gz -#opt/lampp/man/man3/driver.3menu.gz -#opt/lampp/man/man3/dsa.3 -#opt/lampp/man/man3/dup_field.3form.gz -#opt/lampp/man/man3/dupwin.3ncurses.gz -#opt/lampp/man/man3/dynamic_field_info.3form.gz -#opt/lampp/man/man3/ecdsa.3 -#opt/lampp/man/man3/echo.3ncurses.gz -#opt/lampp/man/man3/echo_wchar.3ncurses.gz -#opt/lampp/man/man3/echochar.3ncurses.gz -#opt/lampp/man/man3/encoding.3 -#opt/lampp/man/man3/endwin.3ncurses.gz -#opt/lampp/man/man3/engine.3 -#opt/lampp/man/man3/erase.3ncurses.gz -#opt/lampp/man/man3/erasechar.3ncurses.gz -#opt/lampp/man/man3/erasewchar.3ncurses.gz -#opt/lampp/man/man3/err.3 -#opt/lampp/man/man3/evp.3 -#opt/lampp/man/man3/extensions.3ncurses.gz -#opt/lampp/man/man3/field.3form.gz -#opt/lampp/man/man3/field_arg.3form.gz -#opt/lampp/man/man3/field_attributes.3form.gz -#opt/lampp/man/man3/field_back.3form.gz -#opt/lampp/man/man3/field_buffer.3form.gz -#opt/lampp/man/man3/field_count.3form.gz -#opt/lampp/man/man3/field_fore.3form.gz -#opt/lampp/man/man3/field_index.3form.gz -#opt/lampp/man/man3/field_info.3form.gz -#opt/lampp/man/man3/field_just.3form.gz -#opt/lampp/man/man3/field_new.3form.gz -#opt/lampp/man/man3/field_opts.3form.gz -#opt/lampp/man/man3/field_opts_off.3form.gz -#opt/lampp/man/man3/field_opts_on.3form.gz -#opt/lampp/man/man3/field_pad.3form.gz -#opt/lampp/man/man3/field_status.3form.gz -#opt/lampp/man/man3/field_type.3form.gz -#opt/lampp/man/man3/field_userptr.3form.gz -#opt/lampp/man/man3/field_validation.3form.gz -#opt/lampp/man/man3/fields.3 -#opt/lampp/man/man3/fieldtype.3form.gz -#opt/lampp/man/man3/filetest.3 -#opt/lampp/man/man3/filter.3ncurses.gz -#opt/lampp/man/man3/flash.3ncurses.gz -#opt/lampp/man/man3/flushinp.3ncurses.gz -#opt/lampp/man/man3/form.3form.gz -#opt/lampp/man/man3/form_cursor.3form.gz -#opt/lampp/man/man3/form_data.3form.gz -#opt/lampp/man/man3/form_driver.3form.gz -#opt/lampp/man/man3/form_field.3form.gz -#opt/lampp/man/man3/form_field_attributes.3form.gz -#opt/lampp/man/man3/form_field_buffer.3form.gz -#opt/lampp/man/man3/form_field_info.3form.gz -#opt/lampp/man/man3/form_field_just.3form.gz -#opt/lampp/man/man3/form_field_new.3form.gz -#opt/lampp/man/man3/form_field_opts.3form.gz -#opt/lampp/man/man3/form_field_userptr.3form.gz -#opt/lampp/man/man3/form_field_validation.3form.gz -#opt/lampp/man/man3/form_fields.3form.gz -#opt/lampp/man/man3/form_fieldtype.3form.gz -#opt/lampp/man/man3/form_hook.3form.gz -#opt/lampp/man/man3/form_new.3form.gz -#opt/lampp/man/man3/form_new_page.3form.gz -#opt/lampp/man/man3/form_opts.3form.gz -#opt/lampp/man/man3/form_opts_off.3form.gz -#opt/lampp/man/man3/form_opts_on.3form.gz -#opt/lampp/man/man3/form_page.3form.gz -#opt/lampp/man/man3/form_post.3form.gz -#opt/lampp/man/man3/form_request_by_name.3form.gz -#opt/lampp/man/man3/form_request_name.3form.gz -#opt/lampp/man/man3/form_requestname.3form.gz -#opt/lampp/man/man3/form_sub.3form.gz -#opt/lampp/man/man3/form_userptr.3form.gz -#opt/lampp/man/man3/form_win.3form.gz -#opt/lampp/man/man3/format.3menu.gz -#opt/lampp/man/man3/free_field.3form.gz -#opt/lampp/man/man3/free_fieldtype.3form.gz -#opt/lampp/man/man3/free_form.3form.gz -#opt/lampp/man/man3/free_item.3menu.gz -#opt/lampp/man/man3/free_menu.3menu.gz -#opt/lampp/man/man3/gdbm.3 -#opt/lampp/man/man3/get_wch.3ncurses.gz -#opt/lampp/man/man3/get_wstr.3ncurses.gz -#opt/lampp/man/man3/getbegx.3ncurses.gz -#opt/lampp/man/man3/getbegy.3ncurses.gz -#opt/lampp/man/man3/getbegyx.3ncurses.gz -#opt/lampp/man/man3/getbkgd.3ncurses.gz -#opt/lampp/man/man3/getbkgrnd.3ncurses.gz -#opt/lampp/man/man3/getcchar.3ncurses.gz -#opt/lampp/man/man3/getch.3ncurses.gz -#opt/lampp/man/man3/getcurx.3ncurses.gz -#opt/lampp/man/man3/getcury.3ncurses.gz -#opt/lampp/man/man3/getmaxx.3ncurses.gz -#opt/lampp/man/man3/getmaxy.3ncurses.gz -#opt/lampp/man/man3/getmaxyx.3ncurses.gz -#opt/lampp/man/man3/getmouse.3ncurses.gz -#opt/lampp/man/man3/getn_wstr.3ncurses.gz -#opt/lampp/man/man3/getnstr.3ncurses.gz -#opt/lampp/man/man3/getparx.3ncurses.gz -#opt/lampp/man/man3/getpary.3ncurses.gz -#opt/lampp/man/man3/getparyx.3ncurses.gz -#opt/lampp/man/man3/getstr.3ncurses.gz -#opt/lampp/man/man3/getsyx.3ncurses.gz -#opt/lampp/man/man3/gettext.3 -#opt/lampp/man/man3/getwin.3ncurses.gz -#opt/lampp/man/man3/getyx.3ncurses.gz -#opt/lampp/man/man3/halfdelay.3ncurses.gz -#opt/lampp/man/man3/has_colors.3ncurses.gz -#opt/lampp/man/man3/has_ic.3ncurses.gz -#opt/lampp/man/man3/has_il.3ncurses.gz -#opt/lampp/man/man3/has_key.3ncurses.gz -#opt/lampp/man/man3/hide_panel.3curses.gz -#opt/lampp/man/man3/hline.3ncurses.gz -#opt/lampp/man/man3/hline_set.3ncurses.gz -#opt/lampp/man/man3/hmac.3 -#opt/lampp/man/man3/hook.3form.gz -#opt/lampp/man/man3/hook.3menu.gz -#opt/lampp/man/man3/i2d_ASN1_OBJECT.3 -#opt/lampp/man/man3/i2d_DHparams.3 -#opt/lampp/man/man3/i2d_DSAPrivateKey.3 -#opt/lampp/man/man3/i2d_DSAPublicKey.3 -#opt/lampp/man/man3/i2d_DSA_PUBKEY.3 -#opt/lampp/man/man3/i2d_DSA_SIG.3 -#opt/lampp/man/man3/i2d_Netscape_RSA.3 -#opt/lampp/man/man3/i2d_PKCS8PrivateKey_bio.3 -#opt/lampp/man/man3/i2d_PKCS8PrivateKey_fp.3 -#opt/lampp/man/man3/i2d_PKCS8PrivateKey_nid_bio.3 -#opt/lampp/man/man3/i2d_PKCS8PrivateKey_nid_fp.3 -#opt/lampp/man/man3/i2d_RSAPrivateKey.3 -#opt/lampp/man/man3/i2d_RSAPublicKey.3 -#opt/lampp/man/man3/i2d_RSA_PUBKEY.3 -#opt/lampp/man/man3/i2d_SSL_SESSION.3 -#opt/lampp/man/man3/i2d_X509.3 -#opt/lampp/man/man3/i2d_X509_ALGOR.3 -#opt/lampp/man/man3/i2d_X509_CRL.3 -#opt/lampp/man/man3/i2d_X509_CRL_bio.3 -#opt/lampp/man/man3/i2d_X509_CRL_fp.3 -#opt/lampp/man/man3/i2d_X509_NAME.3 -#opt/lampp/man/man3/i2d_X509_REQ.3 -#opt/lampp/man/man3/i2d_X509_REQ_bio.3 -#opt/lampp/man/man3/i2d_X509_REQ_fp.3 -#opt/lampp/man/man3/i2d_X509_SIG.3 -#opt/lampp/man/man3/i2d_X509_bio.3 -#opt/lampp/man/man3/i2d_X509_fp.3 -#opt/lampp/man/man3/idcok.3ncurses.gz -#opt/lampp/man/man3/idlok.3ncurses.gz -#opt/lampp/man/man3/if.3 -#opt/lampp/man/man3/immedok.3ncurses.gz -#opt/lampp/man/man3/in_wch.3ncurses.gz -#opt/lampp/man/man3/in_wchnstr.3ncurses.gz -#opt/lampp/man/man3/in_wchstr.3ncurses.gz -#opt/lampp/man/man3/inch.3ncurses.gz -#opt/lampp/man/man3/inchnstr.3ncurses.gz -#opt/lampp/man/man3/inchstr.3ncurses.gz -#opt/lampp/man/man3/init_color.3ncurses.gz -#opt/lampp/man/man3/init_pair.3ncurses.gz -#opt/lampp/man/man3/initscr.3ncurses.gz -#opt/lampp/man/man3/innstr.3ncurses.gz -#opt/lampp/man/man3/innwstr.3ncurses.gz -#opt/lampp/man/man3/inopts.3ncurses.gz -#opt/lampp/man/man3/ins_nwstr.3ncurses.gz -#opt/lampp/man/man3/ins_wch.3ncurses.gz -#opt/lampp/man/man3/ins_wstr.3ncurses.gz -#opt/lampp/man/man3/insch.3ncurses.gz -#opt/lampp/man/man3/insdelln.3ncurses.gz -#opt/lampp/man/man3/insertln.3ncurses.gz -#opt/lampp/man/man3/insnstr.3ncurses.gz -#opt/lampp/man/man3/insstr.3ncurses.gz -#opt/lampp/man/man3/instr.3ncurses.gz -#opt/lampp/man/man3/integer.3 -#opt/lampp/man/man3/intrflush.3ncurses.gz -#opt/lampp/man/man3/inwstr.3ncurses.gz -#opt/lampp/man/man3/is_linetouched.3ncurses.gz -#opt/lampp/man/man3/is_term_resized.3ncurses.gz -#opt/lampp/man/man3/is_wintouched.3ncurses.gz -#opt/lampp/man/man3/isendwin.3ncurses.gz -#opt/lampp/man/man3/item_count.3menu.gz -#opt/lampp/man/man3/item_description.3menu.gz -#opt/lampp/man/man3/item_index.3menu.gz -#opt/lampp/man/man3/item_name.3menu.gz -#opt/lampp/man/man3/item_opts.3menu.gz -#opt/lampp/man/man3/item_opts_off.3menu.gz -#opt/lampp/man/man3/item_opts_on.3menu.gz -#opt/lampp/man/man3/item_userptr.3menu.gz -#opt/lampp/man/man3/item_value.3menu.gz -#opt/lampp/man/man3/item_visible.3menu.gz -#opt/lampp/man/man3/items.3menu.gz -#opt/lampp/man/man3/kernel.3ncurses.gz -#opt/lampp/man/man3/key_name.3ncurses.gz -#opt/lampp/man/man3/keybound.3ncurses.gz -#opt/lampp/man/man3/keyname.3ncurses.gz -#opt/lampp/man/man3/keyok.3ncurses.gz -#opt/lampp/man/man3/keypad.3ncurses.gz -#opt/lampp/man/man3/killchar.3ncurses.gz -#opt/lampp/man/man3/killwchar.3ncurses.gz -#opt/lampp/man/man3/lber-decode.3 -#opt/lampp/man/man3/lber-encode.3 -#opt/lampp/man/man3/lber-memory.3 -#opt/lampp/man/man3/lber-types.3 -#opt/lampp/man/man3/ld_errno.3 -#opt/lampp/man/man3/ldap.3 -#opt/lampp/man/man3/ldap_8859_to_t61.3 -#opt/lampp/man/man3/ldap_abandon.3 -#opt/lampp/man/man3/ldap_abandon_ext.3 -#opt/lampp/man/man3/ldap_add.3 -#opt/lampp/man/man3/ldap_add_ext.3 -#opt/lampp/man/man3/ldap_add_ext_s.3 -#opt/lampp/man/man3/ldap_add_s.3 -#opt/lampp/man/man3/ldap_attributetype2name.3 -#opt/lampp/man/man3/ldap_attributetype2str.3 -#opt/lampp/man/man3/ldap_attributetype_free.3 -#opt/lampp/man/man3/ldap_bind.3 -#opt/lampp/man/man3/ldap_bind_s.3 -#opt/lampp/man/man3/ldap_build_filter.3 -#opt/lampp/man/man3/ldap_cache.3 -#opt/lampp/man/man3/ldap_charset.3 -#opt/lampp/man/man3/ldap_compare.3 -#opt/lampp/man/man3/ldap_compare_ext.3 -#opt/lampp/man/man3/ldap_compare_ext_s.3 -#opt/lampp/man/man3/ldap_compare_s.3 -#opt/lampp/man/man3/ldap_count_entries.3 -#opt/lampp/man/man3/ldap_count_messages.3 -#opt/lampp/man/man3/ldap_count_references.3 -#opt/lampp/man/man3/ldap_count_values.3 -#opt/lampp/man/man3/ldap_count_values_len.3 -#opt/lampp/man/man3/ldap_dcedn2dn.3 -#opt/lampp/man/man3/ldap_delete.3 -#opt/lampp/man/man3/ldap_delete_ext.3 -#opt/lampp/man/man3/ldap_delete_ext_s.3 -#opt/lampp/man/man3/ldap_delete_s.3 -#opt/lampp/man/man3/ldap_destroy_cache.3 -#opt/lampp/man/man3/ldap_disable_cache.3 -#opt/lampp/man/man3/ldap_disptmpl.3 -#opt/lampp/man/man3/ldap_dn2ad_canonical.3 -#opt/lampp/man/man3/ldap_dn2dcedn.3 -#opt/lampp/man/man3/ldap_dn2str.3 -#opt/lampp/man/man3/ldap_dn2ufn.3 -#opt/lampp/man/man3/ldap_enable_cache.3 -#opt/lampp/man/man3/ldap_enable_translation.3 -#opt/lampp/man/man3/ldap_entry2html.3 -#opt/lampp/man/man3/ldap_entry2html_search.3 -#opt/lampp/man/man3/ldap_entry2text.3 -#opt/lampp/man/man3/ldap_entry2text_search.3 -#opt/lampp/man/man3/ldap_err2string.3 -#opt/lampp/man/man3/ldap_errlist.3 -#opt/lampp/man/man3/ldap_error.3 -#opt/lampp/man/man3/ldap_explode_dn.3 -#opt/lampp/man/man3/ldap_explode_dns.3 -#opt/lampp/man/man3/ldap_explode_rdn.3 -#opt/lampp/man/man3/ldap_first_attribute.3 -#opt/lampp/man/man3/ldap_first_disptmpl.3 -#opt/lampp/man/man3/ldap_first_entry.3 -#opt/lampp/man/man3/ldap_first_message.3 -#opt/lampp/man/man3/ldap_first_reference.3 -#opt/lampp/man/man3/ldap_first_searchobj.3 -#opt/lampp/man/man3/ldap_first_tmplcol.3 -#opt/lampp/man/man3/ldap_first_tmplrow.3 -#opt/lampp/man/man3/ldap_flush_cache.3 -#opt/lampp/man/man3/ldap_free_friendlymap.3 -#opt/lampp/man/man3/ldap_free_searchprefs.3 -#opt/lampp/man/man3/ldap_free_templates.3 -#opt/lampp/man/man3/ldap_free_urldesc.3 -#opt/lampp/man/man3/ldap_friendly.3 -#opt/lampp/man/man3/ldap_friendly_name.3 -#opt/lampp/man/man3/ldap_get_dn.3 -#opt/lampp/man/man3/ldap_get_values.3 -#opt/lampp/man/man3/ldap_get_values_len.3 -#opt/lampp/man/man3/ldap_getfilter.3 -#opt/lampp/man/man3/ldap_getfilter_free.3 -#opt/lampp/man/man3/ldap_getfirstfilter.3 -#opt/lampp/man/man3/ldap_getnextfilter.3 -#opt/lampp/man/man3/ldap_init.3 -#opt/lampp/man/man3/ldap_init_getfilter.3 -#opt/lampp/man/man3/ldap_init_getfilter_buf.3 -#opt/lampp/man/man3/ldap_init_searchprefs.3 -#opt/lampp/man/man3/ldap_init_searchprefs_buf.3 -#opt/lampp/man/man3/ldap_init_templates.3 -#opt/lampp/man/man3/ldap_init_templates_buf.3 -#opt/lampp/man/man3/ldap_is_dns_dn.3 -#opt/lampp/man/man3/ldap_is_ldap_url.3 -#opt/lampp/man/man3/ldap_kerberos_bind1.3 -#opt/lampp/man/man3/ldap_kerberos_bind1_s.3 -#opt/lampp/man/man3/ldap_kerberos_bind2.3 -#opt/lampp/man/man3/ldap_kerberos_bind2_s.3 -#opt/lampp/man/man3/ldap_kerberos_bind_s.3 -#opt/lampp/man/man3/ldap_matchingrule2name.3 -#opt/lampp/man/man3/ldap_matchingrule2str.3 -#opt/lampp/man/man3/ldap_matchingrule_free.3 -#opt/lampp/man/man3/ldap_modify.3 -#opt/lampp/man/man3/ldap_modify_ext.3 -#opt/lampp/man/man3/ldap_modify_ext_s.3 -#opt/lampp/man/man3/ldap_modify_s.3 -#opt/lampp/man/man3/ldap_modrdn.3 -#opt/lampp/man/man3/ldap_modrdn2 -#opt/lampp/man/man3/ldap_modrdn2.3 -#opt/lampp/man/man3/ldap_modrdn2_s -#opt/lampp/man/man3/ldap_modrdn2_s.3 -#opt/lampp/man/man3/ldap_modrdn_s -#opt/lampp/man/man3/ldap_modrdn_s.3 -#opt/lampp/man/man3/ldap_mods_free.3 -#opt/lampp/man/man3/ldap_msgfree.3 -#opt/lampp/man/man3/ldap_msgid.3 -#opt/lampp/man/man3/ldap_msgtype.3 -#opt/lampp/man/man3/ldap_next_attribute.3 -#opt/lampp/man/man3/ldap_next_disptmpl.3 -#opt/lampp/man/man3/ldap_next_entry.3 -#opt/lampp/man/man3/ldap_next_message.3 -#opt/lampp/man/man3/ldap_next_reference.3 -#opt/lampp/man/man3/ldap_next_searchobj.3 -#opt/lampp/man/man3/ldap_next_tmplcol.3 -#opt/lampp/man/man3/ldap_next_tmplrow.3 -#opt/lampp/man/man3/ldap_objectclass2name.3 -#opt/lampp/man/man3/ldap_objectclass2str.3 -#opt/lampp/man/man3/ldap_objectclass_free.3 -#opt/lampp/man/man3/ldap_oc2template.3 -#opt/lampp/man/man3/ldap_open.3 -#opt/lampp/man/man3/ldap_parse_extended_result.3 -#opt/lampp/man/man3/ldap_parse_reference.3 -#opt/lampp/man/man3/ldap_parse_result.3 -#opt/lampp/man/man3/ldap_parse_sasl_bind_result.3 -#opt/lampp/man/man3/ldap_perror.3 -#opt/lampp/man/man3/ldap_result.3 -#opt/lampp/man/man3/ldap_result2error.3 -#opt/lampp/man/man3/ldap_sasl_bind.3 -#opt/lampp/man/man3/ldap_sasl_bind_s.3 -#opt/lampp/man/man3/ldap_schema.3 -#opt/lampp/man/man3/ldap_scherr2str.3 -#opt/lampp/man/man3/ldap_search.3 -#opt/lampp/man/man3/ldap_search_ext.3 -#opt/lampp/man/man3/ldap_search_ext_s.3 -#opt/lampp/man/man3/ldap_search_s.3 -#opt/lampp/man/man3/ldap_search_st.3 -#opt/lampp/man/man3/ldap_searchprefs.3 -#opt/lampp/man/man3/ldap_set_cache_options.3 -#opt/lampp/man/man3/ldap_set_rebind_proc.3 -#opt/lampp/man/man3/ldap_set_string_translators.3 -#opt/lampp/man/man3/ldap_setfilteraffixes.3 -#opt/lampp/man/man3/ldap_simple_bind.3 -#opt/lampp/man/man3/ldap_simple_bind_s.3 -#opt/lampp/man/man3/ldap_sort.3 -#opt/lampp/man/man3/ldap_sort_entries.3 -#opt/lampp/man/man3/ldap_sort_strcasecmp.3 -#opt/lampp/man/man3/ldap_sort_values.3 -#opt/lampp/man/man3/ldap_str2attributetype.3 -#opt/lampp/man/man3/ldap_str2dn.3 -#opt/lampp/man/man3/ldap_str2matchingrule.3 -#opt/lampp/man/man3/ldap_str2objectclass.3 -#opt/lampp/man/man3/ldap_str2syntax.3 -#opt/lampp/man/man3/ldap_syntax2name.3 -#opt/lampp/man/man3/ldap_syntax2str.3 -#opt/lampp/man/man3/ldap_syntax_free.3 -#opt/lampp/man/man3/ldap_t61_to_8859.3 -#opt/lampp/man/man3/ldap_tmplattrs.3 -#opt/lampp/man/man3/ldap_translate_from_t61.3 -#opt/lampp/man/man3/ldap_translate_to_t61.3 -#opt/lampp/man/man3/ldap_ufn.3 -#opt/lampp/man/man3/ldap_ufn_search_c.3 -#opt/lampp/man/man3/ldap_ufn_search_ct.3 -#opt/lampp/man/man3/ldap_ufn_search_s.3 -#opt/lampp/man/man3/ldap_ufn_setfilter.3 -#opt/lampp/man/man3/ldap_ufn_setprefix.3 -#opt/lampp/man/man3/ldap_ufn_timeout.3 -#opt/lampp/man/man3/ldap_unbind.3 -#opt/lampp/man/man3/ldap_unbind_ext.3 -#opt/lampp/man/man3/ldap_unbind_ext_s.3 -#opt/lampp/man/man3/ldap_unbind_s.3 -#opt/lampp/man/man3/ldap_uncache_entry.3 -#opt/lampp/man/man3/ldap_uncache_request.3 -#opt/lampp/man/man3/ldap_url.3 -#opt/lampp/man/man3/ldap_url_parse.3 -#opt/lampp/man/man3/ldap_url_search.3 -#opt/lampp/man/man3/ldap_url_search_s.3 -#opt/lampp/man/man3/ldap_url_search_st.3 -#opt/lampp/man/man3/ldap_vals2html.3 -#opt/lampp/man/man3/ldap_vals2text.3 -#opt/lampp/man/man3/ldap_value_free.3 -#opt/lampp/man/man3/ldap_value_free_len.3 -#opt/lampp/man/man3/leaveok.3ncurses.gz -#opt/lampp/man/man3/less.3 -#opt/lampp/man/man3/lh_delete.3 -#opt/lampp/man/man3/lh_doall.3 -#opt/lampp/man/man3/lh_doall_arg.3 -#opt/lampp/man/man3/lh_error.3 -#opt/lampp/man/man3/lh_free.3 -#opt/lampp/man/man3/lh_insert.3 -#opt/lampp/man/man3/lh_new.3 -#opt/lampp/man/man3/lh_node_stats.3 -#opt/lampp/man/man3/lh_node_stats_bio.3 -#opt/lampp/man/man3/lh_node_usage_stats.3 -#opt/lampp/man/man3/lh_node_usage_stats_bio.3 -#opt/lampp/man/man3/lh_retrieve.3 -#opt/lampp/man/man3/lh_stats.3 -#opt/lampp/man/man3/lh_stats_bio.3 -#opt/lampp/man/man3/lhash.3 -#opt/lampp/man/man3/lib.3 -#opt/lampp/man/man3/libcurl-easy.3 -#opt/lampp/man/man3/libcurl-errors.3 -#opt/lampp/man/man3/libcurl-multi.3 -#opt/lampp/man/man3/libcurl-share.3 -#opt/lampp/man/man3/libcurl-tutorial.3 -#opt/lampp/man/man3/libcurl.3 -#opt/lampp/man/man3/libexslt.3 -#opt/lampp/man/man3/libpng.3 -#opt/lampp/man/man3/libpngpf.3 -#opt/lampp/man/man3/libtiff.3t -#opt/lampp/man/man3/libxml.3 -#opt/lampp/man/man3/libxslt.3 -#opt/lampp/man/man3/link_field.3form.gz -#opt/lampp/man/man3/link_fieldtype.3form.gz -#opt/lampp/man/man3/locale.3 -#opt/lampp/man/man3/longname.3ncurses.gz -#opt/lampp/man/man3/lwpcook.3 -#opt/lampp/man/man3/lwptut.3 -#opt/lampp/man/man3/mark.3menu.gz -#opt/lampp/man/man3/mcprint.3ncurses.gz -#opt/lampp/man/man3/mcrypt.3 -#opt/lampp/man/man3/md5.3 -#opt/lampp/man/man3/mdc2.3 -#opt/lampp/man/man3/menu.3menu.gz -#opt/lampp/man/man3/menu_attributes.3menu.gz -#opt/lampp/man/man3/menu_back.3menu.gz -#opt/lampp/man/man3/menu_current.3menu.gz -#opt/lampp/man/man3/menu_cursor.3menu.gz -#opt/lampp/man/man3/menu_driver.3menu.gz -#opt/lampp/man/man3/menu_fore.3menu.gz -#opt/lampp/man/man3/menu_format.3menu.gz -#opt/lampp/man/man3/menu_grey.3menu.gz -#opt/lampp/man/man3/menu_hook.3menu.gz -#opt/lampp/man/man3/menu_items.3menu.gz -#opt/lampp/man/man3/menu_mark.3menu.gz -#opt/lampp/man/man3/menu_name.3menu.gz -#opt/lampp/man/man3/menu_new.3menu.gz -#opt/lampp/man/man3/menu_opts.3menu.gz -#opt/lampp/man/man3/menu_opts_off.3menu.gz -#opt/lampp/man/man3/menu_opts_on.3menu.gz -#opt/lampp/man/man3/menu_pad.3menu.gz -#opt/lampp/man/man3/menu_pattern.3menu.gz -#opt/lampp/man/man3/menu_post.3menu.gz -#opt/lampp/man/man3/menu_request_by_name.3menu.gz -#opt/lampp/man/man3/menu_request_name.3menu.gz -#opt/lampp/man/man3/menu_requestname.3menu.gz -#opt/lampp/man/man3/menu_spacing.3menu.gz -#opt/lampp/man/man3/menu_sub.3menu.gz -#opt/lampp/man/man3/menu_userptr.3menu.gz -#opt/lampp/man/man3/menu_value.3menu.gz -#opt/lampp/man/man3/menu_visible.3menu.gz -#opt/lampp/man/man3/menu_win.3menu.gz -#opt/lampp/man/man3/meta.3ncurses.gz -#opt/lampp/man/man3/mhash.3 -#opt/lampp/man/man3/mitem_current.3menu.gz -#opt/lampp/man/man3/mitem_name.3menu.gz -#opt/lampp/man/man3/mitem_new.3menu.gz -#opt/lampp/man/man3/mitem_opts.3menu.gz -#opt/lampp/man/man3/mitem_userptr.3menu.gz -#opt/lampp/man/man3/mitem_value.3menu.gz -#opt/lampp/man/man3/mitem_visible.3menu.gz -#opt/lampp/man/man3/mod_perl.3 -#opt/lampp/man/man3/mod_perl2.3 -#opt/lampp/man/man3/mouse.3ncurses.gz -#opt/lampp/man/man3/mouse_trafo.3ncurses.gz -#opt/lampp/man/man3/mouseinterval.3ncurses.gz -#opt/lampp/man/man3/mousemask.3ncurses.gz -#opt/lampp/man/man3/move.3ncurses.gz -#opt/lampp/man/man3/move_field.3form.gz -#opt/lampp/man/man3/move_panel.3curses.gz -#opt/lampp/man/man3/mvadd_wch.3ncurses.gz -#opt/lampp/man/man3/mvadd_wchnstr.3ncurses.gz -#opt/lampp/man/man3/mvadd_wchstr.3ncurses.gz -#opt/lampp/man/man3/mvaddch.3ncurses.gz -#opt/lampp/man/man3/mvaddchnstr.3ncurses.gz -#opt/lampp/man/man3/mvaddchstr.3ncurses.gz -#opt/lampp/man/man3/mvaddnstr.3ncurses.gz -#opt/lampp/man/man3/mvaddnwstr.3ncurses.gz -#opt/lampp/man/man3/mvaddstr.3ncurses.gz -#opt/lampp/man/man3/mvaddwstr.3ncurses.gz -#opt/lampp/man/man3/mvchgat.3ncurses.gz -#opt/lampp/man/man3/mvcur.3ncurses.gz -#opt/lampp/man/man3/mvdelch.3ncurses.gz -#opt/lampp/man/man3/mvderwin.3ncurses.gz -#opt/lampp/man/man3/mvget_wch.3ncurses.gz -#opt/lampp/man/man3/mvget_wstr.3ncurses.gz -#opt/lampp/man/man3/mvgetch.3ncurses.gz -#opt/lampp/man/man3/mvgetn_wstr.3ncurses.gz -#opt/lampp/man/man3/mvgetnstr.3ncurses.gz -#opt/lampp/man/man3/mvgetstr.3ncurses.gz -#opt/lampp/man/man3/mvhline.3ncurses.gz -#opt/lampp/man/man3/mvhline_set.3ncurses.gz -#opt/lampp/man/man3/mvin_wch.3ncurses.gz -#opt/lampp/man/man3/mvin_wchnstr.3ncurses.gz -#opt/lampp/man/man3/mvin_wchstr.3ncurses.gz -#opt/lampp/man/man3/mvinch.3ncurses.gz -#opt/lampp/man/man3/mvinchnstr.3ncurses.gz -#opt/lampp/man/man3/mvinchstr.3ncurses.gz -#opt/lampp/man/man3/mvinnstr.3ncurses.gz -#opt/lampp/man/man3/mvinnwstr.3ncurses.gz -#opt/lampp/man/man3/mvins_nwstr.3ncurses.gz -#opt/lampp/man/man3/mvins_wch.3ncurses.gz -#opt/lampp/man/man3/mvins_wstr.3ncurses.gz -#opt/lampp/man/man3/mvinsch.3ncurses.gz -#opt/lampp/man/man3/mvinsnstr.3ncurses.gz -#opt/lampp/man/man3/mvinsstr.3ncurses.gz -#opt/lampp/man/man3/mvinstr.3ncurses.gz -#opt/lampp/man/man3/mvinwstr.3ncurses.gz -#opt/lampp/man/man3/mvprintw.3ncurses.gz -#opt/lampp/man/man3/mvscanw.3ncurses.gz -#opt/lampp/man/man3/mvvline.3ncurses.gz -#opt/lampp/man/man3/mvvline_set.3ncurses.gz -#opt/lampp/man/man3/mvwadd_wch.3ncurses.gz -#opt/lampp/man/man3/mvwadd_wchnstr.3ncurses.gz -#opt/lampp/man/man3/mvwadd_wchstr.3ncurses.gz -#opt/lampp/man/man3/mvwaddch.3ncurses.gz -#opt/lampp/man/man3/mvwaddchnstr.3ncurses.gz -#opt/lampp/man/man3/mvwaddchstr.3ncurses.gz -#opt/lampp/man/man3/mvwaddnstr.3ncurses.gz -#opt/lampp/man/man3/mvwaddnwstr.3ncurses.gz -#opt/lampp/man/man3/mvwaddstr.3ncurses.gz -#opt/lampp/man/man3/mvwaddwstr.3ncurses.gz -#opt/lampp/man/man3/mvwchgat.3ncurses.gz -#opt/lampp/man/man3/mvwdelch.3ncurses.gz -#opt/lampp/man/man3/mvwget_wch.3ncurses.gz -#opt/lampp/man/man3/mvwget_wstr.3ncurses.gz -#opt/lampp/man/man3/mvwgetch.3ncurses.gz -#opt/lampp/man/man3/mvwgetn_wstr.3ncurses.gz -#opt/lampp/man/man3/mvwgetnstr.3ncurses.gz -#opt/lampp/man/man3/mvwgetstr.3ncurses.gz -#opt/lampp/man/man3/mvwhline.3ncurses.gz -#opt/lampp/man/man3/mvwhline_set.3ncurses.gz -#opt/lampp/man/man3/mvwin.3ncurses.gz -#opt/lampp/man/man3/mvwin_wch.3ncurses.gz -#opt/lampp/man/man3/mvwin_wchnstr.3ncurses.gz -#opt/lampp/man/man3/mvwin_wchstr.3ncurses.gz -#opt/lampp/man/man3/mvwinch.3ncurses.gz -#opt/lampp/man/man3/mvwinchnstr.3ncurses.gz -#opt/lampp/man/man3/mvwinchstr.3ncurses.gz -#opt/lampp/man/man3/mvwinnstr.3ncurses.gz -#opt/lampp/man/man3/mvwinnwstr.3ncurses.gz -#opt/lampp/man/man3/mvwins_nwstr.3ncurses.gz -#opt/lampp/man/man3/mvwins_wch.3ncurses.gz -#opt/lampp/man/man3/mvwins_wstr.3ncurses.gz -#opt/lampp/man/man3/mvwinsch.3ncurses.gz -#opt/lampp/man/man3/mvwinsnstr.3ncurses.gz -#opt/lampp/man/man3/mvwinsstr.3ncurses.gz -#opt/lampp/man/man3/mvwinstr.3ncurses.gz -#opt/lampp/man/man3/mvwinwstr.3ncurses.gz -#opt/lampp/man/man3/mvwprintw.3ncurses.gz -#opt/lampp/man/man3/mvwscanw.3ncurses.gz -#opt/lampp/man/man3/mvwvline.3ncurses.gz -#opt/lampp/man/man3/mvwvline_set.3ncurses.gz -#opt/lampp/man/man3/napms.3ncurses.gz -#opt/lampp/man/man3/ncurses.3ncurses.gz -#opt/lampp/man/man3/new.3form.gz -#opt/lampp/man/man3/new.3menu.gz -#opt/lampp/man/man3/new_field.3form.gz -#opt/lampp/man/man3/new_fieldtype.3form.gz -#opt/lampp/man/man3/new_form.3form.gz -#opt/lampp/man/man3/new_item.3menu.gz -#opt/lampp/man/man3/new_menu.3menu.gz -#opt/lampp/man/man3/new_page.3form.gz -#opt/lampp/man/man3/new_panel.3curses.gz -#opt/lampp/man/man3/newpad.3ncurses.gz -#opt/lampp/man/man3/newterm.3ncurses.gz -#opt/lampp/man/man3/newwin.3ncurses.gz -#opt/lampp/man/man3/ngettext.3 -#opt/lampp/man/man3/nl.3ncurses.gz -#opt/lampp/man/man3/nocbreak.3ncurses.gz -#opt/lampp/man/man3/nodelay.3ncurses.gz -#opt/lampp/man/man3/noecho.3ncurses.gz -#opt/lampp/man/man3/nonl.3ncurses.gz -#opt/lampp/man/man3/noqiflush.3ncurses.gz -#opt/lampp/man/man3/noraw.3ncurses.gz -#opt/lampp/man/man3/notimeout.3ncurses.gz -#opt/lampp/man/man3/open.3 -#opt/lampp/man/man3/ops.3 -#opt/lampp/man/man3/opts.3form.gz -#opt/lampp/man/man3/opts.3menu.gz -#opt/lampp/man/man3/outopts.3ncurses.gz -#opt/lampp/man/man3/overlay.3ncurses.gz -#opt/lampp/man/man3/overload.3 -#opt/lampp/man/man3/overwrite.3ncurses.gz -#opt/lampp/man/man3/pad.3ncurses.gz -#opt/lampp/man/man3/page.3form.gz -#opt/lampp/man/man3/pair_content.3ncurses.gz -#opt/lampp/man/man3/panel.3curses.gz -#opt/lampp/man/man3/panel_above.3curses.gz -#opt/lampp/man/man3/panel_below.3curses.gz -#opt/lampp/man/man3/panel_hidden.3curses.gz -#opt/lampp/man/man3/panel_userptr.3curses.gz -#opt/lampp/man/man3/panel_window.3curses.gz -#opt/lampp/man/man3/pattern.3menu.gz -#opt/lampp/man/man3/pechochar.3ncurses.gz -#opt/lampp/man/man3/pem.3 -#opt/lampp/man/man3/pnoutrefresh.3ncurses.gz -#opt/lampp/man/man3/pos_form_cursor.3form.gz -#opt/lampp/man/man3/pos_menu_cursor.3menu.gz -#opt/lampp/man/man3/post.3form.gz -#opt/lampp/man/man3/post.3menu.gz -#opt/lampp/man/man3/post_form.3form.gz -#opt/lampp/man/man3/post_menu.3menu.gz -#opt/lampp/man/man3/prefresh.3ncurses.gz -#opt/lampp/man/man3/print.3ncurses.gz -#opt/lampp/man/man3/printw.3ncurses.gz -#opt/lampp/man/man3/putp.3ncurses.gz -#opt/lampp/man/man3/putwin.3ncurses.gz -#opt/lampp/man/man3/qiflush.3ncurses.gz -#opt/lampp/man/man3/rand.3 -#opt/lampp/man/man3/raw.3ncurses.gz -#opt/lampp/man/man3/rc4.3 -#opt/lampp/man/man3/re.3 -#opt/lampp/man/man3/redrawwin.3ncurses.gz -#opt/lampp/man/man3/refresh.3ncurses.gz -#opt/lampp/man/man3/regex.3 -#opt/lampp/man/man3/replace_panel.3curses.gz -#opt/lampp/man/man3/requestname.3form.gz -#opt/lampp/man/man3/requestname.3menu.gz -#opt/lampp/man/man3/reset_prog_mode.3ncurses.gz -#opt/lampp/man/man3/reset_shell_mode.3ncurses.gz -#opt/lampp/man/man3/resetty.3ncurses.gz -#opt/lampp/man/man3/resize_term.3ncurses.gz -#opt/lampp/man/man3/resizeterm.3ncurses.gz -#opt/lampp/man/man3/restartterm.3ncurses.gz -#opt/lampp/man/man3/ripemd.3 -#opt/lampp/man/man3/ripoffline.3ncurses.gz -#opt/lampp/man/man3/rsa.3 -#opt/lampp/man/man3/savetty.3ncurses.gz -#opt/lampp/man/man3/scale_form.3form.gz -#opt/lampp/man/man3/scale_menu.3menu.gz -#opt/lampp/man/man3/scanw.3ncurses.gz -#opt/lampp/man/man3/scr_dump.3ncurses.gz -#opt/lampp/man/man3/scr_init.3ncurses.gz -#opt/lampp/man/man3/scr_restore.3ncurses.gz -#opt/lampp/man/man3/scr_set.3ncurses.gz -#opt/lampp/man/man3/scrl.3ncurses.gz -#opt/lampp/man/man3/scroll.3ncurses.gz -#opt/lampp/man/man3/scrollok.3ncurses.gz -#opt/lampp/man/man3/set_current_field.3form.gz -#opt/lampp/man/man3/set_current_item.3menu.gz -#opt/lampp/man/man3/set_curterm.3ncurses.gz -#opt/lampp/man/man3/set_field_back.3form.gz -#opt/lampp/man/man3/set_field_buffer.3form.gz -#opt/lampp/man/man3/set_field_fore.3form.gz -#opt/lampp/man/man3/set_field_init.3form.gz -#opt/lampp/man/man3/set_field_just.3form.gz -#opt/lampp/man/man3/set_field_opts.3form.gz -#opt/lampp/man/man3/set_field_pad.3form.gz -#opt/lampp/man/man3/set_field_status.3form.gz -#opt/lampp/man/man3/set_field_term.3form.gz -#opt/lampp/man/man3/set_field_type.3form.gz -#opt/lampp/man/man3/set_field_userptr.3form.gz -#opt/lampp/man/man3/set_fieldtype_arg.3form.gz -#opt/lampp/man/man3/set_fieldtype_choice.3form.gz -#opt/lampp/man/man3/set_form_fields.3form.gz -#opt/lampp/man/man3/set_form_init.3form.gz -#opt/lampp/man/man3/set_form_opts.3form.gz -#opt/lampp/man/man3/set_form_page.3form.gz -#opt/lampp/man/man3/set_form_sub.3form.gz -#opt/lampp/man/man3/set_form_term.3form.gz -#opt/lampp/man/man3/set_form_userptr.3form.gz -#opt/lampp/man/man3/set_form_win.3form.gz -#opt/lampp/man/man3/set_item_init.3menu.gz -#opt/lampp/man/man3/set_item_opts.3menu.gz -#opt/lampp/man/man3/set_item_term.3menu.gz -#opt/lampp/man/man3/set_item_userptr.3menu.gz -#opt/lampp/man/man3/set_item_value.3menu.gz -#opt/lampp/man/man3/set_max_field.3form.gz -#opt/lampp/man/man3/set_menu_back.3menu.gz -#opt/lampp/man/man3/set_menu_fore.3menu.gz -#opt/lampp/man/man3/set_menu_format.3menu.gz -#opt/lampp/man/man3/set_menu_grey.3menu.gz -#opt/lampp/man/man3/set_menu_init.3menu.gz -#opt/lampp/man/man3/set_menu_items.3menu.gz -#opt/lampp/man/man3/set_menu_mark.3menu.gz -#opt/lampp/man/man3/set_menu_opts.3menu.gz -#opt/lampp/man/man3/set_menu_pad.3menu.gz -#opt/lampp/man/man3/set_menu_pattern.3menu.gz -#opt/lampp/man/man3/set_menu_spacing.3menu.gz -#opt/lampp/man/man3/set_menu_sub.3menu.gz -#opt/lampp/man/man3/set_menu_term.3menu.gz -#opt/lampp/man/man3/set_menu_userptr.3menu.gz -#opt/lampp/man/man3/set_menu_win.3menu.gz -#opt/lampp/man/man3/set_new_page.3form.gz -#opt/lampp/man/man3/set_panel_userptr.3curses.gz -#opt/lampp/man/man3/set_term.3ncurses.gz -#opt/lampp/man/man3/set_top_row.3menu.gz -#opt/lampp/man/man3/setcchar.3ncurses.gz -#opt/lampp/man/man3/setscrreg.3ncurses.gz -#opt/lampp/man/man3/setsyx.3ncurses.gz -#opt/lampp/man/man3/setterm.3ncurses.gz -#opt/lampp/man/man3/setupterm.3ncurses.gz -#opt/lampp/man/man3/sha.3 -#opt/lampp/man/man3/show_panel.3curses.gz -#opt/lampp/man/man3/sigtrap.3 -#opt/lampp/man/man3/slk.3ncurses.gz -#opt/lampp/man/man3/slk_attr.3ncurses.gz -#opt/lampp/man/man3/slk_attr_off.3ncurses.gz -#opt/lampp/man/man3/slk_attr_on.3ncurses.gz -#opt/lampp/man/man3/slk_attr_set.3ncurses.gz -#opt/lampp/man/man3/slk_attroff.3ncurses.gz -#opt/lampp/man/man3/slk_attron.3ncurses.gz -#opt/lampp/man/man3/slk_attrset.3ncurses.gz -#opt/lampp/man/man3/slk_clear.3ncurses.gz -#opt/lampp/man/man3/slk_color.3ncurses.gz -#opt/lampp/man/man3/slk_init.3ncurses.gz -#opt/lampp/man/man3/slk_label.3ncurses.gz -#opt/lampp/man/man3/slk_noutrefresh.3ncurses.gz -#opt/lampp/man/man3/slk_refresh.3ncurses.gz -#opt/lampp/man/man3/slk_restore.3ncurses.gz -#opt/lampp/man/man3/slk_set.3ncurses.gz -#opt/lampp/man/man3/slk_touch.3ncurses.gz -#opt/lampp/man/man3/sort.3 -#opt/lampp/man/man3/spacing.3menu.gz -#opt/lampp/man/man3/ssl.3 -#opt/lampp/man/man3/standend.3ncurses.gz -#opt/lampp/man/man3/standout.3ncurses.gz -#opt/lampp/man/man3/start_color.3ncurses.gz -#opt/lampp/man/man3/strict.3 -#opt/lampp/man/man3/subpad.3ncurses.gz -#opt/lampp/man/man3/subs.3 -#opt/lampp/man/man3/subwin.3ncurses.gz -#opt/lampp/man/man3/syncok.3ncurses.gz -#opt/lampp/man/man3/term_attrs.3ncurses.gz -#opt/lampp/man/man3/termattrs.3ncurses.gz -#opt/lampp/man/man3/termcap.3ncurses.gz -#opt/lampp/man/man3/terminfo.3ncurses.gz -#opt/lampp/man/man3/termname.3ncurses.gz -#opt/lampp/man/man3/textdomain.3 -#opt/lampp/man/man3/tgetent.3ncurses.gz -#opt/lampp/man/man3/tgetflag.3ncurses.gz -#opt/lampp/man/man3/tgetnum.3ncurses.gz -#opt/lampp/man/man3/tgetstr.3ncurses.gz -#opt/lampp/man/man3/tgoto.3ncurses.gz -#opt/lampp/man/man3/threads.3 -#opt/lampp/man/man3/threads::shared.3 -#opt/lampp/man/man3/tigetflag.3ncurses.gz -#opt/lampp/man/man3/tigetnum.3ncurses.gz -#opt/lampp/man/man3/tigetstr.3ncurses.gz -#opt/lampp/man/man3/timeout.3ncurses.gz -#opt/lampp/man/man3/top_panel.3curses.gz -#opt/lampp/man/man3/top_row.3menu.gz -#opt/lampp/man/man3/touch.3ncurses.gz -#opt/lampp/man/man3/touchline.3ncurses.gz -#opt/lampp/man/man3/touchwin.3ncurses.gz -#opt/lampp/man/man3/tparm.3ncurses.gz -#opt/lampp/man/man3/tputs.3ncurses.gz -#opt/lampp/man/man3/trace.3ncurses.gz -#opt/lampp/man/man3/typeahead.3ncurses.gz -#opt/lampp/man/man3/ui.3 -#opt/lampp/man/man3/ui_compat.3 -#opt/lampp/man/man3/unctrl.3ncurses.gz -#opt/lampp/man/man3/unget_wch.3ncurses.gz -#opt/lampp/man/man3/ungetch.3ncurses.gz -#opt/lampp/man/man3/ungetmouse.3ncurses.gz -#opt/lampp/man/man3/unpost_form.3form.gz -#opt/lampp/man/man3/unpost_menu.3menu.gz -#opt/lampp/man/man3/untouchwin.3ncurses.gz -#opt/lampp/man/man3/update_panels.3curses.gz -#opt/lampp/man/man3/use_default_colors.3ncurses.gz -#opt/lampp/man/man3/use_env.3ncurses.gz -#opt/lampp/man/man3/use_extended_names.3ncurses.gz -#opt/lampp/man/man3/userptr.3form.gz -#opt/lampp/man/man3/userptr.3menu.gz -#opt/lampp/man/man3/utf8.3 -#opt/lampp/man/man3/util.3ncurses.gz -#opt/lampp/man/man3/vars.3 -#opt/lampp/man/man3/vid_attr.3ncurses.gz -#opt/lampp/man/man3/vid_puts.3ncurses.gz -#opt/lampp/man/man3/vidattr.3ncurses.gz -#opt/lampp/man/man3/vidputs.3ncurses.gz -#opt/lampp/man/man3/vline.3ncurses.gz -#opt/lampp/man/man3/vline_set.3ncurses.gz -#opt/lampp/man/man3/vmsish.3 -#opt/lampp/man/man3/vw_printw.3ncurses.gz -#opt/lampp/man/man3/vw_scanw.3ncurses.gz -#opt/lampp/man/man3/vwprintw.3ncurses.gz -#opt/lampp/man/man3/vwscanw.3ncurses.gz -#opt/lampp/man/man3/wadd_wch.3ncurses.gz -#opt/lampp/man/man3/wadd_wchnstr.3ncurses.gz -#opt/lampp/man/man3/wadd_wchstr.3ncurses.gz -#opt/lampp/man/man3/waddch.3ncurses.gz -#opt/lampp/man/man3/waddchnstr.3ncurses.gz -#opt/lampp/man/man3/waddchstr.3ncurses.gz -#opt/lampp/man/man3/waddnstr.3ncurses.gz -#opt/lampp/man/man3/waddnwstr.3ncurses.gz -#opt/lampp/man/man3/waddstr.3ncurses.gz -#opt/lampp/man/man3/waddwstr.3ncurses.gz -#opt/lampp/man/man3/warnings.3 -#opt/lampp/man/man3/warnings::register.3 -#opt/lampp/man/man3/wattr_get.3ncurses.gz -#opt/lampp/man/man3/wattr_off.3ncurses.gz -#opt/lampp/man/man3/wattr_on.3ncurses.gz -#opt/lampp/man/man3/wattr_set.3ncurses.gz -#opt/lampp/man/man3/wattroff.3ncurses.gz -#opt/lampp/man/man3/wattron.3ncurses.gz -#opt/lampp/man/man3/wattrset.3ncurses.gz -#opt/lampp/man/man3/wbkgd.3ncurses.gz -#opt/lampp/man/man3/wbkgdset.3ncurses.gz -#opt/lampp/man/man3/wbkgrnd.3ncurses.gz -#opt/lampp/man/man3/wbkgrndset.3ncurses.gz -#opt/lampp/man/man3/wborder.3ncurses.gz -#opt/lampp/man/man3/wborder_set.3ncurses.gz -#opt/lampp/man/man3/wchgat.3ncurses.gz -#opt/lampp/man/man3/wclear.3ncurses.gz -#opt/lampp/man/man3/wclrtobot.3ncurses.gz -#opt/lampp/man/man3/wclrtoeol.3ncurses.gz -#opt/lampp/man/man3/wcolor_set.3ncurses.gz -#opt/lampp/man/man3/wcursyncup.3ncurses.gz -#opt/lampp/man/man3/wdelch.3ncurses.gz -#opt/lampp/man/man3/wdeleteln.3ncurses.gz -#opt/lampp/man/man3/wecho_wchar.3ncurses.gz -#opt/lampp/man/man3/wechochar.3ncurses.gz -#opt/lampp/man/man3/wenclose.3ncurses.gz -#opt/lampp/man/man3/werase.3ncurses.gz -#opt/lampp/man/man3/wget_wch.3ncurses.gz -#opt/lampp/man/man3/wget_wstr.3ncurses.gz -#opt/lampp/man/man3/wgetbkgrnd.3ncurses.gz -#opt/lampp/man/man3/wgetch.3ncurses.gz -#opt/lampp/man/man3/wgetn_wstr.3ncurses.gz -#opt/lampp/man/man3/wgetnstr.3ncurses.gz -#opt/lampp/man/man3/wgetstr.3ncurses.gz -#opt/lampp/man/man3/whline.3ncurses.gz -#opt/lampp/man/man3/whline_set.3ncurses.gz -#opt/lampp/man/man3/win.3form.gz -#opt/lampp/man/man3/win.3menu.gz -#opt/lampp/man/man3/win_wch.3ncurses.gz -#opt/lampp/man/man3/win_wchnstr.3ncurses.gz -#opt/lampp/man/man3/win_wchstr.3ncurses.gz -#opt/lampp/man/man3/winch.3ncurses.gz -#opt/lampp/man/man3/winchnstr.3ncurses.gz -#opt/lampp/man/man3/winchstr.3ncurses.gz -#opt/lampp/man/man3/window.3ncurses.gz -#opt/lampp/man/man3/winnstr.3ncurses.gz -#opt/lampp/man/man3/winnwstr.3ncurses.gz -#opt/lampp/man/man3/wins_nwstr.3ncurses.gz -#opt/lampp/man/man3/wins_wch.3ncurses.gz -#opt/lampp/man/man3/wins_wstr.3ncurses.gz -#opt/lampp/man/man3/winsch.3ncurses.gz -#opt/lampp/man/man3/winsdelln.3ncurses.gz -#opt/lampp/man/man3/winsertln.3ncurses.gz -#opt/lampp/man/man3/winsnstr.3ncurses.gz -#opt/lampp/man/man3/winsstr.3ncurses.gz -#opt/lampp/man/man3/winstr.3ncurses.gz -#opt/lampp/man/man3/winwstr.3ncurses.gz -#opt/lampp/man/man3/wmouse_trafo.3ncurses.gz -#opt/lampp/man/man3/wmove.3ncurses.gz -#opt/lampp/man/man3/wnoutrefresh.3ncurses.gz -#opt/lampp/man/man3/wprintw.3ncurses.gz -#opt/lampp/man/man3/wredrawln.3ncurses.gz -#opt/lampp/man/man3/wrefresh.3ncurses.gz -#opt/lampp/man/man3/wresize.3ncurses.gz -#opt/lampp/man/man3/wscanw.3ncurses.gz -#opt/lampp/man/man3/wscrl.3ncurses.gz -#opt/lampp/man/man3/wsetscrreg.3ncurses.gz -#opt/lampp/man/man3/wstandend.3ncurses.gz -#opt/lampp/man/man3/wstandout.3ncurses.gz -#opt/lampp/man/man3/wsyncdown.3ncurses.gz -#opt/lampp/man/man3/wsyncup.3ncurses.gz -#opt/lampp/man/man3/wtimeout.3ncurses.gz -#opt/lampp/man/man3/wtouchln.3ncurses.gz -#opt/lampp/man/man3/wunctrl.3ncurses.gz -#opt/lampp/man/man3/wvline.3ncurses.gz -#opt/lampp/man/man3/wvline_set.3ncurses.gz -#opt/lampp/man/man3/x509.3 -#opt/lampp/man/man5 -#opt/lampp/man/man5/config.5 -#opt/lampp/man/man5/ldap.conf.5 -#opt/lampp/man/man5/ldapfilter.conf.5 -#opt/lampp/man/man5/ldapfriendly.5 -#opt/lampp/man/man5/ldapsearchprefs.conf.5 -#opt/lampp/man/man5/ldaptemplates.conf.5 -#opt/lampp/man/man5/ldif.5 -#opt/lampp/man/man5/png.5 -#opt/lampp/man/man5/slapd-bdb.5 -#opt/lampp/man/man5/slapd-dnssrv.5 -#opt/lampp/man/man5/slapd-hdb.5 -#opt/lampp/man/man5/slapd-ldap.5 -#opt/lampp/man/man5/slapd-ldbm.5 -#opt/lampp/man/man5/slapd-ldif.5 -#opt/lampp/man/man5/slapd-meta.5 -#opt/lampp/man/man5/slapd-monitor.5 -#opt/lampp/man/man5/slapd-null.5 -#opt/lampp/man/man5/slapd-passwd.5 -#opt/lampp/man/man5/slapd-perl.5 -#opt/lampp/man/man5/slapd-relay.5 -#opt/lampp/man/man5/slapd-shell.5 -#opt/lampp/man/man5/slapd-sql.5 -#opt/lampp/man/man5/slapd-tcl.5 -#opt/lampp/man/man5/slapd.access.5 -#opt/lampp/man/man5/slapd.conf.5 -#opt/lampp/man/man5/slapd.plugin.5 -#opt/lampp/man/man5/slapd.replog.5 -#opt/lampp/man/man5/slapo-accesslog.5 -#opt/lampp/man/man5/slapo-auditlog.5 -#opt/lampp/man/man5/slapo-chain.5 -#opt/lampp/man/man5/slapo-dynlist.5 -#opt/lampp/man/man5/slapo-lastmod.5 -#opt/lampp/man/man5/slapo-pcache.5 -#opt/lampp/man/man5/slapo-ppolicy.5 -#opt/lampp/man/man5/slapo-refint.5 -#opt/lampp/man/man5/slapo-retcode.5 -#opt/lampp/man/man5/slapo-rwm.5 -#opt/lampp/man/man5/slapo-syncprov.5 -#opt/lampp/man/man5/slapo-translucent.5 -#opt/lampp/man/man5/slapo-unique.5 -#opt/lampp/man/man5/slapo-valsort.5 -#opt/lampp/man/man5/term.5.gz -#opt/lampp/man/man5/terminfo.5.gz -#opt/lampp/man/man5/ud.conf.5 -#opt/lampp/man/man5/x509v3_config.5 -#opt/lampp/man/man5/xferlog.5 -#opt/lampp/man/man7 -#opt/lampp/man/man7/DES.7 -#opt/lampp/man/man7/ModesofDES.7 -#opt/lampp/man/man7/Modes.7 -#opt/lampp/man/man7/Modes_of_DES.7 -#opt/lampp/man/man7/des_modes.7 -#opt/lampp/man/man7/of.7 -#opt/lampp/man/man7/term.7.gz -#opt/lampp/man/man8 -#opt/lampp/man/man8/ab.8 -#opt/lampp/man/man8/apachectl.8 -#opt/lampp/man/man8/apxs.8 -#opt/lampp/man/man8/centipede.8 -#opt/lampp/man/man8/chlog2replog.8 -#opt/lampp/man/man8/edb2ldif.8 -#opt/lampp/man/man8/fax500.8 -#opt/lampp/man/man8/ftpdctl.8 -#opt/lampp/man/man8/ftpshut.8 -#opt/lampp/man/man8/go500.8 -#opt/lampp/man/man8/go500gw.8 -#opt/lampp/man/man8/htcacheclean.8 -#opt/lampp/man/man8/httpd.8 -#opt/lampp/man/man8/in.xfingerd.8 -#opt/lampp/man/man8/ldapd.8 -#opt/lampp/man/man8/ldbmcat.8 -#opt/lampp/man/man8/ldif.8 -#opt/lampp/man/man8/ldif2id2children.8 -#opt/lampp/man/man8/ldif2id2entry.8 -#opt/lampp/man/man8/ldif2index.8 -#opt/lampp/man/man8/ldif2ldbm.8 -#opt/lampp/man/man8/logresolve.8 -#opt/lampp/man/man8/mail500.8 -#opt/lampp/man/man8/proftpd.8 -#opt/lampp/man/man8/rcpt500.8 -#opt/lampp/man/man8/rotatelogs.8 -#opt/lampp/man/man8/slapacl.8 -#opt/lampp/man/man8/slapadd.8 -#opt/lampp/man/man8/slapauth.8 -#opt/lampp/man/man8/slapcat.8 -#opt/lampp/man/man8/slapd.8 -#opt/lampp/man/man8/slapdn.8 -#opt/lampp/man/man8/slapindex.8 -#opt/lampp/man/man8/slappasswd.8 -#opt/lampp/man/man8/slaptest.8 -#opt/lampp/man/man8/slurpd.8 -#opt/lampp/man/man8/suexec.8 -#opt/lampp/manual -#opt/lampp/manual/LICENSE -#opt/lampp/manual/bind.html -#opt/lampp/manual/bind.html.de -#opt/lampp/manual/bind.html.en -#opt/lampp/manual/bind.html.fr -#opt/lampp/manual/bind.html.ja.euc-jp -#opt/lampp/manual/bind.html.ko.euc-kr -#opt/lampp/manual/caching.html -#opt/lampp/manual/caching.html.en -#opt/lampp/manual/configuring.html -#opt/lampp/manual/configuring.html.de -#opt/lampp/manual/configuring.html.en -#opt/lampp/manual/configuring.html.ja.euc-jp -#opt/lampp/manual/configuring.html.ko.euc-kr -#opt/lampp/manual/content-negotiation.html -#opt/lampp/manual/content-negotiation.html.en -#opt/lampp/manual/content-negotiation.html.ja.euc-jp -#opt/lampp/manual/content-negotiation.html.ko.euc-kr -#opt/lampp/manual/convenience.map -#opt/lampp/manual/custom-error.html -#opt/lampp/manual/custom-error.html.en -#opt/lampp/manual/custom-error.html.es -#opt/lampp/manual/custom-error.html.ja.euc-jp -#opt/lampp/manual/custom-error.html.ko.euc-kr -#opt/lampp/manual/developer -#opt/lampp/manual/developer/API.html -#opt/lampp/manual/developer/API.html.en -#opt/lampp/manual/developer/debugging.html -#opt/lampp/manual/developer/debugging.html.en -#opt/lampp/manual/developer/documenting.html -#opt/lampp/manual/developer/documenting.html.en -#opt/lampp/manual/developer/filters.html -#opt/lampp/manual/developer/filters.html.en -#opt/lampp/manual/developer/hooks.html -#opt/lampp/manual/developer/hooks.html.en -#opt/lampp/manual/developer/index.html -#opt/lampp/manual/developer/index.html.en -#opt/lampp/manual/developer/modules.html -#opt/lampp/manual/developer/modules.html.en -#opt/lampp/manual/developer/modules.html.ja.euc-jp -#opt/lampp/manual/developer/request.html -#opt/lampp/manual/developer/request.html.en -#opt/lampp/manual/developer/thread_safety.html -#opt/lampp/manual/developer/thread_safety.html.en -#opt/lampp/manual/dns-caveats.html -#opt/lampp/manual/dns-caveats.html.en -#opt/lampp/manual/dns-caveats.html.ja.euc-jp -#opt/lampp/manual/dns-caveats.html.ko.euc-kr -#opt/lampp/manual/dso.html -#opt/lampp/manual/dso.html.en -#opt/lampp/manual/dso.html.ja.euc-jp -#opt/lampp/manual/dso.html.ko.euc-kr -#opt/lampp/manual/env.html -#opt/lampp/manual/env.html.en -#opt/lampp/manual/env.html.ja.euc-jp -#opt/lampp/manual/env.html.ko.euc-kr -#opt/lampp/manual/faq -#opt/lampp/manual/faq/all_in_one.html -#opt/lampp/manual/faq/all_in_one.html.en -#opt/lampp/manual/faq/all_in_one.html.ja.euc-jp -#opt/lampp/manual/faq/all_in_one.html.ko.euc-kr -#opt/lampp/manual/faq/background.html -#opt/lampp/manual/faq/background.html.en -#opt/lampp/manual/faq/error.html -#opt/lampp/manual/faq/error.html.en -#opt/lampp/manual/faq/error.html.ja.euc-jp -#opt/lampp/manual/faq/error.html.ko.euc-kr -#opt/lampp/manual/faq/index.html -#opt/lampp/manual/faq/index.html.en -#opt/lampp/manual/faq/index.html.ja.euc-jp -#opt/lampp/manual/faq/index.html.ko.euc-kr -#opt/lampp/manual/faq/support.html -#opt/lampp/manual/faq/support.html.en -#opt/lampp/manual/faq/support.html.ja.euc-jp -#opt/lampp/manual/faq/support.html.ko.euc-kr -#opt/lampp/manual/filter.html -#opt/lampp/manual/filter.html.en -#opt/lampp/manual/filter.html.es -#opt/lampp/manual/filter.html.fr -#opt/lampp/manual/filter.html.ja.euc-jp -#opt/lampp/manual/filter.html.ko.euc-kr -#opt/lampp/manual/glossary.html -#opt/lampp/manual/glossary.html.de -#opt/lampp/manual/glossary.html.en -#opt/lampp/manual/glossary.html.es -#opt/lampp/manual/glossary.html.ko.euc-kr -#opt/lampp/manual/handler.html -#opt/lampp/manual/handler.html.en -#opt/lampp/manual/handler.html.es -#opt/lampp/manual/handler.html.ja.euc-jp -#opt/lampp/manual/handler.html.ko.euc-kr -#opt/lampp/manual/handler.html.ru.koi8-r -#opt/lampp/manual/howto -#opt/lampp/manual/howto/access.html -#opt/lampp/manual/howto/access.html.en -#opt/lampp/manual/howto/auth.html -#opt/lampp/manual/howto/auth.html.en -#opt/lampp/manual/howto/auth.html.ja.euc-jp -#opt/lampp/manual/howto/auth.html.ko.euc-kr -#opt/lampp/manual/howto/cgi.html -#opt/lampp/manual/howto/cgi.html.en -#opt/lampp/manual/howto/cgi.html.ja.euc-jp -#opt/lampp/manual/howto/cgi.html.ko.euc-kr -#opt/lampp/manual/howto/htaccess.html -#opt/lampp/manual/howto/htaccess.html.en -#opt/lampp/manual/howto/htaccess.html.ja.euc-jp -#opt/lampp/manual/howto/htaccess.html.ko.euc-kr -#opt/lampp/manual/howto/htaccess.html.pt-br -#opt/lampp/manual/howto/index.html -#opt/lampp/manual/howto/index.html.en -#opt/lampp/manual/howto/index.html.ja.euc-jp -#opt/lampp/manual/howto/index.html.ko.euc-kr -#opt/lampp/manual/howto/public_html.html -#opt/lampp/manual/howto/public_html.html.en -#opt/lampp/manual/howto/public_html.html.ja.euc-jp -#opt/lampp/manual/howto/public_html.html.ko.euc-kr -#opt/lampp/manual/howto/ssi.html -#opt/lampp/manual/howto/ssi.html.en -#opt/lampp/manual/howto/ssi.html.ja.euc-jp -#opt/lampp/manual/howto/ssi.html.ko.euc-kr -#opt/lampp/manual/images -#opt/lampp/manual/images/apache_header.gif -#opt/lampp/manual/images/caching_fig1.gif -#opt/lampp/manual/images/caching_fig1.png -#opt/lampp/manual/images/custom_errordocs.png -#opt/lampp/manual/images/down.gif -#opt/lampp/manual/images/favicon.ico -#opt/lampp/manual/images/feather.gif -#opt/lampp/manual/images/feather.png -#opt/lampp/manual/images/filter_arch.png -#opt/lampp/manual/images/home.gif -#opt/lampp/manual/images/index.gif -#opt/lampp/manual/images/left.gif -#opt/lampp/manual/images/mod_filter_new.gif -#opt/lampp/manual/images/mod_filter_new.png -#opt/lampp/manual/images/mod_filter_old.gif -#opt/lampp/manual/images/mod_rewrite_fig1.gif -#opt/lampp/manual/images/mod_rewrite_fig1.png -#opt/lampp/manual/images/mod_rewrite_fig2.gif -#opt/lampp/manual/images/mod_rewrite_fig2.png -#opt/lampp/manual/images/pixel.gif -#opt/lampp/manual/images/right.gif -#opt/lampp/manual/images/ssl_intro_fig1.gif -#opt/lampp/manual/images/ssl_intro_fig1.png -#opt/lampp/manual/images/ssl_intro_fig2.gif -#opt/lampp/manual/images/ssl_intro_fig2.png -#opt/lampp/manual/images/ssl_intro_fig3.gif -#opt/lampp/manual/images/ssl_intro_fig3.png -#opt/lampp/manual/images/sub.gif -#opt/lampp/manual/images/up.gif -#opt/lampp/manual/index.html -#opt/lampp/manual/index.html.de -#opt/lampp/manual/index.html.en -#opt/lampp/manual/index.html.es -#opt/lampp/manual/index.html.fr -#opt/lampp/manual/index.html.ja.euc-jp -#opt/lampp/manual/index.html.ko.euc-kr -#opt/lampp/manual/index.html.pt-br -#opt/lampp/manual/install.html -#opt/lampp/manual/install.html.de -#opt/lampp/manual/install.html.en -#opt/lampp/manual/install.html.es -#opt/lampp/manual/install.html.fr -#opt/lampp/manual/install.html.ja.euc-jp -#opt/lampp/manual/install.html.ko.euc-kr -#opt/lampp/manual/invoking.html -#opt/lampp/manual/invoking.html.de -#opt/lampp/manual/invoking.html.en -#opt/lampp/manual/invoking.html.es -#opt/lampp/manual/invoking.html.ja.euc-jp -#opt/lampp/manual/invoking.html.ko.euc-kr -#opt/lampp/manual/invoking.html.ru.koi8-r -#opt/lampp/manual/license.html -#opt/lampp/manual/license.html.en -#opt/lampp/manual/logs.html -#opt/lampp/manual/logs.html.en -#opt/lampp/manual/logs.html.ja.euc-jp -#opt/lampp/manual/logs.html.ko.euc-kr -#opt/lampp/manual/misc -#opt/lampp/manual/misc/index.html -#opt/lampp/manual/misc/index.html.en -#opt/lampp/manual/misc/index.html.ko.euc-kr -#opt/lampp/manual/misc/perf-tuning.html -#opt/lampp/manual/misc/perf-tuning.html.en -#opt/lampp/manual/misc/perf-tuning.html.ko.euc-kr -#opt/lampp/manual/misc/relevant_standards.html -#opt/lampp/manual/misc/relevant_standards.html.en -#opt/lampp/manual/misc/relevant_standards.html.ko.euc-kr -#opt/lampp/manual/misc/rewriteguide.html -#opt/lampp/manual/misc/rewriteguide.html.en -#opt/lampp/manual/misc/rewriteguide.html.ko.euc-kr -#opt/lampp/manual/misc/security_tips.html -#opt/lampp/manual/misc/security_tips.html.en -#opt/lampp/manual/misc/security_tips.html.ko.euc-kr -#opt/lampp/manual/mod -#opt/lampp/manual/mod/beos.html -#opt/lampp/manual/mod/beos.html.de -#opt/lampp/manual/mod/beos.html.en -#opt/lampp/manual/mod/beos.html.es -#opt/lampp/manual/mod/beos.html.ko.euc-kr -#opt/lampp/manual/mod/core.html -#opt/lampp/manual/mod/core.html.de -#opt/lampp/manual/mod/core.html.en -#opt/lampp/manual/mod/core.html.ja.euc-jp -#opt/lampp/manual/mod/directive-dict.html -#opt/lampp/manual/mod/directive-dict.html.en -#opt/lampp/manual/mod/directive-dict.html.ja.euc-jp -#opt/lampp/manual/mod/directive-dict.html.ko.euc-kr -#opt/lampp/manual/mod/directives.html -#opt/lampp/manual/mod/directives.html.de -#opt/lampp/manual/mod/directives.html.en -#opt/lampp/manual/mod/directives.html.es -#opt/lampp/manual/mod/directives.html.ja.euc-jp -#opt/lampp/manual/mod/directives.html.ko.euc-kr -#opt/lampp/manual/mod/directives.html.ru.koi8-r -#opt/lampp/manual/mod/event.html -#opt/lampp/manual/mod/event.html.en -#opt/lampp/manual/mod/index.html -#opt/lampp/manual/mod/index.html.de -#opt/lampp/manual/mod/index.html.en -#opt/lampp/manual/mod/index.html.es -#opt/lampp/manual/mod/index.html.ja.euc-jp -#opt/lampp/manual/mod/index.html.ko.euc-kr -#opt/lampp/manual/mod/mod_actions.html -#opt/lampp/manual/mod/mod_actions.html.de -#opt/lampp/manual/mod/mod_actions.html.en -#opt/lampp/manual/mod/mod_actions.html.ja.euc-jp -#opt/lampp/manual/mod/mod_actions.html.ko.euc-kr -#opt/lampp/manual/mod/mod_alias.html -#opt/lampp/manual/mod/mod_alias.html.en -#opt/lampp/manual/mod/mod_alias.html.ja.euc-jp -#opt/lampp/manual/mod/mod_alias.html.ko.euc-kr -#opt/lampp/manual/mod/mod_asis.html -#opt/lampp/manual/mod/mod_asis.html.en -#opt/lampp/manual/mod/mod_asis.html.ja.euc-jp -#opt/lampp/manual/mod/mod_asis.html.ko.euc-kr -#opt/lampp/manual/mod/mod_auth_basic.html -#opt/lampp/manual/mod/mod_auth_basic.html.en -#opt/lampp/manual/mod/mod_auth_basic.html.ja.euc-jp -#opt/lampp/manual/mod/mod_auth_basic.html.ko.euc-kr -#opt/lampp/manual/mod/mod_auth_digest.html -#opt/lampp/manual/mod/mod_auth_digest.html.en -#opt/lampp/manual/mod/mod_auth_digest.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authn_alias.html -#opt/lampp/manual/mod/mod_authn_alias.html.en -#opt/lampp/manual/mod/mod_authn_anon.html -#opt/lampp/manual/mod/mod_authn_anon.html.en -#opt/lampp/manual/mod/mod_authn_anon.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authn_anon.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authn_dbd.html -#opt/lampp/manual/mod/mod_authn_dbd.html.en -#opt/lampp/manual/mod/mod_authn_dbm.html -#opt/lampp/manual/mod/mod_authn_dbm.html.en -#opt/lampp/manual/mod/mod_authn_dbm.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authn_dbm.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authn_default.html -#opt/lampp/manual/mod/mod_authn_default.html.en -#opt/lampp/manual/mod/mod_authn_default.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authn_default.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authn_file.html -#opt/lampp/manual/mod/mod_authn_file.html.en -#opt/lampp/manual/mod/mod_authn_file.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authn_file.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authnz_ldap.html -#opt/lampp/manual/mod/mod_authnz_ldap.html.en -#opt/lampp/manual/mod/mod_authz_dbm.html -#opt/lampp/manual/mod/mod_authz_dbm.html.en -#opt/lampp/manual/mod/mod_authz_dbm.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authz_default.html -#opt/lampp/manual/mod/mod_authz_default.html.en -#opt/lampp/manual/mod/mod_authz_default.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authz_default.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authz_groupfile.html -#opt/lampp/manual/mod/mod_authz_groupfile.html.en -#opt/lampp/manual/mod/mod_authz_groupfile.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authz_groupfile.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authz_host.html -#opt/lampp/manual/mod/mod_authz_host.html.en -#opt/lampp/manual/mod/mod_authz_host.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authz_host.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authz_owner.html -#opt/lampp/manual/mod/mod_authz_owner.html.en -#opt/lampp/manual/mod/mod_authz_owner.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authz_owner.html.ko.euc-kr -#opt/lampp/manual/mod/mod_authz_user.html -#opt/lampp/manual/mod/mod_authz_user.html.en -#opt/lampp/manual/mod/mod_authz_user.html.ja.euc-jp -#opt/lampp/manual/mod/mod_authz_user.html.ko.euc-kr -#opt/lampp/manual/mod/mod_autoindex.html -#opt/lampp/manual/mod/mod_autoindex.html.en -#opt/lampp/manual/mod/mod_autoindex.html.ja.euc-jp -#opt/lampp/manual/mod/mod_autoindex.html.ko.euc-kr -#opt/lampp/manual/mod/mod_cache.html -#opt/lampp/manual/mod/mod_cache.html.en -#opt/lampp/manual/mod/mod_cache.html.ja.euc-jp -#opt/lampp/manual/mod/mod_cache.html.ko.euc-kr -#opt/lampp/manual/mod/mod_cern_meta.html -#opt/lampp/manual/mod/mod_cern_meta.html.en -#opt/lampp/manual/mod/mod_cern_meta.html.ko.euc-kr -#opt/lampp/manual/mod/mod_cgi.html -#opt/lampp/manual/mod/mod_cgi.html.en -#opt/lampp/manual/mod/mod_cgi.html.ja.euc-jp -#opt/lampp/manual/mod/mod_cgi.html.ko.euc-kr -#opt/lampp/manual/mod/mod_cgid.html -#opt/lampp/manual/mod/mod_cgid.html.en -#opt/lampp/manual/mod/mod_cgid.html.ja.euc-jp -#opt/lampp/manual/mod/mod_cgid.html.ko.euc-kr -#opt/lampp/manual/mod/mod_charset_lite.html -#opt/lampp/manual/mod/mod_charset_lite.html.en -#opt/lampp/manual/mod/mod_charset_lite.html.ko.euc-kr -#opt/lampp/manual/mod/mod_dav.html -#opt/lampp/manual/mod/mod_dav.html.en -#opt/lampp/manual/mod/mod_dav.html.ja.euc-jp -#opt/lampp/manual/mod/mod_dav.html.ko.euc-kr -#opt/lampp/manual/mod/mod_dav_fs.html -#opt/lampp/manual/mod/mod_dav_fs.html.en -#opt/lampp/manual/mod/mod_dav_fs.html.ja.euc-jp -#opt/lampp/manual/mod/mod_dav_fs.html.ko.euc-kr -#opt/lampp/manual/mod/mod_dav_lock.html -#opt/lampp/manual/mod/mod_dav_lock.html.en -#opt/lampp/manual/mod/mod_dav_lock.html.ja.euc-jp -#opt/lampp/manual/mod/mod_dbd.html -#opt/lampp/manual/mod/mod_dbd.html.en -#opt/lampp/manual/mod/mod_deflate.html -#opt/lampp/manual/mod/mod_deflate.html.en -#opt/lampp/manual/mod/mod_deflate.html.ja.euc-jp -#opt/lampp/manual/mod/mod_deflate.html.ko.euc-kr -#opt/lampp/manual/mod/mod_dir.html -#opt/lampp/manual/mod/mod_dir.html.en -#opt/lampp/manual/mod/mod_dir.html.ja.euc-jp -#opt/lampp/manual/mod/mod_dir.html.ko.euc-kr -#opt/lampp/manual/mod/mod_disk_cache.html -#opt/lampp/manual/mod/mod_disk_cache.html.en -#opt/lampp/manual/mod/mod_disk_cache.html.ja.euc-jp -#opt/lampp/manual/mod/mod_disk_cache.html.ko.euc-kr -#opt/lampp/manual/mod/mod_dumpio.html -#opt/lampp/manual/mod/mod_dumpio.html.en -#opt/lampp/manual/mod/mod_dumpio.html.ja.euc-jp -#opt/lampp/manual/mod/mod_echo.html -#opt/lampp/manual/mod/mod_echo.html.en -#opt/lampp/manual/mod/mod_echo.html.ja.euc-jp -#opt/lampp/manual/mod/mod_echo.html.ko.euc-kr -#opt/lampp/manual/mod/mod_env.html -#opt/lampp/manual/mod/mod_env.html.en -#opt/lampp/manual/mod/mod_env.html.ja.euc-jp -#opt/lampp/manual/mod/mod_env.html.ko.euc-kr -#opt/lampp/manual/mod/mod_example.html -#opt/lampp/manual/mod/mod_example.html.en -#opt/lampp/manual/mod/mod_example.html.ko.euc-kr -#opt/lampp/manual/mod/mod_expires.html -#opt/lampp/manual/mod/mod_expires.html.en -#opt/lampp/manual/mod/mod_expires.html.ja.euc-jp -#opt/lampp/manual/mod/mod_expires.html.ko.euc-kr -#opt/lampp/manual/mod/mod_ext_filter.html -#opt/lampp/manual/mod/mod_ext_filter.html.en -#opt/lampp/manual/mod/mod_ext_filter.html.ja.euc-jp -#opt/lampp/manual/mod/mod_ext_filter.html.ko.euc-kr -#opt/lampp/manual/mod/mod_file_cache.html -#opt/lampp/manual/mod/mod_file_cache.html.en -#opt/lampp/manual/mod/mod_file_cache.html.ko.euc-kr -#opt/lampp/manual/mod/mod_filter.html -#opt/lampp/manual/mod/mod_filter.html.en -#opt/lampp/manual/mod/mod_headers.html -#opt/lampp/manual/mod/mod_headers.html.en -#opt/lampp/manual/mod/mod_headers.html.ja.euc-jp -#opt/lampp/manual/mod/mod_headers.html.ko.euc-kr -#opt/lampp/manual/mod/mod_ident.html -#opt/lampp/manual/mod/mod_ident.html.en -#opt/lampp/manual/mod/mod_ident.html.ko.euc-kr -#opt/lampp/manual/mod/mod_imagemap.html -#opt/lampp/manual/mod/mod_imagemap.html.en -#opt/lampp/manual/mod/mod_imagemap.html.ko.euc-kr -#opt/lampp/manual/mod/mod_include.html -#opt/lampp/manual/mod/mod_include.html.en -#opt/lampp/manual/mod/mod_include.html.ja.euc-jp -#opt/lampp/manual/mod/mod_info.html -#opt/lampp/manual/mod/mod_info.html.en -#opt/lampp/manual/mod/mod_info.html.ja.euc-jp -#opt/lampp/manual/mod/mod_info.html.ko.euc-kr -#opt/lampp/manual/mod/mod_isapi.html -#opt/lampp/manual/mod/mod_isapi.html.en -#opt/lampp/manual/mod/mod_isapi.html.ko.euc-kr -#opt/lampp/manual/mod/mod_ldap.html -#opt/lampp/manual/mod/mod_ldap.html.en -#opt/lampp/manual/mod/mod_log_config.html -#opt/lampp/manual/mod/mod_log_config.html.en -#opt/lampp/manual/mod/mod_log_config.html.ja.euc-jp -#opt/lampp/manual/mod/mod_log_config.html.ko.euc-kr -#opt/lampp/manual/mod/mod_log_forensic.html -#opt/lampp/manual/mod/mod_log_forensic.html.en -#opt/lampp/manual/mod/mod_log_forensic.html.ja.euc-jp -#opt/lampp/manual/mod/mod_logio.html -#opt/lampp/manual/mod/mod_logio.html.en -#opt/lampp/manual/mod/mod_logio.html.ja.euc-jp -#opt/lampp/manual/mod/mod_logio.html.ko.euc-kr -#opt/lampp/manual/mod/mod_mem_cache.html -#opt/lampp/manual/mod/mod_mem_cache.html.en -#opt/lampp/manual/mod/mod_mem_cache.html.ja.euc-jp -#opt/lampp/manual/mod/mod_mem_cache.html.ko.euc-kr -#opt/lampp/manual/mod/mod_mime.html -#opt/lampp/manual/mod/mod_mime.html.en -#opt/lampp/manual/mod/mod_mime.html.ja.euc-jp -#opt/lampp/manual/mod/mod_mime_magic.html -#opt/lampp/manual/mod/mod_mime_magic.html.en -#opt/lampp/manual/mod/mod_negotiation.html -#opt/lampp/manual/mod/mod_negotiation.html.en -#opt/lampp/manual/mod/mod_negotiation.html.ja.euc-jp -#opt/lampp/manual/mod/mod_nw_ssl.html -#opt/lampp/manual/mod/mod_nw_ssl.html.en -#opt/lampp/manual/mod/mod_proxy.html -#opt/lampp/manual/mod/mod_proxy.html.en -#opt/lampp/manual/mod/mod_proxy.html.ja.euc-jp -#opt/lampp/manual/mod/mod_proxy_ajp.html -#opt/lampp/manual/mod/mod_proxy_ajp.html.en -#opt/lampp/manual/mod/mod_proxy_ajp.html.ja.euc-jp -#opt/lampp/manual/mod/mod_proxy_balancer.html -#opt/lampp/manual/mod/mod_proxy_balancer.html.en -#opt/lampp/manual/mod/mod_proxy_balancer.html.ja.euc-jp -#opt/lampp/manual/mod/mod_proxy_connect.html -#opt/lampp/manual/mod/mod_proxy_connect.html.en -#opt/lampp/manual/mod/mod_proxy_ftp.html -#opt/lampp/manual/mod/mod_proxy_ftp.html.en -#opt/lampp/manual/mod/mod_proxy_http.html -#opt/lampp/manual/mod/mod_proxy_http.html.en -#opt/lampp/manual/mod/mod_rewrite.html -#opt/lampp/manual/mod/mod_rewrite.html.en -#opt/lampp/manual/mod/mod_setenvif.html -#opt/lampp/manual/mod/mod_setenvif.html.en -#opt/lampp/manual/mod/mod_setenvif.html.ja.euc-jp -#opt/lampp/manual/mod/mod_setenvif.html.ko.euc-kr -#opt/lampp/manual/mod/mod_so.html -#opt/lampp/manual/mod/mod_so.html.en -#opt/lampp/manual/mod/mod_so.html.ja.euc-jp -#opt/lampp/manual/mod/mod_so.html.ko.euc-kr -#opt/lampp/manual/mod/mod_speling.html -#opt/lampp/manual/mod/mod_speling.html.en -#opt/lampp/manual/mod/mod_speling.html.ja.euc-jp -#opt/lampp/manual/mod/mod_speling.html.ko.euc-kr -#opt/lampp/manual/mod/mod_ssl.html -#opt/lampp/manual/mod/mod_ssl.html.en -#opt/lampp/manual/mod/mod_status.html -#opt/lampp/manual/mod/mod_status.html.en -#opt/lampp/manual/mod/mod_status.html.ja.euc-jp -#opt/lampp/manual/mod/mod_status.html.ko.euc-kr -#opt/lampp/manual/mod/mod_suexec.html -#opt/lampp/manual/mod/mod_suexec.html.en -#opt/lampp/manual/mod/mod_suexec.html.ja.euc-jp -#opt/lampp/manual/mod/mod_suexec.html.ko.euc-kr -#opt/lampp/manual/mod/mod_unique_id.html -#opt/lampp/manual/mod/mod_unique_id.html.en -#opt/lampp/manual/mod/mod_unique_id.html.ja.euc-jp -#opt/lampp/manual/mod/mod_unique_id.html.ko.euc-kr -#opt/lampp/manual/mod/mod_userdir.html -#opt/lampp/manual/mod/mod_userdir.html.en -#opt/lampp/manual/mod/mod_userdir.html.ja.euc-jp -#opt/lampp/manual/mod/mod_userdir.html.ko.euc-kr -#opt/lampp/manual/mod/mod_usertrack.html -#opt/lampp/manual/mod/mod_usertrack.html.en -#opt/lampp/manual/mod/mod_version.html -#opt/lampp/manual/mod/mod_version.html.en -#opt/lampp/manual/mod/mod_version.html.ja.euc-jp -#opt/lampp/manual/mod/mod_version.html.ko.euc-kr -#opt/lampp/manual/mod/mod_vhost_alias.html -#opt/lampp/manual/mod/mod_vhost_alias.html.en -#opt/lampp/manual/mod/module-dict.html -#opt/lampp/manual/mod/module-dict.html.en -#opt/lampp/manual/mod/module-dict.html.ja.euc-jp -#opt/lampp/manual/mod/module-dict.html.ko.euc-kr -#opt/lampp/manual/mod/mpm_common.html -#opt/lampp/manual/mod/mpm_common.html.de -#opt/lampp/manual/mod/mpm_common.html.en -#opt/lampp/manual/mod/mpm_common.html.ja.euc-jp -#opt/lampp/manual/mod/mpm_netware.html -#opt/lampp/manual/mod/mpm_netware.html.en -#opt/lampp/manual/mod/mpm_winnt.html -#opt/lampp/manual/mod/mpm_winnt.html.de -#opt/lampp/manual/mod/mpm_winnt.html.en -#opt/lampp/manual/mod/mpm_winnt.html.ja.euc-jp -#opt/lampp/manual/mod/mpmt_os2.html -#opt/lampp/manual/mod/mpmt_os2.html.en -#opt/lampp/manual/mod/prefork.html -#opt/lampp/manual/mod/prefork.html.de -#opt/lampp/manual/mod/prefork.html.en -#opt/lampp/manual/mod/prefork.html.ja.euc-jp -#opt/lampp/manual/mod/quickreference.html -#opt/lampp/manual/mod/quickreference.html.de -#opt/lampp/manual/mod/quickreference.html.en -#opt/lampp/manual/mod/quickreference.html.es -#opt/lampp/manual/mod/quickreference.html.ja.euc-jp -#opt/lampp/manual/mod/quickreference.html.ko.euc-kr -#opt/lampp/manual/mod/quickreference.html.ru.koi8-r -#opt/lampp/manual/mod/worker.html -#opt/lampp/manual/mod/worker.html.de -#opt/lampp/manual/mod/worker.html.en -#opt/lampp/manual/mod/worker.html.ja.euc-jp -#opt/lampp/manual/mpm.html -#opt/lampp/manual/mpm.html.de -#opt/lampp/manual/mpm.html.en -#opt/lampp/manual/mpm.html.es -#opt/lampp/manual/mpm.html.ja.euc-jp -#opt/lampp/manual/mpm.html.ko.euc-kr -#opt/lampp/manual/new_features_2_0.html -#opt/lampp/manual/new_features_2_0.html.de -#opt/lampp/manual/new_features_2_0.html.en -#opt/lampp/manual/new_features_2_0.html.fr -#opt/lampp/manual/new_features_2_0.html.ja.euc-jp -#opt/lampp/manual/new_features_2_0.html.ko.euc-kr -#opt/lampp/manual/new_features_2_0.html.pt-br -#opt/lampp/manual/new_features_2_0.html.ru.koi8-r -#opt/lampp/manual/new_features_2_2.html -#opt/lampp/manual/new_features_2_2.html.en -#opt/lampp/manual/new_features_2_2.html.ko.euc-kr -#opt/lampp/manual/new_features_2_2.html.pt-br -#opt/lampp/manual/platform -#opt/lampp/manual/platform/ebcdic.html -#opt/lampp/manual/platform/ebcdic.html.en -#opt/lampp/manual/platform/ebcdic.html.ko.euc-kr -#opt/lampp/manual/platform/index.html -#opt/lampp/manual/platform/index.html.en -#opt/lampp/manual/platform/index.html.ko.euc-kr -#opt/lampp/manual/platform/netware.html -#opt/lampp/manual/platform/netware.html.en -#opt/lampp/manual/platform/netware.html.ko.euc-kr -#opt/lampp/manual/platform/perf-hp.html -#opt/lampp/manual/platform/perf-hp.html.en -#opt/lampp/manual/platform/perf-hp.html.ko.euc-kr -#opt/lampp/manual/platform/win_compiling.html -#opt/lampp/manual/platform/win_compiling.html.en -#opt/lampp/manual/platform/win_compiling.html.ko.euc-kr -#opt/lampp/manual/platform/windows.html -#opt/lampp/manual/platform/windows.html.en -#opt/lampp/manual/platform/windows.html.ko.euc-kr -#opt/lampp/manual/programs -#opt/lampp/manual/programs/ab.html -#opt/lampp/manual/programs/ab.html.en -#opt/lampp/manual/programs/ab.html.ko.euc-kr -#opt/lampp/manual/programs/apachectl.html -#opt/lampp/manual/programs/apachectl.html.en -#opt/lampp/manual/programs/apachectl.html.ko.euc-kr -#opt/lampp/manual/programs/apxs.html -#opt/lampp/manual/programs/apxs.html.en -#opt/lampp/manual/programs/apxs.html.ko.euc-kr -#opt/lampp/manual/programs/configure.html -#opt/lampp/manual/programs/configure.html.en -#opt/lampp/manual/programs/configure.html.ko.euc-kr -#opt/lampp/manual/programs/dbmmanage.html -#opt/lampp/manual/programs/dbmmanage.html.en -#opt/lampp/manual/programs/dbmmanage.html.ko.euc-kr -#opt/lampp/manual/programs/htcacheclean.html -#opt/lampp/manual/programs/htcacheclean.html.en -#opt/lampp/manual/programs/htcacheclean.html.ko.euc-kr -#opt/lampp/manual/programs/htdbm.html -#opt/lampp/manual/programs/htdbm.html.en -#opt/lampp/manual/programs/htdigest.html -#opt/lampp/manual/programs/htdigest.html.en -#opt/lampp/manual/programs/htdigest.html.ko.euc-kr -#opt/lampp/manual/programs/htpasswd.html -#opt/lampp/manual/programs/htpasswd.html.en -#opt/lampp/manual/programs/htpasswd.html.ko.euc-kr -#opt/lampp/manual/programs/httpd.html -#opt/lampp/manual/programs/httpd.html.en -#opt/lampp/manual/programs/httpd.html.ko.euc-kr -#opt/lampp/manual/programs/httxt2dbm.html -#opt/lampp/manual/programs/httxt2dbm.html.en -#opt/lampp/manual/programs/index.html -#opt/lampp/manual/programs/index.html.en -#opt/lampp/manual/programs/index.html.es -#opt/lampp/manual/programs/index.html.ko.euc-kr -#opt/lampp/manual/programs/index.html.ru.koi8-r -#opt/lampp/manual/programs/logresolve.html -#opt/lampp/manual/programs/logresolve.html.en -#opt/lampp/manual/programs/logresolve.html.ko.euc-kr -#opt/lampp/manual/programs/other.html -#opt/lampp/manual/programs/other.html.en -#opt/lampp/manual/programs/other.html.ko.euc-kr -#opt/lampp/manual/programs/rotatelogs.html -#opt/lampp/manual/programs/rotatelogs.html.en -#opt/lampp/manual/programs/rotatelogs.html.ko.euc-kr -#opt/lampp/manual/programs/suexec.html -#opt/lampp/manual/programs/suexec.html.en -#opt/lampp/manual/programs/suexec.html.ko.euc-kr -#opt/lampp/manual/rewrite -#opt/lampp/manual/rewrite/index.html -#opt/lampp/manual/rewrite/index.html.en -#opt/lampp/manual/rewrite/rewrite_guide.html -#opt/lampp/manual/rewrite/rewrite_guide.html.en -#opt/lampp/manual/rewrite/rewrite_guide_advanced.html -#opt/lampp/manual/rewrite/rewrite_guide_advanced.html.en -#opt/lampp/manual/rewrite/rewrite_intro.html -#opt/lampp/manual/rewrite/rewrite_intro.html.en -#opt/lampp/manual/rewrite/rewrite_tech.html -#opt/lampp/manual/rewrite/rewrite_tech.html.en -#opt/lampp/manual/sections.html -#opt/lampp/manual/sections.html.en -#opt/lampp/manual/sections.html.ja.euc-jp -#opt/lampp/manual/sections.html.ko.euc-kr -#opt/lampp/manual/server-wide.html -#opt/lampp/manual/server-wide.html.en -#opt/lampp/manual/server-wide.html.ja.euc-jp -#opt/lampp/manual/server-wide.html.ko.euc-kr -#opt/lampp/manual/sitemap.html -#opt/lampp/manual/sitemap.html.de -#opt/lampp/manual/sitemap.html.en -#opt/lampp/manual/sitemap.html.es -#opt/lampp/manual/sitemap.html.ja.euc-jp -#opt/lampp/manual/sitemap.html.ko.euc-kr -#opt/lampp/manual/ssl -#opt/lampp/manual/ssl/index.html -#opt/lampp/manual/ssl/index.html.en -#opt/lampp/manual/ssl/index.html.ja.euc-jp -#opt/lampp/manual/ssl/ssl_compat.html -#opt/lampp/manual/ssl/ssl_compat.html.en -#opt/lampp/manual/ssl/ssl_faq.html -#opt/lampp/manual/ssl/ssl_faq.html.en -#opt/lampp/manual/ssl/ssl_howto.html -#opt/lampp/manual/ssl/ssl_howto.html.en -#opt/lampp/manual/ssl/ssl_intro.html -#opt/lampp/manual/ssl/ssl_intro.html.en -#opt/lampp/manual/ssl/ssl_intro.html.ja.euc-jp -#opt/lampp/manual/stopping.html -#opt/lampp/manual/stopping.html.de -#opt/lampp/manual/stopping.html.en -#opt/lampp/manual/stopping.html.es -#opt/lampp/manual/stopping.html.ja.euc-jp -#opt/lampp/manual/stopping.html.ko.euc-kr -#opt/lampp/manual/style -#opt/lampp/manual/style/build.properties -#opt/lampp/manual/style/common.dtd -#opt/lampp/manual/style/css -#opt/lampp/manual/style/css/manual-chm.css -#opt/lampp/manual/style/css/manual-loose-100pc.css -#opt/lampp/manual/style/css/manual-print.css -#opt/lampp/manual/style/css/manual-zip-100pc.css -#opt/lampp/manual/style/css/manual-zip.css -#opt/lampp/manual/style/css/manual.css -#opt/lampp/manual/style/faq.dtd -#opt/lampp/manual/style/lang -#opt/lampp/manual/style/lang.dtd -#opt/lampp/manual/style/latex -#opt/lampp/manual/style/latex/atbeginend.sty -#opt/lampp/manual/style/latex/common.xsl -#opt/lampp/manual/style/latex/directiveindex.xsl -#opt/lampp/manual/style/latex/faq.xsl -#opt/lampp/manual/style/latex/html.xsl -#opt/lampp/manual/style/latex/latex.xsl -#opt/lampp/manual/style/latex/manualpage.xsl -#opt/lampp/manual/style/latex/moduleindex.xsl -#opt/lampp/manual/style/latex/quickreference.xsl -#opt/lampp/manual/style/latex/synopsis.xsl -#opt/lampp/manual/style/manual.de.xsl -#opt/lampp/manual/style/manual.en.xsl -#opt/lampp/manual/style/manual.es.xsl -#opt/lampp/manual/style/manual.fr.xsl -#opt/lampp/manual/style/manual.ja.xsl -#opt/lampp/manual/style/manual.ko.xsl -#opt/lampp/manual/style/manual.pt-br.xsl -#opt/lampp/manual/style/manual.ru.xsl -#opt/lampp/manual/style/manualpage.dtd -#opt/lampp/manual/style/modulesynopsis.dtd -#opt/lampp/manual/style/sitemap.dtd -#opt/lampp/manual/style/version.ent -#opt/lampp/manual/style/xsl -#opt/lampp/manual/style/xsl/common.xsl -#opt/lampp/manual/style/xsl/convmap.xsl -#opt/lampp/manual/style/xsl/directiveindex.xsl -#opt/lampp/manual/style/xsl/faq.xsl -#opt/lampp/manual/style/xsl/hhc.xsl -#opt/lampp/manual/style/xsl/hhp.xsl -#opt/lampp/manual/style/xsl/indexpage.xsl -#opt/lampp/manual/style/xsl/language.xsl -#opt/lampp/manual/style/xsl/maf.xsl -#opt/lampp/manual/style/xsl/manualpage.xsl -#opt/lampp/manual/style/xsl/moduleindex.xsl -#opt/lampp/manual/style/xsl/nroff.xsl -#opt/lampp/manual/style/xsl/quickreference.xsl -#opt/lampp/manual/style/xsl/sitemap.xsl -#opt/lampp/manual/style/xsl/synopsis.xsl -#opt/lampp/manual/style/xsl/typemap.xsl -#opt/lampp/manual/style/xsl/util -#opt/lampp/manual/style/xsl/util/modtrans.xsl -#opt/lampp/manual/suexec.html -#opt/lampp/manual/suexec.html.en -#opt/lampp/manual/suexec.html.ja.euc-jp -#opt/lampp/manual/suexec.html.ko.euc-kr -#opt/lampp/manual/upgrading.html -#opt/lampp/manual/upgrading.html.de -#opt/lampp/manual/upgrading.html.en -#opt/lampp/manual/upgrading.html.fr -#opt/lampp/manual/upgrading.html.ja.euc-jp -#opt/lampp/manual/upgrading.html.ko.euc-kr -#opt/lampp/manual/upgrading.html.pt-br -#opt/lampp/manual/upgrading.html.ru.koi8-r -#opt/lampp/manual/urlmapping.html -#opt/lampp/manual/urlmapping.html.en -#opt/lampp/manual/urlmapping.html.ja.euc-jp -#opt/lampp/manual/urlmapping.html.ko.euc-kr -#opt/lampp/manual/vhosts -#opt/lampp/manual/vhosts/details.html -#opt/lampp/manual/vhosts/details.html.en -#opt/lampp/manual/vhosts/details.html.fr -#opt/lampp/manual/vhosts/details.html.ko.euc-kr -#opt/lampp/manual/vhosts/examples.html -#opt/lampp/manual/vhosts/examples.html.en -#opt/lampp/manual/vhosts/examples.html.fr -#opt/lampp/manual/vhosts/examples.html.ja.euc-jp -#opt/lampp/manual/vhosts/examples.html.ko.euc-kr -#opt/lampp/manual/vhosts/fd-limits.html -#opt/lampp/manual/vhosts/fd-limits.html.en -#opt/lampp/manual/vhosts/fd-limits.html.fr -#opt/lampp/manual/vhosts/fd-limits.html.ja.euc-jp -#opt/lampp/manual/vhosts/fd-limits.html.ko.euc-kr -#opt/lampp/manual/vhosts/index.html -#opt/lampp/manual/vhosts/index.html.de -#opt/lampp/manual/vhosts/index.html.en -#opt/lampp/manual/vhosts/index.html.fr -#opt/lampp/manual/vhosts/index.html.ja.euc-jp -#opt/lampp/manual/vhosts/index.html.ko.euc-kr -#opt/lampp/manual/vhosts/index.html.ru.koi8-r -#opt/lampp/manual/vhosts/ip-based.html -#opt/lampp/manual/vhosts/ip-based.html.en -#opt/lampp/manual/vhosts/ip-based.html.fr -#opt/lampp/manual/vhosts/ip-based.html.ja.euc-jp -#opt/lampp/manual/vhosts/ip-based.html.ko.euc-kr -#opt/lampp/manual/vhosts/mass.html -#opt/lampp/manual/vhosts/mass.html.en -#opt/lampp/manual/vhosts/mass.html.ko.euc-kr -#opt/lampp/manual/vhosts/name-based.html -#opt/lampp/manual/vhosts/name-based.html.de -#opt/lampp/manual/vhosts/name-based.html.en -#opt/lampp/manual/vhosts/name-based.html.fr -#opt/lampp/manual/vhosts/name-based.html.ja.euc-jp -#opt/lampp/manual/vhosts/name-based.html.ko.euc-kr -opt/lampp/modules -opt/lampp/modules/httpd.exp -opt/lampp/modules/libphp4.so -opt/lampp/modules/libphp5.so -opt/lampp/modules/mod_actions.so -opt/lampp/modules/mod_alias.so -opt/lampp/modules/mod_apreq2.a -opt/lampp/modules/mod_apreq2.la -opt/lampp/modules/mod_apreq2.so -opt/lampp/modules/mod_asis.so -opt/lampp/modules/mod_auth_basic.so -opt/lampp/modules/mod_auth_digest.so -opt/lampp/modules/mod_authn_anon.so -opt/lampp/modules/mod_authn_dbd.so -opt/lampp/modules/mod_authn_dbm.so -opt/lampp/modules/mod_authn_default.so -opt/lampp/modules/mod_authn_file.so -opt/lampp/modules/mod_authnz_ldap.so -opt/lampp/modules/mod_authz_dbm.so -opt/lampp/modules/mod_authz_default.so -opt/lampp/modules/mod_authz_groupfile.so -opt/lampp/modules/mod_authz_host.so -opt/lampp/modules/mod_authz_owner.so -opt/lampp/modules/mod_authz_user.so -opt/lampp/modules/mod_autoindex.so -opt/lampp/modules/mod_bucketeer.so -opt/lampp/modules/mod_cache.so -opt/lampp/modules/mod_case_filter.so -opt/lampp/modules/mod_case_filter_in.so -opt/lampp/modules/mod_cern_meta.so -opt/lampp/modules/mod_cgi.so -opt/lampp/modules/mod_cgid.so -opt/lampp/modules/mod_charset_lite.so -opt/lampp/modules/mod_dav.so -opt/lampp/modules/mod_dav_fs.so -opt/lampp/modules/mod_dbd.so -opt/lampp/modules/mod_deflate.so -opt/lampp/modules/mod_dir.so -opt/lampp/modules/mod_disk_cache.so -opt/lampp/modules/mod_dumpio.so -opt/lampp/modules/mod_echo.so -opt/lampp/modules/mod_env.so -opt/lampp/modules/mod_example.a -opt/lampp/modules/mod_example.la -opt/lampp/modules/mod_example.so -opt/lampp/modules/mod_expires.so -opt/lampp/modules/mod_ext_filter.so -opt/lampp/modules/mod_file_cache.so -opt/lampp/modules/mod_filter.so -opt/lampp/modules/mod_headers.so -opt/lampp/modules/mod_ident.so -opt/lampp/modules/mod_imagemap.so -opt/lampp/modules/mod_include.so -opt/lampp/modules/mod_info.so -opt/lampp/modules/mod_ldap.so -opt/lampp/modules/mod_log_config.so -opt/lampp/modules/mod_logio.so -opt/lampp/modules/mod_mem_cache.so -opt/lampp/modules/mod_mime.so -opt/lampp/modules/mod_mime_magic.so -opt/lampp/modules/mod_negotiation.so -opt/lampp/modules/mod_perl.so -opt/lampp/modules/mod_proxy.so -opt/lampp/modules/mod_proxy_ajp.so -opt/lampp/modules/mod_proxy_balancer.so -opt/lampp/modules/mod_proxy_connect.so -opt/lampp/modules/mod_proxy_ftp.so -opt/lampp/modules/mod_proxy_http.so -opt/lampp/modules/mod_python.so -opt/lampp/modules/mod_rewrite.so -opt/lampp/modules/mod_setenvif.so -opt/lampp/modules/mod_speling.so -opt/lampp/modules/mod_ssl.so -opt/lampp/modules/mod_status.so -opt/lampp/modules/mod_suexec.so -opt/lampp/modules/mod_unique_id.so -opt/lampp/modules/mod_userdir.so -opt/lampp/modules/mod_usertrack.so -opt/lampp/modules/mod_vhost_alias.so -opt/lampp/phpmyadmin -opt/lampp/phpmyadmin/CREDITS -opt/lampp/phpmyadmin/ChangeLog -opt/lampp/phpmyadmin/Documentation.html -opt/lampp/phpmyadmin/Documentation.txt -opt/lampp/phpmyadmin/INSTALL -opt/lampp/phpmyadmin/LICENSE -opt/lampp/phpmyadmin/README -opt/lampp/phpmyadmin/RELEASE-DATE-2.8.1 -opt/lampp/phpmyadmin/TODO -opt/lampp/phpmyadmin/browse_foreigners.php -opt/lampp/phpmyadmin/calendar.php -opt/lampp/phpmyadmin/changelog.php -opt/lampp/phpmyadmin/chk_rel.php -opt/lampp/phpmyadmin/config.inc.php -opt/lampp/phpmyadmin/css -opt/lampp/phpmyadmin/css/phpmyadmin.css.php -opt/lampp/phpmyadmin/css/print.css -opt/lampp/phpmyadmin/db_create.php -opt/lampp/phpmyadmin/db_datadict.php -opt/lampp/phpmyadmin/db_details.php -opt/lampp/phpmyadmin/db_details_export.php -opt/lampp/phpmyadmin/db_details_importdocsql.php -opt/lampp/phpmyadmin/db_details_qbe.php -opt/lampp/phpmyadmin/db_details_structure.php -opt/lampp/phpmyadmin/db_import.php -opt/lampp/phpmyadmin/db_operations.php -opt/lampp/phpmyadmin/db_printview.php -opt/lampp/phpmyadmin/db_search.php -opt/lampp/phpmyadmin/docs.css -opt/lampp/phpmyadmin/error.php -opt/lampp/phpmyadmin/export.php -opt/lampp/phpmyadmin/favicon.ico -opt/lampp/phpmyadmin/import.php -opt/lampp/phpmyadmin/index.php -opt/lampp/phpmyadmin/js -opt/lampp/phpmyadmin/js/dom-drag.js -opt/lampp/phpmyadmin/js/functions.js -opt/lampp/phpmyadmin/js/indexes.js -opt/lampp/phpmyadmin/js/keyhandler.js -opt/lampp/phpmyadmin/js/querywindow.js -opt/lampp/phpmyadmin/js/server_privileges.js -opt/lampp/phpmyadmin/js/tbl_change.js -opt/lampp/phpmyadmin/js/tooltip.js -opt/lampp/phpmyadmin/js/user_password.js -opt/lampp/phpmyadmin/lang -opt/lampp/phpmyadmin/lang/add_message.sh -opt/lampp/phpmyadmin/lang/add_message_file.sh -opt/lampp/phpmyadmin/lang/afrikaans-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/afrikaans-utf-8.inc.php -opt/lampp/phpmyadmin/lang/albanian-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/albanian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/arabic-utf-8.inc.php -opt/lampp/phpmyadmin/lang/arabic-windows-1256.inc.php -opt/lampp/phpmyadmin/lang/azerbaijani-iso-8859-9.inc.php -opt/lampp/phpmyadmin/lang/azerbaijani-utf-8.inc.php -opt/lampp/phpmyadmin/lang/basque-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/basque-utf-8.inc.php -opt/lampp/phpmyadmin/lang/belarusian_cyrillic-utf-8.inc.php -opt/lampp/phpmyadmin/lang/belarusian_cyrillic-windows-1251.inc.php -opt/lampp/phpmyadmin/lang/belarusian_latin-utf-8.inc.php -opt/lampp/phpmyadmin/lang/bosnian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/bosnian-windows-1250.inc.php -opt/lampp/phpmyadmin/lang/brazilian_portuguese-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/brazilian_portuguese-utf-8.inc.php -opt/lampp/phpmyadmin/lang/bulgarian-koi8-r.inc.php -opt/lampp/phpmyadmin/lang/bulgarian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/bulgarian-windows-1251.inc.php -opt/lampp/phpmyadmin/lang/catalan-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/catalan-utf-8.inc.php -opt/lampp/phpmyadmin/lang/check_lang.sh -opt/lampp/phpmyadmin/lang/chinese_simplified-gb2312.inc.php -opt/lampp/phpmyadmin/lang/chinese_simplified-utf-8.inc.php -opt/lampp/phpmyadmin/lang/chinese_traditional-big5.inc.php -opt/lampp/phpmyadmin/lang/chinese_traditional-utf-8.inc.php -opt/lampp/phpmyadmin/lang/croatian-iso-8859-2.inc.php -opt/lampp/phpmyadmin/lang/croatian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/croatian-windows-1250.inc.php -opt/lampp/phpmyadmin/lang/czech-iso-8859-2.inc.php -opt/lampp/phpmyadmin/lang/czech-utf-8.inc.php -opt/lampp/phpmyadmin/lang/czech-windows-1250.inc.php -opt/lampp/phpmyadmin/lang/danish-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/danish-utf-8.inc.php -opt/lampp/phpmyadmin/lang/dutch-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/dutch-iso-8859-15.inc.php -opt/lampp/phpmyadmin/lang/dutch-utf-8.inc.php -opt/lampp/phpmyadmin/lang/english-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/english-iso-8859-15.inc.php -opt/lampp/phpmyadmin/lang/english-utf-8.inc.php -opt/lampp/phpmyadmin/lang/estonian-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/estonian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/finnish-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/finnish-iso-8859-15.inc.php -opt/lampp/phpmyadmin/lang/finnish-utf-8.inc.php -opt/lampp/phpmyadmin/lang/french-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/french-iso-8859-15.inc.php -opt/lampp/phpmyadmin/lang/french-utf-8.inc.php -opt/lampp/phpmyadmin/lang/galician-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/galician-utf-8.inc.php -opt/lampp/phpmyadmin/lang/georgian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/german-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/german-iso-8859-15.inc.php -opt/lampp/phpmyadmin/lang/german-utf-8.inc.php -opt/lampp/phpmyadmin/lang/greek-iso-8859-7.inc.php -opt/lampp/phpmyadmin/lang/greek-utf-8.inc.php -opt/lampp/phpmyadmin/lang/hebrew-iso-8859-8-i.inc.php -opt/lampp/phpmyadmin/lang/hebrew-utf-8.inc.php -opt/lampp/phpmyadmin/lang/hindi-utf-8.inc.php -opt/lampp/phpmyadmin/lang/hungarian-iso-8859-2.inc.php -opt/lampp/phpmyadmin/lang/hungarian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/indonesian-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/indonesian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/italian-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/italian-iso-8859-15.inc.php -opt/lampp/phpmyadmin/lang/italian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/japanese-euc.inc.php -opt/lampp/phpmyadmin/lang/japanese-sjis.inc.php -opt/lampp/phpmyadmin/lang/japanese-utf-8.inc.php -opt/lampp/phpmyadmin/lang/korean-euc-kr.inc.php -opt/lampp/phpmyadmin/lang/korean-utf-8.inc.php -opt/lampp/phpmyadmin/lang/latvian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/latvian-windows-1257.inc.php -opt/lampp/phpmyadmin/lang/lithuanian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/lithuanian-windows-1257.inc.php -opt/lampp/phpmyadmin/lang/malay-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/malay-utf-8.inc.php -opt/lampp/phpmyadmin/lang/mongolian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/norwegian-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/norwegian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/persian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/persian-windows-1256.inc.php -opt/lampp/phpmyadmin/lang/polish-iso-8859-2.inc.php -opt/lampp/phpmyadmin/lang/polish-utf-8.inc.php -opt/lampp/phpmyadmin/lang/polish-windows-1250.inc.php -opt/lampp/phpmyadmin/lang/portuguese-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/portuguese-iso-8859-15.inc.php -opt/lampp/phpmyadmin/lang/portuguese-utf-8.inc.php -opt/lampp/phpmyadmin/lang/remove_message.sh -opt/lampp/phpmyadmin/lang/romanian-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/romanian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/russian-cp-866.inc.php -opt/lampp/phpmyadmin/lang/russian-koi8-r.inc.php -opt/lampp/phpmyadmin/lang/russian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/russian-windows-1251.inc.php -opt/lampp/phpmyadmin/lang/serbian_cyrillic-utf-8.inc.php -opt/lampp/phpmyadmin/lang/serbian_cyrillic-windows-1251.inc.php -opt/lampp/phpmyadmin/lang/serbian_latin-utf-8.inc.php -opt/lampp/phpmyadmin/lang/serbian_latin-windows-1250.inc.php -opt/lampp/phpmyadmin/lang/slovak-iso-8859-2.inc.php -opt/lampp/phpmyadmin/lang/slovak-utf-8.inc.php -opt/lampp/phpmyadmin/lang/slovak-windows-1250.inc.php -opt/lampp/phpmyadmin/lang/slovenian-iso-8859-2.inc.php -opt/lampp/phpmyadmin/lang/slovenian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/slovenian-windows-1250.inc.php -opt/lampp/phpmyadmin/lang/sort_lang.sh -opt/lampp/phpmyadmin/lang/spanish-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/spanish-iso-8859-15.inc.php -opt/lampp/phpmyadmin/lang/spanish-utf-8.inc.php -opt/lampp/phpmyadmin/lang/swedish-iso-8859-1.inc.php -opt/lampp/phpmyadmin/lang/swedish-utf-8.inc.php -opt/lampp/phpmyadmin/lang/sync_lang.sh -opt/lampp/phpmyadmin/lang/tatarish-iso-8859-9.inc.php -opt/lampp/phpmyadmin/lang/tatarish-utf-8.inc.php -opt/lampp/phpmyadmin/lang/thai-tis-620.inc.php -opt/lampp/phpmyadmin/lang/thai-utf-8.inc.php -opt/lampp/phpmyadmin/lang/translatecount.sh -opt/lampp/phpmyadmin/lang/turkish-iso-8859-9.inc.php -opt/lampp/phpmyadmin/lang/turkish-utf-8.inc.php -opt/lampp/phpmyadmin/lang/ukrainian-utf-8.inc.php -opt/lampp/phpmyadmin/lang/ukrainian-windows-1251.inc.php -opt/lampp/phpmyadmin/left.php -opt/lampp/phpmyadmin/libraries -opt/lampp/phpmyadmin/libraries/.htaccess -opt/lampp/phpmyadmin/libraries/Config.class.php -opt/lampp/phpmyadmin/libraries/Theme.class.php -opt/lampp/phpmyadmin/libraries/Theme_Manager.class.php -opt/lampp/phpmyadmin/libraries/auth -opt/lampp/phpmyadmin/libraries/auth/config.auth.lib.php -opt/lampp/phpmyadmin/libraries/auth/cookie.auth.lib.php -opt/lampp/phpmyadmin/libraries/auth/http.auth.lib.php -opt/lampp/phpmyadmin/libraries/blowfish.php -opt/lampp/phpmyadmin/libraries/bookmark.lib.php -opt/lampp/phpmyadmin/libraries/charset_conversion.lib.php -opt/lampp/phpmyadmin/libraries/check_user_privileges.lib.php -opt/lampp/phpmyadmin/libraries/common.lib.php -opt/lampp/phpmyadmin/libraries/config.default.php -opt/lampp/phpmyadmin/libraries/database_interface.lib.php -opt/lampp/phpmyadmin/libraries/db_config.lib.php -opt/lampp/phpmyadmin/libraries/db_details_common.inc.php -opt/lampp/phpmyadmin/libraries/db_details_db_info.inc.php -opt/lampp/phpmyadmin/libraries/db_details_links.inc.php -opt/lampp/phpmyadmin/libraries/db_table_exists.lib.php -opt/lampp/phpmyadmin/libraries/dbg -opt/lampp/phpmyadmin/libraries/dbg/profiling.php -opt/lampp/phpmyadmin/libraries/dbg/setup.php -opt/lampp/phpmyadmin/libraries/dbi -opt/lampp/phpmyadmin/libraries/dbi/mysql.dbi.lib.php -opt/lampp/phpmyadmin/libraries/dbi/mysqli.dbi.lib.php -opt/lampp/phpmyadmin/libraries/display_create_database.lib.php -opt/lampp/phpmyadmin/libraries/display_create_table.lib.php -opt/lampp/phpmyadmin/libraries/display_export.lib.php -opt/lampp/phpmyadmin/libraries/display_import.lib.php -opt/lampp/phpmyadmin/libraries/display_select_lang.lib.php -opt/lampp/phpmyadmin/libraries/display_tbl.lib.php -opt/lampp/phpmyadmin/libraries/display_tbl_links.lib.php -opt/lampp/phpmyadmin/libraries/engines -opt/lampp/phpmyadmin/libraries/engines/bdb.lib.php -opt/lampp/phpmyadmin/libraries/engines/berkeleydb.lib.php -opt/lampp/phpmyadmin/libraries/engines/binlog.lib.php -opt/lampp/phpmyadmin/libraries/engines/innobase.lib.php -opt/lampp/phpmyadmin/libraries/engines/innodb.lib.php -opt/lampp/phpmyadmin/libraries/engines/memory.lib.php -opt/lampp/phpmyadmin/libraries/engines/merge.lib.php -opt/lampp/phpmyadmin/libraries/engines/mrg_myisam.lib.php -opt/lampp/phpmyadmin/libraries/engines/myisam.lib.php -opt/lampp/phpmyadmin/libraries/engines/ndbcluster.lib.php -opt/lampp/phpmyadmin/libraries/export -opt/lampp/phpmyadmin/libraries/export/csv.php -opt/lampp/phpmyadmin/libraries/export/htmlexcel.php -opt/lampp/phpmyadmin/libraries/export/htmlword.php -opt/lampp/phpmyadmin/libraries/export/latex.php -opt/lampp/phpmyadmin/libraries/export/pdf.php -opt/lampp/phpmyadmin/libraries/export/sql.php -opt/lampp/phpmyadmin/libraries/export/xls.php -opt/lampp/phpmyadmin/libraries/export/xml.php -opt/lampp/phpmyadmin/libraries/file_listing.php -opt/lampp/phpmyadmin/libraries/footer.inc.php -opt/lampp/phpmyadmin/libraries/footer_custom.inc.php -opt/lampp/phpmyadmin/libraries/fpdf -opt/lampp/phpmyadmin/libraries/fpdf/README -opt/lampp/phpmyadmin/libraries/fpdf/font -opt/lampp/phpmyadmin/libraries/fpdf/font/FreeSans.ctg.z -opt/lampp/phpmyadmin/libraries/fpdf/font/FreeSans.php -opt/lampp/phpmyadmin/libraries/fpdf/font/FreeSans.z -opt/lampp/phpmyadmin/libraries/fpdf/font/FreeSansBold.ctg.z -opt/lampp/phpmyadmin/libraries/fpdf/font/FreeSansBold.php -opt/lampp/phpmyadmin/libraries/fpdf/font/FreeSansBold.z -opt/lampp/phpmyadmin/libraries/fpdf/font/courier.php -opt/lampp/phpmyadmin/libraries/fpdf/font/helvetica.php -opt/lampp/phpmyadmin/libraries/fpdf/font/helveticab.php -opt/lampp/phpmyadmin/libraries/fpdf/font/helveticabi.php -opt/lampp/phpmyadmin/libraries/fpdf/font/helveticai.php -opt/lampp/phpmyadmin/libraries/fpdf/font/symbol.php -opt/lampp/phpmyadmin/libraries/fpdf/font/tahoma.php -opt/lampp/phpmyadmin/libraries/fpdf/font/tahomab.php -opt/lampp/phpmyadmin/libraries/fpdf/font/times.php -opt/lampp/phpmyadmin/libraries/fpdf/font/timesb.php -opt/lampp/phpmyadmin/libraries/fpdf/font/timesbi.php -opt/lampp/phpmyadmin/libraries/fpdf/font/timesi.php -opt/lampp/phpmyadmin/libraries/fpdf/font/zapfdingbats.php -opt/lampp/phpmyadmin/libraries/fpdf/fpdf.php -opt/lampp/phpmyadmin/libraries/fpdf/ufpdf.php -opt/lampp/phpmyadmin/libraries/get_foreign.lib.php -opt/lampp/phpmyadmin/libraries/grab_globals.lib.php -opt/lampp/phpmyadmin/libraries/header.inc.php -opt/lampp/phpmyadmin/libraries/header_custom.inc.php -opt/lampp/phpmyadmin/libraries/header_http.inc.php -opt/lampp/phpmyadmin/libraries/header_meta_style.inc.php -opt/lampp/phpmyadmin/libraries/header_printview.inc.php -opt/lampp/phpmyadmin/libraries/import -opt/lampp/phpmyadmin/libraries/import.lib.php -opt/lampp/phpmyadmin/libraries/import/README -opt/lampp/phpmyadmin/libraries/import/csv.php -opt/lampp/phpmyadmin/libraries/import/ldi.php -opt/lampp/phpmyadmin/libraries/import/sql.php -opt/lampp/phpmyadmin/libraries/information_schema_relations.lib.php -opt/lampp/phpmyadmin/libraries/ip_allow_deny.lib.php -opt/lampp/phpmyadmin/libraries/kanji-encoding.lib.php -opt/lampp/phpmyadmin/libraries/left_header.inc.php -opt/lampp/phpmyadmin/libraries/mcrypt.lib.php -opt/lampp/phpmyadmin/libraries/mult_submits.inc.php -opt/lampp/phpmyadmin/libraries/mysql_charsets.lib.php -opt/lampp/phpmyadmin/libraries/ob.lib.php -opt/lampp/phpmyadmin/libraries/plugin_interface.lib.php -opt/lampp/phpmyadmin/libraries/read_dump.lib.php -opt/lampp/phpmyadmin/libraries/relation.lib.php -opt/lampp/phpmyadmin/libraries/relation_cleanup.lib.php -opt/lampp/phpmyadmin/libraries/sanitizing.lib.php -opt/lampp/phpmyadmin/libraries/select_lang.lib.php -opt/lampp/phpmyadmin/libraries/select_server.lib.php -opt/lampp/phpmyadmin/libraries/server_common.inc.php -opt/lampp/phpmyadmin/libraries/server_links.inc.php -opt/lampp/phpmyadmin/libraries/session.inc.php -opt/lampp/phpmyadmin/libraries/sql_query_form.lib.php -opt/lampp/phpmyadmin/libraries/sqlparser.data.php -opt/lampp/phpmyadmin/libraries/sqlparser.lib.php -opt/lampp/phpmyadmin/libraries/sqlvalidator.class.php -opt/lampp/phpmyadmin/libraries/sqlvalidator.lib.php -opt/lampp/phpmyadmin/libraries/storage_engines.lib.php -opt/lampp/phpmyadmin/libraries/string.lib.php -opt/lampp/phpmyadmin/libraries/tbl_indexes.lib.php -opt/lampp/phpmyadmin/libraries/tbl_move_copy.php -opt/lampp/phpmyadmin/libraries/tbl_properties.inc.php -opt/lampp/phpmyadmin/libraries/tbl_properties_common.php -opt/lampp/phpmyadmin/libraries/tbl_properties_links.inc.php -opt/lampp/phpmyadmin/libraries/tbl_properties_table_info.inc.php -opt/lampp/phpmyadmin/libraries/tbl_replace_fields.inc.php -opt/lampp/phpmyadmin/libraries/transformations -opt/lampp/phpmyadmin/libraries/transformations.lib.php -opt/lampp/phpmyadmin/libraries/transformations/README -opt/lampp/phpmyadmin/libraries/transformations/TEMPLATE -opt/lampp/phpmyadmin/libraries/transformations/TEMPLATE_MIMETYPE -opt/lampp/phpmyadmin/libraries/transformations/application_octetstream__download.inc.php -opt/lampp/phpmyadmin/libraries/transformations/application_octetstream__hex.inc.php -opt/lampp/phpmyadmin/libraries/transformations/generator.sh -opt/lampp/phpmyadmin/libraries/transformations/global.inc.php -opt/lampp/phpmyadmin/libraries/transformations/image_jpeg__inline.inc.php -opt/lampp/phpmyadmin/libraries/transformations/image_jpeg__link.inc.php -opt/lampp/phpmyadmin/libraries/transformations/image_png__inline.inc.php -opt/lampp/phpmyadmin/libraries/transformations/template_generator.sh -opt/lampp/phpmyadmin/libraries/transformations/template_generator_mimetype.sh -opt/lampp/phpmyadmin/libraries/transformations/text_plain__dateformat.inc.php -opt/lampp/phpmyadmin/libraries/transformations/text_plain__external.inc.php -opt/lampp/phpmyadmin/libraries/transformations/text_plain__formatted.inc.php -opt/lampp/phpmyadmin/libraries/transformations/text_plain__imagelink.inc.php -opt/lampp/phpmyadmin/libraries/transformations/text_plain__link.inc.php -opt/lampp/phpmyadmin/libraries/transformations/text_plain__sql.inc.php -opt/lampp/phpmyadmin/libraries/transformations/text_plain__substr.inc.php -opt/lampp/phpmyadmin/libraries/unzip.lib.php -opt/lampp/phpmyadmin/libraries/url_generating.lib.php -opt/lampp/phpmyadmin/libraries/zip.lib.php -opt/lampp/phpmyadmin/license.php -opt/lampp/phpmyadmin/main.php -opt/lampp/phpmyadmin/pdf_pages.php -opt/lampp/phpmyadmin/pdf_schema.php -opt/lampp/phpmyadmin/phpinfo.php -opt/lampp/phpmyadmin/querywindow.php -opt/lampp/phpmyadmin/readme.php -opt/lampp/phpmyadmin/scripts -opt/lampp/phpmyadmin/server_binlog.php -opt/lampp/phpmyadmin/server_collations.php -opt/lampp/phpmyadmin/server_databases.php -opt/lampp/phpmyadmin/server_engines.php -opt/lampp/phpmyadmin/server_export.php -opt/lampp/phpmyadmin/server_import.php -opt/lampp/phpmyadmin/server_privileges.php -opt/lampp/phpmyadmin/server_processlist.php -opt/lampp/phpmyadmin/server_sql.php -opt/lampp/phpmyadmin/server_status.php -opt/lampp/phpmyadmin/server_variables.php -opt/lampp/phpmyadmin/sql.php -opt/lampp/phpmyadmin/tbl_addfield.php -opt/lampp/phpmyadmin/tbl_alter.php -opt/lampp/phpmyadmin/tbl_change.php -opt/lampp/phpmyadmin/tbl_create.php -opt/lampp/phpmyadmin/tbl_import.php -opt/lampp/phpmyadmin/tbl_indexes.php -opt/lampp/phpmyadmin/tbl_move_copy.php -opt/lampp/phpmyadmin/tbl_printview.php -opt/lampp/phpmyadmin/tbl_properties.php -opt/lampp/phpmyadmin/tbl_properties_export.php -opt/lampp/phpmyadmin/tbl_properties_operations.php -opt/lampp/phpmyadmin/tbl_properties_structure.php -opt/lampp/phpmyadmin/tbl_relation.php -opt/lampp/phpmyadmin/tbl_replace.php -opt/lampp/phpmyadmin/tbl_row_action.php -opt/lampp/phpmyadmin/tbl_select.php -opt/lampp/phpmyadmin/test -opt/lampp/phpmyadmin/test/theme.php -opt/lampp/phpmyadmin/themes -opt/lampp/phpmyadmin/themes.php -opt/lampp/phpmyadmin/themes/darkblue_orange -opt/lampp/phpmyadmin/themes/darkblue_orange/css -opt/lampp/phpmyadmin/themes/darkblue_orange/css/theme_left.css.php -opt/lampp/phpmyadmin/themes/darkblue_orange/css/theme_print.css.php -opt/lampp/phpmyadmin/themes/darkblue_orange/css/theme_right.css.php -opt/lampp/phpmyadmin/themes/darkblue_orange/img -opt/lampp/phpmyadmin/themes/darkblue_orange/img/arrow_ltr.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/arrow_rtl.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/asc_order.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_bookmark.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_browse.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_calendar.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_comment.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_dbstatistics.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_deltbl.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_docs.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_docsql.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_drop.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_edit.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_empty.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_engine.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_export.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_firstpage.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_ftext.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_help.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_home.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_import.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_index.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_info.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_insrow.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_lastpage.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_minus.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_newdb.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_newtbl.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_nextpage.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_pdfdoc.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_plus.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_prevpage.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_primary.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_print.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_props.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_relations.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_save.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_sbrowse.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_sdb.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_search.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_selboard.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_select.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_sql.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_sqldoc.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_sqlhelp.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_tblanalyse.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_tblexport.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_tblimport.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_tblops.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_tbloptimize.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_tipp.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_unique.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_usradd.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_usrcheck.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_usrdrop.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_usredit.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_usrlist.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_view.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/b_views.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_browse.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_deltbl.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_drop.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_empty.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_firstpage.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_ftext.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_index.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_insrow.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_lastpage.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_nextpage.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_prevpage.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_primary.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_sbrowse.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_select.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/bd_unique.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/error.ico -opt/lampp/phpmyadmin/themes/darkblue_orange/img/item.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/item_ltr.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/item_rtl.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/logo_left.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/logo_right.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/php_sym.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/pma_logo2.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_asc.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_asci.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_attention.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_cancel.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_cancel2.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_db.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_desc.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_error.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_error2.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_fulltext.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_host.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_info.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_lang.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_loggoff.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_notice.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_okay.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_partialtext.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_passwd.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_process.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_really.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_reload.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_rights.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_status.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_tbl.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_theme.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_vars.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_views.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/s_warn.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/spacer.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/tbl_header.png -opt/lampp/phpmyadmin/themes/darkblue_orange/img/tbl_th.png -opt/lampp/phpmyadmin/themes/darkblue_orange/info.inc.php -opt/lampp/phpmyadmin/themes/darkblue_orange/layout.inc.php -opt/lampp/phpmyadmin/themes/darkblue_orange/screen.png -opt/lampp/phpmyadmin/themes/original -opt/lampp/phpmyadmin/themes/original/css -opt/lampp/phpmyadmin/themes/original/css/theme_left.css.php -opt/lampp/phpmyadmin/themes/original/css/theme_print.css.php -opt/lampp/phpmyadmin/themes/original/css/theme_right.css.php -opt/lampp/phpmyadmin/themes/original/img -opt/lampp/phpmyadmin/themes/original/img/arrow_ltr.png -opt/lampp/phpmyadmin/themes/original/img/arrow_rtl.png -opt/lampp/phpmyadmin/themes/original/img/asc_order.png -opt/lampp/phpmyadmin/themes/original/img/b_bookmark.png -opt/lampp/phpmyadmin/themes/original/img/b_browse.png -opt/lampp/phpmyadmin/themes/original/img/b_calendar.png -opt/lampp/phpmyadmin/themes/original/img/b_comment.png -opt/lampp/phpmyadmin/themes/original/img/b_dbstatistics.png -opt/lampp/phpmyadmin/themes/original/img/b_deltbl.png -opt/lampp/phpmyadmin/themes/original/img/b_docs.png -opt/lampp/phpmyadmin/themes/original/img/b_docsql.png -opt/lampp/phpmyadmin/themes/original/img/b_drop.png -opt/lampp/phpmyadmin/themes/original/img/b_edit.png -opt/lampp/phpmyadmin/themes/original/img/b_empty.png -opt/lampp/phpmyadmin/themes/original/img/b_engine.png -opt/lampp/phpmyadmin/themes/original/img/b_export.png -opt/lampp/phpmyadmin/themes/original/img/b_firstpage.png -opt/lampp/phpmyadmin/themes/original/img/b_ftext.png -opt/lampp/phpmyadmin/themes/original/img/b_help.png -opt/lampp/phpmyadmin/themes/original/img/b_home.png -opt/lampp/phpmyadmin/themes/original/img/b_import.png -opt/lampp/phpmyadmin/themes/original/img/b_index.png -opt/lampp/phpmyadmin/themes/original/img/b_info.png -opt/lampp/phpmyadmin/themes/original/img/b_insrow.png -opt/lampp/phpmyadmin/themes/original/img/b_lastpage.png -opt/lampp/phpmyadmin/themes/original/img/b_minus.png -opt/lampp/phpmyadmin/themes/original/img/b_newdb.png -opt/lampp/phpmyadmin/themes/original/img/b_newtbl.png -opt/lampp/phpmyadmin/themes/original/img/b_nextpage.png -opt/lampp/phpmyadmin/themes/original/img/b_pdfdoc.png -opt/lampp/phpmyadmin/themes/original/img/b_plus.png -opt/lampp/phpmyadmin/themes/original/img/b_prevpage.png -opt/lampp/phpmyadmin/themes/original/img/b_primary.png -opt/lampp/phpmyadmin/themes/original/img/b_print.png -opt/lampp/phpmyadmin/themes/original/img/b_props.png -opt/lampp/phpmyadmin/themes/original/img/b_relations.png -opt/lampp/phpmyadmin/themes/original/img/b_save.png -opt/lampp/phpmyadmin/themes/original/img/b_sbrowse.png -opt/lampp/phpmyadmin/themes/original/img/b_sdb.png -opt/lampp/phpmyadmin/themes/original/img/b_search.png -opt/lampp/phpmyadmin/themes/original/img/b_selboard.png -opt/lampp/phpmyadmin/themes/original/img/b_select.png -opt/lampp/phpmyadmin/themes/original/img/b_sql.png -opt/lampp/phpmyadmin/themes/original/img/b_sqldoc.png -opt/lampp/phpmyadmin/themes/original/img/b_sqlhelp.png -opt/lampp/phpmyadmin/themes/original/img/b_tblanalyse.png -opt/lampp/phpmyadmin/themes/original/img/b_tblexport.png -opt/lampp/phpmyadmin/themes/original/img/b_tblimport.png -opt/lampp/phpmyadmin/themes/original/img/b_tblops.png -opt/lampp/phpmyadmin/themes/original/img/b_tbloptimize.png -opt/lampp/phpmyadmin/themes/original/img/b_tipp.png -opt/lampp/phpmyadmin/themes/original/img/b_unique.png -opt/lampp/phpmyadmin/themes/original/img/b_usradd.png -opt/lampp/phpmyadmin/themes/original/img/b_usrcheck.png -opt/lampp/phpmyadmin/themes/original/img/b_usrdrop.png -opt/lampp/phpmyadmin/themes/original/img/b_usredit.png -opt/lampp/phpmyadmin/themes/original/img/b_usrlist.png -opt/lampp/phpmyadmin/themes/original/img/b_view.png -opt/lampp/phpmyadmin/themes/original/img/b_views.png -opt/lampp/phpmyadmin/themes/original/img/bd_browse.png -opt/lampp/phpmyadmin/themes/original/img/bd_deltbl.png -opt/lampp/phpmyadmin/themes/original/img/bd_drop.png -opt/lampp/phpmyadmin/themes/original/img/bd_empty.png -opt/lampp/phpmyadmin/themes/original/img/bd_firstpage.png -opt/lampp/phpmyadmin/themes/original/img/bd_ftext.png -opt/lampp/phpmyadmin/themes/original/img/bd_index.png -opt/lampp/phpmyadmin/themes/original/img/bd_insrow.png -opt/lampp/phpmyadmin/themes/original/img/bd_lastpage.png -opt/lampp/phpmyadmin/themes/original/img/bd_nextpage.png -opt/lampp/phpmyadmin/themes/original/img/bd_prevpage.png -opt/lampp/phpmyadmin/themes/original/img/bd_primary.png -opt/lampp/phpmyadmin/themes/original/img/bd_sbrowse.png -opt/lampp/phpmyadmin/themes/original/img/bd_select.png -opt/lampp/phpmyadmin/themes/original/img/bd_unique.png -opt/lampp/phpmyadmin/themes/original/img/error.ico -opt/lampp/phpmyadmin/themes/original/img/item.png -opt/lampp/phpmyadmin/themes/original/img/item_ltr.png -opt/lampp/phpmyadmin/themes/original/img/item_rtl.png -opt/lampp/phpmyadmin/themes/original/img/logo_left.png -opt/lampp/phpmyadmin/themes/original/img/logo_right.png -opt/lampp/phpmyadmin/themes/original/img/php_sym.png -opt/lampp/phpmyadmin/themes/original/img/pma_logo2.png -opt/lampp/phpmyadmin/themes/original/img/s_asc.png -opt/lampp/phpmyadmin/themes/original/img/s_asci.png -opt/lampp/phpmyadmin/themes/original/img/s_attention.png -opt/lampp/phpmyadmin/themes/original/img/s_cancel.png -opt/lampp/phpmyadmin/themes/original/img/s_cancel2.png -opt/lampp/phpmyadmin/themes/original/img/s_db.png -opt/lampp/phpmyadmin/themes/original/img/s_desc.png -opt/lampp/phpmyadmin/themes/original/img/s_error.png -opt/lampp/phpmyadmin/themes/original/img/s_error2.png -opt/lampp/phpmyadmin/themes/original/img/s_fulltext.png -opt/lampp/phpmyadmin/themes/original/img/s_host.png -opt/lampp/phpmyadmin/themes/original/img/s_info.png -opt/lampp/phpmyadmin/themes/original/img/s_lang.png -opt/lampp/phpmyadmin/themes/original/img/s_loggoff.png -opt/lampp/phpmyadmin/themes/original/img/s_notice.png -opt/lampp/phpmyadmin/themes/original/img/s_okay.png -opt/lampp/phpmyadmin/themes/original/img/s_partialtext.png -opt/lampp/phpmyadmin/themes/original/img/s_passwd.png -opt/lampp/phpmyadmin/themes/original/img/s_process.png -opt/lampp/phpmyadmin/themes/original/img/s_really.png -opt/lampp/phpmyadmin/themes/original/img/s_reload.png -opt/lampp/phpmyadmin/themes/original/img/s_rights.png -opt/lampp/phpmyadmin/themes/original/img/s_status.png -opt/lampp/phpmyadmin/themes/original/img/s_tbl.png -opt/lampp/phpmyadmin/themes/original/img/s_theme.png -opt/lampp/phpmyadmin/themes/original/img/s_vars.png -opt/lampp/phpmyadmin/themes/original/img/s_views.png -opt/lampp/phpmyadmin/themes/original/img/s_warn.png -opt/lampp/phpmyadmin/themes/original/img/spacer.png -opt/lampp/phpmyadmin/themes/original/img/vertical_line.png -opt/lampp/phpmyadmin/themes/original/info.inc.php -opt/lampp/phpmyadmin/themes/original/layout.inc.php -opt/lampp/phpmyadmin/themes/original/screen.png -opt/lampp/phpmyadmin/transformation_overview.php -opt/lampp/phpmyadmin/transformation_wrapper.php -opt/lampp/phpmyadmin/translators.html -opt/lampp/phpmyadmin/user_password.php -opt/lampp/phppgadmin -opt/lampp/phppgadmin/CREDITS -opt/lampp/phppgadmin/DEVELOPERS -opt/lampp/phppgadmin/FAQ -opt/lampp/phppgadmin/HISTORY -opt/lampp/phppgadmin/INSTALL -opt/lampp/phppgadmin/LICENSE -opt/lampp/phppgadmin/TODO -opt/lampp/phppgadmin/TRANSLATORS -opt/lampp/phppgadmin/aggregates.php -opt/lampp/phppgadmin/all_db.php -opt/lampp/phppgadmin/bottombar.php -opt/lampp/phppgadmin/browser.php -opt/lampp/phppgadmin/casts.php -opt/lampp/phppgadmin/classes -opt/lampp/phppgadmin/classes/Gui.php -opt/lampp/phppgadmin/classes/HTML_TreeMenu -opt/lampp/phppgadmin/classes/HTML_TreeMenu/TreeMenu.js -opt/lampp/phppgadmin/classes/HTML_TreeMenu/TreeMenu.php -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/branch.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/branchbottom.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/branchtop.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/folder-expanded.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/folder.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/line.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/linebottom.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/minus.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/minusbottom.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/minustop.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/plus.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/plusbottom.gif -opt/lampp/phppgadmin/classes/HTML_TreeMenu/images/plustop.gif -opt/lampp/phppgadmin/classes/Misc.php -opt/lampp/phppgadmin/classes/Reports.php -opt/lampp/phppgadmin/classes/class.select.php -opt/lampp/phppgadmin/classes/database -opt/lampp/phppgadmin/classes/database/ADODB_base.php -opt/lampp/phppgadmin/classes/database/Connection.php -opt/lampp/phppgadmin/classes/database/Postgres.php -opt/lampp/phppgadmin/classes/database/Postgres71.php -opt/lampp/phppgadmin/classes/database/Postgres72.php -opt/lampp/phppgadmin/classes/database/Postgres73.php -opt/lampp/phppgadmin/classes/database/Postgres74.php -opt/lampp/phppgadmin/classes/database/Postgres80.php -opt/lampp/phppgadmin/conf -opt/lampp/phppgadmin/conf/config.inc.php -opt/lampp/phppgadmin/constraints.php -opt/lampp/phppgadmin/conversions.php -opt/lampp/phppgadmin/database.php -opt/lampp/phppgadmin/dataexport.php -opt/lampp/phppgadmin/dataimport.php -opt/lampp/phppgadmin/dbexport.php -opt/lampp/phppgadmin/display.php -opt/lampp/phppgadmin/domains.php -opt/lampp/phppgadmin/functions.php -opt/lampp/phppgadmin/groups.php -opt/lampp/phppgadmin/help -opt/lampp/phppgadmin/help.php -opt/lampp/phppgadmin/help/PostgresDoc70.php -opt/lampp/phppgadmin/help/PostgresDoc71.php -opt/lampp/phppgadmin/help/PostgresDoc72.php -opt/lampp/phppgadmin/help/PostgresDoc73.php -opt/lampp/phppgadmin/help/PostgresDoc74.php -opt/lampp/phppgadmin/help/PostgresDoc80.php -opt/lampp/phppgadmin/images -opt/lampp/phppgadmin/images/themes -opt/lampp/phppgadmin/images/themes/default -opt/lampp/phppgadmin/images/themes/default/database.png -opt/lampp/phppgadmin/images/themes/default/domains.png -opt/lampp/phppgadmin/images/themes/default/functions.png -opt/lampp/phppgadmin/images/themes/default/operators.png -opt/lampp/phppgadmin/images/themes/default/sequences.png -opt/lampp/phppgadmin/images/themes/default/tables.png -opt/lampp/phppgadmin/images/themes/default/title.png -opt/lampp/phppgadmin/images/themes/default/triggers.png -opt/lampp/phppgadmin/images/themes/default/types.png -opt/lampp/phppgadmin/images/themes/default/views.png -opt/lampp/phppgadmin/index.php -opt/lampp/phppgadmin/indexes.js -opt/lampp/phppgadmin/indexes.php -opt/lampp/phppgadmin/info.php -opt/lampp/phppgadmin/intro.php -opt/lampp/phppgadmin/lang -opt/lampp/phppgadmin/lang/Makefile -opt/lampp/phppgadmin/lang/afrikaans.php -opt/lampp/phppgadmin/lang/arabic.php -opt/lampp/phppgadmin/lang/chinese-sim.php -opt/lampp/phppgadmin/lang/chinese-tr.php -opt/lampp/phppgadmin/lang/convert.awk -opt/lampp/phppgadmin/lang/czech.php -opt/lampp/phppgadmin/lang/danish.php -opt/lampp/phppgadmin/lang/dutch.php -opt/lampp/phppgadmin/lang/english.php -opt/lampp/phppgadmin/lang/french.php -opt/lampp/phppgadmin/lang/german.php -opt/lampp/phppgadmin/lang/hebrew.php -opt/lampp/phppgadmin/lang/hungarian.php -opt/lampp/phppgadmin/lang/italian.php -opt/lampp/phppgadmin/lang/japanese.php -opt/lampp/phppgadmin/lang/langcheck -opt/lampp/phppgadmin/lang/mongol.php -opt/lampp/phppgadmin/lang/php2po -opt/lampp/phppgadmin/lang/po2php -opt/lampp/phppgadmin/lang/polish.php -opt/lampp/phppgadmin/lang/portuguese-br.php -opt/lampp/phppgadmin/lang/portuguese-pt.php -opt/lampp/phppgadmin/lang/recoded -opt/lampp/phppgadmin/lang/recoded/README -opt/lampp/phppgadmin/lang/recoded/afrikaans.php -opt/lampp/phppgadmin/lang/recoded/arabic.php -opt/lampp/phppgadmin/lang/recoded/chinese-sim.php -opt/lampp/phppgadmin/lang/recoded/chinese-tr.php -opt/lampp/phppgadmin/lang/recoded/czech.php -opt/lampp/phppgadmin/lang/recoded/danish.php -opt/lampp/phppgadmin/lang/recoded/dutch.php -opt/lampp/phppgadmin/lang/recoded/english.php -opt/lampp/phppgadmin/lang/recoded/french.php -opt/lampp/phppgadmin/lang/recoded/german.php -opt/lampp/phppgadmin/lang/recoded/hebrew.php -opt/lampp/phppgadmin/lang/recoded/hungarian.php -opt/lampp/phppgadmin/lang/recoded/italian.php -opt/lampp/phppgadmin/lang/recoded/japanese.php -opt/lampp/phppgadmin/lang/recoded/mongol.php -opt/lampp/phppgadmin/lang/recoded/polish.php -opt/lampp/phppgadmin/lang/recoded/portuguese-br.php -opt/lampp/phppgadmin/lang/recoded/portuguese-pt.php -opt/lampp/phppgadmin/lang/recoded/romanian.php -opt/lampp/phppgadmin/lang/recoded/russian.php -opt/lampp/phppgadmin/lang/recoded/slovak.php -opt/lampp/phppgadmin/lang/recoded/spanish.php -opt/lampp/phppgadmin/lang/recoded/swedish.php -opt/lampp/phppgadmin/lang/recoded/turkish.php -opt/lampp/phppgadmin/lang/recoded/ukrainian.php -opt/lampp/phppgadmin/lang/romanian.php -opt/lampp/phppgadmin/lang/russian.php -opt/lampp/phppgadmin/lang/slovak.php -opt/lampp/phppgadmin/lang/spanish.php -opt/lampp/phppgadmin/lang/swedish.php -opt/lampp/phppgadmin/lang/synch -opt/lampp/phppgadmin/lang/turkish.php -opt/lampp/phppgadmin/lang/ukrainian.php -opt/lampp/phppgadmin/languages.php -opt/lampp/phppgadmin/libraries -opt/lampp/phppgadmin/libraries/adodb -opt/lampp/phppgadmin/libraries/adodb/adodb-connection.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-cryptsession.php -opt/lampp/phppgadmin/libraries/adodb/adodb-csvlib.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-datadict.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-errorhandler.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-errorpear.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-lib.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-pager.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-pear.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-recordset.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb-session.php -opt/lampp/phppgadmin/libraries/adodb/adodb-time.inc.php -opt/lampp/phppgadmin/libraries/adodb/adodb.inc.php -opt/lampp/phppgadmin/libraries/adodb/crypt.inc.php -opt/lampp/phppgadmin/libraries/adodb/datadict -opt/lampp/phppgadmin/libraries/adodb/datadict/datadict-mssql.inc.php -opt/lampp/phppgadmin/libraries/adodb/datadict/datadict-mysql.inc.php -opt/lampp/phppgadmin/libraries/adodb/datadict/datadict-oci8.inc.php -opt/lampp/phppgadmin/libraries/adodb/datadict/datadict-postgres.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-access.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-ado.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-ado_access.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-ado_mssql.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-borland_ibase.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-csv.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-db2.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-fbsql.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-firebird.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-ibase.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-informix.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-informix72.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-mssql.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-mssqlpo.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-mysql.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-mysqlt.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-oci8.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-oci805.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-oci8po.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-odbc.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-odbc_mssql.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-odbc_oracle.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-oracle.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-postgres.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-postgres64.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-postgres7.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-proxy.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-sqlanywhere.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-sybase.inc.php -opt/lampp/phppgadmin/libraries/adodb/drivers/adodb-vfp.inc.php -opt/lampp/phppgadmin/libraries/adodb/license.txt -opt/lampp/phppgadmin/libraries/adodb/pivottable.inc.php -opt/lampp/phppgadmin/libraries/adodb/readme.txt -opt/lampp/phppgadmin/libraries/adodb/rsfilter.inc.php -opt/lampp/phppgadmin/libraries/adodb/server.php -opt/lampp/phppgadmin/libraries/adodb/toexport.inc.php -opt/lampp/phppgadmin/libraries/adodb/tohtml.inc.php -opt/lampp/phppgadmin/libraries/errorhandler.inc.php -opt/lampp/phppgadmin/libraries/highlight.php -opt/lampp/phppgadmin/libraries/lib.inc.php -opt/lampp/phppgadmin/links.js -opt/lampp/phppgadmin/login.php -opt/lampp/phppgadmin/logout.php -opt/lampp/phppgadmin/opclasses.php -opt/lampp/phppgadmin/operators.php -opt/lampp/phppgadmin/privileges.php -opt/lampp/phppgadmin/redirect.php -opt/lampp/phppgadmin/reports.php -opt/lampp/phppgadmin/robots.txt -opt/lampp/phppgadmin/rules.php -opt/lampp/phppgadmin/sequences.php -opt/lampp/phppgadmin/sql -opt/lampp/phppgadmin/sql.php -opt/lampp/phppgadmin/sql/reports-pgsql.sql -opt/lampp/phppgadmin/sqledit.php -opt/lampp/phppgadmin/tables.php -opt/lampp/phppgadmin/tablespaces.php -opt/lampp/phppgadmin/tblproperties.php -opt/lampp/phppgadmin/themes -opt/lampp/phppgadmin/themes/default -opt/lampp/phppgadmin/themes/default/global.css -opt/lampp/phppgadmin/topbar.php -opt/lampp/phppgadmin/triggers.php -opt/lampp/phppgadmin/types.php -opt/lampp/phppgadmin/users.php -opt/lampp/phppgadmin/viewproperties.php -opt/lampp/phppgadmin/views.php -opt/lampp/phpsqliteadmin -opt/lampp/phpsqliteadmin/SPSQLite.class-0.6.php -opt/lampp/phpsqliteadmin/SPSQLite.class.diff -opt/lampp/phpsqliteadmin/SPSQLite.class.php -opt/lampp/phpsqliteadmin/changelog.txt -opt/lampp/phpsqliteadmin/config.php -opt/lampp/phpsqliteadmin/copying.txt -opt/lampp/phpsqliteadmin/create_system_db.sql -opt/lampp/phpsqliteadmin/dbaction.php -opt/lampp/phpsqliteadmin/dbconfig.php -opt/lampp/phpsqliteadmin/editdb.php -opt/lampp/phpsqliteadmin/include.php -opt/lampp/phpsqliteadmin/index.php -opt/lampp/phpsqliteadmin/javascript.txt -opt/lampp/phpsqliteadmin/leftframe.php -opt/lampp/phpsqliteadmin/mainframe.php -opt/lampp/phpsqliteadmin/phpsla.css -opt/lampp/phpsqliteadmin/phpsla.sqlite -opt/lampp/phpsqliteadmin/query.php -opt/lampp/phpsqliteadmin/readme.txt -opt/lampp/phpsqliteadmin/set_session.php -opt/lampp/phpsqliteadmin/table_browse.php -opt/lampp/phpsqliteadmin/table_create.php -opt/lampp/phpsqliteadmin/table_structure.php -opt/lampp/sbin -opt/lampp/sbin/ftpshut -opt/lampp/sbin/in.proftpd -opt/lampp/sbin/mysqld -opt/lampp/sbin/mysqlmanager -opt/lampp/sbin/proftpd -opt/lampp/share -opt/lampp/share/aclocal -opt/lampp/share/aclocal/codeset.m4 -opt/lampp/share/aclocal/freetype2.m4 -opt/lampp/share/aclocal/gettext.m4 -opt/lampp/share/aclocal/glibc21.m4 -opt/lampp/share/aclocal/iconv.m4 -opt/lampp/share/aclocal/intdiv0.m4 -opt/lampp/share/aclocal/inttypes-pri.m4 -opt/lampp/share/aclocal/inttypes.m4 -opt/lampp/share/aclocal/inttypes_h.m4 -opt/lampp/share/aclocal/isc-posix.m4 -opt/lampp/share/aclocal/lcmessage.m4 -opt/lampp/share/aclocal/lib-ld.m4 -opt/lampp/share/aclocal/lib-link.m4 -opt/lampp/share/aclocal/lib-prefix.m4 -opt/lampp/share/aclocal/libmcrypt.m4 -opt/lampp/share/aclocal/libxml.m4 -opt/lampp/share/aclocal/libxslt.m4 -opt/lampp/share/aclocal/progtest.m4 -opt/lampp/share/aclocal/stdint_h.m4 -opt/lampp/share/aclocal/uintmax_t.m4 -opt/lampp/share/aclocal/ulonglong.m4 -opt/lampp/share/aclocal/zziplib.m4 -opt/lampp/share/addons -opt/lampp/share/addons/ddclient -opt/lampp/share/addons/postgresql -opt/lampp/share/addons/test -opt/lampp/share/curl -opt/lampp/share/curl/curl-ca-bundle.crt -opt/lampp/share/doc -#opt/lampp/share/doc/freetds-0.62.4 -#opt/lampp/share/doc/freetds-0.62.4/images -#opt/lampp/share/doc/freetds-0.62.4/images/important.gif -#opt/lampp/share/doc/freetds-0.62.4/images/note.gif -#opt/lampp/share/doc/freetds-0.62.4/images/tip.gif -#opt/lampp/share/doc/freetds-0.62.4/reference -#opt/lampp/share/doc/freetds-0.62.4/reference/a00048.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00059.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00065.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00066.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00067.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00068.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00072.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00129.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00132.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00164.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00167.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00168.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00181.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00185.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00200.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00223.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00270.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00273.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00297.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00298.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00299.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00300.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00301.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00302.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00303.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00304.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00305.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00306.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00307.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00308.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00309.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00310.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00311.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00312.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00313.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00314.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00315.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00317.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00319.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00320.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00321.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00322.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00323.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00324.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00325.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00326.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00327.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00328.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00329.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00330.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00331.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00332.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00333.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00334.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00335.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00336.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00337.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00338.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00339.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00340.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00341.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00342.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00343.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00344.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00345.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00346.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00347.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00348.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00350.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00352.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00353.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00354.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00355.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00356.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00357.html -#opt/lampp/share/doc/freetds-0.62.4/reference/a00358.html -#opt/lampp/share/doc/freetds-0.62.4/reference/annotated.html -#opt/lampp/share/doc/freetds-0.62.4/reference/bug.html -#opt/lampp/share/doc/freetds-0.62.4/reference/doxygen.css -#opt/lampp/share/doc/freetds-0.62.4/reference/doxygen.png -#opt/lampp/share/doc/freetds-0.62.4/reference/files.html -#opt/lampp/share/doc/freetds-0.62.4/reference/functions.html -#opt/lampp/share/doc/freetds-0.62.4/reference/globals.html -#opt/lampp/share/doc/freetds-0.62.4/reference/index.html -#opt/lampp/share/doc/freetds-0.62.4/reference/modules.html -#opt/lampp/share/doc/freetds-0.62.4/reference/pages.html -#opt/lampp/share/doc/freetds-0.62.4/reference/todo.html -#opt/lampp/share/doc/freetds-0.62.4/userguide -#opt/lampp/share/doc/freetds-0.62.4/userguide/about.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/aboutunicode.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/acknowledgments.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/advocacy.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/apireference.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/appendmode.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/askingforhelp.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/build.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/choosingtdsprotocol.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/config.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/configs.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/configurations.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/confirminstall.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/contrib.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/contributors.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/ctlib.api.summary.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/dblib.api.summary.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/domains.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/dsnless.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/envvar.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/freetdsconf.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/freetdshistory.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-1.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-10.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-11.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-2.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-3.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-4.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-5.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-6.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-7.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-8.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl-9.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/gfdl.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/help.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/index.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/index.html -#opt/lampp/share/doc/freetds-0.62.4/userguide/install.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/interfacesfile.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/interfacesformat.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/interfaceslocation.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/interfacespurpose.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/iso8859.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/locales.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/logging.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/mailinglist.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/nonwestern.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/odbc.api.summary.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/odbcconnattr.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/odbcdiagnose.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/odbcinionly.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/odbcombo.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/osissues.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/packages.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/pagenodata.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/perl.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/php.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/prepodbc.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/programming.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/projects.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/python.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/samplecode.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/seemtooslow.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/serverthere.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/software.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/stunnel.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/sybsql.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/tdshistory.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/tdspool.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/troubleshooting.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/unicode.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/unicodefreetds.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/unicodegoodbad.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/unicodeutf.htm -#opt/lampp/share/doc/freetds-0.62.4/userguide/what.htm -#opt/lampp/share/doc/freetds-0.63 -#opt/lampp/share/doc/freetds-0.63/images -#opt/lampp/share/doc/freetds-0.63/images/important.gif -#opt/lampp/share/doc/freetds-0.63/images/note.gif -#opt/lampp/share/doc/freetds-0.63/images/tip.gif -#opt/lampp/share/doc/freetds-0.63/reference -#opt/lampp/share/doc/freetds-0.63/reference/a00064.html -#opt/lampp/share/doc/freetds-0.63/reference/a00075.html -#opt/lampp/share/doc/freetds-0.63/reference/a00081.html -#opt/lampp/share/doc/freetds-0.63/reference/a00082.html -#opt/lampp/share/doc/freetds-0.63/reference/a00083.html -#opt/lampp/share/doc/freetds-0.63/reference/a00085.html -#opt/lampp/share/doc/freetds-0.63/reference/a00087.html -#opt/lampp/share/doc/freetds-0.63/reference/a00156.html -#opt/lampp/share/doc/freetds-0.63/reference/a00159.html -#opt/lampp/share/doc/freetds-0.63/reference/a00194.html -#opt/lampp/share/doc/freetds-0.63/reference/a00197.html -#opt/lampp/share/doc/freetds-0.63/reference/a00198.html -#opt/lampp/share/doc/freetds-0.63/reference/a00213.html -#opt/lampp/share/doc/freetds-0.63/reference/a00217.html -#opt/lampp/share/doc/freetds-0.63/reference/a00232.html -#opt/lampp/share/doc/freetds-0.63/reference/a00255.html -#opt/lampp/share/doc/freetds-0.63/reference/a00307.html -#opt/lampp/share/doc/freetds-0.63/reference/a00310.html -#opt/lampp/share/doc/freetds-0.63/reference/a00336.html -#opt/lampp/share/doc/freetds-0.63/reference/a00337.html -#opt/lampp/share/doc/freetds-0.63/reference/a00338.html -#opt/lampp/share/doc/freetds-0.63/reference/a00339.html -#opt/lampp/share/doc/freetds-0.63/reference/a00340.html -#opt/lampp/share/doc/freetds-0.63/reference/a00341.html -#opt/lampp/share/doc/freetds-0.63/reference/a00342.html -#opt/lampp/share/doc/freetds-0.63/reference/a00343.html -#opt/lampp/share/doc/freetds-0.63/reference/a00344.html -#opt/lampp/share/doc/freetds-0.63/reference/a00345.html -#opt/lampp/share/doc/freetds-0.63/reference/a00346.html -#opt/lampp/share/doc/freetds-0.63/reference/a00347.html -#opt/lampp/share/doc/freetds-0.63/reference/a00348.html -#opt/lampp/share/doc/freetds-0.63/reference/a00349.html -#opt/lampp/share/doc/freetds-0.63/reference/a00350.html -#opt/lampp/share/doc/freetds-0.63/reference/a00351.html -#opt/lampp/share/doc/freetds-0.63/reference/a00352.html -#opt/lampp/share/doc/freetds-0.63/reference/a00353.html -#opt/lampp/share/doc/freetds-0.63/reference/a00354.html -#opt/lampp/share/doc/freetds-0.63/reference/a00356.html -#opt/lampp/share/doc/freetds-0.63/reference/a00358.html -#opt/lampp/share/doc/freetds-0.63/reference/a00359.html -#opt/lampp/share/doc/freetds-0.63/reference/a00360.html -#opt/lampp/share/doc/freetds-0.63/reference/a00361.html -#opt/lampp/share/doc/freetds-0.63/reference/a00362.html -#opt/lampp/share/doc/freetds-0.63/reference/a00363.html -#opt/lampp/share/doc/freetds-0.63/reference/a00364.html -#opt/lampp/share/doc/freetds-0.63/reference/a00365.html -#opt/lampp/share/doc/freetds-0.63/reference/a00366.html -#opt/lampp/share/doc/freetds-0.63/reference/a00367.html -#opt/lampp/share/doc/freetds-0.63/reference/a00368.html -#opt/lampp/share/doc/freetds-0.63/reference/a00369.html -#opt/lampp/share/doc/freetds-0.63/reference/a00370.html -#opt/lampp/share/doc/freetds-0.63/reference/a00371.html -#opt/lampp/share/doc/freetds-0.63/reference/a00372.html -#opt/lampp/share/doc/freetds-0.63/reference/a00373.html -#opt/lampp/share/doc/freetds-0.63/reference/a00374.html -#opt/lampp/share/doc/freetds-0.63/reference/a00375.html -#opt/lampp/share/doc/freetds-0.63/reference/a00376.html -#opt/lampp/share/doc/freetds-0.63/reference/a00377.html -#opt/lampp/share/doc/freetds-0.63/reference/a00378.html -#opt/lampp/share/doc/freetds-0.63/reference/a00379.html -#opt/lampp/share/doc/freetds-0.63/reference/a00380.html -#opt/lampp/share/doc/freetds-0.63/reference/a00381.html -#opt/lampp/share/doc/freetds-0.63/reference/a00382.html -#opt/lampp/share/doc/freetds-0.63/reference/a00383.html -#opt/lampp/share/doc/freetds-0.63/reference/a00384.html -#opt/lampp/share/doc/freetds-0.63/reference/a00385.html -#opt/lampp/share/doc/freetds-0.63/reference/a00386.html -#opt/lampp/share/doc/freetds-0.63/reference/a00387.html -#opt/lampp/share/doc/freetds-0.63/reference/a00388.html -#opt/lampp/share/doc/freetds-0.63/reference/a00389.html -#opt/lampp/share/doc/freetds-0.63/reference/a00391.html -#opt/lampp/share/doc/freetds-0.63/reference/a00393.html -#opt/lampp/share/doc/freetds-0.63/reference/a00394.html -#opt/lampp/share/doc/freetds-0.63/reference/a00395.html -#opt/lampp/share/doc/freetds-0.63/reference/a00396.html -#opt/lampp/share/doc/freetds-0.63/reference/a00397.html -#opt/lampp/share/doc/freetds-0.63/reference/a00398.html -#opt/lampp/share/doc/freetds-0.63/reference/a00399.html -#opt/lampp/share/doc/freetds-0.63/reference/annotated.html -#opt/lampp/share/doc/freetds-0.63/reference/bug.html -#opt/lampp/share/doc/freetds-0.63/reference/doxygen.css -#opt/lampp/share/doc/freetds-0.63/reference/doxygen.png -#opt/lampp/share/doc/freetds-0.63/reference/files.html -#opt/lampp/share/doc/freetds-0.63/reference/functions.html -#opt/lampp/share/doc/freetds-0.63/reference/globals.html -#opt/lampp/share/doc/freetds-0.63/reference/index.html -#opt/lampp/share/doc/freetds-0.63/reference/modules.html -#opt/lampp/share/doc/freetds-0.63/reference/pages.html -#opt/lampp/share/doc/freetds-0.63/reference/todo.html -#opt/lampp/share/doc/freetds-0.63/userguide -#opt/lampp/share/doc/freetds-0.63/userguide/about.htm -#opt/lampp/share/doc/freetds-0.63/userguide/aboutunicode.htm -#opt/lampp/share/doc/freetds-0.63/userguide/acknowledgments.htm -#opt/lampp/share/doc/freetds-0.63/userguide/advocacy.htm -#opt/lampp/share/doc/freetds-0.63/userguide/apireference.htm -#opt/lampp/share/doc/freetds-0.63/userguide/appendmode.htm -#opt/lampp/share/doc/freetds-0.63/userguide/askingforhelp.htm -#opt/lampp/share/doc/freetds-0.63/userguide/build.htm -#opt/lampp/share/doc/freetds-0.63/userguide/choosingtdsprotocol.htm -#opt/lampp/share/doc/freetds-0.63/userguide/config.htm -#opt/lampp/share/doc/freetds-0.63/userguide/configs.htm -#opt/lampp/share/doc/freetds-0.63/userguide/configurations.htm -#opt/lampp/share/doc/freetds-0.63/userguide/confirminstall.htm -#opt/lampp/share/doc/freetds-0.63/userguide/contrib.htm -#opt/lampp/share/doc/freetds-0.63/userguide/contributors.htm -#opt/lampp/share/doc/freetds-0.63/userguide/ctlib.api.summary.htm -#opt/lampp/share/doc/freetds-0.63/userguide/dblib.api.summary.htm -#opt/lampp/share/doc/freetds-0.63/userguide/domains.htm -#opt/lampp/share/doc/freetds-0.63/userguide/dsnless.htm -#opt/lampp/share/doc/freetds-0.63/userguide/envvar.htm -#opt/lampp/share/doc/freetds-0.63/userguide/freetdsconf.htm -#opt/lampp/share/doc/freetds-0.63/userguide/freetdshistory.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-1.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-10.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-11.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-2.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-3.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-4.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-5.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-6.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-7.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-8.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl-9.htm -#opt/lampp/share/doc/freetds-0.63/userguide/gfdl.htm -#opt/lampp/share/doc/freetds-0.63/userguide/help.htm -#opt/lampp/share/doc/freetds-0.63/userguide/index.htm -#opt/lampp/share/doc/freetds-0.63/userguide/index.html -#opt/lampp/share/doc/freetds-0.63/userguide/install.htm -#opt/lampp/share/doc/freetds-0.63/userguide/interfacesfile.htm -#opt/lampp/share/doc/freetds-0.63/userguide/interfacesformat.htm -#opt/lampp/share/doc/freetds-0.63/userguide/interfaceslocation.htm -#opt/lampp/share/doc/freetds-0.63/userguide/interfacespurpose.htm -#opt/lampp/share/doc/freetds-0.63/userguide/iso8859.htm -#opt/lampp/share/doc/freetds-0.63/userguide/locales.htm -#opt/lampp/share/doc/freetds-0.63/userguide/logging.htm -#opt/lampp/share/doc/freetds-0.63/userguide/mailinglist.htm -#opt/lampp/share/doc/freetds-0.63/userguide/nonwestern.htm -#opt/lampp/share/doc/freetds-0.63/userguide/odbc.api.summary.htm -#opt/lampp/share/doc/freetds-0.63/userguide/odbcconnattr.htm -#opt/lampp/share/doc/freetds-0.63/userguide/odbcdiagnose.htm -#opt/lampp/share/doc/freetds-0.63/userguide/odbcinionly.htm -#opt/lampp/share/doc/freetds-0.63/userguide/odbcombo.htm -#opt/lampp/share/doc/freetds-0.63/userguide/osissues.htm -#opt/lampp/share/doc/freetds-0.63/userguide/packages.htm -#opt/lampp/share/doc/freetds-0.63/userguide/pagenodata.htm -#opt/lampp/share/doc/freetds-0.63/userguide/perl.htm -#opt/lampp/share/doc/freetds-0.63/userguide/php.htm -#opt/lampp/share/doc/freetds-0.63/userguide/prepodbc.htm -#opt/lampp/share/doc/freetds-0.63/userguide/programming.htm -#opt/lampp/share/doc/freetds-0.63/userguide/projects.htm -#opt/lampp/share/doc/freetds-0.63/userguide/python.htm -#opt/lampp/share/doc/freetds-0.63/userguide/samplecode.htm -#opt/lampp/share/doc/freetds-0.63/userguide/seemtooslow.htm -#opt/lampp/share/doc/freetds-0.63/userguide/serverthere.htm -#opt/lampp/share/doc/freetds-0.63/userguide/software.htm -#opt/lampp/share/doc/freetds-0.63/userguide/stunnel.htm -#opt/lampp/share/doc/freetds-0.63/userguide/sybsql.htm -#opt/lampp/share/doc/freetds-0.63/userguide/tdshistory.htm -#opt/lampp/share/doc/freetds-0.63/userguide/tdspool.htm -#opt/lampp/share/doc/freetds-0.63/userguide/troubleshooting.htm -#opt/lampp/share/doc/freetds-0.63/userguide/unicode.htm -#opt/lampp/share/doc/freetds-0.63/userguide/unicodefreetds.htm -#opt/lampp/share/doc/freetds-0.63/userguide/unicodegoodbad.htm -#opt/lampp/share/doc/freetds-0.63/userguide/unicodeutf.htm -#opt/lampp/share/doc/freetds-0.63/userguide/what.htm -#opt/lampp/share/doc/libxml2-2.6.11 -#opt/lampp/share/doc/libxml2-2.6.11/Copyright -#opt/lampp/share/doc/libxml2-2.6.11/examples -#opt/lampp/share/doc/libxml2-2.6.11/examples/testHTML.c -#opt/lampp/share/doc/libxml2-2.6.11/examples/testSAX.c -#opt/lampp/share/doc/libxml2-2.6.11/examples/testXPath.c -#opt/lampp/share/doc/libxml2-2.6.11/examples/xmllint.c -#opt/lampp/share/doc/libxml2-2.6.11/html -#opt/lampp/share/doc/libxml2-2.6.11/html/DOM.gif -#opt/lampp/share/doc/libxml2-2.6.11/html/FAQ.html -#opt/lampp/share/doc/libxml2-2.6.11/html/Libxml2-Logo-180x168.gif -#opt/lampp/share/doc/libxml2-2.6.11/html/Libxml2-Logo-90x34.gif -#opt/lampp/share/doc/libxml2-2.6.11/html/encoding.html -#opt/lampp/share/doc/libxml2-2.6.11/html/examples.xml -#opt/lampp/share/doc/libxml2-2.6.11/html/examples.xsl -#opt/lampp/share/doc/libxml2-2.6.11/html/html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/book1.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/home.png -#opt/lampp/share/doc/libxml2-2.6.11/html/html/index.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/left.png -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-DOCBparser.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-HTMLparser.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-HTMLtree.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-SAX.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-SAX2.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-c14n.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-catalog.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-chvalid.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-debugXML.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-dict.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-encoding.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-entities.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-globals.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-hash.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-lib.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-list.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-nanoftp.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-nanohttp.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-parser.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-parserInternals.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-pattern.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-relaxng.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-schemasInternals.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-threads.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-tree.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-uri.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-valid.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xinclude.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xlink.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlIO.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlautomata.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlerror.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlexports.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlmemory.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlreader.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlregexp.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlsave.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlschemas.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlschemastypes.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlstring.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlunicode.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlversion.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xmlwriter.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xpath.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xpathInternals.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/libxml-xpointer.html -#opt/lampp/share/doc/libxml2-2.6.11/html/html/right.png -#opt/lampp/share/doc/libxml2-2.6.11/html/html/up.png -#opt/lampp/share/doc/libxml2-2.6.11/html/io1.c -#opt/lampp/share/doc/libxml2-2.6.11/html/io1.res -#opt/lampp/share/doc/libxml2-2.6.11/html/io2.c -#opt/lampp/share/doc/libxml2-2.6.11/html/io2.res -#opt/lampp/share/doc/libxml2-2.6.11/html/libxml.gif -#opt/lampp/share/doc/libxml2-2.6.11/html/parse1.c -#opt/lampp/share/doc/libxml2-2.6.11/html/parse2.c -#opt/lampp/share/doc/libxml2-2.6.11/html/parse3.c -#opt/lampp/share/doc/libxml2-2.6.11/html/parse4.c -#opt/lampp/share/doc/libxml2-2.6.11/html/reader1.c -#opt/lampp/share/doc/libxml2-2.6.11/html/reader1.res -#opt/lampp/share/doc/libxml2-2.6.11/html/reader2.c -#opt/lampp/share/doc/libxml2-2.6.11/html/reader3.c -#opt/lampp/share/doc/libxml2-2.6.11/html/reader3.res -#opt/lampp/share/doc/libxml2-2.6.11/html/redhat.gif -#opt/lampp/share/doc/libxml2-2.6.11/html/smallfootonly.gif -#opt/lampp/share/doc/libxml2-2.6.11/html/structure.gif -#opt/lampp/share/doc/libxml2-2.6.11/html/test1.xml -#opt/lampp/share/doc/libxml2-2.6.11/html/test2.xml -#opt/lampp/share/doc/libxml2-2.6.11/html/test3.xml -#opt/lampp/share/doc/libxml2-2.6.11/html/testWriter.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tree1.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tree1.res -#opt/lampp/share/doc/libxml2-2.6.11/html/tree2.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tree2.res -#opt/lampp/share/doc/libxml2-2.6.11/html/tst.xml -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/apa.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/apb.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/apc.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/apd.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ape.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/apf.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/apg.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/aph.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/api.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ar01s02.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ar01s03.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ar01s04.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ar01s05.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ar01s06.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ar01s07.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ar01s08.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ar01s09.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/blank.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/1.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/10.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/2.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/3.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/4.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/5.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/6.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/7.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/8.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/callouts/9.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/caution.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/draft.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/home.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/important.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/next.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/note.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/prev.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/tip.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/toc-blank.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/toc-minus.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/toc-plus.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/up.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/images/warning.png -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/includeaddattribute.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/includeaddkeyword.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/includeconvert.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/includegetattribute.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/includekeyword.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/includexpath.c -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/index.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/ix01.html -#opt/lampp/share/doc/libxml2-2.6.11/html/tutorial/xmltutorial.pdf -#opt/lampp/share/doc/libxml2-2.6.11/html/w3c.png -#opt/lampp/share/doc/libxml2-2.6.11/html/writer.xml -#opt/lampp/share/doc/libxml2-2.6.11/html/xml.html -#opt/lampp/share/doc/libxml2-2.6.11/html/xpath1.c -#opt/lampp/share/doc/libxml2-2.6.11/html/xpath1.res -#opt/lampp/share/doc/libxml2-2.6.11/html/xpath2.c -#opt/lampp/share/doc/libxml2-2.6.11/html/xpath2.res -#opt/lampp/share/doc/libxslt-1.1.8 -#opt/lampp/share/doc/libxslt-1.1.8/html -#opt/lampp/share/doc/libxslt-1.1.8/html/API.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk0.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk1.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk2.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk3.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk4.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk5.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk6.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk7.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk8.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIchunk9.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIconstructors.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIfiles.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIfunctions.html -#opt/lampp/share/doc/libxslt-1.1.8/html/APIsymbols.html -#opt/lampp/share/doc/libxslt-1.1.8/html/EXSLT -#opt/lampp/share/doc/libxslt-1.1.8/html/EXSLT/exslt.html -#opt/lampp/share/doc/libxslt-1.1.8/html/FAQ.html -#opt/lampp/share/doc/libxslt-1.1.8/html/Libxslt-Logo-180x168.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/Libxslt-Logo-90x34.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/bugs.html -#opt/lampp/share/doc/libxslt-1.1.8/html/contexts.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/contribs.html -#opt/lampp/share/doc/libxslt-1.1.8/html/docbook.html -#opt/lampp/share/doc/libxslt-1.1.8/html/docs.html -#opt/lampp/share/doc/libxslt-1.1.8/html/downloads.html -#opt/lampp/share/doc/libxslt-1.1.8/html/extensions.html -#opt/lampp/share/doc/libxslt-1.1.8/html/help.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/book1.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/home.png -#opt/lampp/share/doc/libxslt-1.1.8/html/html/index.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/left.png -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-attributes.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-documents.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-extensions.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-extra.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-functions.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-imports.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-keys.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-lib.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-namespaces.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-numbersInternals.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-pattern.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-preproc.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-security.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-templates.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-transform.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-variables.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-xslt.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-xsltInternals.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-xsltexports.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/libxslt-xsltutils.html -#opt/lampp/share/doc/libxslt-1.1.8/html/html/right.png -#opt/lampp/share/doc/libxslt-1.1.8/html/html/up.png -#opt/lampp/share/doc/libxslt-1.1.8/html/index.html -#opt/lampp/share/doc/libxslt-1.1.8/html/internals.html -#opt/lampp/share/doc/libxslt-1.1.8/html/intro.html -#opt/lampp/share/doc/libxslt-1.1.8/html/news.html -#opt/lampp/share/doc/libxslt-1.1.8/html/node.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/object.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/processing.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/python.html -#opt/lampp/share/doc/libxslt-1.1.8/html/redhat.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/smallfootonly.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/stylesheet.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/templates.gif -#opt/lampp/share/doc/libxslt-1.1.8/html/tutorial -#opt/lampp/share/doc/libxslt-1.1.8/html/tutorial/libxslt_tutorial.c -#opt/lampp/share/doc/libxslt-1.1.8/html/tutorial/libxslttutorial.html -#opt/lampp/share/doc/libxslt-1.1.8/html/tutorial/libxslttutorial.xml -#opt/lampp/share/doc/libxslt-1.1.8/html/xslt.html -#opt/lampp/share/doc/libxslt-1.1.8/html/xsltproc.html -#opt/lampp/share/doc/libxslt-1.1.8/html/xsltproc2.html -opt/lampp/share/gettext -opt/lampp/share/gettext/ABOUT-NLS -opt/lampp/share/gettext/archive.tar.gz -opt/lampp/share/gettext/config.rpath -opt/lampp/share/gettext/gettext.h -opt/lampp/share/gettext/intl -opt/lampp/share/gettext/intl/COPYING.LIB-2.0 -opt/lampp/share/gettext/intl/COPYING.LIB-2.1 -opt/lampp/share/gettext/intl/ChangeLog -opt/lampp/share/gettext/intl/Makefile.in -opt/lampp/share/gettext/intl/VERSION -opt/lampp/share/gettext/intl/bindtextdom.c -opt/lampp/share/gettext/intl/config.charset -opt/lampp/share/gettext/intl/dcgettext.c -opt/lampp/share/gettext/intl/dcigettext.c -opt/lampp/share/gettext/intl/dcngettext.c -opt/lampp/share/gettext/intl/dgettext.c -opt/lampp/share/gettext/intl/dngettext.c -opt/lampp/share/gettext/intl/eval-plural.h -opt/lampp/share/gettext/intl/explodename.c -opt/lampp/share/gettext/intl/finddomain.c -opt/lampp/share/gettext/intl/gettext.c -opt/lampp/share/gettext/intl/gettextP.h -opt/lampp/share/gettext/intl/gmo.h -opt/lampp/share/gettext/intl/hash-string.h -opt/lampp/share/gettext/intl/intl-compat.c -opt/lampp/share/gettext/intl/l10nflist.c -opt/lampp/share/gettext/intl/libgnuintl.h -opt/lampp/share/gettext/intl/loadinfo.h -opt/lampp/share/gettext/intl/loadmsgcat.c -opt/lampp/share/gettext/intl/localcharset.c -opt/lampp/share/gettext/intl/locale.alias -opt/lampp/share/gettext/intl/localealias.c -opt/lampp/share/gettext/intl/localename.c -opt/lampp/share/gettext/intl/ngettext.c -opt/lampp/share/gettext/intl/os2compat.c -opt/lampp/share/gettext/intl/os2compat.h -opt/lampp/share/gettext/intl/osdep.c -opt/lampp/share/gettext/intl/plural-exp.c -opt/lampp/share/gettext/intl/plural-exp.h -opt/lampp/share/gettext/intl/plural.c -opt/lampp/share/gettext/intl/plural.y -opt/lampp/share/gettext/intl/ref-add.sin -opt/lampp/share/gettext/intl/ref-del.sin -opt/lampp/share/gettext/intl/textdomain.c -opt/lampp/share/gettext/mkinstalldirs -opt/lampp/share/gettext/msgunfmt.tcl -opt/lampp/share/gettext/po -opt/lampp/share/gettext/po/Makefile.in.in -opt/lampp/share/gettext/po/Makevars -opt/lampp/share/gettext/po/Rules-quot -opt/lampp/share/gettext/po/boldquot.sed -opt/lampp/share/gettext/po/en@boldquot.header -opt/lampp/share/gettext/po/en@quot.header -opt/lampp/share/gettext/po/insert-header.sin -opt/lampp/share/gettext/po/quot.sed -opt/lampp/share/gettext/po/remove-potcdate.sin -opt/lampp/share/gettext/projects -opt/lampp/share/gettext/projects/GNOME -opt/lampp/share/gettext/projects/GNOME/team-address -opt/lampp/share/gettext/projects/GNOME/teams.html -opt/lampp/share/gettext/projects/GNOME/teams.url -opt/lampp/share/gettext/projects/GNOME/trigger -opt/lampp/share/gettext/projects/KDE -opt/lampp/share/gettext/projects/KDE/team-address -opt/lampp/share/gettext/projects/KDE/teams.html -opt/lampp/share/gettext/projects/KDE/teams.url -opt/lampp/share/gettext/projects/KDE/trigger -opt/lampp/share/gettext/projects/TP -opt/lampp/share/gettext/projects/TP/team-address -opt/lampp/share/gettext/projects/TP/teams.html -opt/lampp/share/gettext/projects/TP/teams.url -opt/lampp/share/gettext/projects/TP/trigger -opt/lampp/share/gettext/projects/index -opt/lampp/share/gettext/projects/team-address -opt/lampp/share/lampp -opt/lampp/share/lampp/activatephp -opt/lampp/share/lampp/addons -opt/lampp/share/lampp/alladdons -opt/lampp/share/lampp/backup -opt/lampp/share/lampp/backup.head -opt/lampp/share/lampp/checkall -opt/lampp/share/lampp/checkapache -opt/lampp/share/lampp/checkftppassword -opt/lampp/share/lampp/checkmysql -opt/lampp/share/lampp/checkmysqlport -opt/lampp/share/lampp/checkpmamysqluser -opt/lampp/share/lampp/configures.tar.gz -opt/lampp/share/lampp/crypt -opt/lampp/share/lampp/daemon -opt/lampp/share/lampp/diagnose -opt/lampp/share/lampp/fixscoreboard -opt/lampp/share/lampp/lampplib -opt/lampp/share/lampp/nogroupcheck -opt/lampp/share/lampp/oci8install -opt/lampp/share/lampp/phpstatus -opt/lampp/share/lampp/public.pem -opt/lampp/share/lampp/selinux -opt/lampp/share/lampp/status -opt/lampp/share/lampp/statusraw -opt/lampp/share/lampp/updatemysqltables -opt/lampp/share/lampp/wizard.php -opt/lampp/share/locale -opt/lampp/share/locale/be -opt/lampp/share/locale/be/LC_MESSAGES -opt/lampp/share/locale/be/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/ca -opt/lampp/share/locale/ca/LC_MESSAGES -opt/lampp/share/locale/ca/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/cs -opt/lampp/share/locale/cs/LC_MESSAGES -opt/lampp/share/locale/cs/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/da -opt/lampp/share/locale/da/LC_MESSAGES -opt/lampp/share/locale/da/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/de -opt/lampp/share/locale/de/LC_MESSAGES -opt/lampp/share/locale/de/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/el -opt/lampp/share/locale/el/LC_MESSAGES -opt/lampp/share/locale/el/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/en@boldquot -opt/lampp/share/locale/en@boldquot/LC_MESSAGES -opt/lampp/share/locale/en@boldquot/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/en@quot -opt/lampp/share/locale/en@quot/LC_MESSAGES -opt/lampp/share/locale/en@quot/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/eo -opt/lampp/share/locale/eo/LC_MESSAGES -opt/lampp/share/locale/es -opt/lampp/share/locale/es/LC_MESSAGES -opt/lampp/share/locale/es/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/et -opt/lampp/share/locale/et/LC_MESSAGES -opt/lampp/share/locale/et/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/fi -opt/lampp/share/locale/fi/LC_MESSAGES -opt/lampp/share/locale/fi/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/fr -opt/lampp/share/locale/fr/LC_MESSAGES -opt/lampp/share/locale/fr/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/ga -opt/lampp/share/locale/ga/LC_MESSAGES -opt/lampp/share/locale/gl -opt/lampp/share/locale/gl/LC_MESSAGES -opt/lampp/share/locale/gl/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/hr -opt/lampp/share/locale/hr/LC_MESSAGES -opt/lampp/share/locale/hu -opt/lampp/share/locale/hu/LC_MESSAGES -opt/lampp/share/locale/id -opt/lampp/share/locale/id/LC_MESSAGES -opt/lampp/share/locale/id/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/it -opt/lampp/share/locale/it/LC_MESSAGES -opt/lampp/share/locale/it/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/ja -opt/lampp/share/locale/ja/LC_MESSAGES -opt/lampp/share/locale/ja/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/ko -opt/lampp/share/locale/ko/LC_MESSAGES -opt/lampp/share/locale/ko/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/locale.alias -opt/lampp/share/locale/nl -opt/lampp/share/locale/nl/LC_MESSAGES -opt/lampp/share/locale/nl/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/nn -opt/lampp/share/locale/nn/LC_MESSAGES -opt/lampp/share/locale/nn/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/no -opt/lampp/share/locale/no/LC_MESSAGES -opt/lampp/share/locale/no/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/pl -opt/lampp/share/locale/pl/LC_MESSAGES -opt/lampp/share/locale/pl/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/pt -opt/lampp/share/locale/pt/LC_MESSAGES -opt/lampp/share/locale/pt/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/pt_BR -opt/lampp/share/locale/pt_BR/LC_MESSAGES -opt/lampp/share/locale/pt_BR/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/ro -opt/lampp/share/locale/ro/LC_MESSAGES -opt/lampp/share/locale/ru -opt/lampp/share/locale/ru/LC_MESSAGES -opt/lampp/share/locale/ru/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/sk -opt/lampp/share/locale/sk/LC_MESSAGES -opt/lampp/share/locale/sk/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/sl -opt/lampp/share/locale/sl/LC_MESSAGES -opt/lampp/share/locale/sl/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/sv -opt/lampp/share/locale/sv/LC_MESSAGES -opt/lampp/share/locale/sv/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/tr -opt/lampp/share/locale/tr/LC_MESSAGES -opt/lampp/share/locale/tr/LC_MESSAGES/gettext.mo -opt/lampp/share/locale/uk -opt/lampp/share/locale/uk/LC_MESSAGES -opt/lampp/share/locale/zh_TW -opt/lampp/share/locale/zh_TW/LC_MESSAGES -opt/lampp/share/locale/zh_TW/LC_MESSAGES/gettext.mo -#opt/lampp/share/man -#opt/lampp/share/man/man1 -#opt/lampp/share/man/man3 -#opt/lampp/share/man/man3/zlib.3 -opt/lampp/share/mysql -opt/lampp/share/mysql/binary-configure -opt/lampp/share/mysql/charsets -opt/lampp/share/mysql/charsets/Index -opt/lampp/share/mysql/charsets/Index.xml -opt/lampp/share/mysql/charsets/README -opt/lampp/share/mysql/charsets/armscii8.xml -opt/lampp/share/mysql/charsets/ascii.xml -opt/lampp/share/mysql/charsets/cp1250.xml -opt/lampp/share/mysql/charsets/cp1251.conf -opt/lampp/share/mysql/charsets/cp1251.xml -opt/lampp/share/mysql/charsets/cp1256.xml -opt/lampp/share/mysql/charsets/cp1257.conf -opt/lampp/share/mysql/charsets/cp1257.xml -opt/lampp/share/mysql/charsets/cp850.xml -opt/lampp/share/mysql/charsets/cp852.xml -opt/lampp/share/mysql/charsets/cp866.xml -opt/lampp/share/mysql/charsets/croat.conf -opt/lampp/share/mysql/charsets/danish.conf -opt/lampp/share/mysql/charsets/dec8.conf -opt/lampp/share/mysql/charsets/dec8.xml -opt/lampp/share/mysql/charsets/dos.conf -opt/lampp/share/mysql/charsets/estonia.conf -opt/lampp/share/mysql/charsets/geostd8.xml -opt/lampp/share/mysql/charsets/german1.conf -opt/lampp/share/mysql/charsets/greek.conf -opt/lampp/share/mysql/charsets/greek.xml -opt/lampp/share/mysql/charsets/hebrew.conf -opt/lampp/share/mysql/charsets/hebrew.xml -opt/lampp/share/mysql/charsets/hp8.conf -opt/lampp/share/mysql/charsets/hp8.xml -opt/lampp/share/mysql/charsets/hungarian.conf -opt/lampp/share/mysql/charsets/keybcs2.xml -opt/lampp/share/mysql/charsets/koi8_ru.conf -opt/lampp/share/mysql/charsets/koi8_ukr.conf -opt/lampp/share/mysql/charsets/koi8r.xml -opt/lampp/share/mysql/charsets/koi8u.xml -opt/lampp/share/mysql/charsets/latin1.conf -opt/lampp/share/mysql/charsets/latin1.xml -opt/lampp/share/mysql/charsets/latin2.conf -opt/lampp/share/mysql/charsets/latin2.xml -opt/lampp/share/mysql/charsets/latin5.conf -opt/lampp/share/mysql/charsets/latin5.xml -opt/lampp/share/mysql/charsets/latin7.xml -opt/lampp/share/mysql/charsets/macce.xml -opt/lampp/share/mysql/charsets/macroman.xml -opt/lampp/share/mysql/charsets/swe7.conf -opt/lampp/share/mysql/charsets/swe7.xml -opt/lampp/share/mysql/charsets/usa7.conf -opt/lampp/share/mysql/charsets/win1250.conf -opt/lampp/share/mysql/charsets/win1251.conf -opt/lampp/share/mysql/charsets/win1251ukr.conf -opt/lampp/share/mysql/czech -opt/lampp/share/mysql/czech/errmsg.sys -opt/lampp/share/mysql/czech/errmsg.txt -opt/lampp/share/mysql/danish -opt/lampp/share/mysql/danish/errmsg.sys -opt/lampp/share/mysql/danish/errmsg.txt -opt/lampp/share/mysql/dutch -opt/lampp/share/mysql/dutch/errmsg.sys -opt/lampp/share/mysql/dutch/errmsg.txt -opt/lampp/share/mysql/english -opt/lampp/share/mysql/english/errmsg.sys -opt/lampp/share/mysql/english/errmsg.txt -opt/lampp/share/mysql/errmsg.txt -opt/lampp/share/mysql/estonian -opt/lampp/share/mysql/estonian/errmsg.sys -opt/lampp/share/mysql/estonian/errmsg.txt -opt/lampp/share/mysql/fill_help_tables.sql -opt/lampp/share/mysql/french -opt/lampp/share/mysql/french/errmsg.sys -opt/lampp/share/mysql/french/errmsg.txt -opt/lampp/share/mysql/german -opt/lampp/share/mysql/german/errmsg.sys -opt/lampp/share/mysql/german/errmsg.txt -opt/lampp/share/mysql/greek -opt/lampp/share/mysql/greek/errmsg.sys -opt/lampp/share/mysql/greek/errmsg.txt -opt/lampp/share/mysql/hungarian -opt/lampp/share/mysql/hungarian/errmsg.sys -opt/lampp/share/mysql/hungarian/errmsg.txt -opt/lampp/share/mysql/italian -opt/lampp/share/mysql/italian/errmsg.sys -opt/lampp/share/mysql/italian/errmsg.txt -opt/lampp/share/mysql/japanese -opt/lampp/share/mysql/japanese/errmsg.sys -opt/lampp/share/mysql/japanese/errmsg.txt -opt/lampp/share/mysql/korean -opt/lampp/share/mysql/korean/errmsg.sys -opt/lampp/share/mysql/korean/errmsg.txt -opt/lampp/share/mysql/mi_test_all -opt/lampp/share/mysql/mi_test_all.res -opt/lampp/share/mysql/my-huge.cnf -opt/lampp/share/mysql/my-innodb-heavy-4G.cnf -opt/lampp/share/mysql/my-large.cnf -opt/lampp/share/mysql/my-medium.cnf -opt/lampp/share/mysql/my-small.cnf -opt/lampp/share/mysql/mysql-log-rotate -opt/lampp/share/mysql/mysql-test -opt/lampp/share/mysql/mysql-test/README -opt/lampp/share/mysql/mysql-test/cacert.pem -opt/lampp/share/mysql/mysql-test/client-cert.pem -opt/lampp/share/mysql/mysql-test/client-key.pem -opt/lampp/share/mysql/mysql-test/include -opt/lampp/share/mysql/mysql-test/include/big_test.inc -opt/lampp/share/mysql/mysql-test/include/check_var_limit.inc -opt/lampp/share/mysql/mysql-test/include/common-tests.inc -opt/lampp/share/mysql/mysql-test/include/ctype_common.inc -opt/lampp/share/mysql/mysql-test/include/ctype_filesort.inc -opt/lampp/share/mysql/mysql-test/include/ctype_innodb_like.inc -opt/lampp/share/mysql/mysql-test/include/ctype_like_escape.inc -opt/lampp/share/mysql/mysql-test/include/endspace.inc -opt/lampp/share/mysql/mysql-test/include/federated.inc -opt/lampp/share/mysql/mysql-test/include/federated_cleanup.inc -opt/lampp/share/mysql/mysql-test/include/get_binlog_dump_thread_id.inc -opt/lampp/share/mysql/mysql-test/include/gis_generic.inc -opt/lampp/share/mysql/mysql-test/include/have_archive.inc -opt/lampp/share/mysql/mysql-test/include/have_bdb.inc -opt/lampp/share/mysql/mysql-test/include/have_big5.inc -opt/lampp/share/mysql/mysql-test/include/have_blackhole.inc -opt/lampp/share/mysql/mysql-test/include/have_compress.inc -opt/lampp/share/mysql/mysql-test/include/have_cp1250_ch.inc -opt/lampp/share/mysql/mysql-test/include/have_cp932.inc -opt/lampp/share/mysql/mysql-test/include/have_crypt.inc -opt/lampp/share/mysql/mysql-test/include/have_csv.inc -opt/lampp/share/mysql/mysql-test/include/have_debug.inc -opt/lampp/share/mysql/mysql-test/include/have_eucjpms.inc -opt/lampp/share/mysql/mysql-test/include/have_euckr.inc -opt/lampp/share/mysql/mysql-test/include/have_exampledb.inc -opt/lampp/share/mysql/mysql-test/include/have_federated_db.inc -opt/lampp/share/mysql/mysql-test/include/have_gb2312.inc -opt/lampp/share/mysql/mysql-test/include/have_gbk.inc -opt/lampp/share/mysql/mysql-test/include/have_geometry.inc -opt/lampp/share/mysql/mysql-test/include/have_innodb.inc -opt/lampp/share/mysql/mysql-test/include/have_latin2_ch.inc -opt/lampp/share/mysql/mysql-test/include/have_lowercase0.inc -opt/lampp/share/mysql/mysql-test/include/have_multi_ndb.inc -opt/lampp/share/mysql/mysql-test/include/have_ndb.inc -opt/lampp/share/mysql/mysql-test/include/have_openssl.inc -opt/lampp/share/mysql/mysql-test/include/have_outfile.inc -opt/lampp/share/mysql/mysql-test/include/have_query_cache.inc -opt/lampp/share/mysql/mysql-test/include/have_sjis.inc -opt/lampp/share/mysql/mysql-test/include/have_tis620.inc -opt/lampp/share/mysql/mysql-test/include/have_ucs2.inc -opt/lampp/share/mysql/mysql-test/include/have_udf.inc -opt/lampp/share/mysql/mysql-test/include/have_ujis.inc -opt/lampp/share/mysql/mysql-test/include/im_check_os.inc -opt/lampp/share/mysql/mysql-test/include/is_debug_build.inc -opt/lampp/share/mysql/mysql-test/include/master-slave.inc -opt/lampp/share/mysql/mysql-test/include/mysqltest-x.inc -opt/lampp/share/mysql/mysql-test/include/mysqltest_while.inc -opt/lampp/share/mysql/mysql-test/include/ndb_default_cluster.inc -opt/lampp/share/mysql/mysql-test/include/not_embedded.inc -opt/lampp/share/mysql/mysql-test/include/not_openssl.inc -opt/lampp/share/mysql/mysql-test/include/not_windows.inc -opt/lampp/share/mysql/mysql-test/include/ps_conv.inc -opt/lampp/share/mysql/mysql-test/include/ps_create.inc -opt/lampp/share/mysql/mysql-test/include/ps_modify.inc -opt/lampp/share/mysql/mysql-test/include/ps_modify1.inc -opt/lampp/share/mysql/mysql-test/include/ps_query.inc -opt/lampp/share/mysql/mysql-test/include/ps_renew.inc -opt/lampp/share/mysql/mysql-test/include/rpl_stmt_seq.inc -opt/lampp/share/mysql/mysql-test/include/show_msg.inc -opt/lampp/share/mysql/mysql-test/include/show_msg80.inc -opt/lampp/share/mysql/mysql-test/include/sourced.inc -opt/lampp/share/mysql/mysql-test/include/sourced1.inc -opt/lampp/share/mysql/mysql-test/include/sp-vars.inc -opt/lampp/share/mysql/mysql-test/include/system_db_struct.inc -opt/lampp/share/mysql/mysql-test/include/test_outfile.inc -opt/lampp/share/mysql/mysql-test/include/testdb_only.inc -opt/lampp/share/mysql/mysql-test/include/varchar.inc -opt/lampp/share/mysql/mysql-test/include/wait_slave_status.inc -opt/lampp/share/mysql/mysql-test/include/windows.inc -opt/lampp/share/mysql/mysql-test/install_test_db -opt/lampp/share/mysql/mysql-test/lib -opt/lampp/share/mysql/mysql-test/lib/init_db.sql -opt/lampp/share/mysql/mysql-test/lib/mtr_cases.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_diff.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_gcov.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_gprof.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_io.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_match.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_misc.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_process.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_report.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_stress.pl -opt/lampp/share/mysql/mysql-test/lib/mtr_timer.pl -opt/lampp/share/mysql/mysql-test/mysql-test-run -opt/lampp/share/mysql/mysql-test/mysql-test-run.pl -opt/lampp/share/mysql/mysql-test/r -opt/lampp/share/mysql/mysql-test/r/alias.result -opt/lampp/share/mysql/mysql-test/r/alter_table.result -opt/lampp/share/mysql/mysql-test/r/analyse.result -opt/lampp/share/mysql/mysql-test/r/analyze.result -opt/lampp/share/mysql/mysql-test/r/ansi.result -opt/lampp/share/mysql/mysql-test/r/archive.result -opt/lampp/share/mysql/mysql-test/r/archive_gis.result -opt/lampp/share/mysql/mysql-test/r/auto_increment.result -opt/lampp/share/mysql/mysql-test/r/backup.result -opt/lampp/share/mysql/mysql-test/r/bdb-alter-table-1.result -opt/lampp/share/mysql/mysql-test/r/bdb-alter-table-2.result -opt/lampp/share/mysql/mysql-test/r/bdb-crash.result -opt/lampp/share/mysql/mysql-test/r/bdb-deadlock.result -opt/lampp/share/mysql/mysql-test/r/bdb.result -opt/lampp/share/mysql/mysql-test/r/bdb_cache.result -opt/lampp/share/mysql/mysql-test/r/bdb_gis.result -opt/lampp/share/mysql/mysql-test/r/bench_count_distinct.result -opt/lampp/share/mysql/mysql-test/r/big_test.require -opt/lampp/share/mysql/mysql-test/r/bigint.result -opt/lampp/share/mysql/mysql-test/r/binary.result -opt/lampp/share/mysql/mysql-test/r/binlog.result -opt/lampp/share/mysql/mysql-test/r/blackhole.result -opt/lampp/share/mysql/mysql-test/r/bool.result -opt/lampp/share/mysql/mysql-test/r/bulk_replace.result -opt/lampp/share/mysql/mysql-test/r/case.result -opt/lampp/share/mysql/mysql-test/r/cast.result -opt/lampp/share/mysql/mysql-test/r/check.result -opt/lampp/share/mysql/mysql-test/r/check_var_limit.require -opt/lampp/share/mysql/mysql-test/r/client_xml.result -opt/lampp/share/mysql/mysql-test/r/comments.result -opt/lampp/share/mysql/mysql-test/r/compare.result -opt/lampp/share/mysql/mysql-test/r/compress.result -opt/lampp/share/mysql/mysql-test/r/connect.result -opt/lampp/share/mysql/mysql-test/r/consistent_snapshot.result -opt/lampp/share/mysql/mysql-test/r/constraints.result -opt/lampp/share/mysql/mysql-test/r/count_distinct.result -opt/lampp/share/mysql/mysql-test/r/count_distinct2.result -opt/lampp/share/mysql/mysql-test/r/count_distinct3.result -opt/lampp/share/mysql/mysql-test/r/create.result -opt/lampp/share/mysql/mysql-test/r/create_select_tmp.result -opt/lampp/share/mysql/mysql-test/r/csv.result -opt/lampp/share/mysql/mysql-test/r/ctype_big5.result -opt/lampp/share/mysql/mysql-test/r/ctype_collate.result -opt/lampp/share/mysql/mysql-test/r/ctype_cp1250_ch.result -opt/lampp/share/mysql/mysql-test/r/ctype_cp1251.result -opt/lampp/share/mysql/mysql-test/r/ctype_cp932.result -opt/lampp/share/mysql/mysql-test/r/ctype_cp932_binlog.result -opt/lampp/share/mysql/mysql-test/r/ctype_cp932_notembedded.result -opt/lampp/share/mysql/mysql-test/r/ctype_create.result -opt/lampp/share/mysql/mysql-test/r/ctype_eucjpms.result -opt/lampp/share/mysql/mysql-test/r/ctype_euckr.result -opt/lampp/share/mysql/mysql-test/r/ctype_gb2312.result -opt/lampp/share/mysql/mysql-test/r/ctype_gbk.result -opt/lampp/share/mysql/mysql-test/r/ctype_latin1.result -opt/lampp/share/mysql/mysql-test/r/ctype_latin1_de.result -opt/lampp/share/mysql/mysql-test/r/ctype_latin2.result -opt/lampp/share/mysql/mysql-test/r/ctype_latin2_ch.result -opt/lampp/share/mysql/mysql-test/r/ctype_many.result -opt/lampp/share/mysql/mysql-test/r/ctype_mb.result -opt/lampp/share/mysql/mysql-test/r/ctype_recoding.result -opt/lampp/share/mysql/mysql-test/r/ctype_sjis.result -opt/lampp/share/mysql/mysql-test/r/ctype_tis620.result -opt/lampp/share/mysql/mysql-test/r/ctype_uca.result -opt/lampp/share/mysql/mysql-test/r/ctype_ucs.result -opt/lampp/share/mysql/mysql-test/r/ctype_ucs2_def.result -opt/lampp/share/mysql/mysql-test/r/ctype_ucs_binlog.result -opt/lampp/share/mysql/mysql-test/r/ctype_ujis.result -opt/lampp/share/mysql/mysql-test/r/ctype_utf8.result -opt/lampp/share/mysql/mysql-test/r/date_formats.result -opt/lampp/share/mysql/mysql-test/r/default.result -opt/lampp/share/mysql/mysql-test/r/delayed.result -opt/lampp/share/mysql/mysql-test/r/delete.result -opt/lampp/share/mysql/mysql-test/r/derived.result -opt/lampp/share/mysql/mysql-test/r/dirty_close.result -opt/lampp/share/mysql/mysql-test/r/distinct.result -opt/lampp/share/mysql/mysql-test/r/drop.result -opt/lampp/share/mysql/mysql-test/r/drop_temp_table.result -opt/lampp/share/mysql/mysql-test/r/empty_table.result -opt/lampp/share/mysql/mysql-test/r/endspace.result -opt/lampp/share/mysql/mysql-test/r/errors.result -opt/lampp/share/mysql/mysql-test/r/exampledb.result -opt/lampp/share/mysql/mysql-test/r/explain.result -opt/lampp/share/mysql/mysql-test/r/federated.result -opt/lampp/share/mysql/mysql-test/r/federated_archive.result -opt/lampp/share/mysql/mysql-test/r/federated_bug_13118.result -opt/lampp/share/mysql/mysql-test/r/flush.result -opt/lampp/share/mysql/mysql-test/r/flush_block_commit.result -opt/lampp/share/mysql/mysql-test/r/flush_read_lock_kill.result -opt/lampp/share/mysql/mysql-test/r/flush_table.result -opt/lampp/share/mysql/mysql-test/r/foreign_key.result -opt/lampp/share/mysql/mysql-test/r/fulltext.result -opt/lampp/share/mysql/mysql-test/r/fulltext2.result -opt/lampp/share/mysql/mysql-test/r/fulltext_cache.result -opt/lampp/share/mysql/mysql-test/r/fulltext_distinct.result -opt/lampp/share/mysql/mysql-test/r/fulltext_left_join.result -opt/lampp/share/mysql/mysql-test/r/fulltext_multi.result -opt/lampp/share/mysql/mysql-test/r/fulltext_order_by.result -opt/lampp/share/mysql/mysql-test/r/fulltext_update.result -opt/lampp/share/mysql/mysql-test/r/fulltext_var.result -opt/lampp/share/mysql/mysql-test/r/func_compress.result -opt/lampp/share/mysql/mysql-test/r/func_concat.result -opt/lampp/share/mysql/mysql-test/r/func_crypt.result -opt/lampp/share/mysql/mysql-test/r/func_date_add.result -opt/lampp/share/mysql/mysql-test/r/func_default.result -opt/lampp/share/mysql/mysql-test/r/func_des_encrypt.result -opt/lampp/share/mysql/mysql-test/r/func_encrypt.result -opt/lampp/share/mysql/mysql-test/r/func_encrypt_nossl.result -opt/lampp/share/mysql/mysql-test/r/func_equal.result -opt/lampp/share/mysql/mysql-test/r/func_gconcat.result -opt/lampp/share/mysql/mysql-test/r/func_group.result -opt/lampp/share/mysql/mysql-test/r/func_if.result -opt/lampp/share/mysql/mysql-test/r/func_in.result -opt/lampp/share/mysql/mysql-test/r/func_isnull.result -opt/lampp/share/mysql/mysql-test/r/func_like.result -opt/lampp/share/mysql/mysql-test/r/func_math.result -opt/lampp/share/mysql/mysql-test/r/func_misc.result -opt/lampp/share/mysql/mysql-test/r/func_op.result -opt/lampp/share/mysql/mysql-test/r/func_regexp.result -opt/lampp/share/mysql/mysql-test/r/func_sapdb.result -opt/lampp/share/mysql/mysql-test/r/func_set.result -opt/lampp/share/mysql/mysql-test/r/func_str.result -opt/lampp/share/mysql/mysql-test/r/func_system.result -opt/lampp/share/mysql/mysql-test/r/func_test.result -opt/lampp/share/mysql/mysql-test/r/func_time.result -opt/lampp/share/mysql/mysql-test/r/func_timestamp.result -opt/lampp/share/mysql/mysql-test/r/gcc296.result -opt/lampp/share/mysql/mysql-test/r/gis-rtree.result -opt/lampp/share/mysql/mysql-test/r/gis.result -opt/lampp/share/mysql/mysql-test/r/grant.result -opt/lampp/share/mysql/mysql-test/r/grant2.result -opt/lampp/share/mysql/mysql-test/r/grant3.result -opt/lampp/share/mysql/mysql-test/r/grant_cache.result -opt/lampp/share/mysql/mysql-test/r/greedy_optimizer.result -opt/lampp/share/mysql/mysql-test/r/group_by.result -opt/lampp/share/mysql/mysql-test/r/group_min_max.result -opt/lampp/share/mysql/mysql-test/r/handler.result -opt/lampp/share/mysql/mysql-test/r/have_archive.require -opt/lampp/share/mysql/mysql-test/r/have_bdb.require -opt/lampp/share/mysql/mysql-test/r/have_big5.require -opt/lampp/share/mysql/mysql-test/r/have_blackhole.require -opt/lampp/share/mysql/mysql-test/r/have_compress.require -opt/lampp/share/mysql/mysql-test/r/have_cp1250_ch.require -opt/lampp/share/mysql/mysql-test/r/have_cp932.require -opt/lampp/share/mysql/mysql-test/r/have_crypt.require -opt/lampp/share/mysql/mysql-test/r/have_csv.require -opt/lampp/share/mysql/mysql-test/r/have_debug.require -opt/lampp/share/mysql/mysql-test/r/have_eucjpms.require -opt/lampp/share/mysql/mysql-test/r/have_euckr.require -opt/lampp/share/mysql/mysql-test/r/have_exampledb.require -opt/lampp/share/mysql/mysql-test/r/have_federated_db.require -opt/lampp/share/mysql/mysql-test/r/have_gb2312.require -opt/lampp/share/mysql/mysql-test/r/have_gbk.require -opt/lampp/share/mysql/mysql-test/r/have_geometry.require -opt/lampp/share/mysql/mysql-test/r/have_innodb.require -opt/lampp/share/mysql/mysql-test/r/have_latin2_ch.require -opt/lampp/share/mysql/mysql-test/r/have_met_timezone.require -opt/lampp/share/mysql/mysql-test/r/have_moscow_leap_timezone.require -opt/lampp/share/mysql/mysql-test/r/have_ndb.require -opt/lampp/share/mysql/mysql-test/r/have_openssl.require -opt/lampp/share/mysql/mysql-test/r/have_outfile.require -opt/lampp/share/mysql/mysql-test/r/have_query_cache.require -opt/lampp/share/mysql/mysql-test/r/have_raid.require -opt/lampp/share/mysql/mysql-test/r/have_sjis.require -opt/lampp/share/mysql/mysql-test/r/have_symlink.require -opt/lampp/share/mysql/mysql-test/r/have_tis620.require -opt/lampp/share/mysql/mysql-test/r/have_ucs2.require -opt/lampp/share/mysql/mysql-test/r/have_udf.require -opt/lampp/share/mysql/mysql-test/r/have_ujis.require -opt/lampp/share/mysql/mysql-test/r/having.result -opt/lampp/share/mysql/mysql-test/r/heap.result -opt/lampp/share/mysql/mysql-test/r/heap_auto_increment.result -opt/lampp/share/mysql/mysql-test/r/heap_btree.result -opt/lampp/share/mysql/mysql-test/r/heap_hash.result -opt/lampp/share/mysql/mysql-test/r/help.result -opt/lampp/share/mysql/mysql-test/r/im_daemon_life_cycle.result -opt/lampp/share/mysql/mysql-test/r/im_life_cycle.result -opt/lampp/share/mysql/mysql-test/r/im_options_set.result -opt/lampp/share/mysql/mysql-test/r/im_options_unset.result -opt/lampp/share/mysql/mysql-test/r/im_utils.result -opt/lampp/share/mysql/mysql-test/r/index_merge.result -opt/lampp/share/mysql/mysql-test/r/index_merge_bdb.result -opt/lampp/share/mysql/mysql-test/r/index_merge_innodb.result -opt/lampp/share/mysql/mysql-test/r/index_merge_innodb2.result -opt/lampp/share/mysql/mysql-test/r/index_merge_ror.result -opt/lampp/share/mysql/mysql-test/r/index_merge_ror_cpk.result -opt/lampp/share/mysql/mysql-test/r/information_schema.result -opt/lampp/share/mysql/mysql-test/r/information_schema_db.result -opt/lampp/share/mysql/mysql-test/r/information_schema_inno.result -opt/lampp/share/mysql/mysql-test/r/init_connect.result -opt/lampp/share/mysql/mysql-test/r/init_file.result -opt/lampp/share/mysql/mysql-test/r/innodb-big.result -opt/lampp/share/mysql/mysql-test/r/innodb-deadlock.result -opt/lampp/share/mysql/mysql-test/r/innodb-lock.result -opt/lampp/share/mysql/mysql-test/r/innodb-replace.result -opt/lampp/share/mysql/mysql-test/r/innodb.result -opt/lampp/share/mysql/mysql-test/r/innodb_cache.result -opt/lampp/share/mysql/mysql-test/r/innodb_gis.result -opt/lampp/share/mysql/mysql-test/r/innodb_handler.result -opt/lampp/share/mysql/mysql-test/r/innodb_mysql.result -opt/lampp/share/mysql/mysql-test/r/innodb_notembedded.result -opt/lampp/share/mysql/mysql-test/r/innodb_unsafe_binlog.result -opt/lampp/share/mysql/mysql-test/r/insert.result -opt/lampp/share/mysql/mysql-test/r/insert_select-binlog.result -opt/lampp/share/mysql/mysql-test/r/insert_select.result -opt/lampp/share/mysql/mysql-test/r/insert_update.result -opt/lampp/share/mysql/mysql-test/r/is_debug_build.require -opt/lampp/share/mysql/mysql-test/r/isam.result -opt/lampp/share/mysql/mysql-test/r/join.result -opt/lampp/share/mysql/mysql-test/r/join_crash.result -opt/lampp/share/mysql/mysql-test/r/join_nested.result -opt/lampp/share/mysql/mysql-test/r/join_outer.result -opt/lampp/share/mysql/mysql-test/r/key.result -opt/lampp/share/mysql/mysql-test/r/key_cache.result -opt/lampp/share/mysql/mysql-test/r/key_diff.result -opt/lampp/share/mysql/mysql-test/r/key_primary.result -opt/lampp/share/mysql/mysql-test/r/keywords.result -opt/lampp/share/mysql/mysql-test/r/kill.result -opt/lampp/share/mysql/mysql-test/r/limit.result -opt/lampp/share/mysql/mysql-test/r/loaddata.result -opt/lampp/share/mysql/mysql-test/r/lock.result -opt/lampp/share/mysql/mysql-test/r/lock_multi.result -opt/lampp/share/mysql/mysql-test/r/lock_tables_lost_commit.result -opt/lampp/share/mysql/mysql-test/r/lowercase0.require -opt/lampp/share/mysql/mysql-test/r/lowercase2.require -opt/lampp/share/mysql/mysql-test/r/lowercase_table.result -opt/lampp/share/mysql/mysql-test/r/lowercase_table2.result -opt/lampp/share/mysql/mysql-test/r/lowercase_table3.result -opt/lampp/share/mysql/mysql-test/r/lowercase_table_grant.result -opt/lampp/share/mysql/mysql-test/r/lowercase_table_qcache.result -opt/lampp/share/mysql/mysql-test/r/lowercase_view.result -opt/lampp/share/mysql/mysql-test/r/merge.result -opt/lampp/share/mysql/mysql-test/r/metadata.result -opt/lampp/share/mysql/mysql-test/r/mix_innodb_myisam_binlog.result -opt/lampp/share/mysql/mysql-test/r/multi_statement.result -opt/lampp/share/mysql/mysql-test/r/multi_update.result -opt/lampp/share/mysql/mysql-test/r/myisam-blob.result -opt/lampp/share/mysql/mysql-test/r/myisam.result -opt/lampp/share/mysql/mysql-test/r/mysql.result -opt/lampp/share/mysql/mysql-test/r/mysql_client_test.result -opt/lampp/share/mysql/mysql-test/r/mysql_protocols.result -opt/lampp/share/mysql/mysql-test/r/mysqlbinlog.result -opt/lampp/share/mysql/mysql-test/r/mysqlbinlog2.result -opt/lampp/share/mysql/mysql-test/r/mysqlcheck.result -opt/lampp/share/mysql/mysql-test/r/mysqldump-max.result -opt/lampp/share/mysql/mysql-test/r/mysqldump.result -opt/lampp/share/mysql/mysql-test/r/mysqlshow.result -opt/lampp/share/mysql/mysql-test/r/mysqltest.result -opt/lampp/share/mysql/mysql-test/r/ndb_alter_table.result -opt/lampp/share/mysql/mysql-test/r/ndb_alter_table2.result -opt/lampp/share/mysql/mysql-test/r/ndb_autodiscover.result -opt/lampp/share/mysql/mysql-test/r/ndb_autodiscover2.result -opt/lampp/share/mysql/mysql-test/r/ndb_basic.result -opt/lampp/share/mysql/mysql-test/r/ndb_bitfield.result -opt/lampp/share/mysql/mysql-test/r/ndb_blob.result -opt/lampp/share/mysql/mysql-test/r/ndb_cache.result -opt/lampp/share/mysql/mysql-test/r/ndb_cache2.result -opt/lampp/share/mysql/mysql-test/r/ndb_cache_multi.result -opt/lampp/share/mysql/mysql-test/r/ndb_cache_multi2.result -opt/lampp/share/mysql/mysql-test/r/ndb_charset.result -opt/lampp/share/mysql/mysql-test/r/ndb_condition_pushdown.result -opt/lampp/share/mysql/mysql-test/r/ndb_config.result -opt/lampp/share/mysql/mysql-test/r/ndb_database.result -opt/lampp/share/mysql/mysql-test/r/ndb_default_cluster.require -opt/lampp/share/mysql/mysql-test/r/ndb_gis.result -opt/lampp/share/mysql/mysql-test/r/ndb_grant.result -opt/lampp/share/mysql/mysql-test/r/ndb_index.result -opt/lampp/share/mysql/mysql-test/r/ndb_index_ordered.result -opt/lampp/share/mysql/mysql-test/r/ndb_index_unique.result -opt/lampp/share/mysql/mysql-test/r/ndb_insert.result -opt/lampp/share/mysql/mysql-test/r/ndb_limit.result -opt/lampp/share/mysql/mysql-test/r/ndb_load.result -opt/lampp/share/mysql/mysql-test/r/ndb_lock.result -opt/lampp/share/mysql/mysql-test/r/ndb_minmax.result -opt/lampp/share/mysql/mysql-test/r/ndb_multi.result -opt/lampp/share/mysql/mysql-test/r/ndb_read_multi_range.result -opt/lampp/share/mysql/mysql-test/r/ndb_replace.result -opt/lampp/share/mysql/mysql-test/r/ndb_restore.result -opt/lampp/share/mysql/mysql-test/r/ndb_subquery.result -opt/lampp/share/mysql/mysql-test/r/ndb_transaction.result -opt/lampp/share/mysql/mysql-test/r/ndb_truncate.result -opt/lampp/share/mysql/mysql-test/r/ndb_types.result -opt/lampp/share/mysql/mysql-test/r/ndb_update.result -opt/lampp/share/mysql/mysql-test/r/negation_elimination.result -opt/lampp/share/mysql/mysql-test/r/not_embedded.require -opt/lampp/share/mysql/mysql-test/r/not_embedded_server.result -opt/lampp/share/mysql/mysql-test/r/not_openssl.require -opt/lampp/share/mysql/mysql-test/r/null.result -opt/lampp/share/mysql/mysql-test/r/null_key.result -opt/lampp/share/mysql/mysql-test/r/odbc.result -opt/lampp/share/mysql/mysql-test/r/olap.result -opt/lampp/share/mysql/mysql-test/r/openssl_1.result -opt/lampp/share/mysql/mysql-test/r/openssl_2.result -opt/lampp/share/mysql/mysql-test/r/order_by.result -opt/lampp/share/mysql/mysql-test/r/order_fill_sortbuf.result -opt/lampp/share/mysql/mysql-test/r/outfile.result -opt/lampp/share/mysql/mysql-test/r/overflow.result -opt/lampp/share/mysql/mysql-test/r/packet.result -opt/lampp/share/mysql/mysql-test/r/preload.result -opt/lampp/share/mysql/mysql-test/r/ps.result -opt/lampp/share/mysql/mysql-test/r/ps_10nestset.result -opt/lampp/share/mysql/mysql-test/r/ps_11bugs.result -opt/lampp/share/mysql/mysql-test/r/ps_1general.result -opt/lampp/share/mysql/mysql-test/r/ps_2myisam.result -opt/lampp/share/mysql/mysql-test/r/ps_3innodb.result -opt/lampp/share/mysql/mysql-test/r/ps_4heap.result -opt/lampp/share/mysql/mysql-test/r/ps_5merge.result -opt/lampp/share/mysql/mysql-test/r/ps_6bdb.result -opt/lampp/share/mysql/mysql-test/r/ps_7ndb.result -opt/lampp/share/mysql/mysql-test/r/ps_grant.result -opt/lampp/share/mysql/mysql-test/r/query_cache.result -opt/lampp/share/mysql/mysql-test/r/query_cache_merge.result -opt/lampp/share/mysql/mysql-test/r/query_cache_notembedded.result -opt/lampp/share/mysql/mysql-test/r/raid.result -opt/lampp/share/mysql/mysql-test/r/range.result -opt/lampp/share/mysql/mysql-test/r/read_only.result -opt/lampp/share/mysql/mysql-test/r/rename.result -opt/lampp/share/mysql/mysql-test/r/repair.result -opt/lampp/share/mysql/mysql-test/r/replace.result -opt/lampp/share/mysql/mysql-test/r/rollback.result -opt/lampp/share/mysql/mysql-test/r/row.result -opt/lampp/share/mysql/mysql-test/r/rowid_order_bdb.result -opt/lampp/share/mysql/mysql-test/r/rowid_order_innodb.result -opt/lampp/share/mysql/mysql-test/r/rpl000001.result -opt/lampp/share/mysql/mysql-test/r/rpl000002.result -opt/lampp/share/mysql/mysql-test/r/rpl000004.result -opt/lampp/share/mysql/mysql-test/r/rpl000005.result -opt/lampp/share/mysql/mysql-test/r/rpl000006.result -opt/lampp/share/mysql/mysql-test/r/rpl000008.result -opt/lampp/share/mysql/mysql-test/r/rpl000009.result -opt/lampp/share/mysql/mysql-test/r/rpl000010.result -opt/lampp/share/mysql/mysql-test/r/rpl000011.result -opt/lampp/share/mysql/mysql-test/r/rpl000012.result -opt/lampp/share/mysql/mysql-test/r/rpl000013.result -opt/lampp/share/mysql/mysql-test/r/rpl000015.result -opt/lampp/share/mysql/mysql-test/r/rpl000017.result -opt/lampp/share/mysql/mysql-test/r/rpl000018.result -opt/lampp/share/mysql/mysql-test/r/rpl_EE_error.result -opt/lampp/share/mysql/mysql-test/r/rpl_alter.result -opt/lampp/share/mysql/mysql-test/r/rpl_auto_increment.result -opt/lampp/share/mysql/mysql-test/r/rpl_chain_temp_table.result -opt/lampp/share/mysql/mysql-test/r/rpl_change_master.result -opt/lampp/share/mysql/mysql-test/r/rpl_charset.result -opt/lampp/share/mysql/mysql-test/r/rpl_commit_after_flush.result -opt/lampp/share/mysql/mysql-test/r/rpl_create_database.result -opt/lampp/share/mysql/mysql-test/r/rpl_ddl.result -opt/lampp/share/mysql/mysql-test/r/rpl_deadlock.result -opt/lampp/share/mysql/mysql-test/r/rpl_delete_all.result -opt/lampp/share/mysql/mysql-test/r/rpl_do_grant.result -opt/lampp/share/mysql/mysql-test/r/rpl_drop.result -opt/lampp/share/mysql/mysql-test/r/rpl_drop_db.result -opt/lampp/share/mysql/mysql-test/r/rpl_drop_temp.result -opt/lampp/share/mysql/mysql-test/r/rpl_dual_pos_advance.result -opt/lampp/share/mysql/mysql-test/r/rpl_empty_master_crash.result -opt/lampp/share/mysql/mysql-test/r/rpl_error_ignored_table.result -opt/lampp/share/mysql/mysql-test/r/rpl_failed_optimize.result -opt/lampp/share/mysql/mysql-test/r/rpl_failsafe.result -opt/lampp/share/mysql/mysql-test/r/rpl_flush_log_loop.result -opt/lampp/share/mysql/mysql-test/r/rpl_flush_tables.result -opt/lampp/share/mysql/mysql-test/r/rpl_free_items.result -opt/lampp/share/mysql/mysql-test/r/rpl_get_lock.result -opt/lampp/share/mysql/mysql-test/r/rpl_heap.result -opt/lampp/share/mysql/mysql-test/r/rpl_ignore_grant.result -opt/lampp/share/mysql/mysql-test/r/rpl_ignore_revoke.result -opt/lampp/share/mysql/mysql-test/r/rpl_ignore_table.result -opt/lampp/share/mysql/mysql-test/r/rpl_init_slave.result -opt/lampp/share/mysql/mysql-test/r/rpl_innodb.result -opt/lampp/share/mysql/mysql-test/r/rpl_insert_id.result -opt/lampp/share/mysql/mysql-test/r/rpl_insert_ignore.result -opt/lampp/share/mysql/mysql-test/r/rpl_insert_select.result -opt/lampp/share/mysql/mysql-test/r/rpl_loaddata.result -opt/lampp/share/mysql/mysql-test/r/rpl_loaddata_rule_m.result -opt/lampp/share/mysql/mysql-test/r/rpl_loaddata_rule_s.result -opt/lampp/share/mysql/mysql-test/r/rpl_loaddatalocal.result -opt/lampp/share/mysql/mysql-test/r/rpl_log.result -opt/lampp/share/mysql/mysql-test/r/rpl_log_pos.result -opt/lampp/share/mysql/mysql-test/r/rpl_many_optimize.result -opt/lampp/share/mysql/mysql-test/r/rpl_master_pos_wait.result -opt/lampp/share/mysql/mysql-test/r/rpl_max_relay_size.result -opt/lampp/share/mysql/mysql-test/r/rpl_misc_functions.result -opt/lampp/share/mysql/mysql-test/r/rpl_multi_delete.result -opt/lampp/share/mysql/mysql-test/r/rpl_multi_delete2.result -opt/lampp/share/mysql/mysql-test/r/rpl_multi_query.result -opt/lampp/share/mysql/mysql-test/r/rpl_multi_update.result -opt/lampp/share/mysql/mysql-test/r/rpl_multi_update2.result -opt/lampp/share/mysql/mysql-test/r/rpl_multi_update3.result -opt/lampp/share/mysql/mysql-test/r/rpl_multi_update4.result -opt/lampp/share/mysql/mysql-test/r/rpl_mystery22.result -opt/lampp/share/mysql/mysql-test/r/rpl_openssl.result -opt/lampp/share/mysql/mysql-test/r/rpl_optimize.result -opt/lampp/share/mysql/mysql-test/r/rpl_ps.result -opt/lampp/share/mysql/mysql-test/r/rpl_redirect.result -opt/lampp/share/mysql/mysql-test/r/rpl_relayrotate.result -opt/lampp/share/mysql/mysql-test/r/rpl_relayspace.result -opt/lampp/share/mysql/mysql-test/r/rpl_replicate_do.result -opt/lampp/share/mysql/mysql-test/r/rpl_reset_slave.result -opt/lampp/share/mysql/mysql-test/r/rpl_rewrite_db.result -opt/lampp/share/mysql/mysql-test/r/rpl_rotate_logs.result -opt/lampp/share/mysql/mysql-test/r/rpl_server_id1.result -opt/lampp/share/mysql/mysql-test/r/rpl_server_id2.result -opt/lampp/share/mysql/mysql-test/r/rpl_session_var.result -opt/lampp/share/mysql/mysql-test/r/rpl_set_charset.result -opt/lampp/share/mysql/mysql-test/r/rpl_skip_error.result -opt/lampp/share/mysql/mysql-test/r/rpl_slave_status.result -opt/lampp/share/mysql/mysql-test/r/rpl_sp.result -opt/lampp/share/mysql/mysql-test/r/rpl_sp_effects.result -opt/lampp/share/mysql/mysql-test/r/rpl_sporadic_master.result -opt/lampp/share/mysql/mysql-test/r/rpl_start_stop_slave.result -opt/lampp/share/mysql/mysql-test/r/rpl_temporary.result -opt/lampp/share/mysql/mysql-test/r/rpl_timezone.result -opt/lampp/share/mysql/mysql-test/r/rpl_trigger.result -opt/lampp/share/mysql/mysql-test/r/rpl_trunc_temp.result -opt/lampp/share/mysql/mysql-test/r/rpl_until.result -opt/lampp/share/mysql/mysql-test/r/rpl_user_variables.result -opt/lampp/share/mysql/mysql-test/r/rpl_variables.result -opt/lampp/share/mysql/mysql-test/r/rpl_view.result -opt/lampp/share/mysql/mysql-test/r/schema.result -opt/lampp/share/mysql/mysql-test/r/select.result -opt/lampp/share/mysql/mysql-test/r/select_found.result -opt/lampp/share/mysql/mysql-test/r/select_safe.result -opt/lampp/share/mysql/mysql-test/r/server_id.require -opt/lampp/share/mysql/mysql-test/r/server_id1.require -opt/lampp/share/mysql/mysql-test/r/show_check.result -opt/lampp/share/mysql/mysql-test/r/skip_grants.result -opt/lampp/share/mysql/mysql-test/r/skip_name_resolve.result -opt/lampp/share/mysql/mysql-test/r/slave-running.result -opt/lampp/share/mysql/mysql-test/r/slave-stopped.result -opt/lampp/share/mysql/mysql-test/r/sp-big.result -opt/lampp/share/mysql/mysql-test/r/sp-code.result -opt/lampp/share/mysql/mysql-test/r/sp-destruct.result -opt/lampp/share/mysql/mysql-test/r/sp-dynamic.result -opt/lampp/share/mysql/mysql-test/r/sp-error.result -opt/lampp/share/mysql/mysql-test/r/sp-prelocking.result -opt/lampp/share/mysql/mysql-test/r/sp-security.result -opt/lampp/share/mysql/mysql-test/r/sp-threads.result -opt/lampp/share/mysql/mysql-test/r/sp-vars.result -opt/lampp/share/mysql/mysql-test/r/sp.result -opt/lampp/share/mysql/mysql-test/r/sp_notembedded.result -opt/lampp/share/mysql/mysql-test/r/sp_trans.result -opt/lampp/share/mysql/mysql-test/r/sql_mode.result -opt/lampp/share/mysql/mysql-test/r/ssl.result -opt/lampp/share/mysql/mysql-test/r/ssl_compress.result -opt/lampp/share/mysql/mysql-test/r/status.result -opt/lampp/share/mysql/mysql-test/r/strict.result -opt/lampp/share/mysql/mysql-test/r/subselect.result -opt/lampp/share/mysql/mysql-test/r/subselect2.result -opt/lampp/share/mysql/mysql-test/r/subselect_gis.result -opt/lampp/share/mysql/mysql-test/r/subselect_innodb.result -opt/lampp/share/mysql/mysql-test/r/subselect_notembedded.result -opt/lampp/share/mysql/mysql-test/r/sum_distinct-big.result -opt/lampp/share/mysql/mysql-test/r/sum_distinct.result -opt/lampp/share/mysql/mysql-test/r/symlink.result -opt/lampp/share/mysql/mysql-test/r/synchronization.result -opt/lampp/share/mysql/mysql-test/r/sysdate_is_now.result -opt/lampp/share/mysql/mysql-test/r/system_mysql_db.result -opt/lampp/share/mysql/mysql-test/r/system_mysql_db_refs.result -opt/lampp/share/mysql/mysql-test/r/tablelock.result -opt/lampp/share/mysql/mysql-test/r/temp_table.result -opt/lampp/share/mysql/mysql-test/r/testdb_only.require -opt/lampp/share/mysql/mysql-test/r/timezone.result -opt/lampp/share/mysql/mysql-test/r/timezone2.result -opt/lampp/share/mysql/mysql-test/r/timezone3.result -opt/lampp/share/mysql/mysql-test/r/timezone_grant.result -opt/lampp/share/mysql/mysql-test/r/trigger-compat.result -opt/lampp/share/mysql/mysql-test/r/trigger-grant.result -opt/lampp/share/mysql/mysql-test/r/trigger-trans.result -opt/lampp/share/mysql/mysql-test/r/trigger.result -opt/lampp/share/mysql/mysql-test/r/true.require -opt/lampp/share/mysql/mysql-test/r/truncate.result -opt/lampp/share/mysql/mysql-test/r/type_binary.result -opt/lampp/share/mysql/mysql-test/r/type_bit.result -opt/lampp/share/mysql/mysql-test/r/type_bit_innodb.result -opt/lampp/share/mysql/mysql-test/r/type_blob.result -opt/lampp/share/mysql/mysql-test/r/type_date.result -opt/lampp/share/mysql/mysql-test/r/type_datetime.result -opt/lampp/share/mysql/mysql-test/r/type_decimal.result -opt/lampp/share/mysql/mysql-test/r/type_enum.result -opt/lampp/share/mysql/mysql-test/r/type_float.result -opt/lampp/share/mysql/mysql-test/r/type_nchar.result -opt/lampp/share/mysql/mysql-test/r/type_newdecimal-big.result -opt/lampp/share/mysql/mysql-test/r/type_newdecimal.result -opt/lampp/share/mysql/mysql-test/r/type_ranges.result -opt/lampp/share/mysql/mysql-test/r/type_set.result -opt/lampp/share/mysql/mysql-test/r/type_time.result -opt/lampp/share/mysql/mysql-test/r/type_timestamp.result -opt/lampp/share/mysql/mysql-test/r/type_uint.result -opt/lampp/share/mysql/mysql-test/r/type_varchar.result -opt/lampp/share/mysql/mysql-test/r/type_year.result -opt/lampp/share/mysql/mysql-test/r/udf.result -opt/lampp/share/mysql/mysql-test/r/union.result -opt/lampp/share/mysql/mysql-test/r/update.result -opt/lampp/share/mysql/mysql-test/r/user_limits.result -opt/lampp/share/mysql/mysql-test/r/user_var-binlog.result -opt/lampp/share/mysql/mysql-test/r/user_var.result -opt/lampp/share/mysql/mysql-test/r/varbinary.result -opt/lampp/share/mysql/mysql-test/r/variables.result -opt/lampp/share/mysql/mysql-test/r/view.result -opt/lampp/share/mysql/mysql-test/r/view_grant.result -opt/lampp/share/mysql/mysql-test/r/view_query_cache.result -opt/lampp/share/mysql/mysql-test/r/wait_timeout.result -opt/lampp/share/mysql/mysql-test/r/warnings.result -opt/lampp/share/mysql/mysql-test/r/windows.result -opt/lampp/share/mysql/mysql-test/r/xa.result -opt/lampp/share/mysql/mysql-test/server-cert.pem -opt/lampp/share/mysql/mysql-test/server-key.pem -opt/lampp/share/mysql/mysql-test/std_data -opt/lampp/share/mysql/mysql-test/std_data/Moscow_leap -opt/lampp/share/mysql/mysql-test/std_data/bug16266.000001 -opt/lampp/share/mysql/mysql-test/std_data/cacert.pem -opt/lampp/share/mysql/mysql-test/std_data/client-cert.pem -opt/lampp/share/mysql/mysql-test/std_data/client-key.pem -opt/lampp/share/mysql/mysql-test/std_data/des_key_file -opt/lampp/share/mysql/mysql-test/std_data/init_file.dat -opt/lampp/share/mysql/mysql-test/std_data/loaddata1.dat -opt/lampp/share/mysql/mysql-test/std_data/loaddata2.dat -opt/lampp/share/mysql/mysql-test/std_data/loaddata3.dat -opt/lampp/share/mysql/mysql-test/std_data/loaddata4.dat -opt/lampp/share/mysql/mysql-test/std_data/loaddata5.dat -opt/lampp/share/mysql/mysql-test/std_data/loaddata_dq.dat -opt/lampp/share/mysql/mysql-test/std_data/loaddata_pair.dat -opt/lampp/share/mysql/mysql-test/std_data/master-bin.000001 -opt/lampp/share/mysql/mysql-test/std_data/ndb_config_mycnf1.cnf -opt/lampp/share/mysql/mysql-test/std_data/ndb_config_mycnf2.cnf -opt/lampp/share/mysql/mysql-test/std_data/rpl_loaddata.dat -opt/lampp/share/mysql/mysql-test/std_data/rpl_loaddata2.dat -opt/lampp/share/mysql/mysql-test/std_data/rpl_timezone.dat -opt/lampp/share/mysql/mysql-test/std_data/server-cert.pem -opt/lampp/share/mysql/mysql-test/std_data/server-key.pem -opt/lampp/share/mysql/mysql-test/std_data/trunc_binlog.000001 -opt/lampp/share/mysql/mysql-test/std_data/vchar.frm -opt/lampp/share/mysql/mysql-test/std_data/warnings_loaddata.dat -opt/lampp/share/mysql/mysql-test/std_data/words.dat -opt/lampp/share/mysql/mysql-test/t -opt/lampp/share/mysql/mysql-test/t/alias.test -opt/lampp/share/mysql/mysql-test/t/alter_table.test -opt/lampp/share/mysql/mysql-test/t/analyse.test -opt/lampp/share/mysql/mysql-test/t/analyze.test -opt/lampp/share/mysql/mysql-test/t/ansi.test -opt/lampp/share/mysql/mysql-test/t/archive.test -opt/lampp/share/mysql/mysql-test/t/archive_gis.test -opt/lampp/share/mysql/mysql-test/t/auto_increment.test -opt/lampp/share/mysql/mysql-test/t/backup-master.sh -opt/lampp/share/mysql/mysql-test/t/backup.test -opt/lampp/share/mysql/mysql-test/t/bdb-alter-table-1.test -opt/lampp/share/mysql/mysql-test/t/bdb-alter-table-2-master.opt -opt/lampp/share/mysql/mysql-test/t/bdb-alter-table-2.test -opt/lampp/share/mysql/mysql-test/t/bdb-crash.test -opt/lampp/share/mysql/mysql-test/t/bdb-deadlock.test -opt/lampp/share/mysql/mysql-test/t/bdb.test -opt/lampp/share/mysql/mysql-test/t/bdb_cache-master.opt -opt/lampp/share/mysql/mysql-test/t/bdb_cache.test -opt/lampp/share/mysql/mysql-test/t/bdb_gis.test -opt/lampp/share/mysql/mysql-test/t/bench_count_distinct.test -opt/lampp/share/mysql/mysql-test/t/bigint.test -opt/lampp/share/mysql/mysql-test/t/binary.test -opt/lampp/share/mysql/mysql-test/t/binlog-master.opt -opt/lampp/share/mysql/mysql-test/t/binlog.test -opt/lampp/share/mysql/mysql-test/t/blackhole.test -opt/lampp/share/mysql/mysql-test/t/bool.test -opt/lampp/share/mysql/mysql-test/t/bulk_replace.test -opt/lampp/share/mysql/mysql-test/t/case.test -opt/lampp/share/mysql/mysql-test/t/cast.test -opt/lampp/share/mysql/mysql-test/t/check.test -opt/lampp/share/mysql/mysql-test/t/client_xml.test -opt/lampp/share/mysql/mysql-test/t/comments.test -opt/lampp/share/mysql/mysql-test/t/compare.test -opt/lampp/share/mysql/mysql-test/t/compress.test -opt/lampp/share/mysql/mysql-test/t/connect.test -opt/lampp/share/mysql/mysql-test/t/consistent_snapshot.test -opt/lampp/share/mysql/mysql-test/t/constraints.test -opt/lampp/share/mysql/mysql-test/t/count_distinct.test -opt/lampp/share/mysql/mysql-test/t/count_distinct2-master.opt -opt/lampp/share/mysql/mysql-test/t/count_distinct2.test -opt/lampp/share/mysql/mysql-test/t/count_distinct3.test -opt/lampp/share/mysql/mysql-test/t/create.test -opt/lampp/share/mysql/mysql-test/t/create_select_tmp.test -opt/lampp/share/mysql/mysql-test/t/csv.test -opt/lampp/share/mysql/mysql-test/t/ctype_big5.test -opt/lampp/share/mysql/mysql-test/t/ctype_collate.test -opt/lampp/share/mysql/mysql-test/t/ctype_cp1250_ch.test -opt/lampp/share/mysql/mysql-test/t/ctype_cp1251.test -opt/lampp/share/mysql/mysql-test/t/ctype_cp932.test -opt/lampp/share/mysql/mysql-test/t/ctype_cp932_binlog.test -opt/lampp/share/mysql/mysql-test/t/ctype_cp932_notembedded.test -opt/lampp/share/mysql/mysql-test/t/ctype_create.test -opt/lampp/share/mysql/mysql-test/t/ctype_eucjpms.test -opt/lampp/share/mysql/mysql-test/t/ctype_euckr.test -opt/lampp/share/mysql/mysql-test/t/ctype_gb2312.test -opt/lampp/share/mysql/mysql-test/t/ctype_gbk.test -opt/lampp/share/mysql/mysql-test/t/ctype_latin1.test -opt/lampp/share/mysql/mysql-test/t/ctype_latin1_de-master.opt -opt/lampp/share/mysql/mysql-test/t/ctype_latin1_de.test -opt/lampp/share/mysql/mysql-test/t/ctype_latin2.test -opt/lampp/share/mysql/mysql-test/t/ctype_latin2_ch.test -opt/lampp/share/mysql/mysql-test/t/ctype_many.test -opt/lampp/share/mysql/mysql-test/t/ctype_mb.test -opt/lampp/share/mysql/mysql-test/t/ctype_recoding.test -opt/lampp/share/mysql/mysql-test/t/ctype_sjis.test -opt/lampp/share/mysql/mysql-test/t/ctype_tis620.test -opt/lampp/share/mysql/mysql-test/t/ctype_uca.test -opt/lampp/share/mysql/mysql-test/t/ctype_ucs.test -opt/lampp/share/mysql/mysql-test/t/ctype_ucs2_def-master.opt -opt/lampp/share/mysql/mysql-test/t/ctype_ucs2_def.test -opt/lampp/share/mysql/mysql-test/t/ctype_ucs_binlog.test -opt/lampp/share/mysql/mysql-test/t/ctype_ujis.test -opt/lampp/share/mysql/mysql-test/t/ctype_utf8.test -opt/lampp/share/mysql/mysql-test/t/date_formats-master.opt -opt/lampp/share/mysql/mysql-test/t/date_formats.test -opt/lampp/share/mysql/mysql-test/t/default.test -opt/lampp/share/mysql/mysql-test/t/delayed.test -opt/lampp/share/mysql/mysql-test/t/delete.test -opt/lampp/share/mysql/mysql-test/t/derived.test -opt/lampp/share/mysql/mysql-test/t/dirty_close.test -opt/lampp/share/mysql/mysql-test/t/disabled.def -opt/lampp/share/mysql/mysql-test/t/distinct.test -opt/lampp/share/mysql/mysql-test/t/drop.test -opt/lampp/share/mysql/mysql-test/t/drop_temp_table.test -opt/lampp/share/mysql/mysql-test/t/empty_table.test -opt/lampp/share/mysql/mysql-test/t/endspace.test -opt/lampp/share/mysql/mysql-test/t/errors.test -opt/lampp/share/mysql/mysql-test/t/exampledb.test -opt/lampp/share/mysql/mysql-test/t/explain.test -opt/lampp/share/mysql/mysql-test/t/federated.test -opt/lampp/share/mysql/mysql-test/t/federated_archive.test -opt/lampp/share/mysql/mysql-test/t/federated_bug_13118.test -opt/lampp/share/mysql/mysql-test/t/flush.test -opt/lampp/share/mysql/mysql-test/t/flush_block_commit.test -opt/lampp/share/mysql/mysql-test/t/flush_read_lock_kill-master.opt -opt/lampp/share/mysql/mysql-test/t/flush_read_lock_kill.test -opt/lampp/share/mysql/mysql-test/t/flush_table.test -opt/lampp/share/mysql/mysql-test/t/foreign_key.test -opt/lampp/share/mysql/mysql-test/t/fulltext.test -opt/lampp/share/mysql/mysql-test/t/fulltext2.test -opt/lampp/share/mysql/mysql-test/t/fulltext_cache.test -opt/lampp/share/mysql/mysql-test/t/fulltext_distinct.test -opt/lampp/share/mysql/mysql-test/t/fulltext_left_join.test -opt/lampp/share/mysql/mysql-test/t/fulltext_multi.test -opt/lampp/share/mysql/mysql-test/t/fulltext_order_by.test -opt/lampp/share/mysql/mysql-test/t/fulltext_update.test -opt/lampp/share/mysql/mysql-test/t/fulltext_var.test -opt/lampp/share/mysql/mysql-test/t/func_compress.test -opt/lampp/share/mysql/mysql-test/t/func_concat.test -opt/lampp/share/mysql/mysql-test/t/func_crypt.test -opt/lampp/share/mysql/mysql-test/t/func_date_add.test -opt/lampp/share/mysql/mysql-test/t/func_default.test -opt/lampp/share/mysql/mysql-test/t/func_des_encrypt.test -opt/lampp/share/mysql/mysql-test/t/func_encrypt-master.opt -opt/lampp/share/mysql/mysql-test/t/func_encrypt.test -opt/lampp/share/mysql/mysql-test/t/func_encrypt_nossl.test -opt/lampp/share/mysql/mysql-test/t/func_equal.test -opt/lampp/share/mysql/mysql-test/t/func_gconcat.test -opt/lampp/share/mysql/mysql-test/t/func_group.test -opt/lampp/share/mysql/mysql-test/t/func_if.test -opt/lampp/share/mysql/mysql-test/t/func_in.test -opt/lampp/share/mysql/mysql-test/t/func_isnull.test -opt/lampp/share/mysql/mysql-test/t/func_like.test -opt/lampp/share/mysql/mysql-test/t/func_math.test -opt/lampp/share/mysql/mysql-test/t/func_misc.test -opt/lampp/share/mysql/mysql-test/t/func_op.test -opt/lampp/share/mysql/mysql-test/t/func_regexp.test -opt/lampp/share/mysql/mysql-test/t/func_sapdb.test -opt/lampp/share/mysql/mysql-test/t/func_set.test -opt/lampp/share/mysql/mysql-test/t/func_str.test -opt/lampp/share/mysql/mysql-test/t/func_system.test -opt/lampp/share/mysql/mysql-test/t/func_test.test -opt/lampp/share/mysql/mysql-test/t/func_time.test -opt/lampp/share/mysql/mysql-test/t/func_timestamp.test -opt/lampp/share/mysql/mysql-test/t/gcc296.test -opt/lampp/share/mysql/mysql-test/t/gis-rtree.test -opt/lampp/share/mysql/mysql-test/t/gis.test -opt/lampp/share/mysql/mysql-test/t/grant.test -opt/lampp/share/mysql/mysql-test/t/grant2.test -opt/lampp/share/mysql/mysql-test/t/grant3-master.opt -opt/lampp/share/mysql/mysql-test/t/grant3.test -opt/lampp/share/mysql/mysql-test/t/grant_cache.test -opt/lampp/share/mysql/mysql-test/t/greedy_optimizer.test -opt/lampp/share/mysql/mysql-test/t/group_by.test -opt/lampp/share/mysql/mysql-test/t/group_min_max.test -opt/lampp/share/mysql/mysql-test/t/handler.test -opt/lampp/share/mysql/mysql-test/t/having.test -opt/lampp/share/mysql/mysql-test/t/heap.test -opt/lampp/share/mysql/mysql-test/t/heap_auto_increment.test -opt/lampp/share/mysql/mysql-test/t/heap_btree.test -opt/lampp/share/mysql/mysql-test/t/heap_hash.test -opt/lampp/share/mysql/mysql-test/t/help.test -opt/lampp/share/mysql/mysql-test/t/im_daemon_life_cycle-im.opt -opt/lampp/share/mysql/mysql-test/t/im_daemon_life_cycle.imtest -opt/lampp/share/mysql/mysql-test/t/im_life_cycle.imtest -opt/lampp/share/mysql/mysql-test/t/im_options_set.imtest -opt/lampp/share/mysql/mysql-test/t/im_options_unset.imtest -opt/lampp/share/mysql/mysql-test/t/im_utils.imtest -opt/lampp/share/mysql/mysql-test/t/index_merge.test -opt/lampp/share/mysql/mysql-test/t/index_merge_bdb.test -opt/lampp/share/mysql/mysql-test/t/index_merge_innodb.test -opt/lampp/share/mysql/mysql-test/t/index_merge_innodb2.test -opt/lampp/share/mysql/mysql-test/t/index_merge_ror.test -opt/lampp/share/mysql/mysql-test/t/index_merge_ror_cpk.test -opt/lampp/share/mysql/mysql-test/t/information_schema.test -opt/lampp/share/mysql/mysql-test/t/information_schema_db.test -opt/lampp/share/mysql/mysql-test/t/information_schema_inno.test -opt/lampp/share/mysql/mysql-test/t/init_connect-master.opt -opt/lampp/share/mysql/mysql-test/t/init_connect.test -opt/lampp/share/mysql/mysql-test/t/init_file-master.opt -opt/lampp/share/mysql/mysql-test/t/init_file.test -opt/lampp/share/mysql/mysql-test/t/innodb-big.test -opt/lampp/share/mysql/mysql-test/t/innodb-deadlock.test -opt/lampp/share/mysql/mysql-test/t/innodb-lock.test -opt/lampp/share/mysql/mysql-test/t/innodb-master.opt -opt/lampp/share/mysql/mysql-test/t/innodb-replace.test -opt/lampp/share/mysql/mysql-test/t/innodb.test -opt/lampp/share/mysql/mysql-test/t/innodb_cache-master.opt -opt/lampp/share/mysql/mysql-test/t/innodb_cache.test -opt/lampp/share/mysql/mysql-test/t/innodb_gis.test -opt/lampp/share/mysql/mysql-test/t/innodb_handler.test -opt/lampp/share/mysql/mysql-test/t/innodb_mysql.test -opt/lampp/share/mysql/mysql-test/t/innodb_notembedded.test -opt/lampp/share/mysql/mysql-test/t/innodb_unsafe_binlog-master.opt -opt/lampp/share/mysql/mysql-test/t/innodb_unsafe_binlog.test -opt/lampp/share/mysql/mysql-test/t/insert.test -opt/lampp/share/mysql/mysql-test/t/insert_select-binlog.test -opt/lampp/share/mysql/mysql-test/t/insert_select.test -opt/lampp/share/mysql/mysql-test/t/insert_update.test -opt/lampp/share/mysql/mysql-test/t/join.test -opt/lampp/share/mysql/mysql-test/t/join_crash.test -opt/lampp/share/mysql/mysql-test/t/join_nested.test -opt/lampp/share/mysql/mysql-test/t/join_outer.test -opt/lampp/share/mysql/mysql-test/t/key.test -opt/lampp/share/mysql/mysql-test/t/key_cache-master.opt -opt/lampp/share/mysql/mysql-test/t/key_cache.test -opt/lampp/share/mysql/mysql-test/t/key_diff.test -opt/lampp/share/mysql/mysql-test/t/key_primary.test -opt/lampp/share/mysql/mysql-test/t/keywords.test -opt/lampp/share/mysql/mysql-test/t/kill.test -opt/lampp/share/mysql/mysql-test/t/kill_n_check.sh -opt/lampp/share/mysql/mysql-test/t/limit.test -opt/lampp/share/mysql/mysql-test/t/loaddata.test -opt/lampp/share/mysql/mysql-test/t/lock.test -opt/lampp/share/mysql/mysql-test/t/lock_multi.test -opt/lampp/share/mysql/mysql-test/t/lock_tables_lost_commit-master.opt -opt/lampp/share/mysql/mysql-test/t/lock_tables_lost_commit.test -opt/lampp/share/mysql/mysql-test/t/lowercase_table-master.opt -opt/lampp/share/mysql/mysql-test/t/lowercase_table.test -opt/lampp/share/mysql/mysql-test/t/lowercase_table2.test -opt/lampp/share/mysql/mysql-test/t/lowercase_table3-master.opt -opt/lampp/share/mysql/mysql-test/t/lowercase_table3.test -opt/lampp/share/mysql/mysql-test/t/lowercase_table_grant-master.opt -opt/lampp/share/mysql/mysql-test/t/lowercase_table_grant.test -opt/lampp/share/mysql/mysql-test/t/lowercase_table_qcache-master.opt -opt/lampp/share/mysql/mysql-test/t/lowercase_table_qcache.test -opt/lampp/share/mysql/mysql-test/t/lowercase_view-master.opt -opt/lampp/share/mysql/mysql-test/t/lowercase_view.test -opt/lampp/share/mysql/mysql-test/t/merge.test -opt/lampp/share/mysql/mysql-test/t/metadata.test -opt/lampp/share/mysql/mysql-test/t/mix_innodb_myisam_binlog-master.opt -opt/lampp/share/mysql/mysql-test/t/mix_innodb_myisam_binlog.test -opt/lampp/share/mysql/mysql-test/t/multi_statement-master.opt -opt/lampp/share/mysql/mysql-test/t/multi_statement.test -opt/lampp/share/mysql/mysql-test/t/multi_update-master.opt -opt/lampp/share/mysql/mysql-test/t/multi_update.test -opt/lampp/share/mysql/mysql-test/t/myisam-blob-master.opt -opt/lampp/share/mysql/mysql-test/t/myisam-blob.test -opt/lampp/share/mysql/mysql-test/t/myisam.test -opt/lampp/share/mysql/mysql-test/t/mysql.test -opt/lampp/share/mysql/mysql-test/t/mysql_client_test.test -opt/lampp/share/mysql/mysql-test/t/mysql_delimiter.sql -opt/lampp/share/mysql/mysql-test/t/mysql_delimiter_source.sql -opt/lampp/share/mysql/mysql-test/t/mysql_protocols.test -opt/lampp/share/mysql/mysql-test/t/mysqlbinlog-master.opt -opt/lampp/share/mysql/mysql-test/t/mysqlbinlog.test -opt/lampp/share/mysql/mysql-test/t/mysqlbinlog2.test -opt/lampp/share/mysql/mysql-test/t/mysqlcheck.test -opt/lampp/share/mysql/mysql-test/t/mysqldump-max.test -opt/lampp/share/mysql/mysql-test/t/mysqldump.test -opt/lampp/share/mysql/mysql-test/t/mysqlshow.test -opt/lampp/share/mysql/mysql-test/t/mysqltest.test -opt/lampp/share/mysql/mysql-test/t/ndb_alter_table.test -opt/lampp/share/mysql/mysql-test/t/ndb_alter_table2.test -opt/lampp/share/mysql/mysql-test/t/ndb_autodiscover.test -opt/lampp/share/mysql/mysql-test/t/ndb_autodiscover2-master.opt -opt/lampp/share/mysql/mysql-test/t/ndb_autodiscover2.test -opt/lampp/share/mysql/mysql-test/t/ndb_basic.test -opt/lampp/share/mysql/mysql-test/t/ndb_bitfield.test -opt/lampp/share/mysql/mysql-test/t/ndb_blob.test -opt/lampp/share/mysql/mysql-test/t/ndb_cache.test -opt/lampp/share/mysql/mysql-test/t/ndb_cache2.test -opt/lampp/share/mysql/mysql-test/t/ndb_cache_multi.test -opt/lampp/share/mysql/mysql-test/t/ndb_cache_multi2.test -opt/lampp/share/mysql/mysql-test/t/ndb_charset.test -opt/lampp/share/mysql/mysql-test/t/ndb_condition_pushdown.test -opt/lampp/share/mysql/mysql-test/t/ndb_config.test -opt/lampp/share/mysql/mysql-test/t/ndb_database.test -opt/lampp/share/mysql/mysql-test/t/ndb_gis.test -opt/lampp/share/mysql/mysql-test/t/ndb_index.test -opt/lampp/share/mysql/mysql-test/t/ndb_index_ordered.test -opt/lampp/share/mysql/mysql-test/t/ndb_index_unique.test -opt/lampp/share/mysql/mysql-test/t/ndb_insert.test -opt/lampp/share/mysql/mysql-test/t/ndb_limit.test -opt/lampp/share/mysql/mysql-test/t/ndb_load.test -opt/lampp/share/mysql/mysql-test/t/ndb_lock.test -opt/lampp/share/mysql/mysql-test/t/ndb_minmax.test -opt/lampp/share/mysql/mysql-test/t/ndb_multi.test -opt/lampp/share/mysql/mysql-test/t/ndb_read_multi_range.test -opt/lampp/share/mysql/mysql-test/t/ndb_replace.test -opt/lampp/share/mysql/mysql-test/t/ndb_restore.test -opt/lampp/share/mysql/mysql-test/t/ndb_subquery.test -opt/lampp/share/mysql/mysql-test/t/ndb_transaction.test -opt/lampp/share/mysql/mysql-test/t/ndb_truncate.test -opt/lampp/share/mysql/mysql-test/t/ndb_types.test -opt/lampp/share/mysql/mysql-test/t/ndb_update.test -opt/lampp/share/mysql/mysql-test/t/negation_elimination.test -opt/lampp/share/mysql/mysql-test/t/not_embedded_server-master.opt -opt/lampp/share/mysql/mysql-test/t/not_embedded_server.test -opt/lampp/share/mysql/mysql-test/t/null.test -opt/lampp/share/mysql/mysql-test/t/null_key.test -opt/lampp/share/mysql/mysql-test/t/odbc.test -opt/lampp/share/mysql/mysql-test/t/olap.test -opt/lampp/share/mysql/mysql-test/t/openssl_1.test -opt/lampp/share/mysql/mysql-test/t/order_by.test -opt/lampp/share/mysql/mysql-test/t/order_fill_sortbuf-master.opt -opt/lampp/share/mysql/mysql-test/t/order_fill_sortbuf.test -opt/lampp/share/mysql/mysql-test/t/outfile.test -opt/lampp/share/mysql/mysql-test/t/overflow.test -opt/lampp/share/mysql/mysql-test/t/packet.test -opt/lampp/share/mysql/mysql-test/t/preload.test -opt/lampp/share/mysql/mysql-test/t/ps.test -opt/lampp/share/mysql/mysql-test/t/ps_10nestset.test -opt/lampp/share/mysql/mysql-test/t/ps_11bugs.test -opt/lampp/share/mysql/mysql-test/t/ps_1general.test -opt/lampp/share/mysql/mysql-test/t/ps_2myisam.test -opt/lampp/share/mysql/mysql-test/t/ps_3innodb.test -opt/lampp/share/mysql/mysql-test/t/ps_4heap.test -opt/lampp/share/mysql/mysql-test/t/ps_5merge.test -opt/lampp/share/mysql/mysql-test/t/ps_6bdb.test -opt/lampp/share/mysql/mysql-test/t/ps_7ndb.test -opt/lampp/share/mysql/mysql-test/t/ps_grant.test -opt/lampp/share/mysql/mysql-test/t/query_cache.test -opt/lampp/share/mysql/mysql-test/t/query_cache_merge.test -opt/lampp/share/mysql/mysql-test/t/query_cache_notembedded.test -opt/lampp/share/mysql/mysql-test/t/raid.test -opt/lampp/share/mysql/mysql-test/t/range.test -opt/lampp/share/mysql/mysql-test/t/read_only.test -opt/lampp/share/mysql/mysql-test/t/rename.test -opt/lampp/share/mysql/mysql-test/t/repair.test -opt/lampp/share/mysql/mysql-test/t/replace.test -opt/lampp/share/mysql/mysql-test/t/rollback.test -opt/lampp/share/mysql/mysql-test/t/row.test -opt/lampp/share/mysql/mysql-test/t/rowid_order_bdb.test -opt/lampp/share/mysql/mysql-test/t/rowid_order_innodb.test -opt/lampp/share/mysql/mysql-test/t/rpl000001-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl000001.test -opt/lampp/share/mysql/mysql-test/t/rpl000002.test -opt/lampp/share/mysql/mysql-test/t/rpl000004.test -opt/lampp/share/mysql/mysql-test/t/rpl000005.test -opt/lampp/share/mysql/mysql-test/t/rpl000006.test -opt/lampp/share/mysql/mysql-test/t/rpl000008-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl000008.test -opt/lampp/share/mysql/mysql-test/t/rpl000009-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl000009.test -opt/lampp/share/mysql/mysql-test/t/rpl000010-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl000010.test -opt/lampp/share/mysql/mysql-test/t/rpl000011.test -opt/lampp/share/mysql/mysql-test/t/rpl000012.test -opt/lampp/share/mysql/mysql-test/t/rpl000013-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl000013.test -opt/lampp/share/mysql/mysql-test/t/rpl000015-slave.sh -opt/lampp/share/mysql/mysql-test/t/rpl000015.slave-mi -opt/lampp/share/mysql/mysql-test/t/rpl000015.test -opt/lampp/share/mysql/mysql-test/t/rpl000017-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl000017-slave.sh -opt/lampp/share/mysql/mysql-test/t/rpl000017.test -opt/lampp/share/mysql/mysql-test/t/rpl000018-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl000018-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl000018.test -opt/lampp/share/mysql/mysql-test/t/rpl_EE_error.test -opt/lampp/share/mysql/mysql-test/t/rpl_alter.test -opt/lampp/share/mysql/mysql-test/t/rpl_auto_increment-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_auto_increment.test -opt/lampp/share/mysql/mysql-test/t/rpl_chain_temp_table.test -opt/lampp/share/mysql/mysql-test/t/rpl_change_master.test -opt/lampp/share/mysql/mysql-test/t/rpl_charset.test -opt/lampp/share/mysql/mysql-test/t/rpl_commit_after_flush.test -opt/lampp/share/mysql/mysql-test/t/rpl_create_database-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_create_database-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_create_database.test -opt/lampp/share/mysql/mysql-test/t/rpl_ddl.test -opt/lampp/share/mysql/mysql-test/t/rpl_deadlock-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_deadlock.test -opt/lampp/share/mysql/mysql-test/t/rpl_delete_all.test -opt/lampp/share/mysql/mysql-test/t/rpl_do_grant.test -opt/lampp/share/mysql/mysql-test/t/rpl_drop.test -opt/lampp/share/mysql/mysql-test/t/rpl_drop_db.test -opt/lampp/share/mysql/mysql-test/t/rpl_drop_temp-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_drop_temp.test -opt/lampp/share/mysql/mysql-test/t/rpl_dual_pos_advance-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_dual_pos_advance.test -opt/lampp/share/mysql/mysql-test/t/rpl_empty_master_crash.test -opt/lampp/share/mysql/mysql-test/t/rpl_error_ignored_table-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_error_ignored_table.test -opt/lampp/share/mysql/mysql-test/t/rpl_failed_optimize-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_failed_optimize.test -opt/lampp/share/mysql/mysql-test/t/rpl_failsafe.test -opt/lampp/share/mysql/mysql-test/t/rpl_flush_log_loop-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_flush_log_loop-master.sh -opt/lampp/share/mysql/mysql-test/t/rpl_flush_log_loop-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_flush_log_loop-slave.sh -opt/lampp/share/mysql/mysql-test/t/rpl_flush_log_loop.test -opt/lampp/share/mysql/mysql-test/t/rpl_flush_tables.test -opt/lampp/share/mysql/mysql-test/t/rpl_free_items-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_free_items.test -opt/lampp/share/mysql/mysql-test/t/rpl_get_lock.test -opt/lampp/share/mysql/mysql-test/t/rpl_heap.test -opt/lampp/share/mysql/mysql-test/t/rpl_ignore_grant-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_ignore_grant.test -opt/lampp/share/mysql/mysql-test/t/rpl_ignore_revoke-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_ignore_revoke.test -opt/lampp/share/mysql/mysql-test/t/rpl_ignore_table-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_ignore_table.test -opt/lampp/share/mysql/mysql-test/t/rpl_init_slave-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_init_slave.test -opt/lampp/share/mysql/mysql-test/t/rpl_innodb.test -opt/lampp/share/mysql/mysql-test/t/rpl_insert_id-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_insert_id.test -opt/lampp/share/mysql/mysql-test/t/rpl_insert_ignore-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_insert_ignore.test -opt/lampp/share/mysql/mysql-test/t/rpl_insert_select.test -opt/lampp/share/mysql/mysql-test/t/rpl_loaddata.test -opt/lampp/share/mysql/mysql-test/t/rpl_loaddata_rule_m-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_loaddata_rule_m.test -opt/lampp/share/mysql/mysql-test/t/rpl_loaddata_rule_s-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_loaddata_rule_s.test -opt/lampp/share/mysql/mysql-test/t/rpl_loaddatalocal.test -opt/lampp/share/mysql/mysql-test/t/rpl_log-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_log-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_log.test -opt/lampp/share/mysql/mysql-test/t/rpl_log_pos.test -opt/lampp/share/mysql/mysql-test/t/rpl_many_optimize.test -opt/lampp/share/mysql/mysql-test/t/rpl_master_pos_wait.test -opt/lampp/share/mysql/mysql-test/t/rpl_max_relay_size.test -opt/lampp/share/mysql/mysql-test/t/rpl_misc_functions-slave.sh -opt/lampp/share/mysql/mysql-test/t/rpl_misc_functions.test -opt/lampp/share/mysql/mysql-test/t/rpl_multi_delete-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_multi_delete.test -opt/lampp/share/mysql/mysql-test/t/rpl_multi_delete2-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_multi_delete2.test -opt/lampp/share/mysql/mysql-test/t/rpl_multi_query.test -opt/lampp/share/mysql/mysql-test/t/rpl_multi_update.test -opt/lampp/share/mysql/mysql-test/t/rpl_multi_update2-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_multi_update2.test -opt/lampp/share/mysql/mysql-test/t/rpl_multi_update3.test -opt/lampp/share/mysql/mysql-test/t/rpl_multi_update4-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_multi_update4.test -opt/lampp/share/mysql/mysql-test/t/rpl_mystery22.test -opt/lampp/share/mysql/mysql-test/t/rpl_openssl.test -opt/lampp/share/mysql/mysql-test/t/rpl_optimize.test -opt/lampp/share/mysql/mysql-test/t/rpl_ps.test -opt/lampp/share/mysql/mysql-test/t/rpl_redirect.test -opt/lampp/share/mysql/mysql-test/t/rpl_relayrotate-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_relayrotate.test -opt/lampp/share/mysql/mysql-test/t/rpl_relayspace-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_relayspace.test -opt/lampp/share/mysql/mysql-test/t/rpl_replicate_do-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_replicate_do.test -opt/lampp/share/mysql/mysql-test/t/rpl_reset_slave.test -opt/lampp/share/mysql/mysql-test/t/rpl_rewrite_db-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_rewrite_db.test -opt/lampp/share/mysql/mysql-test/t/rpl_rotate_logs-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_rotate_logs-slave.sh -opt/lampp/share/mysql/mysql-test/t/rpl_rotate_logs.slave-mi -opt/lampp/share/mysql/mysql-test/t/rpl_rotate_logs.test -opt/lampp/share/mysql/mysql-test/t/rpl_server_id1.test -opt/lampp/share/mysql/mysql-test/t/rpl_server_id2-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_server_id2.test -opt/lampp/share/mysql/mysql-test/t/rpl_session_var.test -opt/lampp/share/mysql/mysql-test/t/rpl_set_charset.test -opt/lampp/share/mysql/mysql-test/t/rpl_skip_error-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_skip_error.test -opt/lampp/share/mysql/mysql-test/t/rpl_slave_status.test -opt/lampp/share/mysql/mysql-test/t/rpl_sp-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_sp-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_sp.test -opt/lampp/share/mysql/mysql-test/t/rpl_sp_effects-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_sp_effects-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_sp_effects.test -opt/lampp/share/mysql/mysql-test/t/rpl_sporadic_master-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_sporadic_master.test -opt/lampp/share/mysql/mysql-test/t/rpl_start_stop_slave.test -opt/lampp/share/mysql/mysql-test/t/rpl_temporary.test -opt/lampp/share/mysql/mysql-test/t/rpl_timezone-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_timezone-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_timezone.test -opt/lampp/share/mysql/mysql-test/t/rpl_trigger.test -opt/lampp/share/mysql/mysql-test/t/rpl_trunc_temp.test -opt/lampp/share/mysql/mysql-test/t/rpl_until.test -opt/lampp/share/mysql/mysql-test/t/rpl_user_variables.test -opt/lampp/share/mysql/mysql-test/t/rpl_variables-master.opt -opt/lampp/share/mysql/mysql-test/t/rpl_variables.test -opt/lampp/share/mysql/mysql-test/t/rpl_view-slave.opt -opt/lampp/share/mysql/mysql-test/t/rpl_view.test -opt/lampp/share/mysql/mysql-test/t/schema.test -opt/lampp/share/mysql/mysql-test/t/select.test -opt/lampp/share/mysql/mysql-test/t/select_found.test -opt/lampp/share/mysql/mysql-test/t/select_safe.test -opt/lampp/share/mysql/mysql-test/t/show_check.test -opt/lampp/share/mysql/mysql-test/t/skip_grants-master.opt -opt/lampp/share/mysql/mysql-test/t/skip_grants.test -opt/lampp/share/mysql/mysql-test/t/skip_name_resolve-master.opt -opt/lampp/share/mysql/mysql-test/t/skip_name_resolve.test -opt/lampp/share/mysql/mysql-test/t/sp-big.test -opt/lampp/share/mysql/mysql-test/t/sp-code.test -opt/lampp/share/mysql/mysql-test/t/sp-destruct.test -opt/lampp/share/mysql/mysql-test/t/sp-dynamic.test -opt/lampp/share/mysql/mysql-test/t/sp-error.test -opt/lampp/share/mysql/mysql-test/t/sp-prelocking.test -opt/lampp/share/mysql/mysql-test/t/sp-security.test -opt/lampp/share/mysql/mysql-test/t/sp-threads.test -opt/lampp/share/mysql/mysql-test/t/sp-vars.test -opt/lampp/share/mysql/mysql-test/t/sp.test -opt/lampp/share/mysql/mysql-test/t/sp_notembedded.test -opt/lampp/share/mysql/mysql-test/t/sp_trans.test -opt/lampp/share/mysql/mysql-test/t/sql_mode.test -opt/lampp/share/mysql/mysql-test/t/ssl.test -opt/lampp/share/mysql/mysql-test/t/ssl_compress.test -opt/lampp/share/mysql/mysql-test/t/status.test -opt/lampp/share/mysql/mysql-test/t/strict.test -opt/lampp/share/mysql/mysql-test/t/subselect.test -opt/lampp/share/mysql/mysql-test/t/subselect2.test -opt/lampp/share/mysql/mysql-test/t/subselect_gis.test -opt/lampp/share/mysql/mysql-test/t/subselect_innodb.test -opt/lampp/share/mysql/mysql-test/t/subselect_notembedded.test -opt/lampp/share/mysql/mysql-test/t/sum_distinct-big.test -opt/lampp/share/mysql/mysql-test/t/sum_distinct.test -opt/lampp/share/mysql/mysql-test/t/symlink.test -opt/lampp/share/mysql/mysql-test/t/synchronization.test -opt/lampp/share/mysql/mysql-test/t/sysdate_is_now-master.opt -opt/lampp/share/mysql/mysql-test/t/sysdate_is_now.test -opt/lampp/share/mysql/mysql-test/t/system_mysql_db.test -opt/lampp/share/mysql/mysql-test/t/system_mysql_db_fix-master.opt -opt/lampp/share/mysql/mysql-test/t/system_mysql_db_fix.test -opt/lampp/share/mysql/mysql-test/t/system_mysql_db_refs.test -opt/lampp/share/mysql/mysql-test/t/tablelock.test -opt/lampp/share/mysql/mysql-test/t/temp_table-master.opt -opt/lampp/share/mysql/mysql-test/t/temp_table.test -opt/lampp/share/mysql/mysql-test/t/timezone-master.opt -opt/lampp/share/mysql/mysql-test/t/timezone.test -opt/lampp/share/mysql/mysql-test/t/timezone2.test -opt/lampp/share/mysql/mysql-test/t/timezone3-master.opt -opt/lampp/share/mysql/mysql-test/t/timezone3.test -opt/lampp/share/mysql/mysql-test/t/timezone_grant.test -opt/lampp/share/mysql/mysql-test/t/trigger-compat.test -opt/lampp/share/mysql/mysql-test/t/trigger-grant.test -opt/lampp/share/mysql/mysql-test/t/trigger-trans.test -opt/lampp/share/mysql/mysql-test/t/trigger.test -opt/lampp/share/mysql/mysql-test/t/truncate.test -opt/lampp/share/mysql/mysql-test/t/type_binary.test -opt/lampp/share/mysql/mysql-test/t/type_bit.test -opt/lampp/share/mysql/mysql-test/t/type_bit_innodb.test -opt/lampp/share/mysql/mysql-test/t/type_blob.test -opt/lampp/share/mysql/mysql-test/t/type_date.test -opt/lampp/share/mysql/mysql-test/t/type_datetime.test -opt/lampp/share/mysql/mysql-test/t/type_decimal.test -opt/lampp/share/mysql/mysql-test/t/type_enum.test -opt/lampp/share/mysql/mysql-test/t/type_float.test -opt/lampp/share/mysql/mysql-test/t/type_nchar.test -opt/lampp/share/mysql/mysql-test/t/type_newdecimal-big.test -opt/lampp/share/mysql/mysql-test/t/type_newdecimal.test -opt/lampp/share/mysql/mysql-test/t/type_ranges.test -opt/lampp/share/mysql/mysql-test/t/type_set.test -opt/lampp/share/mysql/mysql-test/t/type_time.test -opt/lampp/share/mysql/mysql-test/t/type_timestamp.test -opt/lampp/share/mysql/mysql-test/t/type_uint.test -opt/lampp/share/mysql/mysql-test/t/type_varchar.test -opt/lampp/share/mysql/mysql-test/t/type_year.test -opt/lampp/share/mysql/mysql-test/t/udf.test -opt/lampp/share/mysql/mysql-test/t/union-master.opt -opt/lampp/share/mysql/mysql-test/t/union.test -opt/lampp/share/mysql/mysql-test/t/update.test -opt/lampp/share/mysql/mysql-test/t/user_limits.test -opt/lampp/share/mysql/mysql-test/t/user_var-binlog.test -opt/lampp/share/mysql/mysql-test/t/user_var.test -opt/lampp/share/mysql/mysql-test/t/varbinary.test -opt/lampp/share/mysql/mysql-test/t/variables-master.opt -opt/lampp/share/mysql/mysql-test/t/variables.test -opt/lampp/share/mysql/mysql-test/t/view.test -opt/lampp/share/mysql/mysql-test/t/view_grant.test -opt/lampp/share/mysql/mysql-test/t/view_query_cache.test -opt/lampp/share/mysql/mysql-test/t/wait_timeout-master.opt -opt/lampp/share/mysql/mysql-test/t/wait_timeout.test -opt/lampp/share/mysql/mysql-test/t/warnings-master.opt -opt/lampp/share/mysql/mysql-test/t/warnings.test -opt/lampp/share/mysql/mysql-test/t/windows.test -opt/lampp/share/mysql/mysql-test/t/xa.test -opt/lampp/share/mysql/mysql.server -opt/lampp/share/mysql/mysql_fix_privilege_tables.sql -opt/lampp/share/mysql/ndb-config-2-node.ini -opt/lampp/share/mysql/norwegian -opt/lampp/share/mysql/norwegian-ny -opt/lampp/share/mysql/norwegian-ny/errmsg.sys -opt/lampp/share/mysql/norwegian-ny/errmsg.txt -opt/lampp/share/mysql/norwegian/errmsg.sys -opt/lampp/share/mysql/norwegian/errmsg.txt -opt/lampp/share/mysql/polish -opt/lampp/share/mysql/polish/errmsg.sys -opt/lampp/share/mysql/polish/errmsg.txt -opt/lampp/share/mysql/portuguese -opt/lampp/share/mysql/portuguese/errmsg.sys -opt/lampp/share/mysql/portuguese/errmsg.txt -opt/lampp/share/mysql/romanian -opt/lampp/share/mysql/romanian/errmsg.sys -opt/lampp/share/mysql/romanian/errmsg.txt -opt/lampp/share/mysql/russian -opt/lampp/share/mysql/russian/errmsg.sys -opt/lampp/share/mysql/russian/errmsg.txt -opt/lampp/share/mysql/serbian -opt/lampp/share/mysql/serbian/errmsg.sys -opt/lampp/share/mysql/serbian/errmsg.txt -opt/lampp/share/mysql/slovak -opt/lampp/share/mysql/slovak/errmsg.sys -opt/lampp/share/mysql/slovak/errmsg.txt -opt/lampp/share/mysql/spanish -opt/lampp/share/mysql/spanish/errmsg.sys -opt/lampp/share/mysql/spanish/errmsg.txt -opt/lampp/share/mysql/sql-bench -opt/lampp/share/mysql/sql-bench/Comments -opt/lampp/share/mysql/sql-bench/Comments/Access.crash-me -opt/lampp/share/mysql/sql-bench/Comments/Adabas.crash-me -opt/lampp/share/mysql/sql-bench/Comments/Empress.crash-me -opt/lampp/share/mysql/sql-bench/Comments/FrontBase.benchmark -opt/lampp/share/mysql/sql-bench/Comments/Informix.crash-me -opt/lampp/share/mysql/sql-bench/Comments/mysql.benchmark -opt/lampp/share/mysql/sql-bench/Comments/postgres.benchmark -opt/lampp/share/mysql/sql-bench/Comments/postgres.crash-me -opt/lampp/share/mysql/sql-bench/Data -opt/lampp/share/mysql/sql-bench/Data/ATIS -opt/lampp/share/mysql/sql-bench/Data/ATIS/aircraft.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/airline.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/airport.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/airport_service.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/city.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/class_of_service.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/code_description.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/compound_class.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/connect_leg.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/date_day.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/day_name.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/dual_carrier.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/fare.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/fconnection.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/flight.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/flight_class.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/flight_day.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/flight_fare.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/food_service.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/ground_service.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/month_name.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/restrict_carrier.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/restrict_class.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/restriction.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/state.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/stop.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/stop1.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/time_interval.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/time_zone.txt -opt/lampp/share/mysql/sql-bench/Data/ATIS/transport.txt -opt/lampp/share/mysql/sql-bench/Data/Wisconsin -opt/lampp/share/mysql/sql-bench/Data/Wisconsin/onek.data -opt/lampp/share/mysql/sql-bench/Data/Wisconsin/tenk.data -opt/lampp/share/mysql/sql-bench/README -opt/lampp/share/mysql/sql-bench/bench-count-distinct -opt/lampp/share/mysql/sql-bench/bench-init.pl -opt/lampp/share/mysql/sql-bench/compare-results -opt/lampp/share/mysql/sql-bench/copy-db -opt/lampp/share/mysql/sql-bench/crash-me -opt/lampp/share/mysql/sql-bench/graph-compare-results -opt/lampp/share/mysql/sql-bench/innotest1 -opt/lampp/share/mysql/sql-bench/innotest1a -opt/lampp/share/mysql/sql-bench/innotest1b -opt/lampp/share/mysql/sql-bench/innotest2 -opt/lampp/share/mysql/sql-bench/innotest2a -opt/lampp/share/mysql/sql-bench/innotest2b -opt/lampp/share/mysql/sql-bench/limits -opt/lampp/share/mysql/sql-bench/limits/Adabas.cfg -opt/lampp/share/mysql/sql-bench/limits/Informix.cfg -opt/lampp/share/mysql/sql-bench/limits/access.cfg -opt/lampp/share/mysql/sql-bench/limits/access_odbc.cfg -opt/lampp/share/mysql/sql-bench/limits/db2.cfg -opt/lampp/share/mysql/sql-bench/limits/empress.cfg -opt/lampp/share/mysql/sql-bench/limits/frontbase.cfg -opt/lampp/share/mysql/sql-bench/limits/interbase-dialect1.cfg -opt/lampp/share/mysql/sql-bench/limits/interbase-dialect3.cfg -opt/lampp/share/mysql/sql-bench/limits/interbase-superserver.cfg -opt/lampp/share/mysql/sql-bench/limits/interbase.cfg -opt/lampp/share/mysql/sql-bench/limits/mimer.cfg -opt/lampp/share/mysql/sql-bench/limits/ms-sql.cfg -opt/lampp/share/mysql/sql-bench/limits/ms-sql65.cfg -opt/lampp/share/mysql/sql-bench/limits/msql.cfg -opt/lampp/share/mysql/sql-bench/limits/mysql-3.22.cfg -opt/lampp/share/mysql/sql-bench/limits/mysql-3.23.cfg -opt/lampp/share/mysql/sql-bench/limits/mysql-4.0.cfg -opt/lampp/share/mysql/sql-bench/limits/mysql-4.1.cfg -opt/lampp/share/mysql/sql-bench/limits/mysql.cfg -opt/lampp/share/mysql/sql-bench/limits/oracle.cfg -opt/lampp/share/mysql/sql-bench/limits/pg.cfg -opt/lampp/share/mysql/sql-bench/limits/solid-nt4.cfg -opt/lampp/share/mysql/sql-bench/limits/solid.cfg -opt/lampp/share/mysql/sql-bench/limits/sybase.cfg -opt/lampp/share/mysql/sql-bench/run-all-tests -opt/lampp/share/mysql/sql-bench/server-cfg -opt/lampp/share/mysql/sql-bench/test-ATIS -opt/lampp/share/mysql/sql-bench/test-alter-table -opt/lampp/share/mysql/sql-bench/test-big-tables -opt/lampp/share/mysql/sql-bench/test-connect -opt/lampp/share/mysql/sql-bench/test-create -opt/lampp/share/mysql/sql-bench/test-insert -opt/lampp/share/mysql/sql-bench/test-select -opt/lampp/share/mysql/sql-bench/test-transactions -opt/lampp/share/mysql/sql-bench/test-wisconsin -opt/lampp/share/mysql/swedish -opt/lampp/share/mysql/swedish/errmsg.sys -opt/lampp/share/mysql/swedish/errmsg.txt -opt/lampp/share/mysql/ukrainian -opt/lampp/share/mysql/ukrainian/errmsg.sys -opt/lampp/share/mysql/ukrainian/errmsg.txt -opt/lampp/share/openldap -opt/lampp/share/openldap/ucdata -opt/lampp/share/openldap/ucdata/case.dat -opt/lampp/share/openldap/ucdata/cmbcl.dat -opt/lampp/share/openldap/ucdata/comp.dat -opt/lampp/share/openldap/ucdata/ctype.dat -opt/lampp/share/openldap/ucdata/decomp.dat -opt/lampp/share/openldap/ucdata/kdecomp.dat -opt/lampp/share/openldap/ucdata/num.dat -opt/lampp/share/openssl -opt/lampp/share/openssl/certs -opt/lampp/share/openssl/lib -opt/lampp/share/openssl/man -opt/lampp/share/openssl/misc -opt/lampp/share/openssl/misc/CA.pl -opt/lampp/share/openssl/misc/CA.sh -opt/lampp/share/openssl/misc/c_hash -opt/lampp/share/openssl/misc/c_info -opt/lampp/share/openssl/misc/c_issuer -opt/lampp/share/openssl/misc/c_name -opt/lampp/share/openssl/misc/der_chop -opt/lampp/share/openssl/openssl.cnf -opt/lampp/share/openssl/private -opt/lampp/share/postgresql -opt/lampp/share/postgresql/conversion_create.sql -opt/lampp/share/postgresql/information_schema.sql -opt/lampp/share/postgresql/pg_hba.conf.sample -opt/lampp/share/postgresql/pg_ident.conf.sample -opt/lampp/share/postgresql/pg_service.conf.sample -opt/lampp/share/postgresql/postgres.bki -opt/lampp/share/postgresql/postgres.description -opt/lampp/share/postgresql/postgresql.conf.sample -opt/lampp/share/postgresql/psqlrc.sample -opt/lampp/share/postgresql/recovery.conf.sample -opt/lampp/share/postgresql/sql_features.txt -opt/lampp/share/postgresql/system_views.sql -opt/lampp/share/postgresql/timezone -opt/lampp/share/postgresql/timezone/Africa -opt/lampp/share/postgresql/timezone/Africa/Abidjan -opt/lampp/share/postgresql/timezone/Africa/Accra -opt/lampp/share/postgresql/timezone/Africa/Addis_Ababa -opt/lampp/share/postgresql/timezone/Africa/Algiers -opt/lampp/share/postgresql/timezone/Africa/Asmera -opt/lampp/share/postgresql/timezone/Africa/Bamako -opt/lampp/share/postgresql/timezone/Africa/Bangui -opt/lampp/share/postgresql/timezone/Africa/Banjul -opt/lampp/share/postgresql/timezone/Africa/Bissau -opt/lampp/share/postgresql/timezone/Africa/Blantyre -opt/lampp/share/postgresql/timezone/Africa/Brazzaville -opt/lampp/share/postgresql/timezone/Africa/Bujumbura -opt/lampp/share/postgresql/timezone/Africa/Cairo -opt/lampp/share/postgresql/timezone/Africa/Casablanca -opt/lampp/share/postgresql/timezone/Africa/Ceuta -opt/lampp/share/postgresql/timezone/Africa/Conakry -opt/lampp/share/postgresql/timezone/Africa/Dakar -opt/lampp/share/postgresql/timezone/Africa/Dar_es_Salaam -opt/lampp/share/postgresql/timezone/Africa/Djibouti -opt/lampp/share/postgresql/timezone/Africa/Douala -opt/lampp/share/postgresql/timezone/Africa/El_Aaiun -opt/lampp/share/postgresql/timezone/Africa/Freetown -opt/lampp/share/postgresql/timezone/Africa/Gaborone -opt/lampp/share/postgresql/timezone/Africa/Harare -opt/lampp/share/postgresql/timezone/Africa/Johannesburg -opt/lampp/share/postgresql/timezone/Africa/Kampala -opt/lampp/share/postgresql/timezone/Africa/Khartoum -opt/lampp/share/postgresql/timezone/Africa/Kigali -opt/lampp/share/postgresql/timezone/Africa/Kinshasa -opt/lampp/share/postgresql/timezone/Africa/Lagos -opt/lampp/share/postgresql/timezone/Africa/Libreville -opt/lampp/share/postgresql/timezone/Africa/Lome -opt/lampp/share/postgresql/timezone/Africa/Luanda -opt/lampp/share/postgresql/timezone/Africa/Lubumbashi -opt/lampp/share/postgresql/timezone/Africa/Lusaka -opt/lampp/share/postgresql/timezone/Africa/Malabo -opt/lampp/share/postgresql/timezone/Africa/Maputo -opt/lampp/share/postgresql/timezone/Africa/Maseru -opt/lampp/share/postgresql/timezone/Africa/Mbabane -opt/lampp/share/postgresql/timezone/Africa/Mogadishu -opt/lampp/share/postgresql/timezone/Africa/Monrovia -opt/lampp/share/postgresql/timezone/Africa/Nairobi -opt/lampp/share/postgresql/timezone/Africa/Ndjamena -opt/lampp/share/postgresql/timezone/Africa/Niamey -opt/lampp/share/postgresql/timezone/Africa/Nouakchott -opt/lampp/share/postgresql/timezone/Africa/Ouagadougou -opt/lampp/share/postgresql/timezone/Africa/Porto-Novo -opt/lampp/share/postgresql/timezone/Africa/Sao_Tome -opt/lampp/share/postgresql/timezone/Africa/Timbuktu -opt/lampp/share/postgresql/timezone/Africa/Tripoli -opt/lampp/share/postgresql/timezone/Africa/Tunis -opt/lampp/share/postgresql/timezone/Africa/Windhoek -opt/lampp/share/postgresql/timezone/America -opt/lampp/share/postgresql/timezone/America/Adak -opt/lampp/share/postgresql/timezone/America/Anchorage -opt/lampp/share/postgresql/timezone/America/Anguilla -opt/lampp/share/postgresql/timezone/America/Antigua -opt/lampp/share/postgresql/timezone/America/Araguaina -opt/lampp/share/postgresql/timezone/America/Argentina -opt/lampp/share/postgresql/timezone/America/Argentina/Buenos_Aires -opt/lampp/share/postgresql/timezone/America/Argentina/Catamarca -opt/lampp/share/postgresql/timezone/America/Argentina/ComodRivadavia -opt/lampp/share/postgresql/timezone/America/Argentina/Cordoba -opt/lampp/share/postgresql/timezone/America/Argentina/Jujuy -opt/lampp/share/postgresql/timezone/America/Argentina/La_Rioja -opt/lampp/share/postgresql/timezone/America/Argentina/Mendoza -opt/lampp/share/postgresql/timezone/America/Argentina/Rio_Gallegos -opt/lampp/share/postgresql/timezone/America/Argentina/San_Juan -opt/lampp/share/postgresql/timezone/America/Argentina/Tucuman -opt/lampp/share/postgresql/timezone/America/Argentina/Ushuaia -opt/lampp/share/postgresql/timezone/America/Aruba -opt/lampp/share/postgresql/timezone/America/Asuncion -opt/lampp/share/postgresql/timezone/America/Atka -opt/lampp/share/postgresql/timezone/America/Bahia -opt/lampp/share/postgresql/timezone/America/Barbados -opt/lampp/share/postgresql/timezone/America/Belem -opt/lampp/share/postgresql/timezone/America/Belize -opt/lampp/share/postgresql/timezone/America/Boa_Vista -opt/lampp/share/postgresql/timezone/America/Bogota -opt/lampp/share/postgresql/timezone/America/Boise -opt/lampp/share/postgresql/timezone/America/Buenos_Aires -opt/lampp/share/postgresql/timezone/America/Cambridge_Bay -opt/lampp/share/postgresql/timezone/America/Campo_Grande -opt/lampp/share/postgresql/timezone/America/Cancun -opt/lampp/share/postgresql/timezone/America/Caracas -opt/lampp/share/postgresql/timezone/America/Catamarca -opt/lampp/share/postgresql/timezone/America/Cayenne -opt/lampp/share/postgresql/timezone/America/Cayman -opt/lampp/share/postgresql/timezone/America/Chicago -opt/lampp/share/postgresql/timezone/America/Chihuahua -opt/lampp/share/postgresql/timezone/America/Coral_Harbour -opt/lampp/share/postgresql/timezone/America/Cordoba -opt/lampp/share/postgresql/timezone/America/Costa_Rica -opt/lampp/share/postgresql/timezone/America/Cuiaba -opt/lampp/share/postgresql/timezone/America/Curacao -opt/lampp/share/postgresql/timezone/America/Danmarkshavn -opt/lampp/share/postgresql/timezone/America/Dawson -opt/lampp/share/postgresql/timezone/America/Dawson_Creek -opt/lampp/share/postgresql/timezone/America/Denver -opt/lampp/share/postgresql/timezone/America/Detroit -opt/lampp/share/postgresql/timezone/America/Dominica -opt/lampp/share/postgresql/timezone/America/Edmonton -opt/lampp/share/postgresql/timezone/America/Eirunepe -opt/lampp/share/postgresql/timezone/America/El_Salvador -opt/lampp/share/postgresql/timezone/America/Ensenada -opt/lampp/share/postgresql/timezone/America/Fort_Wayne -opt/lampp/share/postgresql/timezone/America/Fortaleza -opt/lampp/share/postgresql/timezone/America/Glace_Bay -opt/lampp/share/postgresql/timezone/America/Godthab -opt/lampp/share/postgresql/timezone/America/Goose_Bay -opt/lampp/share/postgresql/timezone/America/Grand_Turk -opt/lampp/share/postgresql/timezone/America/Grenada -opt/lampp/share/postgresql/timezone/America/Guadeloupe -opt/lampp/share/postgresql/timezone/America/Guatemala -opt/lampp/share/postgresql/timezone/America/Guayaquil -opt/lampp/share/postgresql/timezone/America/Guyana -opt/lampp/share/postgresql/timezone/America/Halifax -opt/lampp/share/postgresql/timezone/America/Havana -opt/lampp/share/postgresql/timezone/America/Hermosillo -opt/lampp/share/postgresql/timezone/America/Indiana -opt/lampp/share/postgresql/timezone/America/Indiana/Indianapolis -opt/lampp/share/postgresql/timezone/America/Indiana/Knox -opt/lampp/share/postgresql/timezone/America/Indiana/Marengo -opt/lampp/share/postgresql/timezone/America/Indiana/Vevay -opt/lampp/share/postgresql/timezone/America/Indianapolis -opt/lampp/share/postgresql/timezone/America/Inuvik -opt/lampp/share/postgresql/timezone/America/Iqaluit -opt/lampp/share/postgresql/timezone/America/Jamaica -opt/lampp/share/postgresql/timezone/America/Jujuy -opt/lampp/share/postgresql/timezone/America/Juneau -opt/lampp/share/postgresql/timezone/America/Kentucky -opt/lampp/share/postgresql/timezone/America/Kentucky/Louisville -opt/lampp/share/postgresql/timezone/America/Kentucky/Monticello -opt/lampp/share/postgresql/timezone/America/Knox_IN -opt/lampp/share/postgresql/timezone/America/La_Paz -opt/lampp/share/postgresql/timezone/America/Lima -opt/lampp/share/postgresql/timezone/America/Los_Angeles -opt/lampp/share/postgresql/timezone/America/Louisville -opt/lampp/share/postgresql/timezone/America/Maceio -opt/lampp/share/postgresql/timezone/America/Managua -opt/lampp/share/postgresql/timezone/America/Manaus -opt/lampp/share/postgresql/timezone/America/Martinique -opt/lampp/share/postgresql/timezone/America/Mazatlan -opt/lampp/share/postgresql/timezone/America/Mendoza -opt/lampp/share/postgresql/timezone/America/Menominee -opt/lampp/share/postgresql/timezone/America/Merida -opt/lampp/share/postgresql/timezone/America/Mexico_City -opt/lampp/share/postgresql/timezone/America/Miquelon -opt/lampp/share/postgresql/timezone/America/Monterrey -opt/lampp/share/postgresql/timezone/America/Montevideo -opt/lampp/share/postgresql/timezone/America/Montreal -opt/lampp/share/postgresql/timezone/America/Montserrat -opt/lampp/share/postgresql/timezone/America/Nassau -opt/lampp/share/postgresql/timezone/America/New_York -opt/lampp/share/postgresql/timezone/America/Nipigon -opt/lampp/share/postgresql/timezone/America/Nome -opt/lampp/share/postgresql/timezone/America/Noronha -opt/lampp/share/postgresql/timezone/America/North_Dakota -opt/lampp/share/postgresql/timezone/America/North_Dakota/Center -opt/lampp/share/postgresql/timezone/America/Panama -opt/lampp/share/postgresql/timezone/America/Pangnirtung -opt/lampp/share/postgresql/timezone/America/Paramaribo -opt/lampp/share/postgresql/timezone/America/Phoenix -opt/lampp/share/postgresql/timezone/America/Port-au-Prince -opt/lampp/share/postgresql/timezone/America/Port_of_Spain -opt/lampp/share/postgresql/timezone/America/Porto_Acre -opt/lampp/share/postgresql/timezone/America/Porto_Velho -opt/lampp/share/postgresql/timezone/America/Puerto_Rico -opt/lampp/share/postgresql/timezone/America/Rainy_River -opt/lampp/share/postgresql/timezone/America/Rankin_Inlet -opt/lampp/share/postgresql/timezone/America/Recife -opt/lampp/share/postgresql/timezone/America/Regina -opt/lampp/share/postgresql/timezone/America/Rio_Branco -opt/lampp/share/postgresql/timezone/America/Rosario -opt/lampp/share/postgresql/timezone/America/Santiago -opt/lampp/share/postgresql/timezone/America/Santo_Domingo -opt/lampp/share/postgresql/timezone/America/Sao_Paulo -opt/lampp/share/postgresql/timezone/America/Scoresbysund -opt/lampp/share/postgresql/timezone/America/Shiprock -opt/lampp/share/postgresql/timezone/America/St_Johns -opt/lampp/share/postgresql/timezone/America/St_Kitts -opt/lampp/share/postgresql/timezone/America/St_Lucia -opt/lampp/share/postgresql/timezone/America/St_Thomas -opt/lampp/share/postgresql/timezone/America/St_Vincent -opt/lampp/share/postgresql/timezone/America/Swift_Current -opt/lampp/share/postgresql/timezone/America/Tegucigalpa -opt/lampp/share/postgresql/timezone/America/Thule -opt/lampp/share/postgresql/timezone/America/Thunder_Bay -opt/lampp/share/postgresql/timezone/America/Tijuana -opt/lampp/share/postgresql/timezone/America/Toronto -opt/lampp/share/postgresql/timezone/America/Tortola -opt/lampp/share/postgresql/timezone/America/Vancouver -opt/lampp/share/postgresql/timezone/America/Virgin -opt/lampp/share/postgresql/timezone/America/Whitehorse -opt/lampp/share/postgresql/timezone/America/Winnipeg -opt/lampp/share/postgresql/timezone/America/Yakutat -opt/lampp/share/postgresql/timezone/America/Yellowknife -opt/lampp/share/postgresql/timezone/Antarctica -opt/lampp/share/postgresql/timezone/Antarctica/Casey -opt/lampp/share/postgresql/timezone/Antarctica/Davis -opt/lampp/share/postgresql/timezone/Antarctica/DumontDUrville -opt/lampp/share/postgresql/timezone/Antarctica/Mawson -opt/lampp/share/postgresql/timezone/Antarctica/McMurdo -opt/lampp/share/postgresql/timezone/Antarctica/Palmer -opt/lampp/share/postgresql/timezone/Antarctica/Rothera -opt/lampp/share/postgresql/timezone/Antarctica/South_Pole -opt/lampp/share/postgresql/timezone/Antarctica/Syowa -opt/lampp/share/postgresql/timezone/Antarctica/Vostok -opt/lampp/share/postgresql/timezone/Arctic -opt/lampp/share/postgresql/timezone/Arctic/Longyearbyen -opt/lampp/share/postgresql/timezone/Asia -opt/lampp/share/postgresql/timezone/Asia/Aden -opt/lampp/share/postgresql/timezone/Asia/Almaty -opt/lampp/share/postgresql/timezone/Asia/Amman -opt/lampp/share/postgresql/timezone/Asia/Anadyr -opt/lampp/share/postgresql/timezone/Asia/Aqtau -opt/lampp/share/postgresql/timezone/Asia/Aqtobe -opt/lampp/share/postgresql/timezone/Asia/Ashgabat -opt/lampp/share/postgresql/timezone/Asia/Ashkhabad -opt/lampp/share/postgresql/timezone/Asia/Baghdad -opt/lampp/share/postgresql/timezone/Asia/Bahrain -opt/lampp/share/postgresql/timezone/Asia/Baku -opt/lampp/share/postgresql/timezone/Asia/Bangkok -opt/lampp/share/postgresql/timezone/Asia/Beirut -opt/lampp/share/postgresql/timezone/Asia/Bishkek -opt/lampp/share/postgresql/timezone/Asia/Brunei -opt/lampp/share/postgresql/timezone/Asia/Calcutta -opt/lampp/share/postgresql/timezone/Asia/Choibalsan -opt/lampp/share/postgresql/timezone/Asia/Chongqing -opt/lampp/share/postgresql/timezone/Asia/Chungking -opt/lampp/share/postgresql/timezone/Asia/Colombo -opt/lampp/share/postgresql/timezone/Asia/Dacca -opt/lampp/share/postgresql/timezone/Asia/Damascus -opt/lampp/share/postgresql/timezone/Asia/Dhaka -opt/lampp/share/postgresql/timezone/Asia/Dili -opt/lampp/share/postgresql/timezone/Asia/Dubai -opt/lampp/share/postgresql/timezone/Asia/Dushanbe -opt/lampp/share/postgresql/timezone/Asia/Gaza -opt/lampp/share/postgresql/timezone/Asia/Harbin -opt/lampp/share/postgresql/timezone/Asia/Hong_Kong -opt/lampp/share/postgresql/timezone/Asia/Hovd -opt/lampp/share/postgresql/timezone/Asia/Irkutsk -opt/lampp/share/postgresql/timezone/Asia/Istanbul -opt/lampp/share/postgresql/timezone/Asia/Jakarta -opt/lampp/share/postgresql/timezone/Asia/Jayapura -opt/lampp/share/postgresql/timezone/Asia/Jerusalem -opt/lampp/share/postgresql/timezone/Asia/Kabul -opt/lampp/share/postgresql/timezone/Asia/Kamchatka -opt/lampp/share/postgresql/timezone/Asia/Karachi -opt/lampp/share/postgresql/timezone/Asia/Kashgar -opt/lampp/share/postgresql/timezone/Asia/Katmandu -opt/lampp/share/postgresql/timezone/Asia/Krasnoyarsk -opt/lampp/share/postgresql/timezone/Asia/Kuala_Lumpur -opt/lampp/share/postgresql/timezone/Asia/Kuching -opt/lampp/share/postgresql/timezone/Asia/Kuwait -opt/lampp/share/postgresql/timezone/Asia/Macao -opt/lampp/share/postgresql/timezone/Asia/Macau -opt/lampp/share/postgresql/timezone/Asia/Magadan -opt/lampp/share/postgresql/timezone/Asia/Makassar -opt/lampp/share/postgresql/timezone/Asia/Manila -opt/lampp/share/postgresql/timezone/Asia/Muscat -opt/lampp/share/postgresql/timezone/Asia/Nicosia -opt/lampp/share/postgresql/timezone/Asia/Novosibirsk -opt/lampp/share/postgresql/timezone/Asia/Omsk -opt/lampp/share/postgresql/timezone/Asia/Oral -opt/lampp/share/postgresql/timezone/Asia/Phnom_Penh -opt/lampp/share/postgresql/timezone/Asia/Pontianak -opt/lampp/share/postgresql/timezone/Asia/Pyongyang -opt/lampp/share/postgresql/timezone/Asia/Qatar -opt/lampp/share/postgresql/timezone/Asia/Qyzylorda -opt/lampp/share/postgresql/timezone/Asia/Rangoon -opt/lampp/share/postgresql/timezone/Asia/Riyadh -opt/lampp/share/postgresql/timezone/Asia/Riyadh87 -opt/lampp/share/postgresql/timezone/Asia/Riyadh88 -opt/lampp/share/postgresql/timezone/Asia/Riyadh89 -opt/lampp/share/postgresql/timezone/Asia/Saigon -opt/lampp/share/postgresql/timezone/Asia/Sakhalin -opt/lampp/share/postgresql/timezone/Asia/Samarkand -opt/lampp/share/postgresql/timezone/Asia/Seoul -opt/lampp/share/postgresql/timezone/Asia/Shanghai -opt/lampp/share/postgresql/timezone/Asia/Singapore -opt/lampp/share/postgresql/timezone/Asia/Taipei -opt/lampp/share/postgresql/timezone/Asia/Tashkent -opt/lampp/share/postgresql/timezone/Asia/Tbilisi -opt/lampp/share/postgresql/timezone/Asia/Tehran -opt/lampp/share/postgresql/timezone/Asia/Tel_Aviv -opt/lampp/share/postgresql/timezone/Asia/Thimbu -opt/lampp/share/postgresql/timezone/Asia/Thimphu -opt/lampp/share/postgresql/timezone/Asia/Tokyo -opt/lampp/share/postgresql/timezone/Asia/Ujung_Pandang -opt/lampp/share/postgresql/timezone/Asia/Ulaanbaatar -opt/lampp/share/postgresql/timezone/Asia/Ulan_Bator -opt/lampp/share/postgresql/timezone/Asia/Urumqi -opt/lampp/share/postgresql/timezone/Asia/Vientiane -opt/lampp/share/postgresql/timezone/Asia/Vladivostok -opt/lampp/share/postgresql/timezone/Asia/Yakutsk -opt/lampp/share/postgresql/timezone/Asia/Yekaterinburg -opt/lampp/share/postgresql/timezone/Asia/Yerevan -opt/lampp/share/postgresql/timezone/Atlantic -opt/lampp/share/postgresql/timezone/Atlantic/Azores -opt/lampp/share/postgresql/timezone/Atlantic/Bermuda -opt/lampp/share/postgresql/timezone/Atlantic/Canary -opt/lampp/share/postgresql/timezone/Atlantic/Cape_Verde -opt/lampp/share/postgresql/timezone/Atlantic/Faeroe -opt/lampp/share/postgresql/timezone/Atlantic/Jan_Mayen -opt/lampp/share/postgresql/timezone/Atlantic/Madeira -opt/lampp/share/postgresql/timezone/Atlantic/Reykjavik -opt/lampp/share/postgresql/timezone/Atlantic/South_Georgia -opt/lampp/share/postgresql/timezone/Atlantic/St_Helena -opt/lampp/share/postgresql/timezone/Atlantic/Stanley -opt/lampp/share/postgresql/timezone/Australia -opt/lampp/share/postgresql/timezone/Australia/ACT -opt/lampp/share/postgresql/timezone/Australia/Adelaide -opt/lampp/share/postgresql/timezone/Australia/Brisbane -opt/lampp/share/postgresql/timezone/Australia/Broken_Hill -opt/lampp/share/postgresql/timezone/Australia/Canberra -opt/lampp/share/postgresql/timezone/Australia/Currie -opt/lampp/share/postgresql/timezone/Australia/Darwin -opt/lampp/share/postgresql/timezone/Australia/Hobart -opt/lampp/share/postgresql/timezone/Australia/LHI -opt/lampp/share/postgresql/timezone/Australia/Lindeman -opt/lampp/share/postgresql/timezone/Australia/Lord_Howe -opt/lampp/share/postgresql/timezone/Australia/Melbourne -opt/lampp/share/postgresql/timezone/Australia/NSW -opt/lampp/share/postgresql/timezone/Australia/North -opt/lampp/share/postgresql/timezone/Australia/Perth -opt/lampp/share/postgresql/timezone/Australia/Queensland -opt/lampp/share/postgresql/timezone/Australia/South -opt/lampp/share/postgresql/timezone/Australia/Sydney -opt/lampp/share/postgresql/timezone/Australia/Tasmania -opt/lampp/share/postgresql/timezone/Australia/Victoria -opt/lampp/share/postgresql/timezone/Australia/West -opt/lampp/share/postgresql/timezone/Australia/Yancowinna -opt/lampp/share/postgresql/timezone/Brazil -opt/lampp/share/postgresql/timezone/Brazil/Acre -opt/lampp/share/postgresql/timezone/Brazil/DeNoronha -opt/lampp/share/postgresql/timezone/Brazil/East -opt/lampp/share/postgresql/timezone/Brazil/West -opt/lampp/share/postgresql/timezone/CET -opt/lampp/share/postgresql/timezone/CST6CDT -opt/lampp/share/postgresql/timezone/Canada -opt/lampp/share/postgresql/timezone/Canada/Atlantic -opt/lampp/share/postgresql/timezone/Canada/Central -opt/lampp/share/postgresql/timezone/Canada/East-Saskatchewan -opt/lampp/share/postgresql/timezone/Canada/Eastern -opt/lampp/share/postgresql/timezone/Canada/Mountain -opt/lampp/share/postgresql/timezone/Canada/Newfoundland -opt/lampp/share/postgresql/timezone/Canada/Pacific -opt/lampp/share/postgresql/timezone/Canada/Saskatchewan -opt/lampp/share/postgresql/timezone/Canada/Yukon -opt/lampp/share/postgresql/timezone/Chile -opt/lampp/share/postgresql/timezone/Chile/Continental -opt/lampp/share/postgresql/timezone/Chile/EasterIsland -opt/lampp/share/postgresql/timezone/Cuba -opt/lampp/share/postgresql/timezone/EET -opt/lampp/share/postgresql/timezone/EST -opt/lampp/share/postgresql/timezone/EST5EDT -opt/lampp/share/postgresql/timezone/Egypt -opt/lampp/share/postgresql/timezone/Eire -opt/lampp/share/postgresql/timezone/Etc -opt/lampp/share/postgresql/timezone/Europe -opt/lampp/share/postgresql/timezone/Europe/Amsterdam -opt/lampp/share/postgresql/timezone/Europe/Andorra -opt/lampp/share/postgresql/timezone/Europe/Athens -opt/lampp/share/postgresql/timezone/Europe/Belfast -opt/lampp/share/postgresql/timezone/Europe/Belgrade -opt/lampp/share/postgresql/timezone/Europe/Berlin -opt/lampp/share/postgresql/timezone/Europe/Bratislava -opt/lampp/share/postgresql/timezone/Europe/Brussels -opt/lampp/share/postgresql/timezone/Europe/Bucharest -opt/lampp/share/postgresql/timezone/Europe/Budapest -opt/lampp/share/postgresql/timezone/Europe/Chisinau -opt/lampp/share/postgresql/timezone/Europe/Copenhagen -opt/lampp/share/postgresql/timezone/Europe/Dublin -opt/lampp/share/postgresql/timezone/Europe/Gibraltar -opt/lampp/share/postgresql/timezone/Europe/Helsinki -opt/lampp/share/postgresql/timezone/Europe/Istanbul -opt/lampp/share/postgresql/timezone/Europe/Kaliningrad -opt/lampp/share/postgresql/timezone/Europe/Kiev -opt/lampp/share/postgresql/timezone/Europe/Lisbon -opt/lampp/share/postgresql/timezone/Europe/Ljubljana -opt/lampp/share/postgresql/timezone/Europe/London -opt/lampp/share/postgresql/timezone/Europe/Luxembourg -opt/lampp/share/postgresql/timezone/Europe/Madrid -opt/lampp/share/postgresql/timezone/Europe/Malta -opt/lampp/share/postgresql/timezone/Europe/Mariehamn -opt/lampp/share/postgresql/timezone/Europe/Minsk -opt/lampp/share/postgresql/timezone/Europe/Monaco -opt/lampp/share/postgresql/timezone/Europe/Moscow -opt/lampp/share/postgresql/timezone/Europe/Nicosia -opt/lampp/share/postgresql/timezone/Europe/Oslo -opt/lampp/share/postgresql/timezone/Europe/Paris -opt/lampp/share/postgresql/timezone/Europe/Prague -opt/lampp/share/postgresql/timezone/Europe/Riga -opt/lampp/share/postgresql/timezone/Europe/Rome -opt/lampp/share/postgresql/timezone/Europe/Samara -opt/lampp/share/postgresql/timezone/Europe/San_Marino -opt/lampp/share/postgresql/timezone/Europe/Sarajevo -opt/lampp/share/postgresql/timezone/Europe/Simferopol -opt/lampp/share/postgresql/timezone/Europe/Skopje -opt/lampp/share/postgresql/timezone/Europe/Sofia -opt/lampp/share/postgresql/timezone/Europe/Stockholm -opt/lampp/share/postgresql/timezone/Europe/Tallinn -opt/lampp/share/postgresql/timezone/Europe/Tirane -opt/lampp/share/postgresql/timezone/Europe/Tiraspol -opt/lampp/share/postgresql/timezone/Europe/Uzhgorod -opt/lampp/share/postgresql/timezone/Europe/Vaduz -opt/lampp/share/postgresql/timezone/Europe/Vatican -opt/lampp/share/postgresql/timezone/Europe/Vienna -opt/lampp/share/postgresql/timezone/Europe/Vilnius -opt/lampp/share/postgresql/timezone/Europe/Warsaw -opt/lampp/share/postgresql/timezone/Europe/Zagreb -opt/lampp/share/postgresql/timezone/Europe/Zaporozhye -opt/lampp/share/postgresql/timezone/Europe/Zurich -opt/lampp/share/postgresql/timezone/Factory -opt/lampp/share/postgresql/timezone/GB -opt/lampp/share/postgresql/timezone/GB-Eire -opt/lampp/share/postgresql/timezone/GMT -opt/lampp/share/postgresql/timezone/GMT0 -opt/lampp/share/postgresql/timezone/GMT-0 -opt/lampp/share/postgresql/timezone/GMT0 -opt/lampp/share/postgresql/timezone/Greenwich -opt/lampp/share/postgresql/timezone/HST -opt/lampp/share/postgresql/timezone/Hongkong -opt/lampp/share/postgresql/timezone/Iceland -opt/lampp/share/postgresql/timezone/Indian -opt/lampp/share/postgresql/timezone/Indian/Antananarivo -opt/lampp/share/postgresql/timezone/Indian/Chagos -opt/lampp/share/postgresql/timezone/Indian/Christmas -opt/lampp/share/postgresql/timezone/Indian/Cocos -opt/lampp/share/postgresql/timezone/Indian/Comoro -opt/lampp/share/postgresql/timezone/Indian/Kerguelen -opt/lampp/share/postgresql/timezone/Indian/Mahe -opt/lampp/share/postgresql/timezone/Indian/Maldives -opt/lampp/share/postgresql/timezone/Indian/Mauritius -opt/lampp/share/postgresql/timezone/Indian/Mayotte -opt/lampp/share/postgresql/timezone/Indian/Reunion -opt/lampp/share/postgresql/timezone/Iran -opt/lampp/share/postgresql/timezone/Israel -opt/lampp/share/postgresql/timezone/Jamaica -opt/lampp/share/postgresql/timezone/Japan -opt/lampp/share/postgresql/timezone/Kwajalein -opt/lampp/share/postgresql/timezone/Libya -opt/lampp/share/postgresql/timezone/MET -opt/lampp/share/postgresql/timezone/MST -opt/lampp/share/postgresql/timezone/MST7MDT -opt/lampp/share/postgresql/timezone/Mexico -opt/lampp/share/postgresql/timezone/Mexico/BajaNorte -opt/lampp/share/postgresql/timezone/Mexico/BajaSur -opt/lampp/share/postgresql/timezone/Mexico/General -opt/lampp/share/postgresql/timezone/Mideast -opt/lampp/share/postgresql/timezone/Mideast/Riyadh87 -opt/lampp/share/postgresql/timezone/Mideast/Riyadh88 -opt/lampp/share/postgresql/timezone/Mideast/Riyadh89 -opt/lampp/share/postgresql/timezone/NZ -opt/lampp/share/postgresql/timezone/NZ-CHAT -opt/lampp/share/postgresql/timezone/Navajo -opt/lampp/share/postgresql/timezone/PRC -opt/lampp/share/postgresql/timezone/PST8PDT -opt/lampp/share/postgresql/timezone/Pacific -opt/lampp/share/postgresql/timezone/Pacific/Apia -opt/lampp/share/postgresql/timezone/Pacific/Auckland -opt/lampp/share/postgresql/timezone/Pacific/Chatham -opt/lampp/share/postgresql/timezone/Pacific/Easter -opt/lampp/share/postgresql/timezone/Pacific/Efate -opt/lampp/share/postgresql/timezone/Pacific/Enderbury -opt/lampp/share/postgresql/timezone/Pacific/Fakaofo -opt/lampp/share/postgresql/timezone/Pacific/Fiji -opt/lampp/share/postgresql/timezone/Pacific/Funafuti -opt/lampp/share/postgresql/timezone/Pacific/Galapagos -opt/lampp/share/postgresql/timezone/Pacific/Gambier -opt/lampp/share/postgresql/timezone/Pacific/Guadalcanal -opt/lampp/share/postgresql/timezone/Pacific/Guam -opt/lampp/share/postgresql/timezone/Pacific/Honolulu -opt/lampp/share/postgresql/timezone/Pacific/Johnston -opt/lampp/share/postgresql/timezone/Pacific/Kiritimati -opt/lampp/share/postgresql/timezone/Pacific/Kosrae -opt/lampp/share/postgresql/timezone/Pacific/Kwajalein -opt/lampp/share/postgresql/timezone/Pacific/Majuro -opt/lampp/share/postgresql/timezone/Pacific/Marquesas -opt/lampp/share/postgresql/timezone/Pacific/Midway -opt/lampp/share/postgresql/timezone/Pacific/Nauru -opt/lampp/share/postgresql/timezone/Pacific/Niue -opt/lampp/share/postgresql/timezone/Pacific/Norfolk -opt/lampp/share/postgresql/timezone/Pacific/Noumea -opt/lampp/share/postgresql/timezone/Pacific/Pago_Pago -opt/lampp/share/postgresql/timezone/Pacific/Palau -opt/lampp/share/postgresql/timezone/Pacific/Pitcairn -opt/lampp/share/postgresql/timezone/Pacific/Ponape -opt/lampp/share/postgresql/timezone/Pacific/Port_Moresby -opt/lampp/share/postgresql/timezone/Pacific/Rarotonga -opt/lampp/share/postgresql/timezone/Pacific/Saipan -opt/lampp/share/postgresql/timezone/Pacific/Samoa -opt/lampp/share/postgresql/timezone/Pacific/Tahiti -opt/lampp/share/postgresql/timezone/Pacific/Tarawa -opt/lampp/share/postgresql/timezone/Pacific/Tongatapu -opt/lampp/share/postgresql/timezone/Pacific/Truk -opt/lampp/share/postgresql/timezone/Pacific/Wake -opt/lampp/share/postgresql/timezone/Pacific/Wallis -opt/lampp/share/postgresql/timezone/Pacific/Yap -opt/lampp/share/postgresql/timezone/Poland -opt/lampp/share/postgresql/timezone/Portugal -opt/lampp/share/postgresql/timezone/ROC -opt/lampp/share/postgresql/timezone/ROK -opt/lampp/share/postgresql/timezone/Singapore -opt/lampp/share/postgresql/timezone/SystemV -opt/lampp/share/postgresql/timezone/SystemV/AST4 -opt/lampp/share/postgresql/timezone/SystemV/AST4ADT -opt/lampp/share/postgresql/timezone/SystemV/CST6 -opt/lampp/share/postgresql/timezone/SystemV/CST6CDT -opt/lampp/share/postgresql/timezone/SystemV/EST5 -opt/lampp/share/postgresql/timezone/SystemV/EST5EDT -opt/lampp/share/postgresql/timezone/SystemV/HST10 -opt/lampp/share/postgresql/timezone/SystemV/MST7 -opt/lampp/share/postgresql/timezone/SystemV/MST7MDT -opt/lampp/share/postgresql/timezone/SystemV/PST8 -opt/lampp/share/postgresql/timezone/SystemV/PST8PDT -opt/lampp/share/postgresql/timezone/SystemV/YST9 -opt/lampp/share/postgresql/timezone/SystemV/YST9YDT -opt/lampp/share/postgresql/timezone/Turkey -opt/lampp/share/postgresql/timezone/UCT -opt/lampp/share/postgresql/timezone/US -opt/lampp/share/postgresql/timezone/US/Alaska -opt/lampp/share/postgresql/timezone/US/Aleutian -opt/lampp/share/postgresql/timezone/US/Arizona -opt/lampp/share/postgresql/timezone/US/Central -opt/lampp/share/postgresql/timezone/US/East-Indiana -opt/lampp/share/postgresql/timezone/US/Eastern -opt/lampp/share/postgresql/timezone/US/Hawaii -opt/lampp/share/postgresql/timezone/US/Indiana-Starke -opt/lampp/share/postgresql/timezone/US/Michigan -opt/lampp/share/postgresql/timezone/US/Mountain -opt/lampp/share/postgresql/timezone/US/Pacific -opt/lampp/share/postgresql/timezone/US/Pacific-New -opt/lampp/share/postgresql/timezone/US/Samoa -opt/lampp/share/postgresql/timezone/UTC -opt/lampp/share/postgresql/timezone/Universal -opt/lampp/share/postgresql/timezone/W-SU -opt/lampp/share/postgresql/timezone/WET -opt/lampp/share/postgresql/timezone/Zulu -opt/lampp/share/tabset -opt/lampp/share/tabset/std -opt/lampp/share/tabset/stdcrt -opt/lampp/share/tabset/vt100 -opt/lampp/share/tabset/vt300 -#opt/lampp/share/terminfo -#opt/lampp/share/terminfo/1 -opt/lampp/share/terminfo/1/1178 -opt/lampp/share/terminfo/1/1730-lm -#opt/lampp/share/terminfo/2 -opt/lampp/share/terminfo/2/2621 -opt/lampp/share/terminfo/2/2621-wl -opt/lampp/share/terminfo/2/2621A -opt/lampp/share/terminfo/2/2621a -#opt/lampp/share/terminfo/3 -opt/lampp/share/terminfo/3/386at -opt/lampp/share/terminfo/3/3b1 -#opt/lampp/share/terminfo/4 -opt/lampp/share/terminfo/4/4025ex -opt/lampp/share/terminfo/4/4027ex -opt/lampp/share/terminfo/4/4410-w -#opt/lampp/share/terminfo/5 -opt/lampp/share/terminfo/5/5051 -opt/lampp/share/terminfo/5/5410-w -opt/lampp/share/terminfo/5/5620 -opt/lampp/share/terminfo/5/5630-24 -opt/lampp/share/terminfo/5/5630DMD-24 -#opt/lampp/share/terminfo/6 -opt/lampp/share/terminfo/6/6053 -opt/lampp/share/terminfo/6/6053-dg -opt/lampp/share/terminfo/6/605x -opt/lampp/share/terminfo/6/605x-dg -opt/lampp/share/terminfo/6/630-lm -opt/lampp/share/terminfo/6/630MTG-24 -#opt/lampp/share/terminfo/7 -opt/lampp/share/terminfo/7/730MTG-24 -opt/lampp/share/terminfo/7/730MTG-41 -opt/lampp/share/terminfo/7/730MTG-41r -opt/lampp/share/terminfo/7/730MTGr -opt/lampp/share/terminfo/7/730MTGr-24 -#opt/lampp/share/terminfo/8 -opt/lampp/share/terminfo/8/8510 -#opt/lampp/share/terminfo/9 -opt/lampp/share/terminfo/9/955-hb -opt/lampp/share/terminfo/9/955-w -#opt/lampp/share/terminfo/A -opt/lampp/share/terminfo/A/Apple_Terminal -#opt/lampp/share/terminfo/E -opt/lampp/share/terminfo/E/Eterm -opt/lampp/share/terminfo/E/Eterm-color -#opt/lampp/share/terminfo/L -opt/lampp/share/terminfo/L/LFT-PC850 -#opt/lampp/share/terminfo/M -opt/lampp/share/terminfo/M/MtxOrb -opt/lampp/share/terminfo/M/MtxOrb162 -opt/lampp/share/terminfo/M/MtxOrb204 -#opt/lampp/share/terminfo/N -opt/lampp/share/terminfo/N/NCR260VT300WPP -opt/lampp/share/terminfo/N/NCRVT100WPP -#opt/lampp/share/terminfo/P -opt/lampp/share/terminfo/P/P12 -opt/lampp/share/terminfo/P/P12-M -opt/lampp/share/terminfo/P/P12-M-W -opt/lampp/share/terminfo/P/P12-W -opt/lampp/share/terminfo/P/P14 -opt/lampp/share/terminfo/P/P14-M -opt/lampp/share/terminfo/P/P14-M-W -opt/lampp/share/terminfo/P/P14-W -opt/lampp/share/terminfo/P/P4 -opt/lampp/share/terminfo/P/P5 -opt/lampp/share/terminfo/P/P7 -opt/lampp/share/terminfo/P/P8 -opt/lampp/share/terminfo/P/P8-W -opt/lampp/share/terminfo/P/P9 -opt/lampp/share/terminfo/P/P9-8 -opt/lampp/share/terminfo/P/P9-8-W -opt/lampp/share/terminfo/P/P9-W -#opt/lampp/share/terminfo/Q -opt/lampp/share/terminfo/Q/Q306-8-pc -opt/lampp/share/terminfo/Q/Q310-vip-H -opt/lampp/share/terminfo/Q/Q310-vip-H-am -opt/lampp/share/terminfo/Q/Q310-vip-Hw -opt/lampp/share/terminfo/Q/Q310-vip-w -opt/lampp/share/terminfo/Q/Q310-vip-w-am -#opt/lampp/share/terminfo/X -opt/lampp/share/terminfo/X/X-hpterm -#opt/lampp/share/terminfo/a -opt/lampp/share/terminfo/a/a210 -opt/lampp/share/terminfo/a/a80 -opt/lampp/share/terminfo/a/a980 -opt/lampp/share/terminfo/a/aa4080 -opt/lampp/share/terminfo/a/aaa -opt/lampp/share/terminfo/a/aaadec -opt/lampp/share/terminfo/a/aaarv -opt/lampp/share/terminfo/a/aaaunk -opt/lampp/share/terminfo/a/aaa-18 -opt/lampp/share/terminfo/a/aaa-18-rv -opt/lampp/share/terminfo/a/aaa-20 -opt/lampp/share/terminfo/a/aaa-22 -opt/lampp/share/terminfo/a/aaa-24 -opt/lampp/share/terminfo/a/aaa-24-rv -opt/lampp/share/terminfo/a/aaa-26 -opt/lampp/share/terminfo/a/aaa-28 -opt/lampp/share/terminfo/a/aaa-30 -opt/lampp/share/terminfo/a/aaa-30-ctxt -opt/lampp/share/terminfo/a/aaa-30-rv -opt/lampp/share/terminfo/a/aaa-30-rv-ctxt -opt/lampp/share/terminfo/a/aaa-30-s -opt/lampp/share/terminfo/a/aaa-30-s-ctxt -opt/lampp/share/terminfo/a/aaa-30-s-rv -opt/lampp/share/terminfo/a/aaa-30-s-rv-ct -opt/lampp/share/terminfo/a/aaa-36 -opt/lampp/share/terminfo/a/aaa-36-rv -opt/lampp/share/terminfo/a/aaa-40 -opt/lampp/share/terminfo/a/aaa-40-rv -opt/lampp/share/terminfo/a/aaa-48 -opt/lampp/share/terminfo/a/aaa-48-rv -opt/lampp/share/terminfo/a/aaa-60 -opt/lampp/share/terminfo/a/aaa-60-dec-rv -opt/lampp/share/terminfo/a/aaa-60-rv -opt/lampp/share/terminfo/a/aaa-60-s -opt/lampp/share/terminfo/a/aaa-60-s-rv -opt/lampp/share/terminfo/a/aaa-ctxt -opt/lampp/share/terminfo/a/aaa-db -opt/lampp/share/terminfo/a/aaa-rv -opt/lampp/share/terminfo/a/aaa-rv-ctxt -opt/lampp/share/terminfo/a/aaa-rv-unk -opt/lampp/share/terminfo/a/aaa-s -opt/lampp/share/terminfo/a/aaa-s-ctxt -opt/lampp/share/terminfo/a/aaa-s-rv -opt/lampp/share/terminfo/a/aaa-s-rv-ctxt -opt/lampp/share/terminfo/a/aaa-unk -opt/lampp/share/terminfo/a/aas1901 -opt/lampp/share/terminfo/a/abm80 -opt/lampp/share/terminfo/a/abm85 -opt/lampp/share/terminfo/a/abm85e -opt/lampp/share/terminfo/a/abm85h -opt/lampp/share/terminfo/a/abm85h-old -opt/lampp/share/terminfo/a/act4 -opt/lampp/share/terminfo/a/act5 -opt/lampp/share/terminfo/a/addrinfo -opt/lampp/share/terminfo/a/adds980 -opt/lampp/share/terminfo/a/addsviewpoint -opt/lampp/share/terminfo/a/addsvp60 -opt/lampp/share/terminfo/a/admsgr -opt/lampp/share/terminfo/a/adm1 -opt/lampp/share/terminfo/a/adm11 -opt/lampp/share/terminfo/a/adm1178 -opt/lampp/share/terminfo/a/adm12 -opt/lampp/share/terminfo/a/adm1a -opt/lampp/share/terminfo/a/adm2 -opt/lampp/share/terminfo/a/adm20 -opt/lampp/share/terminfo/a/adm21 -opt/lampp/share/terminfo/a/adm22 -opt/lampp/share/terminfo/a/adm3 -opt/lampp/share/terminfo/a/adm31 -opt/lampp/share/terminfo/a/adm31-old -opt/lampp/share/terminfo/a/adm36 -opt/lampp/share/terminfo/a/adm3a -opt/lampp/share/terminfo/a/adm3a -opt/lampp/share/terminfo/a/adm42 -opt/lampp/share/terminfo/a/adm42-ns -opt/lampp/share/terminfo/a/adm5 -opt/lampp/share/terminfo/a/aepro -opt/lampp/share/terminfo/a/aixterm -opt/lampp/share/terminfo/a/aixterm-m -opt/lampp/share/terminfo/a/aixterm-m-old -opt/lampp/share/terminfo/a/aj -opt/lampp/share/terminfo/a/aj510 -opt/lampp/share/terminfo/a/aj830 -opt/lampp/share/terminfo/a/aj832 -opt/lampp/share/terminfo/a/alt2 -opt/lampp/share/terminfo/a/alt3 -opt/lampp/share/terminfo/a/alt4 -opt/lampp/share/terminfo/a/alt5 -opt/lampp/share/terminfo/a/alt7 -opt/lampp/share/terminfo/a/alt7pc -opt/lampp/share/terminfo/a/alto-h19 -opt/lampp/share/terminfo/a/alto-heath -opt/lampp/share/terminfo/a/altoh19 -opt/lampp/share/terminfo/a/altoheath -opt/lampp/share/terminfo/a/altos-2 -opt/lampp/share/terminfo/a/altos-3 -opt/lampp/share/terminfo/a/altos-4 -opt/lampp/share/terminfo/a/altos-5 -opt/lampp/share/terminfo/a/altos2 -opt/lampp/share/terminfo/a/altos3 -opt/lampp/share/terminfo/a/altos4 -opt/lampp/share/terminfo/a/altos5 -opt/lampp/share/terminfo/a/altos7 -opt/lampp/share/terminfo/a/altos7pc -opt/lampp/share/terminfo/a/ambas -opt/lampp/share/terminfo/a/ambassador -opt/lampp/share/terminfo/a/amiga -opt/lampp/share/terminfo/a/amiga-8bit -opt/lampp/share/terminfo/a/amiga-h -opt/lampp/share/terminfo/a/amiga-vnc -opt/lampp/share/terminfo/a/amp219 -opt/lampp/share/terminfo/a/amp219w -opt/lampp/share/terminfo/a/ampex-219 -opt/lampp/share/terminfo/a/ampex-219w -opt/lampp/share/terminfo/a/ampex-232 -opt/lampp/share/terminfo/a/ampex175 -opt/lampp/share/terminfo/a/ampex175-b -opt/lampp/share/terminfo/a/ampex210 -opt/lampp/share/terminfo/a/ampex219 -opt/lampp/share/terminfo/a/ampex219w -opt/lampp/share/terminfo/a/ampex232 -opt/lampp/share/terminfo/a/ampex232w -opt/lampp/share/terminfo/a/ampex80 -opt/lampp/share/terminfo/a/annarbor4080 -opt/lampp/share/terminfo/a/ansi -opt/lampp/share/terminfo/a/ansiarrows -opt/lampp/share/terminfo/a/ansicsr -opt/lampp/share/terminfo/a/ansicup -opt/lampp/share/terminfo/a/ansierase -opt/lampp/share/terminfo/a/ansiidc -opt/lampp/share/terminfo/a/ansiidl -opt/lampp/share/terminfo/a/ansiidl1 -opt/lampp/share/terminfo/a/ansiinittabs -opt/lampp/share/terminfo/a/ansilocal -opt/lampp/share/terminfo/a/ansilocal1 -opt/lampp/share/terminfo/a/ansipp -opt/lampp/share/terminfo/a/ansirca -opt/lampp/share/terminfo/a/ansirep -opt/lampp/share/terminfo/a/ansisgr -opt/lampp/share/terminfo/a/ansisgrbold -opt/lampp/share/terminfo/a/ansisgrdim -opt/lampp/share/terminfo/a/ansisgrso -opt/lampp/share/terminfo/a/ansisgrul -opt/lampp/share/terminfo/a/ansitabs -opt/lampp/share/terminfo/a/ansi-color-2-emx -opt/lampp/share/terminfo/a/ansi-color-3-emx -opt/lampp/share/terminfo/a/ansi-emx -opt/lampp/share/terminfo/a/ansi-generic -opt/lampp/share/terminfo/a/ansi-m -opt/lampp/share/terminfo/a/ansi-mini -opt/lampp/share/terminfo/a/ansi-mono -opt/lampp/share/terminfo/a/ansi-mr -opt/lampp/share/terminfo/a/ansi-mtabs -opt/lampp/share/terminfo/a/ansi-nt -opt/lampp/share/terminfo/a/ansi.sys -opt/lampp/share/terminfo/a/ansi.sys-old -opt/lampp/share/terminfo/a/ansi.sysk -opt/lampp/share/terminfo/a/ansi43m -opt/lampp/share/terminfo/a/ansi77 -opt/lampp/share/terminfo/a/ansi80x25 -opt/lampp/share/terminfo/a/ansi80x25-mono -opt/lampp/share/terminfo/a/ansi80x25-raw -opt/lampp/share/terminfo/a/ansi80x30 -opt/lampp/share/terminfo/a/ansi80x30-mono -opt/lampp/share/terminfo/a/ansi80x43 -opt/lampp/share/terminfo/a/ansi80x43-mono -opt/lampp/share/terminfo/a/ansi80x50 -opt/lampp/share/terminfo/a/ansi80x50-mono -opt/lampp/share/terminfo/a/ansi80x60 -opt/lampp/share/terminfo/a/ansi80x60-mono -opt/lampp/share/terminfo/a/ansil -opt/lampp/share/terminfo/a/ansil-mono -opt/lampp/share/terminfo/a/ansis -opt/lampp/share/terminfo/a/ansis-mono -opt/lampp/share/terminfo/a/ansisysk -opt/lampp/share/terminfo/a/ansiw -opt/lampp/share/terminfo/a/ap-vm80 -opt/lampp/share/terminfo/a/apl -opt/lampp/share/terminfo/a/apollo -opt/lampp/share/terminfo/a/apollo_15P -opt/lampp/share/terminfo/a/apollo_19L -opt/lampp/share/terminfo/a/apollo_color -opt/lampp/share/terminfo/a/apple-80 -opt/lampp/share/terminfo/a/apple-ae -opt/lampp/share/terminfo/a/apple-soroc -opt/lampp/share/terminfo/a/apple-uterm -opt/lampp/share/terminfo/a/apple-uterm-vb -opt/lampp/share/terminfo/a/apple-videx -opt/lampp/share/terminfo/a/apple-videx2 -opt/lampp/share/terminfo/a/apple-videx3 -opt/lampp/share/terminfo/a/apple-vm80 -opt/lampp/share/terminfo/a/apple2e -opt/lampp/share/terminfo/a/apple2e-p -opt/lampp/share/terminfo/a/apple80p -opt/lampp/share/terminfo/a/appleII -opt/lampp/share/terminfo/a/appleIIc -opt/lampp/share/terminfo/a/appleIIe -opt/lampp/share/terminfo/a/appleIIgs -opt/lampp/share/terminfo/a/arm100 -opt/lampp/share/terminfo/a/arm100-am -opt/lampp/share/terminfo/a/arm100-w -opt/lampp/share/terminfo/a/arm100-wam -opt/lampp/share/terminfo/a/at386 -opt/lampp/share/terminfo/a/atari -opt/lampp/share/terminfo/a/att2300 -opt/lampp/share/terminfo/a/att2350 -opt/lampp/share/terminfo/a/att4410 -opt/lampp/share/terminfo/a/att4410-w -opt/lampp/share/terminfo/a/att4410v1 -opt/lampp/share/terminfo/a/att4410v1-w -opt/lampp/share/terminfo/a/att4415 -opt/lampp/share/terminfo/a/att4415nl -opt/lampp/share/terminfo/a/att4415-nl -opt/lampp/share/terminfo/a/att4415-rv -opt/lampp/share/terminfo/a/att4415-rv-nl -opt/lampp/share/terminfo/a/att4415-w -opt/lampp/share/terminfo/a/att4415-w-nl -opt/lampp/share/terminfo/a/att4415-w-rv -opt/lampp/share/terminfo/a/att4415-w-rv-n -opt/lampp/share/terminfo/a/att4418 -opt/lampp/share/terminfo/a/att4418-w -opt/lampp/share/terminfo/a/att4420 -opt/lampp/share/terminfo/a/att4424 -opt/lampp/share/terminfo/a/att4424-1 -opt/lampp/share/terminfo/a/att4424m -opt/lampp/share/terminfo/a/att4425 -opt/lampp/share/terminfo/a/att4425-nl -opt/lampp/share/terminfo/a/att4425-w -opt/lampp/share/terminfo/a/att4426 -opt/lampp/share/terminfo/a/att500 -opt/lampp/share/terminfo/a/att505 -opt/lampp/share/terminfo/a/att505-24 -opt/lampp/share/terminfo/a/att510a -opt/lampp/share/terminfo/a/att510d -opt/lampp/share/terminfo/a/att513 -opt/lampp/share/terminfo/a/att5310 -opt/lampp/share/terminfo/a/att5320 -opt/lampp/share/terminfo/a/att5410 -opt/lampp/share/terminfo/a/att5410-w -opt/lampp/share/terminfo/a/att5410v1 -opt/lampp/share/terminfo/a/att5410v1-w -opt/lampp/share/terminfo/a/att5418 -opt/lampp/share/terminfo/a/att5418-w -opt/lampp/share/terminfo/a/att5420 -opt/lampp/share/terminfo/a/att5420nl -opt/lampp/share/terminfo/a/att5420-nl -opt/lampp/share/terminfo/a/att5420-rv -opt/lampp/share/terminfo/a/att5420-rv-nl -opt/lampp/share/terminfo/a/att5420-w -opt/lampp/share/terminfo/a/att5420-w-nl -opt/lampp/share/terminfo/a/att5420-w-rv -opt/lampp/share/terminfo/a/att5420-w-rv-n -opt/lampp/share/terminfo/a/att5420_2 -opt/lampp/share/terminfo/a/att5420_2-w -opt/lampp/share/terminfo/a/att5425 -opt/lampp/share/terminfo/a/att5425-nl -opt/lampp/share/terminfo/a/att5425-w -opt/lampp/share/terminfo/a/att5430 -opt/lampp/share/terminfo/a/att5620 -opt/lampp/share/terminfo/a/att5620-1 -opt/lampp/share/terminfo/a/att5620-24 -opt/lampp/share/terminfo/a/att5620-34 -opt/lampp/share/terminfo/a/att5620-s -opt/lampp/share/terminfo/a/att605 -opt/lampp/share/terminfo/a/att605-pc -opt/lampp/share/terminfo/a/att605-w -opt/lampp/share/terminfo/a/att610 -opt/lampp/share/terminfo/a/att610-103k -opt/lampp/share/terminfo/a/att610-103k-w -opt/lampp/share/terminfo/a/att610-w -opt/lampp/share/terminfo/a/att615 -opt/lampp/share/terminfo/a/att615-103k -opt/lampp/share/terminfo/a/att615-103k-w -opt/lampp/share/terminfo/a/att615-w -opt/lampp/share/terminfo/a/att620 -opt/lampp/share/terminfo/a/att620-103k -opt/lampp/share/terminfo/a/att620-103k-w -opt/lampp/share/terminfo/a/att620-w -opt/lampp/share/terminfo/a/att630 -opt/lampp/share/terminfo/a/att630-24 -opt/lampp/share/terminfo/a/att6386 -opt/lampp/share/terminfo/a/att700 -opt/lampp/share/terminfo/a/att730 -opt/lampp/share/terminfo/a/att730-24 -opt/lampp/share/terminfo/a/att730-41 -opt/lampp/share/terminfo/a/att7300 -opt/lampp/share/terminfo/a/att730r -opt/lampp/share/terminfo/a/att730r-24 -opt/lampp/share/terminfo/a/att730r-41 -opt/lampp/share/terminfo/a/avatar -opt/lampp/share/terminfo/a/avatar0 -opt/lampp/share/terminfo/a/avatar0 -opt/lampp/share/terminfo/a/avatar1 -opt/lampp/share/terminfo/a/avt -opt/lampp/share/terminfo/a/avts -opt/lampp/share/terminfo/a/avt-ns -opt/lampp/share/terminfo/a/avt-rv -opt/lampp/share/terminfo/a/avt-rv-ns -opt/lampp/share/terminfo/a/avt-rv-s -opt/lampp/share/terminfo/a/avt-s -opt/lampp/share/terminfo/a/avt-w -opt/lampp/share/terminfo/a/avt-w-ns -opt/lampp/share/terminfo/a/avt-w-rv -opt/lampp/share/terminfo/a/avt-w-rv-ns -opt/lampp/share/terminfo/a/avt-w-rv-s -opt/lampp/share/terminfo/a/avt-w-s -opt/lampp/share/terminfo/a/aws -opt/lampp/share/terminfo/a/awsc -#opt/lampp/share/terminfo/b -opt/lampp/share/terminfo/b/b-128 -opt/lampp/share/terminfo/b/bantam -opt/lampp/share/terminfo/b/basic4 -opt/lampp/share/terminfo/b/basis -opt/lampp/share/terminfo/b/bct510a -opt/lampp/share/terminfo/b/bct510d -opt/lampp/share/terminfo/b/beacon -opt/lampp/share/terminfo/b/bee -opt/lampp/share/terminfo/b/beehive -opt/lampp/share/terminfo/b/beehive3 -opt/lampp/share/terminfo/b/beehive4 -opt/lampp/share/terminfo/b/beehiveIIIm -opt/lampp/share/terminfo/b/beterm -opt/lampp/share/terminfo/b/bg1.25 -opt/lampp/share/terminfo/b/bg1.25nv -opt/lampp/share/terminfo/b/bg1.25rv -opt/lampp/share/terminfo/b/bg2.0 -opt/lampp/share/terminfo/b/bg2.0nv -opt/lampp/share/terminfo/b/bg2.0rv -opt/lampp/share/terminfo/b/bg3.10 -opt/lampp/share/terminfo/b/bg3.10nv -opt/lampp/share/terminfo/b/bg3.10rv -opt/lampp/share/terminfo/b/bh3m -opt/lampp/share/terminfo/b/bh4 -opt/lampp/share/terminfo/b/bitgraph -opt/lampp/share/terminfo/b/blit -opt/lampp/share/terminfo/b/bobcat -opt/lampp/share/terminfo/b/bq300 -opt/lampp/share/terminfo/b/bq300-8 -opt/lampp/share/terminfo/b/bq300-8-pc -opt/lampp/share/terminfo/b/bq300-8-pc-rv -opt/lampp/share/terminfo/b/bq300-8-pc-w -opt/lampp/share/terminfo/b/bq300-8-pc-w-rv -opt/lampp/share/terminfo/b/bq300-8rv -opt/lampp/share/terminfo/b/bq300-8w -opt/lampp/share/terminfo/b/bq300-pc -opt/lampp/share/terminfo/b/bq300-pc-rv -opt/lampp/share/terminfo/b/bq300-pc-w -opt/lampp/share/terminfo/b/bq300-pc-w-rv -opt/lampp/share/terminfo/b/bq300-rv -opt/lampp/share/terminfo/b/bq300-w -opt/lampp/share/terminfo/b/bq300-w-8rv -opt/lampp/share/terminfo/b/bq300-w-rv -opt/lampp/share/terminfo/b/bsdos-pc -opt/lampp/share/terminfo/b/bsdos-pc-m -opt/lampp/share/terminfo/b/bsdos-pc-mono -opt/lampp/share/terminfo/b/bsdos-pc-nobold -opt/lampp/share/terminfo/b/bsdos-ppc -opt/lampp/share/terminfo/b/bsdos-sparc -#opt/lampp/share/terminfo/c -opt/lampp/share/terminfo/c/c100 -opt/lampp/share/terminfo/c/c100-1p -opt/lampp/share/terminfo/c/c100-4p -opt/lampp/share/terminfo/c/c100-rv -opt/lampp/share/terminfo/c/c100-rv-4p -opt/lampp/share/terminfo/c/c104 -opt/lampp/share/terminfo/c/c108 -opt/lampp/share/terminfo/c/c108-4p -opt/lampp/share/terminfo/c/c108-8p -opt/lampp/share/terminfo/c/c108-rv -opt/lampp/share/terminfo/c/c108-rv-4p -opt/lampp/share/terminfo/c/c108-rv-8p -opt/lampp/share/terminfo/c/c108-w -opt/lampp/share/terminfo/c/c108-w-8p -opt/lampp/share/terminfo/c/c300 -opt/lampp/share/terminfo/c/c301 -opt/lampp/share/terminfo/c/c321 -opt/lampp/share/terminfo/c/ca22851 -opt/lampp/share/terminfo/c/cad68-2 -opt/lampp/share/terminfo/c/cad68-3 -opt/lampp/share/terminfo/c/cbblit -opt/lampp/share/terminfo/c/cbunix -opt/lampp/share/terminfo/c/cci -opt/lampp/share/terminfo/c/cci1 -opt/lampp/share/terminfo/c/cdc456 -opt/lampp/share/terminfo/c/cdc721 -opt/lampp/share/terminfo/c/cdc721-esc -opt/lampp/share/terminfo/c/cdc721ll -opt/lampp/share/terminfo/c/cdc752 -opt/lampp/share/terminfo/c/cdc756 -opt/lampp/share/terminfo/c/cg7900 -opt/lampp/share/terminfo/c/cgc2 -opt/lampp/share/terminfo/c/cgc3 -opt/lampp/share/terminfo/c/chromatics -opt/lampp/share/terminfo/c/ci8510 -opt/lampp/share/terminfo/c/cit-80 -opt/lampp/share/terminfo/c/cit101 -opt/lampp/share/terminfo/c/cit101e -opt/lampp/share/terminfo/c/cit101e-132 -opt/lampp/share/terminfo/c/cit101e-n -opt/lampp/share/terminfo/c/cit101e-n132 -opt/lampp/share/terminfo/c/cit101e-rv -opt/lampp/share/terminfo/c/cit500 -opt/lampp/share/terminfo/c/cit80 -opt/lampp/share/terminfo/c/citc -opt/lampp/share/terminfo/c/citoh -opt/lampp/share/terminfo/c/citoh-6lpi -opt/lampp/share/terminfo/c/citoh-8lpi -opt/lampp/share/terminfo/c/citoh-comp -opt/lampp/share/terminfo/c/citoh-elite -opt/lampp/share/terminfo/c/citoh-pica -opt/lampp/share/terminfo/c/citoh-prop -opt/lampp/share/terminfo/c/citoh-ps -opt/lampp/share/terminfo/c/coco3 -opt/lampp/share/terminfo/c/coherent -opt/lampp/share/terminfo/c/color_xterm -opt/lampp/share/terminfo/c/colorscan -opt/lampp/share/terminfo/c/commodore -opt/lampp/share/terminfo/c/concept -opt/lampp/share/terminfo/c/concept-avt -opt/lampp/share/terminfo/c/concept100 -opt/lampp/share/terminfo/c/concept100-rv -opt/lampp/share/terminfo/c/concept108 -opt/lampp/share/terminfo/c/concept108-4p -opt/lampp/share/terminfo/c/concept108-8p -opt/lampp/share/terminfo/c/concept108-w-8 -opt/lampp/share/terminfo/c/concept108-w8p -opt/lampp/share/terminfo/c/concept108rv4p -opt/lampp/share/terminfo/c/cons25 -opt/lampp/share/terminfo/c/cons25-iso-m -opt/lampp/share/terminfo/c/cons25-iso8859 -opt/lampp/share/terminfo/c/cons25-koi8-r -opt/lampp/share/terminfo/c/cons25-koi8r-m -opt/lampp/share/terminfo/c/cons25-m -opt/lampp/share/terminfo/c/cons25l1 -opt/lampp/share/terminfo/c/cons25l1-m -opt/lampp/share/terminfo/c/cons25r -opt/lampp/share/terminfo/c/cons25r-m -opt/lampp/share/terminfo/c/cons25w -opt/lampp/share/terminfo/c/cons30 -opt/lampp/share/terminfo/c/cons30-m -opt/lampp/share/terminfo/c/cons43 -opt/lampp/share/terminfo/c/cons43-m -opt/lampp/share/terminfo/c/cons50 -opt/lampp/share/terminfo/c/cons50-iso-m -opt/lampp/share/terminfo/c/cons50-iso8859 -opt/lampp/share/terminfo/c/cons50-koi8r -opt/lampp/share/terminfo/c/cons50-koi8r-m -opt/lampp/share/terminfo/c/cons50-m -opt/lampp/share/terminfo/c/cons50l1 -opt/lampp/share/terminfo/c/cons50l1-m -opt/lampp/share/terminfo/c/cons50r -opt/lampp/share/terminfo/c/cons50r-m -opt/lampp/share/terminfo/c/cons60 -opt/lampp/share/terminfo/c/cons60-iso -opt/lampp/share/terminfo/c/cons60-iso-m -opt/lampp/share/terminfo/c/cons60-koi8r -opt/lampp/share/terminfo/c/cons60-koi8r-m -opt/lampp/share/terminfo/c/cons60-m -opt/lampp/share/terminfo/c/cons60l1 -opt/lampp/share/terminfo/c/cons60l1-m -opt/lampp/share/terminfo/c/cons60r -opt/lampp/share/terminfo/c/cons60r-m -opt/lampp/share/terminfo/c/contel300 -opt/lampp/share/terminfo/c/contel301 -opt/lampp/share/terminfo/c/contel320 -opt/lampp/share/terminfo/c/contel321 -opt/lampp/share/terminfo/c/cops -opt/lampp/share/terminfo/c/cops-10 -opt/lampp/share/terminfo/c/cops10 -opt/lampp/share/terminfo/c/crt -opt/lampp/share/terminfo/c/crt-vt220 -opt/lampp/share/terminfo/c/cs10 -opt/lampp/share/terminfo/c/cs10-w -opt/lampp/share/terminfo/c/ct82 -opt/lampp/share/terminfo/c/ct8500 -opt/lampp/share/terminfo/c/ctrm -opt/lampp/share/terminfo/c/cx -opt/lampp/share/terminfo/c/cx100 -opt/lampp/share/terminfo/c/cyb110 -opt/lampp/share/terminfo/c/cyb83 -opt/lampp/share/terminfo/c/cygwin -opt/lampp/share/terminfo/c/cygwinB19 -#opt/lampp/share/terminfo/d -opt/lampp/share/terminfo/d/d132 -opt/lampp/share/terminfo/d/d2 -opt/lampp/share/terminfo/d/d2-dg -opt/lampp/share/terminfo/d/d200 -opt/lampp/share/terminfo/d/d200-dg -opt/lampp/share/terminfo/d/d210 -opt/lampp/share/terminfo/d/d210-dg -opt/lampp/share/terminfo/d/d211 -opt/lampp/share/terminfo/d/d211-7b -opt/lampp/share/terminfo/d/d211-dg -opt/lampp/share/terminfo/d/d214 -opt/lampp/share/terminfo/d/d214-dg -opt/lampp/share/terminfo/d/d215 -opt/lampp/share/terminfo/d/d215-7b -opt/lampp/share/terminfo/d/d215-dg -opt/lampp/share/terminfo/d/d216 -opt/lampp/share/terminfo/d/d21625 -opt/lampp/share/terminfo/d/d216dg -opt/lampp/share/terminfo/d/d216-dg -opt/lampp/share/terminfo/d/d216-unix -opt/lampp/share/terminfo/d/d216-unix-25 -opt/lampp/share/terminfo/d/d216e -opt/lampp/share/terminfo/d/d216edg -opt/lampp/share/terminfo/d/d216e-dg -opt/lampp/share/terminfo/d/d216e-unix -opt/lampp/share/terminfo/d/d217-dg -opt/lampp/share/terminfo/d/d217-unix -opt/lampp/share/terminfo/d/d217-unix-25 -opt/lampp/share/terminfo/d/d220 -opt/lampp/share/terminfo/d/d220-7b -opt/lampp/share/terminfo/d/d220-dg -opt/lampp/share/terminfo/d/d230 -opt/lampp/share/terminfo/d/d230-dg -opt/lampp/share/terminfo/d/d230c -opt/lampp/share/terminfo/d/d230c-dg -opt/lampp/share/terminfo/d/d400 -opt/lampp/share/terminfo/d/d400-dg -opt/lampp/share/terminfo/d/d410 -opt/lampp/share/terminfo/d/d410-7b -opt/lampp/share/terminfo/d/d410-7b-w -opt/lampp/share/terminfo/d/d410-dg -opt/lampp/share/terminfo/d/d410-w -opt/lampp/share/terminfo/d/d411 -opt/lampp/share/terminfo/d/d411-7b -opt/lampp/share/terminfo/d/d411-7b-w -opt/lampp/share/terminfo/d/d411-dg -opt/lampp/share/terminfo/d/d411-w -opt/lampp/share/terminfo/d/d412 -opt/lampp/share/terminfo/d/d41225 -opt/lampp/share/terminfo/d/d412dg -opt/lampp/share/terminfo/d/d412s -opt/lampp/share/terminfo/d/d412sr -opt/lampp/share/terminfo/d/d412w -opt/lampp/share/terminfo/d/d412-dg -opt/lampp/share/terminfo/d/d412-unix -opt/lampp/share/terminfo/d/d412-unix-25 -opt/lampp/share/terminfo/d/d412-unix-s -opt/lampp/share/terminfo/d/d412-unix-sr -opt/lampp/share/terminfo/d/d412-unix-w -opt/lampp/share/terminfo/d/d413-dg -opt/lampp/share/terminfo/d/d413-unix -opt/lampp/share/terminfo/d/d413-unix-25 -opt/lampp/share/terminfo/d/d413-unix-s -opt/lampp/share/terminfo/d/d413-unix-sr -opt/lampp/share/terminfo/d/d413-unix-w -opt/lampp/share/terminfo/d/d414-unix -opt/lampp/share/terminfo/d/d414-unix-25 -opt/lampp/share/terminfo/d/d414-unix-s -opt/lampp/share/terminfo/d/d414-unix-sr -opt/lampp/share/terminfo/d/d414-unix-w -opt/lampp/share/terminfo/d/d430-dg -opt/lampp/share/terminfo/d/d430-dg-ccc -opt/lampp/share/terminfo/d/d430-unix -opt/lampp/share/terminfo/d/d430-unix-25 -opt/lampp/share/terminfo/d/d430-unix-25-ccc -opt/lampp/share/terminfo/d/d430-unix-ccc -opt/lampp/share/terminfo/d/d430-unix-s -opt/lampp/share/terminfo/d/d430-unix-s-ccc -opt/lampp/share/terminfo/d/d430-unix-sr -opt/lampp/share/terminfo/d/d430-unix-sr-ccc -opt/lampp/share/terminfo/d/d430-unix-w -opt/lampp/share/terminfo/d/d430-unix-w-ccc -opt/lampp/share/terminfo/d/d430c-dg -opt/lampp/share/terminfo/d/d430c-dg-ccc -opt/lampp/share/terminfo/d/d430c-unix -opt/lampp/share/terminfo/d/d430c-unix-25 -opt/lampp/share/terminfo/d/d430c-unix-25-ccc -opt/lampp/share/terminfo/d/d430c-unix-ccc -opt/lampp/share/terminfo/d/d430c-unix-s -opt/lampp/share/terminfo/d/d430c-unix-s-ccc -opt/lampp/share/terminfo/d/d430c-unix-sr -opt/lampp/share/terminfo/d/d430c-unix-sr-ccc -opt/lampp/share/terminfo/d/d430c-unix-w -opt/lampp/share/terminfo/d/d430c-unix-w-ccc -opt/lampp/share/terminfo/d/d450 -opt/lampp/share/terminfo/d/d450-dg -opt/lampp/share/terminfo/d/d460 -opt/lampp/share/terminfo/d/d460-7b -opt/lampp/share/terminfo/d/d460-7b-w -opt/lampp/share/terminfo/d/d460-dg -opt/lampp/share/terminfo/d/d460-w -opt/lampp/share/terminfo/d/d461 -opt/lampp/share/terminfo/d/d461-7b -opt/lampp/share/terminfo/d/d461-7b-w -opt/lampp/share/terminfo/d/d461-dg -opt/lampp/share/terminfo/d/d461-w -opt/lampp/share/terminfo/d/d462 -opt/lampp/share/terminfo/d/d46225 -opt/lampp/share/terminfo/d/d462dg -opt/lampp/share/terminfo/d/d462s -opt/lampp/share/terminfo/d/d462sr -opt/lampp/share/terminfo/d/d462w -opt/lampp/share/terminfo/d/d462-dg -opt/lampp/share/terminfo/d/d462-unix -opt/lampp/share/terminfo/d/d462-unix-25 -opt/lampp/share/terminfo/d/d462-unix-s -opt/lampp/share/terminfo/d/d462-unix-sr -opt/lampp/share/terminfo/d/d462-unix-w -opt/lampp/share/terminfo/d/d462e-dg -opt/lampp/share/terminfo/d/d463-dg -opt/lampp/share/terminfo/d/d463-unix -opt/lampp/share/terminfo/d/d463-unix-25 -opt/lampp/share/terminfo/d/d463-unix-s -opt/lampp/share/terminfo/d/d463-unix-sr -opt/lampp/share/terminfo/d/d463-unix-w -opt/lampp/share/terminfo/d/d464-unix -opt/lampp/share/terminfo/d/d464-unix-25 -opt/lampp/share/terminfo/d/d464-unix-s -opt/lampp/share/terminfo/d/d464-unix-sr -opt/lampp/share/terminfo/d/d464-unix-w -opt/lampp/share/terminfo/d/d470 -opt/lampp/share/terminfo/d/d470-7b -opt/lampp/share/terminfo/d/d470-dg -opt/lampp/share/terminfo/d/d470c -opt/lampp/share/terminfo/d/d470c-7b -opt/lampp/share/terminfo/d/d470c-dg -opt/lampp/share/terminfo/d/d555 -opt/lampp/share/terminfo/d/d555-7b -opt/lampp/share/terminfo/d/d555-7b-w -opt/lampp/share/terminfo/d/d555-dg -opt/lampp/share/terminfo/d/d555-w -opt/lampp/share/terminfo/d/d577 -opt/lampp/share/terminfo/d/d577-7b -opt/lampp/share/terminfo/d/d577-7b-w -opt/lampp/share/terminfo/d/d577-dg -opt/lampp/share/terminfo/d/d577-w -opt/lampp/share/terminfo/d/d578 -opt/lampp/share/terminfo/d/d578-7b -opt/lampp/share/terminfo/d/d578-dg -opt/lampp/share/terminfo/d/d80 -opt/lampp/share/terminfo/d/d800 -opt/lampp/share/terminfo/d/darwin -opt/lampp/share/terminfo/d/darwin-100x37 -opt/lampp/share/terminfo/d/darwin-100x37-m -opt/lampp/share/terminfo/d/darwin-112x37 -opt/lampp/share/terminfo/d/darwin-112x37-m -opt/lampp/share/terminfo/d/darwin-128x40 -opt/lampp/share/terminfo/d/darwin-128x40-m -opt/lampp/share/terminfo/d/darwin-128x48 -opt/lampp/share/terminfo/d/darwin-128x48-m -opt/lampp/share/terminfo/d/darwin-144x48 -opt/lampp/share/terminfo/d/darwin-144x48-m -opt/lampp/share/terminfo/d/darwin-160x64 -opt/lampp/share/terminfo/d/darwin-160x64-m -opt/lampp/share/terminfo/d/darwin-200x64 -opt/lampp/share/terminfo/d/darwin-200x64-m -opt/lampp/share/terminfo/d/darwin-200x75 -opt/lampp/share/terminfo/d/darwin-200x75-m -opt/lampp/share/terminfo/d/darwin-256x96 -opt/lampp/share/terminfo/d/darwin-256x96-m -opt/lampp/share/terminfo/d/darwin-80x25 -opt/lampp/share/terminfo/d/darwin-80x25-m -opt/lampp/share/terminfo/d/darwin-80x30 -opt/lampp/share/terminfo/d/darwin-80x30-m -opt/lampp/share/terminfo/d/darwin-90x30 -opt/lampp/share/terminfo/d/darwin-90x30-m -opt/lampp/share/terminfo/d/darwin-b -opt/lampp/share/terminfo/d/darwin-f -opt/lampp/share/terminfo/d/darwin-f2 -opt/lampp/share/terminfo/d/darwin-m -opt/lampp/share/terminfo/d/darwin-m-b -opt/lampp/share/terminfo/d/darwin-m-f -opt/lampp/share/terminfo/d/darwin-m-f2 -opt/lampp/share/terminfo/d/datagraphix -opt/lampp/share/terminfo/d/datamedia2500 -opt/lampp/share/terminfo/d/datapoint -opt/lampp/share/terminfo/d/dataspeed40 -opt/lampp/share/terminfo/d/dd5000 -opt/lampp/share/terminfo/d/ddr -opt/lampp/share/terminfo/d/ddr3180 -opt/lampp/share/terminfo/d/dec-vt100 -opt/lampp/share/terminfo/d/dec-vt220 -opt/lampp/share/terminfo/d/dec-vt330 -opt/lampp/share/terminfo/d/dec-vt340 -opt/lampp/share/terminfo/d/dec-vt400 -opt/lampp/share/terminfo/d/decpro -opt/lampp/share/terminfo/d/decwriter -opt/lampp/share/terminfo/d/delta -opt/lampp/share/terminfo/d/dgccc -opt/lampp/share/terminfo/d/dgcolor -opt/lampp/share/terminfo/d/dgcolor8 -opt/lampp/share/terminfo/d/dgfixed -opt/lampp/share/terminfo/d/dg-ansi -opt/lampp/share/terminfo/d/dg-generic -opt/lampp/share/terminfo/d/dg100 -opt/lampp/share/terminfo/d/dg200 -opt/lampp/share/terminfo/d/dg210 -opt/lampp/share/terminfo/d/dg211 -opt/lampp/share/terminfo/d/dg450 -opt/lampp/share/terminfo/d/dg460-ansi -opt/lampp/share/terminfo/d/dg6053 -opt/lampp/share/terminfo/d/dg6053-old -opt/lampp/share/terminfo/d/dg605x -opt/lampp/share/terminfo/d/dg6134 -opt/lampp/share/terminfo/d/dgkeys11 -opt/lampp/share/terminfo/d/dgkeys15 -opt/lampp/share/terminfo/d/dgkeys7b -opt/lampp/share/terminfo/d/dgkeys8b -opt/lampp/share/terminfo/d/dgmodecolor -opt/lampp/share/terminfo/d/dgmodecolor8 -opt/lampp/share/terminfo/d/dgunixccc -opt/lampp/share/terminfo/d/dgunixfixed -opt/lampp/share/terminfo/d/diablo -opt/lampp/share/terminfo/d/diablo-lm -opt/lampp/share/terminfo/d/diablo1620 -opt/lampp/share/terminfo/d/diablo1620-m8 -opt/lampp/share/terminfo/d/diablo1640 -opt/lampp/share/terminfo/d/diablo1640-lm -opt/lampp/share/terminfo/d/diablo1640-m8 -opt/lampp/share/terminfo/d/diablo1720 -opt/lampp/share/terminfo/d/diablo1730 -opt/lampp/share/terminfo/d/diablo1740 -opt/lampp/share/terminfo/d/diablo1740-lm -opt/lampp/share/terminfo/d/diablo450 -opt/lampp/share/terminfo/d/diablo630 -opt/lampp/share/terminfo/d/dialogue -opt/lampp/share/terminfo/d/dialogue80 -opt/lampp/share/terminfo/d/digilog -opt/lampp/share/terminfo/d/dku7003 -opt/lampp/share/terminfo/d/dku7003-dumb -opt/lampp/share/terminfo/d/dku7102 -opt/lampp/share/terminfo/d/dku7102-old -opt/lampp/share/terminfo/d/dku7102-sna -opt/lampp/share/terminfo/d/dku7103-sna -opt/lampp/share/terminfo/d/dku7202 -opt/lampp/share/terminfo/d/dm1520 -opt/lampp/share/terminfo/d/dm1521 -opt/lampp/share/terminfo/d/dm2500 -opt/lampp/share/terminfo/d/dm3025 -opt/lampp/share/terminfo/d/dm3045 -opt/lampp/share/terminfo/d/dm80 -opt/lampp/share/terminfo/d/dm80w -opt/lampp/share/terminfo/d/dmchat -opt/lampp/share/terminfo/d/dmd -opt/lampp/share/terminfo/d/dmd-24 -opt/lampp/share/terminfo/d/dmd-34 -opt/lampp/share/terminfo/d/dmd1 -opt/lampp/share/terminfo/d/dmdt80 -opt/lampp/share/terminfo/d/dmdt80w -opt/lampp/share/terminfo/d/dmterm -opt/lampp/share/terminfo/d/dp3360 -opt/lampp/share/terminfo/d/dp8242 -opt/lampp/share/terminfo/d/ds40 -opt/lampp/share/terminfo/d/ds40-2 -opt/lampp/share/terminfo/d/dt-100 -opt/lampp/share/terminfo/d/dt-100w -opt/lampp/share/terminfo/d/dt100 -opt/lampp/share/terminfo/d/dt100w -opt/lampp/share/terminfo/d/dt110 -opt/lampp/share/terminfo/d/dt80 -opt/lampp/share/terminfo/d/dt80-sas -opt/lampp/share/terminfo/d/dt80w -opt/lampp/share/terminfo/d/dtc300s -opt/lampp/share/terminfo/d/dtc382 -opt/lampp/share/terminfo/d/dtterm -opt/lampp/share/terminfo/d/dumb -opt/lampp/share/terminfo/d/dw -opt/lampp/share/terminfo/d/dw1 -opt/lampp/share/terminfo/d/dw2 -opt/lampp/share/terminfo/d/dw3 -opt/lampp/share/terminfo/d/dw4 -opt/lampp/share/terminfo/d/dwk -opt/lampp/share/terminfo/d/dwk-vt -#opt/lampp/share/terminfo/e -opt/lampp/share/terminfo/e/ecmacolor -opt/lampp/share/terminfo/e/ecmasgr -opt/lampp/share/terminfo/e/elks -opt/lampp/share/terminfo/e/elks-ansi -opt/lampp/share/terminfo/e/elks-glasstty -opt/lampp/share/terminfo/e/elks-vt52 -opt/lampp/share/terminfo/e/emots -opt/lampp/share/terminfo/e/emu -opt/lampp/share/terminfo/e/env230 -opt/lampp/share/terminfo/e/envision230 -opt/lampp/share/terminfo/e/ep40 -opt/lampp/share/terminfo/e/ep4000 -opt/lampp/share/terminfo/e/ep4080 -opt/lampp/share/terminfo/e/ep48 -opt/lampp/share/terminfo/e/ergo4000 -opt/lampp/share/terminfo/e/esprit -opt/lampp/share/terminfo/e/esprit-am -opt/lampp/share/terminfo/e/eterm -opt/lampp/share/terminfo/e/ex155 -opt/lampp/share/terminfo/e/excel62 -opt/lampp/share/terminfo/e/excel62-rv -opt/lampp/share/terminfo/e/excel62-w -opt/lampp/share/terminfo/e/excel64 -opt/lampp/share/terminfo/e/excel64-rv -opt/lampp/share/terminfo/e/excel64-w -opt/lampp/share/terminfo/e/exec80 -#opt/lampp/share/terminfo/f -opt/lampp/share/terminfo/f/f100 -opt/lampp/share/terminfo/f/f100-rv -opt/lampp/share/terminfo/f/f110 -opt/lampp/share/terminfo/f/f110-14 -opt/lampp/share/terminfo/f/f110-14w -opt/lampp/share/terminfo/f/f110-w -opt/lampp/share/terminfo/f/f1720 -opt/lampp/share/terminfo/f/f1720a -opt/lampp/share/terminfo/f/f200 -opt/lampp/share/terminfo/f/f200-w -opt/lampp/share/terminfo/f/f200vi -opt/lampp/share/terminfo/f/f200vi-w -opt/lampp/share/terminfo/f/falco -opt/lampp/share/terminfo/f/falco-p -opt/lampp/share/terminfo/f/fenix -opt/lampp/share/terminfo/f/fenixw -opt/lampp/share/terminfo/f/fixterm -opt/lampp/share/terminfo/f/fortune -opt/lampp/share/terminfo/f/fos -opt/lampp/share/terminfo/f/fox -opt/lampp/share/terminfo/f/freedom -opt/lampp/share/terminfo/f/freedom-rv -opt/lampp/share/terminfo/f/freedom100 -opt/lampp/share/terminfo/f/freedom110 -opt/lampp/share/terminfo/f/freedom200 -#opt/lampp/share/terminfo/g -opt/lampp/share/terminfo/g/gator -opt/lampp/share/terminfo/g/gator-52 -opt/lampp/share/terminfo/g/gator-52t -opt/lampp/share/terminfo/g/gator-t -opt/lampp/share/terminfo/g/gigi -opt/lampp/share/terminfo/g/glasstty -opt/lampp/share/terminfo/g/gnome -opt/lampp/share/terminfo/g/gnome-rh62 -opt/lampp/share/terminfo/g/gnome-rh72 -opt/lampp/share/terminfo/g/go-225 -opt/lampp/share/terminfo/g/go140 -opt/lampp/share/terminfo/g/go140w -opt/lampp/share/terminfo/g/go225 -opt/lampp/share/terminfo/g/graphos -opt/lampp/share/terminfo/g/graphos-30 -opt/lampp/share/terminfo/g/gs5430 -opt/lampp/share/terminfo/g/gs5430-22 -opt/lampp/share/terminfo/g/gs5430-24 -opt/lampp/share/terminfo/g/gs6300 -opt/lampp/share/terminfo/g/gsi -opt/lampp/share/terminfo/g/gt100 -opt/lampp/share/terminfo/g/gt100a -opt/lampp/share/terminfo/g/gt40 -opt/lampp/share/terminfo/g/gt42 -opt/lampp/share/terminfo/g/guru -opt/lampp/share/terminfo/g/gururv -opt/lampp/share/terminfo/g/gurus -opt/lampp/share/terminfo/g/guruunk -opt/lampp/share/terminfo/g/guru-24 -opt/lampp/share/terminfo/g/guru-33 -opt/lampp/share/terminfo/g/guru-33-rv -opt/lampp/share/terminfo/g/guru-33-s -opt/lampp/share/terminfo/g/guru-44 -opt/lampp/share/terminfo/g/guru-44-s -opt/lampp/share/terminfo/g/guru-76 -opt/lampp/share/terminfo/g/guru-76-lp -opt/lampp/share/terminfo/g/guru-76-s -opt/lampp/share/terminfo/g/guru-76-w -opt/lampp/share/terminfo/g/guru-76-w-s -opt/lampp/share/terminfo/g/guru-76-wm -opt/lampp/share/terminfo/g/guru-lp -opt/lampp/share/terminfo/g/guru-nctxt -opt/lampp/share/terminfo/g/guru-rv -opt/lampp/share/terminfo/g/guru-s -#opt/lampp/share/terminfo/h -opt/lampp/share/terminfo/h/h-100 -opt/lampp/share/terminfo/h/h-100bw -opt/lampp/share/terminfo/h/h100 -opt/lampp/share/terminfo/h/h100bw -opt/lampp/share/terminfo/h/h19 -opt/lampp/share/terminfo/h/h19-a -opt/lampp/share/terminfo/h/h19-b -opt/lampp/share/terminfo/h/h19-bs -opt/lampp/share/terminfo/h/h19-g -opt/lampp/share/terminfo/h/h19-smul -opt/lampp/share/terminfo/h/h19-u -opt/lampp/share/terminfo/h/h19-us -opt/lampp/share/terminfo/h/h19a -opt/lampp/share/terminfo/h/h19g -opt/lampp/share/terminfo/h/h19k -opt/lampp/share/terminfo/h/h19kermit -opt/lampp/share/terminfo/h/h19us -opt/lampp/share/terminfo/h/h29a-kc-bc -opt/lampp/share/terminfo/h/h29a-kc-uc -opt/lampp/share/terminfo/h/h29a-nkc-bc -opt/lampp/share/terminfo/h/h29a-nkc-uc -opt/lampp/share/terminfo/h/h80 -opt/lampp/share/terminfo/h/ha8675 -opt/lampp/share/terminfo/h/ha8686 -opt/lampp/share/terminfo/h/hazel -opt/lampp/share/terminfo/h/hds200 -opt/lampp/share/terminfo/h/he80 -opt/lampp/share/terminfo/h/heath -opt/lampp/share/terminfo/h/heath-19 -opt/lampp/share/terminfo/h/heath-ansi -opt/lampp/share/terminfo/h/heathkit -opt/lampp/share/terminfo/h/heathkit-a -opt/lampp/share/terminfo/h/hft -opt/lampp/share/terminfo/h/hft-c -opt/lampp/share/terminfo/h/hft-c-old -opt/lampp/share/terminfo/h/hft-old -opt/lampp/share/terminfo/h/hirez100 -opt/lampp/share/terminfo/h/hirez100-w -opt/lampp/share/terminfo/h/hmod1 -opt/lampp/share/terminfo/h/hp -opt/lampp/share/terminfo/h/hparrows -opt/lampp/share/terminfo/h/hpcolor -opt/lampp/share/terminfo/h/hplabels -opt/lampp/share/terminfo/h/hppfkarrows -opt/lampp/share/terminfo/h/hppfkcr -opt/lampp/share/terminfo/h/hppfk-cr -opt/lampp/share/terminfo/h/hpprinter -opt/lampp/share/terminfo/h/hp110 -opt/lampp/share/terminfo/h/hp150 -opt/lampp/share/terminfo/h/hp2 -opt/lampp/share/terminfo/h/hp236 -opt/lampp/share/terminfo/h/hp2382 -opt/lampp/share/terminfo/h/hp2382a -opt/lampp/share/terminfo/h/hp2392 -opt/lampp/share/terminfo/h/hp2397 -opt/lampp/share/terminfo/h/hp2397a -opt/lampp/share/terminfo/h/hp2621 -opt/lampp/share/terminfo/h/hp2621-48 -opt/lampp/share/terminfo/h/hp2621-a -opt/lampp/share/terminfo/h/hp2621-ba -opt/lampp/share/terminfo/h/hp2621-fl -opt/lampp/share/terminfo/h/hp2621-k45 -opt/lampp/share/terminfo/h/hp2621-nl -opt/lampp/share/terminfo/h/hp2621-nt -opt/lampp/share/terminfo/h/hp2621-wl -opt/lampp/share/terminfo/h/hp2621A -opt/lampp/share/terminfo/h/hp2621a -opt/lampp/share/terminfo/h/hp2621a-a -opt/lampp/share/terminfo/h/hp2621b -opt/lampp/share/terminfo/h/hp2621b-kx -opt/lampp/share/terminfo/h/hp2621b-kx-p -opt/lampp/share/terminfo/h/hp2621b-p -opt/lampp/share/terminfo/h/hp2621k45 -opt/lampp/share/terminfo/h/hp2621p -opt/lampp/share/terminfo/h/hp2621p-a -opt/lampp/share/terminfo/h/hp2622 -opt/lampp/share/terminfo/h/hp2622a -opt/lampp/share/terminfo/h/hp2623 -opt/lampp/share/terminfo/h/hp2623a -opt/lampp/share/terminfo/h/hp2624 -opt/lampp/share/terminfo/h/hp2624-10p -opt/lampp/share/terminfo/h/hp2624a -opt/lampp/share/terminfo/h/hp2624a-10p -opt/lampp/share/terminfo/h/hp2624b -opt/lampp/share/terminfo/h/hp2624b-10p -opt/lampp/share/terminfo/h/hp2624b-10p-p -opt/lampp/share/terminfo/h/hp2624b-4p -opt/lampp/share/terminfo/h/hp2624b-4p-p -opt/lampp/share/terminfo/h/hp2624b-p -opt/lampp/share/terminfo/h/hp2626 -opt/lampp/share/terminfo/h/hp2626-12 -opt/lampp/share/terminfo/h/hp2626-12-s -opt/lampp/share/terminfo/h/hp2626-12x40 -opt/lampp/share/terminfo/h/hp2626-ns -opt/lampp/share/terminfo/h/hp2626-s -opt/lampp/share/terminfo/h/hp2626-x40 -opt/lampp/share/terminfo/h/hp2626a -opt/lampp/share/terminfo/h/hp2626p -opt/lampp/share/terminfo/h/hp2627a -opt/lampp/share/terminfo/h/hp2627a-rev -opt/lampp/share/terminfo/h/hp2627c -opt/lampp/share/terminfo/h/hp262x -opt/lampp/share/terminfo/h/hp2640a -opt/lampp/share/terminfo/h/hp2640b -opt/lampp/share/terminfo/h/hp2641a -opt/lampp/share/terminfo/h/hp2644a -opt/lampp/share/terminfo/h/hp2645 -opt/lampp/share/terminfo/h/hp2645a -opt/lampp/share/terminfo/h/hp2647a -opt/lampp/share/terminfo/h/hp2648 -opt/lampp/share/terminfo/h/hp2648a -opt/lampp/share/terminfo/h/hp300h -opt/lampp/share/terminfo/h/hp45 -opt/lampp/share/terminfo/h/hp700 -opt/lampp/share/terminfo/h/hp700-wy -opt/lampp/share/terminfo/h/hp70092 -opt/lampp/share/terminfo/h/hp70092A -opt/lampp/share/terminfo/h/hp70092a -opt/lampp/share/terminfo/h/hp9837 -opt/lampp/share/terminfo/h/hp9845 -opt/lampp/share/terminfo/h/hp98550 -opt/lampp/share/terminfo/h/hp98550a -opt/lampp/share/terminfo/h/hp98720 -opt/lampp/share/terminfo/h/hp98721 -opt/lampp/share/terminfo/h/hpansi -opt/lampp/share/terminfo/h/hpex -opt/lampp/share/terminfo/h/hpex2 -opt/lampp/share/terminfo/h/hpgeneric -opt/lampp/share/terminfo/h/hpsub -opt/lampp/share/terminfo/h/hpterm -opt/lampp/share/terminfo/h/htx11 -opt/lampp/share/terminfo/h/hz1000 -opt/lampp/share/terminfo/h/hz1420 -opt/lampp/share/terminfo/h/hz1500 -opt/lampp/share/terminfo/h/hz1510 -opt/lampp/share/terminfo/h/hz1520 -opt/lampp/share/terminfo/h/hz1520-noesc -opt/lampp/share/terminfo/h/hz1552 -opt/lampp/share/terminfo/h/hz1552-rv -opt/lampp/share/terminfo/h/hz2000 -#opt/lampp/share/terminfo/i -opt/lampp/share/terminfo/i/i100 -opt/lampp/share/terminfo/i/i3101 -opt/lampp/share/terminfo/i/i3164 -opt/lampp/share/terminfo/i/i400 -opt/lampp/share/terminfo/i/ibcs2 -opt/lampp/share/terminfo/i/ibm16color -opt/lampp/share/terminfo/i/ibmcolor -opt/lampp/share/terminfo/i/ibm-apl -opt/lampp/share/terminfo/i/ibm-pc -opt/lampp/share/terminfo/i/ibm-system1 -opt/lampp/share/terminfo/i/ibm3101 -opt/lampp/share/terminfo/i/ibm3151 -opt/lampp/share/terminfo/i/ibm3161 -opt/lampp/share/terminfo/i/ibm3161-C -opt/lampp/share/terminfo/i/ibm3162 -opt/lampp/share/terminfo/i/ibm3163 -opt/lampp/share/terminfo/i/ibm3164 -opt/lampp/share/terminfo/i/ibm327x -opt/lampp/share/terminfo/i/ibm5051 -opt/lampp/share/terminfo/i/ibm5081 -opt/lampp/share/terminfo/i/ibm5081-c -opt/lampp/share/terminfo/i/ibm5151 -opt/lampp/share/terminfo/i/ibm5154 -opt/lampp/share/terminfo/i/ibm5154-c -opt/lampp/share/terminfo/i/ibm6153 -opt/lampp/share/terminfo/i/ibm6153-40 -opt/lampp/share/terminfo/i/ibm6153-90 -opt/lampp/share/terminfo/i/ibm6154 -opt/lampp/share/terminfo/i/ibm6154-c -opt/lampp/share/terminfo/i/ibm6155 -opt/lampp/share/terminfo/i/ibm8503 -opt/lampp/share/terminfo/i/ibm8507 -opt/lampp/share/terminfo/i/ibm8512 -opt/lampp/share/terminfo/i/ibm8513 -opt/lampp/share/terminfo/i/ibm8514 -opt/lampp/share/terminfo/i/ibm8514-c -opt/lampp/share/terminfo/i/ibm8604 -opt/lampp/share/terminfo/i/ibmaed -opt/lampp/share/terminfo/i/ibmapa16 -opt/lampp/share/terminfo/i/ibmapa8 -opt/lampp/share/terminfo/i/ibmapa8c -opt/lampp/share/terminfo/i/ibmapa8c-c -opt/lampp/share/terminfo/i/ibmega -opt/lampp/share/terminfo/i/ibmega-c -opt/lampp/share/terminfo/i/ibmmono -opt/lampp/share/terminfo/i/ibmmpel-c -opt/lampp/share/terminfo/i/ibmpc -opt/lampp/share/terminfo/i/ibmpc3 -opt/lampp/share/terminfo/i/ibmpc3r -opt/lampp/share/terminfo/i/ibmpc3r-mono -opt/lampp/share/terminfo/i/ibmpcx -opt/lampp/share/terminfo/i/ibmvga -opt/lampp/share/terminfo/i/ibmvga-c -opt/lampp/share/terminfo/i/ibmx -opt/lampp/share/terminfo/i/icl6402 -opt/lampp/share/terminfo/i/icl6404 -opt/lampp/share/terminfo/i/icl6404-w -opt/lampp/share/terminfo/i/ifmr -opt/lampp/share/terminfo/i/ims-ansi -opt/lampp/share/terminfo/i/ims950 -opt/lampp/share/terminfo/i/ims950-b -opt/lampp/share/terminfo/i/ims950-rv -opt/lampp/share/terminfo/i/infoton -opt/lampp/share/terminfo/i/intertec -opt/lampp/share/terminfo/i/intertube -opt/lampp/share/terminfo/i/intertube2 -opt/lampp/share/terminfo/i/intext -opt/lampp/share/terminfo/i/intext2 -opt/lampp/share/terminfo/i/intextii -opt/lampp/share/terminfo/i/ips -opt/lampp/share/terminfo/i/ipsi -opt/lampp/share/terminfo/i/iq120 -opt/lampp/share/terminfo/i/iq140 -opt/lampp/share/terminfo/i/iris-ansi -opt/lampp/share/terminfo/i/iris-ansi-ap -opt/lampp/share/terminfo/i/iris-ansi-net -opt/lampp/share/terminfo/i/iris-color -opt/lampp/share/terminfo/i/iris40 -#opt/lampp/share/terminfo/j -opt/lampp/share/terminfo/j/jaixterm -opt/lampp/share/terminfo/j/jaixterm-m -opt/lampp/share/terminfo/j/jerq -#opt/lampp/share/terminfo/k -opt/lampp/share/terminfo/k/k45 -opt/lampp/share/terminfo/k/kaypro -opt/lampp/share/terminfo/k/kaypro2 -opt/lampp/share/terminfo/k/kds6402 -opt/lampp/share/terminfo/k/kds7372 -opt/lampp/share/terminfo/k/kds7372-w -opt/lampp/share/terminfo/k/kermit -opt/lampp/share/terminfo/k/kermit-am -opt/lampp/share/terminfo/k/kloneacs -opt/lampp/share/terminfo/k/klonecolor -opt/lampp/share/terminfo/k/klonekoi8acs -opt/lampp/share/terminfo/k/klonesgr -opt/lampp/share/terminfo/k/klonesgr-dumb -opt/lampp/share/terminfo/k/konsole -opt/lampp/share/terminfo/k/konsole-16color -opt/lampp/share/terminfo/k/konsole-base -opt/lampp/share/terminfo/k/konsole-linux -opt/lampp/share/terminfo/k/konsole-vt100 -opt/lampp/share/terminfo/k/konsole-vt420pc -opt/lampp/share/terminfo/k/konsole-xf3x -opt/lampp/share/terminfo/k/konsole-xf4x -opt/lampp/share/terminfo/k/kt7 -opt/lampp/share/terminfo/k/kt7ix -opt/lampp/share/terminfo/k/kterm -opt/lampp/share/terminfo/k/kterm-co -opt/lampp/share/terminfo/k/kterm-color -opt/lampp/share/terminfo/k/ktm -opt/lampp/share/terminfo/k/kvt -#opt/lampp/share/terminfo/l -opt/lampp/share/terminfo/l/la120 -opt/lampp/share/terminfo/l/layer -opt/lampp/share/terminfo/l/lft -opt/lampp/share/terminfo/l/lft-pc850 -opt/lampp/share/terminfo/l/linux -opt/lampp/share/terminfo/l/linux-basic -opt/lampp/share/terminfo/l/linux-c -opt/lampp/share/terminfo/l/linux-c-nc -opt/lampp/share/terminfo/l/linux-koi8 -opt/lampp/share/terminfo/l/linux-koi8r -opt/lampp/share/terminfo/l/linux-lat -opt/lampp/share/terminfo/l/linux-m -opt/lampp/share/terminfo/l/linux-nic -opt/lampp/share/terminfo/l/lisa -opt/lampp/share/terminfo/l/lisaterm -opt/lampp/share/terminfo/l/lisaterm-w -opt/lampp/share/terminfo/l/liswb -opt/lampp/share/terminfo/l/ln03 -opt/lampp/share/terminfo/l/ln03-w -opt/lampp/share/terminfo/l/lpr -opt/lampp/share/terminfo/l/luna -opt/lampp/share/terminfo/l/luna68k -#opt/lampp/share/terminfo/m -opt/lampp/share/terminfo/m/m2-nam -opt/lampp/share/terminfo/m/mac -opt/lampp/share/terminfo/m/mac-w -opt/lampp/share/terminfo/m/mach -opt/lampp/share/terminfo/m/mach-bold -opt/lampp/share/terminfo/m/mach-color -opt/lampp/share/terminfo/m/macintosh -opt/lampp/share/terminfo/m/macterminal-w -opt/lampp/share/terminfo/m/mai -opt/lampp/share/terminfo/m/masscomp -opt/lampp/share/terminfo/m/masscomp1 -opt/lampp/share/terminfo/m/masscomp2 -opt/lampp/share/terminfo/m/mdl110 -opt/lampp/share/terminfo/m/megatek -opt/lampp/share/terminfo/m/memhp -opt/lampp/share/terminfo/m/mgr -opt/lampp/share/terminfo/m/mgr-linux -opt/lampp/share/terminfo/m/mgr-sun -opt/lampp/share/terminfo/m/mgterm -opt/lampp/share/terminfo/m/microb -opt/lampp/share/terminfo/m/microbee -opt/lampp/share/terminfo/m/microterm -opt/lampp/share/terminfo/m/microterm5 -opt/lampp/share/terminfo/m/mime -opt/lampp/share/terminfo/m/mime-3ax -opt/lampp/share/terminfo/m/mime-fb -opt/lampp/share/terminfo/m/mime-hb -opt/lampp/share/terminfo/m/mime1 -opt/lampp/share/terminfo/m/mime2 -opt/lampp/share/terminfo/m/mime2a -opt/lampp/share/terminfo/m/mime2a-s -opt/lampp/share/terminfo/m/mime2a-v -opt/lampp/share/terminfo/m/mime314 -opt/lampp/share/terminfo/m/mime340 -opt/lampp/share/terminfo/m/mime3a -opt/lampp/share/terminfo/m/mime3ax -opt/lampp/share/terminfo/m/mimei -opt/lampp/share/terminfo/m/mimeii -opt/lampp/share/terminfo/m/minitel -opt/lampp/share/terminfo/m/minitel-2 -opt/lampp/share/terminfo/m/minitel-2-nam -opt/lampp/share/terminfo/m/minitel1 -opt/lampp/share/terminfo/m/minitel1b -opt/lampp/share/terminfo/m/minitel1b-80 -opt/lampp/share/terminfo/m/minix -opt/lampp/share/terminfo/m/minix-old -opt/lampp/share/terminfo/m/minix-old-am -opt/lampp/share/terminfo/m/mm314 -opt/lampp/share/terminfo/m/mm340 -opt/lampp/share/terminfo/m/mod -opt/lampp/share/terminfo/m/mod24 -opt/lampp/share/terminfo/m/modgraph -opt/lampp/share/terminfo/m/modgraph2 -opt/lampp/share/terminfo/m/modgraph48 -opt/lampp/share/terminfo/m/mono-emx -opt/lampp/share/terminfo/m/ms-vt100 -opt/lampp/share/terminfo/m/ms-vt100-color -opt/lampp/share/terminfo/m/msk227 -opt/lampp/share/terminfo/m/msk22714 -opt/lampp/share/terminfo/m/msk227am -opt/lampp/share/terminfo/m/mskermit227 -opt/lampp/share/terminfo/m/mskermit22714 -opt/lampp/share/terminfo/m/mskermit227am -opt/lampp/share/terminfo/m/mt-70 -opt/lampp/share/terminfo/m/mt4520-rv -opt/lampp/share/terminfo/m/mt70 -opt/lampp/share/terminfo/m/mvterm -#opt/lampp/share/terminfo/n -opt/lampp/share/terminfo/n/nansi.sys -opt/lampp/share/terminfo/n/nansi.sysk -opt/lampp/share/terminfo/n/nansisys -opt/lampp/share/terminfo/n/nansisysk -opt/lampp/share/terminfo/n/ncr160vppp -opt/lampp/share/terminfo/n/ncr160vpwpp -opt/lampp/share/terminfo/n/ncr160vt100an -opt/lampp/share/terminfo/n/ncr160vt100pp -opt/lampp/share/terminfo/n/ncr160vt100wan -opt/lampp/share/terminfo/n/ncr160vt100wpp -opt/lampp/share/terminfo/n/ncr160vt200an -opt/lampp/share/terminfo/n/ncr160vt200pp -opt/lampp/share/terminfo/n/ncr160vt200wan -opt/lampp/share/terminfo/n/ncr160vt200wpp -opt/lampp/share/terminfo/n/ncr160vt300an -opt/lampp/share/terminfo/n/ncr160vt300pp -opt/lampp/share/terminfo/n/ncr160vt300wan -opt/lampp/share/terminfo/n/ncr160vt300wpp -opt/lampp/share/terminfo/n/ncr160wy50pp -opt/lampp/share/terminfo/n/ncr160wy50wpp -opt/lampp/share/terminfo/n/ncr160wy60pp -opt/lampp/share/terminfo/n/ncr160wy60wpp -opt/lampp/share/terminfo/n/ncr260intan -opt/lampp/share/terminfo/n/ncr260intpp -opt/lampp/share/terminfo/n/ncr260intwan -opt/lampp/share/terminfo/n/ncr260intwpp -opt/lampp/share/terminfo/n/ncr260vppp -opt/lampp/share/terminfo/n/ncr260vpwpp -opt/lampp/share/terminfo/n/ncr260vt100an -opt/lampp/share/terminfo/n/ncr260vt100pp -opt/lampp/share/terminfo/n/ncr260vt100wan -opt/lampp/share/terminfo/n/ncr260vt100wpp -opt/lampp/share/terminfo/n/ncr260vt200an -opt/lampp/share/terminfo/n/ncr260vt200pp -opt/lampp/share/terminfo/n/ncr260vt200wan -opt/lampp/share/terminfo/n/ncr260vt200wpp -opt/lampp/share/terminfo/n/ncr260vt300an -opt/lampp/share/terminfo/n/ncr260vt300pp -opt/lampp/share/terminfo/n/ncr260vt300wan -opt/lampp/share/terminfo/n/ncr260vt300wpp -opt/lampp/share/terminfo/n/ncr260wy325pp -opt/lampp/share/terminfo/n/ncr260wy325wpp -opt/lampp/share/terminfo/n/ncr260wy350pp -opt/lampp/share/terminfo/n/ncr260wy350wpp -opt/lampp/share/terminfo/n/ncr260wy50pp -opt/lampp/share/terminfo/n/ncr260wy50wpp -opt/lampp/share/terminfo/n/ncr260wy60pp -opt/lampp/share/terminfo/n/ncr260wy60wpp -opt/lampp/share/terminfo/n/ncr7900 -opt/lampp/share/terminfo/n/ncr7900i -opt/lampp/share/terminfo/n/ncr7900iv -opt/lampp/share/terminfo/n/ncr7901 -opt/lampp/share/terminfo/n/ncrvt100an -opt/lampp/share/terminfo/n/ncrvt100pp -opt/lampp/share/terminfo/n/ncrvt100wan -opt/lampp/share/terminfo/n/ncrvt100wpp -opt/lampp/share/terminfo/n/ncsa -opt/lampp/share/terminfo/n/ncsa-m -opt/lampp/share/terminfo/n/ncsa-m-ns -opt/lampp/share/terminfo/n/ncsa-ns -opt/lampp/share/terminfo/n/ncsa-vt220 -opt/lampp/share/terminfo/n/ncsa-vt220-8 -opt/lampp/share/terminfo/n/nec -opt/lampp/share/terminfo/n/nec5520 -opt/lampp/share/terminfo/n/newhp -opt/lampp/share/terminfo/n/newhpkeyboard -opt/lampp/share/terminfo/n/news -opt/lampp/share/terminfo/n/news-29 -opt/lampp/share/terminfo/n/news-29-euc -opt/lampp/share/terminfo/n/news-29-sjis -opt/lampp/share/terminfo/n/news-33 -opt/lampp/share/terminfo/n/news-33-euc -opt/lampp/share/terminfo/n/news-33-sjis -opt/lampp/share/terminfo/n/news-42 -opt/lampp/share/terminfo/n/news-42-euc -opt/lampp/share/terminfo/n/news-42-sjis -opt/lampp/share/terminfo/n/news-a -opt/lampp/share/terminfo/n/news-o -opt/lampp/share/terminfo/n/news-old-unk -opt/lampp/share/terminfo/n/news-unk -opt/lampp/share/terminfo/n/news28 -opt/lampp/share/terminfo/n/news28-a -opt/lampp/share/terminfo/n/news29 -opt/lampp/share/terminfo/n/news31 -opt/lampp/share/terminfo/n/news31-a -opt/lampp/share/terminfo/n/news31-o -opt/lampp/share/terminfo/n/news33 -opt/lampp/share/terminfo/n/news40 -opt/lampp/share/terminfo/n/news40-a -opt/lampp/share/terminfo/n/news40-o -opt/lampp/share/terminfo/n/news42 -opt/lampp/share/terminfo/n/newscbm -opt/lampp/share/terminfo/n/newscbm-a -opt/lampp/share/terminfo/n/newscbm-o -opt/lampp/share/terminfo/n/newscbm33 -opt/lampp/share/terminfo/n/next -opt/lampp/share/terminfo/n/nextshell -opt/lampp/share/terminfo/n/northstar -opt/lampp/share/terminfo/n/nsterm -opt/lampp/share/terminfo/n/nsterm7 -opt/lampp/share/terminfo/n/nstermacs -opt/lampp/share/terminfo/n/nstermc -opt/lampp/share/terminfo/n/nstermc41 -opt/lampp/share/terminfo/n/nstermmac -opt/lampp/share/terminfo/n/nsterms -opt/lampp/share/terminfo/n/nsterm-7 -opt/lampp/share/terminfo/n/nsterm-7-c -opt/lampp/share/terminfo/n/nsterm-7-c-s -opt/lampp/share/terminfo/n/nsterm-7-m -opt/lampp/share/terminfo/n/nsterm-7-m-s -opt/lampp/share/terminfo/n/nsterm-7-s -opt/lampp/share/terminfo/n/nsterm-acs -opt/lampp/share/terminfo/n/nsterm-acs-c -opt/lampp/share/terminfo/n/nsterm-acs-c-s -opt/lampp/share/terminfo/n/nsterm-acs-m -opt/lampp/share/terminfo/n/nsterm-acs-m-s -opt/lampp/share/terminfo/n/nsterm-acs-s -opt/lampp/share/terminfo/n/nsterm-c -opt/lampp/share/terminfo/n/nsterm-c-7 -opt/lampp/share/terminfo/n/nsterm-c-acs -opt/lampp/share/terminfo/n/nsterm-c-s -opt/lampp/share/terminfo/n/nsterm-c-s-7 -opt/lampp/share/terminfo/n/nsterm-c-s-acs -opt/lampp/share/terminfo/n/nsterm-m -opt/lampp/share/terminfo/n/nsterm-m-7 -opt/lampp/share/terminfo/n/nsterm-m-acs -opt/lampp/share/terminfo/n/nsterm-m-s -opt/lampp/share/terminfo/n/nsterm-m-s-7 -opt/lampp/share/terminfo/n/nsterm-m-s-acs -opt/lampp/share/terminfo/n/nsterm-s -opt/lampp/share/terminfo/n/nsterm-s-7 -opt/lampp/share/terminfo/n/nsterm-s-acs -opt/lampp/share/terminfo/n/nwe501 -opt/lampp/share/terminfo/n/nwe501-a -opt/lampp/share/terminfo/n/nwe501-o -opt/lampp/share/terminfo/n/nwp-511 -opt/lampp/share/terminfo/n/nwp-517 -opt/lampp/share/terminfo/n/nwp-517-w -opt/lampp/share/terminfo/n/nwp251-a -opt/lampp/share/terminfo/n/nwp251-o -opt/lampp/share/terminfo/n/nwp511 -opt/lampp/share/terminfo/n/nwp512 -opt/lampp/share/terminfo/n/nwp512-a -opt/lampp/share/terminfo/n/nwp512-o -opt/lampp/share/terminfo/n/nwp513 -opt/lampp/share/terminfo/n/nwp513-a -opt/lampp/share/terminfo/n/nwp513-o -opt/lampp/share/terminfo/n/nwp514 -opt/lampp/share/terminfo/n/nwp514-a -opt/lampp/share/terminfo/n/nwp514-o -opt/lampp/share/terminfo/n/nwp517 -opt/lampp/share/terminfo/n/nwp517-w -opt/lampp/share/terminfo/n/nwp518 -opt/lampp/share/terminfo/n/nwp518-a -opt/lampp/share/terminfo/n/nwp518-o -opt/lampp/share/terminfo/n/nxterm -#opt/lampp/share/terminfo/o -opt/lampp/share/terminfo/o/o31 -opt/lampp/share/terminfo/o/o4112-nd -opt/lampp/share/terminfo/o/o85h -opt/lampp/share/terminfo/o/oabm85h -opt/lampp/share/terminfo/o/oblit -opt/lampp/share/terminfo/o/oc100 -opt/lampp/share/terminfo/o/oconcept -opt/lampp/share/terminfo/o/ofcons -opt/lampp/share/terminfo/o/ojerq -opt/lampp/share/terminfo/o/oldibmpc3 -opt/lampp/share/terminfo/o/oldpc3 -opt/lampp/share/terminfo/o/oldsun -opt/lampp/share/terminfo/o/omron -opt/lampp/share/terminfo/o/opus3n1 -opt/lampp/share/terminfo/o/origibmpc3 -opt/lampp/share/terminfo/o/origpc3 -opt/lampp/share/terminfo/o/os9LII -opt/lampp/share/terminfo/o/osborne -opt/lampp/share/terminfo/o/osborne-w -opt/lampp/share/terminfo/o/osborne1 -opt/lampp/share/terminfo/o/osborne1-w -opt/lampp/share/terminfo/o/osexec -opt/lampp/share/terminfo/o/otek4112 -opt/lampp/share/terminfo/o/otek4113 -opt/lampp/share/terminfo/o/otek4114 -opt/lampp/share/terminfo/o/otek4115 -opt/lampp/share/terminfo/o/owl -#opt/lampp/share/terminfo/p -opt/lampp/share/terminfo/p/p12 -opt/lampp/share/terminfo/p/p12-m -opt/lampp/share/terminfo/p/p12-m-w -opt/lampp/share/terminfo/p/p12-w -opt/lampp/share/terminfo/p/p14 -opt/lampp/share/terminfo/p/p14-m -opt/lampp/share/terminfo/p/p14-m-w -opt/lampp/share/terminfo/p/p14-w -opt/lampp/share/terminfo/p/p19 -opt/lampp/share/terminfo/p/p4 -opt/lampp/share/terminfo/p/p5 -opt/lampp/share/terminfo/p/p7 -opt/lampp/share/terminfo/p/p8 -opt/lampp/share/terminfo/p/p8-w -opt/lampp/share/terminfo/p/p8gl -opt/lampp/share/terminfo/p/p9 -opt/lampp/share/terminfo/p/p9-8 -opt/lampp/share/terminfo/p/p9-8-w -opt/lampp/share/terminfo/p/p9-w -opt/lampp/share/terminfo/p/pc-coherent -opt/lampp/share/terminfo/p/pc-minix -opt/lampp/share/terminfo/p/pc-venix -opt/lampp/share/terminfo/p/pc3 -opt/lampp/share/terminfo/p/pc3-bold -opt/lampp/share/terminfo/p/pc3r -opt/lampp/share/terminfo/p/pc3r-m -opt/lampp/share/terminfo/p/pc6300plus -opt/lampp/share/terminfo/p/pc7300 -opt/lampp/share/terminfo/p/pcansi -opt/lampp/share/terminfo/p/pcansi-25 -opt/lampp/share/terminfo/p/pcansi-25-m -opt/lampp/share/terminfo/p/pcansi-33 -opt/lampp/share/terminfo/p/pcansi-33-m -opt/lampp/share/terminfo/p/pcansi-43 -opt/lampp/share/terminfo/p/pcansi-43-m -opt/lampp/share/terminfo/p/pcansi-m -opt/lampp/share/terminfo/p/pcansi-mono -opt/lampp/share/terminfo/p/pcansi25 -opt/lampp/share/terminfo/p/pcansi25m -opt/lampp/share/terminfo/p/pcansi33 -opt/lampp/share/terminfo/p/pcansi33m -opt/lampp/share/terminfo/p/pcansi43 -opt/lampp/share/terminfo/p/pccons -opt/lampp/share/terminfo/p/pcconsole -opt/lampp/share/terminfo/p/pcix -opt/lampp/share/terminfo/p/pckermit -opt/lampp/share/terminfo/p/pckermit12 -opt/lampp/share/terminfo/p/pckermit120 -opt/lampp/share/terminfo/p/pcmw -opt/lampp/share/terminfo/p/pcplot -opt/lampp/share/terminfo/p/pcvt25 -opt/lampp/share/terminfo/p/pcvt25-color -opt/lampp/share/terminfo/p/pcvt25w -opt/lampp/share/terminfo/p/pcvt28 -opt/lampp/share/terminfo/p/pcvt28w -opt/lampp/share/terminfo/p/pcvt35 -opt/lampp/share/terminfo/p/pcvt35w -opt/lampp/share/terminfo/p/pcvt40 -opt/lampp/share/terminfo/p/pcvt40w -opt/lampp/share/terminfo/p/pcvt43 -opt/lampp/share/terminfo/p/pcvt43w -opt/lampp/share/terminfo/p/pcvt50 -opt/lampp/share/terminfo/p/pcvt50w -opt/lampp/share/terminfo/p/pcvtXX -opt/lampp/share/terminfo/p/pcz19 -opt/lampp/share/terminfo/p/pe1100 -opt/lampp/share/terminfo/p/pe1200 -opt/lampp/share/terminfo/p/pe1251 -opt/lampp/share/terminfo/p/pe550 -opt/lampp/share/terminfo/p/pe6100 -opt/lampp/share/terminfo/p/pe6300 -opt/lampp/share/terminfo/p/pe6312 -opt/lampp/share/terminfo/p/pe7000c -opt/lampp/share/terminfo/p/pe7000m -opt/lampp/share/terminfo/p/pilot -opt/lampp/share/terminfo/p/pmcons -opt/lampp/share/terminfo/p/pmconsole -opt/lampp/share/terminfo/p/printer -opt/lampp/share/terminfo/p/prism12 -opt/lampp/share/terminfo/p/prism12-m -opt/lampp/share/terminfo/p/prism12-m-w -opt/lampp/share/terminfo/p/prism12-w -opt/lampp/share/terminfo/p/prism14 -opt/lampp/share/terminfo/p/prism14-m -opt/lampp/share/terminfo/p/prism14-m-w -opt/lampp/share/terminfo/p/prism14-w -opt/lampp/share/terminfo/p/prism2 -opt/lampp/share/terminfo/p/prism4 -opt/lampp/share/terminfo/p/prism5 -opt/lampp/share/terminfo/p/prism7 -opt/lampp/share/terminfo/p/prism8 -opt/lampp/share/terminfo/p/prism8-w -opt/lampp/share/terminfo/p/prism8gl -opt/lampp/share/terminfo/p/prism9 -opt/lampp/share/terminfo/p/prism9-8 -opt/lampp/share/terminfo/p/prism9-8-w -opt/lampp/share/terminfo/p/prism9-w -opt/lampp/share/terminfo/p/pro350 -opt/lampp/share/terminfo/p/ps300 -opt/lampp/share/terminfo/p/psterm -opt/lampp/share/terminfo/p/psterm-80x24 -opt/lampp/share/terminfo/p/psterm-90x28 -opt/lampp/share/terminfo/p/psterm-96x48 -opt/lampp/share/terminfo/p/psterm-basic -opt/lampp/share/terminfo/p/psterm-fast -opt/lampp/share/terminfo/p/psx_ansi -opt/lampp/share/terminfo/p/pt100 -opt/lampp/share/terminfo/p/pt100w -opt/lampp/share/terminfo/p/pt200 -opt/lampp/share/terminfo/p/pt200w -opt/lampp/share/terminfo/p/pt210 -opt/lampp/share/terminfo/p/pt250 -opt/lampp/share/terminfo/p/pt250w -opt/lampp/share/terminfo/p/pt505 -opt/lampp/share/terminfo/p/pt505-22 -opt/lampp/share/terminfo/p/pt505-24 -opt/lampp/share/terminfo/p/pty -opt/lampp/share/terminfo/p/putty -#opt/lampp/share/terminfo/q -opt/lampp/share/terminfo/q/qansi -opt/lampp/share/terminfo/q/qansi-g -opt/lampp/share/terminfo/q/qansi-m -opt/lampp/share/terminfo/q/qansi-t -opt/lampp/share/terminfo/q/qansi-w -opt/lampp/share/terminfo/q/qdcons -opt/lampp/share/terminfo/q/qdss -opt/lampp/share/terminfo/q/qnx -opt/lampp/share/terminfo/q/qnx4 -opt/lampp/share/terminfo/q/qnxm -opt/lampp/share/terminfo/q/qnxt -opt/lampp/share/terminfo/q/qnxt2 -opt/lampp/share/terminfo/q/qnxt4 -opt/lampp/share/terminfo/q/qnxtmono -opt/lampp/share/terminfo/q/qnxw -opt/lampp/share/terminfo/q/qume -opt/lampp/share/terminfo/q/qume5 -opt/lampp/share/terminfo/q/qvt101 -opt/lampp/share/terminfo/q/qvt101 -opt/lampp/share/terminfo/q/qvt101p -opt/lampp/share/terminfo/q/qvt102 -opt/lampp/share/terminfo/q/qvt103 -opt/lampp/share/terminfo/q/qvt103-w -opt/lampp/share/terminfo/q/qvt108 -opt/lampp/share/terminfo/q/qvt119 -opt/lampp/share/terminfo/q/qvt119 -opt/lampp/share/terminfo/q/qvt119-25 -opt/lampp/share/terminfo/q/qvt119-25-w -opt/lampp/share/terminfo/q/qvt119-w -opt/lampp/share/terminfo/q/qvt119-25-w -opt/lampp/share/terminfo/q/qvt119-w -opt/lampp/share/terminfo/q/qvt119p -opt/lampp/share/terminfo/q/qvt119p-25 -opt/lampp/share/terminfo/q/qvt119p-25-w -opt/lampp/share/terminfo/q/qvt119p-w -opt/lampp/share/terminfo/q/qvt203 -opt/lampp/share/terminfo/q/qvt203 -opt/lampp/share/terminfo/q/qvt203-25 -opt/lampp/share/terminfo/q/qvt203-25-w -opt/lampp/share/terminfo/q/qvt203-w -opt/lampp/share/terminfo/q/qvt203-w-am -#opt/lampp/share/terminfo/r -opt/lampp/share/terminfo/r/rbcomm -opt/lampp/share/terminfo/r/rbcomm-nam -opt/lampp/share/terminfo/r/rbcomm-w -opt/lampp/share/terminfo/r/rca -opt/lampp/share/terminfo/r/rcons -opt/lampp/share/terminfo/r/rcons-color -opt/lampp/share/terminfo/r/rebus3180 -opt/lampp/share/terminfo/r/regent -opt/lampp/share/terminfo/r/regent100 -opt/lampp/share/terminfo/r/regent20 -opt/lampp/share/terminfo/r/regent200 -opt/lampp/share/terminfo/r/regent25 -opt/lampp/share/terminfo/r/regent40 -opt/lampp/share/terminfo/r/regent40 -opt/lampp/share/terminfo/r/regent60 -opt/lampp/share/terminfo/r/rt6221 -opt/lampp/share/terminfo/r/rt6221-w -opt/lampp/share/terminfo/r/rtpc -opt/lampp/share/terminfo/r/rxvt -opt/lampp/share/terminfo/r/rxvt-16color -opt/lampp/share/terminfo/r/rxvt-basic -#opt/lampp/share/terminfo/s -opt/lampp/share/terminfo/s/s4 -opt/lampp/share/terminfo/s/sb1 -opt/lampp/share/terminfo/s/sb2 -opt/lampp/share/terminfo/s/sb3 -opt/lampp/share/terminfo/s/sbi -opt/lampp/share/terminfo/s/sbobcat -opt/lampp/share/terminfo/s/sc410 -opt/lampp/share/terminfo/s/sc415 -opt/lampp/share/terminfo/s/scanset -opt/lampp/share/terminfo/s/scoansi -opt/lampp/share/terminfo/s/scoansi-new -opt/lampp/share/terminfo/s/scoansi-old -opt/lampp/share/terminfo/s/screen -opt/lampp/share/terminfo/s/screen-w -opt/lampp/share/terminfo/s/screen.teraterm -opt/lampp/share/terminfo/s/screen.xterm-r6 -opt/lampp/share/terminfo/s/screen.xterm-xfree86 -opt/lampp/share/terminfo/s/screen2 -opt/lampp/share/terminfo/s/screen3 -opt/lampp/share/terminfo/s/screwpoint -opt/lampp/share/terminfo/s/scrhp -opt/lampp/share/terminfo/s/sibo -opt/lampp/share/terminfo/s/simterm -opt/lampp/share/terminfo/s/soroc -opt/lampp/share/terminfo/s/soroc120 -opt/lampp/share/terminfo/s/soroc140 -opt/lampp/share/terminfo/s/spinwriter -opt/lampp/share/terminfo/s/st52 -opt/lampp/share/terminfo/s/sun -opt/lampp/share/terminfo/s/sun-1 -opt/lampp/share/terminfo/s/sun-12 -opt/lampp/share/terminfo/s/sun-17 -opt/lampp/share/terminfo/s/sun-24 -opt/lampp/share/terminfo/s/sun-34 -opt/lampp/share/terminfo/s/sun-48 -opt/lampp/share/terminfo/s/sun-c -opt/lampp/share/terminfo/s/sun-cgsix -opt/lampp/share/terminfo/s/sun-cmd -opt/lampp/share/terminfo/s/sun-e -opt/lampp/share/terminfo/s/sun-e-s -opt/lampp/share/terminfo/s/sun-il -opt/lampp/share/terminfo/s/sun-nic -opt/lampp/share/terminfo/s/sun-s -opt/lampp/share/terminfo/s/sun-s-e -opt/lampp/share/terminfo/s/sun-ss5 -opt/lampp/share/terminfo/s/sun1 -opt/lampp/share/terminfo/s/sun2 -opt/lampp/share/terminfo/s/sune -opt/lampp/share/terminfo/s/superbee -opt/lampp/share/terminfo/s/superbee-xsb -opt/lampp/share/terminfo/s/superbeeic -opt/lampp/share/terminfo/s/superbrain -opt/lampp/share/terminfo/s/sv80 -opt/lampp/share/terminfo/s/swtp -opt/lampp/share/terminfo/s/synertek -opt/lampp/share/terminfo/s/synertek380 -opt/lampp/share/terminfo/s/system1 -#opt/lampp/share/terminfo/t -opt/lampp/share/terminfo/t/t10 -opt/lampp/share/terminfo/t/t1061 -opt/lampp/share/terminfo/t/t1061f -opt/lampp/share/terminfo/t/t16 -opt/lampp/share/terminfo/t/t3700 -opt/lampp/share/terminfo/t/t3800 -opt/lampp/share/terminfo/t/t653x -opt/lampp/share/terminfo/t/tab -opt/lampp/share/terminfo/t/tab132 -opt/lampp/share/terminfo/t/tab132-15 -opt/lampp/share/terminfo/t/tab132-rv -opt/lampp/share/terminfo/t/tab132-w -opt/lampp/share/terminfo/t/tab132-w-rv -opt/lampp/share/terminfo/t/tandem6510 -opt/lampp/share/terminfo/t/tandem653 -opt/lampp/share/terminfo/t/tek -opt/lampp/share/terminfo/t/tek4012 -opt/lampp/share/terminfo/t/tek4013 -opt/lampp/share/terminfo/t/tek4014 -opt/lampp/share/terminfo/t/tek4014-sm -opt/lampp/share/terminfo/t/tek4015 -opt/lampp/share/terminfo/t/tek4015-sm -opt/lampp/share/terminfo/t/tek4023 -opt/lampp/share/terminfo/t/tek4024 -opt/lampp/share/terminfo/t/tek4025 -opt/lampp/share/terminfo/t/tek4025-17 -opt/lampp/share/terminfo/t/tek4025-17-ws -opt/lampp/share/terminfo/t/tek4025-cr -opt/lampp/share/terminfo/t/tek4025-ex -opt/lampp/share/terminfo/t/tek4025a -opt/lampp/share/terminfo/t/tek4025ex -opt/lampp/share/terminfo/t/tek4027 -opt/lampp/share/terminfo/t/tek4027-ex -opt/lampp/share/terminfo/t/tek4105 -opt/lampp/share/terminfo/t/tek4105-30 -opt/lampp/share/terminfo/t/tek4105a -opt/lampp/share/terminfo/t/tek4106brl -opt/lampp/share/terminfo/t/tek4107 -opt/lampp/share/terminfo/t/tek4107brl -opt/lampp/share/terminfo/t/tek4109 -opt/lampp/share/terminfo/t/tek4109brl -opt/lampp/share/terminfo/t/tek4112 -opt/lampp/share/terminfo/t/tek4112-5 -opt/lampp/share/terminfo/t/tek4112-nd -opt/lampp/share/terminfo/t/tek4113 -opt/lampp/share/terminfo/t/tek4113-34 -opt/lampp/share/terminfo/t/tek4113-nd -opt/lampp/share/terminfo/t/tek4114 -opt/lampp/share/terminfo/t/tek4115 -opt/lampp/share/terminfo/t/tek4125 -opt/lampp/share/terminfo/t/tek4205 -opt/lampp/share/terminfo/t/tek4207 -opt/lampp/share/terminfo/t/tek4207-s -opt/lampp/share/terminfo/t/tek4404 -opt/lampp/share/terminfo/t/teleray -opt/lampp/share/terminfo/t/teletec -opt/lampp/share/terminfo/t/teraterm -opt/lampp/share/terminfo/t/terminet -opt/lampp/share/terminfo/t/terminet1200 -opt/lampp/share/terminfo/t/terminet300 -opt/lampp/share/terminfo/t/tgtelnet -opt/lampp/share/terminfo/t/ti700 -opt/lampp/share/terminfo/t/ti733 -opt/lampp/share/terminfo/t/ti735 -opt/lampp/share/terminfo/t/ti745 -opt/lampp/share/terminfo/t/ti800 -opt/lampp/share/terminfo/t/ti916 -opt/lampp/share/terminfo/t/ti916-132 -opt/lampp/share/terminfo/t/ti916-220-7 -opt/lampp/share/terminfo/t/ti916-220-8 -opt/lampp/share/terminfo/t/ti916-8 -opt/lampp/share/terminfo/t/ti916-8-132 -opt/lampp/share/terminfo/t/ti924 -opt/lampp/share/terminfo/t/ti924-8 -opt/lampp/share/terminfo/t/ti924-8w -opt/lampp/share/terminfo/t/ti924w -opt/lampp/share/terminfo/t/ti926 -opt/lampp/share/terminfo/t/ti926-8 -opt/lampp/share/terminfo/t/ti928 -opt/lampp/share/terminfo/t/ti928-8 -opt/lampp/share/terminfo/t/ti931 -opt/lampp/share/terminfo/t/ti_ansi -opt/lampp/share/terminfo/t/tn1200 -opt/lampp/share/terminfo/t/tn300 -opt/lampp/share/terminfo/t/trs16 -opt/lampp/share/terminfo/t/trs2 -opt/lampp/share/terminfo/t/trs80II -opt/lampp/share/terminfo/t/trsII -opt/lampp/share/terminfo/t/ts-1 -opt/lampp/share/terminfo/t/ts-1p -opt/lampp/share/terminfo/t/ts1 -opt/lampp/share/terminfo/t/ts100 -opt/lampp/share/terminfo/t/ts100-ctxt -opt/lampp/share/terminfo/t/ts100-sp -opt/lampp/share/terminfo/t/ts1p -opt/lampp/share/terminfo/t/tt505-22 -opt/lampp/share/terminfo/t/tty33 -opt/lampp/share/terminfo/t/tty35 -opt/lampp/share/terminfo/t/tty37 -opt/lampp/share/terminfo/t/tty40 -opt/lampp/share/terminfo/t/tty43 -opt/lampp/share/terminfo/t/tty4420 -opt/lampp/share/terminfo/t/tty4424 -opt/lampp/share/terminfo/t/tty4424-1 -opt/lampp/share/terminfo/t/tty4424m -opt/lampp/share/terminfo/t/tty4426 -opt/lampp/share/terminfo/t/tty5410 -opt/lampp/share/terminfo/t/tty5410-w -opt/lampp/share/terminfo/t/tty5410v1 -opt/lampp/share/terminfo/t/tty5410v1-w -opt/lampp/share/terminfo/t/tty5420 -opt/lampp/share/terminfo/t/tty5420nl -opt/lampp/share/terminfo/t/tty5420-nl -opt/lampp/share/terminfo/t/tty5420-rv -opt/lampp/share/terminfo/t/tty5420-rv-nl -opt/lampp/share/terminfo/t/tty5420-w -opt/lampp/share/terminfo/t/tty5420-w-nl -opt/lampp/share/terminfo/t/tty5420-w-rv -opt/lampp/share/terminfo/t/tty5420-w-rv-n -opt/lampp/share/terminfo/t/tty5425 -opt/lampp/share/terminfo/t/tty5425-nl -opt/lampp/share/terminfo/t/tty5425-w -opt/lampp/share/terminfo/t/tty5620 -opt/lampp/share/terminfo/t/tty5620-1 -opt/lampp/share/terminfo/t/tty5620-24 -opt/lampp/share/terminfo/t/tty5620-34 -opt/lampp/share/terminfo/t/tty5620-s -opt/lampp/share/terminfo/t/ttydmd -opt/lampp/share/terminfo/t/tvi-2p -opt/lampp/share/terminfo/t/tvi803 -opt/lampp/share/terminfo/t/tvi9065 -opt/lampp/share/terminfo/t/tvi910 -opt/lampp/share/terminfo/t/tvi910 -opt/lampp/share/terminfo/t/tvi912 -opt/lampp/share/terminfo/t/tvi912-2p -opt/lampp/share/terminfo/t/tvi912b -opt/lampp/share/terminfo/t/tvi912c -opt/lampp/share/terminfo/t/tvi912cc -opt/lampp/share/terminfo/t/tvi914 -opt/lampp/share/terminfo/t/tvi920 -opt/lampp/share/terminfo/t/tvi920-2p -opt/lampp/share/terminfo/t/tvi920b -opt/lampp/share/terminfo/t/tvi920c -opt/lampp/share/terminfo/t/tvi921 -opt/lampp/share/terminfo/t/tvi924 -opt/lampp/share/terminfo/t/tvi925 -opt/lampp/share/terminfo/t/tvi925-hi -opt/lampp/share/terminfo/t/tvi92B -opt/lampp/share/terminfo/t/tvi92D -opt/lampp/share/terminfo/t/tvi950 -opt/lampp/share/terminfo/t/tvi950-2p -opt/lampp/share/terminfo/t/tvi950-4p -opt/lampp/share/terminfo/t/tvi950-rv -opt/lampp/share/terminfo/t/tvi950-rv-2p -opt/lampp/share/terminfo/t/tvi950-rv-4p -opt/lampp/share/terminfo/t/tvi955 -opt/lampp/share/terminfo/t/tvi955-hb -opt/lampp/share/terminfo/t/tvi955-w -opt/lampp/share/terminfo/t/tvi970 -opt/lampp/share/terminfo/t/tvi970-2p -opt/lampp/share/terminfo/t/tvi970-vb -opt/lampp/share/terminfo/t/tvipt -opt/lampp/share/terminfo/t/tws-generic -opt/lampp/share/terminfo/t/tws2102-sna -opt/lampp/share/terminfo/t/tws2103 -opt/lampp/share/terminfo/t/tws2103-sna -#opt/lampp/share/terminfo/u -opt/lampp/share/terminfo/u/ultima2 -opt/lampp/share/terminfo/u/ultimaII -opt/lampp/share/terminfo/u/uniterm -opt/lampp/share/terminfo/u/uniterm49 -opt/lampp/share/terminfo/u/unixpc -opt/lampp/share/terminfo/u/unknown -opt/lampp/share/terminfo/u/uts30 -#opt/lampp/share/terminfo/v -opt/lampp/share/terminfo/v/v200-nam -opt/lampp/share/terminfo/v/v320n -opt/lampp/share/terminfo/v/v3220 -opt/lampp/share/terminfo/v/v5410 -opt/lampp/share/terminfo/v/vanilla -opt/lampp/share/terminfo/v/vapple -opt/lampp/share/terminfo/v/vc103 -opt/lampp/share/terminfo/v/vc203 -opt/lampp/share/terminfo/v/vc303 -opt/lampp/share/terminfo/v/vc303a -opt/lampp/share/terminfo/v/vc403a -opt/lampp/share/terminfo/v/vc404 -opt/lampp/share/terminfo/v/vc404-s -opt/lampp/share/terminfo/v/vc414 -opt/lampp/share/terminfo/v/vc414h -opt/lampp/share/terminfo/v/vc415 -opt/lampp/share/terminfo/v/venix -opt/lampp/share/terminfo/v/versaterm -opt/lampp/share/terminfo/v/vi200 -opt/lampp/share/terminfo/v/vi200-f -opt/lampp/share/terminfo/v/vi200-rv -opt/lampp/share/terminfo/v/vi300 -opt/lampp/share/terminfo/v/vi300-old -opt/lampp/share/terminfo/v/vi50 -opt/lampp/share/terminfo/v/vi500 -opt/lampp/share/terminfo/v/vi50adm -opt/lampp/share/terminfo/v/vi55 -opt/lampp/share/terminfo/v/vi550 -opt/lampp/share/terminfo/v/vi603 -opt/lampp/share/terminfo/v/viewpoint -opt/lampp/share/terminfo/v/viewpoint3a -opt/lampp/share/terminfo/v/viewpoint60 -opt/lampp/share/terminfo/v/viewpoint90 -opt/lampp/share/terminfo/v/vip -opt/lampp/share/terminfo/v/vip-H -opt/lampp/share/terminfo/v/vip-Hw -opt/lampp/share/terminfo/v/vip-w -opt/lampp/share/terminfo/v/vip7800-H -opt/lampp/share/terminfo/v/vip7800-Hw -opt/lampp/share/terminfo/v/vip7800-w -opt/lampp/share/terminfo/v/visa50 -opt/lampp/share/terminfo/v/visual603 -opt/lampp/share/terminfo/v/vitty -opt/lampp/share/terminfo/v/vk100 -opt/lampp/share/terminfo/v/vp3a -opt/lampp/share/terminfo/v/vp60 -opt/lampp/share/terminfo/v/vp90 -opt/lampp/share/terminfo/v/vremote -opt/lampp/share/terminfo/v/vs100 -opt/lampp/share/terminfo/v/vs100-x10 -opt/lampp/share/terminfo/v/vsc -opt/lampp/share/terminfo/v/vt-61 -opt/lampp/share/terminfo/v/vt100 -opt/lampp/share/terminfo/v/vt100-am -opt/lampp/share/terminfo/v/vt100-bm -opt/lampp/share/terminfo/v/vt100-bm-o -opt/lampp/share/terminfo/v/vt100-bot-s -opt/lampp/share/terminfo/v/vt100-nam -opt/lampp/share/terminfo/v/vt100-nam-w -opt/lampp/share/terminfo/v/vt100-nav -opt/lampp/share/terminfo/v/vt100-nav-w -opt/lampp/share/terminfo/v/vt100-s -opt/lampp/share/terminfo/v/vt100-s-bot -opt/lampp/share/terminfo/v/vt100-s-top -opt/lampp/share/terminfo/v/vt100-top-s -opt/lampp/share/terminfo/v/vt100-vb -opt/lampp/share/terminfo/v/vt100-w -opt/lampp/share/terminfo/v/vt100-w-am -opt/lampp/share/terminfo/v/vt100-w-nam -opt/lampp/share/terminfo/v/vt100-w-nav -opt/lampp/share/terminfo/v/vt100nam -opt/lampp/share/terminfo/v/vt102 -opt/lampp/share/terminfo/v/vt102-nsgr -opt/lampp/share/terminfo/v/vt102-w -opt/lampp/share/terminfo/v/vt125 -opt/lampp/share/terminfo/v/vt131 -opt/lampp/share/terminfo/v/vt132 -opt/lampp/share/terminfo/v/vt200 -opt/lampp/share/terminfo/v/vt200-8 -opt/lampp/share/terminfo/v/vt200-8bit -opt/lampp/share/terminfo/v/vt200-js -opt/lampp/share/terminfo/v/vt200-old -opt/lampp/share/terminfo/v/vt200-w -opt/lampp/share/terminfo/v/vt220 -opt/lampp/share/terminfo/v/vt220-8 -opt/lampp/share/terminfo/v/vt220-8bit -opt/lampp/share/terminfo/v/vt220-js -opt/lampp/share/terminfo/v/vt220-nam -opt/lampp/share/terminfo/v/vt220-old -opt/lampp/share/terminfo/v/vt220-w -opt/lampp/share/terminfo/v/vt220d -opt/lampp/share/terminfo/v/vt300 -opt/lampp/share/terminfo/v/vt300-nam -opt/lampp/share/terminfo/v/vt300-w -opt/lampp/share/terminfo/v/vt300-w-nam -opt/lampp/share/terminfo/v/vt320 -opt/lampp/share/terminfo/v/vt320-k3 -opt/lampp/share/terminfo/v/vt320-k311 -opt/lampp/share/terminfo/v/vt320-nam -opt/lampp/share/terminfo/v/vt320-w -opt/lampp/share/terminfo/v/vt320-w-nam -opt/lampp/share/terminfo/v/vt320nam -opt/lampp/share/terminfo/v/vt330 -opt/lampp/share/terminfo/v/vt340 -opt/lampp/share/terminfo/v/vt400 -opt/lampp/share/terminfo/v/vt400-24 -opt/lampp/share/terminfo/v/vt420 -opt/lampp/share/terminfo/v/vt420f -opt/lampp/share/terminfo/v/vt420pc -opt/lampp/share/terminfo/v/vt420pcdos -opt/lampp/share/terminfo/v/vt50 -opt/lampp/share/terminfo/v/vt50h -opt/lampp/share/terminfo/v/vt510 -opt/lampp/share/terminfo/v/vt510pc -opt/lampp/share/terminfo/v/vt510pcdos -opt/lampp/share/terminfo/v/vt52 -opt/lampp/share/terminfo/v/vt520 -opt/lampp/share/terminfo/v/vt525 -opt/lampp/share/terminfo/v/vt61 -opt/lampp/share/terminfo/v/vt61.5 -opt/lampp/share/terminfo/v/vv100 -#opt/lampp/share/terminfo/w -opt/lampp/share/terminfo/w/wren -opt/lampp/share/terminfo/w/wrenw -opt/lampp/share/terminfo/w/wsiris -opt/lampp/share/terminfo/w/wsvt25 -opt/lampp/share/terminfo/w/wsvt25m -opt/lampp/share/terminfo/w/wy-75ap -opt/lampp/share/terminfo/w/wy-99fgt -opt/lampp/share/terminfo/w/wy-99fgta -opt/lampp/share/terminfo/w/wy100 -opt/lampp/share/terminfo/w/wy100q -opt/lampp/share/terminfo/w/wy120 -opt/lampp/share/terminfo/w/wy120-25 -opt/lampp/share/terminfo/w/wy120-25-w -opt/lampp/share/terminfo/w/wy120-vb -opt/lampp/share/terminfo/w/wy120-w -opt/lampp/share/terminfo/w/wy120-w-vb -opt/lampp/share/terminfo/w/wy120-wvb -opt/lampp/share/terminfo/w/wy150 -opt/lampp/share/terminfo/w/wy150-25 -opt/lampp/share/terminfo/w/wy150-25-w -opt/lampp/share/terminfo/w/wy150-vb -opt/lampp/share/terminfo/w/wy150-w -opt/lampp/share/terminfo/w/wy150-w-vb -opt/lampp/share/terminfo/w/wy160 -opt/lampp/share/terminfo/w/wy160-25 -opt/lampp/share/terminfo/w/wy160-25-w -opt/lampp/share/terminfo/w/wy160-42 -opt/lampp/share/terminfo/w/wy160-42-w -opt/lampp/share/terminfo/w/wy160-43 -opt/lampp/share/terminfo/w/wy160-43-w -opt/lampp/share/terminfo/w/wy160-tek -opt/lampp/share/terminfo/w/wy160-vb -opt/lampp/share/terminfo/w/wy160-w -opt/lampp/share/terminfo/w/wy160-w-vb -opt/lampp/share/terminfo/w/wy160-wvb -opt/lampp/share/terminfo/w/wy185 -opt/lampp/share/terminfo/w/wy185-24 -opt/lampp/share/terminfo/w/wy185-vb -opt/lampp/share/terminfo/w/wy185-w -opt/lampp/share/terminfo/w/wy185-wvb -opt/lampp/share/terminfo/w/wy30 -opt/lampp/share/terminfo/w/wy30-mc -opt/lampp/share/terminfo/w/wy30-vb -opt/lampp/share/terminfo/w/wy325 -opt/lampp/share/terminfo/w/wy325-25 -opt/lampp/share/terminfo/w/wy325-25w -opt/lampp/share/terminfo/w/wy325-42 -opt/lampp/share/terminfo/w/wy325-42w -opt/lampp/share/terminfo/w/wy325-42w-vb -opt/lampp/share/terminfo/w/wy325-42wvb -opt/lampp/share/terminfo/w/wy325-43 -opt/lampp/share/terminfo/w/wy325-43w -opt/lampp/share/terminfo/w/wy325-43w-vb -opt/lampp/share/terminfo/w/wy325-43wvb -opt/lampp/share/terminfo/w/wy325-80 -opt/lampp/share/terminfo/w/wy325-vb -opt/lampp/share/terminfo/w/wy325-w -opt/lampp/share/terminfo/w/wy325-w-vb -opt/lampp/share/terminfo/w/wy325-wvb -opt/lampp/share/terminfo/w/wy325w-24 -opt/lampp/share/terminfo/w/wy350 -opt/lampp/share/terminfo/w/wy350-vb -opt/lampp/share/terminfo/w/wy350-w -opt/lampp/share/terminfo/w/wy350-wvb -opt/lampp/share/terminfo/w/wy370 -opt/lampp/share/terminfo/w/wy370-101k -opt/lampp/share/terminfo/w/wy370-105k -opt/lampp/share/terminfo/w/wy370-EPC -opt/lampp/share/terminfo/w/wy370-nk -opt/lampp/share/terminfo/w/wy370-rv -opt/lampp/share/terminfo/w/wy370-tek -opt/lampp/share/terminfo/w/wy370-vb -opt/lampp/share/terminfo/w/wy370-w -opt/lampp/share/terminfo/w/wy370-wvb -opt/lampp/share/terminfo/w/wy50 -opt/lampp/share/terminfo/w/wy50-mc -opt/lampp/share/terminfo/w/wy50-vb -opt/lampp/share/terminfo/w/wy50-w -opt/lampp/share/terminfo/w/wy50-wvb -opt/lampp/share/terminfo/w/wy520 -opt/lampp/share/terminfo/w/wy520-24 -opt/lampp/share/terminfo/w/wy520-36 -opt/lampp/share/terminfo/w/wy520-36pc -opt/lampp/share/terminfo/w/wy520-36w -opt/lampp/share/terminfo/w/wy520-36wpc -opt/lampp/share/terminfo/w/wy520-48 -opt/lampp/share/terminfo/w/wy520-48pc -opt/lampp/share/terminfo/w/wy520-48w -opt/lampp/share/terminfo/w/wy520-48wpc -opt/lampp/share/terminfo/w/wy520-epc -opt/lampp/share/terminfo/w/wy520-epc-24 -opt/lampp/share/terminfo/w/wy520-epc-vb -opt/lampp/share/terminfo/w/wy520-epc-w -opt/lampp/share/terminfo/w/wy520-epc-wvb -opt/lampp/share/terminfo/w/wy520-vb -opt/lampp/share/terminfo/w/wy520-w -opt/lampp/share/terminfo/w/wy520-wvb -opt/lampp/share/terminfo/w/wy60 -opt/lampp/share/terminfo/w/wy60-25 -opt/lampp/share/terminfo/w/wy60-25-w -opt/lampp/share/terminfo/w/wy60-316X -opt/lampp/share/terminfo/w/wy60-42 -opt/lampp/share/terminfo/w/wy60-42-w -opt/lampp/share/terminfo/w/wy60-43 -opt/lampp/share/terminfo/w/wy60-43-w -opt/lampp/share/terminfo/w/wy60-AT -opt/lampp/share/terminfo/w/wy60-PC -opt/lampp/share/terminfo/w/wy60-vb -opt/lampp/share/terminfo/w/wy60-w -opt/lampp/share/terminfo/w/wy60-w-vb -opt/lampp/share/terminfo/w/wy60-wvb -opt/lampp/share/terminfo/w/wy75 -opt/lampp/share/terminfo/w/wy75-mc -opt/lampp/share/terminfo/w/wy75-vb -opt/lampp/share/terminfo/w/wy75-w -opt/lampp/share/terminfo/w/wy75-wvb -opt/lampp/share/terminfo/w/wy75ap -opt/lampp/share/terminfo/w/wy85 -opt/lampp/share/terminfo/w/wy85-8bit -opt/lampp/share/terminfo/w/wy85-vb -opt/lampp/share/terminfo/w/wy85-w -opt/lampp/share/terminfo/w/wy85-wvb -opt/lampp/share/terminfo/w/wy99-ansi -opt/lampp/share/terminfo/w/wy99a-ansi -opt/lampp/share/terminfo/w/wy99f -opt/lampp/share/terminfo/w/wy99fa -opt/lampp/share/terminfo/w/wy99fgt -opt/lampp/share/terminfo/w/wy99fgta -opt/lampp/share/terminfo/w/wy99gt -opt/lampp/share/terminfo/w/wy99gt-25 -opt/lampp/share/terminfo/w/wy99gt-25-w -opt/lampp/share/terminfo/w/wy99gt-tek -opt/lampp/share/terminfo/w/wy99gt-vb -opt/lampp/share/terminfo/w/wy99gt-w -opt/lampp/share/terminfo/w/wy99gt-w-vb -opt/lampp/share/terminfo/w/wy99gt-wvb -opt/lampp/share/terminfo/w/wyse-325 -opt/lampp/share/terminfo/w/wyse-75ap -opt/lampp/share/terminfo/w/wyse-vp -opt/lampp/share/terminfo/w/wyse120 -opt/lampp/share/terminfo/w/wyse120-25 -opt/lampp/share/terminfo/w/wyse120-25-w -opt/lampp/share/terminfo/w/wyse120-vb -opt/lampp/share/terminfo/w/wyse120-w -opt/lampp/share/terminfo/w/wyse120-wvb -opt/lampp/share/terminfo/w/wyse150 -opt/lampp/share/terminfo/w/wyse150-25 -opt/lampp/share/terminfo/w/wyse150-25-w -opt/lampp/share/terminfo/w/wyse150-vb -opt/lampp/share/terminfo/w/wyse150-w -opt/lampp/share/terminfo/w/wyse150-w-vb -opt/lampp/share/terminfo/w/wyse160 -opt/lampp/share/terminfo/w/wyse160-25 -opt/lampp/share/terminfo/w/wyse160-25-w -opt/lampp/share/terminfo/w/wyse160-42 -opt/lampp/share/terminfo/w/wyse160-42-w -opt/lampp/share/terminfo/w/wyse160-43 -opt/lampp/share/terminfo/w/wyse160-43-w -opt/lampp/share/terminfo/w/wyse160-vb -opt/lampp/share/terminfo/w/wyse160-w -opt/lampp/share/terminfo/w/wyse160-wvb -opt/lampp/share/terminfo/w/wyse185 -opt/lampp/share/terminfo/w/wyse185-24 -opt/lampp/share/terminfo/w/wyse185-vb -opt/lampp/share/terminfo/w/wyse185-w -opt/lampp/share/terminfo/w/wyse185-wvb -opt/lampp/share/terminfo/w/wyse30 -opt/lampp/share/terminfo/w/wyse30-mc -opt/lampp/share/terminfo/w/wyse30-vb -opt/lampp/share/terminfo/w/wyse325 -opt/lampp/share/terminfo/w/wyse325-25 -opt/lampp/share/terminfo/w/wyse325-25w -opt/lampp/share/terminfo/w/wyse325-42 -opt/lampp/share/terminfo/w/wyse325-42w -opt/lampp/share/terminfo/w/wyse325-43 -opt/lampp/share/terminfo/w/wyse325-43w -opt/lampp/share/terminfo/w/wyse325-vb -opt/lampp/share/terminfo/w/wyse325-w -opt/lampp/share/terminfo/w/wyse325-wvb -opt/lampp/share/terminfo/w/wyse350 -opt/lampp/share/terminfo/w/wyse350-vb -opt/lampp/share/terminfo/w/wyse350-w -opt/lampp/share/terminfo/w/wyse350-wvb -opt/lampp/share/terminfo/w/wyse370 -opt/lampp/share/terminfo/w/wyse50 -opt/lampp/share/terminfo/w/wyse50-mc -opt/lampp/share/terminfo/w/wyse50-vb -opt/lampp/share/terminfo/w/wyse50-w -opt/lampp/share/terminfo/w/wyse50-wvb -opt/lampp/share/terminfo/w/wyse520 -opt/lampp/share/terminfo/w/wyse520-24 -opt/lampp/share/terminfo/w/wyse520-36 -opt/lampp/share/terminfo/w/wyse520-36pc -opt/lampp/share/terminfo/w/wyse520-36w -opt/lampp/share/terminfo/w/wyse520-36wpc -opt/lampp/share/terminfo/w/wyse520-48 -opt/lampp/share/terminfo/w/wyse520-48pc -opt/lampp/share/terminfo/w/wyse520-48w -opt/lampp/share/terminfo/w/wyse520-48wpc -opt/lampp/share/terminfo/w/wyse520-epc -opt/lampp/share/terminfo/w/wyse520-epc-w -opt/lampp/share/terminfo/w/wyse520-p-wvb -opt/lampp/share/terminfo/w/wyse520-pc-24 -opt/lampp/share/terminfo/w/wyse520-pc-vb -opt/lampp/share/terminfo/w/wyse520-vb -opt/lampp/share/terminfo/w/wyse520-w -opt/lampp/share/terminfo/w/wyse520-wvb -opt/lampp/share/terminfo/w/wyse60 -opt/lampp/share/terminfo/w/wyse60-25 -opt/lampp/share/terminfo/w/wyse60-25-w -opt/lampp/share/terminfo/w/wyse60-316X -opt/lampp/share/terminfo/w/wyse60-42 -opt/lampp/share/terminfo/w/wyse60-42-w -opt/lampp/share/terminfo/w/wyse60-43 -opt/lampp/share/terminfo/w/wyse60-43-w -opt/lampp/share/terminfo/w/wyse60-AT -opt/lampp/share/terminfo/w/wyse60-PC -opt/lampp/share/terminfo/w/wyse60-vb -opt/lampp/share/terminfo/w/wyse60-w -opt/lampp/share/terminfo/w/wyse60-wvb -opt/lampp/share/terminfo/w/wyse75 -opt/lampp/share/terminfo/w/wyse75-mc -opt/lampp/share/terminfo/w/wyse75-vb -opt/lampp/share/terminfo/w/wyse75-w -opt/lampp/share/terminfo/w/wyse75-wvb -opt/lampp/share/terminfo/w/wyse75ap -opt/lampp/share/terminfo/w/wyse85 -opt/lampp/share/terminfo/w/wyse85-8bit -opt/lampp/share/terminfo/w/wyse85-vb -opt/lampp/share/terminfo/w/wyse85-w -opt/lampp/share/terminfo/w/wyse85-wvb -opt/lampp/share/terminfo/w/wyse99gt -opt/lampp/share/terminfo/w/wyse99gt-25 -opt/lampp/share/terminfo/w/wyse99gt-25-w -opt/lampp/share/terminfo/w/wyse99gt-vb -opt/lampp/share/terminfo/w/wyse99gt-w -opt/lampp/share/terminfo/w/wyse99gt-wvb -#opt/lampp/share/terminfo/x -opt/lampp/share/terminfo/x/x10term -opt/lampp/share/terminfo/x/x1700 -opt/lampp/share/terminfo/x/x1700-lm -opt/lampp/share/terminfo/x/x1720 -opt/lampp/share/terminfo/x/x1750 -opt/lampp/share/terminfo/x/x68k -opt/lampp/share/terminfo/x/x68k-ite -opt/lampp/share/terminfo/x/x820 -opt/lampp/share/terminfo/x/xdku -opt/lampp/share/terminfo/x/xenix -opt/lampp/share/terminfo/x/xerox -opt/lampp/share/terminfo/x/xerox-lm -opt/lampp/share/terminfo/x/xerox1720 -opt/lampp/share/terminfo/x/xerox820 -opt/lampp/share/terminfo/x/xl83 -opt/lampp/share/terminfo/x/xnuppc -opt/lampp/share/terminfo/x/xnuppc100x37 -opt/lampp/share/terminfo/x/xnuppc112x37 -opt/lampp/share/terminfo/x/xnuppc128x40 -opt/lampp/share/terminfo/x/xnuppc128x48 -opt/lampp/share/terminfo/x/xnuppc144x48 -opt/lampp/share/terminfo/x/xnuppc160x64 -opt/lampp/share/terminfo/x/xnuppc200x64 -opt/lampp/share/terminfo/x/xnuppc200x75 -opt/lampp/share/terminfo/x/xnuppc256x96 -opt/lampp/share/terminfo/x/xnuppc80x25 -opt/lampp/share/terminfo/x/xnuppc80x30 -opt/lampp/share/terminfo/x/xnuppc90x30 -opt/lampp/share/terminfo/x/xnuppcb -opt/lampp/share/terminfo/x/xnuppcbasic -opt/lampp/share/terminfo/x/xnuppcc -opt/lampp/share/terminfo/x/xnuppcf -opt/lampp/share/terminfo/x/xnuppcf2 -opt/lampp/share/terminfo/x/xnuppc-100x37 -opt/lampp/share/terminfo/x/xnuppc-100x37-m -opt/lampp/share/terminfo/x/xnuppc-112x37 -opt/lampp/share/terminfo/x/xnuppc-112x37-m -opt/lampp/share/terminfo/x/xnuppc-128x40 -opt/lampp/share/terminfo/x/xnuppc-128x40-m -opt/lampp/share/terminfo/x/xnuppc-128x48 -opt/lampp/share/terminfo/x/xnuppc-128x48-m -opt/lampp/share/terminfo/x/xnuppc-144x48 -opt/lampp/share/terminfo/x/xnuppc-144x48-m -opt/lampp/share/terminfo/x/xnuppc-160x64 -opt/lampp/share/terminfo/x/xnuppc-160x64-m -opt/lampp/share/terminfo/x/xnuppc-200x64 -opt/lampp/share/terminfo/x/xnuppc-200x64-m -opt/lampp/share/terminfo/x/xnuppc-200x75 -opt/lampp/share/terminfo/x/xnuppc-200x75-m -opt/lampp/share/terminfo/x/xnuppc-256x96 -opt/lampp/share/terminfo/x/xnuppc-256x96-m -opt/lampp/share/terminfo/x/xnuppc-80x25 -opt/lampp/share/terminfo/x/xnuppc-80x25-m -opt/lampp/share/terminfo/x/xnuppc-80x30 -opt/lampp/share/terminfo/x/xnuppc-80x30-m -opt/lampp/share/terminfo/x/xnuppc-90x30 -opt/lampp/share/terminfo/x/xnuppc-90x30-m -opt/lampp/share/terminfo/x/xnuppc-b -opt/lampp/share/terminfo/x/xnuppc-f -opt/lampp/share/terminfo/x/xnuppc-f2 -opt/lampp/share/terminfo/x/xnuppc-m -opt/lampp/share/terminfo/x/xnuppc-m-b -opt/lampp/share/terminfo/x/xnuppc-m-f -opt/lampp/share/terminfo/x/xnuppc-m-f2 -opt/lampp/share/terminfo/x/xtalk -opt/lampp/share/terminfo/x/xterm -opt/lampp/share/terminfo/x/xtermsl -opt/lampp/share/terminfo/x/xtermsl-twm -opt/lampp/share/terminfo/x/xterm-16color -opt/lampp/share/terminfo/x/xterm-24 -opt/lampp/share/terminfo/x/xterm-256color -opt/lampp/share/terminfo/x/xterm-88color -opt/lampp/share/terminfo/x/xterm-8bit -opt/lampp/share/terminfo/x/xterm-basic -opt/lampp/share/terminfo/x/xterm-bold -opt/lampp/share/terminfo/x/xterm-color -opt/lampp/share/terminfo/x/xterm-hp -opt/lampp/share/terminfo/x/xterm-new -opt/lampp/share/terminfo/x/xterm-nic -opt/lampp/share/terminfo/x/xterm-noapp -opt/lampp/share/terminfo/x/xterm-old -opt/lampp/share/terminfo/x/xterm-pcolor -opt/lampp/share/terminfo/x/xterm-r5 -opt/lampp/share/terminfo/x/xterm-r6 -opt/lampp/share/terminfo/x/xterm-sco -opt/lampp/share/terminfo/x/xterm-sun -opt/lampp/share/terminfo/x/xterm-vt220 -opt/lampp/share/terminfo/x/xterm-vt52 -opt/lampp/share/terminfo/x/xterm-xf86-v32 -opt/lampp/share/terminfo/x/xterm-xf86-v33 -opt/lampp/share/terminfo/x/xterm-xf86-v333 -opt/lampp/share/terminfo/x/xterm-xf86-v40 -opt/lampp/share/terminfo/x/xterm-xfree86 -opt/lampp/share/terminfo/x/xterm-xi -opt/lampp/share/terminfo/x/xterm1 -opt/lampp/share/terminfo/x/xtermc -opt/lampp/share/terminfo/x/xtermm -opt/lampp/share/terminfo/x/xterms -opt/lampp/share/terminfo/x/xterms-sun -opt/lampp/share/terminfo/x/xwsh -#opt/lampp/share/terminfo/z -opt/lampp/share/terminfo/z/z-100 -opt/lampp/share/terminfo/z/z-100bw -opt/lampp/share/terminfo/z/z100 -opt/lampp/share/terminfo/z/z100bw -opt/lampp/share/terminfo/z/z110 -opt/lampp/share/terminfo/z/z110bw -opt/lampp/share/terminfo/z/z19 -opt/lampp/share/terminfo/z/z29 -opt/lampp/share/terminfo/z/z29a -opt/lampp/share/terminfo/z/z29a-kc-bc -opt/lampp/share/terminfo/z/z29a-kc-uc -opt/lampp/share/terminfo/z/z29a-nkc-bc -opt/lampp/share/terminfo/z/z29a-nkc-uc -opt/lampp/share/terminfo/z/z29b -opt/lampp/share/terminfo/z/z30 -opt/lampp/share/terminfo/z/z340 -opt/lampp/share/terminfo/z/z340-nam -opt/lampp/share/terminfo/z/z39-a -opt/lampp/share/terminfo/z/z39a -opt/lampp/share/terminfo/z/z50 -opt/lampp/share/terminfo/z/z8001 -opt/lampp/share/terminfo/z/zen30 -opt/lampp/share/terminfo/z/zen50 -opt/lampp/share/terminfo/z/zen8001 -opt/lampp/share/terminfo/z/zenith -opt/lampp/share/terminfo/z/zenith29 -opt/lampp/share/terminfo/z/zenith39-a -opt/lampp/share/terminfo/z/zenith39-ansi -opt/lampp/share/terminfo/z/zt-1 -opt/lampp/share/terminfo/z/ztx -opt/lampp/share/terminfo/z/ztx-1-a -opt/lampp/share/terminfo/z/ztx11 -#opt/lampp/share/xampp-control-panel -opt/lampp/share/xampp-control-panel/AUTHORS -opt/lampp/share/xampp-control-panel/Changelog -opt/lampp/share/xampp-control-panel/ISSUES -opt/lampp/share/xampp-control-panel/LICENSE -opt/lampp/share/xampp-control-panel/README -opt/lampp/share/xampp-control-panel/SimpleGladeApp.py -opt/lampp/share/xampp-control-panel/SimpleGladeApp.pyc -opt/lampp/share/xampp-control-panel/simple-glade-codegen.py -opt/lampp/share/xampp-control-panel/xampp-control-panel -opt/lampp/share/xampp-control-panel/xampp-control-panel.glade -opt/lampp/share/xampp-control-panel/xampp-control-panel.py -opt/lampp/tmp -opt/lampp/tmp/eaccelerator -opt/lampp/var -opt/lampp/var/mysql -opt/lampp/var/mysql/cdcol -opt/lampp/var/mysql/cdcol/cds.MYD -opt/lampp/var/mysql/cdcol/cds.MYI -opt/lampp/var/mysql/cdcol/cds.frm -opt/lampp/var/mysql/mysql -opt/lampp/var/mysql/mysql/columns_priv.MYD -opt/lampp/var/mysql/mysql/columns_priv.MYI -opt/lampp/var/mysql/mysql/columns_priv.frm -opt/lampp/var/mysql/mysql/db.MYD -opt/lampp/var/mysql/mysql/db.MYI -opt/lampp/var/mysql/mysql/db.frm -opt/lampp/var/mysql/mysql/func.MYD -opt/lampp/var/mysql/mysql/func.MYI -opt/lampp/var/mysql/mysql/func.frm -opt/lampp/var/mysql/mysql/help_category.MYD -opt/lampp/var/mysql/mysql/help_category.MYI -opt/lampp/var/mysql/mysql/help_category.frm -opt/lampp/var/mysql/mysql/help_keyword.MYD -opt/lampp/var/mysql/mysql/help_keyword.MYI -opt/lampp/var/mysql/mysql/help_keyword.frm -opt/lampp/var/mysql/mysql/help_relation.MYD -opt/lampp/var/mysql/mysql/help_relation.MYI -opt/lampp/var/mysql/mysql/help_relation.frm -opt/lampp/var/mysql/mysql/help_topic.MYD -opt/lampp/var/mysql/mysql/help_topic.MYI -opt/lampp/var/mysql/mysql/help_topic.frm -opt/lampp/var/mysql/mysql/host.MYD -opt/lampp/var/mysql/mysql/host.MYI -opt/lampp/var/mysql/mysql/host.frm -opt/lampp/var/mysql/mysql/proc.MYD -opt/lampp/var/mysql/mysql/proc.MYI -opt/lampp/var/mysql/mysql/proc.frm -opt/lampp/var/mysql/mysql/procs_priv.MYD -opt/lampp/var/mysql/mysql/procs_priv.MYI -opt/lampp/var/mysql/mysql/procs_priv.frm -opt/lampp/var/mysql/mysql/tables_priv.MYD -opt/lampp/var/mysql/mysql/tables_priv.MYI -opt/lampp/var/mysql/mysql/tables_priv.frm -opt/lampp/var/mysql/mysql/time_zone.MYD -opt/lampp/var/mysql/mysql/time_zone.MYI -opt/lampp/var/mysql/mysql/time_zone.frm -opt/lampp/var/mysql/mysql/time_zone_leap_second.MYD -opt/lampp/var/mysql/mysql/time_zone_leap_second.MYI -opt/lampp/var/mysql/mysql/time_zone_leap_second.frm -opt/lampp/var/mysql/mysql/time_zone_name.MYD -opt/lampp/var/mysql/mysql/time_zone_name.MYI -opt/lampp/var/mysql/mysql/time_zone_name.frm -opt/lampp/var/mysql/mysql/time_zone_transition.MYD -opt/lampp/var/mysql/mysql/time_zone_transition.MYI -opt/lampp/var/mysql/mysql/time_zone_transition.frm -opt/lampp/var/mysql/mysql/time_zone_transition_type.MYD -opt/lampp/var/mysql/mysql/time_zone_transition_type.MYI -opt/lampp/var/mysql/mysql/time_zone_transition_type.frm -opt/lampp/var/mysql/mysql/user.MYD -opt/lampp/var/mysql/mysql/user.MYI -opt/lampp/var/mysql/mysql/user.frm -opt/lampp/var/mysql/phpmyadmin -opt/lampp/var/mysql/phpmyadmin/PMA_bookmark.MYD -opt/lampp/var/mysql/phpmyadmin/PMA_bookmark.MYI -opt/lampp/var/mysql/phpmyadmin/PMA_bookmark.frm -opt/lampp/var/mysql/phpmyadmin/PMA_column_info.MYD -opt/lampp/var/mysql/phpmyadmin/PMA_column_info.MYI -opt/lampp/var/mysql/phpmyadmin/PMA_column_info.frm -opt/lampp/var/mysql/phpmyadmin/PMA_history.MYD -opt/lampp/var/mysql/phpmyadmin/PMA_history.MYI -opt/lampp/var/mysql/phpmyadmin/PMA_history.frm -opt/lampp/var/mysql/phpmyadmin/PMA_pdf_pages.MYD -opt/lampp/var/mysql/phpmyadmin/PMA_pdf_pages.MYI -opt/lampp/var/mysql/phpmyadmin/PMA_pdf_pages.frm -opt/lampp/var/mysql/phpmyadmin/PMA_relation.MYD -opt/lampp/var/mysql/phpmyadmin/PMA_relation.MYI -opt/lampp/var/mysql/phpmyadmin/PMA_relation.frm -opt/lampp/var/mysql/phpmyadmin/PMA_table_coords.MYD -opt/lampp/var/mysql/phpmyadmin/PMA_table_coords.MYI -opt/lampp/var/mysql/phpmyadmin/PMA_table_coords.frm -opt/lampp/var/mysql/phpmyadmin/PMA_table_info.MYD -opt/lampp/var/mysql/phpmyadmin/PMA_table_info.MYI -opt/lampp/var/mysql/phpmyadmin/PMA_table_info.frm -opt/lampp/var/mysql/phpmyadmin/db.opt -opt/lampp/var/mysql/test -opt/lampp/var/mysql/test/testaa.MYD -opt/lampp/var/mysql/test/testaa.MYI -opt/lampp/var/mysql/test/testaa.frm -opt/lampp/var/mysql/test/testab.MYD -opt/lampp/var/mysql/test/testab.MYI -opt/lampp/var/mysql/test/testab.frm -opt/lampp/var/mysql/test/testac.MYD -opt/lampp/var/mysql/test/testac.MYI -opt/lampp/var/mysql/test/testac.frm -opt/lampp/var/mysql/test/testad.MYD -opt/lampp/var/mysql/test/testad.MYI -opt/lampp/var/mysql/test/testad.frm -opt/lampp/var/mysql/test/testae.MYD -opt/lampp/var/mysql/test/testae.MYI -opt/lampp/var/mysql/test/testae.frm -opt/lampp/var/mysql/test/testaf.MYD -opt/lampp/var/mysql/test/testaf.MYI -opt/lampp/var/mysql/test/testaf.frm -opt/lampp/var/mysql/test/testah.MYD -opt/lampp/var/mysql/test/testah.MYI -opt/lampp/var/mysql/test/testah.frm -opt/lampp/var/mysql/test/testai.MYD -opt/lampp/var/mysql/test/testai.MYI -opt/lampp/var/mysql/test/testai.frm -opt/lampp/var/mysql/test/testak.MYD -opt/lampp/var/mysql/test/testak.MYI -opt/lampp/var/mysql/test/testak.frm -opt/lampp/var/pgsql -opt/lampp/var/pgsql/data -opt/lampp/var/pgsql/data/PG_VERSION -opt/lampp/var/pgsql/data/base -opt/lampp/var/pgsql/data/base/1 -opt/lampp/var/pgsql/data/base/1/10287 -opt/lampp/var/pgsql/data/base/1/10289 -opt/lampp/var/pgsql/data/base/1/10293 -opt/lampp/var/pgsql/data/base/1/10295 -opt/lampp/var/pgsql/data/base/1/10299 -opt/lampp/var/pgsql/data/base/1/10301 -opt/lampp/var/pgsql/data/base/1/10302 -opt/lampp/var/pgsql/data/base/1/10304 -opt/lampp/var/pgsql/data/base/1/10305 -opt/lampp/var/pgsql/data/base/1/10307 -opt/lampp/var/pgsql/data/base/1/10308 -opt/lampp/var/pgsql/data/base/1/10310 -opt/lampp/var/pgsql/data/base/1/10723 -opt/lampp/var/pgsql/data/base/1/10725 -opt/lampp/var/pgsql/data/base/1/10727 -opt/lampp/var/pgsql/data/base/1/10728 -opt/lampp/var/pgsql/data/base/1/10730 -opt/lampp/var/pgsql/data/base/1/10732 -opt/lampp/var/pgsql/data/base/1/10733 -opt/lampp/var/pgsql/data/base/1/10735 -opt/lampp/var/pgsql/data/base/1/10737 -opt/lampp/var/pgsql/data/base/1/10738 -opt/lampp/var/pgsql/data/base/1/10740 -opt/lampp/var/pgsql/data/base/1/10742 -opt/lampp/var/pgsql/data/base/1/10743 -opt/lampp/var/pgsql/data/base/1/10745 -opt/lampp/var/pgsql/data/base/1/10747 -opt/lampp/var/pgsql/data/base/1/10748 -opt/lampp/var/pgsql/data/base/1/10750 -opt/lampp/var/pgsql/data/base/1/10752 -opt/lampp/var/pgsql/data/base/1/1247 -opt/lampp/var/pgsql/data/base/1/1248 -opt/lampp/var/pgsql/data/base/1/1249 -opt/lampp/var/pgsql/data/base/1/1250 -opt/lampp/var/pgsql/data/base/1/1255 -opt/lampp/var/pgsql/data/base/1/1259 -opt/lampp/var/pgsql/data/base/1/2600 -opt/lampp/var/pgsql/data/base/1/2601 -opt/lampp/var/pgsql/data/base/1/2602 -opt/lampp/var/pgsql/data/base/1/2603 -opt/lampp/var/pgsql/data/base/1/2604 -opt/lampp/var/pgsql/data/base/1/2605 -opt/lampp/var/pgsql/data/base/1/2606 -opt/lampp/var/pgsql/data/base/1/2607 -opt/lampp/var/pgsql/data/base/1/2608 -opt/lampp/var/pgsql/data/base/1/2609 -opt/lampp/var/pgsql/data/base/1/2610 -opt/lampp/var/pgsql/data/base/1/2611 -opt/lampp/var/pgsql/data/base/1/2612 -opt/lampp/var/pgsql/data/base/1/2613 -opt/lampp/var/pgsql/data/base/1/2614 -opt/lampp/var/pgsql/data/base/1/2615 -opt/lampp/var/pgsql/data/base/1/2616 -opt/lampp/var/pgsql/data/base/1/2617 -opt/lampp/var/pgsql/data/base/1/2618 -opt/lampp/var/pgsql/data/base/1/2619 -opt/lampp/var/pgsql/data/base/1/2620 -opt/lampp/var/pgsql/data/base/1/2650 -opt/lampp/var/pgsql/data/base/1/2651 -opt/lampp/var/pgsql/data/base/1/2652 -opt/lampp/var/pgsql/data/base/1/2653 -opt/lampp/var/pgsql/data/base/1/2654 -opt/lampp/var/pgsql/data/base/1/2655 -opt/lampp/var/pgsql/data/base/1/2656 -opt/lampp/var/pgsql/data/base/1/2657 -opt/lampp/var/pgsql/data/base/1/2658 -opt/lampp/var/pgsql/data/base/1/2659 -opt/lampp/var/pgsql/data/base/1/2660 -opt/lampp/var/pgsql/data/base/1/2661 -opt/lampp/var/pgsql/data/base/1/2662 -opt/lampp/var/pgsql/data/base/1/2663 -opt/lampp/var/pgsql/data/base/1/2664 -opt/lampp/var/pgsql/data/base/1/2665 -opt/lampp/var/pgsql/data/base/1/2666 -opt/lampp/var/pgsql/data/base/1/2667 -opt/lampp/var/pgsql/data/base/1/2668 -opt/lampp/var/pgsql/data/base/1/2669 -opt/lampp/var/pgsql/data/base/1/2670 -opt/lampp/var/pgsql/data/base/1/2673 -opt/lampp/var/pgsql/data/base/1/2674 -opt/lampp/var/pgsql/data/base/1/2675 -opt/lampp/var/pgsql/data/base/1/2678 -opt/lampp/var/pgsql/data/base/1/2679 -opt/lampp/var/pgsql/data/base/1/2680 -opt/lampp/var/pgsql/data/base/1/2681 -opt/lampp/var/pgsql/data/base/1/2682 -opt/lampp/var/pgsql/data/base/1/2683 -opt/lampp/var/pgsql/data/base/1/2684 -opt/lampp/var/pgsql/data/base/1/2685 -opt/lampp/var/pgsql/data/base/1/2686 -opt/lampp/var/pgsql/data/base/1/2687 -opt/lampp/var/pgsql/data/base/1/2688 -opt/lampp/var/pgsql/data/base/1/2689 -opt/lampp/var/pgsql/data/base/1/2690 -opt/lampp/var/pgsql/data/base/1/2691 -opt/lampp/var/pgsql/data/base/1/2692 -opt/lampp/var/pgsql/data/base/1/2693 -opt/lampp/var/pgsql/data/base/1/2696 -opt/lampp/var/pgsql/data/base/1/2699 -opt/lampp/var/pgsql/data/base/1/2700 -opt/lampp/var/pgsql/data/base/1/2701 -opt/lampp/var/pgsql/data/base/1/2702 -opt/lampp/var/pgsql/data/base/1/2703 -opt/lampp/var/pgsql/data/base/1/2704 -opt/lampp/var/pgsql/data/base/1/PG_VERSION -opt/lampp/var/pgsql/data/base/1/pg_internal.init -opt/lampp/var/pgsql/data/base/10792 -opt/lampp/var/pgsql/data/base/10792/10287 -opt/lampp/var/pgsql/data/base/10792/10289 -opt/lampp/var/pgsql/data/base/10792/10293 -opt/lampp/var/pgsql/data/base/10792/10295 -opt/lampp/var/pgsql/data/base/10792/10299 -opt/lampp/var/pgsql/data/base/10792/10301 -opt/lampp/var/pgsql/data/base/10792/10302 -opt/lampp/var/pgsql/data/base/10792/10304 -opt/lampp/var/pgsql/data/base/10792/10305 -opt/lampp/var/pgsql/data/base/10792/10307 -opt/lampp/var/pgsql/data/base/10792/10308 -opt/lampp/var/pgsql/data/base/10792/10310 -opt/lampp/var/pgsql/data/base/10792/10723 -opt/lampp/var/pgsql/data/base/10792/10725 -opt/lampp/var/pgsql/data/base/10792/10727 -opt/lampp/var/pgsql/data/base/10792/10728 -opt/lampp/var/pgsql/data/base/10792/10730 -opt/lampp/var/pgsql/data/base/10792/10732 -opt/lampp/var/pgsql/data/base/10792/10733 -opt/lampp/var/pgsql/data/base/10792/10735 -opt/lampp/var/pgsql/data/base/10792/10737 -opt/lampp/var/pgsql/data/base/10792/10738 -opt/lampp/var/pgsql/data/base/10792/10740 -opt/lampp/var/pgsql/data/base/10792/10742 -opt/lampp/var/pgsql/data/base/10792/10743 -opt/lampp/var/pgsql/data/base/10792/10745 -opt/lampp/var/pgsql/data/base/10792/10747 -opt/lampp/var/pgsql/data/base/10792/10748 -opt/lampp/var/pgsql/data/base/10792/10750 -opt/lampp/var/pgsql/data/base/10792/10752 -opt/lampp/var/pgsql/data/base/10792/1247 -opt/lampp/var/pgsql/data/base/10792/1248 -opt/lampp/var/pgsql/data/base/10792/1249 -opt/lampp/var/pgsql/data/base/10792/1250 -opt/lampp/var/pgsql/data/base/10792/1255 -opt/lampp/var/pgsql/data/base/10792/1259 -opt/lampp/var/pgsql/data/base/10792/2600 -opt/lampp/var/pgsql/data/base/10792/2601 -opt/lampp/var/pgsql/data/base/10792/2602 -opt/lampp/var/pgsql/data/base/10792/2603 -opt/lampp/var/pgsql/data/base/10792/2604 -opt/lampp/var/pgsql/data/base/10792/2605 -opt/lampp/var/pgsql/data/base/10792/2606 -opt/lampp/var/pgsql/data/base/10792/2607 -opt/lampp/var/pgsql/data/base/10792/2608 -opt/lampp/var/pgsql/data/base/10792/2609 -opt/lampp/var/pgsql/data/base/10792/2610 -opt/lampp/var/pgsql/data/base/10792/2611 -opt/lampp/var/pgsql/data/base/10792/2612 -opt/lampp/var/pgsql/data/base/10792/2613 -opt/lampp/var/pgsql/data/base/10792/2614 -opt/lampp/var/pgsql/data/base/10792/2615 -opt/lampp/var/pgsql/data/base/10792/2616 -opt/lampp/var/pgsql/data/base/10792/2617 -opt/lampp/var/pgsql/data/base/10792/2618 -opt/lampp/var/pgsql/data/base/10792/2619 -opt/lampp/var/pgsql/data/base/10792/2620 -opt/lampp/var/pgsql/data/base/10792/2650 -opt/lampp/var/pgsql/data/base/10792/2651 -opt/lampp/var/pgsql/data/base/10792/2652 -opt/lampp/var/pgsql/data/base/10792/2653 -opt/lampp/var/pgsql/data/base/10792/2654 -opt/lampp/var/pgsql/data/base/10792/2655 -opt/lampp/var/pgsql/data/base/10792/2656 -opt/lampp/var/pgsql/data/base/10792/2657 -opt/lampp/var/pgsql/data/base/10792/2658 -opt/lampp/var/pgsql/data/base/10792/2659 -opt/lampp/var/pgsql/data/base/10792/2660 -opt/lampp/var/pgsql/data/base/10792/2661 -opt/lampp/var/pgsql/data/base/10792/2662 -opt/lampp/var/pgsql/data/base/10792/2663 -opt/lampp/var/pgsql/data/base/10792/2664 -opt/lampp/var/pgsql/data/base/10792/2665 -opt/lampp/var/pgsql/data/base/10792/2666 -opt/lampp/var/pgsql/data/base/10792/2667 -opt/lampp/var/pgsql/data/base/10792/2668 -opt/lampp/var/pgsql/data/base/10792/2669 -opt/lampp/var/pgsql/data/base/10792/2670 -opt/lampp/var/pgsql/data/base/10792/2673 -opt/lampp/var/pgsql/data/base/10792/2674 -opt/lampp/var/pgsql/data/base/10792/2675 -opt/lampp/var/pgsql/data/base/10792/2678 -opt/lampp/var/pgsql/data/base/10792/2679 -opt/lampp/var/pgsql/data/base/10792/2680 -opt/lampp/var/pgsql/data/base/10792/2681 -opt/lampp/var/pgsql/data/base/10792/2682 -opt/lampp/var/pgsql/data/base/10792/2683 -opt/lampp/var/pgsql/data/base/10792/2684 -opt/lampp/var/pgsql/data/base/10792/2685 -opt/lampp/var/pgsql/data/base/10792/2686 -opt/lampp/var/pgsql/data/base/10792/2687 -opt/lampp/var/pgsql/data/base/10792/2688 -opt/lampp/var/pgsql/data/base/10792/2689 -opt/lampp/var/pgsql/data/base/10792/2690 -opt/lampp/var/pgsql/data/base/10792/2691 -opt/lampp/var/pgsql/data/base/10792/2692 -opt/lampp/var/pgsql/data/base/10792/2693 -opt/lampp/var/pgsql/data/base/10792/2696 -opt/lampp/var/pgsql/data/base/10792/2699 -opt/lampp/var/pgsql/data/base/10792/2700 -opt/lampp/var/pgsql/data/base/10792/2701 -opt/lampp/var/pgsql/data/base/10792/2702 -opt/lampp/var/pgsql/data/base/10792/2703 -opt/lampp/var/pgsql/data/base/10792/2704 -opt/lampp/var/pgsql/data/base/10792/PG_VERSION -opt/lampp/var/pgsql/data/base/10792/pg_internal.init -opt/lampp/var/pgsql/data/base/10793 -opt/lampp/var/pgsql/data/base/10793/10287 -opt/lampp/var/pgsql/data/base/10793/10289 -opt/lampp/var/pgsql/data/base/10793/10293 -opt/lampp/var/pgsql/data/base/10793/10295 -opt/lampp/var/pgsql/data/base/10793/10299 -opt/lampp/var/pgsql/data/base/10793/10301 -opt/lampp/var/pgsql/data/base/10793/10302 -opt/lampp/var/pgsql/data/base/10793/10304 -opt/lampp/var/pgsql/data/base/10793/10305 -opt/lampp/var/pgsql/data/base/10793/10307 -opt/lampp/var/pgsql/data/base/10793/10308 -opt/lampp/var/pgsql/data/base/10793/10310 -opt/lampp/var/pgsql/data/base/10793/10723 -opt/lampp/var/pgsql/data/base/10793/10725 -opt/lampp/var/pgsql/data/base/10793/10727 -opt/lampp/var/pgsql/data/base/10793/10728 -opt/lampp/var/pgsql/data/base/10793/10730 -opt/lampp/var/pgsql/data/base/10793/10732 -opt/lampp/var/pgsql/data/base/10793/10733 -opt/lampp/var/pgsql/data/base/10793/10735 -opt/lampp/var/pgsql/data/base/10793/10737 -opt/lampp/var/pgsql/data/base/10793/10738 -opt/lampp/var/pgsql/data/base/10793/10740 -opt/lampp/var/pgsql/data/base/10793/10742 -opt/lampp/var/pgsql/data/base/10793/10743 -opt/lampp/var/pgsql/data/base/10793/10745 -opt/lampp/var/pgsql/data/base/10793/10747 -opt/lampp/var/pgsql/data/base/10793/10748 -opt/lampp/var/pgsql/data/base/10793/10750 -opt/lampp/var/pgsql/data/base/10793/10752 -opt/lampp/var/pgsql/data/base/10793/1247 -opt/lampp/var/pgsql/data/base/10793/1248 -opt/lampp/var/pgsql/data/base/10793/1249 -opt/lampp/var/pgsql/data/base/10793/1250 -opt/lampp/var/pgsql/data/base/10793/1255 -opt/lampp/var/pgsql/data/base/10793/1259 -opt/lampp/var/pgsql/data/base/10793/2600 -opt/lampp/var/pgsql/data/base/10793/2601 -opt/lampp/var/pgsql/data/base/10793/2602 -opt/lampp/var/pgsql/data/base/10793/2603 -opt/lampp/var/pgsql/data/base/10793/2604 -opt/lampp/var/pgsql/data/base/10793/2605 -opt/lampp/var/pgsql/data/base/10793/2606 -opt/lampp/var/pgsql/data/base/10793/2607 -opt/lampp/var/pgsql/data/base/10793/2608 -opt/lampp/var/pgsql/data/base/10793/2609 -opt/lampp/var/pgsql/data/base/10793/2610 -opt/lampp/var/pgsql/data/base/10793/2611 -opt/lampp/var/pgsql/data/base/10793/2612 -opt/lampp/var/pgsql/data/base/10793/2613 -opt/lampp/var/pgsql/data/base/10793/2614 -opt/lampp/var/pgsql/data/base/10793/2615 -opt/lampp/var/pgsql/data/base/10793/2616 -opt/lampp/var/pgsql/data/base/10793/2617 -opt/lampp/var/pgsql/data/base/10793/2618 -opt/lampp/var/pgsql/data/base/10793/2619 -opt/lampp/var/pgsql/data/base/10793/2620 -opt/lampp/var/pgsql/data/base/10793/2650 -opt/lampp/var/pgsql/data/base/10793/2651 -opt/lampp/var/pgsql/data/base/10793/2652 -opt/lampp/var/pgsql/data/base/10793/2653 -opt/lampp/var/pgsql/data/base/10793/2654 -opt/lampp/var/pgsql/data/base/10793/2655 -opt/lampp/var/pgsql/data/base/10793/2656 -opt/lampp/var/pgsql/data/base/10793/2657 -opt/lampp/var/pgsql/data/base/10793/2658 -opt/lampp/var/pgsql/data/base/10793/2659 -opt/lampp/var/pgsql/data/base/10793/2660 -opt/lampp/var/pgsql/data/base/10793/2661 -opt/lampp/var/pgsql/data/base/10793/2662 -opt/lampp/var/pgsql/data/base/10793/2663 -opt/lampp/var/pgsql/data/base/10793/2664 -opt/lampp/var/pgsql/data/base/10793/2665 -opt/lampp/var/pgsql/data/base/10793/2666 -opt/lampp/var/pgsql/data/base/10793/2667 -opt/lampp/var/pgsql/data/base/10793/2668 -opt/lampp/var/pgsql/data/base/10793/2669 -opt/lampp/var/pgsql/data/base/10793/2670 -opt/lampp/var/pgsql/data/base/10793/2673 -opt/lampp/var/pgsql/data/base/10793/2674 -opt/lampp/var/pgsql/data/base/10793/2675 -opt/lampp/var/pgsql/data/base/10793/2678 -opt/lampp/var/pgsql/data/base/10793/2679 -opt/lampp/var/pgsql/data/base/10793/2680 -opt/lampp/var/pgsql/data/base/10793/2681 -opt/lampp/var/pgsql/data/base/10793/2682 -opt/lampp/var/pgsql/data/base/10793/2683 -opt/lampp/var/pgsql/data/base/10793/2684 -opt/lampp/var/pgsql/data/base/10793/2685 -opt/lampp/var/pgsql/data/base/10793/2686 -opt/lampp/var/pgsql/data/base/10793/2687 -opt/lampp/var/pgsql/data/base/10793/2688 -opt/lampp/var/pgsql/data/base/10793/2689 -opt/lampp/var/pgsql/data/base/10793/2690 -opt/lampp/var/pgsql/data/base/10793/2691 -opt/lampp/var/pgsql/data/base/10793/2692 -opt/lampp/var/pgsql/data/base/10793/2693 -opt/lampp/var/pgsql/data/base/10793/2696 -opt/lampp/var/pgsql/data/base/10793/2699 -opt/lampp/var/pgsql/data/base/10793/2700 -opt/lampp/var/pgsql/data/base/10793/2701 -opt/lampp/var/pgsql/data/base/10793/2702 -opt/lampp/var/pgsql/data/base/10793/2703 -opt/lampp/var/pgsql/data/base/10793/2704 -opt/lampp/var/pgsql/data/base/10793/PG_VERSION -opt/lampp/var/pgsql/data/base/10793/pg_internal.init -opt/lampp/var/pgsql/data/global -opt/lampp/var/pgsql/data/global/10290 -opt/lampp/var/pgsql/data/global/10292 -opt/lampp/var/pgsql/data/global/10296 -opt/lampp/var/pgsql/data/global/10298 -opt/lampp/var/pgsql/data/global/1136 -opt/lampp/var/pgsql/data/global/1137 -opt/lampp/var/pgsql/data/global/1213 -opt/lampp/var/pgsql/data/global/1214 -opt/lampp/var/pgsql/data/global/1232 -opt/lampp/var/pgsql/data/global/1233 -opt/lampp/var/pgsql/data/global/1260 -opt/lampp/var/pgsql/data/global/1261 -opt/lampp/var/pgsql/data/global/1262 -opt/lampp/var/pgsql/data/global/2671 -opt/lampp/var/pgsql/data/global/2672 -opt/lampp/var/pgsql/data/global/2676 -opt/lampp/var/pgsql/data/global/2677 -opt/lampp/var/pgsql/data/global/2694 -opt/lampp/var/pgsql/data/global/2695 -opt/lampp/var/pgsql/data/global/2697 -opt/lampp/var/pgsql/data/global/2698 -opt/lampp/var/pgsql/data/global/pg_auth -opt/lampp/var/pgsql/data/global/pg_control -opt/lampp/var/pgsql/data/global/pg_database -opt/lampp/var/pgsql/data/global/pg_fsm.cache -opt/lampp/var/pgsql/data/global/pgstat.stat -opt/lampp/var/pgsql/data/pg_clog -opt/lampp/var/pgsql/data/pg_clog/0000 -opt/lampp/var/pgsql/data/pg_hba.conf -opt/lampp/var/pgsql/data/pg_ident.conf -opt/lampp/var/pgsql/data/pg_multixact -opt/lampp/var/pgsql/data/pg_multixact/members -opt/lampp/var/pgsql/data/pg_multixact/members/0000 -opt/lampp/var/pgsql/data/pg_multixact/offsets -opt/lampp/var/pgsql/data/pg_multixact/offsets/0000 -opt/lampp/var/pgsql/data/pg_subtrans -opt/lampp/var/pgsql/data/pg_subtrans/0000 -opt/lampp/var/pgsql/data/pg_tblspc -opt/lampp/var/pgsql/data/pg_twophase -opt/lampp/var/pgsql/data/pg_xlog -opt/lampp/var/pgsql/data/pg_xlog/000000010000000000000000 -opt/lampp/var/pgsql/data/pg_xlog/archive_status -opt/lampp/var/pgsql/data/postgresql.conf -opt/lampp/var/pgsql/data/postgresql.conf.orig -opt/lampp/var/pgsql/data/postgresql.conf.rej -opt/lampp/var/pgsql/data/postmaster.opts -opt/lampp/var/proftpd -opt/lampp/var/proftpd/proftpd.delay -opt/lampp/var/run -opt/lampp/var/run/ddclient.pid -usr/lib/libmysqlclient.a -usr/lib/libmysqlclient.la -usr/lib/libmysqlclient.so -usr/lib/libmysqlclient.so.15 -usr/lib/libmysqlclient.so.15.0.0 -usr/lib/libpq.a -usr/lib/libpq.so -usr/lib/libpq.so.4 -usr/lib/libpq.so.4.1 diff --git a/src/paks/xampp/install.sh b/src/paks/xampp/install.sh deleted file mode 100644 index c53fdc4377..0000000000 --- a/src/paks/xampp/install.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -# -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Extract the files -tar xfz files.tgz -C / -tar xfz conf.tgz -C / -cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/xampp/uninstall.sh b/src/paks/xampp/uninstall.sh deleted file mode 100644 index ad6122665e..0000000000 --- a/src/paks/xampp/uninstall.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Delete the files -## Befehl fehlt noch -rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/xinetd/ROOTFILES b/src/paks/xinetd/ROOTFILES deleted file mode 100644 index 791e6cdf28..0000000000 --- a/src/paks/xinetd/ROOTFILES +++ /dev/null @@ -1,11 +0,0 @@ -usr/sbin/itox -usr/sbin/xconv.pl -usr/sbin/xinetd -#usr/share/man/man5/xinetd.conf.5 -#usr/share/man/man8/itox.8 -#usr/share/man/man8/xconv.pl.8 -#usr/share/man/man8/xinetd.8 -#usr/share/man/man8/xinetd.log.8 -var/ipfire/xinetd -var/ipfire/xinetd/xinetd.conf -var/ipfire/xinetd/xinetd.d diff --git a/src/paks/xinetd/install.sh b/src/paks/xinetd/install.sh deleted file mode 100644 index 3a9ce551bf..0000000000 --- a/src/paks/xinetd/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -# -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Extract the files -tar xfz files.tgz -C / -cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/xinetd/uninstall.sh b/src/paks/xinetd/uninstall.sh deleted file mode 100644 index ad6122665e..0000000000 --- a/src/paks/xinetd/uninstall.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -################################################################# -# # -# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # -# # -################################################################# -# -# Delete the files -## Befehl fehlt noch -rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/mc/uninstall.sh b/src/paks/xvid/depends.txt similarity index 100% rename from src/paks/mc/uninstall.sh rename to src/paks/xvid/depends.txt diff --git a/src/paks/mysql/ROOTFILES b/src/paks/yasuc/depends.txt similarity index 100% rename from src/paks/mysql/ROOTFILES rename to src/paks/yasuc/depends.txt