diff options
author | Markus Warg <mw@it-sls.de> | 2010-03-11 15:20:31 +0100 |
---|---|---|
committer | Markus Warg <mw@it-sls.de> | 2010-03-11 15:20:31 +0100 |
commit | 725d28c39fafd8719a43525930d7861141e9a53e (patch) | |
tree | a7440e9368aba13a64c771a45a9e159408b8f81e /cacert | |
parent | df92c83b625715f223070d5d9c9e3f5b814560ec (diff) | |
download | cacert-devel-725d28c39fafd8719a43525930d7861141e9a53e.tar.gz cacert-devel-725d28c39fafd8719a43525930d7861141e9a53e.tar.xz cacert-devel-725d28c39fafd8719a43525930d7861141e9a53e.zip |
source code taken from cacert-20100204.tar.bz2 part 2
Diffstat (limited to 'cacert')
229 files changed, 6787 insertions, 0 deletions
diff --git a/cacert/CommModule/commdaemon b/cacert/CommModule/commdaemon new file mode 100755 index 0000000..d07495a --- /dev/null +++ b/cacert/CommModule/commdaemon @@ -0,0 +1,45 @@ +#! /bin/bash +# @(#)(CAcert) $Id: commdaemon,v 1.2 2009-12-28 15:14:40 wytze Exp $ +# commdaemon - script to run CommModule script in a loop, +# while checking for removal of activation by external script + +NAME=CommModule/commdaemon +PID=$$ +TAG=${NAME}\[${PID}] + +case $# in + 1) SCRIPT=$1 + ACTIVE=${SCRIPT}-active + ;; + *) echo "Usage: $0 <script>" 1>&2 + exit 1 + ;; +esac + +syslog_error() +{ + logger -t ${TAG} -p user.err $1 +} + +syslog_notice() +{ + logger -t ${TAG} -p user.notice $1 +} + +if [ ! -x ${SCRIPT} ] +then + syslog_error "${SCRIPT} not found or not executable" + exit 1 +fi + +(echo -n "${TAG}: "; date) >${ACTIVE} + +syslog_notice "main loop started" +while [ -f ${ACTIVE} ] +do + syslog_notice "${SCRIPT} started" + ${SCRIPT} >>nohup.out 2>&1 + syslog_notice "${SCRIPT} ended" + sleep 1 +done +syslog_notice "main loop stopped" diff --git a/cacert/CommModule/commmodule b/cacert/CommModule/commmodule new file mode 100755 index 0000000..f003f30 --- /dev/null +++ b/cacert/CommModule/commmodule @@ -0,0 +1,166 @@ +#! /bin/sh +# @(#)(CAcert) $Id: commmodule,v 1.1 2009-12-28 15:09:24 wytze Exp $ +### BEGIN INIT INFO +# Provides: commmodule +# Required-Start: $local_fs $remote_fs $syslog mysql +# Required-Stop: $local_fs $remote_fs $syslog +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Start and stop the CAcert CommModule processes +# Description: This file should be used to start and stop the CAcert +# CommModule processes from /etc/init.d. +### END INIT INFO + +# Author: Wytze van der Raay <wytze@cacert.org> +# +# Please remove the "Author" lines above and replace them +# with your own name if you copy and modify this script. + +# Do NOT "set -e" + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="CAcert CommModule processes start/stop" +NAME=commmodule +PIDFILE=/var/run/$NAME.pid +SCRIPTNAME=/etc/init.d/$NAME + +# Read configuration variable file if it is present +[ -r /etc/default/$NAME ] && . /etc/default/$NAME + +# Load the VERBOSE setting and other rcS variables +. /lib/init/vars.sh + +# Define LSB log_* functions. +# Depend on lsb-base (>= 3.0-6) to ensure that this file is present. +. /lib/lsb/init-functions + +if [ "$1" != "setup" ] +then + if [ "${COMMROOT}" = "" ] + then + echo "$0: COMMROOT not set" + exit 1 + fi + if [ "${COMMROLE}" = "" ] + then + echo "$0: COMMROLE not set" + exit 1 + fi + if [ ! -d ${COMMROOT} ] + then + echo "$0: ${COMMROOT} is not a directory" + exit 1 + fi + if [ ! -x ${COMMROOT}/commdaemon ] + then + echo "$0: ${COMMROOT}/commdaemon not present or non-executable" + exit 1 + fi + if [ ! -x ${COMMROOT}/${COMMROLE}.pl ] + then + echo "$0: ${COMMROOT}/${COMMROLE}.pl not present or non executable" + exit 1 + fi + + DAEMON=${COMMROOT}/commdaemon + DAEMON_ARGS="${COMMROOT}/${COMMROLE}.pl" + ACTIVE=${COMMROOT}/${COMMROLE}.pl-active +fi + +# Load usbserial module with proper parameters +/sbin/modprobe usbserial vendor=0x067b product=0x2501 + +# +# Function that starts the daemon/service +# +do_start() +{ + # Return + # 0 if daemon has been started + # 1 if daemon was already running + # 2 if daemon could not be started + start-stop-daemon --start --quiet --pidfile $PIDFILE \ + --chdir ${COMMROOT} --background --exec $DAEMON --test \ + > /dev/null \ + || return 1 + start-stop-daemon --start --quiet --pidfile $PIDFILE \ + --chdir ${COMMROOT} --background --exec $DAEMON -- \ + $DAEMON_ARGS \ + || return 2 + # Add code here, if necessary, that waits for the process to be ready + # to handle requests from services started subsequently which depend + # on this one. As a last resort, sleep for some time. +} + +# +# Function that stops the daemon/service +# +do_stop() +{ + # Return + # 0 if daemon has been stopped + # 1 if daemon was already stopped + # 2 if daemon could not be stopped + # other if a failure occurred + rm -f ${ACTIVE} + sleep 5 + start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME + RETVAL="$?" + [ "$RETVAL" = 2 ] && return 2 + # Many daemons don't delete their pidfiles when they exit. + rm -f $PIDFILE + return "$RETVAL" +} + +case "$1" in + start) + [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" + do_start + case "$?" in + 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; + 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + esac + ;; + stop) + [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" + do_stop + case "$?" in + 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; + 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + esac + ;; + restart|force-reload) + log_daemon_msg "Restarting $DESC" "$NAME" + do_stop + case "$?" in + 0|1) + do_start + case "$?" in + 0) log_end_msg 0 ;; + 1) log_end_msg 1 ;; # Old process is still running + *) log_end_msg 1 ;; # Failed to start + esac + ;; + *) + # Failed to stop + log_end_msg 1 + ;; + esac + ;; + setup) + # setup default installation of commmodule scripts + cp ${NAME} /etc/init.d + chown root.root /etc/init.d/${NAME} + update-rc.d -f ${NAME} remove + update-rc.d ${NAME} defaults 90 20 + (echo "COMMROOT=/home/cacert/www/CommModule"; + echo "COMMROLE=client") >/etc/default/${NAME} + ;; + *) + echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|setup}" >&2 + exit 3 + ;; +esac + +: diff --git a/cacert/pages/account/56.php b/cacert/pages/account/56.php new file mode 100644 index 0000000..348cc49 --- /dev/null +++ b/cacert/pages/account/56.php @@ -0,0 +1,41 @@ +<? /*
+LibreSSL - CAcert web application
+Copyright (C) 2004-2008 CAcert Inc.
+
+This program 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; version 2 of the License.
+
+This program 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 this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+*/ ?>
+<?=_("List of Organisation Assurers:")?>
+
+<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
+ <tr>
+ <td colspan="1" class="title"><?=_("Name")?></td>
+ <td colspan="1" class="title"><?=_("Email")?></td>
+ <td colspan="1" class="title"><?=_("Country")?></td>
+ </tr>
+ <?
+ $query = "select users.fname,users.lname,users.email, countries.name from users left join countries on users.ccid=countries.id where orgadmin=1;";
+ $res = mysql_query($query);
+ while($row = mysql_fetch_assoc($res))
+ {
+ ?>
+ <tr>
+ <td><?=sanitizeHTML($row['fname'])." ".sanitizeHTML($row['lname'])?></td>
+ <td><a href="mailto:<?=sanitizeHTML($row['email'])?>"><?=sanitizeHTML($row['email'])?></a></td>
+ <td><?=sanitizeHTML($row['name'])?></td>
+ </tr>
+ <?
+ }
+?>
+</table>
+
diff --git a/cacert/scripts/ate-de11-email.txt b/cacert/scripts/ate-de11-email.txt new file mode 100644 index 0000000..21ac13a --- /dev/null +++ b/cacert/scripts/ate-de11-email.txt @@ -0,0 +1,37 @@ +CAcert Assurer Training Event Berlin-Brandenburg
+::::::::::::::::::::::::::::::::::::::::::::::::
+
+Es hat sich viel getan im letzten Jahr. Eine ganze Reihe von bisher eher
+"muendlich ueberlieferten" Regeln wurden in Policies gegossen. Neue
+Prozeduren (z.B. die Assurer Challenge) und Verpflichtungen (z.B. in dem
+CAcert Community Agreement) wurden beschlossen. Die Assurer Training Events
+wollen nun versuchen, die ganzen Informationen "unter's Volk" zu bringen:
+
+- Wovor schuetzt die CCA jedes CAcert-Community-Mitglied und somit auch
+ dich?
+- Kannst du die 5 Statements der "Purpose of Assurance" aufzaehlen?
+- Kannst du auf Anhieb 10 Sicherheitsmerkmale des deutschen Personal-
+ ausweises aufzaehlen?
+
+Antworten auf diese und weitere Fragen erhaelst du bei den Assurer
+Training Events (ATEs).
+
+Der Termin fuer Berlin steht nun fest.
+
+Berlin-Wilmerdorf,
+Donnerstag 09. Juli 2009 in der Zeit von 19:00 bis 21:00 Uhr
+Restaurant Prometheus
+Schlangenbader Strasse
+12345 Berlin-Wilmerdorf
+[http://wiki.cacert.org/wiki/Events/20090709ATE-Berlin]
+
+Anmeldungen erfolgen bitte ausschliesslich ueber folgende Seite:
+[http://cacert-berlin.mixxt.de/networks/events/show_event.7105]
+
+Die Teilnahme an der Veranstaltung ist kostenlos, Spenden werden aber
+gerne gesehen.
+
+Details zum Veranstaltungsort und Anfahrthinweise findet Ihr im Wiki und
+bei mixxt.de, siehe die Links oben.
+
+Kontakt: events@cacert.org
diff --git a/cacert/scripts/ate-de11-mail.php.txt b/cacert/scripts/ate-de11-mail.php.txt new file mode 100644 index 0000000..7021e5f --- /dev/null +++ b/cacert/scripts/ate-de11-mail.php.txt @@ -0,0 +1,92 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2008 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("ate-de11-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 200; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes + + $locid = 228950; // Berlin + + + $city = "Berlin 9. Juli 2009"; + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] ATE-$city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] ATE-$city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] ATE-$city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] ATE-$city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients."; +?> diff --git a/cacert/scripts/ate-goteborg-s16-email.txt b/cacert/scripts/ate-goteborg-s16-email.txt new file mode 100644 index 0000000..e1153f7 --- /dev/null +++ b/cacert/scripts/ate-goteborg-s16-email.txt @@ -0,0 +1,58 @@ +CAcert Assurer Training Event Goteborg
+::::::::::::::::::::::::::::::::::::::::::::::::::
+
+Much has happened during the past year. A list of up till now mostly
+"orally transmitted" rules have been cast in policies. New procedures
+(e.g. the Assurer Challenge) and obligations (e.g. in the CAcert
+Community Agreement) have been decided. The Assurer Training Events
+try to bring all this informations to "the people":
+
+- To what, does the CCA protect every CAcert-Community-Member and as
+ such also you?
+- Can you recount the 5 statements of the "Purpose of Assurance"?
+- Can you at least recount 10 security marks of the Swedish passport
+ /Identity card?
+
+Answers to these and following questions are given at the Assurer
+Training Events (ATE’s).
+Participation in the events is free, Contributions are however
+appreciated.
+
+
+The ATE-Goteborg takes place on:
+- Wednesday, Dec 16th from 20:00 till 22:00
+- at
+- [http://www.gothiatowers.com/]
+- Massans gata 24
+- 402 26 Goteborg, Sweden
+
+The Event-Team is already excited about your participation.
+
+Registration ATE-Goteborg
+[http://wiki.cacert.org/Events/20091216ATE-Goteborg]
+
+Remark from Leif-Joran:
+I have a backup room at my department just a couple of
+hundred meters from Gothia Towers. L307, Lennart Torstenssons-gatan 8
+
+Remarks from Ted:
+As I understand it, it will probably be harder to find a room inside the
+hotel than to find the hotel itself, it boasts to be the biggest hotel
+in Skandinavia...
+
+My mobile phone number is +49 151 52634367. I'm there on a probably
+quite busy business trip, so it may be that I have to cancel the whole
+thing on short notice.
+I propose that you try to contact me by phone before leaving home, so I
+can confirm that I will be there.
+
+Also I don't have much time to prepare, so please don't expect something
+like a professional presentation from me. I hope it will be a nice
+little meeting, we will assure each others, you'll ask questions you
+always wanted to ask about CACert and I'll tell you about all the things
+that have recently changed at CAcert, at least the important ones. And
+maybe I'll try to trick you into making a false assurance, just to show
+you where problems are expected. :-)
+
+
+contact: events@cacert.org
diff --git a/cacert/scripts/ate-goteborg-s16-mail.php.txt b/cacert/scripts/ate-goteborg-s16-mail.php.txt new file mode 100644 index 0000000..6e4a7c0 --- /dev/null +++ b/cacert/scripts/ate-goteborg-s16-mail.php.txt @@ -0,0 +1,110 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2009 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("ate-goteborg-s16-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 50; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes +// $locid = 228950; // Berlin + +// Software Freedom Day 19. Sept 2009 +// $locid = 715191; // Hamburg + +// LISA2009 Baltimore, 1.11.2009 +// $locid = 2138880; // Baltimore (Baltimore (city)), Maryland, United States +// $city = "Baltimore, MD - Nov. 3rd 2009"; + +// OpenSourceTreffen-Muenchen, 20.11.2009 +// $locid = 1260319; // Muenchen +// $city = "Muenchen - 20. Nov 2009"; + +// BLIT2009, Brandenburger Linux-Infotag, 21.11.2009 +// $locid = 1486658; // Potsdam +// $eventname = "Brandenburger Linux-Infotag (BLIT2009)"; +// $city = "Potsdam - 21. Nov 2009"; + +// ATE-Goteborg, 16.12.2009 + $locid = 664715; // Goteborg, Vastra Gotaland, Sweden + $eventname = "ATE-Goteborg"; + $city = "Goteborg - Dec 16th 2009"; + + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients."; +?> diff --git a/cacert/scripts/blit-de15-email.txt b/cacert/scripts/blit-de15-email.txt new file mode 100644 index 0000000..28044ee --- /dev/null +++ b/cacert/scripts/blit-de15-email.txt @@ -0,0 +1,23 @@ +Hallo CAcerties, + +kommenden Samstag, 21. November sind wir mit einem Stand und einem Vortrag auf +dem Brandenburger Linux-Infotag vertreten. +Bisher haben sich nur zwei CAcert-Repraesentanten auf unserer Wiki Seite +als Helfer eingetragen. +Sollte jemand aus Potsdam, Berlin oder sonstwo (also du) Lust und Zeit haben, +dabei zu sein, tragt euch bitte ein! + +Warum wir das nicht alleine schaffen? +Warum wir gerade dich brauchen? +Deine Hilfe? +Wenn wir dort Lehrer, Professoren, wissenschaftliche Mitarbeiter, +Klassensprecher, Fachschaftler, irgend jemand von CAcert ueberzeugen +koennen, dann wollen wir 100 Punkte vergeben koennen, dass neue +Keimzellen entstehen. Und dazu muessen wir mindestens zu dritt sein. + +Du bist Assurer? +Prima! Dann freuen wir uns darauf, dich am Samstag zu sehen! + +Wiki Organisationsseite: [http://wiki.cacert.org/events/blit2009] + +Kontakt: events@cacert.org diff --git a/cacert/scripts/blit-de15-mail.php.txt b/cacert/scripts/blit-de15-mail.php.txt new file mode 100644 index 0000000..87666ea --- /dev/null +++ b/cacert/scripts/blit-de15-mail.php.txt @@ -0,0 +1,105 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2009 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("blit-de15-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 50; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes +// $locid = 228950; // Berlin + +// Software Freedom Day 19. Sept 2009 +// $locid = 715191; // Hamburg + +// LISA2009 Baltimore, 1.11.2009 +// $locid = 2138880; // Baltimore (Baltimore (city)), Maryland, United States +// $city = "Baltimore, MD - Nov. 3rd 2009"; + +// OpenSourceTreffen-Muenchen, 20.11.2009 +// $locid = 1260319; // Muenchen +// $city = "Muenchen - 20. Nov 2009"; + +// BLIT2009, Brandenburger Linux-Infotag, 21.11.2009 + $locid = 1486658; // Potsdam + $eventname = "Brandenburger Linux-Infotag (BLIT2009)"; + $city = "Potsdam - 21. Nov 2009"; + + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients."; +?> diff --git a/cacert/scripts/cleanthem.pl b/cacert/scripts/cleanthem.pl new file mode 100644 index 0000000..18d68b0 --- /dev/null +++ b/cacert/scripts/cleanthem.pl @@ -0,0 +1,24 @@ +#!/usr/bin/perl -w + +my %mysqltables=("gpg"=>"gpg","client"=>"emailcerts","server"=>"domaincerts","orgclient"=>"orgemailcerts","orgserver"=>"orgdomaincerts"); + +sub mysql_query($) +{ + $dbh->do($_[0]); +} + +my $aktiv=1; + +foreach my $dir (("../csr","../crt")) +{ + my $dirhandle; + opendir($dirhandle,"../csr"); + while($_=readdir($dirhandle)) + { + if(! -s "$dir/$_" and -f "$dir/$_" and !-d "$dir/$_") + { + print "Loesche $dir/$_\n"; + unlink "$dir/$_"; + } + } +} diff --git a/cacert/scripts/consistence.php b/cacert/scripts/consistence.php new file mode 100755 index 0000000..8d6b39b --- /dev/null +++ b/cacert/scripts/consistence.php @@ -0,0 +1,105 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2008 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + +if(0) +{ + $query = "select locations.id from locations, regions where locations.regid=regions.id and locations.ccid!=regions.ccid;"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + $query = "update users set `assurer`='1' where `id`='${row['uid']}'"; + echo "inconsistence in location ".$row['locations.id']."\n"; + //mysql_query($query); + } +} + +if(0) +{ + $query = "select id from locations where regid<1 or ccid<1;"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + //$query = "update users set `assurer`='1' where `id`='${row['uid']}'"; + echo "inconsistence in location ".$row['id']."\n"; + //mysql_query($query); + } +} +if(1) +{ + $query = "select users.id, locations.regid from users inner join locations on users.locid=locations.id where users.regid!=locations.regid or users.ccid!=locations.ccid;"; + $res = mysql_query($query); + echo mysql_error(); + while($row = mysql_fetch_assoc($res)) + { + echo "inconsistence in user #".$row['id']."\n"; + $query = "update users set regid=".$row['regid']." where `id`=".$row['id'].";"; + + echo "query: $query\n"; + if($row['regid']=="1182") mysql_query($query); + } +} + +exit(); + + mysql_query("update `locations` set `acount`=0"); + $query = "SELECT `users`.`locid` AS `locid`, count(*) AS `total` FROM `users` + WHERE users.assurer='1' AND `users`.`locid` != 0 and users.listme=1 + GROUP BY `users`.`locid`"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + $query = "update `locations` set `acount`='${row['total']}' where `id`='${row['locid']}'"; + echo $query."\n"; + mysql_query($query); + } + + + mysql_query("update `regions` set `acount`=0"); + $query = "SELECT `users`.`regid` AS `regid`, count(*) AS `total` FROM `users` + WHERE users.assurer='1' AND `users`.`regid` != 0 and users.listme=1 + GROUP BY `users`.`regid`"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + $query = "update `regions` set `acount`='${row['total']}' where `id`='${row['regid']}'"; + echo $query."\n"; + mysql_query($query); + } + + + + + mysql_query("update `countries` set `acount`=0"); + $query = "SELECT `users`.`ccid` AS `ccid`, count(*) AS `total` FROM `users` + WHERE users.assurer='1' AND `users`.`ccid` != 0 and users.listme=1 + GROUP BY `users`.`ccid`"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + $query = "update `countries` set `acount`='${row['total']}' where `id`='${row['ccid']}'"; + echo $query."\n"; + mysql_query($query); + } + + + + +?> diff --git a/cacert/scripts/findnull.pl b/cacert/scripts/findnull.pl new file mode 100644 index 0000000..02df02f --- /dev/null +++ b/cacert/scripts/findnull.pl @@ -0,0 +1,14 @@ +#!/usr/bin/perl -w + +foreach (<../crt/*>) +{ + my $res=`openssl x509 -in $_ -text -noout -inform der`; + if($res=~m/\\x00/) + { + print "Alert: $_ is affected!\n"; + } + else + { + #print "$_ not affected\n"; + } +} diff --git a/cacert/scripts/lisa-us13-email.txt b/cacert/scripts/lisa-us13-email.txt new file mode 100644 index 0000000..9222af3 --- /dev/null +++ b/cacert/scripts/lisa-us13-email.txt @@ -0,0 +1,12 @@ +LISA'09: CACert BoF session, Tues, Need a few assurers to help +get things rolling. + +Greeting, + +I will be leading GPG Key signing and CACert.org BoF sessions next Tuesday evening at the LISA 2009 conference in Baltimore, MD. At LISA'04 in Atlanta, I led a GPG key signing BoF and I attended a CACert BoF. I became an assurer at that conference. I helped 35 people gain assurance points at the 2004 conference. I hope we can add a good number of new assurers at this years conference. + +In order to do that, I need some help from a few qualified assurers. With as few as three already qualified assurers, we can bring several new people into the community. More assurers means we can split the work and move through everything quicker and easier. So far, I have just myself, so I really NEED some help. If you will be available, please contact me. + +Ken Schumacher + +Event Listing: http://wiki.cacert.org/events/LISA2009 diff --git a/cacert/scripts/lisa-us13-mail.php.txt b/cacert/scripts/lisa-us13-mail.php.txt new file mode 100644 index 0000000..cddde83 --- /dev/null +++ b/cacert/scripts/lisa-us13-mail.php.txt @@ -0,0 +1,96 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2009 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("lisa-us13-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 250; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes +// $locid = 228950; // Berlin + +// Software Freedom Day 19. Sept 2009 +// $locid = 715191; // Hamburg + +// LISA2009 Baltimore, 1.11.2009 + $locid = 2138880; // Baltimore (Baltimore (city)), Maryland, United States + $city = "Baltimore, MD - Nov. 3rd 2009"; + + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] LISA2009 - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] LISA2009 - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] LISA2009 - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] LISA2009 - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients."; +?> diff --git a/cacert/scripts/mission-hills-ca-us17-email.txt b/cacert/scripts/mission-hills-ca-us17-email.txt new file mode 100644 index 0000000..9389c07 --- /dev/null +++ b/cacert/scripts/mission-hills-ca-us17-email.txt @@ -0,0 +1,17 @@ +Hello,
+This email is to let you know there will be a number of assurers gathering in
+your area. Please bring several (4-6) printed CAP forms and your photo ID's.
+
+Friday Jan 15th, 6:30PM,
+Presidente Mexican Restaurant
+11451 Sepulveda Boulevard
+Mission Hills, CA 91345-1117
+
+If you can make it, remember it will be your opertunity to gain assurances
+for yourself and boost the number of points you can assure to.
+
+Please RVSP thank you.
+
+Regards,
+Greg Stark
+gstark@electrorent.com
diff --git a/cacert/scripts/mission-hills-ca-us17-mail.php.txt b/cacert/scripts/mission-hills-ca-us17-mail.php.txt new file mode 100644 index 0000000..c52d87c --- /dev/null +++ b/cacert/scripts/mission-hills-ca-us17-mail.php.txt @@ -0,0 +1,115 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2009 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("mission-hills-ca-us17-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 50; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes +// $locid = 228950; // Berlin + +// Software Freedom Day 19. Sept 2009 +// $locid = 715191; // Hamburg + +// LISA2009 Baltimore, 1.11.2009 +// $locid = 2138880; // Baltimore (Baltimore (city)), Maryland, United States +// $city = "Baltimore, MD - Nov. 3rd 2009"; + +// OpenSourceTreffen-Muenchen, 20.11.2009 +// $locid = 1260319; // Muenchen +// $city = "Muenchen - 20. Nov 2009"; + +// BLIT2009, Brandenburger Linux-Infotag, 21.11.2009 +// $locid = 1486658; // Potsdam +// $eventname = "Brandenburger Linux-Infotag (BLIT2009)"; +// $city = "Potsdam - 21. Nov 2009"; + +// ATE-Goteborg, 16.12.2009 +// $locid = 664715; // Goteborg, Vastra Gotaland, Sweden +// $eventname = "ATE-Goteborg"; +// $city = "Goteborg - Dec 16th 2009"; + +// Assurance Event Mission Hills CA, 15.01.2010 + $locid = 2094781; // Mission Hills (Los Angeles), California, United States + $eventname = "Assurance Event"; + $city = "Mission Hills CA - Jan 15th 2010"; + + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients.\n"; +?> diff --git a/cacert/scripts/osd-copenhagen-dk18-email.txt b/cacert/scripts/osd-copenhagen-dk18-email.txt new file mode 100644 index 0000000..5301472 --- /dev/null +++ b/cacert/scripts/osd-copenhagen-dk18-email.txt @@ -0,0 +1,35 @@ +Open Source Days 2010 - Copenhagen, DK - March 5th and 6th 2010
+:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
+
+Dear Assurers,
+
+CAcert is trying to get a booth at the
+Open Source Days 2010 conference at Copenhagen DK
+March 5th and 6th 2010
+http://www.opensourcedays.org/2010
+
+The call for participation deadline is Jan 20th 2010
+
+As we have another event at the same time (Cebit 2010), we are in need
+of assistance from additional local assurers who can make this thing happen.
+
+We are looking for assurers who are available to organize
+CAcert's participation at Open Source Days 2010.
+
+As organizer for this event you get all assistance you'll need
+from the events team leader.
+
+If you are interested in helping please respond
+to this email so we can trigger the the call for participation
+before the deadline.
+
+Thanks for your assistance in advance.
+
+
+--
+mit freundlichen Gruessen / best regards
+Ulrich Schroeter - CAcert Event Organisation Officer, CAcert Case Manager, CAcert Arbitrator
+
+CAcert.org - Free Certificates
+E-Mail: Events@CAcert.org & Ulrich@CAcert.org
+
diff --git a/cacert/scripts/osd-copenhagen-dk18-mail.php.txt b/cacert/scripts/osd-copenhagen-dk18-mail.php.txt new file mode 100644 index 0000000..e99d96c --- /dev/null +++ b/cacert/scripts/osd-copenhagen-dk18-mail.php.txt @@ -0,0 +1,120 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2009 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("osd-copenhagen-dk18-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 50; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes +// $locid = 228950; // Berlin + +// Software Freedom Day 19. Sept 2009 +// $locid = 715191; // Hamburg + +// LISA2009 Baltimore, 1.11.2009 +// $locid = 2138880; // Baltimore (Baltimore (city)), Maryland, United States +// $city = "Baltimore, MD - Nov. 3rd 2009"; + +// OpenSourceTreffen-Muenchen, 20.11.2009 +// $locid = 1260319; // Muenchen +// $city = "Muenchen - 20. Nov 2009"; + +// BLIT2009, Brandenburger Linux-Infotag, 21.11.2009 +// $locid = 1486658; // Potsdam +// $eventname = "Brandenburger Linux-Infotag (BLIT2009)"; +// $city = "Potsdam - 21. Nov 2009"; + +// ATE-Goteborg, 16.12.2009 +// $locid = 664715; // Goteborg, Vastra Gotaland, Sweden +// $eventname = "ATE-Goteborg"; +// $city = "Goteborg - Dec 16th 2009"; + +// Assurance Event Mission Hills CA, 15.01.2010 +// $locid = 2094781; // Mission Hills (Los Angeles), California, United States +// $eventname = "Assurance Event"; +// $city = "Mission Hills CA - Jan 15th 2010"; + +// Assurance Event OSD Copenhagen DK, 5.03.2010 + $locid = 423655; // Copenhagen, Kobenhavn*, Denmark + $eventname = "Assurance Event OpenSource-Days 2010"; + $city = "Copenhagen DK - March 5th/6th 2010"; + + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients.\n"; +?> diff --git a/cacert/scripts/ost-de14-email.txt b/cacert/scripts/ost-de14-email.txt new file mode 100644 index 0000000..30862ff --- /dev/null +++ b/cacert/scripts/ost-de14-email.txt @@ -0,0 +1,22 @@ +Sicherheit im Zeitalter der IT und des Internets - aufwendig und teuer?
+Das muss nicht sein!
+CAcert zeigt Dir, wie Du einfach und preiswert E-Mails signierst und
+Internet-Verbindungen verschluesselst.
+
+Die so genannten Zertifikate von CAcert lassen sich in Programmen
+wie Thunderbird und vielen anderen E-Mail-Programmen oder in
+ausgewachsenen Office-Programmen wie z.B. OpenOffice.org benutzen.
+Zur Verschluesselung von Internet-Verbindungen koennen die Zertifikate
+in Webservern und als Login-Moeglichkeit bei entsprechenden Gegenstellen
+in Webbrowsern eingesetzt werden.
+
+Auch Du kannst mitmachen, dazu brauchst Du nur Deinen Personalausweis
+und idealerweise einen Fuehrerschein oder Reisepass mitzubringen.
+
+Freitag, den 20. November, ab 17 Uhr im Café Netzwerk
+http://www.cafe-netzwerk.de/ in Muenchen
+
+CAcert Vorstellung im Rahmen der Open-Source Treffen
+http://www.opensourcetreffen.de/
+
+Kontakt: events@cacert.org
diff --git a/cacert/scripts/ost-de14-mail.php.txt b/cacert/scripts/ost-de14-mail.php.txt new file mode 100644 index 0000000..af98ed8 --- /dev/null +++ b/cacert/scripts/ost-de14-mail.php.txt @@ -0,0 +1,100 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2009 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("ost-de14-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 50; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes +// $locid = 228950; // Berlin + +// Software Freedom Day 19. Sept 2009 +// $locid = 715191; // Hamburg + +// LISA2009 Baltimore, 1.11.2009 +// $locid = 2138880; // Baltimore (Baltimore (city)), Maryland, United States +// $city = "Baltimore, MD - Nov. 3rd 2009"; + +// OpenSourceTreffen-Muenchen, 20.11.2009 + $locid = 1260319; // Muenchen + $city = "Muenchen - 20. Nov 2009"; + + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] Open-Source Treffen - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] Open-Source Treffen - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] Open-Source Treffen - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] Open-Source Treffen - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients."; +?> diff --git a/cacert/scripts/scale8x-los-angeles-ca-us19-email.txt b/cacert/scripts/scale8x-los-angeles-ca-us19-email.txt new file mode 100644 index 0000000..dcc1d89 --- /dev/null +++ b/cacert/scripts/scale8x-los-angeles-ca-us19-email.txt @@ -0,0 +1,36 @@ +SCALE, the premier open source conference in Los Angeles is open +for the 8th year. +It will be held at + +5400 West Century Blvd, +Los Angeles, 90045. + +It will be held this coming +* February 19-21 +at the Los Angeles Airport Westin Hotel. + +More details can be found at the website, +https://www.socallinuxexpo.org/scale8x/ + + +Any assurers that are available are welcome to cover any of the slots below. +If you signup for a slot, please ensure you can stay for the entire time. + + +Sat 09:30 - 14:00 +Sat 14:00 - 18:00 + + +Sun 09:30 - 13:00 +Sun 13:00 - 16:00 + + +https://wiki.cacert.org/events/SCaLE8x +has the details on our organization. + + +Thanks, +Steve +Event Organiser + +contact: events@cacert.org diff --git a/cacert/scripts/scale8x-los-angeles-ca-us19-mail.php.txt b/cacert/scripts/scale8x-los-angeles-ca-us19-mail.php.txt new file mode 100644 index 0000000..a6fb524 --- /dev/null +++ b/cacert/scripts/scale8x-los-angeles-ca-us19-mail.php.txt @@ -0,0 +1,125 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2009 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("scale8x-los-angeles-ca-us19-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 100; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes +// $locid = 228950; // Berlin + +// Software Freedom Day 19. Sept 2009 +// $locid = 715191; // Hamburg + +// LISA2009 Baltimore, 1.11.2009 +// $locid = 2138880; // Baltimore (Baltimore (city)), Maryland, United States +// $city = "Baltimore, MD - Nov. 3rd 2009"; + +// OpenSourceTreffen-Muenchen, 20.11.2009 +// $locid = 1260319; // Muenchen +// $city = "Muenchen - 20. Nov 2009"; + +// BLIT2009, Brandenburger Linux-Infotag, 21.11.2009 +// $locid = 1486658; // Potsdam +// $eventname = "Brandenburger Linux-Infotag (BLIT2009)"; +// $city = "Potsdam - 21. Nov 2009"; + +// ATE-Goteborg, 16.12.2009 +// $locid = 664715; // Goteborg, Vastra Gotaland, Sweden +// $eventname = "ATE-Goteborg"; +// $city = "Goteborg - Dec 16th 2009"; + +// Assurance Event Mission Hills CA, 15.01.2010 +// $locid = 2094781; // Mission Hills (Los Angeles), California, United States +// $eventname = "Assurance Event"; +// $city = "Mission Hills CA - Jan 15th 2010"; + +// Assurance Event OSD Copenhagen DK, 5.03.2010 + $locid = 423655; // Copenhagen, Kobenhavn*, Denmark + $eventname = "Assurance Event OpenSource-Days 2010"; + $city = "Copenhagen DK - March 5th/6th 2010"; + +// SCALE 8x Los Angeles, CA, Feb 19-21 2010 + $locid = 2093625; // Los Angeles, California, United States + $eventname = "SCALE 8x 2010"; + $city = "Los Angeles, CA - February 19-21 2010"; + + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients.\n"; +?> diff --git a/cacert/scripts/sfd-de12-email.txt b/cacert/scripts/sfd-de12-email.txt new file mode 100644 index 0000000..7211e63 --- /dev/null +++ b/cacert/scripts/sfd-de12-email.txt @@ -0,0 +1,24 @@ +Software Freedom Day am 19. September in Hamburg
+::::::::::::::::::::::::::::::::::::::::::::::::
+
+Hallo CAcert'ler aus dem Raum Hamburg,
+
+sicherlich habt Ihr vom "Software Freedom Day (SFD)" am 19. September im
+Buergerhaus in Hamburg-Barmbeck gehoert!?
+Der SFD ist einer der groessten Veranstaltungen zu diesem Thema ueberhaupt.
+Auch wir, CAcert ist dabei. Wir wuerden uns freuen wenn wir Dich an
+unserem Stand begruessen duerfen um uns ueber die eine oder andere
+CAcert-Sache zu unterhalten.
+Aber auch die anderen Dinge sind für Dich auf dem SFD bestimmt
+interessant! Komme doch einfach am Samstag, den 19. September mal vorbei!
+Wir freuen uns auf Deinen Besuch!
+
+Der Link zur Veranstaltung: [http://www.lug-balista.de/sfd.html]
+
+Wir koennten auch noch einige Hilfe am Stand gebrauchen.
+Die Koordination findet ueber unsere Wiki Seite
+[http://wiki.cacert.org/wiki/events/SoftwareFreedomDayHamburg090919]
+statt. Wenn du mithelfen moechtest trage dich dort bitte als Assurer ein.
+Vielen Dank.
+
+Kontakt: events@cacert.org
diff --git a/cacert/scripts/sfd-de12-mail.php.txt b/cacert/scripts/sfd-de12-mail.php.txt new file mode 100644 index 0000000..791d111 --- /dev/null +++ b/cacert/scripts/sfd-de12-mail.php.txt @@ -0,0 +1,94 @@ +#!/usr/bin/php -q +<? /* + LibreSSL - CAcert web application + Copyright (C) 2004-2008 CAcert Inc. + + This program 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; version 2 of the License. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + include_once("../includes/mysql.php"); + + $lines = ""; + $fp = fopen("sfd-de12-email.txt", "r"); + while(!feof($fp)) + { + $line = trim(fgets($fp, 4096)); + $lines .= wordwrap($line, 75, "\n")."\n"; + } + fclose($fp); + + +// $locid = intval($_REQUEST['location']); +// $maxdist = intval($_REQUEST['maxdist']); + $maxdist = 70; + + +// location location.ID +// verified: 29.4.09 u.schroeter +// $locid = 7902857; // Paris +// $locid = 238568; // Bielefeld +// $locid = 715191; // Hamburg +// $locid = 1102495; // London +// $locid = 520340; // Duesseldorf +// $locid = 1260319; // Muenchen +// $locid = 606058; // Frankfurt +// $locid = 1775784; // Stuttgart +// $locid = 228950; // Berlin +// $locid = 606058; // Frankfurt +// $locid = 599389; // Flensburg +// $locid = 61065; // Amsterdam, Eemnes +// $locid = 228950; // Berlin + +// Software Freedom Day 19. Sept 2009 + $locid = 715191; // Hamburg + + + $city = "Hamburg 19. Sep 2009"; + + $query = "select * from `locations` where `id`='$locid'"; + $loc = mysql_fetch_assoc(mysql_query($query)); + + $query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + + (COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) * + COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.* + FROM `locations` + inner join `users` on `users`.`locid` = `locations`.`id` + inner join `alerts` on `users`.`id`=`alerts`.`memid` + inner join `notary` on `users`.`id`=`notary`.`to` + WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) + GROUP BY `users`.`id` + HAVING `distance` <= '$maxdist' + ORDER BY `distance` "; + echo $query; + + // comment next line when starting to send mail not only to me + // $query = "select * from `users` where `email` like 'cacerttest%'"; + + $res = mysql_query($query); + $xrows = mysql_num_rows($res); + + while($row = mysql_fetch_assoc($res)) + { + // uncomment next line to send mails ... + sendmail($row['email'], "[CAcert.org] Software Freedom Day - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + } + // 1x cc to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] Software Freedom Day - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + // 1x mailing report to events.cacert.org + sendmail("events@cacert.org", "[CAcert.org] Software Freedom Day - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + // 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1 + sendmail("p.dunkel@cacert.org", "[CAcert.org] Software Freedom Day - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1); + + echo "invitation sent to $xrows recipients."; +?> diff --git a/cacert/tmp/CVS/Entries b/cacert/tmp/CVS/Entries new file mode 100644 index 0000000..b7e988c --- /dev/null +++ b/cacert/tmp/CVS/Entries @@ -0,0 +1,2 @@ +/Makefile/1.1/Sun Sep 20 15:39:18 2009// +D diff --git a/cacert/tmp/CVS/Repository b/cacert/tmp/CVS/Repository new file mode 100644 index 0000000..737bf69 --- /dev/null +++ b/cacert/tmp/CVS/Repository @@ -0,0 +1 @@ +cacert/tmp diff --git a/cacert/tmp/CVS/Root b/cacert/tmp/CVS/Root new file mode 100644 index 0000000..a363882 --- /dev/null +++ b/cacert/tmp/CVS/Root @@ -0,0 +1 @@ +/var/lib/cvs diff --git a/cacert/tmp/Makefile b/cacert/tmp/Makefile new file mode 100644 index 0000000..294a5b8 --- /dev/null +++ b/cacert/tmp/Makefile @@ -0,0 +1,10 @@ +DATE=`date "+%Y%m%d"` + +all: + cvs -d /var/lib/cvs checkout cacert + tar cjvf ../tarballs/cacert-${DATE}.tar.bz2 --exclude CVS cacert + rm ../tarballs/current.tar.bz2 + ln -s cacert-${DATE}.tar.bz2 ../tarballs/current.tar.bz2 + tar cvjf ../tarballs/cacert-cvs.tar.bz2 /var/lib/cvs/cacert + mv ../tarballs/cacert-cvs.tar.bz2 ../www/cacert-cvs.tar.bz2 + diff --git a/cacert/www/favicon.ico b/cacert/www/favicon.ico Binary files differnew file mode 100644 index 0000000..3c9c9c2 --- /dev/null +++ b/cacert/www/favicon.ico diff --git a/cacert/www/images/CAcert-logo-colour-1000.png b/cacert/www/images/CAcert-logo-colour-1000.png Binary files differnew file mode 100644 index 0000000..a6dd6ac --- /dev/null +++ b/cacert/www/images/CAcert-logo-colour-1000.png diff --git a/cacert/www/images/bit.png b/cacert/www/images/bit.png Binary files differnew file mode 100644 index 0000000..5597e3b --- /dev/null +++ b/cacert/www/images/bit.png diff --git a/cacert/www/images/btn_paynowCC_LG.gif b/cacert/www/images/btn_paynowCC_LG.gif Binary files differnew file mode 100644 index 0000000..f2edb8f --- /dev/null +++ b/cacert/www/images/btn_paynowCC_LG.gif diff --git a/cacert/www/images/cacert-policy.png b/cacert/www/images/cacert-policy.png Binary files differnew file mode 100644 index 0000000..1b69c7a --- /dev/null +++ b/cacert/www/images/cacert-policy.png diff --git a/cacert/www/images/cacert3.png b/cacert/www/images/cacert3.png Binary files differnew file mode 100644 index 0000000..90ba745 --- /dev/null +++ b/cacert/www/images/cacert3.png diff --git a/cacert/www/images/cacert4.png b/cacert/www/images/cacert4.png Binary files differnew file mode 100644 index 0000000..e4650a0 --- /dev/null +++ b/cacert/www/images/cacert4.png diff --git a/cacert/www/images/nlnet.png b/cacert/www/images/nlnet.png Binary files differnew file mode 100644 index 0000000..c7e5c46 --- /dev/null +++ b/cacert/www/images/nlnet.png diff --git a/cacert/www/images/oan.png b/cacert/www/images/oan.png Binary files differnew file mode 100644 index 0000000..548bb12 --- /dev/null +++ b/cacert/www/images/oan.png diff --git a/cacert/www/images/payment2.png b/cacert/www/images/payment2.png Binary files differnew file mode 100644 index 0000000..c85447b --- /dev/null +++ b/cacert/www/images/payment2.png diff --git a/cacert/www/images/payment2a.png b/cacert/www/images/payment2a.png Binary files differnew file mode 100644 index 0000000..763eaa1 --- /dev/null +++ b/cacert/www/images/payment2a.png diff --git a/cacert/www/images/secured.png b/cacert/www/images/secured.png Binary files differnew file mode 100644 index 0000000..333d049 --- /dev/null +++ b/cacert/www/images/secured.png diff --git a/cacert/www/images/sonance.png b/cacert/www/images/sonance.png Binary files differnew file mode 100644 index 0000000..ae854c6 --- /dev/null +++ b/cacert/www/images/sonance.png diff --git a/cacert/www/images/tunix.png b/cacert/www/images/tunix.png Binary files differnew file mode 100644 index 0000000..29adb60 --- /dev/null +++ b/cacert/www/images/tunix.png diff --git a/cacert/www/images/valid-xhtml11-blue b/cacert/www/images/valid-xhtml11-blue Binary files differnew file mode 100644 index 0000000..88fefcb --- /dev/null +++ b/cacert/www/images/valid-xhtml11-blue diff --git a/cacert/www/policy/CertificationPracticeStatement.php b/cacert/www/policy/CertificationPracticeStatement.php new file mode 100644 index 0000000..9d16805 --- /dev/null +++ b/cacert/www/policy/CertificationPracticeStatement.php @@ -0,0 +1,4091 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> +<head> + <meta name="copyright" content="CAcert Inc http://www.cacert.org/"> + <title>Certification Practice Statement (CPS)</title> + +<style type="text/css"> +<!-- +body { + font-family : verdana, helvetica, arial, sans-serif; +} + +pre, code, kbd, tt, samp { + font-family : courier, monospace; +} + +th { + text-align : left; +} + +.blockpar { + text-indent : 2em; + margin-top : 0em; + margin-bottom : 0.5em; + text-align : justify; +} + +.figure { + text-align : center; + color : gray; + margin-top : 0.5em; +} + +.center { + text-align : center; +} + +.q { + color : green; + font-weight: bold; + text-align: center; + font-style:italic; +} + +.error { + color : red; + font-weight: bold; + text-align: center; + font-style:italic; +} + +.change { + color : blue; + font-weight: bold; +} + +a:hover { + color : gray; +} +--> +</style> + + +</head> +<body> + +<h1>CAcert CPS and CP</h1> + +<a href="PolicyOnPolicy.html"><img src="cacert-draft.png" alt="CAcert Policy Status" height="31" width="88" style="border-style: none;" /></a><br /> +Creation date: 20060726<br /> +Status: DRAFT p20091108<br /> +<!-- $Id: CertificationPracticeStatement.php,v 1.1 2009-11-21 22:34:00 philipp Exp $ --> + + +<font size="-1"> + +<ol> + <li> <a href="#p1">INTRODUCTION</a> + <ul> + <li><a href="#p1.1">1.1. Overview</a></li> + <li><a href="#p1.2">1.2. Document name and identification</a></li> + <li><a href="#p1.3">1.3. PKI participants</a> </li> + <li><a href="#p1.4">1.4. Certificate usage</a> </li> + <li><a href="#p1.5">1.5. Policy administration</a> </li> + <li><a href="#p1.6">1.6. Definitions and acronyms</a></li> + </ul> + </li> + <li> <a href="#p2">PUBLICATION AND REPOSITORY RESPONSIBILITIES</a> + <ul> + <li><a href="#p2.1">2.1. Repositories</a></li> + <li><a href="#p2.2">2.2. Publication of certification information</a></li> + <li><a href="#p2.3">2.3. Time or frequency of publication</a></li> + <li><a href="#p2.4">2.4. Access controls on repositories</a></li> + </ul> + </li> + <li> <a href="#p3">IDENTIFICATION AND AUTHENTICATION (I&A)</a> + <ul> + <li><a href="#p3.1">3.1. Naming</a> </li> + <li><a href="#p3.2">3.2. Initial Identity Verification</a> </li> + <li><a href="#p3.3">3.3. I&A for Re-key Requests</a> </li> + <li><a href="#p3.4">3.4. I&A for Revocation Request</a></li> + </ul> + </li> + <li><a href="#p4">CERTIFICATE LIFE-CYCLE OPERATIONAL REQUIREMENTS</a> + <ul> + <li><a href="#p4.1">4.1. Certificate Application</a> </li> + <li><a href="#p4.2">4.2. Certificate application processing</a> </li> + <li><a href="#p4.3">4.3. Certificate issuance</a> </li> + <li><a href="#p4.4">4.4. Certificate acceptance</a> </li> + <li><a href="#p4.5">4.5. Key pair and certificate usage</a> </li> + <li><a href="#p4.6">4.6. Certificate renewal</a> </li> + <li><a href="#p4.7">4.7. Certificate re-key</a> </li> + <li><a href="#p4.8">4.8. Certificate modification</a> </li> + <li><a href="#p4.9">4.9. Certificate revocation and suspension</a> </li> + <li><a href="#p4.10">4.10. Certificate status services</a> </li> + <li><a href="#p4.11">4.11. End of subscription</a></li> + <li><a href="#p4.12">4.12. Key escrow and recovery</a> </li> + </ul> + </li> + <li><a href="#p5">FACILITY, MANAGEMENT, AND OPERATIONAL CONTROLS</a> + <ul> + <li><a href="#p5.1">5.1. Physical controls</a> </li> + <li><a href="#p5.2">5.2. Procedural controls</a> </li> + <li><a href="#p5.3">5.3. Personnel controls</a> </li> + <li><a href="#p5.4">5.4. Audit logging procedures</a> </li> + <li><a href="#p5.5">5.5. Records archival</a> </li> + <li><a href="#p5.6">5.6. Key changeover</a></li> + <li><a href="#p5.7">5.7. Compromise and disaster recovery</a> </li> + <li><a href="#p5.8">5.8. CA or RA termination</a></li> + </ul> + </li> + <li><a href="#p6">TECHNICAL SECURITY CONTROLS</a> + <ul> + <li><a href="#p6.1">6.1. Key pair generation and installation</a> </li> + <li><a href="#p6.2">6.2. Private Key Protection and Cryptographic Module Engineering Controls</a> </li> + <li><a href="#p6.3">6.3. Other aspects of key pair management</a> </li> + <li><a href="#p6.4">6.4. Activation data</a> </li> + <li><a href="#p6.5">6.5. Computer security controls</a> </li> + <li><a href="#p6.6">6.6. Life cycle technical controls</a> </li> + <li><a href="#p6.7">6.7. Network security controls</a></li> + <li><a href="#p6.8">6.8. Time-stamping</a></li> + </ul> + </li> + <li><a href="#p7">CERTIFICATE, CRL, AND OCSP PROFILES</a> + <ul> + <li><a href="#p7.1">7.1. Certificate profile</a> </li> + <li><a href="#p7.2">7.2. CRL profile</a> </li> + <li><a href="#p7.3">7.3. OCSP profile</a> </li> + </ul> + </li> + <li><a href="#p8">COMPLIANCE AUDIT AND OTHER ASSESSMENTS</a> + <ul> + <li><a href="#p8.1">8.1. Frequency or circumstances of assessment</a></li> + <li><a href="#p8.2">8.2. Identity/qualifications of assessor</a></li> + <li><a href="#p8.3">8.3. Assessor's relationship to assessed entity</a></li> + <li><a href="#p8.4">8.4. Topics covered by assessment</a></li> + <li><a href="#p8.5">8.5. Actions taken as a result of deficiency</a></li> + <li><a href="#p8.6">8.6. Communication of results</a></li> + </ul> + </li> + <li><a href="#p9">OTHER BUSINESS AND LEGAL MATTERS</a> + <ul> + <li><a href="#p9.1">9.1. Fees</a> </li> + <li><a href="#p9.2">9.2. Financial responsibility</a> </li> + <li><a href="#p9.3">9.3. Confidentiality of business information</a> </li> + <li><a href="#p9.4">9.4. Privacy of personal information</a> </li> + <li><a href="#p9.5">9.5. Intellectual property rights</a></li> + <li><a href="#p9.6">9.6. Representations and warranties</a> </li> + <li><a href="#p9.7">9.7. Disclaimers of warranties</a></li> + <li><a href="#p9.8">9.8. Limitations of liability</a></li> + <li><a href="#p9.9">9.9. Indemnities</a></li> + <li><a href="#p9.10">9.10. Term and termination</a> </li> + <li><a href="#p9.11">9.11. Individual notices and communications with participants</a></li> + <li><a href="#p9.12">9.12. Amendments</a> </li> + <li><a href="#p9.13">9.13. Dispute resolution provisions</a></li> + <li><a href="#p9.14">9.14. Governing law</a></li> + <li><a href="#p9.15">9.15. Compliance with applicable law</a></li> + <li><a href="#p9.16">9.16. Miscellaneous provisions</a> </li> + </ul> + </li> +</ol> + +</font> + + + +<!-- *************************************************************** --> +<h2><a name="p1" id="p1">1. INTRODUCTION</a></h2> + +<h3><a name="p1.1" id="p1.1">1.1. Overview</a></h3> + +<p> +This document is the Certification Practice Statement (CPS) of +CAcert, the Community Certification Authority (CA). +It describes rules and procedures used by CAcert for +operating its CA, +and applies to all CAcert PKI Participants, +including Assurers, Members, and CAcert itself. +</p> + +<p> +</p> + +<h3><a name="p1.2" id="p1.2">1.2. Document name and identification</a></h3> + +<p> +This document is the Certification Practice Statement (CPS) of CAcert. +The CPS also fulfills the role of the Certificate Policy (CP) +for each class of certificate. +</p> + +<ul> + <li> + This document is COD6 under CAcert Official Documents numbering scheme. + </li> + <li> + The document is structured according to + Chokhani, et al, + <a href="http://www.ietf.org/rfc/rfc3647.txt">RFC3647</a>, + <a href="http://tools.ietf.org/html/rfc3647#section-4">chapter 4</a>. + All headings derive from that Chapter. + </li> + <li> + It has been improved and reviewed (or will be reviewed) + to meet or exceed the criteria of the + <cite>Certificate Authority Review Checklist</cite> + from <i>David E. Ross</i> ("DRC") + and Mozilla Foundation's CA policy. + </li> + <li> + OID assigned to this document: 1.3.6.1.4.1.18506.4.4.x (x=approved Version) + (<a href="http://www.iana.org/assignments/enterprise-numbers">iana.org</a>) + <p class="q"> .x will change to .1 in the first approved instance.</p> + </li> + <li> + © CAcert Inc. 2006-2009. + <!-- note that CCS policies must be controlled by CAcert Inc. --> + </li> + <li> + Issued under the CAcert document licence policy, + as and when made policy. + See <a href="http://wiki.cacert.org/wiki/PolicyDrafts/DocumentLicence"> + PolicyDrafts/DocumentLicence</a>. + <ul class="q"> + <li> The cited page discusses 2 options: CCau Attribute-Share-alike and GNU Free Document License. Refer to that. </li> + <li> Note that the noun Licence in Australian English has two Cs. The verb License is spelt the same way as American English. </li> + </ul> + </li> + <li> + Earlier notes were written by Christian Barmala + in a document placed under GNU Free Document License + and under FSF copyright. + However this clashed with the control provisions of + Configuration-Control Specification + (COD2) within Audit criteria. + </li> + <li> + <span class="q">In this document:</span> + <ul> + <li> + <span class="q">green text</span> + refers to questions that seek answers, + </li><li> + <span class="error">red text</span> + refers to probably audit fails or serious errors. + </li><li> + <span class="change">blue text</span> + refers to changes written after the document got seriously reviewed. + </ul> + <span class="q"> + None is to be considered part of the policy, + and they should disappear in the DRAFT + and must disappear in the POLICY. + </span> + </li> +<!-- + <li> + Some content is incorporated under +<!-- <a href="http://xkcd.com/license.html">Creative Commons license</a> --> +<!-- from <a href="http://xkcd.com/">xkcd.com</a>. --> + 198 177 515 + </li> +--> +</ul> + +<p> +The CPS is an authoritive document, +and rules other documents +except where explicitly deferred to. +See also <a href="#p1.5.1">1.5.1 Organisation Administering the Document</a>. +</p> + +<h3><a name="p1.3" id="p1.3">1.3. PKI participants</a></h3> +<p> +The CA is legally operated by CAcert Incorporated, +an Association registered in 2002 in +New South Wales, Australia, +on behalf of the wider Community of Members of CAcert. +The Association details are at the +<a href="http://wiki.cacert.org/wiki/CAcertIncorporated">CAcert wiki</a>. +</p> + +<p> +CAcert is a Community formed of Members who agree to the +<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php"> +CAcert Community Agreement</a>. +The CA is technically operated by the Community, +under the direction of the Board of CAcert Incorporated. +(The Members of the Community are not to be confused +with the <i>Association Members</i>, which latter are +not referred to anywhere in this CPS.) +</p> + +<h4><a name="p1.3.1" id="p1.3.1">1.3.1. Certification authorities</a></h4> +<p> +CAcert does not issue certificates to external +intermediate CAs under the present CPS. +</p> + +<h4><a name="p1.3.2" id="p1.3.2">1.3.2. Registration authorities</a></h4> +<p> +Registration Authorities (RAs) are controlled under Assurance Policy +(<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>). +</p> + +<h4><a name="p1.3.3" id="p1.3.3">1.3.3. Subscribers</a></h4> + +<p> +CAcert issues certificates to Members only. +Such Members then become Subscribers. +</p> + + +<h4><a name="p1.3.4" id="p1.3.4">1.3.4. Relying parties</a></h4> + +<p> +A relying party is a Member, +having agreed to the +CAcert Community Agreement +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>), +who, in the act of using a CAcert certificate, +makes a decision on the basis of that certificate. +</p> + +<h4><a name="p1.3.5" id="p1.3.5">1.3.5. Other participants</a></h4> + +<p> +<b>Member.</b> +Membership of the Community is as defined in the +<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>. +Only Members may RELY or may become Subscribers. +Membership is free. +</p> + +<p> +<b>Arbitrator.</b> +A senior and experienced Member of the CAcert Community +who resolves disputes between Members, including ones +of certificate reliance, under +Dispute Resolution Policy +(<a href="http://www.cacert.org/policy/DisputeResolutionPolicy.php">COD7</a>). +</p> + +<p> +<b>Vendor.</b> +Software suppliers who integrate the root certificates of CAcert +into their software also assume a proxy role of Relying Parties, +and are subject to another licence. +<span class="q"> +At the time of writing, the +"3rd Party Vendor - Disclaimer and Licence" +is being worked upon, but is neither approved nor offered. +</span> +</p> + +<p> +<b>Non-Related Persons</b> (NRPs). +These are users of browsers and similar software who are +unaware of the CAcert certificates they may use, and +are unaware of the ramifications of usage. +Their relationship with CAcert +is described by the +Non-related Persons - Disclaimer and Licence +(<a href="http://www.cacert.org/policy/NRPDisclaimerAndLicence.php">COD4</a>). +No other rights nor relationship is implied or offered. +</p> + + +<h3><a name="p1.4" id="p1.4">1.4. Certificate usage</a></h3> + +<p>CAcert serves as issuer of certificates for +individuals, businesses, governments, charities, +associations, churches, schools, +non-governmental organisations or other groups. +CAcert certificates are intended for low-cost +community applications especially where volunteers can +become Assurers and help CAcert to help the Community. +</p> + +<p> +Types of certificates and their appropriate and +corresponding applications are defined in +<a href="#p1.4.1">§1.4.1</a>. +Prohibited applications are defined in <a href="#p1.4.2">§1.4.2</a>. +Specialist uses may be agreed by contract or within +a specific environment, as described in +<a href="#p1.4.4">§1.4.4</a>. +Note also the +unreliable applications in +<a href="#p1.4.3">§1.4.3</a> +and risks, liabilities and obligations in +<a href="#p9">§9</a>. +</p> + + +<center> +<table border="1" cellpadding="5"> + <tr> + <td colspan="2"><center><i>Type</center></i></td> + <td colspan="2"><center><i>Appropriate Certificate uses</center></i></th> + </tr> + <tr> + <th>General</th> + <th>Protocol</th> + <th><center>Description</center></th> + <th><center>Comments</center></th> + </tr> + <tr> + <td rowspan="2"><center>Server</center></td> + <td> TLS </td> + <td> web server encryption </td> + <td> enables encryption </td> + </tr> + <tr> + <td> embedded </td> + <td> embedded server authentication </td> + <td> mail servers, IM-servers </td> + </tr> + <tr> + <td rowspan="4"><center>Client</center></td> + <td> S/MIME </td> + <td> email encryption </td> + <td> "digital signatures" employed in S/MIME + are not legal / human signatures, + but instead enable the encryption mode of S/MIME </td> + </tr> + <tr> + <td> TLS </td> + <td> client authentication </td> + <td> the nodes must be secure </td> + </tr> + <tr> + <td> TLS </td> + <td> web based signature applications </td> + <td> the certificate authenticates only. See <a href="#p1.4.3">§1.4.3</a>. </td> + </tr> + <tr> + <td> "Digital Signing" </td> + <td> for human signing over documents </td> + <td> Only within a wider application and rules + such as by separate policy, + as agreed by contract, etc. + See <a href="#p1.4.4">§1.4.4</a>. + </td> + </tr> + <tr> + <td><center>Code</center></td> + <td> Authenticode, ElfSign, Java </td> + <td> Code Signing </td> + <td> Signatures on packages are evidence of their Membership and indicative of Identity </td> + </tr> + <tr> + <td><center>PGP</center></td> + <td> OpenPGP </td> + <td> Key Signing </td> + <td> Signatures on Member Keys are evidence of their Membership and indicative of Identity </td> + </tr> + <tr> + <td><center>Special</center></td> + <td> X.509 </td> + <td> OCSP, Timestamping </td> + <td> Only available to CAcert Systems Administrators, as controlled by Security Policy </td> + </tr> +</table> + +<span class="figure">Table 1.4. Types of Certificate</span> +</center> + +<h4><a name="p1.4.1" id="p1.4.1">1.4.1. Appropriate certificate uses</a></h4> + +<p> +General uses. +</p> + +<ul><li> + CAcert server certificates can be used to enable encryption + protection in web servers. + Suitable applications include webmail and chat forums. + </li><li> + CAcert server certificates can be used to enable encryption + in SSL/TLS links in embedded protocols such as mail servers + and IM-servers. + </li><li> + CAcert client certificates can be used to enable encryption + protection in email clients. + (See <a href="#p1.4.3">§1.4.3</a> for caveat on signatures.) + </li><li> + CAcert client certificates can be used to replace password-based + authentication to web servers. + </li><li> + OpenPGP keys with CAcert signatures can be used + to encrypt and sign files and emails, + using software compatible with OpenPGP. + </li><li> + CAcert client certificates can be used in web-based + authentication applications. + </li><li> + CAcert code signing certificates can be used to sign code + for distribution to other people. + </li><li> + Time stamping can be used to attach a time record + to a digital document. +</li></ul> + + +<h4><a name="p1.4.2" id="p1.4.2">1.4.2. Prohibited certificate uses</a></h4> +<p> +CAcert certificates are not designed, intended, or authorised for +the following applications: +</p> +<ul><li> + Use or resale as control equipment in hazardous circumstances + or for uses requiring fail-safe performance such as the operation + of nuclear facilities, aircraft navigation or communication systems, + air traffic control systems, or weapons control systems, + where failure could lead directly to death, personal injury, + or severe environmental damage. +</li></ul> + +<h4><a name="p1.4.3" id="p1.4.3">1.4.3. Unreliable Applications</a></h4> + +<p> +CAcert certificates are not designed nor intended for use in +the following applications, and may not be reliable enough +for these applications: +</p> + +<ul><li> + <b>Signing within Protocols.</b> + Digital signatures made by CAcert certificates carry + <u>NO default legal or human meaning</u>. + See <a href="#p9.15.1">§9.15.1</a>. + Especially, protocols such as S/MIME commonly will automatically + apply digital signatures as part of their protocol needs. + The purpose of the cryptographic signature in S/MIME + and similar protocols is limited by default to strictly + protocol security purposes: + to provide some confirmation that a familiar certificate + is in use, to enable encryption, and to ensure the integrity + of the email in transit. +</li><li> + <b>Non-repudiation applications.</b> + Non-repudiation is not to be implied from use of + CAcert certificates. Rather, certificates may + provide support or evidence of actions, but that + evidence is testable in any dispute. +</li><li> + <b>Ecommerce applications.</b> + Financial transactions or payments or valuable e-commerce. +</li><li> + Use of anonymous (Class 1 or Member SubRoot) certificates + in any application that requires or expects identity. +</li></ul> + +<!-- <center><a href="http://xkcd.com/341/"> <img src="http://imgs.xkcd.com/comics/1337_part_1.png"> </a> </center> --> + +<h4><a name="p1.4.4" id="p1.4.4">1.4.4. Limited certificate uses</a></h4> + +<p> +By contract or within a specific environment +(e.g. internal to a company), +CAcert Members are permitted to use Certificates +for higher security, customised or experimental applications. +Any such usage, however, is limited to such entities +and these entities take on the whole responsible for +any harm or liability caused by such usage. +</p> + +<p> + <b>Digital signing applications.</b> + CAcert client certificates + may be used by Assured Members in + applications that provide or support the human signing of documents + (known here as "digital signing"). + This must be part of a wider framework and set of rules. + Usage and reliance + must be documented either under a separate CAcert digital signing + policy or other external regime agreed by the parties. +</p> + +<h4><a name="p1.4.5" id="p1.4.5">1.4.5. Roots and Names</a></h4> + +<p> +<b>Named Certificates.</b> +Assured Members may be issued certificates +with their verified names in the certificate. In this role, CAcert +operates and supports a network of Assurers who verify the +identity of the Members. +All Names are verified, either by Assurance or another defined +method under policy (c.f. Organisations). +</p> + +<p> +<b>Anonymous Certificates.</b> +Members can be issued certificates that are anonymous, +which is defined as the certificate with no Name included, +or a shared name such as "Community Member". +These may be considered to be somewhere between Named certificates +and self-signed certificates. They have serial numbers in them +which is ultimately traceable via dispute to a Member, but +reliance is undefined. +In this role, CAcert provides the +infrastructure, saving the Members from managing a difficult +and messy process in order to get manufactured certificates. +</p> + +<p> +<b>Psuedonymous Certificates.</b> +Note that CAcert does not currently issue pseudonymous certificates, +being those with a name chosen by the Member and not verifiable +according to documents. +</p> + +<p> +<b>Advanced Certificates.</b> +Members who are as yet unassured are not permitted to create +advanced forms such as wildcard or subjectAltName +certificates. +</p> + + +<p> +<b> Roots.</b> +The <span class="q"> (new) </span> CAcert root layout is as below. +These roots are pending Audit, +and will be submitted to vendors via the (Top-level) Root. +</p> +<ul><li> + <b>(Top-level) Root.</b> + Used to sign on-line CAcert SubRoots only. + This Root is kept offline. + </li><li> + <b>Member SubRoot.</b> + For Community Members who are new and unassured (some restrictions exist). + Reliance is undefined. + (Replacement for the Class 1 root, matches "Domain Validation" type.) + </li><li> + <b>Assured SubRoot.</b> + Only available for Assured individual Members, + intended to sign certificates with Names. + Suitable for Reliance under this and other policies. + Approximates the type known as Individual Validation. + </li><li> + <b>Organisation SubRoot.</b> + Only available for Assured Organisation Members. + Suitable for Reliance under this and other policies. + Approximates the type known as Organisational Validation. + +</li></ul> + + + +<center> +<table border="1" cellpadding="5"> + <tr> + <td></td> + <td colspan="5"><center><i>Level of Assurance</center></i></td> + <th> </th> + </tr> + <tr> + <th></th> + <th colspan="2"><center> Members † </center></th> + <th colspan="2"><center> Assured Members</center></th> + <th colspan="1"><center> Assurers </center></th> + <th colspan="1"><center> </center></th> + </tr> + <tr> + <td><i>Class of Root</i></td> + <th>Anon</th> + <td>Name</td> + <td>Anon</td> + <th>Name</th> + <td>Name+Anon</td> + <td colspan="1"><center><i>Remarks</center></i></td> + </tr> + <tr> + <td><center>Top level<br><big><b>Root</b></big></center></td> + <td> <center> <font title="pass." color="green" size="+3"> • </font> </center> </th> + <td> <center> <font title="pass." color="green" size="+3"> • </font> </center> </th> + <td> <center> <font title="pass." color="green" size="+3"> • </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> • </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> • </font> </center> </td> + <td> Signs other CAcert SubRoots only. </td> + </tr> + <tr> + <td><center><big><b>Member</b></big><br>SubRoot</center></td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="red" size="+3"> ✘ </font> </center> </th> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> † For Members meeting basic checks in <a href="#p4.2.2">§4.2.2</a><br>(Reliance is undefined.) </td> + </tr> + <tr> + <td><center><big><b>Assured</b></big><br>SubRoot</center></td> + <td> <center> <font title="pass." color="red" size="+3"> ✘ </font> </center> </th> + <td> <center> <font title="pass." color="red" size="+3"> ✘ </font> </center> </th> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> Assured Members only.<br>Fully intended for reliance. </td> + </tr> + <tr> + <td><center><big><b>Organisation</b></big><br>SubRoot</center></td> + <td> <center> <font title="pass." color="red" size="+3"> ✘ </font> </center> </th> + <td> <center> <font title="pass." color="red" size="+3"> ✘ </font> </center> </th> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> Assured Organisation Members only.<br>Fully intended for reliance. </td> + </tr> + <tr> + <th>Expiry of Certificates</th> + <td colspan="2"><center>6 months</center></th> + <td colspan="3"><center>24 months</center></th> + </tr> + <tr> + <th>Types</th> + <td colspan="2"><center>client, server</center></th> + <td colspan="2"><center>wildcard, subjectAltName</center></th> + <td colspan="1"><center>code-signing</center></th> + <td> (Inclusive to the left.) </td> + </tr> +</table> + +<span class="figure">Table 1.4.5.b Certificate under Audit Roots</span> +</center> + + +<p class="q"> +Following information on OLD roots here for +descriptive and historical purposes only. +When CPS goes to DRAFT, this needs to be +converted into a short summary of the way +OLD roots are used and its relationship to +this CPS. E.g., "OLD roots are used for +testing and other purposes outside this CPS." +Because ... they still exist, and people will +look at the CPS to figure it out. +</p> + +<center> +<table border="1" cellpadding="5"> + <tr> + <td></td> + <td colspan="4"><center><i>Level of Assurance</center></i></td> + <th> </th> + </tr> + <tr> + <th></th> + <th colspan="2"><center>Members</center></th> + <th colspan="2"><center>Assured Members</center></th> + <th colspan="1"><center> </center></th> + </tr> + <tr> + <td><i>Class of Root</i></td> + <th>Anonymous</th> + <td>Named</td> + <td>Anonymous</td> + <th>Named</th> + <td colspan="1"><center><i>Remarks</center></i></td> + </tr> + <tr> + <td><center>Class<br><big><b>1</b></big></center></td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="red" size="+3"> ✘ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> Available for all Members,<br>reliance is undefined.</td> + </tr> + <tr> + <td><center>Class<br><big><b>3</b></big></center></td> + <td> <center> <font title="pass." color="red" size="+3"> ✘ </font> </center> </th> + <td> <center> <font title="pass." color="red" size="+3"> ✘ </font> </center> </th> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> <center> <font title="pass." color="green" size="+3"> ✔ </font> </center> </td> + <td> Assured Members only.<br> Intended for Reliance. </center> </td> + </tr> + <tr> + <th>Expiry of Certificates</th> + <td colspan="2"><center>6 months</center></th> + <td colspan="2"><center>24 months</center></th> + </tr> + <tr> + <th>Types available</th> + <td colspan="2"><center>simple only</center></th> + <td colspan="2"><center>wildcard, subjectAltName</center></th> + </tr> +</table> + +<span class="figure">Table 1.4.5. Certificates under Old Roots - <b>Audit Fail</b> </span> +</center> + +<p> +<b> Old Roots.</b> +The old CAcert root layout is as below. These roots are <b>Audit Fail</b> +and will only be used where new roots do not serve: +</p> +<ul><li> + (old) <b>Class 1 root.</b> + Used primarily for certificates with no names and by + unassured Members. + For compatibility only, + Assured Members may also use this root. + </li><li> + (old) <b>Class 3 root.</b> + Used primarily for certificates including the names + of Assured Members. + Signed by Class 1 root. + Members can decide to rely on these + certificates for Assured Members + by selecting the Class 3 root for + Assured Members as trust anchor. +</li></ul> + + <ul class="q"> + <li> Current Mozilla position has drifted from Class 1,2,3s to DV, IV+OV and EV posture. Except, the actual posture is either unstated or difficult to fathom.</li> + <li> scheme for future roots is at <a href="http://wiki.cacert.org/wiki/Roots/NewRootsTaskForce">NewRootsTaskForce</a>.</li> + <li>END OLD ROOTS </li> + </ul> + +<h3><a name="p1.5" id="p1.5">1.5. Policy administration</a></h3> + +<p>See <a href="#p1.2">1.2 Document Name and Identification</a> + for general scope of this document.</p> + +<h4><a name="p1.5.1" id="p1.5.1">1.5.1. Organization administering the document</a></h4> + +<p> +This document is administered by the policy group of +the CAcert Community under Policy on Policy (<a href="http://www.cacert.org/policy/PolicyOnPolicy.php">COD1</a>). +</p> + +<h4><a name="p1.5.2" id="p1.5.2">1.5.2. Contact person</a></h4> +<p> +For questions including about this document: +</p> + +<ul> + <li>Join the policy group, by means of the discussion forum at + <a href="http://lists.cacert.org/mailman/listinfo"> + lists.cacert.org</a> . </li> + <li>Send email to < support AT cacert DOT org > </li> + <li>IRC: irc.cacert.org #CAcert (ssl port 7000, non-ssl port 6667)</li> +</ul> + +<h4><a name="p1.5.3" id="p1.5.3">1.5.3. Person determining CPS suitability for the policy</a></h4> +<p> +This CPS and all other policy documents are managed by +the policy group, which is a group of Members of the +Community found at policy forum. See discussion forums above. +</p> + +<h4><a name="p1.5.4" id="p1.5.4">1.5.4. CPS approval procedures</a></h4> +<p> +CPS is controlled and updated according to the +Policy on Policy +(<a href="http://www.cacert.org/policy/PolicyOnPolicy.php">COD1</a>) +which is part of +Configuration-Control Specification (COD2). +</p> + +<p> +In brief, the policy forum prepares and discusses. +After a last call, the document moves to DRAFT status +for a defined period. +If no challenges have been received in the defined period, +it moves to POLICY status. +The process is modelled after some elements of +the RFC process by the IETF. +</p> + +<h4><a name="p1.5.5" id="p1.5.5">1.5.5 CPS updates</a></h4> + +<p> +As per above. +</p> + + +<h3><a name="p1.6" id="p1.6">1.6. Definitions and acronyms</a></h3> +<p> +<b><a name="d_cert" id="d_cert">Certificate</a></b>. + A certificate is a piece of cryptographic data used + to validate certain statements, especially those of + identity and membership. +</p> +<p> +<b><a name="d_cacert" id="d_cacert">CAcert</a></b>. + CAcert is a Community certificate authority as defined under + <a href="#p1.2">§1.2 Identification</a>. +</p> +<p> +<b><a name="d_member" id="d_member">Member</a></b>. + Everyone who agrees to the + CAcert Community Agreement + (<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>). + This generally implies having an account registered + at CAcert and making use of CAcert's data, programs or services. + A Member may be an individual ("natural person") + or an organisation (sometimes, "legal person"). +</p> +<p> +<b><a name="d_community" id="d_community">Community</a></b>. + The group of Members who agree to the + CAcert Community Agreement + (<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>) + or equivalent agreements. +</p> +<p> +<b><a name="d_unassured" id="d_unassured">Unassured Member</a></b>. + A Member who has not yet been Assured. +</p> +<p> +<b><a name="d_subscriber" id="d_subscriber">Subscriber</a></b>. + A Member who requests and receives a certificate. +</p> +<p> +<b><a name="d_assured" id="d_assured">Assured Member</a></b>. + A Member whose identity has been sufficiently + verified by Assurers or other + approved methods under Assurance Policy.</p> +</p> +<p> +<b><a name="d_assurer" id="d_assurer">Assurer</a></b>. + An Assured Member who is authorised under Assurance Policy + to verify the identity of other Members. +</p> +<p> +<b><a name="d_name" id="d_name">Name</a></b>. + As defined in the + Assurance Policy + (<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>), + to describe a name of a Member + that is verified by the Assurance process. +<p> +<b><a name="d_oadmin" id="d_oadmin">Organisation Administrator</a></b>. + ("O-Admin") + An Assurer who is authorised to act for an Organisation. + The O-Admin is authorised by an organisation + to vouch for the identity of other users of the organisation. +</p> +<p> +<b><a name="d_org_ass" id="d_org_ass">Organisation Assurer</a></b>. + An Assurer who is authorised to conduct assurances on + organisations. +</p> +<p> +<b><a name="d_user" id="d_user">Non-Related Persons</a></b>. + ("NRPs") + are general users of browsers and similar software. + The NRPs are generally unaware of + CAcert or the certificates that they may use, and + are unaware of the ramifications of usage. + They are not permitted to RELY, but may USE, under the + Non-Related Persons - Disclaimer and Licence (<a href="http://www.cacert.org/policy/NRPDisclaimerAndLicence.php">COD4</a>). +</p> +<p> +<b><a name="rel" id="d_reliance">Reliance</a></b>. + An industry term referring to + the act of making a decision, including taking a risk, + which decision is in part or in whole + informed or on the basis of the contents of a certificate. +</p> +<p> +<b><a name="rel" id="rel">Relying Party</a></b>. + An industry term refering to someone who relies + (that is, makes decisions or takes risks) + in part or in whole on a certificate. +</p> +<p> + <b>Subscriber Naming.</b> + The term used in this CPS to + describe all naming data within a certificate. + Approximately similar terms from Industry such as + "Subject naming" and "Distinguished Name" + are not used here. +</p> +<p> +<b><a name="ver" id="d_verification">Verification</a></b>. + An industry term referring to + the act of checking and controlling + the accuracy and utility of a single claim. +</p> +<p> +<b><a name="ver" id="d_validation">Validation</a></b>. + An industry term referring to the process of + inspecting and verifying the information and + subsidiary claims behind a claim. +</p> +<p> +<b><a name="rel" id="rel">Usage</a></b>. + The event of allowing a certificate to participate in + a protocol, as decided and facilitated by a user's software. + Generally, Usage does not require significant input, if any, + on the part of the user. + This defers all decisions to the user software, + thus elevating the software as user's only and complete + Validation Authority or Agent. +</p> +<p> +<b><a name="drel" id="drel">CAcert Relying Party</a></b>. + CAcert Members who make decisions based in part or in whole + on a certificate issued by CAcert. + Only CAcert Members are permitted to Rely on CAcert certificates, + subject to the CAcert Community Agreement. +</p> +<p> +<b><a name="ddst" id="ddst">Vendors</a></b>. + Non-members who distribute CAcert's root or intermediate certificates + in any way, including but not limited to delivering these + certificates with their products, e.g. browsers, mailers or servers. + Vendors are covered under a separate licence. + <span class="q"> As of the moment, this licence is not written.</span> +</p> +<p> +<b><a name="d_ccs" id="d_ccs">Configuration-Control Specification</a></b> "CCS". + The audit criteria that controls this CPS. + The CCS is documented in COD2, itself a controlled document under CCS. +</p> +<p> +<p> +<b><a name="d_cod" id="d_cod">CAcert Official Document</a></b> (COD). + Controlled Documents that are part of the CCS. +</p> + + + +<!-- *************************************************************** --> +<h2><a name="p2" id="p2">2. PUBLICATION AND REPOSITORY RESPONSIBILITIES</a></h2> + + +<h3><a name="p2.1" id="p2.1">2.1. Repositories</a></h3> + +<p> +CAcert operates no repositories in the sense +of lookup for non-certificate-related information +for the general public. +</p> + +<p> +Under the Assurance Policy (<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>), +there are means for Members to search, retrieve +and verify certain data about themselves and others. +</p> + +<h3><a name="p2.2" id="p2.2">2.2. Publication of certification information</a></h3> + +<p> +CAcert publishes: +</p> + +<ul> + <li>A repository of CRLs. An OCSP responder is in operation.</li> + <li>The root certificate and intermediate certificates.</li> +</ul> + +<p> +CAcert does not expressly publish information on issued certificates. +However, due to the purpose of certificates, and the essential +public nature of Names and email addresses, all information within +certificates is presumed to be public and published, once +issued and delivered to the Member. +</p> + +<h3><a name="p2.3" id="p2.3">2.3. Time or frequency of publication</a></h3> + +<p> +Root and Intermediate Certificates and CRLs are +made available on issuance. +</p> + +<h3><a name="p2.4" id="p2.4">2.4. Access controls on repositories</a></h3> +<p> No stipulation. </p> + + + +<!-- *************************************************************** --> +<h2><a name="p3" id="p3">3. IDENTIFICATION AND AUTHENTICATION</a></h2> + +<h3><a name="p3.1" id="p3.1">3.1. Naming</a></h3> + +<h4><a name="p3.1.1" id="p3.1.1">3.1.1. Types of names</a></h4> + +<p> +<b>Client Certificates.</b> +The Subscriber Naming consists of: +</p> +<ul> + <li><tt>subjectAltName=</tt> + One, or more, of the Subscriber's verified email addresses, + in rfc822Name format. + + <ul class="q"> + <li>SSO in subjectAltName?.</li> + </ul> + <li><tt>EmailAddress=</tt> + One, or more, of the Subscriber's verified email addresses. + This is deprecated under + RFC5280 <a href="http://tools.ietf.org/html/rfc5280#section-4.2.1.6">4 +.1.2.6</a> + and is to be phased out. Also includes a SHA1 hash of a random number if + the member selects SSO (Single Sign On ID) during submission of CSR. + </li> + <li><tt>CN=</tt> The common name takes its value from one of: + <ul><li> + For all Members, + the string "<tt>CAcert WoT Member</tt>" may be used for + anonymous certificates. + </li><li> + For individual Members, + a Name of the Subscriber, + as Assured under AP. + </li><li> + For Organisation Members, + an organisation-chosen name, + as verified under OAP. + </li></ul> +</ul> + + <ul class="q"> + <li> <a href="http://bugs.cacert.org/view.php?id=672"> bug 672</a> filed on subjectAltName.</li> + <li> O-Admin must verify as per <a href="http://wiki.cacert.org/wiki/PolicyDecisions">p20081016</a>. </li> + <li> it is a wip for OAP to state how this is done. </li> + <li> curiously, (RFC5280) verification is only mandated for subjectAltName not subject field. </li> + <li> what Directory String is used in above? UTF8String is specified by RFC52804.1.2.6? is this important for the CPS to state?</li> + </ul> + +<p> +<b>Individual Server Certificates.</b> +The Subscriber Naming consists of: +</p> +<ul> + <li><tt>CN=</tt> + The common name is the host name out of a domain + for which the Member is a domain master. + </li> <li> + <tt>subjectAltName=</tt> + Additional host names for which the Member + is a domain master may be added to permit the + certificate to serve multiple domains on one IP number. + </li> <li> + All other fields are optional and must either match + the CN or they must be empty +</li> </ul> + +<p> +<b>Certificates for Organisations.</b> +In addition to the above, the following applies: +</p> + +<ul> + <li><tt>OU=</tt> + organizationalUnitName (set by O-Admin, must be verified by O-Admin).</li> + <li><tt>O=</tt> + organizationName is the fixed name of the Organisation.</li> + <li><tt>L=</tt> + localityName</li> + <li><tt>ST=</tt> + stateOrProvinceName</li> + <li><tt>C=</tt> + countryName</li> + <li><tt>contact=</tt> + EMail Address of Contact. + <!-- not included in RFC5280 4.1.2.4 list, but list is not restricted --> + </li> +</ul> + +<p> +Except for the OU and CN, fields are taken from the Member's +account and are as verified by the Organisation Assurance process. +Other Subscriber information that is collected and/or retained +does not go into the certificate. +</p> + +<h4><a name="p3.1.2" id="p3.1.2">3.1.2. Need for names to be meaningful</a></h4> + +<p> +Each Member's Name (<tt>CN=</tt> field) +is assured under the Assurance Policy (<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>) +or subsidiary policies (such as Organisation Assurance Policy). +Refer to those documents for meanings and variations. +</p> + +<p> +Anonymous certificates have the same <code>subject</code> +field common name. +See <a href="#p1.4.5">§1.4.5.</a>. +</p> + +<p> +Email addresses are verified according to +<a href="#p4.2.2">§4.2.2.</a> +</p> + +<!-- <center><a href="http://xkcd.com/327/"> <img src="http://imgs.xkcd.com/comics/exploits_of_a_mom.png"> </a> </center> --> + +<h4><a name="p3.1.3" id="p3.1.3">3.1.3. Anonymity or pseudonymity of subscribers</a></h4> + +<p> +See <a href="#p1.4.5">§1.4.5</a>. +</p> + +<h4><a name="p3.1.4" id="p3.1.4">3.1.4. Rules for interpreting various name forms</a></h4> +<p> +Interpretation of Names is controlled by the Assurance Policy, +is administered by means of the Member's account, +and is subject to change by the Arbitrator. +Changes to the interpretation by means of Arbitration +should be expected as fraud (e.g., phishing) +may move too quickly for policies to fully document rules. +</p> + +<h4><a name="p3.1.5" id="p3.1.5">3.1.5. Uniqueness of names</a></h4> + +<p> +Uniqueness of Names within certificates is not guaranteed. +Each certificate has a unique serial number which maps +to a unique account, and thus maps to a unique Member. +See the Assurance Statement within Assurance Policy +(<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>). +</p> + +<p> +Domain names and email address +can only be registered to one Member. +</p> + +<h4><a name="p3.1.6" id="p3.1.6">3.1.6. Recognition, authentication, and role of trademarks</a></h4> + +<p> +Organisation Assurance Policy +(<a href="http://www.cacert.org/policy/OrganisationAssurancePolicy.php">COD11</a>) +controls issues such as trademarks where applicable. +A trademark can be disputed by filing a dispute. +See +<a href="#adr">§9.13</a>. +</p> + +<h4><a name="p3.1.7" id="p3.1.7">3.1.7. International Domain Names</a></h4> + +<p> +Certificates containing International Domain Names, being those containing a +ACE prefix (<a href="http://www.ietf.org/rfc/rfc3490#section-5">RFC3490 +Section 5</a>), will only be issued to domains satisfying one or more +of the following conditions: +<ul> +<li>The Top Level Domain (TLD) Registrar associated with the domain has a policy +that has taken measures to prevent two homographic domains being registered to +different entities down to an accepted level. +</li> +<li>Domains contain only code points from a single unicode character script, +excluding the "Common" script, with the additionally allowed numberic +characters [0-9], and an ACSII hyphen '-'. +</li> +</ul> +</p> + +<p>Email address containing International Domain Names in the domain portion of +the email address will also be required to satisfy one of the above conditions. +</p> + +<p> +The following is a list of accepted TLD Registrars: + <table> + + <tr> + <td>.ac</td> + <td><a href="http://www.nic.ac/">Registry</a></td> + <td><a href="http://www.nic.ac/pdf/AC-IDN-Policy.pdf">Policy</a></td> + </tr> + <tr> + <td>.ar</td> + + <td><a href="http://www.nic.ar/">Registry</a></td> + <td><a href="http://www.nic.ar/616.html">Policy</a></td> + </tr> + <tr> + <td>.at</td> + <td><a href="http://www.nic.at/">Registry</a></td> + <td><a href="http://www.nic.at/en/service/legal_information/registration_guidelines/">Policy</a> (<a href="http://www.nic.at/en/service/technical_information/idn/charset_converter/">character list</a>)</td> + + </tr> + <tr> + <td>.biz</td> + <td><a href="http://www.neustarregistry.biz/">Registry</a></td> + <td><a href="http://www.neustarregistry.biz/products/idns">Policy</a></td> + </tr> + <tr> + + <td>.br</td> + <td><a href="http://registro.br/">Registry</a></td> + <td><a href="http://registro.br/faq/faq6.html">Policy</a></td> + </tr> + <tr> + <td>.cat</td> + <td><a href="http://www.domini.cat/">Registry</a></td> + + <td><a href="http://www.domini.cat/normativa/en_normativa_registre.html">Policy</a></td> + </tr> + <tr> + <td>.ch</td> + <td><a href="http://www.switch.ch/id/">Registry</a></td> + <td><a href="http://www.switch.ch/id/terms/agb.html#anhang1">Policy</a></td> + </tr> + + <tr> + <td>.cl</td> + <td><a href="http://www.nic.cl/">Registry</a></td> + <td><a href="http://www.nic.cl/CL-IDN-policy.html">Policy</a></td> + </tr> + <tr> + <td>.cn</td> + + <td><a href="http://www.cnnic.net.cn/">Registry</a></td> + <td><a href="http://www.faqs.org/rfcs/rfc3743.html">Policy</a> (JET Guidelines)</td> + </tr> + <tr> + <td>.de</td> + <td><a href="http://www.denic.de/">Registry</a></td> + + <td><a href="http://www.denic.de/en/richtlinien.html">Policy</a></td> + </tr> + <tr> + <td>.dk</td> + <td><a href="http://www.dk-hostmaster.dk/">Registry</a></td> + <td><a href="http://www.dk-hostmaster.dk/index.php?id=151">Policy</a></td> + </tr> + + <tr> + <td>.es</td> + <td><a href="https://www.nic.es/">Registry</a></td> + <td><a href="https://www.nic.es/media/2008-12/1228818323935.pdf">Policy</a></td> + </tr> + <tr> + <td>.fi</td> + + <td><a href="http://www.ficora.fi/">Registry</a></td> + <td><a href="http://www.ficora.fi/en/index/palvelut/fiverkkotunnukset/aakkostenkaytto.html">Policy</a></td> + </tr> + <tr> + <td>.gr</td> + <td><a href="https://grweb.ics.forth.gr/english/index.html">Registry</a></td> + <td><a href="https://grweb.ics.forth.gr/english/ENCharacterTable1.jsp">Policy</a></td> + + </tr> + <tr> + <td>.hu</td> + <td><a href="http://www.domain.hu/domain/">Registry</a></td> + <td><a href="http://www.domain.hu/domain/English/szabalyzat.html">Policy</a> (section 2.1.2)</td> + </tr> + + <tr> + <td>.info</td> + <td><a href="http://www.afilias.info/">Registry</a></td> + <td><a href="http://www.afilias.info/register/idn/">Policy</a></td> + </tr> + <tr> + <td>.io</td> + + <td><a href="http://www.nic.io">Registry</a></td> + <td><a href="http://www.nic.io/IO-IDN-Policy.pdf">Policy</a></td> + </tr> + <tr> + <td>.ir</td> + <td><a href="https://www.nic.ir/">Registry</a></td> + <td><a href="https://www.nic.ir/IDN">Policy</a></td> + + </tr> + <tr> + <td>.is</td> + <td><a href="http://www.isnic.is/">Registry</a></td> + <td><a href="http://www.isnic.is/english/domain/rules.php">Policy</a></td> + </tr> + <tr> + + <td>.jp</td> + <td><a href="http://jprs.co.jp/">Registry</a></td> + <td><a href="http://www.iana.org/assignments/idn/jp-japanese.html">Policy</a></td> + </tr> + <tr> + <td>.kr</td> + <td><a href="http://domain.nic.or.kr/">Registry</a></td> + + <td><a href="http://www.faqs.org/rfcs/rfc3743.html">Policy</a> (JET Guidelines)</td> + </tr> + <tr> + <td>.li</td> + <td><a href="http://www.switch.ch/id/">Registry</a></td> + <td><a href="http://www.switch.ch/id/terms/agb.html#anhang1">Policy</a> (managed by .ch registry)</td> + + </tr> + <tr> + <td>.lt</td> + <td><a href="http://www.domreg.lt/public?pg=&sp=&loc=en">Registry</a></td> + <td><a href="http://www.domreg.lt/public?pg=8A7FB6&sp=idn&loc=en">Policy</a> (<a href="http://www.domreg.lt/static/doc/public/idn_symbols-en.pdf">character list</a>)</td> + + </tr> + <tr> + <td>.museum</td> + <td><a href="http://about.museum/">Registry</a></td> + <td><a href="http://about.museum/idn/idnpolicy.html">Policy</a></td> + </tr> + <tr> + + <td>.no</td> + <td><a href="http://www.norid.no/">Registry</a></td> + <td><a href="http://www.norid.no/domeneregistrering/veiviser.en.html">Policy</a> (section 4)</td> + </tr> + <tr> + <td>.org</td> + + <td><a href="http://www.pir.org/">Registry</a></td> + <td><a href="http://pir.org/PDFs/ORG-Extended-Characters-22-Jan-07.pdf">Policy</a></td> + </tr> + <tr> + <td>.pl</td> + <td><a href="http://www.nask.pl/">Registry</a></td> + <td><a href="http://www.dns.pl/IDN/idn-registration-policy.txt">Policy</a></td> + + </tr> + <tr> + <td>.pr</td> + <td><a href="https://www.nic.pr/">Registry</a></td> + <td><a href="https://www.nic.pr/idn_rules.asp">Policy</a></td> + </tr> + <tr> + + <td>.se</td> + <td><a href="http://www.nic-se.se/">Registry</a></td> + <td><a href="http://www.iis.se/en/domaner/internationaliserad-doman-idn/">Policy</a> (<a href="http://www.iis.se/docs/teckentabell-03.pdf">character list</a>)</td> + </tr> + <tr> + + <td>.sh</td> + <td><a href="http://www.nic.sh">Registry</a></td> + <td><a href="http://www.nic.sh/SH-IDN-Policy.pdf">Policy</a></td> + </tr> + <tr> + <td>.th</td> + <td><a href="http://www.thnic.or.th/">Registry</a></td> + + <td><a href="http://www.iana.org/assignments/idn/th-thai.html">Policy</a></td> + </tr> + <tr> + <td>.tm</td> + <td><a href="http://www.nic.tm">Registry</a></td> + <td><a href="http://www.nic.tm/TM-IDN-Policy.pdf">Policy</a></td> + </tr> + + <tr> + <td>.tw</td> + <td><a href="http://www.twnic.net.tw/">Registry</a></td> + <td><a href="http://www.faqs.org/rfcs/rfc3743.html">Policy</a> (JET Guidelines)</td> + </tr> + <tr> + + <td>.vn</td> + <td><a href="http://www.vnnic.net.vn/">Registry</a></td> + <td><a href="http://www.vnnic.vn/english/5-6-300-2-2-04-20071115.htm">Policy</a> (<a href="http://vietunicode.sourceforge.net/tcvn6909.pdf">character list</a>)</td> + </tr> + </table> +</p> + +<p> +This criteria will apply to the email address and server host name fields for all certificate types. +</p> + +<p> +The CAcert Inc. Board has the authority to decide to add or remove accepted TLD Registrars on this list. +</p> + +<h3><a name="p3.2" id="p3.2">3.2. Initial Identity Verification</a></h3> + +<p> +Identity verification is controlled by the +<a href="http://svn.cacert.org/CAcert/Policies/AssurancePolicy.html"> +Assurance Policy</a> (<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>). +The reader is refered to the Assurance Policy, +the following is representative and brief only. +</p> + + +<h4><a name="p3.2.1" id="p3.2.1">3.2.1. Method to prove possession of private key</a></h4> + +<p> +CAcert uses industry-standard techniques to +prove the possession of the private key. +</p> + +<p> +For X.509 server certificates, +the stale digital signature of the CSR is verified. +For X.509 client certificates for "Netscape" browsers, +SPKAC uses a challenge-response protocol +to check the private key dynamically. +For X.509 client certificates for "explorer" browsers, +ActiveX uses a challenge-response protocol +to check the private key dynamically. +</p> + +<h4><a name="p3.2.2" id="p3.2.2">3.2.2. Authentication of Individual Identity</a></h4> + +<p> +<b>Agreement.</b> +An Internet user becomes a Member by agreeing to the +CAcert Community Agreement +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>) +and registering an account on the online website. +During the registration process Members are asked to +supply information about themselves: +</p> + <ul> + <li>A valid working email. + </li> + <li>Full Name and Date of Birth such as is + found on Identity documents. + </li> + <li>Personal Questions used only for Password Retrieval.</li> + </ul> + +<p> +The online account establishes the method of authentication +for all service requests such as certificates. +</p> + +<p> +<b>Assurance.</b> +Each Member is assured according to Assurance Policy +(<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>). +</p> + +<!-- <center><a href="http://xkcd.com/364/"> <img src="http://imgs.xkcd.com/comics/responsible_behavior.png"> </a> </center> --> + + + +<p> +<b>Certificates.</b> +Based on the total number of Assurance Points +that a Member (Name) has, the Member +can get different levels of certificates. +See <a href="#p1.4.5">§1.4.5</a>. +See Table 3.2.b. +When Members have 50 or more points, they +become <i>Assured Members</i> and may then request +certificates that state their Assured Name(s). +</p> + + +<br><br> +<center> + +<table border="1" cellpadding="5"> + <tr> + <th>Assurance Points</th> + <th>Level</th> + <th>Service</th> + <th>Comments</th> + </tr> + <tr> + <td>0</td> + <td>Unassured Member</td> + <td>Anonymous</td> + <td>Certificates with no Name, under Class 1 Root. Limited to 6 months expiry.</td> + </tr> + <tr> + <td>1-49</td> + <td>Unassured Member</td> + <td>Anonymous</td> + <td>Certificates with no Name under Member SubRoot. Limited to 6 months expiry.</td> + </tr> + <tr> + <td rowspan="1">50-99</td> + <td>Assured Member</td> + <td>Verified</td> + <td>Certificates with Verified Name for S/MIME, web servers, "digital signing." + Expiry after 24 months is available.</td> + </tr> + <tr> + <td rowspan="2">100++</td> + <td rowspan="2">Assurer</td> + <td>Code-signing</td> + <td>Can create Code-signing certificates </td> + </tr> +</table> + +<span class="figure">Table 3.2.b - How Assurance Points are used in Certificates</span> + +</center> +<br> + + + +<h4><a name="p3.2.3" id="p3.2.3">3.2.3. Authentication of organization identity</a></h4> + + +<p> +Verification of organisations is delegated by +the Assurance Policy to the +Organisation Assurance Policy +(<a href="http://www.cacert.org/policy/OrganisationAssurancePolicy.php">COD11</a>). +The reader is refered to the Organisation Assurance Policy, +the following is representative and brief only. +</p> + +<p> +Organisations present special challenges. +The Assurance process for Organisations is +intended to permit the organisational Name to +appear in certificates. +The process relies heavily on the Individual +process described above. +</p> + +<p> +Organisation Assurance achieves the standard +stated in the OAP, briefly presented here: +</p> + +<ol type="a"><li> + the organisation exists, + </li><li> + the organisation name is correct and consistent, + </li><li> + signing rights: requestor can sign on behalf of the organisation, and + </li><li> + the organisation has agreed to the terms of the + CAcert Community Agreement + (<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>), + and is therefore subject to Arbitration. +</li></ol> + + <ul class="error"> + <li> As of the current time of writing, OA lacks critical documentation and there are bugs identified with no response.</li> + <li> <a href="http://wiki.cacert.org/wiki/PolicyDrafts/OrganisationAssurance">documented bugs</a>. </li> + <li> Therefore Organisations will not participate in the current audit cycle of roots. </li> + <li> See <a href="http://wiki.cacert.org/wiki/OrganisationAssurance">wiki</a> for any progress on this. </li> + </ul> + + +<h4><a name="p3.2.4" id="p3.2.4">3.2.4. Non-verified subscriber information</a></h4> + +<p> +All information in the certificate is verified, +see Relying Party Statement, §4.5.2. +</p> + + +<h4><a name="p3.2.5" id="p3.2.5">3.2.5. Validation of authority</a></h4> + +<p> +The authorisation to obtain a certificate is established as follows: +</p> + +<p> +<b>Addresses.</b> +The member claims authority over a domain or email address +when adding the address, <a href="#p4.1.2">§4.1.2</a>. +(Control is tested by means described in <a href="#p4.2.2">§4.2.2</a>.) +</p> + +<p> +<b>Individuals.</b> +The authority to participate as a Member is established +by the CAcert Community Agreement +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>). +Assurances are requested by means of the signed CAP form. +</p> + +<p> +<b>Organisations.</b> +The authority for Organisation Assurance is established +in the COAP form, as signed by an authorised representative +of the organisation. +The authority for the +Organisation Administrator +(O-Admin) is also established on the +COAP form. +See Organisation Assurance Policy. +</p> + + +<h4><a name="p3.2.6" id="p3.2.6">3.2.6. Criteria for interoperation</a></h4> + +<p> +CAcert does not currently issue certificates to subordinate CAs +or other PKIs. +Other CAs may become Members, and are then subject to the +same reliance provisions as all Members. +</p> + +<h3><a name="p3.3" id="p3.3">3.3. Re-key Requests</a></h3> + +<p> +Via the Member's account. +</p> + +<h3><a name="p3.4" id="p3.4">3.4. Revocations Requests</a></h3> + +<p> +Via the Member's account. +In the event that the Member has lost the password, +or similar, the Member emails the support team who +either work through the lost-password questions +process or file a dispute. +</p> + + + +<!-- *************************************************************** --> +<h2><a name="p4" id="p4">4. CERTIFICATE LIFE-CYCLE OPERATIONAL REQUIREMENTS</a></h2> + +<p> +The general life-cycle for a new certificate for an Individual Member is: + +<ol><li> + Member adds claim to an address (domain/email). + </li><li> + System probes address for control. + </li><li> + Member creates key pair. + </li><li> + Member submits CSR with desired options (Anonymous Certificate, SSO, Root Certificate) . + </li><li> + System validates and accepts CSR based on + known information: claims, assurance, controls, technicalities. + </li><li> + System signs certificate. + </li><li> + System makes signed certificate available to Member. + </li><li> + Member accepts certificate. +</li></ol> + +</p> + +<p> +(Some steps are not applicable, such as anonymous certificates.) +</p> + + +<h3><a name="p4.1" id="p4.1">4.1. Certificate Application</a></h3> + +<h4><a name="p4.1.1" id="p4.1.1">4.1.1. Who can submit a certificate application</a></h4> + +<p> +Members may submit certificate applications. +On issuance of certificates, Members become Subscribers. +</p> + +<h4><a name="p4.1.2" id="p4.1.2">4.1.2. Adding Addresses</a></h4> + +<p> +The Member can claim ownership or authorised control of +a domain or email address on the online system. +This is a necessary step towards issuing a certificate. +There are these controls: +<ul><li> + The claim of ownership or control is legally significant + and may be referred to dispute resolution. + </li><li> + Each unique address can be handled by one account only. + </li><li> + When the Member makes the claim, + the certificate application system automatically initiates the + check of control, as below. +</li></ul> +</p> + +<h4><a name="p4.1.3" id="p4.1.3">4.1.3. Preparing CSR </a></h4> + +<p> +Members generate their own key-pairs. +The CAcert Community Agreement +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>) +obliges the Member as responsible for security. +See CCA2.5, §9.6. +</p> + +<p> +The Certificate Signing Request (CSR) is prepared by the +Member for presentation to the automated system. +</p> + +<h3><a name="p4.2" id="p4.2">4.2. Certificate application processing</a></h3> + +<!-- states what a CA does on receipt of the request --> + +<p> +The CA's certificate application process is completely automated. +Requests, approvals and rejections are handled by the website system. +Each application should be processed in less than a minute. +</p> +<p> +Where certificates are requested for more than one +purpose, the requirements for each purpose must be +fulfilled. +</p> + +<!-- all sub headings in 4.2 are local, not from Chokhani. --> + +<h4><a name="p4.2.1" id="p4.2.1">4.2.1. Authentication </a></h4> + +<p> + The Member logs in to her account on the CAcert website + and thereby authenticates herself with username + and passphrase or with her CAcert client-side digital certificate. +</p> + +<h4><a name="p4.2.2" id="p4.2.2">4.2.2. Verifying Control</a></h4> + +<p> +In principle, at least two controls are placed on each address. +</p> + +<p> +<b><a name="ping">Email-Ping</a>.</b> +Email addresses are verified by means of an +<i><a name="ping">Email-Ping test</a></i>: +</p> + +<ul><li> + The system generates a cookie + (a random, hard-to-guess code) + and formats it as a string. + </li><li> + The system sends the cookie + to the Member in an email. + </li><li> + Once the Member receives the email, + she enters the cookie into the website. + </li><li> + The entry of the code verifies + control of that email account. +</li></ul> + +<p> +<b><a name="email">Email Control</a>.</b> +Email addresses for client certificates are verified by passing the +following checks: +</p> +<ol> + <li>An Email-ping test + is done on the email address. + </li> + <li>The Member must have signed a CAP form or equivalent, + and been awarded at least one Assurance point. + </li> +</ol> + +<p> +<b><a name="domain">Domain Control</a>.</b> +Domains addresses for server certificates are verified by passing two of the +following checks: +</p> +<ol> <li> + An Email-ping test + is done on an email address chosen from <i>whois</i> + or interpolated from the domain name. + </li> <li> + The system generates a cookie + which is then placed in DNS + by the Member. + </li> <li> + The system generates a cookie + which is then placed in HTTP headers or a text file on the website + by the Member. + </li> <li> + Statement by at least 2 Assurers about + ownership/control of the domain name. + </li> <li> + The system generates a cookie + which is then placed in whois registry information + by the Member. +</li> </ol> + +<p> +Notes. +<ul><li> + Other methods can be added from time to time by CAcert. + </li><li> + Static cookies should remain for the duration of a certificate + for occasional re-testing. + </li><li> + Dynamic tests can be repeated at a later time of CAcert's choosing. + </li><li> + Domain control checks may be extended to apply to email control + in the future. +</li></ul> +</p> + + <ul class="q"> + <li> As of the time of writing, only a singular Email-ping is implemented in the technical system. </li> + <li> A further approved check is the 1 pt Assurance. </li> + <li> Practically, this would mean that certificates can only be issued under Audit Roots to Members with 1 point. </li> + <li> Criteria DRC C.7.f, A.2.q, A.2.i indicate registry whois reading. Also A.2.h. </li> + <li> Current view is that this will be resolved in BirdShack. </li> + </ul> + +<h4><a name="p4.2.3" id="p4.2.3">4.2.3. Options Available</a></h4> + +<p> +The Member has options available: +</p> + +<ul> + <li>Each Email address that is verified + is available for Client Certificates. + </li> + <li>Each Domain address that is verified + is available for Server Certificates. + </li> + <li>If the Member is unassured then only the Member SubRoot is available. + </li> + <li>If the Member is Assured then both Assured Member and Member SubRoots + are available. + </li> + <li>If a Name is Assured then it may be + put in a client certificate or an OpenPGP signature. + </li> +</ul> + +<h4><a name="p4.2.4" id="p4.2.4">4.2.4. Client Certificate Procedures</a></h4> + +<p> +For an individual client certificate, the following is required. +<ul> + <li>The email address is claimed and added. </li> + <li>The email address is ping-tested. </li> + <li>For the Member Subroot, the Member must have + at least one point of Assurance and have signed a CAP form.</li> + <li>For the Assured Subroot, the Member must have + at least fifty points of Assurance. </li> + <li>To include a Name, the Name must be assured to at least fifty points. </li> + +</ul> +</p> + +<h4><a name="p4.2.5" id="p4.2.5">4.2.5. Server Certificate Procedures</a></h4> + +<p> +For a server certificate, the following is required: +<ul> + <li>The domain is claimed and added. </li> + <li>The domain is checked twice as above. </li> + <li>For the Member SubRoot, the Member must have + at least one point of Assurance and have signed a CAP form.</li> + <li>For the Assured SubRoot, the Member must have + at least fifty points of Assurance. </li> +</ul> + +</p> + +<h4><a name="p4.2.6" id="p4.2.6">4.2.6. Code-signing Certificate Procedures</a></h4> + +<p> +Code-signing certificates are made available to Assurers only. +They are processed in a similar manner to client certificates. +</p> + +<h4><a name="p4.2.7" id="p4.2.7">4.2.7. Organisation Domain Verification</a></h4> + +<p> +Organisation Domains are handled under the Organisation Assurance Policy +and the Organisation Handbook. +</p> + + <ul class="q"> + <li> As of time of writing, there is no Handbook for Organisation Assurers or for the Organisation, and the policy needs rework; so (audit) roots will not have OA certs .... </li> + <li> <a href="http://wiki.cacert.org/wiki/PolicyDrafts/OrganisationAssurance"> Drafts </a> for ongoing story. </li> + </ul> + +<h3><a name="p4.3" id="p4.3">4.3. Certificate issuance</a></h3> + + +<!-- <a href="http://xkcd.com/153/"> <img align="right" src="http://imgs.xkcd.com/comics/cryptography.png"> </a> --> +<h4><a name="p4.3.1" id="p4.3.1">4.3.1. CA actions during certificate issuance</a></h4> + +<p> +<b>Key Sizes.</b> +Members may request keys of any size permitted by the key algorithm. +Many older hardware devices require small keys. +</p> + +<p> +<b>Algorithms.</b> +CAcert currently only supports the RSA algorithm for X.509 keys. +X.509 signing uses the SHA-1 message digest algorithm. +OpenPGP Signing uses RSA signing over RSA and DSA keys. + +</p> + +<p> +<b>Process for Certificates:</b> +All details in each certificate are verified +by the website issuance system. +Issuance is based on a 'template' system that selects +profiles for certificate lifetime, size, algorithm. +</p> + + +<ol><li> + The CSR is verified. + </li><li> + Data is extracted from CSR and verified: + <ul> + <li> Name §3.1, </li> + <li> Email address <a href="#p4.2.2">§4.2.2</a>, </li> + <li> Domain address <a href="#p4.2.2">§4.2.2</a>. </li> + </ul> + </li><li> + Certificate is generated from template. + </li><li> + Data is copied from CSR. + </li><li> + Certificate is signed. + </li><li> + Certificate is stored as well as mailed. +</li></ol> + + +<p> +<b>Process for OpenPGP key signatures:</b> +All details in each Sub-ID are verified +by the website issuance system. +Issuance is based on the configuration that selects +the profile for signature lifetime, size, +algorithm following the process: +</p> + +<ol><li> + The public key is verified. + </li><li> + Data is extracted from the key and verified (Name, Emails). + Only the combinations of data in Table 4.3.1 are permitted. + </li><li> + OpenPGP Key Signature is generated. + </li><li> + Key Signature is applied to the key. + </li><li> + The signed key is stored as well as mailed. +</li></ol> + +<center> +<table border="1" align="center" valign="top" cellpadding="5"><tbody> + <tr> + <td><br></td> + <td>Verified Name</td> + <td valign="top">Unverified Name<br></td> + <td>Empty Name<br></td> + </tr> + <tr> + <td>Verified email<br></td> + <td><center> <font title="pass." color="green" size="+3"> ✔ </font> </center></td> + <td valign="top"><center> <font title="pass." color="red" size="+3"> ✘ </font> </center></td> + <td><center> <font title="pass." color="green" size="+3"> ✔ </font> </center></td> + </tr> + <tr> + <td>Unverified email</td> + <td><center> <font title="pass." color="red" size="+3"> ✘ </font> </center></td> + <td valign="top"><center> <font title="pass." color="red" size="+3"> ✘ </font> </center></td> + <td><center> <font title="pass." color="red" size="+3"> ✘ </font> </center></td></tr><tr><td valign="top">Empty email<br></td> + <td valign="top"><center> <font title="pass." color="green" size="+3"> ✔ </font> </center></td> + <td valign="top"><center> <font title="pass." color="red" size="+3"> ✘ </font> </center></td> + <td valign="top"><center> <font title="pass." color="red" size="+3"> ✘ </font> </center></td> + </tr> +</tbody></table><br> + +<span class="figure">Table 4.3.1. Permitted Data in Signed OpenPgp Keys</span> +</center> + +<h4><a name="p4.3.2" id="p4.3.2">4.3.2. Notification to subscriber by the CA of issuance of certificate</a></h4> + +<p> +Once signed, the certificate is +made available via the Member's account, +and emailed to the Member. +It is also archived internally. +</p> + +<h3><a name="p4.4" id="p4.4">4.4. Certificate acceptance</a></h3> + +<h4><a name="p4.4.1" id="p4.4.1">4.4.1. Conduct constituting certificate acceptance</a></h4> + +<p> +There is no need for the Member to explicitly accept the certificate. +In case the Member does not accept the certificate, +the certificate has to be revoked and made again. +</p> + +<h4><a name="p4.4.2" id="p4.4.2">4.4.2. Publication of the certificate by the CA</a></h4> + +<p> +CAcert does not currently publish the issued certificates +in any repository. +In the event that CAcert will run a repository, +the publication of certificates and signatures +there will be at the Member's options. +However note that certificates that are issued +and delivered to the Member are presumed to be +published. See §2.2. +</p> + +<h4><a name="p4.4.3" id="p4.4.3">4.4.3. Notification of certificate issuance by the CA to other entities</a></h4> + +<p> +There are no external entities that are notified about issued certificates. +</p> + +<h3><a name="p4.5" id="p4.5">4.5. Key pair and certificate usage</a></h3> + +<p> +All Members (subscribers and relying parties) +are obliged according to the +CAcert Community Agreement +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>) +See especially 2.3 through 2.5. +</p> +<h4><a name="p4.5.1" id="p4.5.1">4.5.1. Subscriber Usage and Responsibilities</a></h4> + +<p> +Subscribers should use keys only for their proper purpose, +as indicated by the certificate, or by wider agreement with +others. +</p> + +<h4><a name="p4.5.2" id="p4.5.2">4.5.2. Relying Party Usage and Responsibilities</a></h4> + + +<p> +Relying parties (Members) may rely on the following. +</p> + +<center> + <table border="1" cellpadding="25"><tr><td> + <p align="center"> + <big><b>Relying Party Statement</b></big> + <p> + Certificates are issued to Members only.<br><br> + All information in a certificate is verified. + </p> + </td></tr></table> +</center> + + +<p> +The following notes are in addition to the Relying Party Statement, +and can be seen as limitations on it. +</p> + +<h5>4.5.2.a Methods of Verification </h5> +<p> +The term Verification as used in the Relying Party Statement means one of +</p> +<table border="1" cellpadding="5"><tr> + <th>Type</th><th>How</th><th>Authority</th><th>remarks</th> +</tr><tr> + <th>Assurance</th><td>under CAcert Assurance Programme (CAP)</td> + <td>Assurance Policy</td> + <td>only information assured to 50 points under CAP is placed in the certificate </td> +</tr><tr> + <th>Evaluation</th><td>under automated domain and email checks </td> + <td>this CPS</td> + <td>see §4.2.2</td> +</tr><tr> + <th>Controlled</th><td>programs or "profiles" that check the information within the CSR </td> + <td>this CPS</td> + <td>see §7.1</td> +</tr></table> + +<h5>4.5.2.b Who may rely</h5> +<p> +<b>Members may rely.</b> +Relying parties are Members, +and as such are bound by this CPS and the +CAcert Community Agreement +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>). +The licence and permission to rely is not assignable. +</p> + +<p> +<b>Suppliers of Software.</b> +CAcert roots may be distributed in software, +and those providers may +enter into agreement with CAcert by means of the +Third Party Vendor - Disclaimer and Licence +(wip). +This licence brings the supplier in to the Community +to the extent that <span class="q"> ...WIP comment:</span> +they agree to dispute resolution +within CAcert's forum. +</p> + + <ul class="q"> + <li> Just exactly what the 3PV-DaL says is unclear.</li> + <li> The document itself is more a collection of ideas.</li> + </ul> + + +<p> +<b>NRPs may not rely.</b> +If not related to CAcert by means of an agreement +that binds the parties to dispute resolution within CAcert's forum, +a person is a Non-Related-Person (NRP). +An NRP is not permitted to rely and is not a Relying Party. +For more details, see the +NRP - Disclaimer and Licence (<a href="http://www.cacert.org/policy/NRPDisclaimerAndLicence.php">COD4</a>). +</p> + +<h5>4.5.2.c The Act of Reliance </h5> + +<p> +<b>Decision making.</b> +Reliance means taking a decision that is in part or in whole +based on the information in the certificate. + +A Relying Party may incorporate +the information in the certificate, +and the implied information such as Membership, +into her decision-making. +In making a decision, +a Relying Party should also: +</p> + +<ul><li> + include her own overall risk equation, + </li><li> + include the general limitations of the Assurance process, + certificates, and wider security considerations, + </li><li> + make additional checks to provide more information, + </li><li> + consider any wider agreement with the other Member, and + </li><li> + use an appropriate protocol or custom of reliance (below). +</li></ul> + +<p> +<b>Examining the Certificate.</b> +A Relying Party must make her own decision in using +each certificate. She must examine the certificate, +a process called <i>validation</i>. +Certificate-related information includes, +but is not limited to: +</p> +<ul><li> + Name, + </li><li> + expiry time of certificate, + </li><li> + current certificate revocation list (CRL), + </li><li> + certificate chain and + the validity check of the certificates in the chain, + </li><li> + issuer of certificate (CAcert), + </li><li> + SubRoot is intended for reliance (Assured, Organisation and Class 3) + </li><li> + purpose of certificate. +</li></ul> + +<p> +<b>Keeping Records.</b> +Records should be kept, appropriate to the import of the decision. +The certificate should be preserved. +This should include sufficient +evidence to establish who the parties are +(especially, the certificate relied upon), +to establish the transaction in question, +and to establish the wider agreement that +defines the act. +</p> + +<p> +<b>Wider Protocol.</b> +In principle, reliance will be part of a wider protocol +(customary method in reaching and preserving agreement) +that presents and preserves sufficient of the evidence +for dispute resolution under CAcert's forum of Arbitration. +The protocol should be agreed amongst the parties, +and tuned to the needs. +This CPS does not define any such protocol. +In the absence of such a protocol, reliance will be weakened; +a dispute without sufficient evidence may be dismissed by an Arbitrator. +</p> + +<p> +<b>As Compared to Usage</b>. +Reliance goes beyond Usage. The latter is limited to +letting the software act as the total and only Validation +Authority. When relying, the Member also augments +the algorithmic processing of the software with her own +checks of the business, technical and certificate aspect. +</p> + +<h5>4.5.2.d Risks and Limitations of Reliance </h5> +<p> +<b>Roots and Naming.</b> +Where the Class 1 root is used, +this Subscriber may be a new Member +including one with zero points. +Where the Name is not provided, +this indicates it is not available. +In these circumstances, +reliance is not defined, +and Relying parties should take more care. +See Table 4.5.2. +</p> + +<center> +<table border="1" cellpadding="5"> + <tr> + <td></td> + <td colspan="4"><center><i>Statements of Reliance for Members</center></i></td> + </tr> + <tr> + <td><i>Class of Root</i></td> + <td><center><b>Anonymous</b><br>(all Members)</center></td> + <td><center><b>Named</b><br>(Assured Members only)</center></td> + </tr> + <tr> + <td><center>Class<br><big><b>1</b></big></center></td> + <td rowspan="2" bgcolor="red"> + <b>Do not rely.</b><BR> + Relying party must use other methods to check. </td> + <td rowspan="2" bgcolor="orange"> + Do not rely. + Although the named Member has been Assured by CAcert, + reliance is not defined with Class 1 root.<BR> + (issued for compatibility only).</td> + </tr> + <tr> + <td><center><big><b>Member</b></big><br>SubRoot</center></td> + </tr> + <tr> + <td><center>Class<br><big><b>3</b></big></center></td> + <td rowspan="2" bgcolor="orange"> + Do not rely on the Name (being available). + The Member has been Assured by CAcert, + but reliance is undefined.</td> + <td rowspan="2"> + The Member named in the certificate has been Assured by CAcert.</td> + </tr> + <tr> + <td><center><big><b>Assured</b></big><br>SubRoot</center></td> + </tr> +</table> + +<span class="figure">Table 4.5.2. Statements of Reliance</span> +</center> + +<p> +<b>Software Agent.</b> +When relying on a certificate, relying parties should +note that your software is responsible for the way it +shows you the information in a certificate. +If your software agent hides parts of the information, +your sole remedy may be to choose another software agent. +</p> + +<p> +<b>Malware.</b> +When relying on a certificate, relying parties should +note that platforms that are vulnerable to viruses or +trojans or other weaknesses may not process any certificates +properly and may give deceptive or fraudulent results. +It is your responsibility to ensure you are using a platform +that is secured according to the needs of the application. +</p> + +<h5>4.5.2.e When something goes wrong </h5> +<p> +In the event that an issue arises out of the Member's reliance, +her sole avenue is <b>to file dispute under DRP</b>. +See <a href="#p9.13">§9.13</a>. +<!-- DRC_A§A.4.d --> +For this purpose, the certificate (and other evidence) should be preserved. +</p> + +<p> +<b>Which person?</b> +Members may install certificates for other individuals or in servers, +but the Member to whom the certificate is issued +remains the responsible person. +E.g., under Organisation Assurance, an organisation is issued +a certificate for the use by individuals +or servers within that organisation, +but the Organisation is the responsible person. +</p> + +<!-- <a href="http://xkcd.com/424/"> <img align="right" src="http://imgs.xkcd.com/comics/security_holes.png"> </a> --> +<p> +<b>Software Agent.</b> +If a Member is relying on a CAcert root embedded in +the software as supplied by a vendor, +the risks, liabilities and obligations of the Member +do not automatically transfer to the vendor. +</p> + +<h3><a name="p4.6" id="p4.6">4.6. Certificate renewal</a></h3> + +<p> +A certificate can be renewed at any time. +The procedure of certificate renewal is the same +as for the initial certificate issuance. +</p> + +<h3><a name="p4.7" id="p4.7">4.7. Certificate re-key</a></h3> + +<p> +Certificate "re-keyings" are not offered nor supported. +A new certificate with a new key has to be requested and issued instead, +and the old one revoked. +</p> + +<h3><a name="p4.8" id="p4.8">4.8. Certificate modification</a></h3> + +<p> +Certificate "modifications" are not offered nor supported. +A new certificate has to be requested and issued instead. +</p> + +<h3><a name="p4.9" id="p4.9">4.9. Certificate revocation and suspension</a></h3> + +<h4><a name="p4.9.1" id="p4.9.1">4.9.1. Circumstances for revocation</a></h4> +<p> +Certificates may be revoked under the following circumstances: +</p> + +<ol><li> + As initiated by the Subscriber through her online account. + </li><li> + As initiated in an emergency action by a + support team member. + Such action will immediately be referred to dispute resolution + for ratification. + </li><li> + Under direction from the Arbitrator in a duly ordered ruling + from a filed dispute. +</li></ol> + +<p> +These are the only three circumstances under which a +revocation occurs. +</p> + +<h4><a name="p4.9.2" id="p4.9.2">4.9.2. Who can request revocation</a></h4> + +<p> +As above. +</p> + +<h4><a name="p4.9.3" id="p4.9.3">4.9.3. Procedure for revocation request</a></h4> +<p> +The Subscriber logs in to her online account through +the website at http://www.cacert.org/ . +</p> + +<p> +In any other event such as lost passwords or fraud, +a dispute should be filed +by email at + < support AT cacert DOT org > +</p> + +<h4><a name="p4.9.4" id="p4.9.4">4.9.4. Revocation request grace period</a></h4> + +<p>No stipulation.</p> + +<h4><a name="p4.9.5" id="p4.9.5">4.9.5. Time within which CA must process the revocation request</a></h4> + +<p> +The revocation automated in the Web Interface for subscribers, +and is handled generally in less than a minute. +</p> + +<p> +A filed dispute that requests a revocation should be handled +within a five business days, however the Arbitrator has discretion. +</p> + +<h4><a name="p4.9.6" id="p4.9.6">4.9.6. Revocation checking requirement for relying parties</a></h4> + +<p> +Each revoked certificate is recorded in the +certificate revocation list (CRL). +Relying Parties must check a certificate against +the most recent CRL issued, in order to validate +the certificate for the intended reliance. +</p> + +<h4><a name="p4.9.7" id="p4.9.7">4.9.7. CRL issuance frequency (if applicable)</a></h4> + +<p> +A new CRL is issued after every certificate revocation. +</p> + +<h4><a name="p4.9.8" id="p4.9.8">4.9.8. Maximum latency for CRLs (if applicable)</a></h4> + +<p> +The maximum latency between revocation and issuance of the CRL is 1 hour. +</p> + +<h4><a name="p4.9.9" id="p4.9.9">4.9.9. On-line revocation/status checking availability</a></h4> + +<p> +OCSP is available at +http://ocsp.cacert.org/ . +</p> + +<h4><a name="p4.9.10" id="p4.9.10">4.9.10. On-line revocation checking requirements</a></h4> +<p> +Relying parties must check up-to-date status before relying. +</p> + +<h4><a name="p4.9.11" id="p4.9.11">4.9.11. Other forms of revocation advertisements available</a></h4> +<p> +None. +</p> + +<h4><a name="p4.9.12" id="p4.9.12">4.9.12. Special requirements re key compromise</a></h4> +<p> +Subscribers are obliged to revoke certificates at the earliest opportunity. +</p> + +<h4><a name="p4.9.13" id="p4.9.13">4.9.13. Circumstances for suspension</a></h4> + +<p> +Suspension of certificates is not available. +</p> + +<h4><a name="p4.9.14" id="p4.9.14">4.9.14. Who can request suspension</a></h4> +<p> +Not applicable. +</p> + +<h4><a name="p4.9.15" id="p4.9.15">4.9.15. Procedure for suspension request</a></h4> +<p> +Not applicable. +</p> + +<h4><a name="p4.9.16" id="p4.9.16">4.9.16. Limits on suspension period</a></h4> +<p> +Not applicable. +</p> + + + +<h3><a name="p4.10" id="p4.10">4.10. Certificate status services</a></h3> + +<h4><a name="p4.10.1" id="p4.10.1">4.10.1. Operational characteristics</a></h4> +<p> +OCSP is available +at http://ocsp.cacert.org/ . +</p> + +<h4><a name="p4.10.2" id="p4.10.2">4.10.2. Service availability</a></h4> + +<p> +OCSP is made available on an experimental basis. +</p> + +<h4><a name="p4.10.3" id="p4.10.3">4.10.3. Optional features</a></h4> + +<p> +No stipulation. +</p> + +<h3><a name="p4.11" id="p4.11">4.11. End of subscription</a></h3> + +<p> +Certificates include expiry dates. +</p> + +<h3><a name="p4.12" id="p4.12">4.12. Key escrow and recovery</a></h3> + +<h4><a name="p4.12.1" id="p4.12.1">4.12.1. Key escrow and recovery policy and practices</a></h4> + +<p> +CAcert does not generate nor escrow subscriber keys. +</p> + +<h4><a name="p4.12.2" id="p4.12.2">4.12.2. Session key encapsulation and recovery policy and practices</a></h4> + +<p> +No stipulation. +</p> + + + +<!-- *************************************************************** --> +<h2><a name="p5" id="p5">5. FACILITY, MANAGEMENT, AND OPERATIONAL CONTROLS</a></h2> + +<!-- <a href="http://xkcd.com/87/"> <img align="right" src="http://imgs.xkcd.com/comics/velociraptors.jpg"> </a> --> + +<h3><a name="p5.1" id="p5.1">5.1. Physical controls</a></h3> + +<p> +Refer to Security Policy (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>) +<ul><li> + Site location and construction - SP2.1 + </li><li> + Physical access - SP2.3 +</li></ul> +</p> + + +<h4><a name="p5.1.3" id="p5.1.3">5.1.3. Power and air conditioning</a></h4> +<p> +Refer to Security Policy 2.1.2 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>) +</p> +<h4><a name="p5.1.4" id="p5.1.4">5.1.4. Water exposures</a></h4> +<p> +Refer to Security Policy 2.1.4 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>) +</p> +<h4><a name="p5.1.5" id="p5.1.5">5.1.5. Fire prevention and protection</a></h4> +<p> +Refer to Security Policy 2.1.4 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>) +</p> +<h4><a name="p5.1.6" id="p5.1.6">5.1.6. Media storage</a></h4> +<p> +Refer to Security Policy 4.3 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>) +</p> +<h4><a name="p5.1.7" id="p5.1.7">5.1.7. Waste disposal</a></h4> +<p> +No stipulation. +</p> +<h4><a name="p5.1.8" id="p5.1.8">5.1.8. Off-site backup</a></h4> +<p> +Refer to Security Policy 4.3 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>) +</p> + +<h3><a name="p5.2" id="p5.2">5.2. Procedural controls</a></h3> + +<h4><a name="p5.2.1" id="p5.2.1">5.2.1. Trusted roles</a></h4> + +<ul> + <li><b> Technical teams:</b> + <ul> + <li>User support personnel</li> + <li>Systems Administrators -- critical and non-critical</li> + <li>Softare Developers</li> + <li>controllers of keys</li> + </ul> + Refer to Security Policy 9.1 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>) + + </li> + + <li><b>Assurance:</b> + <ul> + <li>Assurers</li> + <li> Any others authorised under COD13 </li> + </ul> + Refer to Assurance Policy (<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>) + </li> + + <li><b>Governance:</b> + <ul> + <li>Directors (members of the CAcert Inc. committee, or "Board") </li> + <li>Internal Auditor</li> + <li>Arbitrator</li> + </ul> + </li> +</ul> + + +<h4><a name="p5.2.2" id="p5.2.2">5.2.2. Number of persons required per task</a></h4> +<p> +CAcert operates to the principles of <i>four eyes</i> and <i>dual control</i>. +All important roles require a minimum of two persons. +The people may be tasked to operate +with an additional person observing (<i>four eyes</i>), +or with two persons controlling (<i>dual control</i>). +</p> + +<h4><a name="p5.2.3" id="p5.2.3">5.2.3. Identification and authentication for each role</a></h4> + +<p> +All important roles are generally required to be assured +at least to the level of Assurer, as per AP. +Refer to Assurance Policy (<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>). +</p> + +<p> +<b>Technical.</b> +Refer to Security Policy 9.1 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>). +</p> + +<h4><a name="p5.2.4" id="p5.2.4">5.2.4. Roles requiring separation of duties</a></h4> + +<p> +Roles strive in general for separation of duties, either along the lines of +<i>four eyes principle</i> or <i>dual control</i>. +</p> + +<h3><a name="p5.3" id="p5.3">5.3. Personnel controls</a></h3> + +<h4><a name="p5.3.1" id="p5.3.1">5.3.1. Qualifications, experience, and clearance requirements</a></h4> + +<center> +<table border="1" cellpadding="5"> + <tr> + <td><b>Role</b></td> <td><b>Policy</b></td> <td><b>Comments</b></td> + </tr><tr> + <td>Assurer</td> + <td><a href="http://www.cacert.org/policy/AssurancePolicy.php"> COD13</td> + <td> + Passes Challenge, Assured to 100 points. + </td> + </tr><tr> + <td>Organisation Assurer</td> + <td><a href="http://www.cacert.org/policy/OrganisationAssurancePolicy.php">COD11</a></td> + <td> + Trained and tested by two supervising OAs. + </td> + </tr><tr> + <td>Technical</td> + <td>SM => COD08</td> + <td> + Teams responsible for testing. + </td> + </tr><tr> + <td>Arbitrator</td> + <td><a href="http://www.cacert.org/policy/DisputeResolutionPolicy.php">COD7</a></td> + <td> + Experienced Assurers. + </td> + </tr> +</table> + +<span class="figure">Table 5.3.1. Controls on Roles</span> +</center> + + +<h4><a name="p5.3.2" id="p5.3.2">5.3.2. Background check procedures</a></h4> + +<p> +Refer to Security Policy 9.1.3 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>). +</p> +<!-- <a href="http://xkcd.com/538/"> <img align="right" src="http://imgs.xkcd.com/comics/security.png"> </a> --> + +<h4><a name="p5.3.3" id="p5.3.3">5.3.3. Training requirements</a></h4> +<p>No stipulation.</p> +<h4><a name="p5.3.4" id="p5.3.4">5.3.4. Retraining frequency and requirements</a></h4> +<p>No stipulation.</p> + +<h4><a name="p5.3.5" id="p5.3.5">5.3.5. Job rotation frequency and sequence</a></h4> +<p>No stipulation.</p> + +<h4><a name="p5.3.6" id="p5.3.6">5.3.6. Sanctions for unauthorized actions</a></h4> +<p> +Any actions that are questionable +- whether uncertain or grossly negligent - +may be filed as a dispute. +The Arbitrator has wide discretion in +ruling on loss of points, retraining, +or termination of access or status. +Refer to DRP. +</p> + +<h4><a name="p5.3.7" id="p5.3.7">5.3.7. Independent contractor requirements</a></h4> +<p>No stipulation.</p> + +<h4><a name="p5.3.8" id="p5.3.8">5.3.8. Documentation supplied to personnel</a></h4> +<p>No stipulation.</p> + +<h3><a name="p5.4" id="p5.4">5.4. Audit logging procedures</a></h3> + +<p> +Refer to Security Policy 4.2, 5 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>). +</p> + +<h3><a name="p5.5" id="p5.5">5.5. Records archival</a></h3> +<p> +The standard retention period is 7 years. +Once archived, records can only be obtained and verified +by means of a filed dispute. +Following types of records are archived: +</p> + +<center> +<table border="1" cellpadding="5"> + <tr> + <td><b>Record</b></td> + <td><b>Nature</b></td> + <td><b>Exceptions</b></td> + <td><b>Documentation</b></td> + </tr> + <tr> + <td>Member</td> + <td>username, primary and added addresses, security questions, Date of Birth</td> + <td>resigned non-subscribers: 0 years.</td> + <td>Security Policy and Privacy Policy</td> + </tr> + <tr> + <td>Assurance</td> + <td>CAP forms</td> + <td>"at least 7 years."<br> as per subsidiary policies</td> + <td>Assurance Policy 4.5</td> + </tr> + <tr> + <td>Organisation Assurance</td> + <td>COAP forms</td> + <td>as per subsidiary policies</td> + <td>Organisation Assurance Policy</td> + </tr> + <tr> + <td>certificates and revocations</td> + <td> for reliance </td> + <td> 7 years after termination </td> + <td>this CPS</td> + </tr> + <tr> + <td>critical roles</td> + <td>background check worksheets</td> + <td>under direct Arbitrator control</td> + <td>Security Policy 9.1.3</td> + </tr> +</table> + +<span class="figure">Table 5.5. Documents and Retention </span> +</center> + + +<h3><a name="p5.6" id="p5.6">5.6. Key changeover</a></h3> + +<p> +Refer to Security Policy 9.2 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>). +</p> + +<h3><a name="p5.7" id="p5.7">5.7. Compromise and disaster recovery</a></h3> + +<p> +Refer to Security Policy 5, 6 (<a href="http://svn.cacert.org/CAcert/Policies/SecurityPolicy.html">COD8</a>). +(Refer to <a href="#p1.4">§1.4</a> for limitations to service.) +</p> + +</p> + +<h3><a name="p5.8" id="p5.8">5.8. CA or RA termination</a></h3> + +<h4><a name="p5.8.1" id="p5.8.1">5.8.1 CA termination</a></h4> + + +<p> +<s> +If CAcert should terminate its operation or be +taken over by another organisation, the actions +will be conducted according to a plan approved +by the CAcert Inc. Board. +</s> +</p> + +<p> +In the event of operational termination, the +Roots (including SubRoots) +and all private Member information will be secured. +The Roots will be handed over to a responsible +party for the sole purpose of issuing revocations. +Member information will be securely destroyed. +</p> + +<span class="change"> +<p> +The CA cannot be transferrred to another organisation. +</p> +</span> + +<p> +<s> +In the event of takeover, +the Board will decide if it is in the interest +of the Members to be converted to the +new organisation. +Members will be notified about the conversion +and transfer of the Member information. +Such takeover, conversion or transfer may involve termination +of this CPS and other documents. +See §9.10.2. +Members will have reasonable time in which to file a related +dispute after notification +(at least one month). +See §9.13. +</s> +</p> +<s> + <ul class="error"> + <li> The ability to transfer is not given in any of CCA, PP or AP! </li> + <li> The Board does not have the power to terminate a policy, that is the role of policy group! </li> + <li> The right to transfer was against the principles of the CAcert? </li> + <li> Check Association Statutes.... </li> + </ul> +</s> + +<span class="change"> +<s> +<p> +New root keys and certificates will be made available +by the new organisation as soon as reasonably practical. +</p> +</s> +</span> + +<h4><a name="p5.8.2" id="p5.8.2">5.8.2 RA termination</a></h4> + +<p> +When an Assurer desires to voluntarily terminates +her responsibilities, she does this by filing a dispute, +and following the instructions of the Arbitrator. +</p> + +<p> +In the case of involuntary termination, the process is +the same, save for some other party filing the dispute. +</p> + + + + + +<!-- *************************************************************** --> +<h2><a name="p6" id="p6">6. TECHNICAL SECURITY CONTROLS</a></h2> + + +<!-- <a href="http://xkcd.com/221/"> <img align="right" src="http://imgs.xkcd.com/comics/random_number.png"> </a> --> + +<h3><a name="p6.1" id="p6.1">6.1. Key Pair Generation and Installation</a></h3> + +<h4><a name="p6.1.1" id="p6.1.1">6.1.1. Key Pair Generation</a></h4> + +<p> +Subscribers generate their own Key Pairs. +</p> + +<h4><a name="p6.1.2" id="p6.1.2">6.1.2. Subscriber Private key security</a></h4> + +<p> +There is no technical stipulation on how Subscribers generate +and keep safe their private keys, +however, CCA 2.5 provides for general security obligations. +See <a href="#p9.6">§9.6</a>. +</p> + +<h4><a name="p6.1.3" id="p6.1.3">6.1.3. Public Key Delivery to Certificate Issuer</a></h4> + +<p> +Members login to their online account. +Public Keys are delivered by cut-and-pasting +them into the appropriate window. +Public Keys are delivered in signed-CSR form +for X.509 and in self-signed form for OpenPGP. +</p> + +<h4><a name="p6.1.4" id="p6.1.4">6.1.4. CA Public Key delivery to Relying Parties</a></h4> + +<p> +The CA root certificates are distributed by these means: +</p> + +<ul><li> + Published on the website of CAcert, + in both HTTP and HTTPS. + </li><li> + Included in Third-Party Software such as + Browsers, Email-Clients. + Such suppliers are subject to the Third Party Vendor Agreement. +</li></ul> + +<p class="q"> Third Party Vendor Agreement is early wip, only </p> + +<h4><a name="p6.1.5" id="p6.1.5">6.1.5. Key sizes</a></h4> + +<p> +No limitation is placed on Subscriber key sizes. +</p> + +<p> +CAcert X.509 root and intermediate keys are currently 4096 bits. +X.509 roots use RSA and sign with the SHA-1 message digest algorithm. +See <a href="#p4.3.1">§4.3.1</a>. +</p> + +<p> +OpenPGP Signing uses both RSA and DSA (1024 bits). +</p> + +<p> +CAcert adds larger keys and hashes +in line with general cryptographic trends, +and as supported by major software suppliers. +</p> + + <ul class="q"> + <li> old Class 3 SubRoot is signed with MD5 </li> + <li> likely this will clash with future plans of vendors to drop acceptance of MD5</li> + <li> Is this a concern? </li> + <li> to users who have these certs, a lot? </li> + <li> to audit, not much? </li> + </ul> + + +<h4><a name="p6.1.6" id="p6.1.6">6.1.6. Public key parameters generation and quality checking</a></h4> + +<p> +No stipulation. +</p> + +<h4><a name="p6.1.7" id="p6.1.7">6.1.7. Key Usage Purposes</a></h4> + + + <ul class="q"> + <li> This section probably needs to detail the key usage bits in the certs. </li> + </ul> + + +<p> +CAcert roots are general purpose. +Each root key may sign all of the general purposes +- client, server, code. +</p> + +<p> +The website controls the usage purposes that may be signed. +This is effected by means of the 'template' system. +</p> + + + +<!-- <a href="http://xkcd.com/257/"> <img align="right" src="http://imgs.xkcd.com/comics/code_talkers.png"> </a> --> + +<h3><a name="p6.2" id="p6.2">6.2. Private Key Protection and Cryptographic Module Engineering Controls</a></h3> + + + + +<h4><a name="p6.2.1" id="p6.2.1">6.2.1. Cryptographic module standards and controls</a></h4> + +<p> +SubRoot keys are stored on a single machine which acts +as a Cryptographic Module, or <i>signing server</i>. +It operates a single daemon for signing only. +The signing server has these security features: +</p> + +<ul><li> + It is connected only by one + dedicated (serial USB) link + to the online account server. + It is not connected to the network, + nor to any internal LAN (ethernet), + nor to a console switch. + </li><li> + The protocol over the dedicated link is a custom, simple + request protocol that only handles certificate signing requests. + </li><li> + The daemon is designed not to reveal the key. + </li><li> + The daemon incorporates a dead-man switch that monitors + the one webserver machine that requests access. + </li><li> + The daemon shuts down if a bad request is detected. + </li><li> + The daemon resides on an encrypted partition. + </li><li> + The signing server can only be (re)started with direct + systems administration access. + </li><li> + Physical Access to the signing server is under dual control. +</li></ul> + +<p> +See §5. and the Security Policy 9.3.1. +</p> + +<p> +(Hardware-based, commercial and standards-based cryptographic +modules have been tried and tested, and similar have been tested, +but have been found wanting, e.g., for short key lengths and +power restrictions.) +</p> + +<ol class="q"><li> + What document is responsible for architecture? CPS? SM? + <a href="http://www.cacert.org/help.php?id=7">website</a>? + SM punts it to CPS, so above stays. + </li><li> + There is no criteria on Architecture. + </li><li> + Old questions moved to SM. + </li><li> + See + <a href="http://www.cacert.org/help.php?id=7"> + CAcert Root key protection</a> which should be deprecated by this CPS. +</li></ol> + + +<h3><a name="p6.3" id="p6.3">6.3. Other aspects of key pair management</a></h3> +<h4><a name="p6.3.1" id="p6.3.1">6.3.1. Public key archival</a></h4> + +<p> +Subscriber certificates, including public keys, +are stored in the database backing the online system. +They are not made available in a public- or subscriber-accessible +archive, see §2. +They are backed-up by CAcert's normal backup procedure, +but their availability is a subscriber responsibility. +</p> + +<h4><a name="p6.3.2" id="p6.3.2">6.3.2. Certificate operational periods and key pair usage periods</a></h4> + +<p> +The operational period of a certificate and its key pair +depends on the Assurance status of the Member, +see <a href="#p1.4.5">§1.4.5</a> and Assurance Policy (<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>). +</p> + +<p> +The CAcert (top-level) Root certificate +has a 30 year expiry. +SubRoots have 10 years, and are to be rolled over more quickly. +The keysize of the root certificates are chosen +in order to ensure an optimum security to CAcert +Members based on current recommendations from the +<a href="http://www.keylength.com/">cryptographic community</a> +and maximum limits in generally available software. +At time of writing this is 4096 bits. +</p> + +<h3><a name="p6.4" id="p6.4">6.4. Activation data</a></h3> +<p> No stipulation. </p> + +<h3><a name="p6.5" id="p6.5">6.5. Computer security controls</a></h3> +<p> +Refer to Security Policy. +</p> + +<h3><a name="p6.6" id="p6.6">6.6. Life cycle technical controls</a></h3> +<p> +Refer to SM7 "Software Development". +</p> + +<h3><a name="p6.7" id="p6.7">6.7. Network security controls</a></h3> +<p> +Refer to SM3.1 "Logical Security - Network". +</p> + +<h3><a name="p6.8" id="p6.8">6.8. Time-stamping</a></h3> +<p> +Each server synchronises with NTP. +No "timestamping" service is currently offered. +</p> + + <ul class="q"> + <li> How does the signing server syncronise if only connected over serial?</li> + <li> How is timestamping done on records?</li> + </ul> + + + + +<!-- *************************************************************** --> +<h2><a name="p7" id="p7">7. CERTIFICATE, CRL, AND OCSP PROFILES</a></h2> + +<p> +CAcert defines all the meanings, semantics and profiles +applicable to issuance of certificates and signatures +in its policies, handbooks and other documents. +Meanings that may be written in external standards or documents +or found in wider conventions are not +incorporated, are not used by CAcert, and must not be implied +by the Member or the Non-related Person. +</p> + +<h3><a name="p7.1" id="p7.1">7.1. Certificate profile</a></h3> +<h4><a name="p7.1.1" id="p7.1.1">7.1.1. Version number(s)</a></h4> +<p class="q"> What versions of PGP are signed? v3? v4? </p> + +<p> +Issued X.509 certificates are of v3 form. +The form of the PGP signatures depends on several factors, therefore no stipulation. +</p> + +<h4><a name="p7.1.2" id="p7.1.2">7.1.2. Certificate extensions</a></h4> + +<p> +Client certificates include the following extensions:. +</p> +<ul><li> + basicConstraints=CA:FALSE (critical) + </li><li> + keyUsage=digitalSignature,keyEncipherment,cRLSign + </li><li> + </li><li> + extendedKeyUsage=emailProtection,clientAuth,serverAuth,msEFS,msSGC,nsSGC + </li><li> + authorityInfoAccess = OCSP;URI:http://ocsp.cacert.org + </li><li> + subjectAltName=(as per <a href="#p3.1.1">§3.1.1.</a>). +</li></ul> + <ul class="q"> + <li> what about Client Certificates Adobe Signing extensions ?</li> + <li> SubjectAltName should become critical if DN is removed http://tools.ietf.org/html/rfc5280#section-4.2.1.6</li> + </ul> + + +<p> +Server certificates include the following extensions: +</p> +<ul><li> + basicConstraints=CA:FALSE (critical) + </li><li> + keyUsage=digitalSignature,keyEncipherment + </li><li> + extendedKeyUsage=clientAuth,serverAuth,nsSGC,msSGC + </li><li> + authorityInfoAccess = OCSP;URI:http://ocsp.cacert.org + </li><li> + subjectAltName=(as per <a href="#p3.1.1">§3.1.1.</a>). +</li></ul> + +<p> +Code-Signing certificates include the following extensions: +</p> + +<ul><li> + basicConstraints=CA:FALSE (critical) + </li><li> + keyUsage=digitalSignature,keyEncipherment + </li><li> + extendedKeyUsage=emailProtection,clientAuth,codeSigning,msCodeInd,msCodeCom,msEFS,msSGC,nsSGC + </li><li> + authorityInfoAccess = OCSP;URI:http://ocsp.cacert.org +</li></ul> + <ul class="q"> + <li> what about subjectAltName for Code-signing</li> + </ul> + +<p> +OpenPGP key signatures currently do not include extensions. +In the future, a serial number might be included as an extension. +</p> + + +<h4><a name="p7.1.3" id="p7.1.3">7.1.3. Algorithm object identifiers</a></h4> +<p> +No stipulation. +</p> + +<h4><a name="p7.1.4" id="p7.1.4">7.1.4. Name forms</a></h4> +<p> +Refer to <a href="#p3.1.1">§3.1.1</a>. +</p> + +<h4><a name="p7.1.5" id="p7.1.5">7.1.5. Name constraints</a></h4> +<p> +Refer to <a href="#p3.1.1">§3.1.1</a>. +</p> + +<h4><a name="p7.1.6" id="p7.1.6">7.1.6. Certificate policy object identifier</a></h4> +<p> +The following OIDs are defined and should be incorporated +into certificates: +</p> + +<table border="1" cellpadding="5"> + <tr> + <td> + OID + </td> + <td> + Type/Meaning + </td> + <td> + Comment + </td> + </tr> + <tr> + <td> + 1.3.6.1.4.1.18506.4.4 + </td> + <td> + Certification Practice Statement + </td> + <td> + (this present document) + </td> + </tr> +</table> + +<p> +Versions are defined by additional numbers appended such as .1. +</p> + +<h4><a name="p7.1.7" id="p7.1.7">7.1.7. Usage of Policy Constraints extension</a></h4> +<p> +No stipulation. +</p> + +<h4><a name="p7.1.8" id="p7.1.8">7.1.8. Policy qualifiers syntax and semantics</a></h4> +<p> +No stipulation. +</p> + +<h4><a name="p7.1.9" id="p7.1.9">7.1.9. Processing semantics for the critical Certificate Policies extension</a></h4> +<p> +No stipulation. +</p> + + +<h3><a name="p7.2" id="p7.2">7.2. CRL profile</a></h3> +<h4><a name="p7.2.1" id="p7.2.1">7.2.1. Version number(s)</a></h4> +<p> +CRLs are created in X.509 v2 format. +</p> + +<h4><a name="p7.2.2" id="p7.2.2">7.2.2. CRL and CRL entry extensions</a></h4> + +<p> +No extensions. +</p> + +<h3><a name="p7.3" id="p7.3">7.3. OCSP profile</a></h3> +<h4><a name="p7.3.1" id="p7.3.1">7.3.1. Version number(s)</a></h4> +<p> +The OCSP responder operates in Version 1. +</p> +<h4><a name="p7.3.2" id="p7.3.2">7.3.2. OCSP extensions</a></h4> +<p> +No stipulation. +</p> + + + +<!-- *************************************************************** --> +<h2><a name="p8" id="p8">8. COMPLIANCE AUDIT AND OTHER ASSESSMENTS</a></h2> + +<p> +There are two major threads of assessment: +</p> + +<ul><li> + <b>Systems Audit</b>. + Analyses the CA for business and operations security. + This is conducted in two phases: documents for compliance + with criteria, and operations for compliance with documentation. + </li><li> + <b>Code Audit</b>. + Analyses the source code. + This is conducted at two levels: + Security concepts at the web applications level, + and source code security and bugs review. +</li></ul> + +<p> +See the Audit page at +<a href="http://wiki.cacert.org/wiki/Audit/"> +wiki.cacert.org/wiki/Audit/</a> +for more information. +</p> + +<h3><a name="p8.1" id="p8.1">8.1. Frequency or circumstances of assessment</a></h3> +<p> +The first audits started in late 2005, +and since then, assessments have been an +ongoing task. +Even when completed, they are expected to +be permanent features. +</p> + +<ul><li> + <b>Systems Audit</b>. + <span class="q"> + The first phase of the first audit is nearing completion. + The second phase starts in earnest when documentation is in + effect, at lease as DRAFT under PoP. + As the second phase is dependent on + this CPS and the Security Policy, they will + be in effect as DRAFT at least + before the first audit is completed. + Only prior and completed audits can be reported here. + </span> + </li><li> + <b>Code Audit</b>. + <span class="q"> + A complete review of entire source code has not yet been completed. + </span> +</li></ul> + +<h3><a name="p8.2" id="p8.2">8.2. Identity/qualifications of assessor</a></h3> + +<p> +<b>Systems Auditors.</b> +CAcert uses business systems auditors with broad experience +across the full range of business, information systems +and security fields. +In selecting a business systems auditor, CAcert looks for +experience that includes but is not limited to +cryptography, PKI, governance, auditing, +compliance and regulatory environments, +business strategy, software engineering, +networks, law (including multijurisdictional issues), +identity systems, fraud, IT management. +</p> + +<!-- <center><a href="http://xkcd.com/511/"> <img src="http://imgs.xkcd.com/comics/sleet.png"> </a> </center> --> + +<p> +<b>Code Auditors.</b> +See Security Policy, sections 7, 9.1. +</p> + +<h3><a name="p8.3" id="p8.3">8.3. Assessor's relationship to assessed entity</a></h3> + +<p> +Specific internal restrictions on audit personnel: +</p> + +<ul><li> + Must be Assured by CAcert Assurers + and must be background checked. + </li><li> + Must not have been active in any (other) role in CAcert. + Specifically, must not be an Assurer, a member of the association, + or in any other defined role or office. + </li><li> + Although the Auditor may be expected to undertake various + of the activities (Assurance, Training) + during the process of the audit, any results are frozen + until resignation as auditor is effected. + </li><li> + The Auditor is required to declare to CAcert all + potential conflicts of interest on an ongoing basis. +</li></ul> + +<p> +Specific external restrictions on audit personnel: +</p> + +<ul><li> + Should have a verifiable and lengthy history in + user privacy and user security. + </li><li> + Must not have worked for a competitive organisation. + </li><li> + Must not have worked for national security, intelligence, + LEO or similar agencies. +</li></ul> + +<p> +An Auditor may convene an audit team. +The same restrictions apply in general +to all members of the team, but may be varied. +Any deviations must be documented and approved +by the CAcert Inc. Board. +</p> + +<h3><a name="p8.4" id="p8.4">8.4. Topics covered by assessment</a></h3> + +<p> +Systems Audits are generally conducted to criteria. +CAcert requires that the criteria are open: +</p> + +<ul><li> + Published. + The criteria must be reviewable by all interested parties. + </li><li> + Understandable. + They should be understandable, in that they provide the + sufficient information in a readable form for interested + parties to follow the gist and importance. + (Arcane security criteria may stretch this requirement.) + </li><li> + Complete. + There must be sufficent background information that the + whole story is there. Especially, criteria that refer + to undocumented practices or conventions deliberately + kept secret must be avoided. + </li><li> + Applicable. The criteria should relate directly + and unambiguously to a need of the identified interested parties + (Members, Relying Parties, Subscribers, Assurers). +</li></ul> + +<p> +See +<a href="http://rossde.com/CA_review/">DRC</a> +for the current criteria. +If Auditor determines that a criteria fails to +follow the meet the above requirements, then the criteria +should be reworked to conform, or should be dropped +(both with explanatory notes). +</p> + +<h3><a name="p8.5" id="p8.5">8.5. Actions taken as a result of deficiency</a></h3> +<p> +See the current +<a href="http://wiki.cacert.org/wiki/Audit/Done">Audit Done list</a> +for work completed, and +<a href="http://wiki.cacert.org/wiki/AuditToDo">Audit Todo list</a> +for work in progress. +</p> + +<p> +Auditor may issue directives instructing changes, +where essential to audit success or other extreme +situations. +Directives should be grounded on criteria, +on established minimum or safe practices, +or clearly described logic. +Adequate discussion with Community +(e.g., CAcert Inc. Board and with Policy Group) +should precede any directive. +They should be presented to the same standard +as the criteria, above. +</p> + +<p> +The +<a href="http://wiki.cacert.org/wiki/AuditDirectives"> +wiki.cacert.org/wiki/AuditDirectives</a> +documents issued directives and actions. +</p> + +<h3><a name="p8.6" id="p8.6">8.6. Communication of results</a></h3> + +<p> +Current and past Audit information is available at +<a href="http://wiki.cacert.org/wiki/Audit/">wiki.CAcert.org/wiki/Audit/</a>. +CAcert runs an open disclosure policy and +Audit is no exception. +</p> + +<p> +This CPS and other documents are subject to +the process in Policy on Policy (<a href="http://www.cacert.org/policy/PolicyOnPolicy.php">COD1</a>). +Audits cover the overall processes more +than any one document, and documents may vary +even as Audit reports are delivered. +</p> + + + + +<!-- *************************************************************** --> +<h2><a name="p9" id="p9">9. OTHER BUSINESS AND LEGAL MATTERS</a></h2> +<h3><a name="p9.1" id="p9.1">9.1. Fees</a></h3> + + +<p> +The current fees structure is posted at +<a href="http://wiki.cacert.org/wiki/Price">wiki.cacert.org/wiki/Price</a>. +Changes to the fees structure will be announced +from time to time on the <a href="http://blog.cacert.org/">blog</a>. +CAcert retains the right to charge fees for services. +All fees are non-refundable. +</p> + + +<h3><a name="p9.2" id="p9.2">9.2. Financial responsibility</a></h3> + +<p> +Financial risks are dealt with primarily by +the Dispute Resolution Policy +(<a href="http://www.cacert.org/policy/DisputeResolutionPolicy.php">COD7</a>). +</p> + +<h4><a name="p9.2.1" id="p9.2.1">9.2.1. Insurance coverage</a></h4> + +<p> +No stipulation. +</p> + +<h4><a name="p9.2.2" id="p9.2.2">9.2.2. Other assets</a></h4> + +<p> +No stipulation. +</p> + +<h4><a name="p9.2.3" id="p9.2.3">9.2.3. Insurance or warranty coverage for end-entities</a></h4> + +<p> +No stipulation. +</p> + +<h3><a name="p9.3" id="p9.3">9.3. Confidentiality of business information</a></h3> + +<h4><a name="p9.3.1" id="p9.3.1">9.3.1. Scope of confidential information</a></h4> + +<p> +CAcert has a policy of transparency and openness. +The default posture is that information is public +to the extent possible, +unless covered by specific policy provisions +(for example, passwords) +or rulings by Arbitrator. +</p> + +<h3><a name="p9.4" id="p9.4">9.4. Privacy of personal information</a></h3> + +<!-- <center><a href="http://xkcd.com/46/"> <img src="http://imgs.xkcd.com/comics/secrets.jpg"> </a> </center> --> +<p> +Privacy is covered by the +CCA (COD9) +and the Privacy Policy +(<a href="http://www.cacert.org/index.php?id=10">COD5</a>). +</p> + +<h4><a name="p9.4.1" id="p9.4.1">9.4.1. Privacy plan</a></h4> +<p> No stipulation. </p> +<h4><a name="p9.4.2" id="p9.4.2">9.4.2. Information treated as private</a></h4> +<p> +Member's Date of Birth and "Lost Password" questions are treated as fully private. +</p> +<h4><a name="p9.4.3" id="p9.4.3">9.4.3. Information not deemed private</a></h4> +<p> +To the extent that information is put into an issued certificate, +that information is not deemed private, +as it is expected to be published by the Member as part of routine use of +the certificate. +Such information generally includes +Names, domains, email addresses, and certificate serial numbers. +</p> +<p> +Under Assurance Policy +(<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>) +the Member's status (as Assured, Assurer, etc) is available +to other Members. +</p> +<p> +Information placed in forums outside the online system +(wiki, blogs, policies, etc) is not deemed private, and is +generally deemed to be published as contributions by Members. +See +CCA1.3 (COD9). +</p> +<h4><a name="p9.4.4" id="p9.4.4">9.4.4. Responsibility to protect private information</a></h4> +<p> +CAcert is a privacy organisation +and takes privacy more seriously. +Any privacy issue may be referred to dispute resolution. +</p> +<h4><a name="p9.4.5" id="p9.4.5">9.4.5. Notice and consent to use private information</a></h4> +<p> +Members are permitted to rely on certificates of other Members. +As a direct consequence of the general right to rely, +Members may read and store the certificates +and/or the information within them, where duly presented in +a relationship, and to the extent necessary for +the agreed relationship. +</p> +<h4><a name="p9.4.6" id="p9.4.6">9.4.6. Disclosure pursuant to judicial or administrative process</a></h4> +<p> +Any disclosure pursuant to process from foreign courts +(or similar) +is controlled by the Arbitrator. +</p> +<h4><a name="p9.4.7" id="p9.4.7">9.4.7. Other information disclosure circumstances</a></h4> +<p> +None. +</p> + +<h3><a name="p9.5" id="p9.5">9.5. Intellectual property rights</a></h3> + +<p> +CAcert is committed to the philosophy of +an open and free Internet, +broadly as encapsulated by open and free source. +However, due to the strict control provisions +imposed by the audit criteria (CCS), +and the general environment and role of CAs, +and the commitment to security of Members, +some deviations are necessary. +</p> + +<!-- <center><a href="http://xkcd.com/225/"> <img src="http://imgs.xkcd.com/comics/open_source.png"> </a> </center> --> + +<h4><a name="p9.5.1" id="p9.5.1">9.5.1. Ownership and Licence</a></h4> + +<p> +Assets that fall under the control of CCS +must be transferred to CAcert. +See PoP 6.2 +(<a href="http://www.cacert.org/policy/PolicyOnPolicy.php#6.2">COD1</a>), +CCA 1.3 +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php#1.3">COD9</a>). +That is, CAcert is free to use, modify, +distribute, and otherwise conduct the business +of the CA as CAcert sees fit with the asset. +</p> + +<h4><a name="p9.5.2" id="p9.5.2">9.5.2. Brand</a></h4> +<p> +The brand of CAcert +is made up of its logo, name, trademark, service marks, etc. +Use of the brand is strictly limited by the Board, +and permission is required. +See <a href="http://wiki.cacert.org/wiki/TopMinutes-20070917"> +m20070917.5</a>. +</p> + +<h4><a name="p9.5.3" id="p9.5.3">9.5.3. Documents</a></h4> + +<p> +CAcert owns or requires full control over its documents, +especially those covered by CCS. +See PoP 6.2 +(<a href="http://www.cacert.org/policy/PolicyOnPolicy.php#6.2">COD1</a>). +Contributors transfer the rights, +see CCA 1.3 +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php#1.3">COD9</a>). +Contributors warrant that they have the right to transfer. +</p> + +<p> +Documents are generally licensed under free and open licence. +See +<a href="http://wiki.cacert.org/wiki/PolicyDrafts/DocumentLicence"> +wiki.cacert.org/wiki/PolicyDrafts/DocumentLicence</a>. +Except where explicitly negotiated, +CAcert extends back to contributors a +non-exclusive, unrestricted perpetual +licence, permitting them to to re-use +their original work freely. +See PoP 6.4 +(<a href="http://www.cacert.org/policy/PolicyOnPolicy.php#6.4">COD1</a>), +CCA 1.3 +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php#1.3">COD9</a>). +</p> + +<h4><a name="p9.5.4" id="p9.5.4">9.5.4. Code</a></h4> + +<p> +CAcert owns its code or requires full control over code in use +by means of a free and open licence. +See CCS. +</p> + +<p class="q"> +See the (new, wip) +<a href="http://svn.cacert.cl/Documents/SourceCodeManifesto.html"> +SourceCodeManifesto</a>. +Maybe this can replace these two paras? +</p> + +<p> +CAcert licenses its code under GPL. +CAcert extends back to contributors a +non-exclusive, unrestricted perpetual +licence, permitting them to to re-use +their original work freely. +</p> + +<h4><a name="p9.5.5" id="p9.5.5">9.5.5. Certificates and Roots</a></h4> + +<p> +CAcert asserts its intellectual property rights over certificates +issued to Members and over roots. +See CCA 4.4 +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php#4.4">COD9</a>), +CCS. +The certificates may only be used by Members under +<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php#4.4">COD9</a>, +and, +by others under the licences offered, +such as +Non-Related Persons - Disclaimer and Licence +(<a href="http://www.cacert.org/policy/NRPDisclaimerAndLicence.php">COD4</a>). +</p> + +<h3><a name="p9.6" id="p9.6">9.6. Representations and warranties</a></h3> + + +<p> +<b>Members.</b> +All Members of the Community agree to the +CAcert Community Agreement +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>), +which is the primary document for +representations and warranties. +Members include Subscribers, Relying Parties, +Registration Agents and the CA itself. +</p> + +<p> +<b>RAs.</b> +Registration Agents are obliged additionally by Assurance Policy, +especially 3.1, 4.1 +(<a href="http://www.cacert.org/policy/AssurancePolicy.php">COD13</a>). +</p> + +<p> +<b>CA.</b> +The CA is obliged additionally by the CCS. +</p> + +<p> +<b>Third Party Vendors.</b> +Distributors of the roots are offered the +<span class="q">wip</span> +3rd-Party Vendors - Disclaimer and Licence +(3PV-DaL => CODx) +and are offered +<span class="q">wip</span> +the same deal as Members to the extent that they agree +to be Members in the Community. +<span class="q">wip</span> +</p> + +<h3><a name="p9.7" id="p9.7">9.7. Disclaimers of Warranties</a></h3> + +<p> +Persons who have not accepted the above Agreements are offered the +Non-Related Persons - Disclaimer and Licence +(<a href="http://www.cacert.org/policy/NRPDisclaimerAndLicence.php">COD4</a>). +Any representations and +warranties are strictly limited to nominal usage. +In essence, NRPs may USE but must not RELY. +</p> + +<p> +In today's aggressive fraud environment, +and within the context of CAcert as a community CA, +all parties should understand that CAcert +and its Subscribers, Assurers and other roles +provide service on a Best Efforts basis. +See <a href="#p1.4">§1.4</a>. +CAcert seeks to provide an adequate minimum +level of quality in operations for its Members +without undue risks to NRPs. +See +<a href="http://svn.cacert.org/CAcert/principles.html">Principles</a>. +</p> + +<p> +CAcert on behalf of the Community and itself +makes no Warranty nor Guarantee nor promise +that the service or certificates are adequate +for the needs and circumstances. +</p> + +<h3><a name="p9.8" id="p9.8">9.8. Limitations of liability</a></h3> + +<h3><a name="p9.8.1" id="p9.8.1">9.8.1 Non-Related Persons </a></h3> + +<p> +CAcert on behalf of related parties +(RAs, Subscribers, etc) and itself +disclaims all liability to NRPs +in their usage of CA's certificates. +See <a href="http://www.cacert.org/policy/NRPDisclaimerAndLicence.php">COD4</a>. +</p> + +<h3><a name="p9.8.2" id="p9.8.2">9.8.2 Liabilities Between Members</a></h3> + +<p> +Liabilities between Members +are dealt with by internal dispute resolution, +which rules on liability and any limits. +See +<a href="#9.13">§9.13</a>. +</p> + + +<h3><a name="p9.9" id="p9.9">9.9. Indemnities</a></h3> + +<p> +No stipulation. +</p> + +<h3><a name="p9.10" id="p9.10">9.10. Term and termination</a></h3> +<h4><a name="p9.10.1" id="p9.10.1">9.10.1. Term</a></h4> + +<p> +No stipulation. +</p> + +<h4><a name="p9.10.2" id="p9.10.2">9.10.2. Termination</a></h4> + +<p> +Members file a dispute to terminate their agreement. +See <a href="#p9.13">§9.13</a> and CCA 3.3 +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php#3.3">COD9</a>). +</p> + +<p> +Documents are varied (including terminated) under <a href="http://www.cacert.org/policy/PolicyOnPolicy.php">COD1</a>. +</p> + +<p> +For termination of the CA, see <a href="#p5.8.1">§5.8.1</a>. +</p> + +<h4><a name="p9.10.3" id="p9.10.3">9.10.3. Effect of termination and survival</a></h4> + +<p> +No stipulation. +</p> + +<h3><a name="p9.11" id="p9.11">9.11. Individual notices and communications with participants</a></h3> + +<p> +All participants are obliged to keep their listed +primary email addresses in good working order. +See CCA 3.5 +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php#3.5">COD9</a>). +</p> + + +<h3><a name="p9.12" id="p9.12">9.12. Amendments</a></h3> + +<p> +Amendments to the CPS are controlled by <a href="http://www.cacert.org/policy/PolicyOnPolicy.php">COD1</a>. +Any changes in Member's Agreements are notified under CCA 3.4 +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php#3.4">COD9</a>). +</p> + +<h3><a name="p9.13" id="p9.13">9.13. Dispute resolution provisions</a></h3> + +<p> +CAcert provides a forum and facility for any Member +or other related party to file a dispute. +</p> + +<ul><li> + The CAcert + Dispute Resolution Policy + (<a href="http://www.cacert.org/policy/DisputeResolutionPolicy.php">COD7</a>) + includes rules for dispute resolution. + </li><li> + Filing is done via email to + < support AT cacert DOT org > +</li></ul> + +<p> +Members agree to file all disputes through CAcert's +forum for dispute resolution. +The rules include specific provisions to assist +non-Members, etc, to file dispute in this forum. +</p> + + +<h3><a name="p9.14" id="p9.14">9.14. Governing law</a></h3> + +<p> +The governing law is that of New South Wales, Australia. +Disputes are generally heard before the Arbitrator +under this law. +Exceptionally, the Arbitrator may elect to apply the +law of the parties and events, where in common, +but this is unlikely because it may create results +that are at odds with the Community. +</p> + +<h3><a name="p9.15" id="p9.15">9.15. Compliance with Applicable Law</a></h3> + +<h3><a name="p9.15.1" id="p9.15.1">9.15.1 Digital Signature Law</a></h3> +<p> +The Commonwealth and States of Australia have passed +various Electronic Transactions Acts that speak to +digital signatures. In summary, these acts follow +the "technology neutral" model and permit but do not +regulate the use of digital signatures. +</p> + +<p> +This especially means that the signatures created by +certificates issued by CAcert are not in and of themselves +legally binding human signatures, at least according to +the laws of Australia. +See <a href="#p1.4.3">§1.4.3</a>. +However, certificates may play a part in larger signing +applications. See <a href="#p1.4.1">§1.4.1</a> for "digital signing" certificates. +These applications may impose significant +obligations, risks and liabilities on the parties. +</p> + +<h3><a name="p9.15.2" id="p9.15.2">9.15.2 Privacy Law</a></h3> + +<p> +See the Privacy Policy +(<a href="http://www.cacert.org/index.php?id=10">COD5</a>). +</p> + +<h3><a name="p9.15.3" id="p9.15.3">9.15.3 Legal Process from External Forums</a></h3> + +<p> +CAcert will provide information about +its Members only under legal subpoena or +equivalent process +from a court of competent jurisdiction. +Any requests made by legal subpoena are +treated as under the Dispute Resolution Policy +See +<a href="#p9.13">§9.13</a> +and +<a href="http://www.cacert.org/policy/DisputeResolutionPolicy.php">COD7</a>. +That is, all requests are treated as disputes, +as only a duly empanelled Arbitrator has the +authorisation and authority to rule on the +such requests. +<p> + +<p> +A subpoena should +include sufficient legal basis to support +an Arbitrator in ruling that information +be released pursuant to the filing, +including the names of claimants in any civil case +and an indication as to whether the claimants are +Members or not +(and are therefore subject to Dispute Resolution Policy). +</p> + +<h3><a name="p9.16" id="p9.16">9.16. Miscellaneous provisions</a></h3> +<h4><a name="p9.16.1" id="p9.16.1">9.16.1. Entire agreement</a></h4> + +<p> +All Members of the Community agree to the +CAcert Community Agreement +(<a href="http://www.cacert.org/policy/CAcertCommunityAgreement.php">COD9</a>). +This agreement also incorporates other key +documents, being this CPS, DRP and PP. +See CCA 4.2. +</p> + +<p> +The Configuration-Control Specification +is the set of policies that rule over the +Community, of which the above documents are part. +See COD2. +Documents that have reached full POLICY status +are located at +<a href="http://www.cacert.org/policy/"> +www.cacert.org/policy/</a>. +Although detailed practices may +be found in other places on the website +and on the wiki, the CCS documents that +have reached DRAFT and POLICY status are +the ruling documents. +</p> + +<h4><a name="p9.16.2" id="p9.16.2">9.16.2. Assignment</a></h4> + +<p> +The rights within CCA may not be ordinarily assigned. +</p> + +<h4><a name="p9.16.3" id="p9.16.3">9.16.3. Severability</a></h4> + +<p> +No stipulation. +</p> + +<h4><a name="p9.16.4" id="p9.16.4">9.16.4. Enforcement (attorneys' fees and waiver of rights)</a></h4> + +<p> +The Arbitrator will specify fees and remedies, if any. +</p> + +<h4><a name="p9.16.5" id="p9.16.5">9.16.5. Force Majeure</a></h4> + +<p> +No stipulation. +</p> + +<h2>---This is the end of the Policy---</h2> + + +</body> +</html> diff --git a/cacert/www/policy/cacert-draft.png b/cacert/www/policy/cacert-draft.png Binary files differnew file mode 100644 index 0000000..9d33eb1 --- /dev/null +++ b/cacert/www/policy/cacert-draft.png diff --git a/cacert/www/utf8_to_ascii/ChangeLog b/cacert/www/utf8_to_ascii/ChangeLog new file mode 100644 index 0000000..1d3f356 --- /dev/null +++ b/cacert/www/utf8_to_ascii/ChangeLog @@ -0,0 +1,34 @@ +2006-10-25 17:12 harryf + + * README: More detail / notes + +2006-10-25 15:34 harryf + + * tests/index.php: Add simple unit test + +2006-10-25 15:34 harryf + + * utf8_to_ascii.php: Move from global to local static variable + +2006-09-04 23:34 harryf + + * builddb.pl: Fix example script name + +2006-09-04 23:34 harryf + + * utf8_to_ascii.php: Performance optimization / re-write - elimate + string splitting with preg_match_all - most of the time was going + here - re-implement ord calculation - reduce #calls to PHP ord() + fn. Improve ab average response time for the example from ~9s to + ~0.41s + +2006-03-04 00:43 harryf + + * LICENSE, README, builddb.pl, utf8_to_ascii.php, tests/index.php, + tests/data/utf8.txt: Initial import + +2006-03-04 00:43 harryf + + * LICENSE, README, builddb.pl, utf8_to_ascii.php, tests/index.php, + tests/data/utf8.txt: Initial revision + diff --git a/cacert/www/utf8_to_ascii/LICENSE b/cacert/www/utf8_to_ascii/LICENSE new file mode 100644 index 0000000..886394c --- /dev/null +++ b/cacert/www/utf8_to_ascii/LICENSE @@ -0,0 +1,128 @@ + The "Artistic License" + + Preamble + +The intent of this document is to state the conditions under which a +Package may be copied, such that the Copyright Holder maintains some +semblance of artistic control over the development of the package, +while giving the users of the package the right to use and distribute +the Package in a more-or-less customary fashion, plus the right to make +reasonable modifications. + +Definitions: + + "Package" refers to the collection of files distributed by the + Copyright Holder, and derivatives of that collection of files + created through textual modification. + + "Standard Version" refers to such a Package if it has not been + modified, or has been modified in accordance with the wishes + of the Copyright Holder as specified below. + + "Copyright Holder" is whoever is named in the copyright or + copyrights for the package. + + "You" is you, if you're thinking about copying or distributing + this Package. + + "Reasonable copying fee" is whatever you can justify on the + basis of media cost, duplication charges, time of people involved, + and so on. (You will not be required to justify it to the + Copyright Holder, but only to the computing community at large + as a market that must bear the fee.) + + "Freely Available" means that no fee is charged for the item + itself, though there may be fees involved in handling the item. + It also means that recipients of the item may redistribute it + under the same conditions they received it. + +1. You may make and give away verbatim copies of the source form of the +Standard Version of this Package without restriction, provided that you +duplicate all of the original copyright notices and associated disclaimers. + +2. You may apply bug fixes, portability fixes and other modifications +derived from the Public Domain or from the Copyright Holder. A Package +modified in such a way shall still be considered the Standard Version. + +3. You may otherwise modify your copy of this Package in any way, provided +that you insert a prominent notice in each changed file stating how and +when you changed that file, and provided that you do at least ONE of the +following: + + a) place your modifications in the Public Domain or otherwise make them + Freely Available, such as by posting said modifications to Usenet or + an equivalent medium, or placing the modifications on a major archive + site such as uunet.uu.net, or by allowing the Copyright Holder to include + your modifications in the Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict + with standard executables, which must also be provided, and provide + a separate manual page for each non-standard executable that clearly + documents how it differs from the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +4. You may distribute the programs of this Package in object code or +executable form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, + together with instructions (in the manual page or equivalent) on where + to get the Standard Version. + + b) accompany the distribution with the machine-readable source of + the Package with your modifications. + + c) give non-standard executables non-standard names, and clearly + document the differences in manual pages (or equivalent), together + with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +5. You may charge a reasonable copying fee for any distribution of this +Package. You may charge any fee you choose for support of this +Package. You may not charge a fee for this Package itself. However, +you may distribute this Package in aggregate with other (possibly +commercial) programs as part of a larger (possibly commercial) software +distribution provided that you do not advertise this Package as a +product of your own. You may embed this Package's interpreter within +an executable of yours (by linking); this shall be construed as a mere +form of aggregation, provided that the complete Standard Version of the +interpreter is so embedded. + +6. The scripts and library files supplied as input to or produced as +output from the programs of this Package do not automatically fall +under the copyright of this Package, but belong to whoever generated +them, and may be sold commercially, and may be aggregated with this +Package. If such scripts or library files are aggregated with this +Package via the so-called "undump" or "unexec" methods of producing a +binary executable image, then distribution of such an image shall +neither be construed as a distribution of this Package nor shall it +fall under the restrictions of Paragraphs 3 and 4, provided that you do +not represent such an executable image as a Standard Version of this +Package. + +7. C subroutines (or comparably compiled subroutines in other +languages) supplied by you and linked into this Package in order to +emulate subroutines and variables of the language defined by this +Package shall not be considered part of this Package, but are the +equivalent of input as in Paragraph 6, provided these subroutines do +not change the language in any way that would cause it to fail the +regression tests for the language. + +8. Aggregation of this Package with a commercial distribution is always +permitted provided that the use of this Package is embedded; that is, +when no overt attempt is made to make this Package's interfaces visible +to the end user of the commercial distribution. Such use shall not be +construed as a distribution of this Package. + +9. The name of the Copyright Holder may not be used to endorse or promote +products derived from this software without specific prior written permission. + +10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + The End + diff --git a/cacert/www/utf8_to_ascii/README b/cacert/www/utf8_to_ascii/README new file mode 100644 index 0000000..df4f751 --- /dev/null +++ b/cacert/www/utf8_to_ascii/README @@ -0,0 +1,40 @@ +UTF8 TO ASCII + +US-ASCII transliterations of Unicode text + +Ported Sean M. Burke's Text::Unidecode Perl module + +http://search.cpan.org/~sburke/Text-Unidecode-0.04/ +http://interglacial.com/~sburke/ + +Use is simple; + +<?php +require_once '/path/to/utf8_to_ascii/utf8_to_ascii.php'; +$utf8 = file_get_contents('/tmp/someutf8.txt'); +$ascii = utf8_to_ascii($utf8); +?> + +Some notes; + +- Make sure you provide is well-formed UTF-8! +http://phputf8.sourceforge.net/#UTF_8_Validation_and_Cleaning + +- For European languages, it should replace Unicode character +with corresponding ascii characters and produce a readable +result. For other languages, the results will be less +meaningful - it's a "dumb" character for character replacement +True trasliteration is a little more complex than this; +See: http://en.wikipedia.org/wiki/Transliteration + +- For any characters for which there's no replacement +character available, a (default) '?' will be inserted. The second +argument can be used to define an alternative replacement char + +- Don't panic about all the files in the db subdirectory - they +are not all loaded at once - in fact they are only loaded if they +are needed to convert a given character (i.e. which files get +loaded depends on the input) + +For a little more see; +http://www.sitepoint.com/blogs/2006/03/03/us-ascii-transliterations-of-unicode-text/ diff --git a/cacert/www/utf8_to_ascii/db/x00.php b/cacert/www/utf8_to_ascii/db/x00.php Binary files differnew file mode 100644 index 0000000..b7285f9 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x00.php diff --git a/cacert/www/utf8_to_ascii/db/x01.php b/cacert/www/utf8_to_ascii/db/x01.php new file mode 100644 index 0000000..8d03503 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x01.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x01] = array( +'A','a','A','a','A','a','C','c','C','c','C','c','C','c','D','d','D','d','E','e','E','e','E','e','E','e','E','e','G','g','G','g','G','g','G','g','H','h','H','h','I','i','I','i','I','i','I','i','I','i','IJ','','J','j','K','k','k','L','l','L','l','L','l','L','l','L','l','N','n','N','n','N','n',"'n",'ng','NG','O','o','O','o','O','o','OE','oe','R','r','R','r','R','r','S','s','S','s','S','s','S','s','T','t','T','t','T','t','U','u','U','u','U','u','U','u','U','u','U','u','W','w','Y','y','Y','Z','z','Z','z','Z','z','s','b','B','B','b','6','6','O','C','c','D','D','D','d','d','3','@','E','F','f','G','G','hv','I','I','K','k','l','l','W','N','n','O','O','o','OI','oi','P','p','YR','2','2','SH','sh','t','T','t','T','U','u','Y','V','Y','y','Z','z','ZH','ZH','zh','zh','2','5','5','ts','w','|','||','|=','!','DZ','Dz','dz','LJ','Lj','lj','NJ','Nj','nj','A','a','I','i','O','o','U','u','U','u','U','u','U','u','U','u','@','A','a','A','a','AE','ae','G','g','G','g','K','k','O','o','O','o','ZH','zh','j','DZ','D','dz','G','g','HV','W','N','n','A','a','AE','ae','O','o', +); diff --git a/cacert/www/utf8_to_ascii/db/x02.php b/cacert/www/utf8_to_ascii/db/x02.php new file mode 100644 index 0000000..449445b --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x02.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x02] = array( +'A','a','A','a','E','e','E','e','I','i','I','i','O','o','O','o','R','r','R','r','U','u','U','u','S','s','T','t','Y','y','H','h','[?]','[?]','OU','ou','Z','z','A','a','E','e','O','o','O','o','O','o','O','o','Y','y','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','a','a','a','b','o','c','d','d','e','@','@','e','e','e','e','j','g','g','g','g','u','Y','h','h','i','i','I','l','l','l','lZ','W','W','m','n','n','n','o','OE','O','F','R','R','R','R','r','r','R','R','R','s','S','j','S','S','t','t','U','U','v','^','W','Y','Y','z','z','Z','Z','?','?','?','C','@','B','E','G','H','j','k','L','q','?','?','dz','dZ','dz','ts','tS','tC','fN','ls','lz','WW',']]','[?]','[?]','k','h','j','r','r','r','r','w','y',"'",'"','`',"'",'`','`',"'",'?','?','<','>','^','V','^','V',"'",'-','/','\\',',','_','\\','/',':','.','`',"'",'^','V','+','-','V','.','@',',','~','"','R','X','G','l','s','x','?','','','','','','','','V','=','"','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x03.php b/cacert/www/utf8_to_ascii/db/x03.php new file mode 100644 index 0000000..c269b0c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x03.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x03] = array( +'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]',"'",',','[?]','[?]','[?]','[?]','','[?]','[?]','[?]','?','[?]','[?]','[?]','[?]','[?]','','','A',';','E','E','I','[?]','O','[?]','U','O','I','A','B','G','D','E','Z','E','Th','I','K','L','M','N','Ks','O','P','R','[?]','S','T','U','Ph','Kh','Ps','O','I','U','a','e','e','i','u','a','b','g','d','e','z','e','th','i','k','l','m','n','x','o','p','r','s','s','t','u','ph','kh','ps','o','i','u','o','u','o','[?]','b','th','U','U','U','ph','p','&','[?]','[?]','St','st','W','w','Q','q','Sp','sp','Sh','sh','F','f','Kh','kh','H','h','G','g','CH','ch','Ti','ti','k','r','c','j','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x04.php b/cacert/www/utf8_to_ascii/db/x04.php new file mode 100644 index 0000000..4533d0d --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x04.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x04] = array( +'Ie','Io','Dj','Gj','Ie','Dz','I','Yi','J','Lj','Nj','Tsh','Kj','I','U','Dzh','A','B','V','G','D','Ie','Zh','Z','I','I','K','L','M','N','O','P','R','S','T','U','F','Kh','Ts','Ch','Sh','Shch','','Y',"'",'E','Iu','Ia','a','b','v','gh','d','ie','zh','z','i','i','k','l','m','n','o','p','r','s','t','u','f','kh','ts','ch','sh','shch','','y',"'",'e','iu','ia','ie','io','dj','gj','ie','dz','i','yi','j','lj','nj','tsh','kj','i','u','dzh','O','o','E','e','Ie','ie','E','e','Ie','ie','O','o','Io','io','Ks','ks','Ps','ps','F','f','Y','y','Y','y','u','u','O','o','O','o','Ot','ot','Q','q','*1000*','','','','','[?]','*100.000*','*1.000.000*','[?]','[?]','"','"',"R'","r'","G'","g'","G'","g'","G'","g'","Zh'","zh'","Z'","z'","K'","k'","K'","k'","K'","k'","K'","k'","N'","n'",'Ng','ng',"P'","p'",'Kh','kh',"S'","s'","T'","t'",'U','u',"U'","u'","Kh'","kh'",'Tts','tts',"Ch'","ch'","Ch'","ch'",'H','h','Ch','ch',"Ch'","ch'",'`','Zh','zh',"K'","k'",'[?]','[?]',"N'","n'",'[?]','[?]','Ch','ch','[?]','[?]','[?]','a','a','A','a','Ae','ae','Ie','ie','@','@','@','@','Zh','zh','Z','z','Dz','dz','I','i','I','i','O','o','O','o','O','o','E','e','U','u','U','u','U','u','Ch','ch','[?]','[?]','Y','y','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x05.php b/cacert/www/utf8_to_ascii/db/x05.php new file mode 100644 index 0000000..4a19341 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x05.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x05] = array( +'[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','A','B','G','D','E','Z','E','E','T`','Zh','I','L','Kh','Ts','K','H','Dz','Gh','Ch','M','Y','N','Sh','O','Ch`','P','J','Rh','S','V','T','R','Ts`','W','P`','K`','O','F','[?]','[?]','<',"'",'/','!',',','?','.','[?]','a','b','g','d','e','z','e','e','t`','zh','i','l','kh','ts','k','h','dz','gh','ch','m','y','n','sh','o','ch`','p','j','rh','s','v','t','r','ts`','w','p`','k`','o','f','ew','[?]','.','-','[?]','[?]','[?]','[?]','[?]','[?]','','','','','','','','','','','','','','','','','','[?]','','','','','','','','','','','','','','@','e','a','o','i','e','e','a','a','o','[?]','u',"'",'','','','','','',':','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','','b','g','d','h','v','z','kh','t','y','k','k','l','m','m','n','n','s','`','p','p','ts','ts','q','r','sh','t','[?]','[?]','[?]','[?]','[?]','V','oy','i',"'",'"','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x06.php b/cacert/www/utf8_to_ascii/db/x06.php new file mode 100644 index 0000000..f73a603 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x06.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x06] = array( +'[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]',',','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]',';','[?]','[?]','[?]','?','[?]','','a',"'","w'",'',"y'",'','b','@','t','th','j','H','kh','d','dh','r','z','s','sh','S','D','T','Z','`','G','[?]','[?]','[?]','[?]','[?]','','f','q','k','l','m','n','h','w','~','y','an','un','in','a','u','i','W','','',"'","'",'[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','%','.',',','*','[?]','[?]','',"'","'","'",'',"'","'w","'u","'y",'tt','tth','b','t','T','p','th','bh',"'h",'H','ny','dy','H','ch','cch','dd','D','D','Dt','dh','ddh','d','D','D','rr','R','R','R','R','R','R','j','R','S','S','S','S','S','T','GH','F','F','F','v','f','ph','Q','Q','kh','k','K','K','ng','K','g','G','N','G','G','G','L','L','L','L','N','N','N','N','N','h','Ch','hy','h','H','@','W','oe','oe','u','yu','yu','W','v','y','Y','Y','W','','','y',"y'",'.','ae','','','','','','','','@','#','','','','','','','','','','','^','','','','','[?]','[?]','0','1','2','3','4','5','6','7','8','9','Sh','D','Gh','&','+m', +); diff --git a/cacert/www/utf8_to_ascii/db/x07.php b/cacert/www/utf8_to_ascii/db/x07.php new file mode 100644 index 0000000..332cc67 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x07.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x07] = array( +'//','/',',','!','!','-',',',',',';','?','~','{','}','*','[?]','',"'",'','b','g','g','d','d','h','w','z','H','t','t','y','yh','k','l','m','n','s','s','`','p','p','S','q','r','sh','t','[?]','[?]','[?]','a','a','a','A','A','A','e','e','e','E','i','i','u','u','u','o','','`',"'",'','','X','Q','@','@','|','+','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','h','sh','n','r','b','L','k',"'",'v','m','f','dh','th','l','g','ny','s','d','z','t','y','p','j','ch','tt','hh','kh','th','z','sh','s','d','t','z','`','gh','q','w','a','aa','i','ee','u','oo','e','ey','o','oa','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x09.php b/cacert/www/utf8_to_ascii/db/x09.php new file mode 100644 index 0000000..8083d84 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x09.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x09] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x0a.php b/cacert/www/utf8_to_ascii/db/x0a.php new file mode 100644 index 0000000..8c7897c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x0a.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x0a] = array( +'[?]','N','N','H','[?]','a','aa','i','ii','u','uu','R','L','eN','e','e','ai','oN','o','o','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','nnn','p','ph','b','bh','m','y','r','rr','l','l','lll','v','sh','ss','s','h','[?]','[?]',"'","'",'aa','i','ii','u','uu','R','RR','eN','e','e','ai','oN','o','o','au','','[?]','[?]','AUM',"'","'",'`',"'",'[?]','[?]','[?]','q','khh','ghh','z','dddh','rh','f','yy','RR','LL','L','LL',' / ',' // ','0','1','2','3','4','5','6','7','8','9','.','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','N','N','H','[?]','a','aa','i','ii','u','uu','R','RR','[?]','[?]','e','ai','[?]','[?]','o','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','[?]','p','ph','b','bh','m','y','r','[?]','l','[?]','[?]','[?]','sh','ss','s','h','[?]','[?]',"'",'[?]','aa','i','ii','u','uu','R','RR','[?]','[?]','e','ai','[?]','[?]','o','au','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','+','[?]','[?]','[?]','[?]','rr','rh','[?]','yy','RR','LL','L','LL','[?]','[?]','0','1','2','3','4','5','6','7','8','9',"r'",'r`','Rs','Rs','1/','2/','3/','4/',' 1 - 1/','/16','','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x0b.php b/cacert/www/utf8_to_ascii/db/x0b.php new file mode 100644 index 0000000..79dc403 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x0b.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x0b] = array( +'[?]','[?]','N','[?]','[?]','a','aa','i','ii','u','uu','[?]','[?]','[?]','[?]','ee','ai','[?]','[?]','oo','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','[?]','p','ph','b','bb','m','y','r','[?]','l','ll','[?]','v','sh','[?]','s','h','[?]','[?]',"'",'[?]','aa','i','ii','u','uu','[?]','[?]','[?]','[?]','ee','ai','[?]','[?]','oo','au','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','khh','ghh','z','rr','[?]','f','[?]','[?]','[?]','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','N','H','','','G.E.O.','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','N','N','H','[?]','a','aa','i','ii','u','uu','R','[?]','eN','[?]','e','ai','oN','[?]','o','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','[?]','p','ph','b','bh','m','ya','r','[?]','l','ll','[?]','v','sh','ss','s','h','[?]','[?]',"'","'",'aa','i','ii','u','uu','R','RR','eN','[?]','e','ai','oN','[?]','o','au','','[?]','[?]','AUM','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','RR','[?]','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x0c.php b/cacert/www/utf8_to_ascii/db/x0c.php new file mode 100644 index 0000000..ef27851 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x0c.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x0c] = array( +'[?]','N','N','H','[?]','a','aa','i','ii','u','uu','R','L','[?]','[?]','e','ai','[?]','[?]','o','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','[?]','p','ph','b','bh','m','y','r','[?]','l','ll','[?]','','sh','ss','s','h','[?]','[?]',"'","'",'aa','i','ii','u','uu','R','[?]','[?]','[?]','e','ai','[?]','[?]','o','au','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','+','+','[?]','[?]','[?]','[?]','rr','rh','[?]','yy','RR','LL','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','N','H','[?]','a','aa','i','ii','u','uu','[?]','[?]','[?]','e','ee','ai','[?]','o','oo','au','k','[?]','[?]','[?]','ng','c','[?]','j','[?]','ny','tt','[?]','[?]','[?]','nn','t','[?]','[?]','[?]','n','nnn','p','[?]','[?]','[?]','m','y','r','rr','l','ll','lll','v','[?]','ss','s','h','[?]','[?]','[?]','[?]','aa','i','ii','u','uu','[?]','[?]','[?]','e','ee','ai','[?]','o','oo','au','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','+','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','+10+','+100+','+1000+','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x0d.php b/cacert/www/utf8_to_ascii/db/x0d.php new file mode 100644 index 0000000..e27f3e7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x0d.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x0d] = array( +'[?]','N','N','H','[?]','a','aa','i','ii','u','uu','R','L','[?]','e','ee','ai','[?]','o','oo','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','[?]','p','ph','b','bh','m','y','r','rr','l','ll','[?]','v','sh','ss','s','h','[?]','[?]','[?]','[?]','aa','i','ii','u','uu','R','RR','[?]','e','ee','ai','[?]','o','oo','au','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','+','+','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','RR','LL','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','N','H','[?]','a','aa','i','ii','u','uu','R','L','[?]','e','ee','ai','[?]','o','oo','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','[?]','p','ph','b','bh','m','y','r','rr','l','ll','[?]','v','sh','ss','s','h','[?]','[?]','[?]','[?]','aa','i','ii','u','uu','R','RR','[?]','e','ee','ai','[?]','o','oo','au','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','+','+','[?]','[?]','[?]','[?]','[?]','[?]','[?]','lll','[?]','RR','LL','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x0e.php b/cacert/www/utf8_to_ascii/db/x0e.php new file mode 100644 index 0000000..1266474 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x0e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x0e] = array( +'[?]','[?]','N','H','[?]','a','aa','i','ii','u','uu','R','L','[?]','e','ee','ai','[?]','o','oo','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','[?]','p','ph','b','bh','m','y','r','rr','l','ll','lll','v','sh','ss','s','h','[?]','[?]','[?]','[?]','aa','i','ii','u','uu','R','[?]','[?]','e','ee','ai','','o','oo','au','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','+','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','RR','LL','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','N','H','[?]','a','aa','ae','aae','i','ii','u','uu','R','RR','L','LL','e','ee','ai','o','oo','au','[?]','[?]','[?]','k','kh','g','gh','ng','nng','c','ch','j','jh','ny','jny','nyj','tt','tth','dd','ddh','nn','nndd','t','th','d','dh','n','[?]','nd','p','ph','b','bh','m','mb','y','r','[?]','l','[?]','[?]','v','sh','ss','s','h','ll','f','[?]','[?]','[?]','','[?]','[?]','[?]','[?]','aa','ae','aae','i','ii','u','[?]','uu','[?]','R','e','ee','ai','o','oo','au','L','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','RR','LL',' . ','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x0f.php b/cacert/www/utf8_to_ascii/db/x0f.php new file mode 100644 index 0000000..59e13ee --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x0f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x0f] = array( +'[?]','k','kh','kh','kh','kh','kh','ng','cch','ch','ch','ch','ch','y','d','t','th','th','th','n','d','t','th','th','th','n','b','p','ph','f','ph','f','ph','m','y','r','R','l','L','w','s','s','s','h','l','`','h','~','a','a','aa','am','i','ii','ue','uue','u','uu',"'",'[?]','[?]','[?]','[?]','Bh.','e','ae','o','ai','ai','ao','+','','','','','','','M','',' * ','0','1','2','3','4','5','6','7','8','9',' // ',' /// ','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','k','kh','[?]','kh','[?]','[?]','ng','ch','[?]','s','[?]','[?]','ny','[?]','[?]','[?]','[?]','[?]','[?]','d','h','th','th','[?]','n','b','p','ph','f','ph','f','[?]','m','y','r','[?]','l','[?]','w','[?]','[?]','s','h','[?]','`','','~','a','','aa','am','i','ii','y','yy','u','uu','[?]','o','l','ny','[?]','[?]','e','ei','o','ay','ai','[?]','+','[?]','','','','','','M','[?]','[?]','0','1','2','3','4','5','6','7','8','9','[?]','[?]','hn','hm','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x10.php b/cacert/www/utf8_to_ascii/db/x10.php new file mode 100644 index 0000000..0f68ddf --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x10.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x10] = array( +'AUM','','','','','','','',' // ',' * ','','-',' / ',' / ',' // ',' -/ ',' +/ ',' X/ ',' /XX/ ',' /X/ ',', ','','','','','','','','','','','','0','1','2','3','4','5','6','7','8','9','.5','1.5','2.5','3.5','4.5','5.5','6.5','7.5','8.5','-.5','+','*','^','_','','~','[?]',']','[[',']]','','','k','kh','g','gh','ng','c','ch','j','[?]','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','p','ph','b','bh','m','ts','tsh','dz','dzh','w','zh','z',"'",'y','r','l','sh','ssh','s','h','a','kss','r','[?]','[?]','[?]','[?]','[?]','[?]','aa','i','ii','u','uu','R','RR','L','LL','e','ee','o','oo','M','H','i','ii','','','','','','','','','','','[?]','[?]','[?]','[?]','k','kh','g','gh','ng','c','ch','j','[?]','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','p','ph','b','bh','m','ts','tsh','dz','dzh','w','zh','z',"'",'y','r','l','sh','ss','s','h','a','kss','w','y','r','[?]','X',' :X: ',' /O/ ',' /o/ ',' \\o\ ',' (O) ','','','','','','','','','','[?]','[?]','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x11.php b/cacert/www/utf8_to_ascii/db/x11.php new file mode 100644 index 0000000..aef66bf --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x11.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x11] = array( +'k','kh','g','gh','ng','c','ch','j','jh','ny','nny','tt','tth','dd','ddh','nn','tt','th','d','dh','n','p','ph','b','bh','m','y','r','l','w','s','h','ll','a','[?]','i','ii','u','uu','e','[?]','o','au','[?]','aa','i','ii','u','uu','e','ai','[?]','[?]','[?]','N',"'",':','','[?]','[?]','[?]','[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9',' / ',' // ','n*','r*','l*','e*','sh','ss','R','RR','L','LL','R','RR','L','LL','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','A','B','G','D','E','V','Z','T`','I','K','L','M','N','O','P','Zh','R','S','T','U','P`','K`',"G'",'Q','Sh','Ch`','C`',"Z'",'C','Ch','X','J','H','E','Y','W','Xh','OE','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','a','b','g','d','e','v','z','t`','i','k','l','m','n','o','p','zh','r','s','t','u','p`','k`',"g'",'q','sh','ch`','c`',"z'",'c','ch','x','j','h','e','y','w','xh','oe','f','[?]','[?]','[?]','[?]',' // ','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x12.php b/cacert/www/utf8_to_ascii/db/x12.php new file mode 100644 index 0000000..a1f7460 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x12.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x12] = array( +'g','gg','n','d','dd','r','m','b','bb','s','ss','','j','jj','c','k','t','p','h','ng','nn','nd','nb','dg','rn','rr','rh','rN','mb','mN','bg','bn','','bs','bsg','bst','bsb','bss','bsj','bj','bc','bt','bp','bN','bbN','sg','sn','sd','sr','sm','sb','sbg','sss','s','sj','sc','sk','st','sp','sh','','','','','Z','g','d','m','b','s','Z','','j','c','t','p','N','j','','','','','ck','ch','','','pb','pN','hh','Q','[?]','[?]','[?]','[?]','[?]','','','a','ae','ya','yae','eo','e','yeo','ye','o','wa','wae','oe','yo','u','weo','we','wi','yu','eu','yi','i','a-o','a-u','ya-o','ya-yo','eo-o','eo-u','eo-eu','yeo-o','yeo-u','o-eo','o-e','o-ye','o-o','o-u','yo-ya','yo-yae','yo-yeo','yo-o','yo-i','u-a','u-ae','u-eo-eu','u-ye','u-u','yu-a','yu-eo','yu-e','yu-yeo','yu-ye','yu-u','yu-i','eu-u','eu-eu','yi-u','i-a','i-ya','i-o','i-u','i-eu','i-U','U','U-eo','U-u','U-i','UU','[?]','[?]','[?]','[?]','[?]','g','gg','gs','n','nj','nh','d','l','lg','lm','lb','ls','lt','lp','lh','m','b','bs','s','ss','ng','j','c','k','t','p','h','gl','gsg','ng','nd','ns','nZ','nt','dg','tl','lgs','ln','ld','lth','ll','lmg','lms','lbs','lbh','rNp','lss','lZ','lk','lQ','mg','ml','mb','ms','mss','mZ','mc','mh','mN','bl','bp','ph','pN','sg','sd','sl','sb','Z','g','ss','','kh','N','Ns','NZ','pb','pN','hn','hl','hm','hb','Q','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x13.php b/cacert/www/utf8_to_ascii/db/x13.php new file mode 100644 index 0000000..d4b14a2 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x13.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x13] = array( +'ha','hu','hi','haa','hee','he','ho','[?]','la','lu','li','laa','lee','le','lo','lwa','hha','hhu','hhi','hhaa','hhee','hhe','hho','hhwa','ma','mu','mi','maa','mee','me','mo','mwa','sza','szu','szi','szaa','szee','sze','szo','szwa','ra','ru','ri','raa','ree','re','ro','rwa','sa','su','si','saa','see','se','so','swa','sha','shu','shi','shaa','shee','she','sho','shwa','qa','qu','qi','qaa','qee','qe','qo','[?]','qwa','[?]','qwi','qwaa','qwee','qwe','[?]','[?]','qha','qhu','qhi','qhaa','qhee','qhe','qho','[?]','qhwa','[?]','qhwi','qhwaa','qhwee','qhwe','[?]','[?]','ba','bu','bi','baa','bee','be','bo','bwa','va','vu','vi','vaa','vee','ve','vo','vwa','ta','tu','ti','taa','tee','te','to','twa','ca','cu','ci','caa','cee','ce','co','cwa','xa','xu','xi','xaa','xee','xe','xo','[?]','xwa','[?]','xwi','xwaa','xwee','xwe','[?]','[?]','na','nu','ni','naa','nee','ne','no','nwa','nya','nyu','nyi','nyaa','nyee','nye','nyo','nywa',"'a","'u",'[?]',"'aa","'ee","'e","'o","'wa",'ka','ku','ki','kaa','kee','ke','ko','[?]','kwa','[?]','kwi','kwaa','kwee','kwe','[?]','[?]','kxa','kxu','kxi','kxaa','kxee','kxe','kxo','[?]','kxwa','[?]','kxwi','kxwaa','kxwee','kxwe','[?]','[?]','wa','wu','wi','waa','wee','we','wo','[?]','`a','`u','`i','`aa','`ee','`e','`o','[?]','za','zu','zi','zaa','zee','ze','zo','zwa','zha','zhu','zhi','zhaa','zhee','zhe','zho','zhwa','ya','yu','yi','yaa','yee','ye','yo','[?]','da','du','di','daa','dee','de','do','dwa','dda','ddu','ddi','ddaa','ddee','dde','ddo','ddwa', +); diff --git a/cacert/www/utf8_to_ascii/db/x14.php b/cacert/www/utf8_to_ascii/db/x14.php new file mode 100644 index 0000000..f19c737 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x14.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x14] = array( +'ja','ju','ji','jaa','jee','je','jo','jwa','ga','gu','gi','gaa','gee','ge','go','[?]','gwa','[?]','gwi','gwaa','gwee','gwe','[?]','[?]','gga','ggu','ggi','ggaa','ggee','gge','ggo','[?]','tha','thu','thi','thaa','thee','the','tho','thwa','cha','chu','chi','chaa','chee','che','cho','chwa','pha','phu','phi','phaa','phee','phe','pho','phwa','tsa','tsu','tsi','tsaa','tsee','tse','tso','tswa','tza','tzu','tzi','tzaa','tzee','tze','tzo','[?]','fa','fu','fi','faa','fee','fe','fo','fwa','pa','pu','pi','paa','pee','pe','po','pwa','rya','mya','fya','[?]','[?]','[?]','[?]','[?]','[?]',' ','.',',',';',':',':: ','?','//','1','2','3','4','5','6','7','8','9','10+','20+','30+','40+','50+','60+','70+','80+','90+','100+','10,000+','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','a','e','i','o','u','v','ga','ka','ge','gi','go','gu','gv','ha','he','hi','ho','hu','hv','la','le','li','lo','lu','lv','ma','me','mi','mo','mu','na','hna','nah','ne','ni','no','nu','nv','qua','que','qui','quo','quu','quv','sa','s','se','si','so','su','sv','da','ta','de','te','di','ti','do','du','dv','dla','tla','tle','tli','tlo','tlu','tlv','tsa','tse','tsi','tso','tsu','tsv','wa','we','wi','wo','wu','wv','ya','ye','yi','yo','yu','yv','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x15.php b/cacert/www/utf8_to_ascii/db/x15.php new file mode 100644 index 0000000..bfe644f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x15.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x15] = array( +'[?]','e','aai','i','ii','o','oo','oo','ee','i','a','aa','we','we','wi','wi','wii','wii','wo','wo','woo','woo','woo','wa','wa','waa','waa','waa','ai','w',"'",'t','k','sh','s','n','w','n','[?]','w','c','?','l','en','in','on','an','pe','paai','pi','pii','po','poo','poo','hee','hi','pa','paa','pwe','pwe','pwi','pwi','pwii','pwii','pwo','pwo','pwoo','pwoo','pwa','pwa','pwaa','pwaa','pwaa','p','p','h','te','taai','ti','tii','to','too','too','dee','di','ta','taa','twe','twe','twi','twi','twii','twii','two','two','twoo','twoo','twa','twa','twaa','twaa','twaa','t','tte','tti','tto','tta','ke','kaai','ki','kii','ko','koo','koo','ka','kaa','kwe','kwe','kwi','kwi','kwii','kwii','kwo','kwo','kwoo','kwoo','kwa','kwa','kwaa','kwaa','kwaa','k','kw','keh','kih','koh','kah','ce','caai','ci','cii','co','coo','coo','ca','caa','cwe','cwe','cwi','cwi','cwii','cwii','cwo','cwo','cwoo','cwoo','cwa','cwa','cwaa','cwaa','cwaa','c','th','me','maai','mi','mii','mo','moo','moo','ma','maa','mwe','mwe','mwi','mwi','mwii','mwii','mwo','mwo','mwoo','mwoo','mwa','mwa','mwaa','mwaa','mwaa','m','m','mh','m','m','ne','naai','ni','nii','no','noo','noo','na','naa','nwe','nwe','nwa','nwa','nwaa','nwaa','nwaa','n','ng','nh','le','laai','li','lii','lo','loo','loo','la','laa','lwe','lwe','lwi','lwi','lwii','lwii','lwo','lwo','lwoo','lwoo','lwa','lwa','lwaa','lwaa','l','l','l','se','saai','si','sii','so','soo','soo','sa','saa','swe','swe','swi','swi','swii','swii','swo','swo','swoo','swoo', +); diff --git a/cacert/www/utf8_to_ascii/db/x16.php b/cacert/www/utf8_to_ascii/db/x16.php new file mode 100644 index 0000000..b49f3a0 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x16.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x16] = array( +'swa','swa','swaa','swaa','swaa','s','s','sw','s','sk','skw','sW','spwa','stwa','skwa','scwa','she','shi','shii','sho','shoo','sha','shaa','shwe','shwe','shwi','shwi','shwii','shwii','shwo','shwo','shwoo','shwoo','shwa','shwa','shwaa','shwaa','sh','ye','yaai','yi','yii','yo','yoo','yoo','ya','yaa','ywe','ywe','ywi','ywi','ywii','ywii','ywo','ywo','ywoo','ywoo','ywa','ywa','ywaa','ywaa','ywaa','y','y','y','yi','re','re','le','raai','ri','rii','ro','roo','lo','ra','raa','la','rwaa','rwaa','r','r','r','fe','faai','fi','fii','fo','foo','fa','faa','fwaa','fwaa','f','the','the','thi','thi','thii','thii','tho','thoo','tha','thaa','thwaa','thwaa','th','tthe','tthi','ttho','ttha','tth','tye','tyi','tyo','tya','he','hi','hii','ho','hoo','ha','haa','h','h','hk','qaai','qi','qii','qo','qoo','qa','qaa','q','tlhe','tlhi','tlho','tlha','re','ri','ro','ra','ngaai','ngi','ngii','ngo','ngoo','nga','ngaa','ng','nng','she','shi','sho','sha','the','thi','tho','tha','th','lhi','lhii','lho','lhoo','lha','lhaa','lh','the','thi','thii','tho','thoo','tha','thaa','th','b','e','i','o','a','we','wi','wo','wa','ne','ni','no','na','ke','ki','ko','ka','he','hi','ho','ha','ghu','gho','ghe','ghee','ghi','gha','ru','ro','re','ree','ri','ra','wu','wo','we','wee','wi','wa','hwu','hwo','hwe','hwee','hwi','hwa','thu','tho','the','thee','thi','tha','ttu','tto','tte','ttee','tti','tta','pu','po','pe','pee','pi','pa','p','gu','go','ge','gee','gi','ga','khu','kho','khe','khee','khi','kha','kku','kko','kke','kkee','kki', +); diff --git a/cacert/www/utf8_to_ascii/db/x17.php b/cacert/www/utf8_to_ascii/db/x17.php new file mode 100644 index 0000000..ab17dbb --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x17.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x17] = array( +'kka','kk','nu','no','ne','nee','ni','na','mu','mo','me','mee','mi','ma','yu','yo','ye','yee','yi','ya','ju','ju','jo','je','jee','ji','ji','ja','jju','jjo','jje','jjee','jji','jja','lu','lo','le','lee','li','la','dlu','dlo','dle','dlee','dli','dla','lhu','lho','lhe','lhee','lhi','lha','tlhu','tlho','tlhe','tlhee','tlhi','tlha','tlu','tlo','tle','tlee','tli','tla','zu','zo','ze','zee','zi','za','z','z','dzu','dzo','dze','dzee','dzi','dza','su','so','se','see','si','sa','shu','sho','she','shee','shi','sha','sh','tsu','tso','tse','tsee','tsi','tsa','chu','cho','che','chee','chi','cha','ttsu','ttso','ttse','ttsee','ttsi','ttsa','X','.','qai','ngai','nngi','nngii','nngo','nngoo','nnga','nngaa','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]',' ','b','l','f','s','n','h','d','t','c','q','m','g','ng','z','r','a','o','u','e','i','ch','th','ph','p','x','p','<','>','[?]','[?]','[?]','f','v','u','yr','y','w','th','th','a','o','ac','ae','o','o','o','oe','on','r','k','c','k','g','ng','g','g','w','h','h','h','h','n','n','n','i','e','j','g','ae','a','eo','p','z','s','s','s','c','z','t','t','d','b','b','p','p','e','m','m','m','l','l','ng','ng','d','o','ear','ior','qu','qu','qu','s','yr','yr','yr','q','x','.',':','+','17','18','19','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x18.php b/cacert/www/utf8_to_ascii/db/x18.php new file mode 100644 index 0000000..94cb1b7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x18.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x18] = array( +'[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','k','kh','g','gh','ng','c','ch','j','jh','ny','t','tth','d','ddh','nn','t','th','d','dh','n','p','ph','b','bh','m','y','r','l','v','sh','ss','s','h','l','q','a','aa','i','ii','u','uk','uu','uuv','ry','ryy','ly','lyy','e','ai','oo','oo','au','a','aa','aa','i','ii','y','yy','u','uu','ua','oe','ya','ie','e','ae','ai','oo','au','M','H','a`','','','','r','','!','','','','','','.',' // ',':','+','++',' * ',' /// ','KR',"'",'[?]','[?]','[?]','0','1','2','3','4','5','6','7','8','9','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x1e.php b/cacert/www/utf8_to_ascii/db/x1e.php new file mode 100644 index 0000000..2901940 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x1e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x1e] = array( +' @ ',' ... ',', ','. ',': ',' // ','','-',', ','. ','','','','','','[?]','0','1','2','3','4','5','6','7','8','9','[?]','[?]','[?]','[?]','[?]','[?]','a','e','i','o','u','O','U','ee','n','ng','b','p','q','g','m','l','s','sh','t','d','ch','j','y','r','w','f','k','kha','ts','z','h','zr','lh','zh','ch','-','e','i','o','u','O','U','ng','b','p','q','g','m','t','d','ch','j','ts','y','w','k','g','h','jy','ny','dz','e','i','iy','U','u','ng','k','g','h','p','sh','t','d','j','f','g','h','ts','z','r','ch','zh','i','k','r','f','zh','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','H','X','W','M',' 3 ',' 333 ','a','i','k','ng','c','tt','tth','dd','nn','t','d','p','ph','ss','zh','z','a','t','zh','gh','ng','c','jh','tta','ddh','t','dh','ss','cy','zh','z','u','y','bh',"'",'[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x1f.php b/cacert/www/utf8_to_ascii/db/x1f.php new file mode 100644 index 0000000..ade22c3 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x1f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x1f] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x20.php b/cacert/www/utf8_to_ascii/db/x20.php new file mode 100644 index 0000000..0bd5829 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x20.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x20] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x21.php b/cacert/www/utf8_to_ascii/db/x21.php new file mode 100644 index 0000000..eebe2ac --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x21.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x21] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x22.php b/cacert/www/utf8_to_ascii/db/x22.php new file mode 100644 index 0000000..c95256f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x22.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x22] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x23.php b/cacert/www/utf8_to_ascii/db/x23.php new file mode 100644 index 0000000..ebda70a --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x23.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x23] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x24.php b/cacert/www/utf8_to_ascii/db/x24.php new file mode 100644 index 0000000..10949a6 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x24.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x24] = array( +'A','a','B','b','B','b','B','b','C','c','D','d','D','d','D','d','D','d','D','d','E','e','E','e','E','e','E','e','E','e','F','f','G','g','H','h','H','h','H','h','H','h','H','h','I','i','I','i','K','k','K','k','K','k','L','l','L','l','L','l','L','l','M','m','M','m','M','m','N','n','N','n','N','n','N','n','O','o','O','o','O','o','O','o','P','p','P','p','R','r','R','r','R','r','R','r','S','s','S','s','S','s','S','s','S','s','T','t','T','t','T','t','T','t','U','u','U','u','U','u','U','u','U','u','V','v','V','v','W','w','W','w','W','w','W','w','W','w','X','x','X','x','Y','y','Z','z','Z','z','Z','z','h','t','w','y','a','S','[?]','[?]','[?]','[?]','A','a','A','a','A','a','A','a','A','a','A','a','A','a','A','a','A','a','A','a','A','a','A','a','E','e','E','e','E','e','E','e','E','e','E','e','E','e','E','e','I','i','I','i','O','o','O','o','O','o','O','o','O','o','O','o','O','o','O','o','O','o','O','o','O','o','O','o','U','u','U','u','U','u','U','u','U','u','U','u','U','u','Y','y','Y','y','Y','y','Y','y','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x25.php b/cacert/www/utf8_to_ascii/db/x25.php new file mode 100644 index 0000000..9eadc4a --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x25.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x25] = array( +'a','a','a','a','a','a','a','a','A','A','A','A','A','A','A','A','e','e','e','e','e','e','[?]','[?]','E','E','E','E','E','E','[?]','[?]','e','e','e','e','e','e','e','e','E','E','E','E','E','E','E','E','i','i','i','i','i','i','i','i','I','I','I','I','I','I','I','I','o','o','o','o','o','o','[?]','[?]','O','O','O','O','O','O','[?]','[?]','u','u','u','u','u','u','u','u','[?]','U','[?]','U','[?]','U','[?]','U','o','o','o','o','o','o','o','o','O','O','O','O','O','O','O','O','a','a','e','e','e','e','i','i','o','o','u','u','o','o','[?]','[?]','a','a','a','a','a','a','a','a','A','A','A','A','A','A','A','A','e','e','e','e','e','e','e','e','E','E','E','E','E','E','E','E','o','o','o','o','o','o','o','o','O','O','O','O','O','O','O','O','a','a','a','a','a','[?]','a','a','A','A','A','A','A',"'",'i',"'",'~','"~','e','e','e','[?]','e','e','E','E','E','E','E',"'`","''","'~",'i','i','i','i','[?]','[?]','i','i','I','I','I','I','[?]',"`'","`'",'`~','u','u','u','u','R','R','u','u','U','U','U','U','R','"`',"0x22'",'`','[?]','[?]','o','o','o','[?]','o','o','O','O','O','O','O',"'",'`', +); diff --git a/cacert/www/utf8_to_ascii/db/x26.php b/cacert/www/utf8_to_ascii/db/x26.php new file mode 100644 index 0000000..fe714a7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x26.php @@ -0,0 +1,7 @@ +<?php +$UTF8_TO_ASCII[0x26] = array( +' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','','','','','-','-','-','-','--','--','||','_',"'","'",',',"'",'"','"',',,','"','+','++','*','*>','.','..','...','.',' +',' + +','','','','','',' ','%0','%00',"'","''","'''",'`','``','```','^','<','>','*','!!','!?','-','_','-','^','***','--','/','-[',']-','[?]','?!','!?','7','PP','(]','[)','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','','','','','','','0','','','','4','5','6','7','8','9','+','-','=','(',')','n','0','1','2','3','4','5','6','7','8','9','+','-','=','(',')','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','ECU','CL','Cr','FF','L','mil','N','Pts','Rs','W','NS','D','EU','K','T','Dr','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x27.php b/cacert/www/utf8_to_ascii/db/x27.php new file mode 100644 index 0000000..6b1ae42 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x27.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x27] = array( +'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]',' 1/3 ',' 2/3 ',' 1/5 ',' 2/5 ',' 3/5 ',' 4/5 ',' 1/6 ',' 5/6 ',' 1/8 ',' 3/8 ',' 5/8 ',' 7/8 ',' 1/','I','II','III','IV','V','VI','VII','VIII','IX','X','XI','XII','L','C','D','M','i','ii','iii','iv','v','vi','vii','viii','ix','x','xi','xii','l','c','d','m','(D','D)','((|))',')','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','-','|','-','|','-','|','\\','/','\\','/','-','-','~','~','-','|','-','|','-','-','-','|','-','|','|','-','-','-','-','-','-','|','|','|','|','|','|','|','^','V','\\','=','V','^','-','-','|','|','-','-','|','|','=','|','=','=','|','=','|','=','=','=','=','=','=','|','=','|','=','|','\\','/','\\','/','=','=','~','~','|','|','-','|','-','|','-','-','-','|','-','|','|','|','|','|','|','|','-','\\','\\','|','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x28.php b/cacert/www/utf8_to_ascii/db/x28.php new file mode 100644 index 0000000..b786737 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x28.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x28] = array( +'[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x2e.php b/cacert/www/utf8_to_ascii/db/x2e.php new file mode 100644 index 0000000..f4fc8b1 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x2e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x2e] = array( +'[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x2f.php b/cacert/www/utf8_to_ascii/db/x2f.php new file mode 100644 index 0000000..8cadb42 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x2f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x2f] = array( +'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x30.php b/cacert/www/utf8_to_ascii/db/x30.php new file mode 100644 index 0000000..f0a0d7f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x30.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x30] = array( +'-','-','|','|','-','-','|','|','-','-','|','|','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','-','-','|','|','-','|','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','/','\\','X','-','|','-','|','-','|','-','|','-','|','-','|','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','-','|','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','#','^','^','^','^','>','>','>','>','>','>','V','V','V','V','<','<','<','<','<','<','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','*','#','#','#','#','#','^','^','^','O','#','#','#','#','#','#','#','#','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x31.php b/cacert/www/utf8_to_ascii/db/x31.php new file mode 100644 index 0000000..e390265 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x31.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x31] = array( +'','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x32.php b/cacert/www/utf8_to_ascii/db/x32.php new file mode 100644 index 0000000..e18fd11 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x32.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x32] = array( +'[?]','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','[?]','[?]','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','[?]','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x33.php b/cacert/www/utf8_to_ascii/db/x33.php new file mode 100644 index 0000000..2dbb743 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x33.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x33] = array( +' ','a','1','b',"'",'k','2','l','@','c','i','f','/','m','s','p','"','e','3','h','9','o','6','r','^','d','j','g','>','n','t','q',',','*','5','<','-','u','8','v','.','%','[','$','+','x','!','&',';',':','4','\\','0','z','7','(','_','?','w',']','#','y',')','=','[d7]','[d17]','[d27]','[d127]','[d37]','[d137]','[d237]','[d1237]','[d47]','[d147]','[d247]','[d1247]','[d347]','[d1347]','[d2347]','[d12347]','[d57]','[d157]','[d257]','[d1257]','[d357]','[d1357]','[d2357]','[d12357]','[d457]','[d1457]','[d2457]','[d12457]','[d3457]','[d13457]','[d23457]','[d123457]','[d67]','[d167]','[d267]','[d1267]','[d367]','[d1367]','[d2367]','[d12367]','[d467]','[d1467]','[d2467]','[d12467]','[d3467]','[d13467]','[d23467]','[d123467]','[d567]','[d1567]','[d2567]','[d12567]','[d3567]','[d13567]','[d23567]','[d123567]','[d4567]','[d14567]','[d24567]','[d124567]','[d34567]','[d134567]','[d234567]','[d1234567]','[d8]','[d18]','[d28]','[d128]','[d38]','[d138]','[d238]','[d1238]','[d48]','[d148]','[d248]','[d1248]','[d348]','[d1348]','[d2348]','[d12348]','[d58]','[d158]','[d258]','[d1258]','[d358]','[d1358]','[d2358]','[d12358]','[d458]','[d1458]','[d2458]','[d12458]','[d3458]','[d13458]','[d23458]','[d123458]','[d68]','[d168]','[d268]','[d1268]','[d368]','[d1368]','[d2368]','[d12368]','[d468]','[d1468]','[d2468]','[d12468]','[d3468]','[d13468]','[d23468]','[d123468]','[d568]','[d1568]','[d2568]','[d12568]','[d3568]','[d13568]','[d23568]','[d123568]','[d4568]','[d14568]','[d24568]','[d124568]','[d34568]','[d134568]','[d234568]','[d1234568]','[d78]','[d178]','[d278]','[d1278]','[d378]','[d1378]','[d2378]','[d12378]','[d478]','[d1478]','[d2478]','[d12478]','[d3478]','[d13478]','[d23478]','[d123478]','[d578]','[d1578]','[d2578]','[d12578]','[d3578]','[d13578]','[d23578]','[d123578]','[d4578]','[d14578]','[d24578]','[d124578]','[d34578]','[d134578]','[d234578]','[d1234578]','[d678]','[d1678]','[d2678]','[d12678]','[d3678]','[d13678]','[d23678]','[d123678]','[d4678]','[d14678]','[d24678]','[d124678]','[d34678]','[d134678]','[d234678]','[d1234678]','[d5678]','[d15678]','[d25678]','[d125678]','[d35678]','[d135678]','[d235678]','[d1235678]','[d45678]','[d145678]','[d245678]','[d1245678]','[d345678]','[d1345678]','[d2345678]','[d12345678]', +); diff --git a/cacert/www/utf8_to_ascii/db/x4d.php b/cacert/www/utf8_to_ascii/db/x4d.php new file mode 100644 index 0000000..b53a1c9 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x4d.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x4d] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x4e.php b/cacert/www/utf8_to_ascii/db/x4e.php new file mode 100644 index 0000000..1d001af --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x4e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x4e] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x4f.php b/cacert/www/utf8_to_ascii/db/x4f.php new file mode 100644 index 0000000..d364b33 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x4f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x4f] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x50.php b/cacert/www/utf8_to_ascii/db/x50.php new file mode 100644 index 0000000..b258fb9 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x50.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x50] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x51.php b/cacert/www/utf8_to_ascii/db/x51.php new file mode 100644 index 0000000..ce59c06 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x51.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x51] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x52.php b/cacert/www/utf8_to_ascii/db/x52.php new file mode 100644 index 0000000..5fe2552 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x52.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x52] = array( +'[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?]','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x53.php b/cacert/www/utf8_to_ascii/db/x53.php new file mode 100644 index 0000000..b649fb8 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x53.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x53] = array( +'[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x54.php b/cacert/www/utf8_to_ascii/db/x54.php new file mode 100644 index 0000000..f4c66c7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x54.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x54] = array( +' ',', ','. ','"','[JIS]','"','/','0','<','> ','<<','>> ','[','] ','{','} ','[(',')] ','@','X ','[','] ','[[',']] ','((',')) ','[[',']] ','~ ','``',"''",',,','@','1','2','3','4','5','6','7','8','9','','','','','','','~','+','+','+','+','','@',' // ','+10+','+20+','+30+','[?]','[?]','[?]','','','[?]','a','a','i','i','u','u','e','e','o','o','ka','ga','ki','gi','ku','gu','ke','ge','ko','go','sa','za','si','zi','su','zu','se','ze','so','zo','ta','da','ti','di','tu','tu','du','te','de','to','do','na','ni','nu','ne','no','ha','ba','pa','hi','bi','pi','hu','bu','pu','he','be','pe','ho','bo','po','ma','mi','mu','me','mo','ya','ya','yu','yu','yo','yo','ra','ri','ru','re','ro','wa','wa','wi','we','wo','n','vu','[?]','[?]','[?]','[?]','','','','','"','"','[?]','[?]','a','a','i','i','u','u','e','e','o','o','ka','ga','ki','gi','ku','gu','ke','ge','ko','go','sa','za','si','zi','su','zu','se','ze','so','zo','ta','da','ti','di','tu','tu','du','te','de','to','do','na','ni','nu','ne','no','ha','ba','pa','hi','bi','pi','hu','bu','pu','he','be','pe','ho','bo','po','ma','mi','mu','me','mo','ya','ya','yu','yu','yo','yo','ra','ri','ru','re','ro','wa','wa','wi','we','wo','n','vu','ka','ke','va','vi','ve','vo','','','"','"', +); diff --git a/cacert/www/utf8_to_ascii/db/x55.php b/cacert/www/utf8_to_ascii/db/x55.php new file mode 100644 index 0000000..4156655 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x55.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x55] = array( +'[?]','[?]','[?]','[?]','[?]','B','P','M','F','D','T','N','L','G','K','H','J','Q','X','ZH','CH','SH','R','Z','C','S','A','O','E','EH','AI','EI','AU','OU','AN','EN','ANG','ENG','ER','I','U','IU','V','NG','GN','[?]','[?]','[?]','[?]','g','gg','gs','n','nj','nh','d','dd','r','lg','lm','lb','ls','lt','lp','rh','m','b','bb','bs','s','ss','','j','jj','c','k','t','p','h','a','ae','ya','yae','eo','e','yeo','ye','o','wa','wae','oe','yo','u','weo','we','wi','yu','eu','yi','i','','nn','nd','ns','nZ','lgs','ld','lbs','lZ','lQ','mb','ms','mZ','mN','bg','','bsg','bst','bj','bt','bN','bbN','sg','sn','sd','sb','sj','Z','','N','Ns','NZ','pN','hh','Q','yo-ya','yo-yae','yo-i','yu-yeo','yu-ye','yu-i','U','U-i','[?]','','','','','','','','','','','','','','','','','BU','ZI','JI','GU','EE','ENN','OO','ONN','IR','ANN','INN','UNN','IM','NGG','AINN','AUNN','AM','OM','ONG','INNN','P','T','K','H','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x56.php b/cacert/www/utf8_to_ascii/db/x56.php new file mode 100644 index 0000000..7faceaf --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x56.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x56] = array( +'(g)','(n)','(d)','(r)','(m)','(b)','(s)','()','(j)','(c)','(k)','(t)','(p)','(h)','(ga)','(na)','(da)','(ra)','(ma)','(ba)','(sa)','(a)','(ja)','(ca)','(ka)','(ta)','(pa)','(ha)','(ju)','[?]','[?]','[?]','(1) ','(2) ','(3) ','(4) ','(5) ','(6) ','(7) ','(8) ','(9) ','(10) ','(Yue) ','(Huo) ','(Shui) ','(Mu) ','(Jin) ','(Tu) ','(Ri) ','(Zhu) ','(You) ','(She) ','(Ming) ','(Te) ','(Cai) ','(Zhu) ','(Lao) ','(Dai) ','(Hu) ','(Xue) ','(Jian) ','(Qi) ','(Zi) ','(Xie) ','(Ji) ','(Xiu) ','<<','>>','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','(g)','(n)','(d)','(r)','(m)','(b)','(s)','()','(j)','(c)','(k)','(t)','(p)','(h)','(ga)','(na)','(da)','(ra)','(ma)','(ba)','(sa)','(a)','(ja)','(ca)','(ka)','(ta)','(pa)','(ha)','[?]','[?]','[?]','KIS ','(1) ','(2) ','(3) ','(4) ','(5) ','(6) ','(7) ','(8) ','(9) ','(10) ','(Yue) ','(Huo) ','(Shui) ','(Mu) ','(Jin) ','(Tu) ','(Ri) ','(Zhu) ','(You) ','(She) ','(Ming) ','(Te) ','(Cai) ','(Zhu) ','(Lao) ','(Mi) ','(Nan) ','(Nu) ','(Shi) ','(You) ','(Yin) ','(Zhu) ','(Xiang) ','(Xiu) ','(Xie) ','(Zheng) ','(Shang) ','(Zhong) ','(Xia) ','(Zuo) ','(You) ','(Yi) ','(Zong) ','(Xue) ','(Jian) ','(Qi) ','(Zi) ','(Xie) ','(Ye) ','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','1M','2M','3M','4M','5M','6M','7M','8M','9M','10M','11M','12M','[?]','[?]','[?]','[?]','a','i','u','u','o','ka','ki','ku','ke','ko','sa','si','su','se','so','ta','ti','tu','te','to','na','ni','nu','ne','no','ha','hi','hu','he','ho','ma','mi','mu','me','mo','ya','yu','yo','ra','ri','ru','re','ro','wa','wi','we','wo', +); diff --git a/cacert/www/utf8_to_ascii/db/x57.php b/cacert/www/utf8_to_ascii/db/x57.php new file mode 100644 index 0000000..2481030 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x57.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x57] = array( +'apartment','alpha','ampere','are','inning','inch','won','escudo','acre','ounce','ohm','kai-ri','carat','calorie','gallon','gamma','giga','guinea','curie','guilder','kilo','kilogram','kilometer','kilowatt','gram','gram ton','cruzeiro','krone','case','koruna','co-op','cycle','centime','shilling','centi','cent','dozen','desi','dollar','ton','nano','knot','heights','percent','parts','barrel','piaster','picul','pico','building','farad','feet','bushel','franc','hectare','peso','pfennig','hertz','pence','page','beta','point','volt','hon','pound','hall','horn','micro','mile','mach','mark','mansion','micron','milli','millibar','mega','megaton','meter','yard','yard','yuan','liter','lira','rupee','ruble','rem','roentgen','watt','0h','1h','2h','3h','4h','5h','6h','7h','8h','9h','10h','11h','12h','13h','14h','15h','16h','17h','18h','19h','20h','21h','22h','23h','24h','HPA','da','AU','bar','oV','pc','[?]','[?]','[?]','[?]','Heisei','Syouwa','Taisyou','Meiji','Inc.','pA','nA','microamp','mA','kA','kB','MB','GB','cal','kcal','pF','nF','microFarad','microgram','mg','kg','Hz','kHz','MHz','GHz','THz','microliter','ml','dl','kl','fm','nm','micrometer','mm','cm','km','mm^2','cm^2','m^2','km^2','mm^4','cm^3','m^3','km^3','m/s','m/s^2','Pa','kPa','MPa','GPa','rad','rad/s','rad/s^2','ps','ns','microsecond','ms','pV','nV','microvolt','mV','kV','MV','pW','nW','microwatt','mW','kW','MW','kOhm','MOhm','a.m.','Bq','cc','cd','C/kg','Co.','dB','Gy','ha','HP','in','K.K.','KM','kt','lm','ln','log','lx','mb','mil','mol','pH','p.m.','PPM','PR','sr','Sv','Wb','[?]','[?]','1d','2d','3d','4d','5d','6d','7d','8d','9d','10d','11d','12d','13d','14d','15d','16d','17d','18d','19d','20d','21d','22d','23d','24d','25d','26d','27d','28d','29d','30d','31d', +); diff --git a/cacert/www/utf8_to_ascii/db/x58.php b/cacert/www/utf8_to_ascii/db/x58.php new file mode 100644 index 0000000..4a4cc9e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x58.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x58] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x59.php b/cacert/www/utf8_to_ascii/db/x59.php new file mode 100644 index 0000000..4d5d2f1 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x59.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x59] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x5a.php b/cacert/www/utf8_to_ascii/db/x5a.php new file mode 100644 index 0000000..ce6f73e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x5a.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x5a] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x5b.php b/cacert/www/utf8_to_ascii/db/x5b.php new file mode 100644 index 0000000..bb9bddd --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x5b.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x5b] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x5c.php b/cacert/www/utf8_to_ascii/db/x5c.php new file mode 100644 index 0000000..1bc3ad5 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x5c.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x5c] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x5d.php b/cacert/www/utf8_to_ascii/db/x5d.php new file mode 100644 index 0000000..2d986a2 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x5d.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x5d] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x5e.php b/cacert/www/utf8_to_ascii/db/x5e.php new file mode 100644 index 0000000..9f84c31 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x5e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x5e] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x5f.php b/cacert/www/utf8_to_ascii/db/x5f.php new file mode 100644 index 0000000..830d354 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x5f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x5f] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x60.php b/cacert/www/utf8_to_ascii/db/x60.php new file mode 100644 index 0000000..d1bb042 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x60.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x60] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x61.php b/cacert/www/utf8_to_ascii/db/x61.php new file mode 100644 index 0000000..ebf6232 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x61.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x61] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x62.php b/cacert/www/utf8_to_ascii/db/x62.php new file mode 100644 index 0000000..1ab2084 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x62.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x62] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x63.php b/cacert/www/utf8_to_ascii/db/x63.php new file mode 100644 index 0000000..02bd036 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x63.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x63] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x64.php b/cacert/www/utf8_to_ascii/db/x64.php new file mode 100644 index 0000000..37a3568 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x64.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x64] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x65.php b/cacert/www/utf8_to_ascii/db/x65.php new file mode 100644 index 0000000..bdbcd6e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x65.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x65] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x66.php b/cacert/www/utf8_to_ascii/db/x66.php new file mode 100644 index 0000000..e52e0bb --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x66.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x66] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x67.php b/cacert/www/utf8_to_ascii/db/x67.php new file mode 100644 index 0000000..692c6c7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x67.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x67] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x68.php b/cacert/www/utf8_to_ascii/db/x68.php new file mode 100644 index 0000000..36d763f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x68.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x68] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x69.php b/cacert/www/utf8_to_ascii/db/x69.php new file mode 100644 index 0000000..0b90969 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x69.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x69] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x6a.php b/cacert/www/utf8_to_ascii/db/x6a.php new file mode 100644 index 0000000..9fb0825 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x6a.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x6a] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x6b.php b/cacert/www/utf8_to_ascii/db/x6b.php new file mode 100644 index 0000000..688ca0c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x6b.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x6b] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x6c.php b/cacert/www/utf8_to_ascii/db/x6c.php new file mode 100644 index 0000000..1e8ab4c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x6c.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x6c] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x6d.php b/cacert/www/utf8_to_ascii/db/x6d.php new file mode 100644 index 0000000..f5ffc2c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x6d.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x6d] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x6e.php b/cacert/www/utf8_to_ascii/db/x6e.php new file mode 100644 index 0000000..0a1af56 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x6e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x6e] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x6f.php b/cacert/www/utf8_to_ascii/db/x6f.php new file mode 100644 index 0000000..7ba3a41 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x6f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x6f] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x70.php b/cacert/www/utf8_to_ascii/db/x70.php new file mode 100644 index 0000000..5f2d039 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x70.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x70] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/x71.php b/cacert/www/utf8_to_ascii/db/x71.php new file mode 100644 index 0000000..a6f0f09 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x71.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x71] = array( +'[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?] ','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/x72.php b/cacert/www/utf8_to_ascii/db/x72.php new file mode 100644 index 0000000..7e14739 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x72.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x72] = array( +'[?] ','Ding ','Kao ','Qi ','Shang ','Xia ','[?] ','Mo ','Zhang ','San ','Shang ','Xia ','Ji ','Bu ','Yu ','Mian ','Gai ','Chou ','Chou ','Zhuan ','Qie ','Pi ','Shi ','Shi ','Qiu ','Bing ','Ye ','Cong ','Dong ','Si ','Cheng ','Diu ','Qiu ','Liang ','Diu ','You ','Liang ','Yan ','Bing ','Sang ','Gun ','Jiu ','Ge ','Ya ','Qiang ','Zhong ','Ji ','Jie ','Feng ','Guan ','Chuan ','Chan ','Lin ','Zhuo ','Zhu ','Ha ','Wan ','Dan ','Wei ','Zhu ','Jing ','Li ','Ju ','Pie ','Fu ','Yi ','Yi ','Nai ','Shime ','Jiu ','Jiu ','Zhe ','Yao ','Yi ','[?] ','Zhi ','Wu ','Zha ','Hu ','Fa ','Le ','Zhong ','Ping ','Pang ','Qiao ','Hu ','Guai ','Cheng ','Cheng ','Yi ','Yin ','[?] ','Mie ','Jiu ','Qi ','Ye ','Xi ','Xiang ','Gai ','Diu ','Hal ','[?] ','Shu ','Twul ','Shi ','Ji ','Nang ','Jia ','Kel ','Shi ','[?] ','Ol ','Mai ','Luan ','Cal ','Ru ','Xue ','Yan ','Fu ','Sha ','Na ','Gan ','Sol ','El ','Cwul ','[?] ','Gan ','Chi ','Gui ','Gan ','Luan ','Lin ','Yi ','Jue ','Liao ','Ma ','Yu ','Zheng ','Shi ','Shi ','Er ','Chu ','Yu ','Yu ','Yu ','Yun ','Hu ','Qi ','Wu ','Jing ','Si ','Sui ','Gen ','Gen ','Ya ','Xie ','Ya ','Qi ','Ya ','Ji ','Tou ','Wang ','Kang ','Ta ','Jiao ','Hai ','Yi ','Chan ','Heng ','Mu ','[?] ','Xiang ','Jing ','Ting ','Liang ','Xiang ','Jing ','Ye ','Qin ','Bo ','You ','Xie ','Dan ','Lian ','Duo ','Wei ','Ren ','Ren ','Ji ','La ','Wang ','Yi ','Shi ','Ren ','Le ','Ding ','Ze ','Jin ','Pu ','Chou ','Ba ','Zhang ','Jin ','Jie ','Bing ','Reng ','Cong ','Fo ','San ','Lun ','Sya ','Cang ','Zi ','Shi ','Ta ','Zhang ','Fu ','Xian ','Xian ','Tuo ','Hong ','Tong ','Ren ','Qian ','Gan ','Yi ','Di ','Dai ','Ling ','Yi ','Chao ','Chang ','Sa ','[?] ','Yi ','Mu ','Men ','Ren ','Jia ','Chao ','Yang ','Qian ','Zhong ','Pi ','Wan ','Wu ','Jian ','Jie ','Yao ','Feng ','Cang ','Ren ','Wang ','Fen ','Di ','Fang ', +); diff --git a/cacert/www/utf8_to_ascii/db/x73.php b/cacert/www/utf8_to_ascii/db/x73.php new file mode 100644 index 0000000..5ec6e7e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x73.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x73] = array( +'Zhong ','Qi ','Pei ','Yu ','Diao ','Dun ','Wen ','Yi ','Xin ','Kang ','Yi ','Ji ','Ai ','Wu ','Ji ','Fu ','Fa ','Xiu ','Jin ','Bei ','Dan ','Fu ','Tang ','Zhong ','You ','Huo ','Hui ','Yu ','Cui ','Chuan ','San ','Wei ','Chuan ','Che ','Ya ','Xian ','Shang ','Chang ','Lun ','Cang ','Xun ','Xin ','Wei ','Zhu ','[?] ','Xuan ','Nu ','Bo ','Gu ','Ni ','Ni ','Xie ','Ban ','Xu ','Ling ','Zhou ','Shen ','Qu ','Si ','Beng ','Si ','Jia ','Pi ','Yi ','Si ','Ai ','Zheng ','Dian ','Han ','Mai ','Dan ','Zhu ','Bu ','Qu ','Bi ','Shao ','Ci ','Wei ','Di ','Zhu ','Zuo ','You ','Yang ','Ti ','Zhan ','He ','Bi ','Tuo ','She ','Yu ','Yi ','Fo ','Zuo ','Kou ','Ning ','Tong ','Ni ','Xuan ','Qu ','Yong ','Wa ','Qian ','[?] ','Ka ','[?] ','Pei ','Huai ','He ','Lao ','Xiang ','Ge ','Yang ','Bai ','Fa ','Ming ','Jia ','Er ','Bing ','Ji ','Hen ','Huo ','Gui ','Quan ','Tiao ','Jiao ','Ci ','Yi ','Shi ','Xing ','Shen ','Tuo ','Kan ','Zhi ','Gai ','Lai ','Yi ','Chi ','Kua ','Guang ','Li ','Yin ','Shi ','Mi ','Zhu ','Xu ','You ','An ','Lu ','Mou ','Er ','Lun ','Tong ','Cha ','Chi ','Xun ','Gong ','Zhou ','Yi ','Ru ','Jian ','Xia ','Jia ','Zai ','Lu ','Ko ','Jiao ','Zhen ','Ce ','Qiao ','Kuai ','Chai ','Ning ','Nong ','Jin ','Wu ','Hou ','Jiong ','Cheng ','Zhen ','Zuo ','Chou ','Qin ','Lu ','Ju ','Shu ','Ting ','Shen ','Tuo ','Bo ','Nan ','Hao ','Bian ','Tui ','Yu ','Xi ','Cu ','E ','Qiu ','Xu ','Kuang ','Ku ','Wu ','Jun ','Yi ','Fu ','Lang ','Zu ','Qiao ','Li ','Yong ','Hun ','Jing ','Xian ','San ','Pai ','Su ','Fu ','Xi ','Li ','Fu ','Ping ','Bao ','Yu ','Si ','Xia ','Xin ','Xiu ','Yu ','Ti ','Che ','Chou ','[?] ','Yan ','Lia ','Li ','Lai ','[?] ','Jian ','Xiu ','Fu ','He ','Ju ','Xiao ','Pai ','Jian ','Biao ','Chu ','Fei ','Feng ','Ya ','An ','Bei ','Yu ','Xin ','Bi ','Jian ', +); diff --git a/cacert/www/utf8_to_ascii/db/x74.php b/cacert/www/utf8_to_ascii/db/x74.php new file mode 100644 index 0000000..5f9f7be --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x74.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x74] = array( +'Chang ','Chi ','Bing ','Zan ','Yao ','Cui ','Lia ','Wan ','Lai ','Cang ','Zong ','Ge ','Guan ','Bei ','Tian ','Shu ','Shu ','Men ','Dao ','Tan ','Jue ','Chui ','Xing ','Peng ','Tang ','Hou ','Yi ','Qi ','Ti ','Gan ','Jing ','Jie ','Sui ','Chang ','Jie ','Fang ','Zhi ','Kong ','Juan ','Zong ','Ju ','Qian ','Ni ','Lun ','Zhuo ','Wei ','Luo ','Song ','Leng ','Hun ','Dong ','Zi ','Ben ','Wu ','Ju ','Nai ','Cai ','Jian ','Zhai ','Ye ','Zhi ','Sha ','Qing ','[?] ','Ying ','Cheng ','Jian ','Yan ','Nuan ','Zhong ','Chun ','Jia ','Jie ','Wei ','Yu ','Bing ','Ruo ','Ti ','Wei ','Pian ','Yan ','Feng ','Tang ','Wo ','E ','Xie ','Che ','Sheng ','Kan ','Di ','Zuo ','Cha ','Ting ','Bei ','Ye ','Huang ','Yao ','Zhan ','Chou ','Yan ','You ','Jian ','Xu ','Zha ','Ci ','Fu ','Bi ','Zhi ','Zong ','Mian ','Ji ','Yi ','Xie ','Xun ','Si ','Duan ','Ce ','Zhen ','Ou ','Tou ','Tou ','Bei ','Za ','Lu ','Jie ','Wei ','Fen ','Chang ','Gui ','Sou ','Zhi ','Su ','Xia ','Fu ','Yuan ','Rong ','Li ','Ru ','Yun ','Gou ','Ma ','Bang ','Dian ','Tang ','Hao ','Jie ','Xi ','Shan ','Qian ','Jue ','Cang ','Chu ','San ','Bei ','Xiao ','Yong ','Yao ','Tan ','Suo ','Yang ','Fa ','Bing ','Jia ','Dai ','Zai ','Tang ','[?] ','Bin ','Chu ','Nuo ','Can ','Lei ','Cui ','Yong ','Zao ','Zong ','Peng ','Song ','Ao ','Chuan ','Yu ','Zhai ','Cou ','Shang ','Qiang ','Jing ','Chi ','Sha ','Han ','Zhang ','Qing ','Yan ','Di ','Xi ','Lu ','Bei ','Piao ','Jin ','Lian ','Lu ','Man ','Qian ','Xian ','Tan ','Ying ','Dong ','Zhuan ','Xiang ','Shan ','Qiao ','Jiong ','Tui ','Zun ','Pu ','Xi ','Lao ','Chang ','Guang ','Liao ','Qi ','Deng ','Chan ','Wei ','Ji ','Fan ','Hui ','Chuan ','Jian ','Dan ','Jiao ','Jiu ','Seng ','Fen ','Xian ','Jue ','E ','Jiao ','Jian ','Tong ','Lin ','Bo ','Gu ','[?] ','Su ','Xian ','Jiang ','Min ','Ye ','Jin ','Jia ','Qiao ','Pi ','Feng ','Zhou ','Ai ','Sai ', +); diff --git a/cacert/www/utf8_to_ascii/db/x75.php b/cacert/www/utf8_to_ascii/db/x75.php new file mode 100644 index 0000000..4e8e7ed --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x75.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x75] = array( +'Yi ','Jun ','Nong ','Chan ','Yi ','Dang ','Jing ','Xuan ','Kuai ','Jian ','Chu ','Dan ','Jiao ','Sha ','Zai ','[?] ','Bin ','An ','Ru ','Tai ','Chou ','Chai ','Lan ','Ni ','Jin ','Qian ','Meng ','Wu ','Ning ','Qiong ','Ni ','Chang ','Lie ','Lei ','Lu ','Kuang ','Bao ','Du ','Biao ','Zan ','Zhi ','Si ','You ','Hao ','Chen ','Chen ','Li ','Teng ','Wei ','Long ','Chu ','Chan ','Rang ','Shu ','Hui ','Li ','Luo ','Zan ','Nuo ','Tang ','Yan ','Lei ','Nang ','Er ','Wu ','Yun ','Zan ','Yuan ','Xiong ','Chong ','Zhao ','Xiong ','Xian ','Guang ','Dui ','Ke ','Dui ','Mian ','Tu ','Chang ','Er ','Dui ','Er ','Xin ','Tu ','Si ','Yan ','Yan ','Shi ','Shi ','Dang ','Qian ','Dou ','Fen ','Mao ','Shen ','Dou ','Bai ','Jing ','Li ','Huang ','Ru ','Wang ','Nei ','Quan ','Liang ','Yu ','Ba ','Gong ','Liu ','Xi ','[?] ','Lan ','Gong ','Tian ','Guan ','Xing ','Bing ','Qi ','Ju ','Dian ','Zi ','Ppwun ','Yang ','Jian ','Shou ','Ji ','Yi ','Ji ','Chan ','Jiong ','Mao ','Ran ','Nei ','Yuan ','Mao ','Gang ','Ran ','Ce ','Jiong ','Ce ','Zai ','Gua ','Jiong ','Mao ','Zhou ','Mou ','Gou ','Xu ','Mian ','Mi ','Rong ','Yin ','Xie ','Kan ','Jun ','Nong ','Yi ','Mi ','Shi ','Guan ','Meng ','Zhong ','Ju ','Yuan ','Ming ','Kou ','Lam ','Fu ','Xie ','Mi ','Bing ','Dong ','Tai ','Gang ','Feng ','Bing ','Hu ','Chong ','Jue ','Hu ','Kuang ','Ye ','Leng ','Pan ','Fu ','Min ','Dong ','Xian ','Lie ','Xia ','Jian ','Jing ','Shu ','Mei ','Tu ','Qi ','Gu ','Zhun ','Song ','Jing ','Liang ','Qing ','Diao ','Ling ','Dong ','Gan ','Jian ','Yin ','Cou ','Yi ','Li ','Cang ','Ming ','Zhuen ','Cui ','Si ','Duo ','Jin ','Lin ','Lin ','Ning ','Xi ','Du ','Ji ','Fan ','Fan ','Fan ','Feng ','Ju ','Chu ','Tako ','Feng ','Mok ','Ci ','Fu ','Feng ','Ping ','Feng ','Kai ','Huang ','Kai ','Gan ','Deng ','Ping ','Qu ','Xiong ','Kuai ','Tu ','Ao ','Chu ','Ji ','Dang ','Han ','Han ','Zao ', +); diff --git a/cacert/www/utf8_to_ascii/db/x76.php b/cacert/www/utf8_to_ascii/db/x76.php new file mode 100644 index 0000000..aad5f5e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x76.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x76] = array( +'Dao ','Diao ','Dao ','Ren ','Ren ','Chuang ','Fen ','Qie ','Yi ','Ji ','Kan ','Qian ','Cun ','Chu ','Wen ','Ji ','Dan ','Xing ','Hua ','Wan ','Jue ','Li ','Yue ','Lie ','Liu ','Ze ','Gang ','Chuang ','Fu ','Chu ','Qu ','Ju ','Shan ','Min ','Ling ','Zhong ','Pan ','Bie ','Jie ','Jie ','Bao ','Li ','Shan ','Bie ','Chan ','Jing ','Gua ','Gen ','Dao ','Chuang ','Kui ','Ku ','Duo ','Er ','Zhi ','Shua ','Quan ','Cha ','Ci ','Ke ','Jie ','Gui ','Ci ','Gui ','Kai ','Duo ','Ji ','Ti ','Jing ','Lou ','Gen ','Ze ','Yuan ','Cuo ','Xue ','Ke ','La ','Qian ','Cha ','Chuang ','Gua ','Jian ','Cuo ','Li ','Ti ','Fei ','Pou ','Chan ','Qi ','Chuang ','Zi ','Gang ','Wan ','Bo ','Ji ','Duo ','Qing ','Yan ','Zhuo ','Jian ','Ji ','Bo ','Yan ','Ju ','Huo ','Sheng ','Jian ','Duo ','Duan ','Wu ','Gua ','Fu ','Sheng ','Jian ','Ge ','Zha ','Kai ','Chuang ','Juan ','Chan ','Tuan ','Lu ','Li ','Fou ','Shan ','Piao ','Kou ','Jiao ','Gua ','Qiao ','Jue ','Hua ','Zha ','Zhuo ','Lian ','Ju ','Pi ','Liu ','Gui ','Jiao ','Gui ','Jian ','Jian ','Tang ','Huo ','Ji ','Jian ','Yi ','Jian ','Zhi ','Chan ','Cuan ','Mo ','Li ','Zhu ','Li ','Ya ','Quan ','Ban ','Gong ','Jia ','Wu ','Mai ','Lie ','Jin ','Keng ','Xie ','Zhi ','Dong ','Zhu ','Nu ','Jie ','Qu ','Shao ','Yi ','Zhu ','Miao ','Li ','Jing ','Lao ','Lao ','Juan ','Kou ','Yang ','Wa ','Xiao ','Mou ','Kuang ','Jie ','Lie ','He ','Shi ','Ke ','Jing ','Hao ','Bo ','Min ','Chi ','Lang ','Yong ','Yong ','Mian ','Ke ','Xun ','Juan ','Qing ','Lu ','Pou ','Meng ','Lai ','Le ','Kai ','Mian ','Dong ','Xu ','Xu ','Kan ','Wu ','Yi ','Xun ','Weng ','Sheng ','Lao ','Mu ','Lu ','Piao ','Shi ','Ji ','Qin ','Qiang ','Jiao ','Quan ','Yang ','Yi ','Jue ','Fan ','Juan ','Tong ','Ju ','Dan ','Xie ','Mai ','Xun ','Xun ','Lu ','Li ','Che ','Rang ','Quan ','Bao ','Shao ','Yun ','Jiu ','Bao ','Gou ','Wu ', +); diff --git a/cacert/www/utf8_to_ascii/db/x77.php b/cacert/www/utf8_to_ascii/db/x77.php new file mode 100644 index 0000000..e05ed5a --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x77.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x77] = array( +'Yun ','Mwun ','Nay ','Gai ','Gai ','Bao ','Cong ','[?] ','Xiong ','Peng ','Ju ','Tao ','Ge ','Pu ','An ','Pao ','Fu ','Gong ','Da ','Jiu ','Qiong ','Bi ','Hua ','Bei ','Nao ','Chi ','Fang ','Jiu ','Yi ','Za ','Jiang ','Kang ','Jiang ','Kuang ','Hu ','Xia ','Qu ','Bian ','Gui ','Qie ','Zang ','Kuang ','Fei ','Hu ','Tou ','Gui ','Gui ','Hui ','Dan ','Gui ','Lian ','Lian ','Suan ','Du ','Jiu ','Qu ','Xi ','Pi ','Qu ','Yi ','Qia ','Yan ','Bian ','Ni ','Qu ','Shi ','Xin ','Qian ','Nian ','Sa ','Zu ','Sheng ','Wu ','Hui ','Ban ','Shi ','Xi ','Wan ','Hua ','Xie ','Wan ','Bei ','Zu ','Zhuo ','Xie ','Dan ','Mai ','Nan ','Dan ','Ji ','Bo ','Shuai ','Bu ','Kuang ','Bian ','Bu ','Zhan ','Qia ','Lu ','You ','Lu ','Xi ','Gua ','Wo ','Xie ','Jie ','Jie ','Wei ','Ang ','Qiong ','Zhi ','Mao ','Yin ','Wei ','Shao ','Ji ','Que ','Luan ','Shi ','Juan ','Xie ','Xu ','Jin ','Que ','Wu ','Ji ','E ','Qing ','Xi ','[?] ','Han ','Zhan ','E ','Ting ','Li ','Zhe ','Han ','Li ','Ya ','Ya ','Yan ','She ','Zhi ','Zha ','Pang ','[?] ','He ','Ya ','Zhi ','Ce ','Pang ','Ti ','Li ','She ','Hou ','Ting ','Zui ','Cuo ','Fei ','Yuan ','Ce ','Yuan ','Xiang ','Yan ','Li ','Jue ','Sha ','Dian ','Chu ','Jiu ','Qin ','Ao ','Gui ','Yan ','Si ','Li ','Chang ','Lan ','Li ','Yan ','Yan ','Yuan ','Si ','Gong ','Lin ','Qiu ','Qu ','Qu ','Uk ','Lei ','Du ','Xian ','Zhuan ','San ','Can ','Can ','Can ','Can ','Ai ','Dai ','You ','Cha ','Ji ','You ','Shuang ','Fan ','Shou ','Guai ','Ba ','Fa ','Ruo ','Shi ','Shu ','Zhuo ','Qu ','Shou ','Bian ','Xu ','Jia ','Pan ','Sou ','Gao ','Wei ','Sou ','Die ','Rui ','Cong ','Kou ','Gu ','Ju ','Ling ','Gua ','Tao ','Kou ','Zhi ','Jiao ','Zhao ','Ba ','Ding ','Ke ','Tai ','Chi ','Shi ','You ','Qiu ','Po ','Xie ','Hao ','Si ','Tan ','Chi ','Le ','Diao ','Ji ','[?] ','Hong ', +); diff --git a/cacert/www/utf8_to_ascii/db/x78.php b/cacert/www/utf8_to_ascii/db/x78.php new file mode 100644 index 0000000..bc547ba --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x78.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x78] = array( +'Mie ','Xu ','Mang ','Chi ','Ge ','Xuan ','Yao ','Zi ','He ','Ji ','Diao ','Cun ','Tong ','Ming ','Hou ','Li ','Tu ','Xiang ','Zha ','Xia ','Ye ','Lu ','A ','Ma ','Ou ','Xue ','Yi ','Jun ','Chou ','Lin ','Tun ','Yin ','Fei ','Bi ','Qin ','Qin ','Jie ','Bu ','Fou ','Ba ','Dun ','Fen ','E ','Han ','Ting ','Hang ','Shun ','Qi ','Hong ','Zhi ','Shen ','Wu ','Wu ','Chao ','Ne ','Xue ','Xi ','Chui ','Dou ','Wen ','Hou ','Ou ','Wu ','Gao ','Ya ','Jun ','Lu ','E ','Ge ','Mei ','Ai ','Qi ','Cheng ','Wu ','Gao ','Fu ','Jiao ','Hong ','Chi ','Sheng ','Ne ','Tun ','Fu ','Yi ','Dai ','Ou ','Li ','Bai ','Yuan ','Kuai ','[?] ','Qiang ','Wu ','E ','Shi ','Quan ','Pen ','Wen ','Ni ','M ','Ling ','Ran ','You ','Di ','Zhou ','Shi ','Zhou ','Tie ','Xi ','Yi ','Qi ','Ping ','Zi ','Gu ','Zi ','Wei ','Xu ','He ','Nao ','Xia ','Pei ','Yi ','Xiao ','Shen ','Hu ','Ming ','Da ','Qu ','Ju ','Gem ','Za ','Tuo ','Duo ','Pou ','Pao ','Bi ','Fu ','Yang ','He ','Zha ','He ','Hai ','Jiu ','Yong ','Fu ','Que ','Zhou ','Wa ','Ka ','Gu ','Ka ','Zuo ','Bu ','Long ','Dong ','Ning ','Tha ','Si ','Xian ','Huo ','Qi ','Er ','E ','Guang ','Zha ','Xi ','Yi ','Lie ','Zi ','Mie ','Mi ','Zhi ','Yao ','Ji ','Zhou ','Ge ','Shuai ','Zan ','Xiao ','Ke ','Hui ','Kua ','Huai ','Tao ','Xian ','E ','Xuan ','Xiu ','Wai ','Yan ','Lao ','Yi ','Ai ','Pin ','Shen ','Tong ','Hong ','Xiong ','Chi ','Wa ','Ha ','Zai ','Yu ','Di ','Pai ','Xiang ','Ai ','Hen ','Kuang ','Ya ','Da ','Xiao ','Bi ','Yue ','[?] ','Hua ','Sasou ','Kuai ','Duo ','[?] ','Ji ','Nong ','Mou ','Yo ','Hao ','Yuan ','Long ','Pou ','Mang ','Ge ','E ','Chi ','Shao ','Li ','Na ','Zu ','He ','Ku ','Xiao ','Xian ','Lao ','Bo ','Zhe ','Zha ','Liang ','Ba ','Mie ','Le ','Sui ','Fou ','Bu ','Han ','Heng ','Geng ','Shuo ','Ge ', +); diff --git a/cacert/www/utf8_to_ascii/db/x79.php b/cacert/www/utf8_to_ascii/db/x79.php new file mode 100644 index 0000000..6307a34 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x79.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x79] = array( +'You ','Yan ','Gu ','Gu ','Bai ','Han ','Suo ','Chun ','Yi ','Ai ','Jia ','Tu ','Xian ','Huan ','Li ','Xi ','Tang ','Zuo ','Qiu ','Che ','Wu ','Zao ','Ya ','Dou ','Qi ','Di ','Qin ','Ma ','Mal ','Hong ','Dou ','Kes ','Lao ','Liang ','Suo ','Zao ','Huan ','Lang ','Sha ','Ji ','Zuo ','Wo ','Feng ','Yin ','Hu ','Qi ','Shou ','Wei ','Shua ','Chang ','Er ','Li ','Qiang ','An ','Jie ','Yo ','Nian ','Yu ','Tian ','Lai ','Sha ','Xi ','Tuo ','Hu ','Ai ','Zhou ','Nou ','Ken ','Zhuo ','Zhuo ','Shang ','Di ','Heng ','Lan ','A ','Xiao ','Xiang ','Tun ','Wu ','Wen ','Cui ','Sha ','Hu ','Qi ','Qi ','Tao ','Dan ','Dan ','Ye ','Zi ','Bi ','Cui ','Chuo ','He ','Ya ','Qi ','Zhe ','Pei ','Liang ','Xian ','Pi ','Sha ','La ','Ze ','Qing ','Gua ','Pa ','Zhe ','Se ','Zhuan ','Nie ','Guo ','Luo ','Yan ','Di ','Quan ','Tan ','Bo ','Ding ','Lang ','Xiao ','[?] ','Tang ','Chi ','Ti ','An ','Jiu ','Dan ','Ke ','Yong ','Wei ','Nan ','Shan ','Yu ','Zhe ','La ','Jie ','Hou ','Han ','Die ','Zhou ','Chai ','Wai ','Re ','Yu ','Yin ','Zan ','Yao ','Wo ','Mian ','Hu ','Yun ','Chuan ','Hui ','Huan ','Huan ','Xi ','He ','Ji ','Kui ','Zhong ','Wei ','Sha ','Xu ','Huang ','Du ','Nie ','Xuan ','Liang ','Yu ','Sang ','Chi ','Qiao ','Yan ','Dan ','Pen ','Can ','Li ','Yo ','Zha ','Wei ','Miao ','Ying ','Pen ','Phos ','Kui ','Xi ','Yu ','Jie ','Lou ','Ku ','Sao ','Huo ','Ti ','Yao ','He ','A ','Xiu ','Qiang ','Se ','Yong ','Su ','Hong ','Xie ','Yi ','Suo ','Ma ','Cha ','Hai ','Ke ','Ta ','Sang ','Tian ','Ru ','Sou ','Wa ','Ji ','Pang ','Wu ','Xian ','Shi ','Ge ','Zi ','Jie ','Luo ','Weng ','Wa ','Si ','Chi ','Hao ','Suo ','Jia ','Hai ','Suo ','Qin ','Nie ','He ','Cis ','Sai ','Ng ','Ge ','Na ','Dia ','Ai ','[?] ','Tong ','Bi ','Ao ','Ao ','Lian ','Cui ','Zhe ','Mo ','Sou ','Sou ','Tan ', +); diff --git a/cacert/www/utf8_to_ascii/db/x7a.php b/cacert/www/utf8_to_ascii/db/x7a.php new file mode 100644 index 0000000..30e5f77 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x7a.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x7a] = array( +'Di ','Qi ','Jiao ','Chong ','Jiao ','Kai ','Tan ','San ','Cao ','Jia ','Ai ','Xiao ','Piao ','Lou ','Ga ','Gu ','Xiao ','Hu ','Hui ','Guo ','Ou ','Xian ','Ze ','Chang ','Xu ','Po ','De ','Ma ','Ma ','Hu ','Lei ','Du ','Ga ','Tang ','Ye ','Beng ','Ying ','Saai ','Jiao ','Mi ','Xiao ','Hua ','Mai ','Ran ','Zuo ','Peng ','Lao ','Xiao ','Ji ','Zhu ','Chao ','Kui ','Zui ','Xiao ','Si ','Hao ','Fu ','Liao ','Qiao ','Xi ','Xiu ','Tan ','Tan ','Mo ','Xun ','E ','Zun ','Fan ','Chi ','Hui ','Zan ','Chuang ','Cu ','Dan ','Yu ','Tun ','Cheng ','Jiao ','Ye ','Xi ','Qi ','Hao ','Lian ','Xu ','Deng ','Hui ','Yin ','Pu ','Jue ','Qin ','Xun ','Nie ','Lu ','Si ','Yan ','Ying ','Da ','Dan ','Yu ','Zhou ','Jin ','Nong ','Yue ','Hui ','Qi ','E ','Zao ','Yi ','Shi ','Jiao ','Yuan ','Ai ','Yong ','Jue ','Kuai ','Yu ','Pen ','Dao ','Ge ','Xin ','Dun ','Dang ','Sin ','Sai ','Pi ','Pi ','Yin ','Zui ','Ning ','Di ','Lan ','Ta ','Huo ','Ru ','Hao ','Xia ','Ya ','Duo ','Xi ','Chou ','Ji ','Jin ','Hao ','Ti ','Chang ','[?] ','[?] ','Ca ','Ti ','Lu ','Hui ','Bo ','You ','Nie ','Yin ','Hu ','Mo ','Huang ','Zhe ','Li ','Liu ','Haai ','Nang ','Xiao ','Mo ','Yan ','Li ','Lu ','Long ','Fu ','Dan ','Chen ','Pin ','Pi ','Xiang ','Huo ','Mo ','Xi ','Duo ','Ku ','Yan ','Chan ','Ying ','Rang ','Dian ','La ','Ta ','Xiao ','Jiao ','Chuo ','Huan ','Huo ','Zhuan ','Nie ','Xiao ','Ca ','Li ','Chan ','Chai ','Li ','Yi ','Luo ','Nang ','Zan ','Su ','Xi ','So ','Jian ','Za ','Zhu ','Lan ','Nie ','Nang ','[?] ','[?] ','Wei ','Hui ','Yin ','Qiu ','Si ','Nin ','Jian ','Hui ','Xin ','Yin ','Nan ','Tuan ','Tuan ','Dun ','Kang ','Yuan ','Jiong ','Pian ','Yun ','Cong ','Hu ','Hui ','Yuan ','You ','Guo ','Kun ','Cong ','Wei ','Tu ','Wei ','Lun ','Guo ','Qun ','Ri ','Ling ','Gu ','Guo ','Tai ','Guo ','Tu ','You ', +); diff --git a/cacert/www/utf8_to_ascii/db/x7b.php b/cacert/www/utf8_to_ascii/db/x7b.php new file mode 100644 index 0000000..9652aa3 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x7b.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x7b] = array( +'Guo ','Yin ','Hun ','Pu ','Yu ','Han ','Yuan ','Lun ','Quan ','Yu ','Qing ','Guo ','Chuan ','Wei ','Yuan ','Quan ','Ku ','Fu ','Yuan ','Yuan ','E ','Tu ','Tu ','Tu ','Tuan ','Lue ','Hui ','Yi ','Yuan ','Luan ','Luan ','Tu ','Ya ','Tu ','Ting ','Sheng ','Pu ','Lu ','Iri ','Ya ','Zai ','Wei ','Ge ','Yu ','Wu ','Gui ','Pi ','Yi ','Di ','Qian ','Qian ','Zhen ','Zhuo ','Dang ','Qia ','Akutsu ','Yama ','Kuang ','Chang ','Qi ','Nie ','Mo ','Ji ','Jia ','Zhi ','Zhi ','Ban ','Xun ','Tou ','Qin ','Fen ','Jun ','Keng ','Tun ','Fang ','Fen ','Ben ','Tan ','Kan ','Pi ','Zuo ','Keng ','Bi ','Xing ','Di ','Jing ','Ji ','Kuai ','Di ','Jing ','Jian ','Tan ','Li ','Ba ','Wu ','Fen ','Zhui ','Po ','Pan ','Tang ','Kun ','Qu ','Tan ','Zhi ','Tuo ','Gan ','Ping ','Dian ','Gua ','Ni ','Tai ','Pi ','Jiong ','Yang ','Fo ','Ao ','Liu ','Qiu ','Mu ','Ke ','Gou ','Xue ','Ba ','Chi ','Che ','Ling ','Zhu ','Fu ','Hu ','Zhi ','Chui ','La ','Long ','Long ','Lu ','Ao ','Tay ','Pao ','[?] ','Xing ','Dong ','Ji ','Ke ','Lu ','Ci ','Chi ','Lei ','Gai ','Yin ','Hou ','Dui ','Zhao ','Fu ','Guang ','Yao ','Duo ','Duo ','Gui ','Cha ','Yang ','Yin ','Fa ','Gou ','Yuan ','Die ','Xie ','Ken ','Jiong ','Shou ','E ','Ha ','Dian ','Hong ','Wu ','Kua ','[?] ','Tao ','Dang ','Kai ','Gake ','Nao ','An ','Xing ','Xian ','Huan ','Bang ','Pei ','Ba ','Yi ','Yin ','Han ','Xu ','Chui ','Cen ','Geng ','Ai ','Peng ','Fang ','Que ','Yong ','Xun ','Jia ','Di ','Mai ','Lang ','Xuan ','Cheng ','Yan ','Jin ','Zhe ','Lei ','Lie ','Bu ','Cheng ','Gomi ','Bu ','Shi ','Xun ','Guo ','Jiong ','Ye ','Nian ','Di ','Yu ','Bu ','Ya ','Juan ','Sui ','Pi ','Cheng ','Wan ','Ju ','Lun ','Zheng ','Kong ','Chong ','Dong ','Dai ','Tan ','An ','Cai ','Shu ','Beng ','Kan ','Zhi ','Duo ','Yi ','Zhi ','Yi ','Pei ','Ji ','Zhun ','Qi ','Sao ','Ju ','Ni ', +); diff --git a/cacert/www/utf8_to_ascii/db/x7c.php b/cacert/www/utf8_to_ascii/db/x7c.php new file mode 100644 index 0000000..16f3fae --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x7c.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x7c] = array( +'Ku ','Ke ','Tang ','Kun ','Ni ','Jian ','Dui ','Jin ','Gang ','Yu ','E ','Peng ','Gu ','Tu ','Leng ','[?] ','Ya ','Qian ','[?] ','An ','[?] ','Duo ','Nao ','Tu ','Cheng ','Yin ','Hun ','Bi ','Lian ','Guo ','Die ','Zhuan ','Hou ','Bao ','Bao ','Yu ','Di ','Mao ','Jie ','Ruan ','E ','Geng ','Kan ','Zong ','Yu ','Huang ','E ','Yao ','Yan ','Bao ','Ji ','Mei ','Chang ','Du ','Tuo ','Yin ','Feng ','Zhong ','Jie ','Zhen ','Feng ','Gang ','Chuan ','Jian ','Pyeng ','Toride ','Xiang ','Huang ','Leng ','Duan ','[?] ','Xuan ','Ji ','Ji ','Kuai ','Ying ','Ta ','Cheng ','Yong ','Kai ','Su ','Su ','Shi ','Mi ','Ta ','Weng ','Cheng ','Tu ','Tang ','Que ','Zhong ','Li ','Peng ','Bang ','Sai ','Zang ','Dui ','Tian ','Wu ','Cheng ','Xun ','Ge ','Zhen ','Ai ','Gong ','Yan ','Kan ','Tian ','Yuan ','Wen ','Xie ','Liu ','Ama ','Lang ','Chang ','Peng ','Beng ','Chen ','Cu ','Lu ','Ou ','Qian ','Mei ','Mo ','Zhuan ','Shuang ','Shu ','Lou ','Chi ','Man ','Biao ','Jing ','Qi ','Shu ','Di ','Zhang ','Kan ','Yong ','Dian ','Chen ','Zhi ','Xi ','Guo ','Qiang ','Jin ','Di ','Shang ','Mu ','Cui ','Yan ','Ta ','Zeng ','Qi ','Qiang ','Liang ','[?] ','Zhui ','Qiao ','Zeng ','Xu ','Shan ','Shan ','Ba ','Pu ','Kuai ','Dong ','Fan ','Que ','Mo ','Dun ','Dun ','Dun ','Di ','Sheng ','Duo ','Duo ','Tan ','Deng ','Wu ','Fen ','Huang ','Tan ','Da ','Ye ','Sho ','Mama ','Yu ','Qiang ','Ji ','Qiao ','Ken ','Yi ','Pi ','Bi ','Dian ','Jiang ','Ye ','Yong ','Bo ','Tan ','Lan ','Ju ','Huai ','Dang ','Rang ','Qian ','Xun ','Lan ','Xi ','He ','Ai ','Ya ','Dao ','Hao ','Ruan ','Mama ','Lei ','Kuang ','Lu ','Yan ','Tan ','Wei ','Huai ','Long ','Long ','Rui ','Li ','Lin ','Rang ','Ten ','Xun ','Yan ','Lei ','Ba ','[?] ','Shi ','Ren ','[?] ','Zhuang ','Zhuang ','Sheng ','Yi ','Mai ','Ke ','Zhu ','Zhuang ','Hu ','Hu ','Kun ','Yi ','Hu ','Xu ','Kun ','Shou ','Mang ','Zun ', +); diff --git a/cacert/www/utf8_to_ascii/db/x7d.php b/cacert/www/utf8_to_ascii/db/x7d.php new file mode 100644 index 0000000..101e39f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x7d.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x7d] = array( +'Shou ','Yi ','Zhi ','Gu ','Chu ','Jiang ','Feng ','Bei ','Cay ','Bian ','Sui ','Qun ','Ling ','Fu ','Zuo ','Xia ','Xiong ','[?] ','Nao ','Xia ','Kui ','Xi ','Wai ','Yuan ','Mao ','Su ','Duo ','Duo ','Ye ','Qing ','Uys ','Gou ','Gou ','Qi ','Meng ','Meng ','Yin ','Huo ','Chen ','Da ','Ze ','Tian ','Tai ','Fu ','Guai ','Yao ','Yang ','Hang ','Gao ','Shi ','Ben ','Tai ','Tou ','Yan ','Bi ','Yi ','Kua ','Jia ','Duo ','Kwu ','Kuang ','Yun ','Jia ','Pa ','En ','Lian ','Huan ','Di ','Yan ','Pao ','Quan ','Qi ','Nai ','Feng ','Xie ','Fen ','Dian ','[?] ','Kui ','Zou ','Huan ','Qi ','Kai ','Zha ','Ben ','Yi ','Jiang ','Tao ','Zang ','Ben ','Xi ','Xiang ','Fei ','Diao ','Xun ','Keng ','Dian ','Ao ','She ','Weng ','Pan ','Ao ','Wu ','Ao ','Jiang ','Lian ','Duo ','Yun ','Jiang ','Shi ','Fen ','Huo ','Bi ','Lian ','Duo ','Nu ','Nu ','Ding ','Nai ','Qian ','Jian ','Ta ','Jiu ','Nan ','Cha ','Hao ','Xian ','Fan ','Ji ','Shuo ','Ru ','Fei ','Wang ','Hong ','Zhuang ','Fu ','Ma ','Dan ','Ren ','Fu ','Jing ','Yan ','Xie ','Wen ','Zhong ','Pa ','Du ','Ji ','Keng ','Zhong ','Yao ','Jin ','Yun ','Miao ','Pei ','Shi ','Yue ','Zhuang ','Niu ','Yan ','Na ','Xin ','Fen ','Bi ','Yu ','Tuo ','Feng ','Yuan ','Fang ','Wu ','Yu ','Gui ','Du ','Ba ','Ni ','Zhou ','Zhuo ','Zhao ','Da ','Nai ','Yuan ','Tou ','Xuan ','Zhi ','E ','Mei ','Mo ','Qi ','Bi ','Shen ','Qie ','E ','He ','Xu ','Fa ','Zheng ','Min ','Ban ','Mu ','Fu ','Ling ','Zi ','Zi ','Shi ','Ran ','Shan ','Yang ','Man ','Jie ','Gu ','Si ','Xing ','Wei ','Zi ','Ju ','Shan ','Pin ','Ren ','Yao ','Tong ','Jiang ','Shu ','Ji ','Gai ','Shang ','Kuo ','Juan ','Jiao ','Gou ','Mu ','Jian ','Jian ','Yi ','Nian ','Zhi ','Ji ','Ji ','Xian ','Heng ','Guang ','Jun ','Kua ','Yan ','Ming ','Lie ','Pei ','Yan ','You ','Yan ','Cha ','Shen ','Yin ','Chi ','Gui ','Quan ','Zi ', +); diff --git a/cacert/www/utf8_to_ascii/db/x7e.php b/cacert/www/utf8_to_ascii/db/x7e.php new file mode 100644 index 0000000..f6558ab --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x7e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x7e] = array( +'Song ','Wei ','Hong ','Wa ','Lou ','Ya ','Rao ','Jiao ','Luan ','Ping ','Xian ','Shao ','Li ','Cheng ','Xiao ','Mang ','Fu ','Suo ','Wu ','Wei ','Ke ','Lai ','Chuo ','Ding ','Niang ','Xing ','Nan ','Yu ','Nuo ','Pei ','Nei ','Juan ','Shen ','Zhi ','Han ','Di ','Zhuang ','E ','Pin ','Tui ','Han ','Mian ','Wu ','Yan ','Wu ','Xi ','Yan ','Yu ','Si ','Yu ','Wa ','[?] ','Xian ','Ju ','Qu ','Shui ','Qi ','Xian ','Zhui ','Dong ','Chang ','Lu ','Ai ','E ','E ','Lou ','Mian ','Cong ','Pou ','Ju ','Po ','Cai ','Ding ','Wan ','Biao ','Xiao ','Shu ','Qi ','Hui ','Fu ','E ','Wo ','Tan ','Fei ','Wei ','Jie ','Tian ','Ni ','Quan ','Jing ','Hun ','Jing ','Qian ','Dian ','Xing ','Hu ','Wa ','Lai ','Bi ','Yin ','Chou ','Chuo ','Fu ','Jing ','Lun ','Yan ','Lan ','Kun ','Yin ','Ya ','Ju ','Li ','Dian ','Xian ','Hwa ','Hua ','Ying ','Chan ','Shen ','Ting ','Dang ','Yao ','Wu ','Nan ','Ruo ','Jia ','Tou ','Xu ','Yu ','Wei ','Ti ','Rou ','Mei ','Dan ','Ruan ','Qin ','Hui ','Wu ','Qian ','Chun ','Mao ','Fu ','Jie ','Duan ','Xi ','Zhong ','Mei ','Huang ','Mian ','An ','Ying ','Xuan ','Jie ','Wei ','Mei ','Yuan ','Zhen ','Qiu ','Ti ','Xie ','Tuo ','Lian ','Mao ','Ran ','Si ','Pian ','Wei ','Wa ','Jiu ','Hu ','Ao ','[?] ','Bou ','Xu ','Tou ','Gui ','Zou ','Yao ','Pi ','Xi ','Yuan ','Ying ','Rong ','Ru ','Chi ','Liu ','Mei ','Pan ','Ao ','Ma ','Gou ','Kui ','Qin ','Jia ','Sao ','Zhen ','Yuan ','Cha ','Yong ','Ming ','Ying ','Ji ','Su ','Niao ','Xian ','Tao ','Pang ','Lang ','Nao ','Bao ','Ai ','Pi ','Pin ','Yi ','Piao ','Yu ','Lei ','Xuan ','Man ','Yi ','Zhang ','Kang ','Yong ','Ni ','Li ','Di ','Gui ','Yan ','Jin ','Zhuan ','Chang ','Ce ','Han ','Nen ','Lao ','Mo ','Zhe ','Hu ','Hu ','Ao ','Nen ','Qiang ','Ma ','Pie ','Gu ','Wu ','Jiao ','Tuo ','Zhan ','Mao ','Xian ','Xian ','Mo ','Liao ','Lian ','Hua ', +); diff --git a/cacert/www/utf8_to_ascii/db/x7f.php b/cacert/www/utf8_to_ascii/db/x7f.php new file mode 100644 index 0000000..e24e61d --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x7f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x7f] = array( +'Gui ','Deng ','Zhi ','Xu ','Yi ','Hua ','Xi ','Hui ','Rao ','Xi ','Yan ','Chan ','Jiao ','Mei ','Fan ','Fan ','Xian ','Yi ','Wei ','Jiao ','Fu ','Shi ','Bi ','Shan ','Sui ','Qiang ','Lian ','Huan ','Xin ','Niao ','Dong ','Yi ','Can ','Ai ','Niang ','Neng ','Ma ','Tiao ','Chou ','Jin ','Ci ','Yu ','Pin ','Yong ','Xu ','Nai ','Yan ','Tai ','Ying ','Can ','Niao ','Wo ','Ying ','Mian ','Kaka ','Ma ','Shen ','Xing ','Ni ','Du ','Liu ','Yuan ','Lan ','Yan ','Shuang ','Ling ','Jiao ','Niang ','Lan ','Xian ','Ying ','Shuang ','Shuai ','Quan ','Mi ','Li ','Luan ','Yan ','Zhu ','Lan ','Zi ','Jie ','Jue ','Jue ','Kong ','Yun ','Zi ','Zi ','Cun ','Sun ','Fu ','Bei ','Zi ','Xiao ','Xin ','Meng ','Si ','Tai ','Bao ','Ji ','Gu ','Nu ','Xue ','[?] ','Zhuan ','Hai ','Luan ','Sun ','Huai ','Mie ','Cong ','Qian ','Shu ','Chan ','Ya ','Zi ','Ni ','Fu ','Zi ','Li ','Xue ','Bo ','Ru ','Lai ','Nie ','Nie ','Ying ','Luan ','Mian ','Zhu ','Rong ','Ta ','Gui ','Zhai ','Qiong ','Yu ','Shou ','An ','Tu ','Song ','Wan ','Rou ','Yao ','Hong ','Yi ','Jing ','Zhun ','Mi ','Zhu ','Dang ','Hong ','Zong ','Guan ','Zhou ','Ding ','Wan ','Yi ','Bao ','Shi ','Shi ','Chong ','Shen ','Ke ','Xuan ','Shi ','You ','Huan ','Yi ','Tiao ','Shi ','Xian ','Gong ','Cheng ','Qun ','Gong ','Xiao ','Zai ','Zha ','Bao ','Hai ','Yan ','Xiao ','Jia ','Shen ','Chen ','Rong ','Huang ','Mi ','Kou ','Kuan ','Bin ','Su ','Cai ','Zan ','Ji ','Yuan ','Ji ','Yin ','Mi ','Kou ','Qing ','Que ','Zhen ','Jian ','Fu ','Ning ','Bing ','Huan ','Mei ','Qin ','Han ','Yu ','Shi ','Ning ','Qin ','Ning ','Zhi ','Yu ','Bao ','Kuan ','Ning ','Qin ','Mo ','Cha ','Ju ','Gua ','Qin ','Hu ','Wu ','Liao ','Shi ','Zhu ','Zhai ','Shen ','Wei ','Xie ','Kuan ','Hui ','Liao ','Jun ','Huan ','Yi ','Yi ','Bao ','Qin ','Chong ','Bao ','Feng ','Cun ','Dui ','Si ','Xun ','Dao ','Lu ','Dui ','Shou ', +); diff --git a/cacert/www/utf8_to_ascii/db/x80.php b/cacert/www/utf8_to_ascii/db/x80.php new file mode 100644 index 0000000..4c9d23c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x80.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x80] = array( +'Po ','Feng ','Zhuan ','Fu ','She ','Ke ','Jiang ','Jiang ','Zhuan ','Wei ','Zun ','Xun ','Shu ','Dui ','Dao ','Xiao ','Ji ','Shao ','Er ','Er ','Er ','Ga ','Jian ','Shu ','Chen ','Shang ','Shang ','Mo ','Ga ','Chang ','Liao ','Xian ','Xian ','[?] ','Wang ','Wang ','You ','Liao ','Liao ','Yao ','Mang ','Wang ','Wang ','Wang ','Ga ','Yao ','Duo ','Kui ','Zhong ','Jiu ','Gan ','Gu ','Gan ','Tui ','Gan ','Gan ','Shi ','Yin ','Chi ','Kao ','Ni ','Jin ','Wei ','Niao ','Ju ','Pi ','Ceng ','Xi ','Bi ','Ju ','Jie ','Tian ','Qu ','Ti ','Jie ','Wu ','Diao ','Shi ','Shi ','Ping ','Ji ','Xie ','Chen ','Xi ','Ni ','Zhan ','Xi ','[?] ','Man ','E ','Lou ','Ping ','Ti ','Fei ','Shu ','Xie ','Tu ','Lu ','Lu ','Xi ','Ceng ','Lu ','Ju ','Xie ','Ju ','Jue ','Liao ','Jue ','Shu ','Xi ','Che ','Tun ','Ni ','Shan ','[?] ','Xian ','Li ','Xue ','Nata ','[?] ','Long ','Yi ','Qi ','Ren ','Wu ','Han ','Shen ','Yu ','Chu ','Sui ','Qi ','[?] ','Yue ','Ban ','Yao ','Ang ','Ya ','Wu ','Jie ','E ','Ji ','Qian ','Fen ','Yuan ','Qi ','Cen ','Qian ','Qi ','Cha ','Jie ','Qu ','Gang ','Xian ','Ao ','Lan ','Dao ','Ba ','Zuo ','Zuo ','Yang ','Ju ','Gang ','Ke ','Gou ','Xue ','Bei ','Li ','Tiao ','Ju ','Yan ','Fu ','Xiu ','Jia ','Ling ','Tuo ','Pei ','You ','Dai ','Kuang ','Yue ','Qu ','Hu ','Po ','Min ','An ','Tiao ','Ling ','Chi ','Yuri ','Dong ','Cem ','Kui ','Xiu ','Mao ','Tong ','Xue ','Yi ','Kura ','He ','Ke ','Luo ','E ','Fu ','Xun ','Die ','Lu ','An ','Er ','Gai ','Quan ','Tong ','Yi ','Mu ','Shi ','An ','Wei ','Hu ','Zhi ','Mi ','Li ','Ji ','Tong ','Wei ','You ','Sang ','Xia ','Li ','Yao ','Jiao ','Zheng ','Luan ','Jiao ','E ','E ','Yu ','Ye ','Bu ','Qiao ','Qun ','Feng ','Feng ','Nao ','Li ','You ','Xian ','Hong ','Dao ','Shen ','Cheng ','Tu ','Geng ','Jun ','Hao ','Xia ','Yin ','Yu ', +); diff --git a/cacert/www/utf8_to_ascii/db/x81.php b/cacert/www/utf8_to_ascii/db/x81.php new file mode 100644 index 0000000..944f462 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x81.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x81] = array( +'Lang ','Kan ','Lao ','Lai ','Xian ','Que ','Kong ','Chong ','Chong ','Ta ','Lin ','Hua ','Ju ','Lai ','Qi ','Min ','Kun ','Kun ','Zu ','Gu ','Cui ','Ya ','Ya ','Gang ','Lun ','Lun ','Leng ','Jue ','Duo ','Zheng ','Guo ','Yin ','Dong ','Han ','Zheng ','Wei ','Yao ','Pi ','Yan ','Song ','Jie ','Beng ','Zu ','Jue ','Dong ','Zhan ','Gu ','Yin ','[?] ','Ze ','Huang ','Yu ','Wei ','Yang ','Feng ','Qiu ','Dun ','Ti ','Yi ','Zhi ','Shi ','Zai ','Yao ','E ','Zhu ','Kan ','Lu ','Yan ','Mei ','Gan ','Ji ','Ji ','Huan ','Ting ','Sheng ','Mei ','Qian ','Wu ','Yu ','Zong ','Lan ','Jue ','Yan ','Yan ','Wei ','Zong ','Cha ','Sui ','Rong ','Yamashina ','Qin ','Yu ','Kewashii ','Lou ','Tu ','Dui ','Xi ','Weng ','Cang ','Dang ','Hong ','Jie ','Ai ','Liu ','Wu ','Song ','Qiao ','Zi ','Wei ','Beng ','Dian ','Cuo ','Qian ','Yong ','Nie ','Cuo ','Ji ','[?] ','Tao ','Song ','Zong ','Jiang ','Liao ','Kang ','Chan ','Die ','Cen ','Ding ','Tu ','Lou ','Zhang ','Zhan ','Zhan ','Ao ','Cao ','Qu ','Qiang ','Zui ','Zui ','Dao ','Dao ','Xi ','Yu ','Bo ','Long ','Xiang ','Ceng ','Bo ','Qin ','Jiao ','Yan ','Lao ','Zhan ','Lin ','Liao ','Liao ','Jin ','Deng ','Duo ','Zun ','Jiao ','Gui ','Yao ','Qiao ','Yao ','Jue ','Zhan ','Yi ','Xue ','Nao ','Ye ','Ye ','Yi ','E ','Xian ','Ji ','Xie ','Ke ','Xi ','Di ','Ao ','Zui ','[?] ','Ni ','Rong ','Dao ','Ling ','Za ','Yu ','Yue ','Yin ','[?] ','Jie ','Li ','Sui ','Long ','Long ','Dian ','Ying ','Xi ','Ju ','Chan ','Ying ','Kui ','Yan ','Wei ','Nao ','Quan ','Chao ','Cuan ','Luan ','Dian ','Dian ','[?] ','Yan ','Yan ','Yan ','Nao ','Yan ','Chuan ','Gui ','Chuan ','Zhou ','Huang ','Jing ','Xun ','Chao ','Chao ','Lie ','Gong ','Zuo ','Qiao ','Ju ','Gong ','Kek ','Wu ','Pwu ','Pwu ','Chai ','Qiu ','Qiu ','Ji ','Yi ','Si ','Ba ','Zhi ','Zhao ','Xiang ','Yi ','Jin ','Xun ','Juan ','Phas ','Xun ','Jin ','Fu ', +); diff --git a/cacert/www/utf8_to_ascii/db/x82.php b/cacert/www/utf8_to_ascii/db/x82.php new file mode 100644 index 0000000..c64ed0c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x82.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x82] = array( +'Za ','Bi ','Shi ','Bu ','Ding ','Shuai ','Fan ','Nie ','Shi ','Fen ','Pa ','Zhi ','Xi ','Hu ','Dan ','Wei ','Zhang ','Tang ','Dai ','Ma ','Pei ','Pa ','Tie ','Fu ','Lian ','Zhi ','Zhou ','Bo ','Zhi ','Di ','Mo ','Yi ','Yi ','Ping ','Qia ','Juan ','Ru ','Shuai ','Dai ','Zheng ','Shui ','Qiao ','Zhen ','Shi ','Qun ','Xi ','Bang ','Dai ','Gui ','Chou ','Ping ','Zhang ','Sha ','Wan ','Dai ','Wei ','Chang ','Sha ','Qi ','Ze ','Guo ','Mao ','Du ','Hou ','Zheng ','Xu ','Mi ','Wei ','Wo ','Fu ','Yi ','Bang ','Ping ','Tazuna ','Gong ','Pan ','Huang ','Dao ','Mi ','Jia ','Teng ','Hui ','Zhong ','Shan ','Man ','Mu ','Biao ','Guo ','Ze ','Mu ','Bang ','Zhang ','Jiong ','Chan ','Fu ','Zhi ','Hu ','Fan ','Chuang ','Bi ','Hei ','[?] ','Mi ','Qiao ','Chan ','Fen ','Meng ','Bang ','Chou ','Mie ','Chu ','Jie ','Xian ','Lan ','Gan ','Ping ','Nian ','Qian ','Bing ','Bing ','Xing ','Gan ','Yao ','Huan ','You ','You ','Ji ','Yan ','Pi ','Ting ','Ze ','Guang ','Zhuang ','Mo ','Qing ','Bi ','Qin ','Dun ','Chuang ','Gui ','Ya ','Bai ','Jie ','Xu ','Lu ','Wu ','[?] ','Ku ','Ying ','Di ','Pao ','Dian ','Ya ','Miao ','Geng ','Ci ','Fu ','Tong ','Pang ','Fei ','Xiang ','Yi ','Zhi ','Tiao ','Zhi ','Xiu ','Du ','Zuo ','Xiao ','Tu ','Gui ','Ku ','Pang ','Ting ','You ','Bu ','Ding ','Cheng ','Lai ','Bei ','Ji ','An ','Shu ','Kang ','Yong ','Tuo ','Song ','Shu ','Qing ','Yu ','Yu ','Miao ','Sou ','Ce ','Xiang ','Fei ','Jiu ','He ','Hui ','Liu ','Sha ','Lian ','Lang ','Sou ','Jian ','Pou ','Qing ','Jiu ','Jiu ','Qin ','Ao ','Kuo ','Lou ','Yin ','Liao ','Dai ','Lu ','Yi ','Chu ','Chan ','Tu ','Si ','Xin ','Miao ','Chang ','Wu ','Fei ','Guang ','Koc ','Kuai ','Bi ','Qiang ','Xie ','Lin ','Lin ','Liao ','Lu ','[?] ','Ying ','Xian ','Ting ','Yong ','Li ','Ting ','Yin ','Xun ','Yan ','Ting ','Di ','Po ','Jian ','Hui ','Nai ','Hui ','Gong ','Nian ', +); diff --git a/cacert/www/utf8_to_ascii/db/x83.php b/cacert/www/utf8_to_ascii/db/x83.php new file mode 100644 index 0000000..d62f0fe --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x83.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x83] = array( +'Kai ','Bian ','Yi ','Qi ','Nong ','Fen ','Ju ','Yan ','Yi ','Zang ','Bi ','Yi ','Yi ','Er ','San ','Shi ','Er ','Shi ','Shi ','Gong ','Diao ','Yin ','Hu ','Fu ','Hong ','Wu ','Tui ','Chi ','Jiang ','Ba ','Shen ','Di ','Zhang ','Jue ','Tao ','Fu ','Di ','Mi ','Xian ','Hu ','Chao ','Nu ','Jing ','Zhen ','Yi ','Mi ','Quan ','Wan ','Shao ','Ruo ','Xuan ','Jing ','Dun ','Zhang ','Jiang ','Qiang ','Peng ','Dan ','Qiang ','Bi ','Bi ','She ','Dan ','Jian ','Gou ','Sei ','Fa ','Bi ','Kou ','Nagi ','Bie ','Xiao ','Dan ','Kuo ','Qiang ','Hong ','Mi ','Kuo ','Wan ','Jue ','Ji ','Ji ','Gui ','Dang ','Lu ','Lu ','Tuan ','Hui ','Zhi ','Hui ','Hui ','Yi ','Yi ','Yi ','Yi ','Huo ','Huo ','Shan ','Xing ','Wen ','Tong ','Yan ','Yan ','Yu ','Chi ','Cai ','Biao ','Diao ','Bin ','Peng ','Yong ','Piao ','Zhang ','Ying ','Chi ','Chi ','Zhuo ','Tuo ','Ji ','Pang ','Zhong ','Yi ','Wang ','Che ','Bi ','Chi ','Ling ','Fu ','Wang ','Zheng ','Cu ','Wang ','Jing ','Dai ','Xi ','Xun ','Hen ','Yang ','Huai ','Lu ','Hou ','Wa ','Cheng ','Zhi ','Xu ','Jing ','Tu ','Cong ','[?] ','Lai ','Cong ','De ','Pai ','Xi ','[?] ','Qi ','Chang ','Zhi ','Cong ','Zhou ','Lai ','Yu ','Xie ','Jie ','Jian ','Chi ','Jia ','Bian ','Huang ','Fu ','Xun ','Wei ','Pang ','Yao ','Wei ','Xi ','Zheng ','Piao ','Chi ','De ','Zheng ','Zheng ','Bie ','De ','Chong ','Che ','Jiao ','Wei ','Jiao ','Hui ','Mei ','Long ','Xiang ','Bao ','Qu ','Xin ','Shu ','Bi ','Yi ','Le ','Ren ','Dao ','Ding ','Gai ','Ji ','Ren ','Ren ','Chan ','Tan ','Te ','Te ','Gan ','Qi ','Shi ','Cun ','Zhi ','Wang ','Mang ','Xi ','Fan ','Ying ','Tian ','Min ','Min ','Zhong ','Chong ','Wu ','Ji ','Wu ','Xi ','Ye ','You ','Wan ','Cong ','Zhong ','Kuai ','Yu ','Bian ','Zhi ','Qi ','Cui ','Chen ','Tai ','Tun ','Qian ','Nian ','Hun ','Xiong ','Niu ','Wang ','Xian ','Xin ','Kang ','Hu ','Kai ','Fen ', +); diff --git a/cacert/www/utf8_to_ascii/db/x84.php b/cacert/www/utf8_to_ascii/db/x84.php new file mode 100644 index 0000000..2879789 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x84.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x84] = array( +'Huai ','Tai ','Song ','Wu ','Ou ','Chang ','Chuang ','Ju ','Yi ','Bao ','Chao ','Min ','Pei ','Zuo ','Zen ','Yang ','Kou ','Ban ','Nu ','Nao ','Zheng ','Pa ','Bu ','Tie ','Gu ','Hu ','Ju ','Da ','Lian ','Si ','Chou ','Di ','Dai ','Yi ','Tu ','You ','Fu ','Ji ','Peng ','Xing ','Yuan ','Ni ','Guai ','Fu ','Xi ','Bi ','You ','Qie ','Xuan ','Cong ','Bing ','Huang ','Xu ','Chu ','Pi ','Xi ','Xi ','Tan ','Koraeru ','Zong ','Dui ','[?] ','Ki ','Yi ','Chi ','Ren ','Xun ','Shi ','Xi ','Lao ','Heng ','Kuang ','Mu ','Zhi ','Xie ','Lian ','Tiao ','Huang ','Die ','Hao ','Kong ','Gui ','Heng ','Xi ','Xiao ','Shu ','S ','Kua ','Qiu ','Yang ','Hui ','Hui ','Chi ','Jia ','Yi ','Xiong ','Guai ','Lin ','Hui ','Zi ','Xu ','Chi ','Xiang ','Nu ','Hen ','En ','Ke ','Tong ','Tian ','Gong ','Quan ','Xi ','Qia ','Yue ','Peng ','Ken ','De ','Hui ','E ','Kyuu ','Tong ','Yan ','Kai ','Ce ','Nao ','Yun ','Mang ','Yong ','Yong ','Yuan ','Pi ','Kun ','Qiao ','Yue ','Yu ','Yu ','Jie ','Xi ','Zhe ','Lin ','Ti ','Han ','Hao ','Qie ','Ti ','Bu ','Yi ','Qian ','Hui ','Xi ','Bei ','Man ','Yi ','Heng ','Song ','Quan ','Cheng ','Hui ','Wu ','Wu ','You ','Li ','Liang ','Huan ','Cong ','Yi ','Yue ','Li ','Nin ','Nao ','E ','Que ','Xuan ','Qian ','Wu ','Min ','Cong ','Fei ','Bei ','Duo ','Cui ','Chang ','Men ','Li ','Ji ','Guan ','Guan ','Xing ','Dao ','Qi ','Kong ','Tian ','Lun ','Xi ','Kan ','Kun ','Ni ','Qing ','Chou ','Dun ','Guo ','Chan ','Liang ','Wan ','Yuan ','Jin ','Ji ','Lin ','Yu ','Huo ','He ','Quan ','Tan ','Ti ','Ti ','Nie ','Wang ','Chuo ','Bu ','Hun ','Xi ','Tang ','Xin ','Wei ','Hui ','E ','Rui ','Zong ','Jian ','Yong ','Dian ','Ju ','Can ','Cheng ','De ','Bei ','Qie ','Can ','Dan ','Guan ','Duo ','Nao ','Yun ','Xiang ','Zhui ','Die ','Huang ','Chun ','Qiong ','Re ','Xing ','Ce ','Bian ','Hun ','Zong ','Ti ', +); diff --git a/cacert/www/utf8_to_ascii/db/x85.php b/cacert/www/utf8_to_ascii/db/x85.php new file mode 100644 index 0000000..9e27e31 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x85.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x85] = array( +'Qiao ','Chou ','Bei ','Xuan ','Wei ','Ge ','Qian ','Wei ','Yu ','Yu ','Bi ','Xuan ','Huan ','Min ','Bi ','Yi ','Mian ','Yong ','Kai ','Dang ','Yin ','E ','Chen ','Mou ','Ke ','Ke ','Yu ','Ai ','Qie ','Yan ','Nuo ','Gan ','Yun ','Zong ','Sai ','Leng ','Fen ','[?] ','Kui ','Kui ','Que ','Gong ','Yun ','Su ','Su ','Qi ','Yao ','Song ','Huang ','Ji ','Gu ','Ju ','Chuang ','Ni ','Xie ','Kai ','Zheng ','Yong ','Cao ','Sun ','Shen ','Bo ','Kai ','Yuan ','Xie ','Hun ','Yong ','Yang ','Li ','Sao ','Tao ','Yin ','Ci ','Xu ','Qian ','Tai ','Huang ','Yun ','Shen ','Ming ','[?] ','She ','Cong ','Piao ','Mo ','Mu ','Guo ','Chi ','Can ','Can ','Can ','Cui ','Min ','Te ','Zhang ','Tong ','Ao ','Shuang ','Man ','Guan ','Que ','Zao ','Jiu ','Hui ','Kai ','Lian ','Ou ','Song ','Jin ','Yin ','Lu ','Shang ','Wei ','Tuan ','Man ','Qian ','She ','Yong ','Qing ','Kang ','Di ','Zhi ','Lou ','Juan ','Qi ','Qi ','Yu ','Ping ','Liao ','Cong ','You ','Chong ','Zhi ','Tong ','Cheng ','Qi ','Qu ','Peng ','Bei ','Bie ','Chun ','Jiao ','Zeng ','Chi ','Lian ','Ping ','Kui ','Hui ','Qiao ','Cheng ','Yin ','Yin ','Xi ','Xi ','Dan ','Tan ','Duo ','Dui ','Dui ','Su ','Jue ','Ce ','Xiao ','Fan ','Fen ','Lao ','Lao ','Chong ','Han ','Qi ','Xian ','Min ','Jing ','Liao ','Wu ','Can ','Jue ','Cu ','Xian ','Tan ','Sheng ','Pi ','Yi ','Chu ','Xian ','Nao ','Dan ','Tan ','Jing ','Song ','Han ','Jiao ','Wai ','Huan ','Dong ','Qin ','Qin ','Qu ','Cao ','Ken ','Xie ','Ying ','Ao ','Mao ','Yi ','Lin ','Se ','Jun ','Huai ','Men ','Lan ','Ai ','Lin ','Yan ','Gua ','Xia ','Chi ','Yu ','Yin ','Dai ','Meng ','Ai ','Meng ','Dui ','Qi ','Mo ','Lan ','Men ','Chou ','Zhi ','Nuo ','Nuo ','Yan ','Yang ','Bo ','Zhi ','Kuang ','Kuang ','You ','Fu ','Liu ','Mie ','Cheng ','[?] ','Chan ','Meng ','Lan ','Huai ','Xuan ','Rang ','Chan ','Ji ','Ju ','Huan ','She ','Yi ', +); diff --git a/cacert/www/utf8_to_ascii/db/x86.php b/cacert/www/utf8_to_ascii/db/x86.php new file mode 100644 index 0000000..724be45 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x86.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x86] = array( +'Lian ','Nan ','Mi ','Tang ','Jue ','Gang ','Gang ','Gang ','Ge ','Yue ','Wu ','Jian ','Xu ','Shu ','Rong ','Xi ','Cheng ','Wo ','Jie ','Ge ','Jian ','Qiang ','Huo ','Qiang ','Zhan ','Dong ','Qi ','Jia ','Die ','Zei ','Jia ','Ji ','Shi ','Kan ','Ji ','Kui ','Gai ','Deng ','Zhan ','Chuang ','Ge ','Jian ','Jie ','Yu ','Jian ','Yan ','Lu ','Xi ','Zhan ','Xi ','Xi ','Chuo ','Dai ','Qu ','Hu ','Hu ','Hu ','E ','Shi ','Li ','Mao ','Hu ','Li ','Fang ','Suo ','Bian ','Dian ','Jiong ','Shang ','Yi ','Yi ','Shan ','Hu ','Fei ','Yan ','Shou ','T ','Cai ','Zha ','Qiu ','Le ','Bu ','Ba ','Da ','Reng ','Fu ','Hameru ','Zai ','Tuo ','Zhang ','Diao ','Kang ','Yu ','Ku ','Han ','Shen ','Cha ','Yi ','Gu ','Kou ','Wu ','Tuo ','Qian ','Zhi ','Ren ','Kuo ','Men ','Sao ','Yang ','Niu ','Ban ','Che ','Rao ','Xi ','Qian ','Ban ','Jia ','Yu ','Fu ','Ao ','Xi ','Pi ','Zhi ','Zi ','E ','Dun ','Zhao ','Cheng ','Ji ','Yan ','Kuang ','Bian ','Chao ','Ju ','Wen ','Hu ','Yue ','Jue ','Ba ','Qin ','Zhen ','Zheng ','Yun ','Wan ','Nu ','Yi ','Shu ','Zhua ','Pou ','Tou ','Dou ','Kang ','Zhe ','Pou ','Fu ','Pao ','Ba ','Ao ','Ze ','Tuan ','Kou ','Lun ','Qiang ','[?] ','Hu ','Bao ','Bing ','Zhi ','Peng ','Tan ','Pu ','Pi ','Tai ','Yao ','Zhen ','Zha ','Yang ','Bao ','He ','Ni ','Yi ','Di ','Chi ','Pi ','Za ','Mo ','Mo ','Shen ','Ya ','Chou ','Qu ','Min ','Chu ','Jia ','Fu ','Zhan ','Zhu ','Dan ','Chai ','Mu ','Nian ','La ','Fu ','Pao ','Ban ','Pai ','Ling ','Na ','Guai ','Qian ','Ju ','Tuo ','Ba ','Tuo ','Tuo ','Ao ','Ju ','Zhuo ','Pan ','Zhao ','Bai ','Bai ','Di ','Ni ','Ju ','Kuo ','Long ','Jian ','[?] ','Yong ','Lan ','Ning ','Bo ','Ze ','Qian ','Hen ','Gua ','Shi ','Jie ','Zheng ','Nin ','Gong ','Gong ','Quan ','Shuan ','Cun ','Zan ','Kao ','Chi ','Xie ','Ce ','Hui ','Pin ','Zhuai ','Shi ','Na ', +); diff --git a/cacert/www/utf8_to_ascii/db/x87.php b/cacert/www/utf8_to_ascii/db/x87.php new file mode 100644 index 0000000..8a53a74 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x87.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x87] = array( +'Bo ','Chi ','Gua ','Zhi ','Kuo ','Duo ','Duo ','Zhi ','Qie ','An ','Nong ','Zhen ','Ge ','Jiao ','Ku ','Dong ','Ru ','Tiao ','Lie ','Zha ','Lu ','Die ','Wa ','Jue ','Mushiru ','Ju ','Zhi ','Luan ','Ya ','Zhua ','Ta ','Xie ','Nao ','Dang ','Jiao ','Zheng ','Ji ','Hui ','Xun ','Ku ','Ai ','Tuo ','Nuo ','Cuo ','Bo ','Geng ','Ti ','Zhen ','Cheng ','Suo ','Suo ','Keng ','Mei ','Long ','Ju ','Peng ','Jian ','Yi ','Ting ','Shan ','Nuo ','Wan ','Xie ','Cha ','Feng ','Jiao ','Wu ','Jun ','Jiu ','Tong ','Kun ','Huo ','Tu ','Zhuo ','Pou ','Le ','Ba ','Han ','Shao ','Nie ','Juan ','Ze ','Song ','Ye ','Jue ','Bu ','Huan ','Bu ','Zun ','Yi ','Zhai ','Lu ','Sou ','Tuo ','Lao ','Sun ','Bang ','Jian ','Huan ','Dao ','[?] ','Wan ','Qin ','Peng ','She ','Lie ','Min ','Men ','Fu ','Bai ','Ju ','Dao ','Wo ','Ai ','Juan ','Yue ','Zong ','Chen ','Chui ','Jie ','Tu ','Ben ','Na ','Nian ','Nuo ','Zu ','Wo ','Xi ','Xian ','Cheng ','Dian ','Sao ','Lun ','Qing ','Gang ','Duo ','Shou ','Diao ','Pou ','Di ','Zhang ','Gun ','Ji ','Tao ','Qia ','Qi ','Pai ','Shu ','Qian ','Ling ','Yi ','Ya ','Jue ','Zheng ','Liang ','Gua ','Yi ','Huo ','Shan ','Zheng ','Lue ','Cai ','Tan ','Che ','Bing ','Jie ','Ti ','Kong ','Tui ','Yan ','Cuo ','Zou ','Ju ','Tian ','Qian ','Ken ','Bai ','Shou ','Jie ','Lu ','Guo ','Haba ','[?] ','Zhi ','Dan ','Mang ','Xian ','Sao ','Guan ','Peng ','Yuan ','Nuo ','Jian ','Zhen ','Jiu ','Jian ','Yu ','Yan ','Kui ','Nan ','Hong ','Rou ','Pi ','Wei ','Sai ','Zou ','Xuan ','Miao ','Ti ','Nie ','Cha ','Shi ','Zong ','Zhen ','Yi ','Shun ','Heng ','Bian ','Yang ','Huan ','Yan ','Zuan ','An ','Xu ','Ya ','Wo ','Ke ','Chuai ','Ji ','Ti ','La ','La ','Cheng ','Kai ','Jiu ','Jiu ','Tu ','Jie ','Hui ','Geng ','Chong ','Shuo ','She ','Xie ','Yuan ','Qian ','Ye ','Cha ','Zha ','Bei ','Yao ','[?] ','[?] ','Lan ','Wen ','Qin ', +); diff --git a/cacert/www/utf8_to_ascii/db/x88.php b/cacert/www/utf8_to_ascii/db/x88.php new file mode 100644 index 0000000..a6d1b18 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x88.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x88] = array( +'Chan ','Ge ','Lou ','Zong ','Geng ','Jiao ','Gou ','Qin ','Yong ','Que ','Chou ','Chi ','Zhan ','Sun ','Sun ','Bo ','Chu ','Rong ','Beng ','Cuo ','Sao ','Ke ','Yao ','Dao ','Zhi ','Nu ','Xie ','Jian ','Sou ','Qiu ','Gao ','Xian ','Shuo ','Sang ','Jin ','Mie ','E ','Chui ','Nuo ','Shan ','Ta ','Jie ','Tang ','Pan ','Ban ','Da ','Li ','Tao ','Hu ','Zhi ','Wa ','Xia ','Qian ','Wen ','Qiang ','Tian ','Zhen ','E ','Xi ','Nuo ','Quan ','Cha ','Zha ','Ge ','Wu ','En ','She ','Kang ','She ','Shu ','Bai ','Yao ','Bin ','Sou ','Tan ','Sa ','Chan ','Suo ','Liao ','Chong ','Chuang ','Guo ','Bing ','Feng ','Shuai ','Di ','Qi ','Sou ','Zhai ','Lian ','Tang ','Chi ','Guan ','Lu ','Luo ','Lou ','Zong ','Gai ','Hu ','Zha ','Chuang ','Tang ','Hua ','Cui ','Nai ','Mo ','Jiang ','Gui ','Ying ','Zhi ','Ao ','Zhi ','Nie ','Man ','Shan ','Kou ','Shu ','Suo ','Tuan ','Jiao ','Mo ','Mo ','Zhe ','Xian ','Keng ','Piao ','Jiang ','Yin ','Gou ','Qian ','Lue ','Ji ','Ying ','Jue ','Pie ','Pie ','Lao ','Dun ','Xian ','Ruan ','Kui ','Zan ','Yi ','Xun ','Cheng ','Cheng ','Sa ','Nao ','Heng ','Si ','Qian ','Huang ','Da ','Zun ','Nian ','Lin ','Zheng ','Hui ','Zhuang ','Jiao ','Ji ','Cao ','Dan ','Dan ','Che ','Bo ','Che ','Jue ','Xiao ','Liao ','Ben ','Fu ','Qiao ','Bo ','Cuo ','Zhuo ','Zhuan ','Tuo ','Pu ','Qin ','Dun ','Nian ','[?] ','Xie ','Lu ','Jiao ','Cuan ','Ta ','Han ','Qiao ','Zhua ','Jian ','Gan ','Yong ','Lei ','Kuo ','Lu ','Shan ','Zhuo ','Ze ','Pu ','Chuo ','Ji ','Dang ','Suo ','Cao ','Qing ','Jing ','Huan ','Jie ','Qin ','Kuai ','Dan ','Xi ','Ge ','Pi ','Bo ','Ao ','Ju ','Ye ','[?] ','Mang ','Sou ','Mi ','Ji ','Tai ','Zhuo ','Dao ','Xing ','Lan ','Ca ','Ju ','Ye ','Ru ','Ye ','Ye ','Ni ','Hu ','Ji ','Bin ','Ning ','Ge ','Zhi ','Jie ','Kuo ','Mo ','Jian ','Xie ','Lie ','Tan ','Bai ','Sou ','Lu ','Lue ','Rao ','Zhi ', +); diff --git a/cacert/www/utf8_to_ascii/db/x89.php b/cacert/www/utf8_to_ascii/db/x89.php new file mode 100644 index 0000000..1501851 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x89.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x89] = array( +'Pan ','Yang ','Lei ','Sa ','Shu ','Zan ','Nian ','Xian ','Jun ','Huo ','Li ','La ','Han ','Ying ','Lu ','Long ','Qian ','Qian ','Zan ','Qian ','Lan ','San ','Ying ','Mei ','Rang ','Chan ','[?] ','Cuan ','Xi ','She ','Luo ','Jun ','Mi ','Li ','Zan ','Luan ','Tan ','Zuan ','Li ','Dian ','Wa ','Dang ','Jiao ','Jue ','Lan ','Li ','Nang ','Zhi ','Gui ','Gui ','Qi ','Xin ','Pu ','Sui ','Shou ','Kao ','You ','Gai ','Yi ','Gong ','Gan ','Ban ','Fang ','Zheng ','Bo ','Dian ','Kou ','Min ','Wu ','Gu ','He ','Ce ','Xiao ','Mi ','Chu ','Ge ','Di ','Xu ','Jiao ','Min ','Chen ','Jiu ','Zhen ','Duo ','Yu ','Chi ','Ao ','Bai ','Xu ','Jiao ','Duo ','Lian ','Nie ','Bi ','Chang ','Dian ','Duo ','Yi ','Gan ','San ','Ke ','Yan ','Dun ','Qi ','Dou ','Xiao ','Duo ','Jiao ','Jing ','Yang ','Xia ','Min ','Shu ','Ai ','Qiao ','Ai ','Zheng ','Di ','Zhen ','Fu ','Shu ','Liao ','Qu ','Xiong ','Xi ','Jiao ','Sen ','Jiao ','Zhuo ','Yi ','Lian ','Bi ','Li ','Xiao ','Xiao ','Wen ','Xue ','Qi ','Qi ','Zhai ','Bin ','Jue ','Zhai ','[?] ','Fei ','Ban ','Ban ','Lan ','Yu ','Lan ','Wei ','Dou ','Sheng ','Liao ','Jia ','Hu ','Xie ','Jia ','Yu ','Zhen ','Jiao ','Wo ','Tou ','Chu ','Jin ','Chi ','Yin ','Fu ','Qiang ','Zhan ','Qu ','Zhuo ','Zhan ','Duan ','Zhuo ','Si ','Xin ','Zhuo ','Zhuo ','Qin ','Lin ','Zhuo ','Chu ','Duan ','Zhu ','Fang ','Xie ','Hang ','Yu ','Shi ','Pei ','You ','Mye ','Pang ','Qi ','Zhan ','Mao ','Lu ','Pei ','Pi ','Liu ','Fu ','Fang ','Xuan ','Jing ','Jing ','Ni ','Zu ','Zhao ','Yi ','Liu ','Shao ','Jian ','Es ','Yi ','Qi ','Zhi ','Fan ','Piao ','Fan ','Zhan ','Guai ','Sui ','Yu ','Wu ','Ji ','Ji ','Ji ','Huo ','Ri ','Dan ','Jiu ','Zhi ','Zao ','Xie ','Tiao ','Xun ','Xu ','Xu ','Xu ','Gan ','Han ','Tai ','Di ','Xu ','Chan ','Shi ','Kuang ','Yang ','Shi ','Wang ','Min ','Min ','Tun ','Chun ','Wu ', +); diff --git a/cacert/www/utf8_to_ascii/db/x8a.php b/cacert/www/utf8_to_ascii/db/x8a.php new file mode 100644 index 0000000..0d402f3 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x8a.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x8a] = array( +'Yun ','Bei ','Ang ','Ze ','Ban ','Jie ','Kun ','Sheng ','Hu ','Fang ','Hao ','Gui ','Chang ','Xuan ','Ming ','Hun ','Fen ','Qin ','Hu ','Yi ','Xi ','Xin ','Yan ','Ze ','Fang ','Tan ','Shen ','Ju ','Yang ','Zan ','Bing ','Xing ','Ying ','Xuan ','Pei ','Zhen ','Ling ','Chun ','Hao ','Mei ','Zuo ','Mo ','Bian ','Xu ','Hun ','Zhao ','Zong ','Shi ','Shi ','Yu ','Fei ','Die ','Mao ','Ni ','Chang ','Wen ','Dong ','Ai ','Bing ','Ang ','Zhou ','Long ','Xian ','Kuang ','Tiao ','Chao ','Shi ','Huang ','Huang ','Xuan ','Kui ','Xu ','Jiao ','Jin ','Zhi ','Jin ','Shang ','Tong ','Hong ','Yan ','Gai ','Xiang ','Shai ','Xiao ','Ye ','Yun ','Hui ','Han ','Han ','Jun ','Wan ','Xian ','Kun ','Zhou ','Xi ','Cheng ','Sheng ','Bu ','Zhe ','Zhe ','Wu ','Han ','Hui ','Hao ','Chen ','Wan ','Tian ','Zhuo ','Zui ','Zhou ','Pu ','Jing ','Xi ','Shan ','Yi ','Xi ','Qing ','Qi ','Jing ','Gui ','Zhen ','Yi ','Zhi ','An ','Wan ','Lin ','Liang ','Chang ','Wang ','Xiao ','Zan ','Hi ','Xuan ','Xuan ','Yi ','Xia ','Yun ','Hui ','Fu ','Min ','Kui ','He ','Ying ','Du ','Wei ','Shu ','Qing ','Mao ','Nan ','Jian ','Nuan ','An ','Yang ','Chun ','Yao ','Suo ','Jin ','Ming ','Jiao ','Kai ','Gao ','Weng ','Chang ','Qi ','Hao ','Yan ','Li ','Ai ','Ji ','Gui ','Men ','Zan ','Xie ','Hao ','Mu ','Mo ','Cong ','Ni ','Zhang ','Hui ','Bao ','Han ','Xuan ','Chuan ','Liao ','Xian ','Dan ','Jing ','Pie ','Lin ','Tun ','Xi ','Yi ','Ji ','Huang ','Tai ','Ye ','Ye ','Li ','Tan ','Tong ','Xiao ','Fei ','Qin ','Zhao ','Hao ','Yi ','Xiang ','Xing ','Sen ','Jiao ','Bao ','Jing ','Yian ','Ai ','Ye ','Ru ','Shu ','Meng ','Xun ','Yao ','Pu ','Li ','Chen ','Kuang ','Die ','[?] ','Yan ','Huo ','Lu ','Xi ','Rong ','Long ','Nang ','Luo ','Luan ','Shai ','Tang ','Yan ','Chu ','Yue ','Yue ','Qu ','Yi ','Geng ','Ye ','Hu ','He ','Shu ','Cao ','Cao ','Noboru ','Man ','Ceng ','Ceng ','Ti ', +); diff --git a/cacert/www/utf8_to_ascii/db/x8b.php b/cacert/www/utf8_to_ascii/db/x8b.php new file mode 100644 index 0000000..f75ec5e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x8b.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x8b] = array( +'Zui ','Can ','Xu ','Hui ','Yin ','Qie ','Fen ','Pi ','Yue ','You ','Ruan ','Peng ','Ban ','Fu ','Ling ','Fei ','Qu ','[?] ','Nu ','Tiao ','Shuo ','Zhen ','Lang ','Lang ','Juan ','Ming ','Huang ','Wang ','Tun ','Zhao ','Ji ','Qi ','Ying ','Zong ','Wang ','Tong ','Lang ','[?] ','Meng ','Long ','Mu ','Deng ','Wei ','Mo ','Ben ','Zha ','Zhu ','Zhu ','[?] ','Zhu ','Ren ','Ba ','Po ','Duo ','Duo ','Dao ','Li ','Qiu ','Ji ','Jiu ','Bi ','Xiu ','Ting ','Ci ','Sha ','Eburi ','Za ','Quan ','Qian ','Yu ','Gan ','Wu ','Cha ','Shan ','Xun ','Fan ','Wu ','Zi ','Li ','Xing ','Cai ','Cun ','Ren ','Shao ','Tuo ','Di ','Zhang ','Mang ','Chi ','Yi ','Gu ','Gong ','Du ','Yi ','Qi ','Shu ','Gang ','Tiao ','Moku ','Soma ','Tochi ','Lai ','Sugi ','Mang ','Yang ','Ma ','Miao ','Si ','Yuan ','Hang ','Fei ','Bei ','Jie ','Dong ','Gao ','Yao ','Xian ','Chu ','Qun ','Pa ','Shu ','Hua ','Xin ','Chou ','Zhu ','Chou ','Song ','Ban ','Song ','Ji ','Yue ','Jin ','Gou ','Ji ','Mao ','Pi ','Bi ','Wang ','Ang ','Fang ','Fen ','Yi ','Fu ','Nan ','Xi ','Hu ','Ya ','Dou ','Xun ','Zhen ','Yao ','Lin ','Rui ','E ','Mei ','Zhao ','Guo ','Zhi ','Cong ','Yun ','Waku ','Dou ','Shu ','Zao ','[?] ','Li ','Haze ','Jian ','Cheng ','Matsu ','Qiang ','Feng ','Nan ','Xiao ','Xian ','Ku ','Ping ','Yi ','Xi ','Zhi ','Guai ','Xiao ','Jia ','Jia ','Gou ','Fu ','Mo ','Yi ','Ye ','Ye ','Shi ','Nie ','Bi ','Duo ','Yi ','Ling ','Bing ','Ni ','La ','He ','Pan ','Fan ','Zhong ','Dai ','Ci ','Yang ','Fu ','Bo ','Mou ','Gan ','Qi ','Ran ','Rou ','Mao ','Zhao ','Song ','Zhe ','Xia ','You ','Shen ','Ju ','Tuo ','Zuo ','Nan ','Ning ','Yong ','Di ','Zhi ','Zha ','Cha ','Dan ','Gu ','Pu ','Jiu ','Ao ','Fu ','Jian ','Bo ','Duo ','Ke ','Nai ','Zhu ','Bi ','Liu ','Chai ','Zha ','Si ','Zhu ','Pei ','Shi ','Guai ','Cha ','Yao ','Jue ','Jiu ','Shi ', +); diff --git a/cacert/www/utf8_to_ascii/db/x8c.php b/cacert/www/utf8_to_ascii/db/x8c.php new file mode 100644 index 0000000..278d263 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x8c.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x8c] = array( +'Zhi ','Liu ','Mei ','Hoy ','Rong ','Zha ','[?] ','Biao ','Zhan ','Jie ','Long ','Dong ','Lu ','Sayng ','Li ','Lan ','Yong ','Shu ','Xun ','Shuan ','Qi ','Zhen ','Qi ','Li ','Yi ','Xiang ','Zhen ','Li ','Su ','Gua ','Kan ','Bing ','Ren ','Xiao ','Bo ','Ren ','Bing ','Zi ','Chou ','Yi ','Jie ','Xu ','Zhu ','Jian ','Zui ','Er ','Er ','You ','Fa ','Gong ','Kao ','Lao ','Zhan ','Li ','Yin ','Yang ','He ','Gen ','Zhi ','Chi ','Ge ','Zai ','Luan ','Fu ','Jie ','Hang ','Gui ','Tao ','Guang ','Wei ','Kuang ','Ru ','An ','An ','Juan ','Yi ','Zhuo ','Ku ','Zhi ','Qiong ','Tong ','Sang ','Sang ','Huan ','Jie ','Jiu ','Xue ','Duo ','Zhui ','Yu ','Zan ','Kasei ','Ying ','Masu ','[?] ','Zhan ','Ya ','Nao ','Zhen ','Dang ','Qi ','Qiao ','Hua ','Kuai ','Jiang ','Zhuang ','Xun ','Suo ','Sha ','Zhen ','Bei ','Ting ','Gua ','Jing ','Bo ','Ben ','Fu ','Rui ','Tong ','Jue ','Xi ','Lang ','Liu ','Feng ','Qi ','Wen ','Jun ','Gan ','Cu ','Liang ','Qiu ','Ting ','You ','Mei ','Bang ','Long ','Peng ','Zhuang ','Di ','Xuan ','Tu ','Zao ','Ao ','Gu ','Bi ','Di ','Han ','Zi ','Zhi ','Ren ','Bei ','Geng ','Jian ','Huan ','Wan ','Nuo ','Jia ','Tiao ','Ji ','Xiao ','Lu ','Huan ','Shao ','Cen ','Fen ','Song ','Meng ','Wu ','Li ','Li ','Dou ','Cen ','Ying ','Suo ','Ju ','Ti ','Jie ','Kun ','Zhuo ','Shu ','Chan ','Fan ','Wei ','Jing ','Li ','Bing ','Fumoto ','Shikimi ','Tao ','Zhi ','Lai ','Lian ','Jian ','Zhuo ','Ling ','Li ','Qi ','Bing ','Zhun ','Cong ','Qian ','Mian ','Qi ','Qi ','Cai ','Gun ','Chan ','Te ','Fei ','Pai ','Bang ','Pou ','Hun ','Zong ','Cheng ','Zao ','Ji ','Li ','Peng ','Yu ','Yu ','Gu ','Hun ','Dong ','Tang ','Gang ','Wang ','Di ','Xi ','Fan ','Cheng ','Zhan ','Qi ','Yuan ','Yan ','Yu ','Quan ','Yi ','Sen ','Ren ','Chui ','Leng ','Qi ','Zhuo ','Fu ','Ke ','Lai ','Zou ','Zou ','Zhuo ','Guan ','Fen ','Fen ','Chen ','Qiong ','Nie ', +); diff --git a/cacert/www/utf8_to_ascii/db/x8d.php b/cacert/www/utf8_to_ascii/db/x8d.php new file mode 100644 index 0000000..4e56527 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x8d.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x8d] = array( +'Wan ','Guo ','Lu ','Hao ','Jie ','Yi ','Chou ','Ju ','Ju ','Cheng ','Zuo ','Liang ','Qiang ','Zhi ','Zhui ','Ya ','Ju ','Bei ','Jiao ','Zhuo ','Zi ','Bin ','Peng ','Ding ','Chu ','Chang ','Kunugi ','Momiji ','Jian ','Gui ','Xi ','Du ','Qian ','Kunugi ','Soko ','Shide ','Luo ','Zhi ','Ken ','Myeng ','Tafu ','[?] ','Peng ','Zhan ','[?] ','Tuo ','Sen ','Duo ','Ye ','Fou ','Wei ','Wei ','Duan ','Jia ','Zong ','Jian ','Yi ','Shen ','Xi ','Yan ','Yan ','Chuan ','Zhan ','Chun ','Yu ','He ','Zha ','Wo ','Pian ','Bi ','Yao ','Huo ','Xu ','Ruo ','Yang ','La ','Yan ','Ben ','Hun ','Kui ','Jie ','Kui ','Si ','Feng ','Xie ','Tuo ','Zhi ','Jian ','Mu ','Mao ','Chu ','Hu ','Hu ','Lian ','Leng ','Ting ','Nan ','Yu ','You ','Mei ','Song ','Xuan ','Xuan ','Ying ','Zhen ','Pian ','Ye ','Ji ','Jie ','Ye ','Chu ','Shun ','Yu ','Cou ','Wei ','Mei ','Di ','Ji ','Jie ','Kai ','Qiu ','Ying ','Rou ','Heng ','Lou ','Le ','Hazou ','Katsura ','Pin ','Muro ','Gai ','Tan ','Lan ','Yun ','Yu ','Chen ','Lu ','Ju ','Sakaki ','[?] ','Pi ','Xie ','Jia ','Yi ','Zhan ','Fu ','Nai ','Mi ','Lang ','Rong ','Gu ','Jian ','Ju ','Ta ','Yao ','Zhen ','Bang ','Sha ','Yuan ','Zi ','Ming ','Su ','Jia ','Yao ','Jie ','Huang ','Gan ','Fei ','Zha ','Qian ','Ma ','Sun ','Yuan ','Xie ','Rong ','Shi ','Zhi ','Cui ','Yun ','Ting ','Liu ','Rong ','Tang ','Que ','Zhai ','Si ','Sheng ','Ta ','Ke ','Xi ','Gu ','Qi ','Kao ','Gao ','Sun ','Pan ','Tao ','Ge ','Xun ','Dian ','Nou ','Ji ','Shuo ','Gou ','Chui ','Qiang ','Cha ','Qian ','Huai ','Mei ','Xu ','Gang ','Gao ','Zhuo ','Tuo ','Hashi ','Yang ','Dian ','Jia ','Jian ','Zui ','Kashi ','Ori ','Bin ','Zhu ','[?] ','Xi ','Qi ','Lian ','Hui ','Yong ','Qian ','Guo ','Gai ','Gai ','Tuan ','Hua ','Cu ','Sen ','Cui ','Beng ','You ','Hu ','Jiang ','Hu ','Huan ','Kui ','Yi ','Nie ','Gao ','Kang ','Gui ','Gui ','Cao ','Man ','Jin ', +); diff --git a/cacert/www/utf8_to_ascii/db/x8e.php b/cacert/www/utf8_to_ascii/db/x8e.php new file mode 100644 index 0000000..5ef88a6 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x8e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x8e] = array( +'Di ','Zhuang ','Le ','Lang ','Chen ','Cong ','Li ','Xiu ','Qing ','Shuang ','Fan ','Tong ','Guan ','Ji ','Suo ','Lei ','Lu ','Liang ','Mi ','Lou ','Chao ','Su ','Ke ','Shu ','Tang ','Biao ','Lu ','Jiu ','Shu ','Zha ','Shu ','Zhang ','Men ','Mo ','Niao ','Yang ','Tiao ','Peng ','Zhu ','Sha ','Xi ','Quan ','Heng ','Jian ','Cong ','[?] ','Hokuso ','Qiang ','Tara ','Ying ','Er ','Xin ','Zhi ','Qiao ','Zui ','Cong ','Pu ','Shu ','Hua ','Kui ','Zhen ','Zun ','Yue ','Zhan ','Xi ','Xun ','Dian ','Fa ','Gan ','Mo ','Wu ','Qiao ','Nao ','Lin ','Liu ','Qiao ','Xian ','Run ','Fan ','Zhan ','Tuo ','Lao ','Yun ','Shun ','Tui ','Cheng ','Tang ','Meng ','Ju ','Cheng ','Su ','Jue ','Jue ','Tan ','Hui ','Ji ','Nuo ','Xiang ','Tuo ','Ning ','Rui ','Zhu ','Chuang ','Zeng ','Fen ','Qiong ','Ran ','Heng ','Cen ','Gu ','Liu ','Lao ','Gao ','Chu ','Zusa ','Nude ','Ca ','San ','Ji ','Dou ','Shou ','Lu ','[?] ','[?] ','Yuan ','Ta ','Shu ','Jiang ','Tan ','Lin ','Nong ','Yin ','Xi ','Sui ','Shan ','Zui ','Xuan ','Cheng ','Gan ','Ju ','Zui ','Yi ','Qin ','Pu ','Yan ','Lei ','Feng ','Hui ','Dang ','Ji ','Sui ','Bo ','Bi ','Ding ','Chu ','Zhua ','Kuai ','Ji ','Jie ','Jia ','Qing ','Zhe ','Jian ','Qiang ','Dao ','Yi ','Biao ','Song ','She ','Lin ','Kunugi ','Cha ','Meng ','Yin ','Tao ','Tai ','Mian ','Qi ','Toan ','Bin ','Huo ','Ji ','Qian ','Mi ','Ning ','Yi ','Gao ','Jian ','Yin ','Er ','Qing ','Yan ','Qi ','Mi ','Zhao ','Gui ','Chun ','Ji ','Kui ','Po ','Deng ','Chu ','[?] ','Mian ','You ','Zhi ','Guang ','Qian ','Lei ','Lei ','Sa ','Lu ','Li ','Cuan ','Lu ','Mie ','Hui ','Ou ','Lu ','Jie ','Gao ','Du ','Yuan ','Li ','Fei ','Zhuo ','Sou ','Lian ','Tamo ','Chu ','[?] ','Zhu ','Lu ','Yan ','Li ','Zhu ','Chen ','Jie ','E ','Su ','Huai ','Nie ','Yu ','Long ','Lai ','[?] ','Xian ','Kwi ','Ju ','Xiao ','Ling ','Ying ','Jian ','Yin ','You ','Ying ', +); diff --git a/cacert/www/utf8_to_ascii/db/x8f.php b/cacert/www/utf8_to_ascii/db/x8f.php new file mode 100644 index 0000000..cff460a --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x8f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x8f] = array( +'Xiang ','Nong ','Bo ','Chan ','Lan ','Ju ','Shuang ','She ','Wei ','Cong ','Quan ','Qu ','Cang ','[?] ','Yu ','Luo ','Li ','Zan ','Luan ','Dang ','Jue ','Em ','Lan ','Lan ','Zhu ','Lei ','Li ','Ba ','Nang ','Yu ','Ling ','Tsuki ','Qian ','Ci ','Huan ','Xin ','Yu ','Yu ','Qian ','Ou ','Xu ','Chao ','Chu ','Chi ','Kai ','Yi ','Jue ','Xi ','Xu ','Xia ','Yu ','Kuai ','Lang ','Kuan ','Shuo ','Xi ','Ai ','Yi ','Qi ','Hu ','Chi ','Qin ','Kuan ','Kan ','Kuan ','Kan ','Chuan ','Sha ','Gua ','Yin ','Xin ','Xie ','Yu ','Qian ','Xiao ','Yi ','Ge ','Wu ','Tan ','Jin ','Ou ','Hu ','Ti ','Huan ','Xu ','Pen ','Xi ','Xiao ','Xu ','Xi ','Sen ','Lian ','Chu ','Yi ','Kan ','Yu ','Chuo ','Huan ','Zhi ','Zheng ','Ci ','Bu ','Wu ','Qi ','Bu ','Bu ','Wai ','Ju ','Qian ','Chi ','Se ','Chi ','Se ','Zhong ','Sui ','Sui ','Li ','Cuo ','Yu ','Li ','Gui ','Dai ','Dai ','Si ','Jian ','Zhe ','Mo ','Mo ','Yao ','Mo ','Cu ','Yang ','Tian ','Sheng ','Dai ','Shang ','Xu ','Xun ','Shu ','Can ','Jue ','Piao ','Qia ','Qiu ','Su ','Qing ','Yun ','Lian ','Yi ','Fou ','Zhi ','Ye ','Can ','Hun ','Dan ','Ji ','Ye ','Zhen ','Yun ','Wen ','Chou ','Bin ','Ti ','Jin ','Shang ','Yin ','Diao ','Cu ','Hui ','Cuan ','Yi ','Dan ','Du ','Jiang ','Lian ','Bin ','Du ','Tsukusu ','Jian ','Shu ','Ou ','Duan ','Zhu ','Yin ','Qing ','Yi ','Sha ','Que ','Ke ','Yao ','Jun ','Dian ','Hui ','Hui ','Gu ','Que ','Ji ','Yi ','Ou ','Hui ','Duan ','Yi ','Xiao ','Wu ','Guan ','Mu ','Mei ','Mei ','Ai ','Zuo ','Du ','Yu ','Bi ','Bi ','Bi ','Pi ','Pi ','Bi ','Chan ','Mao ','[?] ','[?] ','Pu ','Mushiru ','Jia ','Zhan ','Sai ','Mu ','Tuo ','Xun ','Er ','Rong ','Xian ','Ju ','Mu ','Hao ','Qiu ','Dou ','Mushiru ','Tan ','Pei ','Ju ','Duo ','Cui ','Bi ','San ','[?] ','Mao ','Sui ','Yu ','Yu ','Tuo ','He ','Jian ','Ta ','San ', +); diff --git a/cacert/www/utf8_to_ascii/db/x90.php b/cacert/www/utf8_to_ascii/db/x90.php new file mode 100644 index 0000000..28960ad --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x90.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x90] = array( +'Lu ','Mu ','Li ','Tong ','Rong ','Chang ','Pu ','Luo ','Zhan ','Sao ','Zhan ','Meng ','Luo ','Qu ','Die ','Shi ','Di ','Min ','Jue ','Mang ','Qi ','Pie ','Nai ','Qi ','Dao ','Xian ','Chuan ','Fen ','Ri ','Nei ','[?] ','Fu ','Shen ','Dong ','Qing ','Qi ','Yin ','Xi ','Hai ','Yang ','An ','Ya ','Ke ','Qing ','Ya ','Dong ','Dan ','Lu ','Qing ','Yang ','Yun ','Yun ','Shui ','San ','Zheng ','Bing ','Yong ','Dang ','Shitamizu ','Le ','Ni ','Tun ','Fan ','Gui ','Ting ','Zhi ','Qiu ','Bin ','Ze ','Mian ','Cuan ','Hui ','Diao ','Yi ','Cha ','Zhuo ','Chuan ','Wan ','Fan ','Dai ','Xi ','Tuo ','Mang ','Qiu ','Qi ','Shan ','Pai ','Han ','Qian ','Wu ','Wu ','Xun ','Si ','Ru ','Gong ','Jiang ','Chi ','Wu ','Tsuchi ','[?] ','Tang ','Zhi ','Chi ','Qian ','Mi ','Yu ','Wang ','Qing ','Jing ','Rui ','Jun ','Hong ','Tai ','Quan ','Ji ','Bian ','Bian ','Gan ','Wen ','Zhong ','Fang ','Xiong ','Jue ','Hang ','Niou ','Qi ','Fen ','Xu ','Xu ','Qin ','Yi ','Wo ','Yun ','Yuan ','Hang ','Yan ','Chen ','Chen ','Dan ','You ','Dun ','Hu ','Huo ','Qie ','Mu ','Rou ','Mei ','Ta ','Mian ','Wu ','Chong ','Tian ','Bi ','Sha ','Zhi ','Pei ','Pan ','Zhui ','Za ','Gou ','Liu ','Mei ','Ze ','Feng ','Ou ','Li ','Lun ','Cang ','Feng ','Wei ','Hu ','Mo ','Mei ','Shu ','Ju ','Zan ','Tuo ','Tuo ','Tuo ','He ','Li ','Mi ','Yi ','Fa ','Fei ','You ','Tian ','Zhi ','Zhao ','Gu ','Zhan ','Yan ','Si ','Kuang ','Jiong ','Ju ','Xie ','Qiu ','Yi ','Jia ','Zhong ','Quan ','Bo ','Hui ','Mi ','Ben ','Zhuo ','Chu ','Le ','You ','Gu ','Hong ','Gan ','Fa ','Mao ','Si ','Hu ','Ping ','Ci ','Fan ','Chi ','Su ','Ning ','Cheng ','Ling ','Pao ','Bo ','Qi ','Si ','Ni ','Ju ','Yue ','Zhu ','Sheng ','Lei ','Xuan ','Xue ','Fu ','Pan ','Min ','Tai ','Yang ','Ji ','Yong ','Guan ','Beng ','Xue ','Long ','Lu ','[?] ','Bo ','Xie ','Po ','Ze ','Jing ','Yin ', +); diff --git a/cacert/www/utf8_to_ascii/db/x91.php b/cacert/www/utf8_to_ascii/db/x91.php new file mode 100644 index 0000000..47ecacc --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x91.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x91] = array( +'Zhou ','Ji ','Yi ','Hui ','Hui ','Zui ','Cheng ','Yin ','Wei ','Hou ','Jian ','Yang ','Lie ','Si ','Ji ','Er ','Xing ','Fu ','Sa ','Suo ','Zhi ','Yin ','Wu ','Xi ','Kao ','Zhu ','Jiang ','Luo ','[?] ','An ','Dong ','Yi ','Mou ','Lei ','Yi ','Mi ','Quan ','Jin ','Mo ','Wei ','Xiao ','Xie ','Hong ','Xu ','Shuo ','Kuang ','Tao ','Qie ','Ju ','Er ','Zhou ','Ru ','Ping ','Xun ','Xiong ','Zhi ','Guang ','Huan ','Ming ','Huo ','Wa ','Qia ','Pai ','Wu ','Qu ','Liu ','Yi ','Jia ','Jing ','Qian ','Jiang ','Jiao ','Cheng ','Shi ','Zhuo ','Ce ','Pal ','Kuai ','Ji ','Liu ','Chan ','Hun ','Hu ','Nong ','Xun ','Jin ','Lie ','Qiu ','Wei ','Zhe ','Jun ','Han ','Bang ','Mang ','Zhuo ','You ','Xi ','Bo ','Dou ','Wan ','Hong ','Yi ','Pu ','Ying ','Lan ','Hao ','Lang ','Han ','Li ','Geng ','Fu ','Wu ','Lian ','Chun ','Feng ','Yi ','Yu ','Tong ','Lao ','Hai ','Jin ','Jia ','Chong ','Weng ','Mei ','Sui ','Cheng ','Pei ','Xian ','Shen ','Tu ','Kun ','Pin ','Nie ','Han ','Jing ','Xiao ','She ','Nian ','Tu ','Yong ','Xiao ','Xian ','Ting ','E ','Su ','Tun ','Juan ','Cen ','Ti ','Li ','Shui ','Si ','Lei ','Shui ','Tao ','Du ','Lao ','Lai ','Lian ','Wei ','Wo ','Yun ','Huan ','Di ','[?] ','Run ','Jian ','Zhang ','Se ','Fu ','Guan ','Xing ','Shou ','Shuan ','Ya ','Chuo ','Zhang ','Ye ','Kong ','Wo ','Han ','Tuo ','Dong ','He ','Wo ','Ju ','Gan ','Liang ','Hun ','Ta ','Zhuo ','Dian ','Qie ','De ','Juan ','Zi ','Xi ','Yao ','Qi ','Gu ','Guo ','Han ','Lin ','Tang ','Zhou ','Peng ','Hao ','Chang ','Shu ','Qi ','Fang ','Chi ','Lu ','Nao ','Ju ','Tao ','Cong ','Lei ','Zhi ','Peng ','Fei ','Song ','Tian ','Pi ','Dan ','Yu ','Ni ','Yu ','Lu ','Gan ','Mi ','Jing ','Ling ','Lun ','Yin ','Cui ','Qu ','Huai ','Yu ','Nian ','Shen ','Piao ','Chun ','Wa ','Yuan ','Lai ','Hun ','Qing ','Yan ','Qian ','Tian ','Miao ','Zhi ','Yin ','Mi ', +); diff --git a/cacert/www/utf8_to_ascii/db/x92.php b/cacert/www/utf8_to_ascii/db/x92.php new file mode 100644 index 0000000..c78d5d1 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x92.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x92] = array( +'Ben ','Yuan ','Wen ','Re ','Fei ','Qing ','Yuan ','Ke ','Ji ','She ','Yuan ','Shibui ','Lu ','Zi ','Du ','[?] ','Jian ','Min ','Pi ','Tani ','Yu ','Yuan ','Shen ','Shen ','Rou ','Huan ','Zhu ','Jian ','Nuan ','Yu ','Qiu ','Ting ','Qu ','Du ','Feng ','Zha ','Bo ','Wo ','Wo ','Di ','Wei ','Wen ','Ru ','Xie ','Ce ','Wei ','Ge ','Gang ','Yan ','Hong ','Xuan ','Mi ','Ke ','Mao ','Ying ','Yan ','You ','Hong ','Miao ','Xing ','Mei ','Zai ','Hun ','Nai ','Kui ','Shi ','E ','Pai ','Mei ','Lian ','Qi ','Qi ','Mei ','Tian ','Cou ','Wei ','Can ','Tuan ','Mian ','Hui ','Mo ','Xu ','Ji ','Pen ','Jian ','Jian ','Hu ','Feng ','Xiang ','Yi ','Yin ','Zhan ','Shi ','Jie ','Cheng ','Huang ','Tan ','Yu ','Bi ','Min ','Shi ','Tu ','Sheng ','Yong ','Qu ','Zhong ','Suei ','Jiu ','Jiao ','Qiou ','Yin ','Tang ','Long ','Huo ','Yuan ','Nan ','Ban ','You ','Quan ','Chui ','Liang ','Chan ','Yan ','Chun ','Nie ','Zi ','Wan ','Shi ','Man ','Ying ','Ratsu ','Kui ','[?] ','Jian ','Xu ','Lu ','Gui ','Gai ','[?] ','[?] ','Po ','Jin ','Gui ','Tang ','Yuan ','Suo ','Yuan ','Lian ','Yao ','Meng ','Zhun ','Sheng ','Ke ','Tai ','Da ','Wa ','Liu ','Gou ','Sao ','Ming ','Zha ','Shi ','Yi ','Lun ','Ma ','Pu ','Wei ','Li ','Cai ','Wu ','Xi ','Wen ','Qiang ','Ze ','Shi ','Su ','Yi ','Zhen ','Sou ','Yun ','Xiu ','Yin ','Rong ','Hun ','Su ','Su ','Ni ','Ta ','Shi ','Ru ','Wei ','Pan ','Chu ','Chu ','Pang ','Weng ','Cang ','Mie ','He ','Dian ','Hao ','Huang ','Xi ','Zi ','Di ','Zhi ','Ying ','Fu ','Jie ','Hua ','Ge ','Zi ','Tao ','Teng ','Sui ','Bi ','Jiao ','Hui ','Gun ','Yin ','Gao ','Long ','Zhi ','Yan ','She ','Man ','Ying ','Chun ','Lu ','Lan ','Luan ','[?] ','Bin ','Tan ','Yu ','Sou ','Hu ','Bi ','Biao ','Zhi ','Jiang ','Kou ','Shen ','Shang ','Di ','Mi ','Ao ','Lu ','Hu ','Hu ','You ','Chan ','Fan ','Yong ','Gun ','Man ', +); diff --git a/cacert/www/utf8_to_ascii/db/x93.php b/cacert/www/utf8_to_ascii/db/x93.php new file mode 100644 index 0000000..880c34f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x93.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x93] = array( +'Qing ','Yu ','Piao ','Ji ','Ya ','Jiao ','Qi ','Xi ','Ji ','Lu ','Lu ','Long ','Jin ','Guo ','Cong ','Lou ','Zhi ','Gai ','Qiang ','Li ','Yan ','Cao ','Jiao ','Cong ','Qun ','Tuan ','Ou ','Teng ','Ye ','Xi ','Mi ','Tang ','Mo ','Shang ','Han ','Lian ','Lan ','Wa ','Li ','Qian ','Feng ','Xuan ','Yi ','Man ','Zi ','Mang ','Kang ','Lei ','Peng ','Shu ','Zhang ','Zhang ','Chong ','Xu ','Huan ','Kuo ','Jian ','Yan ','Chuang ','Liao ','Cui ','Ti ','Yang ','Jiang ','Cong ','Ying ','Hong ','Xun ','Shu ','Guan ','Ying ','Xiao ','[?] ','[?] ','Xu ','Lian ','Zhi ','Wei ','Pi ','Jue ','Jiao ','Po ','Dang ','Hui ','Jie ','Wu ','Pa ','Ji ','Pan ','Gui ','Xiao ','Qian ','Qian ','Xi ','Lu ','Xi ','Xuan ','Dun ','Huang ','Min ','Run ','Su ','Liao ','Zhen ','Zhong ','Yi ','Di ','Wan ','Dan ','Tan ','Chao ','Xun ','Kui ','Yie ','Shao ','Tu ','Zhu ','San ','Hei ','Bi ','Shan ','Chan ','Chan ','Shu ','Tong ','Pu ','Lin ','Wei ','Se ','Se ','Cheng ','Jiong ','Cheng ','Hua ','Jiao ','Lao ','Che ','Gan ','Cun ','Heng ','Si ','Shu ','Peng ','Han ','Yun ','Liu ','Hong ','Fu ','Hao ','He ','Xian ','Jian ','Shan ','Xi ','Oki ','[?] ','Lan ','[?] ','Yu ','Lin ','Min ','Zao ','Dang ','Wan ','Ze ','Xie ','Yu ','Li ','Shi ','Xue ','Ling ','Man ','Zi ','Yong ','Kuai ','Can ','Lian ','Dian ','Ye ','Ao ','Huan ','Zhen ','Chan ','Man ','Dan ','Dan ','Yi ','Sui ','Pi ','Ju ','Ta ','Qin ','Ji ','Zhuo ','Lian ','Nong ','Guo ','Jin ','Fen ','Se ','Ji ','Sui ','Hui ','Chu ','Ta ','Song ','Ding ','[?] ','Zhu ','Lai ','Bin ','Lian ','Mi ','Shi ','Shu ','Mi ','Ning ','Ying ','Ying ','Meng ','Jin ','Qi ','Pi ','Ji ','Hao ','Ru ','Zui ','Wo ','Tao ','Yin ','Yin ','Dui ','Ci ','Huo ','Jing ','Lan ','Jun ','Ai ','Pu ','Zhuo ','Wei ','Bin ','Gu ','Qian ','Xing ','Hama ','Kuo ','Fei ','[?] ','Boku ','Jian ','Wei ','Luo ','Zan ','Lu ','Li ', +); diff --git a/cacert/www/utf8_to_ascii/db/x94.php b/cacert/www/utf8_to_ascii/db/x94.php new file mode 100644 index 0000000..85729d3 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x94.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x94] = array( +'You ','Yang ','Lu ','Si ','Jie ','Ying ','Du ','Wang ','Hui ','Xie ','Pan ','Shen ','Biao ','Chan ','Mo ','Liu ','Jian ','Pu ','Se ','Cheng ','Gu ','Bin ','Huo ','Xian ','Lu ','Qin ','Han ','Ying ','Yong ','Li ','Jing ','Xiao ','Ying ','Sui ','Wei ','Xie ','Huai ','Hao ','Zhu ','Long ','Lai ','Dui ','Fan ','Hu ','Lai ','[?] ','[?] ','Ying ','Mi ','Ji ','Lian ','Jian ','Ying ','Fen ','Lin ','Yi ','Jian ','Yue ','Chan ','Dai ','Rang ','Jian ','Lan ','Fan ','Shuang ','Yuan ','Zhuo ','Feng ','She ','Lei ','Lan ','Cong ','Qu ','Yong ','Qian ','Fa ','Guan ','Que ','Yan ','Hao ','Hyeng ','Sa ','Zan ','Luan ','Yan ','Li ','Mi ','Shan ','Tan ','Dang ','Jiao ','Chan ','[?] ','Hao ','Ba ','Zhu ','Lan ','Lan ','Nang ','Wan ','Luan ','Xun ','Xian ','Yan ','Gan ','Yan ','Yu ','Huo ','Si ','Mie ','Guang ','Deng ','Hui ','Xiao ','Xiao ','Hu ','Hong ','Ling ','Zao ','Zhuan ','Jiu ','Zha ','Xie ','Chi ','Zhuo ','Zai ','Zai ','Can ','Yang ','Qi ','Zhong ','Fen ','Niu ','Jiong ','Wen ','Po ','Yi ','Lu ','Chui ','Pi ','Kai ','Pan ','Yan ','Kai ','Pang ','Mu ','Chao ','Liao ','Gui ','Kang ','Tun ','Guang ','Xin ','Zhi ','Guang ','Guang ','Wei ','Qiang ','[?] ','Da ','Xia ','Zheng ','Zhu ','Ke ','Zhao ','Fu ','Ba ','Duo ','Duo ','Ling ','Zhuo ','Xuan ','Ju ','Tan ','Pao ','Jiong ','Pao ','Tai ','Tai ','Bing ','Yang ','Tong ','Han ','Zhu ','Zha ','Dian ','Wei ','Shi ','Lian ','Chi ','Huang ','[?] ','Hu ','Shuo ','Lan ','Jing ','Jiao ','Xu ','Xing ','Quan ','Lie ','Huan ','Yang ','Xiao ','Xiu ','Xian ','Yin ','Wu ','Zhou ','Yao ','Shi ','Wei ','Tong ','Xue ','Zai ','Kai ','Hong ','Luo ','Xia ','Zhu ','Xuan ','Zheng ','Po ','Yan ','Hui ','Guang ','Zhe ','Hui ','Kao ','[?] ','Fan ','Shao ','Ye ','Hui ','[?] ','Tang ','Jin ','Re ','[?] ','Xi ','Fu ','Jiong ','Che ','Pu ','Jing ','Zhuo ','Ting ','Wan ','Hai ','Peng ','Lang ','Shan ','Hu ','Feng ','Chi ','Rong ', +); diff --git a/cacert/www/utf8_to_ascii/db/x95.php b/cacert/www/utf8_to_ascii/db/x95.php new file mode 100644 index 0000000..04cad6c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x95.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x95] = array( +'Hu ','Xi ','Shu ','He ','Xun ','Ku ','Jue ','Xiao ','Xi ','Yan ','Han ','Zhuang ','Jun ','Di ','Xie ','Ji ','Wu ','[?] ','[?] ','Han ','Yan ','Huan ','Men ','Ju ','Chou ','Bei ','Fen ','Lin ','Kun ','Hun ','Tun ','Xi ','Cui ','Wu ','Hong ','Ju ','Fu ','Wo ','Jiao ','Cong ','Feng ','Ping ','Qiong ','Ruo ','Xi ','Qiong ','Xin ','Zhuo ','Yan ','Yan ','Yi ','Jue ','Yu ','Gang ','Ran ','Pi ','Gu ','[?] ','Sheng ','Chang ','Shao ','[?] ','[?] ','[?] ','[?] ','Chen ','He ','Kui ','Zhong ','Duan ','Xia ','Hui ','Feng ','Lian ','Xuan ','Xing ','Huang ','Jiao ','Jian ','Bi ','Ying ','Zhu ','Wei ','Tuan ','Tian ','Xi ','Nuan ','Nuan ','Chan ','Yan ','Jiong ','Jiong ','Yu ','Mei ','Sha ','Wei ','Ye ','Xin ','Qiong ','Rou ','Mei ','Huan ','Xu ','Zhao ','Wei ','Fan ','Qiu ','Sui ','Yang ','Lie ','Zhu ','Jie ','Gao ','Gua ','Bao ','Hu ','Yun ','Xia ','[?] ','[?] ','Bian ','Gou ','Tui ','Tang ','Chao ','Shan ','N ','Bo ','Huang ','Xie ','Xi ','Wu ','Xi ','Yun ','He ','He ','Xi ','Yun ','Xiong ','Nai ','Shan ','Qiong ','Yao ','Xun ','Mi ','Lian ','Ying ','Wen ','Rong ','Oozutsu ','[?] ','Qiang ','Liu ','Xi ','Bi ','Biao ','Zong ','Lu ','Jian ','Shou ','Yi ','Lou ','Feng ','Sui ','Yi ','Tong ','Jue ','Zong ','Yun ','Hu ','Yi ','Zhi ','Ao ','Wei ','Liao ','Han ','Ou ','Re ','Jiong ','Man ','[?] ','Shang ','Cuan ','Zeng ','Jian ','Xi ','Xi ','Xi ','Yi ','Xiao ','Chi ','Huang ','Chan ','Ye ','Qian ','Ran ','Yan ','Xian ','Qiao ','Zun ','Deng ','Dun ','Shen ','Jiao ','Fen ','Si ','Liao ','Yu ','Lin ','Tong ','Shao ','Fen ','Fan ','Yan ','Xun ','Lan ','Mei ','Tang ','Yi ','Jing ','Men ','[?] ','[?] ','Ying ','Yu ','Yi ','Xue ','Lan ','Tai ','Zao ','Can ','Sui ','Xi ','Que ','Cong ','Lian ','Hui ','Zhu ','Xie ','Ling ','Wei ','Yi ','Xie ','Zhao ','Hui ','Tatsu ','Nung ','Lan ','Ru ','Xian ','Kao ','Xun ','Jin ','Chou ','Chou ','Yao ', +); diff --git a/cacert/www/utf8_to_ascii/db/x96.php b/cacert/www/utf8_to_ascii/db/x96.php new file mode 100644 index 0000000..10f787e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x96.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x96] = array( +'He ','Lan ','Biao ','Rong ','Li ','Mo ','Bao ','Ruo ','Lu ','La ','Ao ','Xun ','Kuang ','Shuo ','[?] ','Li ','Lu ','Jue ','Liao ','Yan ','Xi ','Xie ','Long ','Ye ','[?] ','Rang ','Yue ','Lan ','Cong ','Jue ','Tong ','Guan ','[?] ','Che ','Mi ','Tang ','Lan ','Zhu ','[?] ','Ling ','Cuan ','Yu ','Zhua ','Tsumekanmuri ','Pa ','Zheng ','Pao ','Cheng ','Yuan ','Ai ','Wei ','[?] ','Jue ','Jue ','Fu ','Ye ','Ba ','Die ','Ye ','Yao ','Zu ','Shuang ','Er ','Qiang ','Chuang ','Ge ','Zang ','Die ','Qiang ','Yong ','Qiang ','Pian ','Ban ','Pan ','Shao ','Jian ','Pai ','Du ','Chuang ','Tou ','Zha ','Bian ','Die ','Bang ','Bo ','Chuang ','You ','[?] ','Du ','Ya ','Cheng ','Niu ','Ushihen ','Pin ','Jiu ','Mou ','Tuo ','Mu ','Lao ','Ren ','Mang ','Fang ','Mao ','Mu ','Gang ','Wu ','Yan ','Ge ','Bei ','Si ','Jian ','Gu ','You ','Ge ','Sheng ','Mu ','Di ','Qian ','Quan ','Quan ','Zi ','Te ','Xi ','Mang ','Keng ','Qian ','Wu ','Gu ','Xi ','Li ','Li ','Pou ','Ji ','Gang ','Zhi ','Ben ','Quan ','Run ','Du ','Ju ','Jia ','Jian ','Feng ','Pian ','Ke ','Ju ','Kao ','Chu ','Xi ','Bei ','Luo ','Jie ','Ma ','San ','Wei ','Li ','Dun ','Tong ','[?] ','Jiang ','Ikenie ','Li ','Du ','Lie ','Pi ','Piao ','Bao ','Xi ','Chou ','Wei ','Kui ','Chou ','Quan ','Fan ','Ba ','Fan ','Qiu ','Ji ','Cai ','Chuo ','An ','Jie ','Zhuang ','Guang ','Ma ','You ','Kang ','Bo ','Hou ','Ya ','Yin ','Huan ','Zhuang ','Yun ','Kuang ','Niu ','Di ','Qing ','Zhong ','Mu ','Bei ','Pi ','Ju ','Ni ','Sheng ','Pao ','Xia ','Tuo ','Hu ','Ling ','Fei ','Pi ','Ni ','Ao ','You ','Gou ','Yue ','Ju ','Dan ','Po ','Gu ','Xian ','Ning ','Huan ','Hen ','Jiao ','He ','Zhao ','Ji ','Xun ','Shan ','Ta ','Rong ','Shou ','Tong ','Lao ','Du ','Xia ','Shi ','Hua ','Zheng ','Yu ','Sun ','Yu ','Bi ','Mang ','Xi ','Juan ','Li ','Xia ','Yin ','Suan ','Lang ','Bei ','Zhi ','Yan ', +); diff --git a/cacert/www/utf8_to_ascii/db/x97.php b/cacert/www/utf8_to_ascii/db/x97.php new file mode 100644 index 0000000..795299b --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x97.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x97] = array( +'Sha ','Li ','Han ','Xian ','Jing ','Pai ','Fei ','Yao ','Ba ','Qi ','Ni ','Biao ','Yin ','Lai ','Xi ','Jian ','Qiang ','Kun ','Yan ','Guo ','Zong ','Mi ','Chang ','Yi ','Zhi ','Zheng ','Ya ','Meng ','Cai ','Cu ','She ','Kari ','Cen ','Luo ','Hu ','Zong ','Ji ','Wei ','Feng ','Wo ','Yuan ','Xing ','Zhu ','Mao ','Wei ','Yuan ','Xian ','Tuan ','Ya ','Nao ','Xie ','Jia ','Hou ','Bian ','You ','You ','Mei ','Zha ','Yao ','Sun ','Bo ','Ming ','Hua ','Yuan ','Sou ','Ma ','Yuan ','Dai ','Yu ','Shi ','Hao ','[?] ','Yi ','Zhen ','Chuang ','Hao ','Man ','Jing ','Jiang ','Mu ','Zhang ','Chan ','Ao ','Ao ','Hao ','Cui ','Fen ','Jue ','Bi ','Bi ','Huang ','Pu ','Lin ','Yu ','Tong ','Yao ','Liao ','Shuo ','Xiao ','Swu ','Ton ','Xi ','Ge ','Juan ','Du ','Hui ','Kuai ','Xian ','Xie ','Ta ','Xian ','Xun ','Ning ','Pin ','Huo ','Nou ','Meng ','Lie ','Nao ','Guang ','Shou ','Lu ','Ta ','Xian ','Mi ','Rang ','Huan ','Nao ','Luo ','Xian ','Qi ','Jue ','Xuan ','Miao ','Zi ','Lu ','Lu ','Yu ','Su ','Wang ','Qiu ','Ga ','Ding ','Le ','Ba ','Ji ','Hong ','Di ','Quan ','Gan ','Jiu ','Yu ','Ji ','Yu ','Yang ','Ma ','Gong ','Wu ','Fu ','Wen ','Jie ','Ya ','Fen ','Bian ','Beng ','Yue ','Jue ','Yun ','Jue ','Wan ','Jian ','Mei ','Dan ','Pi ','Wei ','Huan ','Xian ','Qiang ','Ling ','Dai ','Yi ','An ','Ping ','Dian ','Fu ','Xuan ','Xi ','Bo ','Ci ','Gou ','Jia ','Shao ','Po ','Ci ','Ke ','Ran ','Sheng ','Shen ','Yi ','Zu ','Jia ','Min ','Shan ','Liu ','Bi ','Zhen ','Zhen ','Jue ','Fa ','Long ','Jin ','Jiao ','Jian ','Li ','Guang ','Xian ','Zhou ','Gong ','Yan ','Xiu ','Yang ','Xu ','Luo ','Su ','Zhu ','Qin ','Ken ','Xun ','Bao ','Er ','Xiang ','Yao ','Xia ','Heng ','Gui ','Chong ','Xu ','Ban ','Pei ','[?] ','Dang ','Ei ','Hun ','Wen ','E ','Cheng ','Ti ','Wu ','Wu ','Cheng ','Jun ','Mei ','Bei ','Ting ','Xian ','Chuo ', +); diff --git a/cacert/www/utf8_to_ascii/db/x98.php b/cacert/www/utf8_to_ascii/db/x98.php new file mode 100644 index 0000000..a235438 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x98.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x98] = array( +'Han ','Xuan ','Yan ','Qiu ','Quan ','Lang ','Li ','Xiu ','Fu ','Liu ','Ye ','Xi ','Ling ','Li ','Jin ','Lian ','Suo ','Chiisai ','[?] ','Wan ','Dian ','Pin ','Zhan ','Cui ','Min ','Yu ','Ju ','Chen ','Lai ','Wen ','Sheng ','Wei ','Dian ','Chu ','Zhuo ','Pei ','Cheng ','Hu ','Qi ','E ','Kun ','Chang ','Qi ','Beng ','Wan ','Lu ','Cong ','Guan ','Yan ','Diao ','Bei ','Lin ','Qin ','Pi ','Pa ','Que ','Zhuo ','Qin ','Fa ','[?] ','Qiong ','Du ','Jie ','Hun ','Yu ','Mao ','Mei ','Chun ','Xuan ','Ti ','Xing ','Dai ','Rou ','Min ','Zhen ','Wei ','Ruan ','Huan ','Jie ','Chuan ','Jian ','Zhuan ','Yang ','Lian ','Quan ','Xia ','Duan ','Yuan ','Ye ','Nao ','Hu ','Ying ','Yu ','Huang ','Rui ','Se ','Liu ','Shi ','Rong ','Suo ','Yao ','Wen ','Wu ','Jin ','Jin ','Ying ','Ma ','Tao ','Liu ','Tang ','Li ','Lang ','Gui ','Zhen ','Qiang ','Cuo ','Jue ','Zhao ','Yao ','Ai ','Bin ','Tu ','Chang ','Kun ','Zhuan ','Cong ','Jin ','Yi ','Cui ','Cong ','Qi ','Li ','Ying ','Suo ','Qiu ','Xuan ','Ao ','Lian ','Man ','Zhang ','Yin ','[?] ','Ying ','Zhi ','Lu ','Wu ','Deng ','Xiou ','Zeng ','Xun ','Qu ','Dang ','Lin ','Liao ','Qiong ','Su ','Huang ','Gui ','Pu ','Jing ','Fan ','Jin ','Liu ','Ji ','[?] ','Jing ','Ai ','Bi ','Can ','Qu ','Zao ','Dang ','Jiao ','Gun ','Tan ','Hui ','Huan ','Se ','Sui ','Tian ','[?] ','Yu ','Jin ','Lu ','Bin ','Shou ','Wen ','Zui ','Lan ','Xi ','Ji ','Xuan ','Ruan ','Huo ','Gai ','Lei ','Du ','Li ','Zhi ','Rou ','Li ','Zan ','Qiong ','Zhe ','Gui ','Sui ','La ','Long ','Lu ','Li ','Zan ','Lan ','Ying ','Mi ','Xiang ','Xi ','Guan ','Dao ','Zan ','Huan ','Gua ','Bo ','Die ','Bao ','Hu ','Zhi ','Piao ','Ban ','Rang ','Li ','Wa ','Dekaguramu ','Jiang ','Qian ','Fan ','Pen ','Fang ','Dan ','Weng ','Ou ','Deshiguramu ','Miriguramu ','Thon ','Hu ','Ling ','Yi ','Ping ','Ci ','Hekutogura ','Juan ','Chang ','Chi ','Sarake ','Dang ','Meng ','Pou ', +); diff --git a/cacert/www/utf8_to_ascii/db/x99.php b/cacert/www/utf8_to_ascii/db/x99.php new file mode 100644 index 0000000..5549705 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x99.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x99] = array( +'Zhui ','Ping ','Bian ','Zhou ','Zhen ','Senchigura ','Ci ','Ying ','Qi ','Xian ','Lou ','Di ','Ou ','Meng ','Zhuan ','Peng ','Lin ','Zeng ','Wu ','Pi ','Dan ','Weng ','Ying ','Yan ','Gan ','Dai ','Shen ','Tian ','Tian ','Han ','Chang ','Sheng ','Qing ','Sheng ','Chan ','Chan ','Rui ','Sheng ','Su ','Sen ','Yong ','Shuai ','Lu ','Fu ','Yong ','Beng ','Feng ','Ning ','Tian ','You ','Jia ','Shen ','Zha ','Dian ','Fu ','Nan ','Dian ','Ping ','Ting ','Hua ','Ting ','Quan ','Zi ','Meng ','Bi ','Qi ','Liu ','Xun ','Liu ','Chang ','Mu ','Yun ','Fan ','Fu ','Geng ','Tian ','Jie ','Jie ','Quan ','Wei ','Fu ','Tian ','Mu ','Tap ','Pan ','Jiang ','Wa ','Da ','Nan ','Liu ','Ben ','Zhen ','Chu ','Mu ','Mu ','Ce ','Cen ','Gai ','Bi ','Da ','Zhi ','Lue ','Qi ','Lue ','Pan ','Kesa ','Fan ','Hua ','Yu ','Yu ','Mu ','Jun ','Yi ','Liu ','Yu ','Die ','Chou ','Hua ','Dang ','Chuo ','Ji ','Wan ','Jiang ','Sheng ','Chang ','Tuan ','Lei ','Ji ','Cha ','Liu ','Tatamu ','Tuan ','Lin ','Jiang ','Jiang ','Chou ','Bo ','Die ','Die ','Pi ','Nie ','Dan ','Shu ','Shu ','Zhi ','Yi ','Chuang ','Nai ','Ding ','Bi ','Jie ','Liao ','Gong ','Ge ','Jiu ','Zhou ','Xia ','Shan ','Xu ','Nue ','Li ','Yang ','Chen ','You ','Ba ','Jie ','Jue ','Zhi ','Xia ','Cui ','Bi ','Yi ','Li ','Zong ','Chuang ','Feng ','Zhu ','Pao ','Pi ','Gan ','Ke ','Ci ','Xie ','Qi ','Dan ','Zhen ','Fa ','Zhi ','Teng ','Ju ','Ji ','Fei ','Qu ','Dian ','Jia ','Xian ','Cha ','Bing ','Ni ','Zheng ','Yong ','Jing ','Quan ','Chong ','Tong ','Yi ','Kai ','Wei ','Hui ','Duo ','Yang ','Chi ','Zhi ','Hen ','Ya ','Mei ','Dou ','Jing ','Xiao ','Tong ','Tu ','Mang ','Pi ','Xiao ','Suan ','Pu ','Li ','Zhi ','Cuo ','Duo ','Wu ','Sha ','Lao ','Shou ','Huan ','Xian ','Yi ','Peng ','Zhang ','Guan ','Tan ','Fei ','Ma ','Lin ','Chi ','Ji ','Dian ','An ','Chi ','Bi ','Bei ','Min ','Gu ','Dui ','E ','Wei ', +); diff --git a/cacert/www/utf8_to_ascii/db/x9a.php b/cacert/www/utf8_to_ascii/db/x9a.php new file mode 100644 index 0000000..04092bd --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x9a.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x9a] = array( +'Yu ','Cui ','Ya ','Zhu ','Cu ','Dan ','Shen ','Zhung ','Ji ','Yu ','Hou ','Feng ','La ','Yang ','Shen ','Tu ','Yu ','Gua ','Wen ','Huan ','Ku ','Jia ','Yin ','Yi ','Lu ','Sao ','Jue ','Chi ','Xi ','Guan ','Yi ','Wen ','Ji ','Chuang ','Ban ','Lei ','Liu ','Chai ','Shou ','Nue ','Dian ','Da ','Pie ','Tan ','Zhang ','Biao ','Shen ','Cu ','Luo ','Yi ','Zong ','Chou ','Zhang ','Zhai ','Sou ','Suo ','Que ','Diao ','Lou ','Lu ','Mo ','Jin ','Yin ','Ying ','Huang ','Fu ','Liao ','Long ','Qiao ','Liu ','Lao ','Xian ','Fei ','Dan ','Yin ','He ','Yan ','Ban ','Xian ','Guan ','Guai ','Nong ','Yu ','Wei ','Yi ','Yong ','Pi ','Lei ','Li ','Shu ','Dan ','Lin ','Dian ','Lin ','Lai ','Pie ','Ji ','Chi ','Yang ','Xian ','Jie ','Zheng ','[?] ','Li ','Huo ','Lai ','Shaku ','Dian ','Xian ','Ying ','Yin ','Qu ','Yong ','Tan ','Dian ','Luo ','Luan ','Luan ','Bo ','[?] ','Gui ','Po ','Fa ','Deng ','Fa ','Bai ','Bai ','Qie ','Bi ','Zao ','Zao ','Mao ','De ','Pa ','Jie ','Huang ','Gui ','Ci ','Ling ','Gao ','Mo ','Ji ','Jiao ','Peng ','Gao ','Ai ','E ','Hao ','Han ','Bi ','Wan ','Chou ','Qian ','Xi ','Ai ','Jiong ','Hao ','Huang ','Hao ','Ze ','Cui ','Hao ','Xiao ','Ye ','Po ','Hao ','Jiao ','Ai ','Xing ','Huang ','Li ','Piao ','He ','Jiao ','Pi ','Gan ','Pao ','Zhou ','Jun ','Qiu ','Cun ','Que ','Zha ','Gu ','Jun ','Jun ','Zhou ','Zha ','Gu ','Zhan ','Du ','Min ','Qi ','Ying ','Yu ','Bei ','Zhao ','Zhong ','Pen ','He ','Ying ','He ','Yi ','Bo ','Wan ','He ','Ang ','Zhan ','Yan ','Jian ','He ','Yu ','Kui ','Fan ','Gai ','Dao ','Pan ','Fu ','Qiu ','Sheng ','Dao ','Lu ','Zhan ','Meng ','Li ','Jin ','Xu ','Jian ','Pan ','Guan ','An ','Lu ','Shu ','Zhou ','Dang ','An ','Gu ','Li ','Mu ','Cheng ','Gan ','Xu ','Mang ','Mang ','Zhi ','Qi ','Ruan ','Tian ','Xiang ','Dun ','Xin ','Xi ','Pan ','Feng ','Dun ','Min ', +); diff --git a/cacert/www/utf8_to_ascii/db/x9b.php b/cacert/www/utf8_to_ascii/db/x9b.php new file mode 100644 index 0000000..7ccffe0 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x9b.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x9b] = array( +'Ming ','Sheng ','Shi ','Yun ','Mian ','Pan ','Fang ','Miao ','Dan ','Mei ','Mao ','Kan ','Xian ','Ou ','Shi ','Yang ','Zheng ','Yao ','Shen ','Huo ','Da ','Zhen ','Kuang ','Ju ','Shen ','Chi ','Sheng ','Mei ','Mo ','Zhu ','Zhen ','Zhen ','Mian ','Di ','Yuan ','Die ','Yi ','Zi ','Zi ','Chao ','Zha ','Xuan ','Bing ','Mi ','Long ','Sui ','Dong ','Mi ','Die ','Yi ','Er ','Ming ','Xuan ','Chi ','Kuang ','Juan ','Mou ','Zhen ','Tiao ','Yang ','Yan ','Mo ','Zhong ','Mai ','Zhao ','Zheng ','Mei ','Jun ','Shao ','Han ','Huan ','Di ','Cheng ','Cuo ','Juan ','E ','Wan ','Xian ','Xi ','Kun ','Lai ','Jian ','Shan ','Tian ','Hun ','Wan ','Ling ','Shi ','Qiong ','Lie ','Yai ','Jing ','Zheng ','Li ','Lai ','Sui ','Juan ','Shui ','Sui ','Du ','Bi ','Bi ','Mu ','Hun ','Ni ','Lu ','Yi ','Jie ','Cai ','Zhou ','Yu ','Hun ','Ma ','Xia ','Xing ','Xi ','Gun ','Cai ','Chun ','Jian ','Mei ','Du ','Hou ','Xuan ','Ti ','Kui ','Gao ','Rui ','Mou ','Xu ','Fa ','Wen ','Miao ','Chou ','Kui ','Mi ','Weng ','Kou ','Dang ','Chen ','Ke ','Sou ','Xia ','Qiong ','Mao ','Ming ','Man ','Shui ','Ze ','Zhang ','Yi ','Diao ','Ou ','Mo ','Shun ','Cong ','Lou ','Chi ','Man ','Piao ','Cheng ','Ji ','Meng ','[?] ','Run ','Pie ','Xi ','Qiao ','Pu ','Zhu ','Deng ','Shen ','Shun ','Liao ','Che ','Xian ','Kan ','Ye ','Xu ','Tong ','Mou ','Lin ','Kui ','Xian ','Ye ','Ai ','Hui ','Zhan ','Jian ','Gu ','Zhao ','Qu ','Wei ','Chou ','Sao ','Ning ','Xun ','Yao ','Huo ','Meng ','Mian ','Bin ','Mian ','Li ','Kuang ','Jue ','Xuan ','Mian ','Huo ','Lu ','Meng ','Long ','Guan ','Man ','Xi ','Chu ','Tang ','Kan ','Zhu ','Mao ','Jin ','Lin ','Yu ','Shuo ','Ce ','Jue ','Shi ','Yi ','Shen ','Zhi ','Hou ','Shen ','Ying ','Ju ','Zhou ','Jiao ','Cuo ','Duan ','Ai ','Jiao ','Zeng ','Huo ','Bai ','Shi ','Ding ','Qi ','Ji ','Zi ','Gan ','Wu ','Tuo ','Ku ','Qiang ','Xi ','Fan ','Kuang ', +); diff --git a/cacert/www/utf8_to_ascii/db/x9c.php b/cacert/www/utf8_to_ascii/db/x9c.php new file mode 100644 index 0000000..14c6182 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x9c.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x9c] = array( +'Dang ','Ma ','Sha ','Dan ','Jue ','Li ','Fu ','Min ','Nuo ','Huo ','Kang ','Zhi ','Qi ','Kan ','Jie ','Fen ','E ','Ya ','Pi ','Zhe ','Yan ','Sui ','Zhuan ','Che ','Dun ','Pan ','Yan ','[?] ','Feng ','Fa ','Mo ','Zha ','Qu ','Yu ','Luo ','Tuo ','Tuo ','Di ','Zhai ','Zhen ','Ai ','Fei ','Mu ','Zhu ','Li ','Bian ','Nu ','Ping ','Peng ','Ling ','Pao ','Le ','Po ','Bo ','Po ','Shen ','Za ','Nuo ','Li ','Long ','Tong ','[?] ','Li ','Aragane ','Chu ','Keng ','Quan ','Zhu ','Kuang ','Huo ','E ','Nao ','Jia ','Lu ','Wei ','Ai ','Luo ','Ken ','Xing ','Yan ','Tong ','Peng ','Xi ','[?] ','Hong ','Shuo ','Xia ','Qiao ','[?] ','Wei ','Qiao ','[?] ','Keng ','Xiao ','Que ','Chan ','Lang ','Hong ','Yu ','Xiao ','Xia ','Mang ','Long ','Iong ','Che ','Che ','E ','Liu ','Ying ','Mang ','Que ','Yan ','Sha ','Kun ','Yu ','[?] ','Kaki ','Lu ','Chen ','Jian ','Nue ','Song ','Zhuo ','Keng ','Peng ','Yan ','Zhui ','Kong ','Ceng ','Qi ','Zong ','Qing ','Lin ','Jun ','Bo ','Ding ','Min ','Diao ','Jian ','He ','Lu ','Ai ','Sui ','Que ','Ling ','Bei ','Yin ','Dui ','Wu ','Qi ','Lun ','Wan ','Dian ','Gang ','Pei ','Qi ','Chen ','Ruan ','Yan ','Die ','Ding ','Du ','Tuo ','Jie ','Ying ','Bian ','Ke ','Bi ','Wei ','Shuo ','Zhen ','Duan ','Xia ','Dang ','Ti ','Nao ','Peng ','Jian ','Di ','Tan ','Cha ','Seki ','Qi ','[?] ','Feng ','Xuan ','Que ','Que ','Ma ','Gong ','Nian ','Su ','E ','Ci ','Liu ','Si ','Tang ','Bang ','Hua ','Pi ','Wei ','Sang ','Lei ','Cuo ','Zhen ','Xia ','Qi ','Lian ','Pan ','Wei ','Yun ','Dui ','Zhe ','Ke ','La ','[?] ','Qing ','Gun ','Zhuan ','Chan ','Qi ','Ao ','Peng ','Lu ','Lu ','Kan ','Qiang ','Chen ','Yin ','Lei ','Biao ','Qi ','Mo ','Qi ','Cui ','Zong ','Qing ','Chuo ','[?] ','Ji ','Shan ','Lao ','Qu ','Zeng ','Deng ','Jian ','Xi ','Lin ','Ding ','Dian ','Huang ','Pan ','Za ','Qiao ','Di ','Li ', +); diff --git a/cacert/www/utf8_to_ascii/db/x9d.php b/cacert/www/utf8_to_ascii/db/x9d.php new file mode 100644 index 0000000..cca35bd --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x9d.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x9d] = array( +'Tani ','Jiao ','[?] ','Zhang ','Qiao ','Dun ','Xian ','Yu ','Zhui ','He ','Huo ','Zhai ','Lei ','Ke ','Chu ','Ji ','Que ','Dang ','Yi ','Jiang ','Pi ','Pi ','Yu ','Pin ','Qi ','Ai ','Kai ','Jian ','Yu ','Ruan ','Meng ','Pao ','Ci ','[?] ','[?] ','Mie ','Ca ','Xian ','Kuang ','Lei ','Lei ','Zhi ','Li ','Li ','Fan ','Que ','Pao ','Ying ','Li ','Long ','Long ','Mo ','Bo ','Shuang ','Guan ','Lan ','Zan ','Yan ','Shi ','Shi ','Li ','Reng ','She ','Yue ','Si ','Qi ','Ta ','Ma ','Xie ','Xian ','Xian ','Zhi ','Qi ','Zhi ','Beng ','Dui ','Zhong ','[?] ','Yi ','Shi ','You ','Zhi ','Tiao ','Fu ','Fu ','Mi ','Zu ','Zhi ','Suan ','Mei ','Zuo ','Qu ','Hu ','Zhu ','Shen ','Sui ','Ci ','Chai ','Mi ','Lu ','Yu ','Xiang ','Wu ','Tiao ','Piao ','Zhu ','Gui ','Xia ','Zhi ','Ji ','Gao ','Zhen ','Gao ','Shui ','Jin ','Chen ','Gai ','Kun ','Di ','Dao ','Huo ','Tao ','Qi ','Gu ','Guan ','Zui ','Ling ','Lu ','Bing ','Jin ','Dao ','Zhi ','Lu ','Shan ','Bei ','Zhe ','Hui ','You ','Xi ','Yin ','Zi ','Huo ','Zhen ','Fu ','Yuan ','Wu ','Xian ','Yang ','Ti ','Yi ','Mei ','Si ','Di ','[?] ','Zhuo ','Zhen ','Yong ','Ji ','Gao ','Tang ','Si ','Ma ','Ta ','[?] ','Xuan ','Qi ','Yu ','Xi ','Ji ','Si ','Chan ','Tan ','Kuai ','Sui ','Li ','Nong ','Ni ','Dao ','Li ','Rang ','Yue ','Ti ','Zan ','Lei ','Rou ','Yu ','Yu ','Chi ','Xie ','Qin ','He ','Tu ','Xiu ','Si ','Ren ','Tu ','Zi ','Cha ','Gan ','Yi ','Xian ','Bing ','Nian ','Qiu ','Qiu ','Chong ','Fen ','Hao ','Yun ','Ke ','Miao ','Zhi ','Geng ','Bi ','Zhi ','Yu ','Mi ','Ku ','Ban ','Pi ','Ni ','Li ','You ','Zu ','Pi ','Ba ','Ling ','Mo ','Cheng ','Nian ','Qin ','Yang ','Zuo ','Zhi ','Zhi ','Shu ','Ju ','Zi ','Huo ','Ji ','Cheng ','Tong ','Zhi ','Huo ','He ','Yin ','Zi ','Zhi ','Jie ','Ren ','Du ','Yi ','Zhu ','Hui ','Nong ','Fu ', +); diff --git a/cacert/www/utf8_to_ascii/db/x9e.php b/cacert/www/utf8_to_ascii/db/x9e.php new file mode 100644 index 0000000..dfcdccb --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x9e.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x9e] = array( +'Xi ','Kao ','Lang ','Fu ','Ze ','Shui ','Lu ','Kun ','Gan ','Geng ','Ti ','Cheng ','Tu ','Shao ','Shui ','Ya ','Lun ','Lu ','Gu ','Zuo ','Ren ','Zhun ','Bang ','Bai ','Ji ','Zhi ','Zhi ','Kun ','Leng ','Peng ','Ke ','Bing ','Chou ','Zu ','Yu ','Su ','Lue ','[?] ','Yi ','Xi ','Bian ','Ji ','Fu ','Bi ','Nuo ','Jie ','Zhong ','Zong ','Xu ','Cheng ','Dao ','Wen ','Lian ','Zi ','Yu ','Ji ','Xu ','Zhen ','Zhi ','Dao ','Jia ','Ji ','Gao ','Gao ','Gu ','Rong ','Sui ','You ','Ji ','Kang ','Mu ','Shan ','Men ','Zhi ','Ji ','Lu ','Su ','Ji ','Ying ','Wen ','Qiu ','Se ','[?] ','Yi ','Huang ','Qie ','Ji ','Sui ','Xiao ','Pu ','Jiao ','Zhuo ','Tong ','Sai ','Lu ','Sui ','Nong ','Se ','Hui ','Rang ','Nuo ','Yu ','Bin ','Ji ','Tui ','Wen ','Cheng ','Huo ','Gong ','Lu ','Biao ','[?] ','Rang ','Zhuo ','Li ','Zan ','Xue ','Wa ','Jiu ','Qiong ','Xi ','Qiong ','Kong ','Yu ','Sen ','Jing ','Yao ','Chuan ','Zhun ','Tu ','Lao ','Qie ','Zhai ','Yao ','Bian ','Bao ','Yao ','Bing ','Wa ','Zhu ','Jiao ','Qiao ','Diao ','Wu ','Gui ','Yao ','Zhi ','Chuang ','Yao ','Tiao ','Jiao ','Chuang ','Jiong ','Xiao ','Cheng ','Kou ','Cuan ','Wo ','Dan ','Ku ','Ke ','Zhui ','Xu ','Su ','Guan ','Kui ','Dou ','[?] ','Yin ','Wo ','Wa ','Ya ','Yu ','Ju ','Qiong ','Yao ','Yao ','Tiao ','Chao ','Yu ','Tian ','Diao ','Ju ','Liao ','Xi ','Wu ','Kui ','Chuang ','Zhao ','[?] ','Kuan ','Long ','Cheng ','Cui ','Piao ','Zao ','Cuan ','Qiao ','Qiong ','Dou ','Zao ','Long ','Qie ','Li ','Chu ','Shi ','Fou ','Qian ','Chu ','Hong ','Qi ','Qian ','Gong ','Shi ','Shu ','Miao ','Ju ','Zhan ','Zhu ','Ling ','Long ','Bing ','Jing ','Jing ','Zhang ','Yi ','Si ','Jun ','Hong ','Tong ','Song ','Jing ','Diao ','Yi ','Shu ','Jing ','Qu ','Jie ','Ping ','Duan ','Shao ','Zhuan ','Ceng ','Deng ','Cui ','Huai ','Jing ','Kan ','Jing ','Zhu ','Zhu ','Le ','Peng ','Yu ','Chi ','Gan ', +); diff --git a/cacert/www/utf8_to_ascii/db/x9f.php b/cacert/www/utf8_to_ascii/db/x9f.php new file mode 100644 index 0000000..e504ff2 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/x9f.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0x9f] = array( +'Mang ','Zhu ','Utsubo ','Du ','Ji ','Xiao ','Ba ','Suan ','Ji ','Zhen ','Zhao ','Sun ','Ya ','Zhui ','Yuan ','Hu ','Gang ','Xiao ','Cen ','Pi ','Bi ','Jian ','Yi ','Dong ','Shan ','Sheng ','Xia ','Di ','Zhu ','Na ','Chi ','Gu ','Li ','Qie ','Min ','Bao ','Tiao ','Si ','Fu ','Ce ','Ben ','Pei ','Da ','Zi ','Di ','Ling ','Ze ','Nu ','Fu ','Gou ','Fan ','Jia ','Ge ','Fan ','Shi ','Mao ','Po ','Sey ','Jian ','Qiong ','Long ','Souke ','Bian ','Luo ','Gui ','Qu ','Chi ','Yin ','Yao ','Xian ','Bi ','Qiong ','Gua ','Deng ','Jiao ','Jin ','Quan ','Sun ','Ru ','Fa ','Kuang ','Zhu ','Tong ','Ji ','Da ','Xing ','Ce ','Zhong ','Kou ','Lai ','Bi ','Shai ','Dang ','Zheng ','Ce ','Fu ','Yun ','Tu ','Pa ','Li ','Lang ','Ju ','Guan ','Jian ','Han ','Tong ','Xia ','Zhi ','Cheng ','Suan ','Shi ','Zhu ','Zuo ','Xiao ','Shao ','Ting ','Ce ','Yan ','Gao ','Kuai ','Gan ','Chou ','Kago ','Gang ','Yun ','O ','Qian ','Xiao ','Jian ','Pu ','Lai ','Zou ','Bi ','Bi ','Bi ','Ge ','Chi ','Guai ','Yu ','Jian ','Zhao ','Gu ','Chi ','Zheng ','Jing ','Sha ','Zhou ','Lu ','Bo ','Ji ','Lin ','Suan ','Jun ','Fu ','Zha ','Gu ','Kong ','Qian ','Quan ','Jun ','Chui ','Guan ','Yuan ','Ce ','Ju ','Bo ','Ze ','Qie ','Tuo ','Luo ','Dan ','Xiao ','Ruo ','Jian ','Xuan ','Bian ','Sun ','Xiang ','Xian ','Ping ','Zhen ','Sheng ','Hu ','Shi ','Zhu ','Yue ','Chun ','Lu ','Wu ','Dong ','Xiao ','Ji ','Jie ','Huang ','Xing ','Mei ','Fan ','Chui ','Zhuan ','Pian ','Feng ','Zhu ','Hong ','Qie ','Hou ','Qiu ','Miao ','Qian ','[?] ','Kui ','Sik ','Lou ','Yun ','He ','Tang ','Yue ','Chou ','Gao ','Fei ','Ruo ','Zheng ','Gou ','Nie ','Qian ','Xiao ','Cuan ','Gong ','Pang ','Du ','Li ','Bi ','Zhuo ','Chu ','Shai ','Chi ','Zhu ','Qiang ','Long ','Lan ','Jian ','Bu ','Li ','Hui ','Bi ','Di ','Cong ','Yan ','Peng ','Sen ','Zhuan ','Pai ','Piao ','Dou ','Yu ','Mie ','Zhuan ', +); diff --git a/cacert/www/utf8_to_ascii/db/xa0.php b/cacert/www/utf8_to_ascii/db/xa0.php new file mode 100644 index 0000000..8bf326e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xa0.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xa0] = array( +'Ze ','Xi ','Guo ','Yi ','Hu ','Chan ','Kou ','Cu ','Ping ','Chou ','Ji ','Gui ','Su ','Lou ','Zha ','Lu ','Nian ','Suo ','Cuan ','Sasara ','Suo ','Le ','Duan ','Yana ','Xiao ','Bo ','Mi ','Si ','Dang ','Liao ','Dan ','Dian ','Fu ','Jian ','Min ','Kui ','Dai ','Qiao ','Deng ','Huang ','Sun ','Lao ','Zan ','Xiao ','Du ','Shi ','Zan ','[?] ','Pai ','Hata ','Pai ','Gan ','Ju ','Du ','Lu ','Yan ','Bo ','Dang ','Sai ','Ke ','Long ','Qian ','Lian ','Bo ','Zhou ','Lai ','[?] ','Lan ','Kui ','Yu ','Yue ','Hao ','Zhen ','Tai ','Ti ','Mi ','Chou ','Ji ','[?] ','Hata ','Teng ','Zhuan ','Zhou ','Fan ','Sou ','Zhou ','Kuji ','Zhuo ','Teng ','Lu ','Lu ','Jian ','Tuo ','Ying ','Yu ','Lai ','Long ','Shinshi ','Lian ','Lan ','Qian ','Yue ','Zhong ','Qu ','Lian ','Bian ','Duan ','Zuan ','Li ','Si ','Luo ','Ying ','Yue ','Zhuo ','Xu ','Mi ','Di ','Fan ','Shen ','Zhe ','Shen ','Nu ','Xie ','Lei ','Xian ','Zi ','Ni ','Cun ','[?] ','Qian ','Kume ','Bi ','Ban ','Wu ','Sha ','Kang ','Rou ','Fen ','Bi ','Cui ','[?] ','Li ','Chi ','Nukamiso ','Ro ','Ba ','Li ','Gan ','Ju ','Po ','Mo ','Cu ','Nian ','Zhou ','Li ','Su ','Tiao ','Li ','Qi ','Su ','Hong ','Tong ','Zi ','Ce ','Yue ','Zhou ','Lin ','Zhuang ','Bai ','[?] ','Fen ','Ji ','[?] ','Sukumo ','Liang ','Xian ','Fu ','Liang ','Can ','Geng ','Li ','Yue ','Lu ','Ju ','Qi ','Cui ','Bai ','Zhang ','Lin ','Zong ','Jing ','Guo ','Kouji ','San ','San ','Tang ','Bian ','Rou ','Mian ','Hou ','Xu ','Zong ','Hu ','Jian ','Zan ','Ci ','Li ','Xie ','Fu ','Ni ','Bei ','Gu ','Xiu ','Gao ','Tang ','Qiu ','Sukumo ','Cao ','Zhuang ','Tang ','Mi ','San ','Fen ','Zao ','Kang ','Jiang ','Mo ','San ','San ','Nuo ','Xi ','Liang ','Jiang ','Kuai ','Bo ','Huan ','[?] ','Zong ','Xian ','Nuo ','Tuan ','Nie ','Li ','Zuo ','Di ','Nie ','Tiao ','Lan ','Mi ','Jiao ','Jiu ','Xi ','Gong ','Zheng ','Jiu ','You ', +); diff --git a/cacert/www/utf8_to_ascii/db/xa1.php b/cacert/www/utf8_to_ascii/db/xa1.php new file mode 100644 index 0000000..d9f78db --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xa1.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xa1] = array( +'Ji ','Cha ','Zhou ','Xun ','Yue ','Hong ','Yu ','He ','Wan ','Ren ','Wen ','Wen ','Qiu ','Na ','Zi ','Tou ','Niu ','Fou ','Jie ','Shu ','Chun ','Pi ','Yin ','Sha ','Hong ','Zhi ','Ji ','Fen ','Yun ','Ren ','Dan ','Jin ','Su ','Fang ','Suo ','Cui ','Jiu ','Zha ','Kinu ','Jin ','Fu ','Zhi ','Ci ','Zi ','Chou ','Hong ','Zha ','Lei ','Xi ','Fu ','Xie ','Shen ','Bei ','Zhu ','Qu ','Ling ','Zhu ','Shao ','Gan ','Yang ','Fu ','Tuo ','Zhen ','Dai ','Zhuo ','Shi ','Zhong ','Xian ','Zu ','Jiong ','Ban ','Ju ','Mo ','Shu ','Zui ','Wata ','Jing ','Ren ','Heng ','Xie ','Jie ','Zhu ','Chou ','Gua ','Bai ','Jue ','Kuang ','Hu ','Ci ','Geng ','Geng ','Tao ','Xie ','Ku ','Jiao ','Quan ','Gai ','Luo ','Xuan ','Bing ','Xian ','Fu ','Gei ','Tong ','Rong ','Tiao ','Yin ','Lei ','Xie ','Quan ','Xu ','Lun ','Die ','Tong ','Si ','Jiang ','Xiang ','Hui ','Jue ','Zhi ','Jian ','Juan ','Chi ','Mian ','Zhen ','Lu ','Cheng ','Qiu ','Shu ','Bang ','Tong ','Xiao ','Wan ','Qin ','Geng ','Xiu ','Ti ','Xiu ','Xie ','Hong ','Xi ','Fu ','Ting ','Sui ','Dui ','Kun ','Fu ','Jing ','Hu ','Zhi ','Yan ','Jiong ','Feng ','Ji ','Sok ','Kase ','Zong ','Lin ','Duo ','Li ','Lu ','Liang ','Chou ','Quan ','Shao ','Qi ','Qi ','Zhun ','Qi ','Wan ','Qian ','Xian ','Shou ','Wei ','Qi ','Tao ','Wan ','Gang ','Wang ','Beng ','Zhui ','Cai ','Guo ','Cui ','Lun ','Liu ','Qi ','Zhan ','Bei ','Chuo ','Ling ','Mian ','Qi ','Qie ','Tan ','Zong ','Gun ','Zou ','Yi ','Zi ','Xing ','Liang ','Jin ','Fei ','Rui ','Min ','Yu ','Zong ','Fan ','Lu ','Xu ','Yingl ','Zhang ','Kasuri ','Xu ','Xiang ','Jian ','Ke ','Xian ','Ruan ','Mian ','Qi ','Duan ','Zhong ','Di ','Min ','Miao ','Yuan ','Xie ','Bao ','Si ','Qiu ','Bian ','Huan ','Geng ','Cong ','Mian ','Wei ','Fu ','Wei ','Yu ','Gou ','Miao ','Xie ','Lian ','Zong ','Bian ','Yun ','Yin ','Ti ','Gua ','Zhi ','Yun ','Cheng ','Chan ','Dai ', +); diff --git a/cacert/www/utf8_to_ascii/db/xa2.php b/cacert/www/utf8_to_ascii/db/xa2.php new file mode 100644 index 0000000..fc86b5c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xa2.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xa2] = array( +'Xia ','Yuan ','Zong ','Xu ','Nawa ','Odoshi ','Geng ','Sen ','Ying ','Jin ','Yi ','Zhui ','Ni ','Bang ','Gu ','Pan ','Zhou ','Jian ','Cuo ','Quan ','Shuang ','Yun ','Xia ','Shuai ','Xi ','Rong ','Tao ','Fu ','Yun ','Zhen ','Gao ','Ru ','Hu ','Zai ','Teng ','Xian ','Su ','Zhen ','Zong ','Tao ','Horo ','Cai ','Bi ','Feng ','Cu ','Li ','Suo ','Yin ','Xi ','Zong ','Lei ','Zhuan ','Qian ','Man ','Zhi ','Lu ','Mo ','Piao ','Lian ','Mi ','Xuan ','Zong ','Ji ','Shan ','Sui ','Fan ','Shuai ','Beng ','Yi ','Sao ','Mou ','Zhou ','Qiang ','Hun ','Sem ','Xi ','Jung ','Xiu ','Ran ','Xuan ','Hui ','Qiao ','Zeng ','Zuo ','Zhi ','Shan ','San ','Lin ','Yu ','Fan ','Liao ','Chuo ','Zun ','Jian ','Rao ','Chan ','Rui ','Xiu ','Hui ','Hua ','Zuan ','Xi ','Qiang ','Un ','Da ','Sheng ','Hui ','Xi ','Se ','Jian ','Jiang ','Huan ','Zao ','Cong ','Jie ','Jiao ','Bo ','Chan ','Yi ','Nao ','Sui ','Yi ','Shai ','Xu ','Ji ','Bin ','Qian ','Lan ','Pu ','Xun ','Zuan ','Qi ','Peng ','Li ','Mo ','Lei ','Xie ','Zuan ','Kuang ','You ','Xu ','Lei ','Xian ','Chan ','Kou ','Lu ','Chan ','Ying ','Cai ','Xiang ','Xian ','Zui ','Zuan ','Luo ','Xi ','Dao ','Lan ','Lei ','Lian ','Si ','Jiu ','Yu ','Hong ','Zhou ','Xian ','He ','Yue ','Ji ','Wan ','Kuang ','Ji ','Ren ','Wei ','Yun ','Hong ','Chun ','Pi ','Sha ','Gang ','Na ','Ren ','Zong ','Lun ','Fen ','Zhi ','Wen ','Fang ','Zhu ','Yin ','Niu ','Shu ','Xian ','Gan ','Xie ','Fu ','Lian ','Zu ','Shen ','Xi ','Zhi ','Zhong ','Zhou ','Ban ','Fu ','Zhuo ','Shao ','Yi ','Jing ','Dai ','Bang ','Rong ','Jie ','Ku ','Rao ','Die ','Heng ','Hui ','Gei ','Xuan ','Jiang ','Luo ','Jue ','Jiao ','Tong ','Geng ','Xiao ','Juan ','Xiu ','Xi ','Sui ','Tao ','Ji ','Ti ','Ji ','Xu ','Ling ','[?] ','Xu ','Qi ','Fei ','Chuo ','Zhang ','Gun ','Sheng ','Wei ','Mian ','Shou ','Beng ','Chou ','Tao ','Liu ','Quan ','Zong ','Zhan ','Wan ','Lu ', +); diff --git a/cacert/www/utf8_to_ascii/db/xa3.php b/cacert/www/utf8_to_ascii/db/xa3.php new file mode 100644 index 0000000..89ea414 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xa3.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xa3] = array( +'Zhui ','Zi ','Ke ','Xiang ','Jian ','Mian ','Lan ','Ti ','Miao ','Qi ','Yun ','Hui ','Si ','Duo ','Duan ','Bian ','Xian ','Gou ','Zhui ','Huan ','Di ','Lu ','Bian ','Min ','Yuan ','Jin ','Fu ','Ru ','Zhen ','Feng ','Shuai ','Gao ','Chan ','Li ','Yi ','Jian ','Bin ','Piao ','Man ','Lei ','Ying ','Suo ','Mou ','Sao ','Xie ','Liao ','Shan ','Zeng ','Jiang ','Qian ','Zao ','Huan ','Jiao ','Zuan ','Fou ','Xie ','Gang ','Fou ','Que ','Fou ','Kaakeru ','Bo ','Ping ','Hou ','[?] ','Gang ','Ying ','Ying ','Qing ','Xia ','Guan ','Zun ','Tan ','Chang ','Qi ','Weng ','Ying ','Lei ','Tan ','Lu ','Guan ','Wang ','Wang ','Gang ','Wang ','Han ','[?] ','Luo ','Fu ','Mi ','Fa ','Gu ','Zhu ','Ju ','Mao ','Gu ','Min ','Gang ','Ba ','Gua ','Ti ','Juan ','Fu ','Lin ','Yan ','Zhao ','Zui ','Gua ','Zhuo ','Yu ','Zhi ','An ','Fa ','Nan ','Shu ','Si ','Pi ','Ma ','Liu ','Ba ','Fa ','Li ','Chao ','Wei ','Bi ','Ji ','Zeng ','Tong ','Liu ','Ji ','Juan ','Mi ','Zhao ','Luo ','Pi ','Ji ','Ji ','Luan ','Yang ','Mie ','Qiang ','Ta ','Mei ','Yang ','You ','You ','Fen ','Ba ','Gao ','Yang ','Gu ','Qiang ','Zang ','Gao ','Ling ','Yi ','Zhu ','Di ','Xiu ','Qian ','Yi ','Xian ','Rong ','Qun ','Qun ','Qian ','Huan ','Zui ','Xian ','Yi ','Yashinau ','Qiang ','Xian ','Yu ','Geng ','Jie ','Tang ','Yuan ','Xi ','Fan ','Shan ','Fen ','Shan ','Lian ','Lei ','Geng ','Nou ','Qiang ','Chan ','Yu ','Gong ','Yi ','Chong ','Weng ','Fen ','Hong ','Chi ','Chi ','Cui ','Fu ','Xia ','Pen ','Yi ','La ','Yi ','Pi ','Ling ','Liu ','Zhi ','Qu ','Xi ','Xie ','Xiang ','Xi ','Xi ','Qi ','Qiao ','Hui ','Hui ','Xiao ','Se ','Hong ','Jiang ','Di ','Cui ','Fei ','Tao ','Sha ','Chi ','Zhu ','Jian ','Xuan ','Shi ','Pian ','Zong ','Wan ','Hui ','Hou ','He ','He ','Han ','Ao ','Piao ','Yi ','Lian ','Qu ','[?] ','Lin ','Pen ','Qiao ','Ao ','Fan ','Yi ','Hui ','Xuan ','Dao ', +); diff --git a/cacert/www/utf8_to_ascii/db/xa4.php b/cacert/www/utf8_to_ascii/db/xa4.php new file mode 100644 index 0000000..8cd8391 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xa4.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xa4] = array( +'Yao ','Lao ','[?] ','Kao ','Mao ','Zhe ','Qi ','Gou ','Gou ','Gou ','Die ','Die ','Er ','Shua ','Ruan ','Er ','Nai ','Zhuan ','Lei ','Ting ','Zi ','Geng ','Chao ','Hao ','Yun ','Pa ','Pi ','Chi ','Si ','Chu ','Jia ','Ju ','He ','Chu ','Lao ','Lun ','Ji ','Tang ','Ou ','Lou ','Nou ','Gou ','Pang ','Ze ','Lou ','Ji ','Lao ','Huo ','You ','Mo ','Huai ','Er ','Zhe ','Ting ','Ye ','Da ','Song ','Qin ','Yun ','Chi ','Dan ','Dan ','Hong ','Geng ','Zhi ','[?] ','Nie ','Dan ','Zhen ','Che ','Ling ','Zheng ','You ','Wa ','Liao ','Long ','Zhi ','Ning ','Tiao ','Er ','Ya ','Die ','Gua ','[?] ','Lian ','Hao ','Sheng ','Lie ','Pin ','Jing ','Ju ','Bi ','Di ','Guo ','Wen ','Xu ','Ping ','Cong ','Shikato ','[?] ','Ting ','Yu ','Cong ','Kui ','Tsuraneru ','Kui ','Cong ','Lian ','Weng ','Kui ','Lian ','Lian ','Cong ','Ao ','Sheng ','Song ','Ting ','Kui ','Nie ','Zhi ','Dan ','Ning ','Qie ','Ji ','Ting ','Ting ','Long ','Yu ','Yu ','Zhao ','Si ','Su ','Yi ','Su ','Si ','Zhao ','Zhao ','Rou ','Yi ','Le ','Ji ','Qiu ','Ken ','Cao ','Ge ','Di ','Huan ','Huang ','Yi ','Ren ','Xiao ','Ru ','Zhou ','Yuan ','Du ','Gang ','Rong ','Gan ','Cha ','Wo ','Chang ','Gu ','Zhi ','Han ','Fu ','Fei ','Fen ','Pei ','Pang ','Jian ','Fang ','Zhun ','You ','Na ','Hang ','Ken ','Ran ','Gong ','Yu ','Wen ','Yao ','Jin ','Pi ','Qian ','Xi ','Xi ','Fei ','Ken ','Jing ','Tai ','Shen ','Zhong ','Zhang ','Xie ','Shen ','Wei ','Zhou ','Die ','Dan ','Fei ','Ba ','Bo ','Qu ','Tian ','Bei ','Gua ','Tai ','Zi ','Ku ','Zhi ','Ni ','Ping ','Zi ','Fu ','Pang ','Zhen ','Xian ','Zuo ','Pei ','Jia ','Sheng ','Zhi ','Bao ','Mu ','Qu ','Hu ','Ke ','Yi ','Yin ','Xu ','Yang ','Long ','Dong ','Ka ','Lu ','Jing ','Nu ','Yan ','Pang ','Kua ','Yi ','Guang ','Gai ','Ge ','Dong ','Zhi ','Xiao ','Xiong ','Xiong ','Er ','E ','Xing ','Pian ','Neng ','Zi ','Gui ', +); diff --git a/cacert/www/utf8_to_ascii/db/xac.php b/cacert/www/utf8_to_ascii/db/xac.php new file mode 100644 index 0000000..fe05e67 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xac.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xac] = array( +'Cheng ','Tiao ','Zhi ','Cui ','Mei ','Xie ','Cui ','Xie ','Mo ','Mai ','Ji ','Obiyaakasu ','[?] ','Kuai ','Sa ','Zang ','Qi ','Nao ','Mi ','Nong ','Luan ','Wan ','Bo ','Wen ','Guan ','Qiu ','Jiao ','Jing ','Rou ','Heng ','Cuo ','Lie ','Shan ','Ting ','Mei ','Chun ','Shen ','Xie ','De ','Zui ','Cu ','Xiu ','Xin ','Tuo ','Pao ','Cheng ','Nei ','Fu ','Dou ','Tuo ','Niao ','Noy ','Pi ','Gu ','Gua ','Li ','Lian ','Zhang ','Cui ','Jie ','Liang ','Zhou ','Pi ','Biao ','Lun ','Pian ','Guo ','Kui ','Chui ','Dan ','Tian ','Nei ','Jing ','Jie ','La ','Yi ','An ','Ren ','Shen ','Chuo ','Fu ','Fu ','Ju ','Fei ','Qiang ','Wan ','Dong ','Pi ','Guo ','Zong ','Ding ','Wu ','Mei ','Ruan ','Zhuan ','Zhi ','Cou ','Gua ','Ou ','Di ','An ','Xing ','Nao ','Yu ','Chuan ','Nan ','Yun ','Zhong ','Rou ','E ','Sai ','Tu ','Yao ','Jian ','Wei ','Jiao ','Yu ','Jia ','Duan ','Bi ','Chang ','Fu ','Xian ','Ni ','Mian ','Wa ','Teng ','Tui ','Bang ','Qian ','Lu ','Wa ','Sou ','Tang ','Su ','Zhui ','Ge ','Yi ','Bo ','Liao ','Ji ','Pi ','Xie ','Gao ','Lu ','Bin ','Ou ','Chang ','Lu ','Guo ','Pang ','Chuai ','Piao ','Jiang ','Fu ','Tang ','Mo ','Xi ','Zhuan ','Lu ','Jiao ','Ying ','Lu ','Zhi ','Tara ','Chun ','Lian ','Tong ','Peng ','Ni ','Zha ','Liao ','Cui ','Gui ','Xiao ','Teng ','Fan ','Zhi ','Jiao ','Shan ','Wu ','Cui ','Run ','Xiang ','Sui ','Fen ','Ying ','Tan ','Zhua ','Dan ','Kuai ','Nong ','Tun ','Lian ','Bi ','Yong ','Jue ','Chu ','Yi ','Juan ','La ','Lian ','Sao ','Tun ','Gu ','Qi ','Cui ','Bin ','Xun ','Ru ','Huo ','Zang ','Xian ','Biao ','Xing ','Kuan ','La ','Yan ','Lu ','Huo ','Zang ','Luo ','Qu ','Zang ','Luan ','Ni ','Zang ','Chen ','Qian ','Wo ','Guang ','Zang ','Lin ','Guang ','Zi ','Jiao ','Nie ','Chou ','Ji ','Gao ','Chou ','Mian ','Nie ','Zhi ','Zhi ','Ge ','Jian ','Die ','Zhi ','Xiu ','Tai ','Zhen ','Jiu ','Xian ','Yu ','Cha ', +); diff --git a/cacert/www/utf8_to_ascii/db/xad.php b/cacert/www/utf8_to_ascii/db/xad.php new file mode 100644 index 0000000..f780c72 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xad.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xad] = array( +'Yao ','Yu ','Chong ','Xi ','Xi ','Jiu ','Yu ','Yu ','Xing ','Ju ','Jiu ','Xin ','She ','She ','Yadoru ','Jiu ','Shi ','Tan ','Shu ','Shi ','Tian ','Dan ','Pu ','Pu ','Guan ','Hua ','Tan ','Chuan ','Shun ','Xia ','Wu ','Zhou ','Dao ','Gang ','Shan ','Yi ','[?] ','Pa ','Tai ','Fan ','Ban ','Chuan ','Hang ','Fang ','Ban ','Que ','Hesaki ','Zhong ','Jian ','Cang ','Ling ','Zhu ','Ze ','Duo ','Bo ','Xian ','Ge ','Chuan ','Jia ','Lu ','Hong ','Pang ','Xi ','[?] ','Fu ','Zao ','Feng ','Li ','Shao ','Yu ','Lang ','Ting ','[?] ','Wei ','Bo ','Meng ','Nian ','Ju ','Huang ','Shou ','Zong ','Bian ','Mao ','Die ','[?] ','Bang ','Cha ','Yi ','Sao ','Cang ','Cao ','Lou ','Dai ','Sori ','Yao ','Tong ','Yofune ','Dang ','Tan ','Lu ','Yi ','Jie ','Jian ','Huo ','Meng ','Qi ','Lu ','Lu ','Chan ','Shuang ','Gen ','Liang ','Jian ','Jian ','Se ','Yan ','Fu ','Ping ','Yan ','Yan ','Cao ','Cao ','Yi ','Le ','Ting ','Qiu ','Ai ','Nai ','Tiao ','Jiao ','Jie ','Peng ','Wan ','Yi ','Chai ','Mian ','Mie ','Gan ','Qian ','Yu ','Yu ','Shuo ','Qiong ','Tu ','Xia ','Qi ','Mang ','Zi ','Hui ','Sui ','Zhi ','Xiang ','Bi ','Fu ','Tun ','Wei ','Wu ','Zhi ','Qi ','Shan ','Wen ','Qian ','Ren ','Fou ','Kou ','Jie ','Lu ','Xu ','Ji ','Qin ','Qi ','Yuan ','Fen ','Ba ','Rui ','Xin ','Ji ','Hua ','Hua ','Fang ','Wu ','Jue ','Gou ','Zhi ','Yun ','Qin ','Ao ','Chu ','Mao ','Ya ','Fei ','Reng ','Hang ','Cong ','Yin ','You ','Bian ','Yi ','Susa ','Wei ','Li ','Pi ','E ','Xian ','Chang ','Cang ','Meng ','Su ','Yi ','Yuan ','Ran ','Ling ','Tai ','Tiao ','Di ','Miao ','Qiong ','Li ','Yong ','Ke ','Mu ','Pei ','Bao ','Gou ','Min ','Yi ','Yi ','Ju ','Pi ','Ruo ','Ku ','Zhu ','Ni ','Bo ','Bing ','Shan ','Qiu ','Yao ','Xian ','Ben ','Hong ','Ying ','Zha ','Dong ','Ju ','Die ','Nie ','Gan ','Hu ','Ping ','Mei ','Fu ','Sheng ','Gu ','Bi ','Wei ', +); diff --git a/cacert/www/utf8_to_ascii/db/xae.php b/cacert/www/utf8_to_ascii/db/xae.php new file mode 100644 index 0000000..78f2685 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xae.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xae] = array( +'Fu ','Zhuo ','Mao ','Fan ','Qie ','Mao ','Mao ','Ba ','Zi ','Mo ','Zi ','Di ','Chi ','Ji ','Jing ','Long ','[?] ','Niao ','[?] ','Xue ','Ying ','Qiong ','Ge ','Ming ','Li ','Rong ','Yin ','Gen ','Qian ','Chai ','Chen ','Yu ','Xiu ','Zi ','Lie ','Wu ','Ji ','Kui ','Ce ','Chong ','Ci ','Gou ','Guang ','Mang ','Chi ','Jiao ','Jiao ','Fu ','Yu ','Zhu ','Zi ','Jiang ','Hui ','Yin ','Cha ','Fa ','Rong ','Ru ','Chong ','Mang ','Tong ','Zhong ','[?] ','Zhu ','Xun ','Huan ','Kua ','Quan ','Gai ','Da ','Jing ','Xing ','Quan ','Cao ','Jing ','Er ','An ','Shou ','Chi ','Ren ','Jian ','Ti ','Huang ','Ping ','Li ','Jin ','Lao ','Shu ','Zhuang ','Da ','Jia ','Rao ','Bi ','Ze ','Qiao ','Hui ','Qi ','Dang ','[?] ','Rong ','Hun ','Ying ','Luo ','Ying ','Xun ','Jin ','Sun ','Yin ','Mai ','Hong ','Zhou ','Yao ','Du ','Wei ','Chu ','Dou ','Fu ','Ren ','Yin ','He ','Bi ','Bu ','Yun ','Di ','Tu ','Sui ','Sui ','Cheng ','Chen ','Wu ','Bie ','Xi ','Geng ','Li ','Fu ','Zhu ','Mo ','Li ','Zhuang ','Ji ','Duo ','Qiu ','Sha ','Suo ','Chen ','Feng ','Ju ','Mei ','Meng ','Xing ','Jing ','Che ','Xin ','Jun ','Yan ','Ting ','Diao ','Cuo ','Wan ','Han ','You ','Cuo ','Jia ','Wang ','You ','Niu ','Shao ','Xian ','Lang ','Fu ','E ','Mo ','Wen ','Jie ','Nan ','Mu ','Kan ','Lai ','Lian ','Shi ','Wo ','Usagi ','Lian ','Huo ','You ','Ying ','Ying ','Nuc ','Chun ','Mang ','Mang ','Ci ','Wan ','Jing ','Di ','Qu ','Dong ','Jian ','Zou ','Gu ','La ','Lu ','Ju ','Wei ','Jun ','Nie ','Kun ','He ','Pu ','Zi ','Gao ','Guo ','Fu ','Lun ','Chang ','Chou ','Song ','Chui ','Zhan ','Men ','Cai ','Ba ','Li ','Tu ','Bo ','Han ','Bao ','Qin ','Juan ','Xi ','Qin ','Di ','Jie ','Pu ','Dang ','Jin ','Zhao ','Tai ','Geng ','Hua ','Gu ','Ling ','Fei ','Jin ','An ','Wang ','Beng ','Zhou ','Yan ','Ju ','Jian ','Lin ','Tan ','Shu ','Tian ','Dao ', +); diff --git a/cacert/www/utf8_to_ascii/db/xaf.php b/cacert/www/utf8_to_ascii/db/xaf.php new file mode 100644 index 0000000..3fa3a25 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xaf.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xaf] = array( +'Hu ','Qi ','He ','Cui ','Tao ','Chun ','Bei ','Chang ','Huan ','Fei ','Lai ','Qi ','Meng ','Ping ','Wei ','Dan ','Sha ','Huan ','Yan ','Yi ','Tiao ','Qi ','Wan ','Ce ','Nai ','Kutabireru ','Tuo ','Jiu ','Tie ','Luo ','[?] ','[?] ','Meng ','[?] ','Yaji ','[?] ','Ying ','Ying ','Ying ','Xiao ','Sa ','Qiu ','Ke ','Xiang ','Wan ','Yu ','Yu ','Fu ','Lian ','Xuan ','Yuan ','Nan ','Ze ','Wo ','Chun ','Xiao ','Yu ','Pian ','Mao ','An ','E ','Luo ','Ying ','Huo ','Gua ','Jiang ','Mian ','Zuo ','Zuo ','Ju ','Bao ','Rou ','Xi ','Xie ','An ','Qu ','Jian ','Fu ','Lu ','Jing ','Pen ','Feng ','Hong ','Hong ','Hou ','Yan ','Tu ','Zhu ','Zi ','Xiang ','Shen ','Ge ','Jie ','Jing ','Mi ','Huang ','Shen ','Pu ','Gai ','Dong ','Zhou ','Qian ','Wei ','Bo ','Wei ','Pa ','Ji ','Hu ','Zang ','Jia ','Duan ','Yao ','Jun ','Cong ','Quan ','Wei ','Xian ','Kui ','Ting ','Hun ','Xi ','Shi ','Qi ','Lan ','Zong ','Yao ','Yuan ','Mei ','Yun ','Shu ','Di ','Zhuan ','Guan ','Sukumo ','Xue ','Chan ','Kai ','Kui ','[?] ','Jiang ','Lou ','Wei ','Pai ','[?] ','Sou ','Yin ','Shi ','Chun ','Shi ','Yun ','Zhen ','Lang ','Nu ','Meng ','He ','Que ','Suan ','Yuan ','Li ','Ju ','Xi ','Pang ','Chu ','Xu ','Tu ','Liu ','Wo ','Zhen ','Qian ','Zu ','Po ','Cuo ','Yuan ','Chu ','Yu ','Kuai ','Pan ','Pu ','Pu ','Na ','Shuo ','Xi ','Fen ','Yun ','Zheng ','Jian ','Ji ','Ruo ','Cang ','En ','Mi ','Hao ','Sun ','Zhen ','Ming ','Sou ','Xu ','Liu ','Xi ','Gu ','Lang ','Rong ','Weng ','Gai ','Cuo ','Shi ','Tang ','Luo ','Ru ','Suo ','Xian ','Bei ','Yao ','Gui ','Bi ','Zong ','Gun ','Za ','Xiu ','Ce ','Hai ','Lan ','[?] ','Ji ','Li ','Can ','Lang ','Yu ','[?] ','Ying ','Mo ','Diao ','Tiao ','Mao ','Tong ','Zhu ','Peng ','An ','Lian ','Cong ','Xi ','Ping ','Qiu ','Jin ','Chun ','Jie ','Wei ','Tui ','Cao ','Yu ','Yi ','Ji ','Liao ','Bi ','Lu ','Su ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb0.php b/cacert/www/utf8_to_ascii/db/xb0.php new file mode 100644 index 0000000..e0314bd --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb0.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb0] = array( +'Bu ','Zhang ','Luo ','Jiang ','Man ','Yan ','Ling ','Ji ','Piao ','Gun ','Han ','Di ','Su ','Lu ','She ','Shang ','Di ','Mie ','Xun ','Man ','Bo ','Di ','Cuo ','Zhe ','Sen ','Xuan ','Wei ','Hu ','Ao ','Mi ','Lou ','Cu ','Zhong ','Cai ','Po ','Jiang ','Mi ','Cong ','Niao ','Hui ','Jun ','Yin ','Jian ','Yan ','Shu ','Yin ','Kui ','Chen ','Hu ','Sha ','Kou ','Qian ','Ma ','Zang ','Sonoko ','Qiang ','Dou ','Lian ','Lin ','Kou ','Ai ','Bi ','Li ','Wei ','Ji ','Xun ','Sheng ','Fan ','Meng ','Ou ','Chan ','Dian ','Xun ','Jiao ','Rui ','Rui ','Lei ','Yu ','Qiao ','Chu ','Hua ','Jian ','Mai ','Yun ','Bao ','You ','Qu ','Lu ','Rao ','Hui ','E ','Teng ','Fei ','Jue ','Zui ','Fa ','Ru ','Fen ','Kui ','Shun ','Rui ','Ya ','Xu ','Fu ','Jue ','Dang ','Wu ','Tong ','Si ','Xiao ','Xi ','Long ','Yun ','[?] ','Qi ','Jian ','Yun ','Sun ','Ling ','Yu ','Xia ','Yong ','Ji ','Hong ','Si ','Nong ','Lei ','Xuan ','Yun ','Yu ','Xi ','Hao ','Bo ','Hao ','Ai ','Wei ','Hui ','Wei ','Ji ','Ci ','Xiang ','Luan ','Mie ','Yi ','Leng ','Jiang ','Can ','Shen ','Qiang ','Lian ','Ke ','Yuan ','Da ','Ti ','Tang ','Xie ','Bi ','Zhan ','Sun ','Lian ','Fan ','Ding ','Jie ','Gu ','Xie ','Shu ','Jian ','Kao ','Hong ','Sa ','Xin ','Xun ','Yao ','Hie ','Sou ','Shu ','Xun ','Dui ','Pin ','Wei ','Neng ','Chou ','Mai ','Ru ','Piao ','Tai ','Qi ','Zao ','Chen ','Zhen ','Er ','Ni ','Ying ','Gao ','Cong ','Xiao ','Qi ','Fa ','Jian ','Xu ','Kui ','Jie ','Bian ','Diao ','Mi ','Lan ','Jin ','Cang ','Miao ','Qiong ','Qie ','Xian ','[?] ','Ou ','Xian ','Su ','Lu ','Yi ','Xu ','Xie ','Li ','Yi ','La ','Lei ','Xiao ','Di ','Zhi ','Bei ','Teng ','Yao ','Mo ','Huan ','Piao ','Fan ','Sou ','Tan ','Tui ','Qiong ','Qiao ','Wei ','Liu ','Hui ','[?] ','Gao ','Yun ','[?] ','Li ','Shu ','Chu ','Ai ','Lin ','Zao ','Xuan ','Chen ','Lai ','Huo ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb1.php b/cacert/www/utf8_to_ascii/db/xb1.php new file mode 100644 index 0000000..85f7478 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb1.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb1] = array( +'Tuo ','Wu ','Rui ','Rui ','Qi ','Heng ','Lu ','Su ','Tui ','Mang ','Yun ','Pin ','Yu ','Xun ','Ji ','Jiong ','Xian ','Mo ','Hagi ','Su ','Jiong ','[?] ','Nie ','Bo ','Rang ','Yi ','Xian ','Yu ','Ju ','Lian ','Lian ','Yin ','Qiang ','Ying ','Long ','Tong ','Wei ','Yue ','Ling ','Qu ','Yao ','Fan ','Mi ','Lan ','Kui ','Lan ','Ji ','Dang ','Katsura ','Lei ','Lei ','Hua ','Feng ','Zhi ','Wei ','Kui ','Zhan ','Huai ','Li ','Ji ','Mi ','Lei ','Huai ','Luo ','Ji ','Kui ','Lu ','Jian ','San ','[?] ','Lei ','Quan ','Xiao ','Yi ','Luan ','Men ','Bie ','Hu ','Hu ','Lu ','Nue ','Lu ','Si ','Xiao ','Qian ','Chu ','Hu ','Xu ','Cuo ','Fu ','Xu ','Xu ','Lu ','Hu ','Yu ','Hao ','Jiao ','Ju ','Guo ','Bao ','Yan ','Zhan ','Zhan ','Kui ','Ban ','Xi ','Shu ','Chong ','Qiu ','Diao ','Ji ','Qiu ','Cheng ','Shi ','[?] ','Di ','Zhe ','She ','Yu ','Gan ','Zi ','Hong ','Hui ','Meng ','Ge ','Sui ','Xia ','Chai ','Shi ','Yi ','Ma ','Xiang ','Fang ','E ','Pa ','Chi ','Qian ','Wen ','Wen ','Rui ','Bang ','Bi ','Yue ','Yue ','Jun ','Qi ','Ran ','Yin ','Qi ','Tian ','Yuan ','Jue ','Hui ','Qin ','Qi ','Zhong ','Ya ','Ci ','Mu ','Wang ','Fen ','Fen ','Hang ','Gong ','Zao ','Fu ','Ran ','Jie ','Fu ','Chi ','Dou ','Piao ','Xian ','Ni ','Te ','Qiu ','You ','Zha ','Ping ','Chi ','You ','He ','Han ','Ju ','Li ','Fu ','Ran ','Zha ','Gou ','Pi ','Bo ','Xian ','Zhu ','Diao ','Bie ','Bing ','Gu ','Ran ','Qu ','She ','Tie ','Ling ','Gu ','Dan ','Gu ','Ying ','Li ','Cheng ','Qu ','Mou ','Ge ','Ci ','Hui ','Hui ','Mang ','Fu ','Yang ','Wa ','Lie ','Zhu ','Yi ','Xian ','Kuo ','Jiao ','Li ','Yi ','Ping ','Ji ','Ha ','She ','Yi ','Wang ','Mo ','Qiong ','Qie ','Gui ','Gong ','Zhi ','Man ','Ebi ','Zhi ','Jia ','Rao ','Si ','Qi ','Xing ','Lie ','Qiu ','Shao ','Yong ','Jia ','Shui ','Che ','Bai ','E ','Han ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb2.php b/cacert/www/utf8_to_ascii/db/xb2.php new file mode 100644 index 0000000..c603938 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb2.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb2] = array( +'Shu ','Xuan ','Feng ','Shen ','Zhen ','Fu ','Xian ','Zhe ','Wu ','Fu ','Li ','Lang ','Bi ','Chu ','Yuan ','You ','Jie ','Dan ','Yan ','Ting ','Dian ','Shui ','Hui ','Gua ','Zhi ','Song ','Fei ','Ju ','Mi ','Qi ','Qi ','Yu ','Jun ','Zha ','Meng ','Qiang ','Si ','Xi ','Lun ','Li ','Die ','Tiao ','Tao ','Kun ','Gan ','Han ','Yu ','Bang ','Fei ','Pi ','Wei ','Dun ','Yi ','Yuan ','Su ','Quan ','Qian ','Rui ','Ni ','Qing ','Wei ','Liang ','Guo ','Wan ','Dong ','E ','Ban ','Di ','Wang ','Can ','Yang ','Ying ','Guo ','Chan ','[?] ','La ','Ke ','Ji ','He ','Ting ','Mai ','Xu ','Mian ','Yu ','Jie ','Shi ','Xuan ','Huang ','Yan ','Bian ','Rou ','Wei ','Fu ','Yuan ','Mei ','Wei ','Fu ','Ruan ','Xie ','You ','Qiu ','Mao ','Xia ','Ying ','Shi ','Chong ','Tang ','Zhu ','Zong ','Ti ','Fu ','Yuan ','Hui ','Meng ','La ','Du ','Hu ','Qiu ','Die ','Li ','Gua ','Yun ','Ju ','Nan ','Lou ','Qun ','Rong ','Ying ','Jiang ','[?] ','Lang ','Pang ','Si ','Xi ','Ci ','Xi ','Yuan ','Weng ','Lian ','Sou ','Ban ','Rong ','Rong ','Ji ','Wu ','Qiu ','Han ','Qin ','Yi ','Bi ','Hua ','Tang ','Yi ','Du ','Nai ','He ','Hu ','Hui ','Ma ','Ming ','Yi ','Wen ','Ying ','Teng ','Yu ','Cang ','So ','Ebi ','Man ','[?] ','Shang ','Zhe ','Cao ','Chi ','Di ','Ao ','Lu ','Wei ','Zhi ','Tang ','Chen ','Piao ','Qu ','Pi ','Yu ','Jian ','Luo ','Lou ','Qin ','Zhong ','Yin ','Jiang ','Shuai ','Wen ','Jiao ','Wan ','Zhi ','Zhe ','Ma ','Ma ','Guo ','Liu ','Mao ','Xi ','Cong ','Li ','Man ','Xiao ','Kamakiri ','Zhang ','Mang ','Xiang ','Mo ','Zui ','Si ','Qiu ','Te ','Zhi ','Peng ','Peng ','Jiao ','Qu ','Bie ','Liao ','Pan ','Gui ','Xi ','Ji ','Zhuan ','Huang ','Fei ','Lao ','Jue ','Jue ','Hui ','Yin ','Chan ','Jiao ','Shan ','Rao ','Xiao ','Mou ','Chong ','Xun ','Si ','[?] ','Cheng ','Dang ','Li ','Xie ','Shan ','Yi ','Jing ','Da ','Chan ','Qi ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb3.php b/cacert/www/utf8_to_ascii/db/xb3.php new file mode 100644 index 0000000..09e8dfc --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb3.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb3] = array( +'Ci ','Xiang ','She ','Luo ','Qin ','Ying ','Chai ','Li ','Ze ','Xuan ','Lian ','Zhu ','Ze ','Xie ','Mang ','Xie ','Qi ','Rong ','Jian ','Meng ','Hao ','Ruan ','Huo ','Zhuo ','Jie ','Bin ','He ','Mie ','Fan ','Lei ','Jie ','La ','Mi ','Li ','Chun ','Li ','Qiu ','Nie ','Lu ','Du ','Xiao ','Zhu ','Long ','Li ','Long ','Feng ','Ye ','Beng ','Shang ','Gu ','Juan ','Ying ','[?] ','Xi ','Can ','Qu ','Quan ','Du ','Can ','Man ','Jue ','Jie ','Zhu ','Zha ','Xie ','Huang ','Niu ','Pei ','Nu ','Xin ','Zhong ','Mo ','Er ','Ke ','Mie ','Xi ','Xing ','Yan ','Kan ','Yuan ','[?] ','Ling ','Xuan ','Shu ','Xian ','Tong ','Long ','Jie ','Xian ','Ya ','Hu ','Wei ','Dao ','Chong ','Wei ','Dao ','Zhun ','Heng ','Qu ','Yi ','Yi ','Bu ','Gan ','Yu ','Biao ','Cha ','Yi ','Shan ','Chen ','Fu ','Gun ','Fen ','Shuai ','Jie ','Na ','Zhong ','Dan ','Ri ','Zhong ','Zhong ','Xie ','Qi ','Xie ','Ran ','Zhi ','Ren ','Qin ','Jin ','Jun ','Yuan ','Mei ','Chai ','Ao ','Niao ','Hui ','Ran ','Jia ','Tuo ','Ling ','Dai ','Bao ','Pao ','Yao ','Zuo ','Bi ','Shao ','Tan ','Ju ','He ','Shu ','Xiu ','Zhen ','Yi ','Pa ','Bo ','Di ','Wa ','Fu ','Gun ','Zhi ','Zhi ','Ran ','Pan ','Yi ','Mao ','Tuo ','Na ','Kou ','Xian ','Chan ','Qu ','Bei ','Gun ','Xi ','Ne ','Bo ','Horo ','Fu ','Yi ','Chi ','Ku ','Ren ','Jiang ','Jia ','Cun ','Mo ','Jie ','Er ','Luo ','Ru ','Zhu ','Gui ','Yin ','Cai ','Lie ','Kamishimo ','Yuki ','Zhuang ','Dang ','[?] ','Kun ','Ken ','Niao ','Shu ','Jia ','Kun ','Cheng ','Li ','Juan ','Shen ','Pou ','Ge ','Yi ','Yu ','Zhen ','Liu ','Qiu ','Qun ','Ji ','Yi ','Bu ','Zhuang ','Shui ','Sha ','Qun ','Li ','Lian ','Lian ','Ku ','Jian ','Fou ','Chan ','Bi ','Gun ','Tao ','Yuan ','Ling ','Chi ','Chang ','Chou ','Duo ','Biao ','Liang ','Chang ','Pei ','Pei ','Fei ','Yuan ','Luo ','Guo ','Yan ','Du ','Xi ','Zhi ','Ju ','Qi ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb4.php b/cacert/www/utf8_to_ascii/db/xb4.php new file mode 100644 index 0000000..875e981 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb4.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb4] = array( +'Ji ','Zhi ','Gua ','Ken ','Che ','Ti ','Ti ','Fu ','Chong ','Xie ','Bian ','Die ','Kun ','Duan ','Xiu ','Xiu ','He ','Yuan ','Bao ','Bao ','Fu ','Yu ','Tuan ','Yan ','Hui ','Bei ','Chu ','Lu ','Ena ','Hitoe ','Yun ','Da ','Gou ','Da ','Huai ','Rong ','Yuan ','Ru ','Nai ','Jiong ','Suo ','Ban ','Tun ','Chi ','Sang ','Niao ','Ying ','Jie ','Qian ','Huai ','Ku ','Lian ','Bao ','Li ','Zhe ','Shi ','Lu ','Yi ','Die ','Xie ','Xian ','Wei ','Biao ','Cao ','Ji ','Jiang ','Sen ','Bao ','Xiang ','Chihaya ','Pu ','Jian ','Zhuan ','Jian ','Zui ','Ji ','Dan ','Za ','Fan ','Bo ','Xiang ','Xin ','Bie ','Rao ','Man ','Lan ','Ao ','Duo ','Gui ','Cao ','Sui ','Nong ','Chan ','Lian ','Bi ','Jin ','Dang ','Shu ','Tan ','Bi ','Lan ','Pu ','Ru ','Zhi ','[?] ','Shu ','Wa ','Shi ','Bai ','Xie ','Bo ','Chen ','Lai ','Long ','Xi ','Xian ','Lan ','Zhe ','Dai ','Tasuki ','Zan ','Shi ','Jian ','Pan ','Yi ','Ran ','Ya ','Xi ','Xi ','Yao ','Feng ','Tan ','[?] ','Biao ','Fu ','Ba ','He ','Ji ','Ji ','Jian ','Guan ','Bian ','Yan ','Gui ','Jue ','Pian ','Mao ','Mi ','Mi ','Mie ','Shi ','Si ','Zhan ','Luo ','Jue ','Mi ','Tiao ','Lian ','Yao ','Zhi ','Jun ','Xi ','Shan ','Wei ','Xi ','Tian ','Yu ','Lan ','E ','Du ','Qin ','Pang ','Ji ','Ming ','Ying ','Gou ','Qu ','Zhan ','Jin ','Guan ','Deng ','Jian ','Luo ','Qu ','Jian ','Wei ','Jue ','Qu ','Luo ','Lan ','Shen ','Di ','Guan ','Jian ','Guan ','Yan ','Gui ','Mi ','Shi ','Zhan ','Lan ','Jue ','Ji ','Xi ','Di ','Tian ','Yu ','Gou ','Jin ','Qu ','Jiao ','Jiu ','Jin ','Cu ','Jue ','Zhi ','Chao ','Ji ','Gu ','Dan ','Zui ','Di ','Shang ','Hua ','Quan ','Ge ','Chi ','Jie ','Gui ','Gong ','Hong ','Jie ','Hun ','Qiu ','Xing ','Su ','Ni ','Ji ','Lu ','Zhi ','Zha ','Bi ','Xing ','Hu ','Shang ','Gong ','Zhi ','Xue ','Chu ','Xi ','Yi ','Lu ','Jue ','Xi ','Yan ','Xi ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb5.php b/cacert/www/utf8_to_ascii/db/xb5.php new file mode 100644 index 0000000..8d17b49 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb5.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb5] = array( +'Yan ','Yan ','Ding ','Fu ','Qiu ','Qiu ','Jiao ','Hong ','Ji ','Fan ','Xun ','Diao ','Hong ','Cha ','Tao ','Xu ','Jie ','Yi ','Ren ','Xun ','Yin ','Shan ','Qi ','Tuo ','Ji ','Xun ','Yin ','E ','Fen ','Ya ','Yao ','Song ','Shen ','Yin ','Xin ','Jue ','Xiao ','Ne ','Chen ','You ','Zhi ','Xiong ','Fang ','Xin ','Chao ','She ','Xian ','Sha ','Tun ','Xu ','Yi ','Yi ','Su ','Chi ','He ','Shen ','He ','Xu ','Zhen ','Zhu ','Zheng ','Gou ','Zi ','Zi ','Zhan ','Gu ','Fu ','Quan ','Die ','Ling ','Di ','Yang ','Li ','Nao ','Pan ','Zhou ','Gan ','Yi ','Ju ','Ao ','Zha ','Tuo ','Yi ','Qu ','Zhao ','Ping ','Bi ','Xiong ','Qu ','Ba ','Da ','Zu ','Tao ','Zhu ','Ci ','Zhe ','Yong ','Xu ','Xun ','Yi ','Huang ','He ','Shi ','Cha ','Jiao ','Shi ','Hen ','Cha ','Gou ','Gui ','Quan ','Hui ','Jie ','Hua ','Gai ','Xiang ','Wei ','Shen ','Chou ','Tong ','Mi ','Zhan ','Ming ','E ','Hui ','Yan ','Xiong ','Gua ','Er ','Beng ','Tiao ','Chi ','Lei ','Zhu ','Kuang ','Kua ','Wu ','Yu ','Teng ','Ji ','Zhi ','Ren ','Su ','Lang ','E ','Kuang ','E ','Shi ','Ting ','Dan ','Bo ','Chan ','You ','Heng ','Qiao ','Qin ','Shua ','An ','Yu ','Xiao ','Cheng ','Jie ','Xian ','Wu ','Wu ','Gao ','Song ','Pu ','Hui ','Jing ','Shuo ','Zhen ','Shuo ','Du ','Yasashi ','Chang ','Shui ','Jie ','Ke ','Qu ','Cong ','Xiao ','Sui ','Wang ','Xuan ','Fei ','Chi ','Ta ','Yi ','Na ','Yin ','Diao ','Pi ','Chuo ','Chan ','Chen ','Zhun ','Ji ','Qi ','Tan ','Zhui ','Wei ','Ju ','Qing ','Jian ','Zheng ','Ze ','Zou ','Qian ','Zhuo ','Liang ','Jian ','Zhu ','Hao ','Lun ','Shen ','Biao ','Huai ','Pian ','Yu ','Die ','Xu ','Pian ','Shi ','Xuan ','Shi ','Hun ','Hua ','E ','Zhong ','Di ','Xie ','Fu ','Pu ','Ting ','Jian ','Qi ','Yu ','Zi ','Chuan ','Xi ','Hui ','Yin ','An ','Xian ','Nan ','Chen ','Feng ','Zhu ','Yang ','Yan ','Heng ','Xuan ','Ge ','Nuo ','Qi ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb6.php b/cacert/www/utf8_to_ascii/db/xb6.php new file mode 100644 index 0000000..19b8f98 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb6.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb6] = array( +'Mou ','Ye ','Wei ','[?] ','Teng ','Zou ','Shan ','Jian ','Bo ','Ku ','Huang ','Huo ','Ge ','Ying ','Mi ','Xiao ','Mi ','Xi ','Qiang ','Chen ','Nue ','Ti ','Su ','Bang ','Chi ','Qian ','Shi ','Jiang ','Yuan ','Xie ','Xue ','Tao ','Yao ','Yao ','[?] ','Yu ','Biao ','Cong ','Qing ','Li ','Mo ','Mo ','Shang ','Zhe ','Miu ','Jian ','Ze ','Jie ','Lian ','Lou ','Can ','Ou ','Guan ','Xi ','Zhuo ','Ao ','Ao ','Jin ','Zhe ','Yi ','Hu ','Jiang ','Man ','Chao ','Han ','Hua ','Chan ','Xu ','Zeng ','Se ','Xi ','She ','Dui ','Zheng ','Nao ','Lan ','E ','Ying ','Jue ','Ji ','Zun ','Jiao ','Bo ','Hui ','Zhuan ','Mu ','Zen ','Zha ','Shi ','Qiao ','Tan ','Zen ','Pu ','Sheng ','Xuan ','Zao ','Tan ','Dang ','Sui ','Qian ','Ji ','Jiao ','Jing ','Lian ','Nou ','Yi ','Ai ','Zhan ','Pi ','Hui ','Hua ','Yi ','Yi ','Shan ','Rang ','Nou ','Qian ','Zhui ','Ta ','Hu ','Zhou ','Hao ','Ye ','Ying ','Jian ','Yu ','Jian ','Hui ','Du ','Zhe ','Xuan ','Zan ','Lei ','Shen ','Wei ','Chan ','Li ','Yi ','Bian ','Zhe ','Yan ','E ','Chou ','Wei ','Chou ','Yao ','Chan ','Rang ','Yin ','Lan ','Chen ','Huo ','Zhe ','Huan ','Zan ','Yi ','Dang ','Zhan ','Yan ','Du ','Yan ','Ji ','Ding ','Fu ','Ren ','Ji ','Jie ','Hong ','Tao ','Rang ','Shan ','Qi ','Tuo ','Xun ','Yi ','Xun ','Ji ','Ren ','Jiang ','Hui ','Ou ','Ju ','Ya ','Ne ','Xu ','E ','Lun ','Xiong ','Song ','Feng ','She ','Fang ','Jue ','Zheng ','Gu ','He ','Ping ','Zu ','Shi ','Xiong ','Zha ','Su ','Zhen ','Di ','Zou ','Ci ','Qu ','Zhao ','Bi ','Yi ','Yi ','Kuang ','Lei ','Shi ','Gua ','Shi ','Jie ','Hui ','Cheng ','Zhu ','Shen ','Hua ','Dan ','Gou ','Quan ','Gui ','Xun ','Yi ','Zheng ','Gai ','Xiang ','Cha ','Hun ','Xu ','Zhou ','Jie ','Wu ','Yu ','Qiao ','Wu ','Gao ','You ','Hui ','Kuang ','Shuo ','Song ','Ai ','Qing ','Zhu ','Zou ','Nuo ','Du ','Zhuo ','Fei ','Ke ','Wei ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb7.php b/cacert/www/utf8_to_ascii/db/xb7.php new file mode 100644 index 0000000..f325db6 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb7.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb7] = array( +'Yu ','Shui ','Shen ','Diao ','Chan ','Liang ','Zhun ','Sui ','Tan ','Shen ','Yi ','Mou ','Chen ','Die ','Huang ','Jian ','Xie ','Nue ','Ye ','Wei ','E ','Yu ','Xuan ','Chan ','Zi ','An ','Yan ','Di ','Mi ','Pian ','Xu ','Mo ','Dang ','Su ','Xie ','Yao ','Bang ','Shi ','Qian ','Mi ','Jin ','Man ','Zhe ','Jian ','Miu ','Tan ','Zen ','Qiao ','Lan ','Pu ','Jue ','Yan ','Qian ','Zhan ','Chen ','Gu ','Qian ','Hong ','Xia ','Jue ','Hong ','Han ','Hong ','Xi ','Xi ','Huo ','Liao ','Han ','Du ','Long ','Dou ','Jiang ','Qi ','Shi ','Li ','Deng ','Wan ','Bi ','Shu ','Xian ','Feng ','Zhi ','Zhi ','Yan ','Yan ','Shi ','Chu ','Hui ','Tun ','Yi ','Tun ','Yi ','Jian ','Ba ','Hou ','E ','Cu ','Xiang ','Huan ','Jian ','Ken ','Gai ','Qu ','Fu ','Xi ','Bin ','Hao ','Yu ','Zhu ','Jia ','[?] ','Xi ','Bo ','Wen ','Huan ','Bin ','Di ','Zong ','Fen ','Yi ','Zhi ','Bao ','Chai ','Han ','Pi ','Na ','Pi ','Gou ','Na ','You ','Diao ','Mo ','Si ','Xiu ','Huan ','Kun ','He ','He ','Mo ','Han ','Mao ','Li ','Ni ','Bi ','Yu ','Jia ','Tuan ','Mao ','Pi ','Xi ','E ','Ju ','Mo ','Chu ','Tan ','Huan ','Jue ','Bei ','Zhen ','Yuan ','Fu ','Cai ','Gong ','Te ','Yi ','Hang ','Wan ','Pin ','Huo ','Fan ','Tan ','Guan ','Ze ','Zhi ','Er ','Zhu ','Shi ','Bi ','Zi ','Er ','Gui ','Pian ','Bian ','Mai ','Dai ','Sheng ','Kuang ','Fei ','Tie ','Yi ','Chi ','Mao ','He ','Bi ','Lu ','Ren ','Hui ','Gai ','Pian ','Zi ','Jia ','Xu ','Zei ','Jiao ','Gai ','Zang ','Jian ','Ying ','Xun ','Zhen ','She ','Bin ','Bin ','Qiu ','She ','Chuan ','Zang ','Zhou ','Lai ','Zan ','Si ','Chen ','Shang ','Tian ','Pei ','Geng ','Xian ','Mai ','Jian ','Sui ','Fu ','Tan ','Cong ','Cong ','Zhi ','Ji ','Zhang ','Du ','Jin ','Xiong ','Shun ','Yun ','Bao ','Zai ','Lai ','Feng ','Cang ','Ji ','Sheng ','Ai ','Zhuan ','Fu ','Gou ','Sai ','Ze ','Liao ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb8.php b/cacert/www/utf8_to_ascii/db/xb8.php new file mode 100644 index 0000000..c29800d --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb8.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb8] = array( +'Wei ','Bai ','Chen ','Zhuan ','Zhi ','Zhui ','Biao ','Yun ','Zeng ','Tan ','Zan ','Yan ','[?] ','Shan ','Wan ','Ying ','Jin ','Gan ','Xian ','Zang ','Bi ','Du ','Shu ','Yan ','[?] ','Xuan ','Long ','Gan ','Zang ','Bei ','Zhen ','Fu ','Yuan ','Gong ','Cai ','Ze ','Xian ','Bai ','Zhang ','Huo ','Zhi ','Fan ','Tan ','Pin ','Bian ','Gou ','Zhu ','Guan ','Er ','Jian ','Bi ','Shi ','Tie ','Gui ','Kuang ','Dai ','Mao ','Fei ','He ','Yi ','Zei ','Zhi ','Jia ','Hui ','Zi ','Ren ','Lu ','Zang ','Zi ','Gai ','Jin ','Qiu ','Zhen ','Lai ','She ','Fu ','Du ','Ji ','Shu ','Shang ','Si ','Bi ','Zhou ','Geng ','Pei ','Tan ','Lai ','Feng ','Zhui ','Fu ','Zhuan ','Sai ','Ze ','Yan ','Zan ','Yun ','Zeng ','Shan ','Ying ','Gan ','Chi ','Xi ','She ','Nan ','Xiong ','Xi ','Cheng ','He ','Cheng ','Zhe ','Xia ','Tang ','Zou ','Zou ','Li ','Jiu ','Fu ','Zhao ','Gan ','Qi ','Shan ','Qiong ','Qin ','Xian ','Ci ','Jue ','Qin ','Chi ','Ci ','Chen ','Chen ','Die ','Ju ','Chao ','Di ','Se ','Zhan ','Zhu ','Yue ','Qu ','Jie ','Chi ','Chu ','Gua ','Xue ','Ci ','Tiao ','Duo ','Lie ','Gan ','Suo ','Cu ','Xi ','Zhao ','Su ','Yin ','Ju ','Jian ','Que ','Tang ','Chuo ','Cui ','Lu ','Qu ','Dang ','Qiu ','Zi ','Ti ','Qu ','Chi ','Huang ','Qiao ','Qiao ','Yao ','Zao ','Ti ','[?] ','Zan ','Zan ','Zu ','Pa ','Bao ','Ku ','Ke ','Dun ','Jue ','Fu ','Chen ','Jian ','Fang ','Zhi ','Sa ','Yue ','Pa ','Qi ','Yue ','Qiang ','Tuo ','Tai ','Yi ','Nian ','Ling ','Mei ','Ba ','Die ','Ku ','Tuo ','Jia ','Ci ','Pao ','Qia ','Zhu ','Ju ','Die ','Zhi ','Fu ','Pan ','Ju ','Shan ','Bo ','Ni ','Ju ','Li ','Gen ','Yi ','Ji ','Dai ','Xian ','Jiao ','Duo ','Zhu ','Zhuan ','Kua ','Zhuai ','Gui ','Qiong ','Kui ','Xiang ','Chi ','Lu ','Beng ','Zhi ','Jia ','Tiao ','Cai ','Jian ','Ta ','Qiao ','Bi ','Xian ','Duo ','Ji ','Ju ','Ji ','Shu ','Tu ', +); diff --git a/cacert/www/utf8_to_ascii/db/xb9.php b/cacert/www/utf8_to_ascii/db/xb9.php new file mode 100644 index 0000000..6fcceca --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xb9.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xb9] = array( +'Chu ','Jing ','Nie ','Xiao ','Bo ','Chi ','Qun ','Mou ','Shu ','Lang ','Yong ','Jiao ','Chou ','Qiao ','[?] ','Ta ','Jian ','Qi ','Wo ','Wei ','Zhuo ','Jie ','Ji ','Nie ','Ju ','Ju ','Lun ','Lu ','Leng ','Huai ','Ju ','Chi ','Wan ','Quan ','Ti ','Bo ','Zu ','Qie ','Ji ','Cu ','Zong ','Cai ','Zong ','Peng ','Zhi ','Zheng ','Dian ','Zhi ','Yu ','Duo ','Dun ','Chun ','Yong ','Zhong ','Di ','Zhe ','Chen ','Chuai ','Jian ','Gua ','Tang ','Ju ','Fu ','Zu ','Die ','Pian ','Rou ','Nuo ','Ti ','Cha ','Tui ','Jian ','Dao ','Cuo ','Xi ','Ta ','Qiang ','Zhan ','Dian ','Ti ','Ji ','Nie ','Man ','Liu ','Zhan ','Bi ','Chong ','Lu ','Liao ','Cu ','Tang ','Dai ','Suo ','Xi ','Kui ','Ji ','Zhi ','Qiang ','Di ','Man ','Zong ','Lian ','Beng ','Zao ','Nian ','Bie ','Tui ','Ju ','Deng ','Ceng ','Xian ','Fan ','Chu ','Zhong ','Dun ','Bo ','Cu ','Zu ','Jue ','Jue ','Lin ','Ta ','Qiao ','Qiao ','Pu ','Liao ','Dun ','Cuan ','Kuang ','Zao ','Ta ','Bi ','Bi ','Zhu ','Ju ','Chu ','Qiao ','Dun ','Chou ','Ji ','Wu ','Yue ','Nian ','Lin ','Lie ','Zhi ','Li ','Zhi ','Chan ','Chu ','Duan ','Wei ','Long ','Lin ','Xian ','Wei ','Zuan ','Lan ','Xie ','Rang ','Xie ','Nie ','Ta ','Qu ','Jie ','Cuan ','Zuan ','Xi ','Kui ','Jue ','Lin ','Shen ','Gong ','Dan ','Segare ','Qu ','Ti ','Duo ','Duo ','Gong ','Lang ','Nerau ','Luo ','Ai ','Ji ','Ju ','Tang ','Utsuke ','[?] ','Yan ','Shitsuke ','Kang ','Qu ','Lou ','Lao ','Tuo ','Zhi ','Yagate ','Ti ','Dao ','Yagate ','Yu ','Che ','Ya ','Gui ','Jun ','Wei ','Yue ','Xin ','Di ','Xuan ','Fan ','Ren ','Shan ','Qiang ','Shu ','Tun ','Chen ','Dai ','E ','Na ','Qi ','Mao ','Ruan ','Ren ','Fan ','Zhuan ','Hong ','Hu ','Qu ','Huang ','Di ','Ling ','Dai ','Ao ','Zhen ','Fan ','Kuang ','Ang ','Peng ','Bei ','Gu ','Ku ','Pao ','Zhu ','Rong ','E ','Ba ','Zhou ','Zhi ','Yao ','Ke ','Yi ','Qing ','Shi ','Ping ', +); diff --git a/cacert/www/utf8_to_ascii/db/xba.php b/cacert/www/utf8_to_ascii/db/xba.php new file mode 100644 index 0000000..47bebdf --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xba.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xba] = array( +'Er ','Qiong ','Ju ','Jiao ','Guang ','Lu ','Kai ','Quan ','Zhou ','Zai ','Zhi ','She ','Liang ','Yu ','Shao ','You ','Huan ','Yun ','Zhe ','Wan ','Fu ','Qing ','Zhou ','Ni ','Ling ','Zhe ','Zhan ','Liang ','Zi ','Hui ','Wang ','Chuo ','Guo ','Kan ','Yi ','Peng ','Qian ','Gun ','Nian ','Pian ','Guan ','Bei ','Lun ','Pai ','Liang ','Ruan ','Rou ','Ji ','Yang ','Xian ','Chuan ','Cou ','Qun ','Ge ','You ','Hong ','Shu ','Fu ','Zi ','Fu ','Wen ','Ben ','Zhan ','Yu ','Wen ','Tao ','Gu ','Zhen ','Xia ','Yuan ','Lu ','Jiu ','Chao ','Zhuan ','Wei ','Hun ','Sori ','Che ','Jiao ','Zhan ','Pu ','Lao ','Fen ','Fan ','Lin ','Ge ','Se ','Kan ','Huan ','Yi ','Ji ','Dui ','Er ','Yu ','Xian ','Hong ','Lei ','Pei ','Li ','Li ','Lu ','Lin ','Che ','Ya ','Gui ','Xuan ','Di ','Ren ','Zhuan ','E ','Lun ','Ruan ','Hong ','Ku ','Ke ','Lu ','Zhou ','Zhi ','Yi ','Hu ','Zhen ','Li ','Yao ','Qing ','Shi ','Zai ','Zhi ','Jiao ','Zhou ','Quan ','Lu ','Jiao ','Zhe ','Fu ','Liang ','Nian ','Bei ','Hui ','Gun ','Wang ','Liang ','Chuo ','Zi ','Cou ','Fu ','Ji ','Wen ','Shu ','Pei ','Yuan ','Xia ','Zhan ','Lu ','Che ','Lin ','Xin ','Gu ','Ci ','Ci ','Pi ','Zui ','Bian ','La ','La ','Ci ','Xue ','Ban ','Bian ','Bian ','Bian ','[?] ','Bian ','Ban ','Ci ','Bian ','Bian ','Chen ','Ru ','Nong ','Nong ','Zhen ','Chuo ','Chuo ','Suberu ','Reng ','Bian ','Bian ','Sip ','Ip ','Liao ','Da ','Chan ','Gan ','Qian ','Yu ','Yu ','Qi ','Xun ','Yi ','Guo ','Mai ','Qi ','Za ','Wang ','Jia ','Zhun ','Ying ','Ti ','Yun ','Jin ','Hang ','Ya ','Fan ','Wu ','Da ','E ','Huan ','Zhe ','Totemo ','Jin ','Yuan ','Wei ','Lian ','Chi ','Che ','Ni ','Tiao ','Zhi ','Yi ','Jiong ','Jia ','Chen ','Dai ','Er ','Di ','Po ','Wang ','Die ','Ze ','Tao ','Shu ','Tuo ','Kep ','Jing ','Hui ','Tong ','You ','Mi ','Beng ','Ji ','Nai ','Yi ','Jie ','Zhui ','Lie ','Xun ', +); diff --git a/cacert/www/utf8_to_ascii/db/xbb.php b/cacert/www/utf8_to_ascii/db/xbb.php new file mode 100644 index 0000000..98240a2 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xbb.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xbb] = array( +'Tui ','Song ','Gua ','Tao ','Pang ','Hou ','Ni ','Dun ','Jiong ','Xuan ','Xun ','Bu ','You ','Xiao ','Qiu ','Tou ','Zhu ','Qiu ','Di ','Di ','Tu ','Jing ','Ti ','Dou ','Yi ','Zhe ','Tong ','Guang ','Wu ','Shi ','Cheng ','Su ','Zao ','Qun ','Feng ','Lian ','Suo ','Hui ','Li ','Sako ','Lai ','Ben ','Cuo ','Jue ','Beng ','Huan ','Dai ','Lu ','You ','Zhou ','Jin ','Yu ','Chuo ','Kui ','Wei ','Ti ','Yi ','Da ','Yuan ','Luo ','Bi ','Nuo ','Yu ','Dang ','Sui ','Dun ','Sui ','Yan ','Chuan ','Chi ','Ti ','Yu ','Shi ','Zhen ','You ','Yun ','E ','Bian ','Guo ','E ','Xia ','Huang ','Qiu ','Dao ','Da ','Wei ','Appare ','Yi ','Gou ','Yao ','Chu ','Liu ','Xun ','Ta ','Di ','Chi ','Yuan ','Su ','Ta ','Qian ','[?] ','Yao ','Guan ','Zhang ','Ao ','Shi ','Ce ','Chi ','Su ','Zao ','Zhe ','Dun ','Di ','Lou ','Chi ','Cuo ','Lin ','Zun ','Rao ','Qian ','Xuan ','Yu ','Yi ','Wu ','Liao ','Ju ','Shi ','Bi ','Yao ','Mai ','Xie ','Sui ','Huan ','Zhan ','Teng ','Er ','Miao ','Bian ','Bian ','La ','Li ','Yuan ','Yao ','Luo ','Li ','Yi ','Ting ','Deng ','Qi ','Yong ','Shan ','Han ','Yu ','Mang ','Ru ','Qiong ','[?] ','Kuang ','Fu ','Kang ','Bin ','Fang ','Xing ','Na ','Xin ','Shen ','Bang ','Yuan ','Cun ','Huo ','Xie ','Bang ','Wu ','Ju ','You ','Han ','Tai ','Qiu ','Bi ','Pei ','Bing ','Shao ','Bei ','Wa ','Di ','Zou ','Ye ','Lin ','Kuang ','Gui ','Zhu ','Shi ','Ku ','Yu ','Gai ','Ge ','Xi ','Zhi ','Ji ','Xun ','Hou ','Xing ','Jiao ','Xi ','Gui ','Nuo ','Lang ','Jia ','Kuai ','Zheng ','Otoko ','Yun ','Yan ','Cheng ','Dou ','Chi ','Lu ','Fu ','Wu ','Fu ','Gao ','Hao ','Lang ','Jia ','Geng ','Jun ','Ying ','Bo ','Xi ','Bei ','Li ','Yun ','Bu ','Xiao ','Qi ','Pi ','Qing ','Guo ','Zhou ','Tan ','Zou ','Ping ','Lai ','Ni ','Chen ','You ','Bu ','Xiang ','Dan ','Ju ','Yong ','Qiao ','Yi ','Du ','Yan ','Mei ', +); diff --git a/cacert/www/utf8_to_ascii/db/xbc.php b/cacert/www/utf8_to_ascii/db/xbc.php new file mode 100644 index 0000000..88b22f1 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xbc.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xbc] = array( +'Ruo ','Bei ','E ','Yu ','Juan ','Yu ','Yun ','Hou ','Kui ','Xiang ','Xiang ','Sou ','Tang ','Ming ','Xi ','Ru ','Chu ','Zi ','Zou ','Ju ','Wu ','Xiang ','Yun ','Hao ','Yong ','Bi ','Mo ','Chao ','Fu ','Liao ','Yin ','Zhuan ','Hu ','Qiao ','Yan ','Zhang ','Fan ','Qiao ','Xu ','Deng ','Bi ','Xin ','Bi ','Ceng ','Wei ','Zheng ','Mao ','Shan ','Lin ','Po ','Dan ','Meng ','Ye ','Cao ','Kuai ','Feng ','Meng ','Zou ','Kuang ','Lian ','Zan ','Chan ','You ','Qi ','Yan ','Chan ','Zan ','Ling ','Huan ','Xi ','Feng ','Zan ','Li ','You ','Ding ','Qiu ','Zhuo ','Pei ','Zhou ','Yi ','Hang ','Yu ','Jiu ','Yan ','Zui ','Mao ','Dan ','Xu ','Tou ','Zhen ','Fen ','Sakenomoto ','[?] ','Yun ','Tai ','Tian ','Qia ','Tuo ','Zuo ','Han ','Gu ','Su ','Po ','Chou ','Zai ','Ming ','Luo ','Chuo ','Chou ','You ','Tong ','Zhi ','Xian ','Jiang ','Cheng ','Yin ','Tu ','Xiao ','Mei ','Ku ','Suan ','Lei ','Pu ','Zui ','Hai ','Yan ','Xi ','Niang ','Wei ','Lu ','Lan ','Yan ','Tao ','Pei ','Zhan ','Chun ','Tan ','Zui ','Chuo ','Cu ','Kun ','Ti ','Mian ','Du ','Hu ','Xu ','Xing ','Tan ','Jiu ','Chun ','Yun ','Po ','Ke ','Sou ','Mi ','Quan ','Chou ','Cuo ','Yun ','Yong ','Ang ','Zha ','Hai ','Tang ','Jiang ','Piao ','Shan ','Yu ','Li ','Zao ','Lao ','Yi ','Jiang ','Pu ','Jiao ','Xi ','Tan ','Po ','Nong ','Yi ','Li ','Ju ','Jiao ','Yi ','Niang ','Ru ','Xun ','Chou ','Yan ','Ling ','Mi ','Mi ','Niang ','Xin ','Jiao ','Xi ','Mi ','Yan ','Bian ','Cai ','Shi ','You ','Shi ','Shi ','Li ','Zhong ','Ye ','Liang ','Li ','Jin ','Jin ','Qiu ','Yi ','Diao ','Dao ','Zhao ','Ding ','Po ','Qiu ','He ','Fu ','Zhen ','Zhi ','Ba ','Luan ','Fu ','Nai ','Diao ','Shan ','Qiao ','Kou ','Chuan ','Zi ','Fan ','Yu ','Hua ','Han ','Gong ','Qi ','Mang ','Ri ','Di ','Si ','Xi ','Yi ','Chai ','Shi ','Tu ','Xi ','Nu ','Qian ','Ishiyumi ','Jian ','Pi ','Ye ','Yin ', +); diff --git a/cacert/www/utf8_to_ascii/db/xbd.php b/cacert/www/utf8_to_ascii/db/xbd.php new file mode 100644 index 0000000..436a4d7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xbd.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xbd] = array( +'Ba ','Fang ','Chen ','Xing ','Tou ','Yue ','Yan ','Fu ','Pi ','Na ','Xin ','E ','Jue ','Dun ','Gou ','Yin ','Qian ','Ban ','Ji ','Ren ','Chao ','Niu ','Fen ','Yun ','Ji ','Qin ','Pi ','Guo ','Hong ','Yin ','Jun ','Shi ','Yi ','Zhong ','Nie ','Gai ','Ri ','Huo ','Tai ','Kang ','Habaki ','Irori ','Ngaak ','[?] ','Duo ','Zi ','Ni ','Tu ','Shi ','Min ','Gu ','E ','Ling ','Bing ','Yi ','Gu ','Ba ','Pi ','Yu ','Si ','Zuo ','Bu ','You ','Dian ','Jia ','Zhen ','Shi ','Shi ','Tie ','Ju ','Zhan ','Shi ','She ','Xuan ','Zhao ','Bao ','He ','Bi ','Sheng ','Chu ','Shi ','Bo ','Zhu ','Chi ','Za ','Po ','Tong ','Qian ','Fu ','Zhai ','Liu ','Qian ','Fu ','Li ','Yue ','Pi ','Yang ','Ban ','Bo ','Jie ','Gou ','Shu ','Zheng ','Mu ','Ni ','Nie ','Di ','Jia ','Mu ','Dan ','Shen ','Yi ','Si ','Kuang ','Ka ','Bei ','Jian ','Tong ','Xing ','Hong ','Jiao ','Chi ','Er ','Ge ','Bing ','Shi ','Mou ','Jia ','Yin ','Jun ','Zhou ','Chong ','Shang ','Tong ','Mo ','Lei ','Ji ','Yu ','Xu ','Ren ','Zun ','Zhi ','Qiong ','Shan ','Chi ','Xian ','Xing ','Quan ','Pi ','Tie ','Zhu ','Hou ','Ming ','Kua ','Yao ','Xian ','Xian ','Xiu ','Jun ','Cha ','Lao ','Ji ','Pi ','Ru ','Mi ','Yi ','Yin ','Guang ','An ','Diou ','You ','Se ','Kao ','Qian ','Luan ','Kasugai ','Ai ','Diao ','Han ','Rui ','Shi ','Keng ','Qiu ','Xiao ','Zhe ','Xiu ','Zang ','Ti ','Cuo ','Gua ','Gong ','Zhong ','Dou ','Lu ','Mei ','Lang ','Wan ','Xin ','Yun ','Bei ','Wu ','Su ','Yu ','Chan ','Ting ','Bo ','Han ','Jia ','Hong ','Cuan ','Feng ','Chan ','Wan ','Zhi ','Si ','Xuan ','Wu ','Wu ','Tiao ','Gong ','Zhuo ','Lue ','Xing ','Qian ','Shen ','Han ','Lue ','Xie ','Chu ','Zheng ','Ju ','Xian ','Tie ','Mang ','Pu ','Li ','Pan ','Rui ','Cheng ','Gao ','Li ','Te ','Pyeng ','Zhu ','[?] ','Tu ','Liu ','Zui ','Ju ','Chang ','Yuan ','Jian ','Gang ','Diao ','Tao ','Chang ', +); diff --git a/cacert/www/utf8_to_ascii/db/xbe.php b/cacert/www/utf8_to_ascii/db/xbe.php new file mode 100644 index 0000000..70e1c51 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xbe.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xbe] = array( +'Lun ','Kua ','Ling ','Bei ','Lu ','Li ','Qiang ','Pou ','Juan ','Min ','Zui ','Peng ','An ','Pi ','Xian ','Ya ','Zhui ','Lei ','A ','Kong ','Ta ','Kun ','Du ','Wei ','Chui ','Zi ','Zheng ','Ben ','Nie ','Cong ','Qun ','Tan ','Ding ','Qi ','Qian ','Zhuo ','Qi ','Yu ','Jin ','Guan ','Mao ','Chang ','Tian ','Xi ','Lian ','Tao ','Gu ','Cuo ','Shu ','Zhen ','Lu ','Meng ','Lu ','Hua ','Biao ','Ga ','Lai ','Ken ','Kazari ','Bu ','Nai ','Wan ','Zan ','[?] ','De ','Xian ','[?] ','Huo ','Liang ','[?] ','Men ','Kai ','Ying ','Di ','Lian ','Guo ','Xian ','Du ','Tu ','Wei ','Cong ','Fu ','Rou ','Ji ','E ','Rou ','Chen ','Ti ','Zha ','Hong ','Yang ','Duan ','Xia ','Yu ','Keng ','Xing ','Huang ','Wei ','Fu ','Zhao ','Cha ','Qie ','She ','Hong ','Kui ','Tian ','Mou ','Qiao ','Qiao ','Hou ','Tou ','Cong ','Huan ','Ye ','Min ','Jian ','Duan ','Jian ','Song ','Kui ','Hu ','Xuan ','Duo ','Jie ','Zhen ','Bian ','Zhong ','Zi ','Xiu ','Ye ','Mei ','Pai ','Ai ','Jie ','[?] ','Mei ','Chuo ','Ta ','Bang ','Xia ','Lian ','Suo ','Xi ','Liu ','Zu ','Ye ','Nou ','Weng ','Rong ','Tang ','Suo ','Qiang ','Ge ','Shuo ','Chui ','Bo ','Pan ','Sa ','Bi ','Sang ','Gang ','Zi ','Wu ','Ying ','Huang ','Tiao ','Liu ','Kai ','Sun ','Sha ','Sou ','Wan ','Hao ','Zhen ','Zhen ','Luo ','Yi ','Yuan ','Tang ','Nie ','Xi ','Jia ','Ge ','Ma ','Juan ','Kasugai ','Habaki ','Suo ','[?] ','[?] ','[?] ','Na ','Lu ','Suo ','Ou ','Zu ','Tuan ','Xiu ','Guan ','Xuan ','Lian ','Shou ','Ao ','Man ','Mo ','Luo ','Bi ','Wei ','Liu ','Di ','Qiao ','Cong ','Yi ','Lu ','Ao ','Keng ','Qiang ','Cui ','Qi ','Chang ','Tang ','Man ','Yong ','Chan ','Feng ','Jing ','Biao ','Shu ','Lou ','Xiu ','Cong ','Long ','Zan ','Jian ','Cao ','Li ','Xia ','Xi ','Kang ','[?] ','Beng ','[?] ','[?] ','Zheng ','Lu ','Hua ','Ji ','Pu ','Hui ','Qiang ','Po ','Lin ','Suo ','Xiu ','San ','Cheng ', +); diff --git a/cacert/www/utf8_to_ascii/db/xbf.php b/cacert/www/utf8_to_ascii/db/xbf.php new file mode 100644 index 0000000..d7f7b54 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xbf.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xbf] = array( +'Kui ','Si ','Liu ','Nao ','Heng ','Pie ','Sui ','Fan ','Qiao ','Quan ','Yang ','Tang ','Xiang ','Jue ','Jiao ','Zun ','Liao ','Jie ','Lao ','Dui ','Tan ','Zan ','Ji ','Jian ','Zhong ','Deng ','Ya ','Ying ','Dui ','Jue ','Nou ','Ti ','Pu ','Tie ','[?] ','[?] ','Ding ','Shan ','Kai ','Jian ','Fei ','Sui ','Lu ','Juan ','Hui ','Yu ','Lian ','Zhuo ','Qiao ','Qian ','Zhuo ','Lei ','Bi ','Tie ','Huan ','Ye ','Duo ','Guo ','Dang ','Ju ','Fen ','Da ','Bei ','Yi ','Ai ','Zong ','Xun ','Diao ','Zhu ','Heng ','Zhui ','Ji ','Nie ','Ta ','Huo ','Qing ','Bin ','Ying ','Kui ','Ning ','Xu ','Jian ','Jian ','Yari ','Cha ','Zhi ','Mie ','Li ','Lei ','Ji ','Zuan ','Kuang ','Shang ','Peng ','La ','Du ','Shuo ','Chuo ','Lu ','Biao ','Bao ','Lu ','[?] ','[?] ','Long ','E ','Lu ','Xin ','Jian ','Lan ','Bo ','Jian ','Yao ','Chan ','Xiang ','Jian ','Xi ','Guan ','Cang ','Nie ','Lei ','Cuan ','Qu ','Pan ','Luo ','Zuan ','Luan ','Zao ','Nie ','Jue ','Tang ','Shu ','Lan ','Jin ','Qiu ','Yi ','Zhen ','Ding ','Zhao ','Po ','Diao ','Tu ','Qian ','Chuan ','Shan ','Ji ','Fan ','Diao ','Men ','Nu ','Xi ','Chai ','Xing ','Gai ','Bu ','Tai ','Ju ','Dun ','Chao ','Zhong ','Na ','Bei ','Gang ','Ban ','Qian ','Yao ','Qin ','Jun ','Wu ','Gou ','Kang ','Fang ','Huo ','Tou ','Niu ','Ba ','Yu ','Qian ','Zheng ','Qian ','Gu ','Bo ','E ','Po ','Bu ','Ba ','Yue ','Zuan ','Mu ','Dan ','Jia ','Dian ','You ','Tie ','Bo ','Ling ','Shuo ','Qian ','Liu ','Bao ','Shi ','Xuan ','She ','Bi ','Ni ','Pi ','Duo ','Xing ','Kao ','Lao ','Er ','Mang ','Ya ','You ','Cheng ','Jia ','Ye ','Nao ','Zhi ','Dang ','Tong ','Lu ','Diao ','Yin ','Kai ','Zha ','Zhu ','Xian ','Ting ','Diu ','Xian ','Hua ','Quan ','Sha ','Jia ','Yao ','Ge ','Ming ','Zheng ','Se ','Jiao ','Yi ','Chan ','Chong ','Tang ','An ','Yin ','Ru ','Zhu ','Lao ','Pu ','Wu ','Lai ','Te ','Lian ','Keng ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc0.php b/cacert/www/utf8_to_ascii/db/xc0.php new file mode 100644 index 0000000..c85f3d9 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc0.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc0] = array( +'Xiao ','Suo ','Li ','Zheng ','Chu ','Guo ','Gao ','Tie ','Xiu ','Cuo ','Lue ','Feng ','Xin ','Liu ','Kai ','Jian ','Rui ','Ti ','Lang ','Qian ','Ju ','A ','Qiang ','Duo ','Tian ','Cuo ','Mao ','Ben ','Qi ','De ','Kua ','Kun ','Chang ','Xi ','Gu ','Luo ','Chui ','Zhui ','Jin ','Zhi ','Xian ','Juan ','Huo ','Pou ','Tan ','Ding ','Jian ','Ju ','Meng ','Zi ','Qie ','Ying ','Kai ','Qiang ','Song ','E ','Cha ','Qiao ','Zhong ','Duan ','Sou ','Huang ','Huan ','Ai ','Du ','Mei ','Lou ','Zi ','Fei ','Mei ','Mo ','Zhen ','Bo ','Ge ','Nie ','Tang ','Juan ','Nie ','Na ','Liu ','Hao ','Bang ','Yi ','Jia ','Bin ','Rong ','Biao ','Tang ','Man ','Luo ','Beng ','Yong ','Jing ','Di ','Zu ','Xuan ','Liu ','Tan ','Jue ','Liao ','Pu ','Lu ','Dui ','Lan ','Pu ','Cuan ','Qiang ','Deng ','Huo ','Lei ','Huan ','Zhuo ','Lian ','Yi ','Cha ','Biao ','La ','Chan ','Xiang ','Chang ','Chang ','Jiu ','Ao ','Die ','Qu ','Liao ','Mi ','Chang ','Men ','Ma ','Shuan ','Shan ','Huo ','Men ','Yan ','Bi ','Han ','Bi ','San ','Kai ','Kang ','Beng ','Hong ','Run ','San ','Xian ','Xian ','Jian ','Min ','Xia ','Yuru ','Dou ','Zha ','Nao ','Jian ','Peng ','Xia ','Ling ','Bian ','Bi ','Run ','He ','Guan ','Ge ','Ge ','Fa ','Chu ','Hong ','Gui ','Min ','Se ','Kun ','Lang ','Lu ','Ting ','Sha ','Ju ','Yue ','Yue ','Chan ','Qu ','Lin ','Chang ','Shai ','Kun ','Yan ','Min ','Yan ','E ','Hun ','Yu ','Wen ','Xiang ','Bao ','Xiang ','Qu ','Yao ','Wen ','Ban ','An ','Wei ','Yin ','Kuo ','Que ','Lan ','Du ','[?] ','Phwung ','Tian ','Nie ','Ta ','Kai ','He ','Que ','Chuang ','Guan ','Dou ','Qi ','Kui ','Tang ','Guan ','Piao ','Kan ','Xi ','Hui ','Chan ','Pi ','Dang ','Huan ','Ta ','Wen ','[?] ','Men ','Shuan ','Shan ','Yan ','Han ','Bi ','Wen ','Chuang ','Run ','Wei ','Xian ','Hong ','Jian ','Min ','Kang ','Men ','Zha ','Nao ','Gui ','Wen ','Ta ','Min ','Lu ','Kai ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc1.php b/cacert/www/utf8_to_ascii/db/xc1.php new file mode 100644 index 0000000..4d7485f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc1.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc1] = array( +'Fa ','Ge ','He ','Kun ','Jiu ','Yue ','Lang ','Du ','Yu ','Yan ','Chang ','Xi ','Wen ','Hun ','Yan ','E ','Chan ','Lan ','Qu ','Hui ','Kuo ','Que ','Ge ','Tian ','Ta ','Que ','Kan ','Huan ','Fu ','Fu ','Le ','Dui ','Xin ','Qian ','Wu ','Yi ','Tuo ','Yin ','Yang ','Dou ','E ','Sheng ','Ban ','Pei ','Keng ','Yun ','Ruan ','Zhi ','Pi ','Jing ','Fang ','Yang ','Yin ','Zhen ','Jie ','Cheng ','E ','Qu ','Di ','Zu ','Zuo ','Dian ','Ling ','A ','Tuo ','Tuo ','Po ','Bing ','Fu ','Ji ','Lu ','Long ','Chen ','Xing ','Duo ','Lou ','Mo ','Jiang ','Shu ','Duo ','Xian ','Er ','Gui ','Yu ','Gai ','Shan ','Xun ','Qiao ','Xing ','Chun ','Fu ','Bi ','Xia ','Shan ','Sheng ','Zhi ','Pu ','Dou ','Yuan ','Zhen ','Chu ','Xian ','Tou ','Nie ','Yun ','Xian ','Pei ','Pei ','Zou ','Yi ','Dui ','Lun ','Yin ','Ju ','Chui ','Chen ','Pi ','Ling ','Tao ','Xian ','Lu ','Sheng ','Xian ','Yin ','Zhu ','Yang ','Reng ','Shan ','Chong ','Yan ','Yin ','Yu ','Ti ','Yu ','Long ','Wei ','Wei ','Nie ','Dui ','Sui ','An ','Huang ','Jie ','Sui ','Yin ','Gai ','Yan ','Hui ','Ge ','Yun ','Wu ','Wei ','Ai ','Xi ','Tang ','Ji ','Zhang ','Dao ','Ao ','Xi ','Yin ','[?] ','Rao ','Lin ','Tui ','Deng ','Pi ','Sui ','Sui ','Yu ','Xian ','Fen ','Ni ','Er ','Ji ','Dao ','Xi ','Yin ','E ','Hui ','Long ','Xi ','Li ','Li ','Li ','Zhui ','He ','Zhi ','Zhun ','Jun ','Nan ','Yi ','Que ','Yan ','Qian ','Ya ','Xiong ','Ya ','Ji ','Gu ','Huan ','Zhi ','Gou ','Jun ','Ci ','Yong ','Ju ','Chu ','Hu ','Za ','Luo ','Yu ','Chou ','Diao ','Sui ','Han ','Huo ','Shuang ','Guan ','Chu ','Za ','Yong ','Ji ','Xi ','Chou ','Liu ','Li ','Nan ','Xue ','Za ','Ji ','Ji ','Yu ','Yu ','Xue ','Na ','Fou ','Se ','Mu ','Wen ','Fen ','Pang ','Yun ','Li ','Li ','Ang ','Ling ','Lei ','An ','Bao ','Meng ','Dian ','Dang ','Xing ','Wu ','Zhao ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc2.php b/cacert/www/utf8_to_ascii/db/xc2.php new file mode 100644 index 0000000..20fe9a2 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc2.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc2] = array( +'Xu ','Ji ','Mu ','Chen ','Xiao ','Zha ','Ting ','Zhen ','Pei ','Mei ','Ling ','Qi ','Chou ','Huo ','Sha ','Fei ','Weng ','Zhan ','Yin ','Ni ','Chou ','Tun ','Lin ','[?] ','Dong ','Ying ','Wu ','Ling ','Shuang ','Ling ','Xia ','Hong ','Yin ','Mo ','Mai ','Yun ','Liu ','Meng ','Bin ','Wu ','Wei ','Huo ','Yin ','Xi ','Yi ','Ai ','Dan ','Deng ','Xian ','Yu ','Lu ','Long ','Dai ','Ji ','Pang ','Yang ','Ba ','Pi ','Wei ','[?] ','Xi ','Ji ','Mai ','Meng ','Meng ','Lei ','Li ','Huo ','Ai ','Fei ','Dai ','Long ','Ling ','Ai ','Feng ','Li ','Bao ','[?] ','He ','He ','Bing ','Qing ','Qing ','Jing ','Tian ','Zhen ','Jing ','Cheng ','Qing ','Jing ','Jing ','Dian ','Jing ','Tian ','Fei ','Fei ','Kao ','Mi ','Mian ','Mian ','Pao ','Ye ','Tian ','Hui ','Ye ','Ge ','Ding ','Cha ','Jian ','Ren ','Di ','Du ','Wu ','Ren ','Qin ','Jin ','Xue ','Niu ','Ba ','Yin ','Sa ','Na ','Mo ','Zu ','Da ','Ban ','Yi ','Yao ','Tao ','Tuo ','Jia ','Hong ','Pao ','Yang ','Tomo ','Yin ','Jia ','Tao ','Ji ','Xie ','An ','An ','Hen ','Gong ','Kohaze ','Da ','Qiao ','Ting ','Wan ','Ying ','Sui ','Tiao ','Qiao ','Xuan ','Kong ','Beng ','Ta ','Zhang ','Bing ','Kuo ','Ju ','La ','Xie ','Rou ','Bang ','Yi ','Qiu ','Qiu ','He ','Xiao ','Mu ','Ju ','Jian ','Bian ','Di ','Jian ','On ','Tao ','Gou ','Ta ','Bei ','Xie ','Pan ','Ge ','Bi ','Kuo ','Tang ','Lou ','Gui ','Qiao ','Xue ','Ji ','Jian ','Jiang ','Chan ','Da ','Huo ','Xian ','Qian ','Du ','Wa ','Jian ','Lan ','Wei ','Ren ','Fu ','Mei ','Juan ','Ge ','Wei ','Qiao ','Han ','Chang ','[?] ','Rou ','Xun ','She ','Wei ','Ge ','Bei ','Tao ','Gou ','Yun ','[?] ','Bi ','Wei ','Hui ','Du ','Wa ','Du ','Wei ','Ren ','Fu ','Han ','Wei ','Yun ','Tao ','Jiu ','Jiu ','Xian ','Xie ','Xian ','Ji ','Yin ','Za ','Yun ','Shao ','Le ','Peng ','Heng ','Ying ','Yun ','Peng ','Yin ','Yin ','Xiang ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc3.php b/cacert/www/utf8_to_ascii/db/xc3.php new file mode 100644 index 0000000..3c81c7f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc3.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc3] = array( +'Hu ','Ye ','Ding ','Qing ','Pan ','Xiang ','Shun ','Han ','Xu ','Yi ','Xu ','Gu ','Song ','Kui ','Qi ','Hang ','Yu ','Wan ','Ban ','Dun ','Di ','Dan ','Pan ','Po ','Ling ','Ce ','Jing ','Lei ','He ','Qiao ','E ','E ','Wei ','Jie ','Gua ','Shen ','Yi ','Shen ','Hai ','Dui ','Pian ','Ping ','Lei ','Fu ','Jia ','Tou ','Hui ','Kui ','Jia ','Le ','Tian ','Cheng ','Ying ','Jun ','Hu ','Han ','Jing ','Tui ','Tui ','Pin ','Lai ','Tui ','Zi ','Zi ','Chui ','Ding ','Lai ','Yan ','Han ','Jian ','Ke ','Cui ','Jiong ','Qin ','Yi ','Sai ','Ti ','E ','E ','Yan ','Hun ','Kan ','Yong ','Zhuan ','Yan ','Xian ','Xin ','Yi ','Yuan ','Sang ','Dian ','Dian ','Jiang ','Ku ','Lei ','Liao ','Piao ','Yi ','Man ','Qi ','Rao ','Hao ','Qiao ','Gu ','Xun ','Qian ','Hui ','Zhan ','Ru ','Hong ','Bin ','Xian ','Pin ','Lu ','Lan ','Nie ','Quan ','Ye ','Ding ','Qing ','Han ','Xiang ','Shun ','Xu ','Xu ','Wan ','Gu ','Dun ','Qi ','Ban ','Song ','Hang ','Yu ','Lu ','Ling ','Po ','Jing ','Jie ','Jia ','Tian ','Han ','Ying ','Jiong ','Hai ','Yi ','Pin ','Hui ','Tui ','Han ','Ying ','Ying ','Ke ','Ti ','Yong ','E ','Zhuan ','Yan ','E ','Nie ','Man ','Dian ','Sang ','Hao ','Lei ','Zhan ','Ru ','Pin ','Quan ','Feng ','Biao ','Oroshi ','Fu ','Xia ','Zhan ','Biao ','Sa ','Ba ','Tai ','Lie ','Gua ','Xuan ','Shao ','Ju ','Bi ','Si ','Wei ','Yang ','Yao ','Sou ','Kai ','Sao ','Fan ','Liu ','Xi ','Liao ','Piao ','Piao ','Liu ','Biao ','Biao ','Biao ','Liao ','[?] ','Se ','Feng ','Biao ','Feng ','Yang ','Zhan ','Biao ','Sa ','Ju ','Si ','Sou ','Yao ','Liu ','Piao ','Biao ','Biao ','Fei ','Fan ','Fei ','Fei ','Shi ','Shi ','Can ','Ji ','Ding ','Si ','Tuo ','Zhan ','Sun ','Xiang ','Tun ','Ren ','Yu ','Juan ','Chi ','Yin ','Fan ','Fan ','Sun ','Yin ','Zhu ','Yi ','Zhai ','Bi ','Jie ','Tao ','Liu ','Ci ','Tie ','Si ','Bao ','Shi ','Duo ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc4.php b/cacert/www/utf8_to_ascii/db/xc4.php new file mode 100644 index 0000000..2573232 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc4.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc4] = array( +'Hai ','Ren ','Tian ','Jiao ','Jia ','Bing ','Yao ','Tong ','Ci ','Xiang ','Yang ','Yang ','Er ','Yan ','Le ','Yi ','Can ','Bo ','Nei ','E ','Bu ','Jun ','Dou ','Su ','Yu ','Shi ','Yao ','Hun ','Guo ','Shi ','Jian ','Zhui ','Bing ','Xian ','Bu ','Ye ','Tan ','Fei ','Zhang ','Wei ','Guan ','E ','Nuan ','Hun ','Hu ','Huang ','Tie ','Hui ','Jian ','Hou ','He ','Xing ','Fen ','Wei ','Gu ','Cha ','Song ','Tang ','Bo ','Gao ','Xi ','Kui ','Liu ','Sou ','Tao ','Ye ','Yun ','Mo ','Tang ','Man ','Bi ','Yu ','Xiu ','Jin ','San ','Kui ','Zhuan ','Shan ','Chi ','Dan ','Yi ','Ji ','Rao ','Cheng ','Yong ','Tao ','Hui ','Xiang ','Zhan ','Fen ','Hai ','Meng ','Yan ','Mo ','Chan ','Xiang ','Luo ','Zuan ','Nang ','Shi ','Ding ','Ji ','Tuo ','Xing ','Tun ','Xi ','Ren ','Yu ','Chi ','Fan ','Yin ','Jian ','Shi ','Bao ','Si ','Duo ','Yi ','Er ','Rao ','Xiang ','Jia ','Le ','Jiao ','Yi ','Bing ','Bo ','Dou ','E ','Yu ','Nei ','Jun ','Guo ','Hun ','Xian ','Guan ','Cha ','Kui ','Gu ','Sou ','Chan ','Ye ','Mo ','Bo ','Liu ','Xiu ','Jin ','Man ','San ','Zhuan ','Nang ','Shou ','Kui ','Guo ','Xiang ','Fen ','Ba ','Ni ','Bi ','Bo ','Tu ','Han ','Fei ','Jian ','An ','Ai ','Fu ','Xian ','Wen ','Xin ','Fen ','Bin ','Xing ','Ma ','Yu ','Feng ','Han ','Di ','Tuo ','Tuo ','Chi ','Xun ','Zhu ','Zhi ','Pei ','Xin ','Ri ','Sa ','Yin ','Wen ','Zhi ','Dan ','Lu ','You ','Bo ','Bao ','Kuai ','Tuo ','Yi ','Qu ','[?] ','Qu ','Jiong ','Bo ','Zhao ','Yuan ','Peng ','Zhou ','Ju ','Zhu ','Nu ','Ju ','Pi ','Zang ','Jia ','Ling ','Zhen ','Tai ','Fu ','Yang ','Shi ','Bi ','Tuo ','Tuo ','Si ','Liu ','Ma ','Pian ','Tao ','Zhi ','Rong ','Teng ','Dong ','Xun ','Quan ','Shen ','Jiong ','Er ','Hai ','Bo ','Zhu ','Yin ','Luo ','Shuu ','Dan ','Xie ','Liu ','Ju ','Song ','Qin ','Mang ','Liang ','Han ','Tu ','Xuan ','Tui ','Jun ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc5.php b/cacert/www/utf8_to_ascii/db/xc5.php new file mode 100644 index 0000000..1411bc1 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc5.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc5] = array( +'E ','Cheng ','Xin ','Ai ','Lu ','Zhui ','Zhou ','She ','Pian ','Kun ','Tao ','Lai ','Zong ','Ke ','Qi ','Qi ','Yan ','Fei ','Sao ','Yan ','Jie ','Yao ','Wu ','Pian ','Cong ','Pian ','Qian ','Fei ','Huang ','Jian ','Huo ','Yu ','Ti ','Quan ','Xia ','Zong ','Kui ','Rou ','Si ','Gua ','Tuo ','Kui ','Sou ','Qian ','Cheng ','Zhi ','Liu ','Pang ','Teng ','Xi ','Cao ','Du ','Yan ','Yuan ','Zou ','Sao ','Shan ','Li ','Zhi ','Shuang ','Lu ','Xi ','Luo ','Zhang ','Mo ','Ao ','Can ','Piao ','Cong ','Qu ','Bi ','Zhi ','Yu ','Xu ','Hua ','Bo ','Su ','Xiao ','Lin ','Chan ','Dun ','Liu ','Tuo ','Zeng ','Tan ','Jiao ','Tie ','Yan ','Luo ','Zhan ','Jing ','Yi ','Ye ','Tuo ','Bin ','Zou ','Yan ','Peng ','Lu ','Teng ','Xiang ','Ji ','Shuang ','Ju ','Xi ','Huan ','Li ','Biao ','Ma ','Yu ','Tuo ','Xun ','Chi ','Qu ','Ri ','Bo ','Lu ','Zang ','Shi ','Si ','Fu ','Ju ','Zou ','Zhu ','Tuo ','Nu ','Jia ','Yi ','Tai ','Xiao ','Ma ','Yin ','Jiao ','Hua ','Luo ','Hai ','Pian ','Biao ','Li ','Cheng ','Yan ','Xin ','Qin ','Jun ','Qi ','Qi ','Ke ','Zhui ','Zong ','Su ','Can ','Pian ','Zhi ','Kui ','Sao ','Wu ','Ao ','Liu ','Qian ','Shan ','Piao ','Luo ','Cong ','Chan ','Zou ','Ji ','Shuang ','Xiang ','Gu ','Wei ','Wei ','Wei ','Yu ','Gan ','Yi ','Ang ','Tou ','Xie ','Bao ','Bi ','Chi ','Ti ','Di ','Ku ','Hai ','Qiao ','Gou ','Kua ','Ge ','Tui ','Geng ','Pian ','Bi ','Ke ','Ka ','Yu ','Sui ','Lou ','Bo ','Xiao ','Pang ','Bo ','Ci ','Kuan ','Bin ','Mo ','Liao ','Lou ','Nao ','Du ','Zang ','Sui ','Ti ','Bin ','Kuan ','Lu ','Gao ','Gao ','Qiao ','Kao ','Qiao ','Lao ','Zao ','Biao ','Kun ','Kun ','Ti ','Fang ','Xiu ','Ran ','Mao ','Dan ','Kun ','Bin ','Fa ','Tiao ','Peng ','Zi ','Fa ','Ran ','Ti ','Pao ','Pi ','Mao ','Fu ','Er ','Rong ','Qu ','Gong ','Xiu ','Gua ','Ji ','Peng ','Zhua ','Shao ','Sha ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc6.php b/cacert/www/utf8_to_ascii/db/xc6.php new file mode 100644 index 0000000..900f461 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc6.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc6] = array( +'Ti ','Li ','Bin ','Zong ','Ti ','Peng ','Song ','Zheng ','Quan ','Zong ','Shun ','Jian ','Duo ','Hu ','La ','Jiu ','Qi ','Lian ','Zhen ','Bin ','Peng ','Mo ','San ','Man ','Man ','Seng ','Xu ','Lie ','Qian ','Qian ','Nong ','Huan ','Kuai ','Ning ','Bin ','Lie ','Rang ','Dou ','Dou ','Nao ','Hong ','Xi ','Dou ','Han ','Dou ','Dou ','Jiu ','Chang ','Yu ','Yu ','Li ','Juan ','Fu ','Qian ','Gui ','Zong ','Liu ','Gui ','Shang ','Yu ','Gui ','Mei ','Ji ','Qi ','Jie ','Kui ','Hun ','Ba ','Po ','Mei ','Xu ','Yan ','Xiao ','Liang ','Yu ','Tui ','Qi ','Wang ','Liang ','Wei ','Jian ','Chi ','Piao ','Bi ','Mo ','Ji ','Xu ','Chou ','Yan ','Zhan ','Yu ','Dao ','Ren ','Ji ','Eri ','Gong ','Tuo ','Diao ','Ji ','Xu ','E ','E ','Sha ','Hang ','Tun ','Mo ','Jie ','Shen ','Fan ','Yuan ','Bi ','Lu ','Wen ','Hu ','Lu ','Za ','Fang ','Fen ','Na ','You ','Namazu ','Todo ','He ','Xia ','Qu ','Han ','Pi ','Ling ','Tuo ','Bo ','Qiu ','Ping ','Fu ','Bi ','Ji ','Wei ','Ju ','Diao ','Bo ','You ','Gun ','Pi ','Nian ','Xing ','Tai ','Bao ','Fu ','Zha ','Ju ','Gu ','Kajika ','Tong ','[?] ','Ta ','Jie ','Shu ','Hou ','Xiang ','Er ','An ','Wei ','Tiao ','Zhu ','Yin ','Lie ','Luo ','Tong ','Yi ','Qi ','Bing ','Wei ','Jiao ','Bu ','Gui ','Xian ','Ge ','Hui ','Bora ','Mate ','Kao ','Gori ','Duo ','Jun ','Ti ','Man ','Xiao ','Za ','Sha ','Qin ','Yu ','Nei ','Zhe ','Gun ','Geng ','Su ','Wu ','Qiu ','Ting ','Fu ','Wan ','You ','Li ','Sha ','Sha ','Gao ','Meng ','Ugui ','Asari ','Subashiri ','Kazunoko ','Yong ','Ni ','Zi ','Qi ','Qing ','Xiang ','Nei ','Chun ','Ji ','Diao ','Qie ','Gu ','Zhou ','Dong ','Lai ','Fei ','Ni ','Yi ','Kun ','Lu ','Jiu ','Chang ','Jing ','Lun ','Ling ','Zou ','Li ','Meng ','Zong ','Zhi ','Nian ','Shachi ','Dojou ','Sukesou ','Shi ','Shen ','Hun ','Shi ','Hou ','Xing ','Zhu ','La ','Zong ','Ji ','Bian ','Bian ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc7.php b/cacert/www/utf8_to_ascii/db/xc7.php new file mode 100644 index 0000000..3811744 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc7.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc7] = array( +'Huan ','Quan ','Ze ','Wei ','Wei ','Yu ','Qun ','Rou ','Die ','Huang ','Lian ','Yan ','Qiu ','Qiu ','Jian ','Bi ','E ','Yang ','Fu ','Sai ','Jian ','Xia ','Tuo ','Hu ','Muroaji ','Ruo ','Haraka ','Wen ','Jian ','Hao ','Wu ','Fang ','Sao ','Liu ','Ma ','Shi ','Shi ','Yin ','Z ','Teng ','Ta ','Yao ','Ge ','Rong ','Qian ','Qi ','Wen ','Ruo ','Hatahata ','Lian ','Ao ','Le ','Hui ','Min ','Ji ','Tiao ','Qu ','Jian ','Sao ','Man ','Xi ','Qiu ','Biao ','Ji ','Ji ','Zhu ','Jiang ','Qiu ','Zhuan ','Yong ','Zhang ','Kang ','Xue ','Bie ','Jue ','Qu ','Xiang ','Bo ','Jiao ','Xun ','Su ','Huang ','Zun ','Shan ','Shan ','Fan ','Jue ','Lin ','Xun ','Miao ','Xi ','Eso ','Kyou ','Fen ','Guan ','Hou ','Kuai ','Zei ','Sao ','Zhan ','Gan ','Gui ','Sheng ','Li ','Chang ','Hatahata ','Shiira ','Mutsu ','Ru ','Ji ','Xu ','Huo ','Shiira ','Li ','Lie ','Li ','Mie ','Zhen ','Xiang ','E ','Lu ','Guan ','Li ','Xian ','Yu ','Dao ','Ji ','You ','Tun ','Lu ','Fang ','Ba ','He ','Bo ','Ping ','Nian ','Lu ','You ','Zha ','Fu ','Bo ','Bao ','Hou ','Pi ','Tai ','Gui ','Jie ','Kao ','Wei ','Er ','Tong ','Ze ','Hou ','Kuai ','Ji ','Jiao ','Xian ','Za ','Xiang ','Xun ','Geng ','Li ','Lian ','Jian ','Li ','Shi ','Tiao ','Gun ','Sha ','Wan ','Jun ','Ji ','Yong ','Qing ','Ling ','Qi ','Zou ','Fei ','Kun ','Chang ','Gu ','Ni ','Nian ','Diao ','Jing ','Shen ','Shi ','Zi ','Fen ','Die ','Bi ','Chang ','Shi ','Wen ','Wei ','Sai ','E ','Qiu ','Fu ','Huang ','Quan ','Jiang ','Bian ','Sao ','Ao ','Qi ','Ta ','Yin ','Yao ','Fang ','Jian ','Le ','Biao ','Xue ','Bie ','Man ','Min ','Yong ','Wei ','Xi ','Jue ','Shan ','Lin ','Zun ','Huo ','Gan ','Li ','Zhan ','Guan ','Niao ','Yi ','Fu ','Li ','Jiu ','Bu ','Yan ','Fu ','Diao ','Ji ','Feng ','Nio ','Gan ','Shi ','Feng ','Ming ','Bao ','Yuan ','Zhi ','Hu ','Qin ','Fu ','Fen ','Wen ','Jian ','Shi ','Yu ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc8.php b/cacert/www/utf8_to_ascii/db/xc8.php new file mode 100644 index 0000000..ec10812 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc8.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc8] = array( +'Fou ','Yiao ','Jue ','Jue ','Pi ','Huan ','Zhen ','Bao ','Yan ','Ya ','Zheng ','Fang ','Feng ','Wen ','Ou ','Te ','Jia ','Nu ','Ling ','Mie ','Fu ','Tuo ','Wen ','Li ','Bian ','Zhi ','Ge ','Yuan ','Zi ','Qu ','Xiao ','Zhi ','Dan ','Ju ','You ','Gu ','Zhong ','Yu ','Yang ','Rong ','Ya ','Tie ','Yu ','Shigi ','Ying ','Zhui ','Wu ','Er ','Gua ','Ai ','Zhi ','Yan ','Heng ','Jiao ','Ji ','Lie ','Zhu ','Ren ','Yi ','Hong ','Luo ','Ru ','Mou ','Ge ','Ren ','Jiao ','Xiu ','Zhou ','Zhi ','Luo ','Chidori ','Toki ','Ten ','Luan ','Jia ','Ji ','Yu ','Huan ','Tuo ','Bu ','Wu ','Juan ','Yu ','Bo ','Xun ','Xun ','Bi ','Xi ','Jun ','Ju ','Tu ','Jing ','Ti ','E ','E ','Kuang ','Hu ','Wu ','Shen ','Lai ','Ikaruga ','Kakesu ','Lu ','Ping ','Shu ','Fu ','An ','Zhao ','Peng ','Qin ','Qian ','Bei ','Diao ','Lu ','Que ','Jian ','Ju ','Tu ','Ya ','Yuan ','Qi ','Li ','Ye ','Zhui ','Kong ','Zhui ','Kun ','Sheng ','Qi ','Jing ','Yi ','Yi ','Jing ','Zi ','Lai ','Dong ','Qi ','Chun ','Geng ','Ju ','Qu ','Isuka ','Kikuitadaki ','Ji ','Shu ','[?] ','Chi ','Miao ','Rou ','An ','Qiu ','Ti ','Hu ','Ti ','E ','Jie ','Mao ','Fu ','Chun ','Tu ','Yan ','He ','Yuan ','Pian ','Yun ','Mei ','Hu ','Ying ','Dun ','Mu ','Ju ','Tsugumi ','Cang ','Fang ','Gu ','Ying ','Yuan ','Xuan ','Weng ','Shi ','He ','Chu ','Tang ','Xia ','Ruo ','Liu ','Ji ','Gu ','Jian ','Zhun ','Han ','Zi ','Zi ','Ni ','Yao ','Yan ','Ji ','Li ','Tian ','Kou ','Ti ','Ti ','Ni ','Tu ','Ma ','Jiao ','Gao ','Tian ','Chen ','Li ','Zhuan ','Zhe ','Ao ','Yao ','Yi ','Ou ','Chi ','Zhi ','Liao ','Rong ','Lou ','Bi ','Shuang ','Zhuo ','Yu ','Wu ','Jue ','Yin ','Quan ','Si ','Jiao ','Yi ','Hua ','Bi ','Ying ','Su ','Huang ','Fan ','Jiao ','Liao ','Yan ','Kao ','Jiu ','Xian ','Xian ','Tu ','Mai ','Zun ','Yu ','Ying ','Lu ','Tuan ','Xian ','Xue ','Yi ','Pi ', +); diff --git a/cacert/www/utf8_to_ascii/db/xc9.php b/cacert/www/utf8_to_ascii/db/xc9.php new file mode 100644 index 0000000..aaa249f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xc9.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xc9] = array( +'Shu ','Luo ','Qi ','Yi ','Ji ','Zhe ','Yu ','Zhan ','Ye ','Yang ','Pi ','Ning ','Huo ','Mi ','Ying ','Meng ','Di ','Yue ','Yu ','Lei ','Bao ','Lu ','He ','Long ','Shuang ','Yue ','Ying ','Guan ','Qu ','Li ','Luan ','Niao ','Jiu ','Ji ','Yuan ','Ming ','Shi ','Ou ','Ya ','Cang ','Bao ','Zhen ','Gu ','Dong ','Lu ','Ya ','Xiao ','Yang ','Ling ','Zhi ','Qu ','Yuan ','Xue ','Tuo ','Si ','Zhi ','Er ','Gua ','Xiu ','Heng ','Zhou ','Ge ','Luan ','Hong ','Wu ','Bo ','Li ','Juan ','Hu ','E ','Yu ','Xian ','Ti ','Wu ','Que ','Miao ','An ','Kun ','Bei ','Peng ','Qian ','Chun ','Geng ','Yuan ','Su ','Hu ','He ','E ','Gu ','Qiu ','Zi ','Mei ','Mu ','Ni ','Yao ','Weng ','Liu ','Ji ','Ni ','Jian ','He ','Yi ','Ying ','Zhe ','Liao ','Liao ','Jiao ','Jiu ','Yu ','Lu ','Xuan ','Zhan ','Ying ','Huo ','Meng ','Guan ','Shuang ','Lu ','Jin ','Ling ','Jian ','Xian ','Cuo ','Jian ','Jian ','Yan ','Cuo ','Lu ','You ','Cu ','Ji ','Biao ','Cu ','Biao ','Zhu ','Jun ','Zhu ','Jian ','Mi ','Mi ','Wu ','Liu ','Chen ','Jun ','Lin ','Ni ','Qi ','Lu ','Jiu ','Jun ','Jing ','Li ','Xiang ','Yan ','Jia ','Mi ','Li ','She ','Zhang ','Lin ','Jing ','Ji ','Ling ','Yan ','Cu ','Mai ','Mai ','Ge ','Chao ','Fu ','Mian ','Mian ','Fu ','Pao ','Qu ','Qu ','Mou ','Fu ','Xian ','Lai ','Qu ','Mian ','[?] ','Feng ','Fu ','Qu ','Mian ','Ma ','Mo ','Mo ','Hui ','Ma ','Zou ','Nen ','Fen ','Huang ','Huang ','Jin ','Guang ','Tian ','Tou ','Heng ','Xi ','Kuang ','Heng ','Shu ','Li ','Nian ','Chi ','Hei ','Hei ','Yi ','Qian ','Dan ','Xi ','Tuan ','Mo ','Mo ','Qian ','Dai ','Chu ','You ','Dian ','Yi ','Xia ','Yan ','Qu ','Mei ','Yan ','Jing ','Yu ','Li ','Dang ','Du ','Can ','Yin ','An ','Yan ','Tan ','An ','Zhen ','Dai ','Can ','Yi ','Mei ','Dan ','Yan ','Du ','Lu ','Zhi ','Fen ','Fu ','Fu ','Min ','Min ','Yuan ', +); diff --git a/cacert/www/utf8_to_ascii/db/xca.php b/cacert/www/utf8_to_ascii/db/xca.php new file mode 100644 index 0000000..d1ead9e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xca.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xca] = array( +'Cu ','Qu ','Chao ','Wa ','Zhu ','Zhi ','Mang ','Ao ','Bie ','Tuo ','Bi ','Yuan ','Chao ','Tuo ','Ding ','Mi ','Nai ','Ding ','Zi ','Gu ','Gu ','Dong ','Fen ','Tao ','Yuan ','Pi ','Chang ','Gao ','Qi ','Yuan ','Tang ','Teng ','Shu ','Shu ','Fen ','Fei ','Wen ','Ba ','Diao ','Tuo ','Tong ','Qu ','Sheng ','Shi ','You ','Shi ','Ting ','Wu ','Nian ','Jing ','Hun ','Ju ','Yan ','Tu ','Ti ','Xi ','Xian ','Yan ','Lei ','Bi ','Yao ','Qiu ','Han ','Wu ','Wu ','Hou ','Xi ','Ge ','Zha ','Xiu ','Weng ','Zha ','Nong ','Nang ','Qi ','Zhai ','Ji ','Zi ','Ji ','Ji ','Qi ','Ji ','Chi ','Chen ','Chen ','He ','Ya ','Ken ','Xie ','Pao ','Cuo ','Shi ','Zi ','Chi ','Nian ','Ju ','Tiao ','Ling ','Ling ','Chu ','Quan ','Xie ','Ken ','Nie ','Jiu ','Yao ','Chuo ','Kun ','Yu ','Chu ','Yi ','Ni ','Cuo ','Zou ','Qu ','Nen ','Xian ','Ou ','E ','Wo ','Yi ','Chuo ','Zou ','Dian ','Chu ','Jin ','Ya ','Chi ','Chen ','He ','Ken ','Ju ','Ling ','Pao ','Tiao ','Zi ','Ken ','Yu ','Chuo ','Qu ','Wo ','Long ','Pang ','Gong ','Pang ','Yan ','Long ','Long ','Gong ','Kan ','Ta ','Ling ','Ta ','Long ','Gong ','Kan ','Gui ','Qiu ','Bie ','Gui ','Yue ','Chui ','He ','Jue ','Xie ','Yu ','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/xcb.php b/cacert/www/utf8_to_ascii/db/xcb.php new file mode 100644 index 0000000..cacbe5c --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xcb.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xcb] = array( +'it','ix','i','ip','iet','iex','ie','iep','at','ax','a','ap','uox','uo','uop','ot','ox','o','op','ex','e','wu','bit','bix','bi','bip','biet','biex','bie','biep','bat','bax','ba','bap','buox','buo','buop','bot','box','bo','bop','bex','be','bep','but','bux','bu','bup','burx','bur','byt','byx','by','byp','byrx','byr','pit','pix','pi','pip','piex','pie','piep','pat','pax','pa','pap','puox','puo','puop','pot','pox','po','pop','put','pux','pu','pup','purx','pur','pyt','pyx','py','pyp','pyrx','pyr','bbit','bbix','bbi','bbip','bbiet','bbiex','bbie','bbiep','bbat','bbax','bba','bbap','bbuox','bbuo','bbuop','bbot','bbox','bbo','bbop','bbex','bbe','bbep','bbut','bbux','bbu','bbup','bburx','bbur','bbyt','bbyx','bby','bbyp','nbit','nbix','nbi','nbip','nbiex','nbie','nbiep','nbat','nbax','nba','nbap','nbot','nbox','nbo','nbop','nbut','nbux','nbu','nbup','nburx','nbur','nbyt','nbyx','nby','nbyp','nbyrx','nbyr','hmit','hmix','hmi','hmip','hmiex','hmie','hmiep','hmat','hmax','hma','hmap','hmuox','hmuo','hmuop','hmot','hmox','hmo','hmop','hmut','hmux','hmu','hmup','hmurx','hmur','hmyx','hmy','hmyp','hmyrx','hmyr','mit','mix','mi','mip','miex','mie','miep','mat','max','ma','map','muot','muox','muo','muop','mot','mox','mo','mop','mex','me','mut','mux','mu','mup','murx','mur','myt','myx','my','myp','fit','fix','fi','fip','fat','fax','fa','fap','fox','fo','fop','fut','fux','fu','fup','furx','fur','fyt','fyx','fy','fyp','vit','vix','vi','vip','viet','viex','vie','viep','vat','vax','va','vap','vot','vox','vo','vop','vex','vep','vut','vux','vu','vup','vurx','vur','vyt','vyx','vy','vyp','vyrx','vyr', +); diff --git a/cacert/www/utf8_to_ascii/db/xcc.php b/cacert/www/utf8_to_ascii/db/xcc.php new file mode 100644 index 0000000..b9c04a2 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xcc.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xcc] = array( +'dit','dix','di','dip','diex','die','diep','dat','dax','da','dap','duox','duo','dot','dox','do','dop','dex','de','dep','dut','dux','du','dup','durx','dur','tit','tix','ti','tip','tiex','tie','tiep','tat','tax','ta','tap','tuot','tuox','tuo','tuop','tot','tox','to','top','tex','te','tep','tut','tux','tu','tup','turx','tur','ddit','ddix','ddi','ddip','ddiex','ddie','ddiep','ddat','ddax','dda','ddap','dduox','dduo','dduop','ddot','ddox','ddo','ddop','ddex','dde','ddep','ddut','ddux','ddu','ddup','ddurx','ddur','ndit','ndix','ndi','ndip','ndiex','ndie','ndat','ndax','nda','ndap','ndot','ndox','ndo','ndop','ndex','nde','ndep','ndut','ndux','ndu','ndup','ndurx','ndur','hnit','hnix','hni','hnip','hniet','hniex','hnie','hniep','hnat','hnax','hna','hnap','hnuox','hnuo','hnot','hnox','hnop','hnex','hne','hnep','hnut','nit','nix','ni','nip','niex','nie','niep','nax','na','nap','nuox','nuo','nuop','not','nox','no','nop','nex','ne','nep','nut','nux','nu','nup','nurx','nur','hlit','hlix','hli','hlip','hliex','hlie','hliep','hlat','hlax','hla','hlap','hluox','hluo','hluop','hlox','hlo','hlop','hlex','hle','hlep','hlut','hlux','hlu','hlup','hlurx','hlur','hlyt','hlyx','hly','hlyp','hlyrx','hlyr','lit','lix','li','lip','liet','liex','lie','liep','lat','lax','la','lap','luot','luox','luo','luop','lot','lox','lo','lop','lex','le','lep','lut','lux','lu','lup','lurx','lur','lyt','lyx','ly','lyp','lyrx','lyr','git','gix','gi','gip','giet','giex','gie','giep','gat','gax','ga','gap','guot','guox','guo','guop','got','gox','go','gop','get','gex','ge','gep','gut','gux','gu','gup','gurx','gur','kit','kix','ki','kip','kiex','kie','kiep','kat', +); diff --git a/cacert/www/utf8_to_ascii/db/xcd.php b/cacert/www/utf8_to_ascii/db/xcd.php new file mode 100644 index 0000000..3cde96e --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xcd.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xcd] = array( +'kax','ka','kap','kuox','kuo','kuop','kot','kox','ko','kop','ket','kex','ke','kep','kut','kux','ku','kup','kurx','kur','ggit','ggix','ggi','ggiex','ggie','ggiep','ggat','ggax','gga','ggap','gguot','gguox','gguo','gguop','ggot','ggox','ggo','ggop','gget','ggex','gge','ggep','ggut','ggux','ggu','ggup','ggurx','ggur','mgiex','mgie','mgat','mgax','mga','mgap','mguox','mguo','mguop','mgot','mgox','mgo','mgop','mgex','mge','mgep','mgut','mgux','mgu','mgup','mgurx','mgur','hxit','hxix','hxi','hxip','hxiet','hxiex','hxie','hxiep','hxat','hxax','hxa','hxap','hxuot','hxuox','hxuo','hxuop','hxot','hxox','hxo','hxop','hxex','hxe','hxep','ngiex','ngie','ngiep','ngat','ngax','nga','ngap','nguot','nguox','nguo','ngot','ngox','ngo','ngop','ngex','nge','ngep','hit','hiex','hie','hat','hax','ha','hap','huot','huox','huo','huop','hot','hox','ho','hop','hex','he','hep','wat','wax','wa','wap','wuox','wuo','wuop','wox','wo','wop','wex','we','wep','zit','zix','zi','zip','ziex','zie','ziep','zat','zax','za','zap','zuox','zuo','zuop','zot','zox','zo','zop','zex','ze','zep','zut','zux','zu','zup','zurx','zur','zyt','zyx','zy','zyp','zyrx','zyr','cit','cix','ci','cip','ciet','ciex','cie','ciep','cat','cax','ca','cap','cuox','cuo','cuop','cot','cox','co','cop','cex','ce','cep','cut','cux','cu','cup','curx','cur','cyt','cyx','cy','cyp','cyrx','cyr','zzit','zzix','zzi','zzip','zziet','zziex','zzie','zziep','zzat','zzax','zza','zzap','zzox','zzo','zzop','zzex','zze','zzep','zzux','zzu','zzup','zzurx','zzur','zzyt','zzyx','zzy','zzyp','zzyrx','zzyr','nzit','nzix','nzi','nzip','nziex','nzie','nziep','nzat','nzax','nza','nzap','nzuox','nzuo','nzox','nzop','nzex','nze','nzux','nzu', +); diff --git a/cacert/www/utf8_to_ascii/db/xce.php b/cacert/www/utf8_to_ascii/db/xce.php new file mode 100644 index 0000000..8088ebc --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xce.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xce] = array( +'nzup','nzurx','nzur','nzyt','nzyx','nzy','nzyp','nzyrx','nzyr','sit','six','si','sip','siex','sie','siep','sat','sax','sa','sap','suox','suo','suop','sot','sox','so','sop','sex','se','sep','sut','sux','su','sup','surx','sur','syt','syx','sy','syp','syrx','syr','ssit','ssix','ssi','ssip','ssiex','ssie','ssiep','ssat','ssax','ssa','ssap','ssot','ssox','sso','ssop','ssex','sse','ssep','ssut','ssux','ssu','ssup','ssyt','ssyx','ssy','ssyp','ssyrx','ssyr','zhat','zhax','zha','zhap','zhuox','zhuo','zhuop','zhot','zhox','zho','zhop','zhet','zhex','zhe','zhep','zhut','zhux','zhu','zhup','zhurx','zhur','zhyt','zhyx','zhy','zhyp','zhyrx','zhyr','chat','chax','cha','chap','chuot','chuox','chuo','chuop','chot','chox','cho','chop','chet','chex','che','chep','chux','chu','chup','churx','chur','chyt','chyx','chy','chyp','chyrx','chyr','rrax','rra','rruox','rruo','rrot','rrox','rro','rrop','rret','rrex','rre','rrep','rrut','rrux','rru','rrup','rrurx','rrur','rryt','rryx','rry','rryp','rryrx','rryr','nrat','nrax','nra','nrap','nrox','nro','nrop','nret','nrex','nre','nrep','nrut','nrux','nru','nrup','nrurx','nrur','nryt','nryx','nry','nryp','nryrx','nryr','shat','shax','sha','shap','shuox','shuo','shuop','shot','shox','sho','shop','shet','shex','she','shep','shut','shux','shu','shup','shurx','shur','shyt','shyx','shy','shyp','shyrx','shyr','rat','rax','ra','rap','ruox','ruo','ruop','rot','rox','ro','rop','rex','re','rep','rut','rux','ru','rup','rurx','rur','ryt','ryx','ry','ryp','ryrx','ryr','jit','jix','ji','jip','jiet','jiex','jie','jiep','juot','juox','juo','juop','jot','jox','jo','jop','jut','jux','ju','jup','jurx','jur','jyt','jyx','jy','jyp','jyrx','jyr','qit','qix','qi','qip', +); diff --git a/cacert/www/utf8_to_ascii/db/xcf.php b/cacert/www/utf8_to_ascii/db/xcf.php new file mode 100644 index 0000000..3ff2ee3 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xcf.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xcf] = array( +'qiet','qiex','qie','qiep','quot','quox','quo','quop','qot','qox','qo','qop','qut','qux','qu','qup','qurx','qur','qyt','qyx','qy','qyp','qyrx','qyr','jjit','jjix','jji','jjip','jjiet','jjiex','jjie','jjiep','jjuox','jjuo','jjuop','jjot','jjox','jjo','jjop','jjut','jjux','jju','jjup','jjurx','jjur','jjyt','jjyx','jjy','jjyp','njit','njix','nji','njip','njiet','njiex','njie','njiep','njuox','njuo','njot','njox','njo','njop','njux','nju','njup','njurx','njur','njyt','njyx','njy','njyp','njyrx','njyr','nyit','nyix','nyi','nyip','nyiet','nyiex','nyie','nyiep','nyuox','nyuo','nyuop','nyot','nyox','nyo','nyop','nyut','nyux','nyu','nyup','xit','xix','xi','xip','xiet','xiex','xie','xiep','xuox','xuo','xot','xox','xo','xop','xyt','xyx','xy','xyp','xyrx','xyr','yit','yix','yi','yip','yiet','yiex','yie','yiep','yuot','yuox','yuo','yuop','yot','yox','yo','yop','yut','yux','yu','yup','yurx','yur','yyt','yyx','yy','yyp','yyrx','yyr','[?]','[?]','[?]','Qot','Li','Kit','Nyip','Cyp','Ssi','Ggop','Gep','Mi','Hxit','Lyr','Bbut','Mop','Yo','Put','Hxuo','Tat','Ga','[?]','[?]','Ddur','Bur','Gguo','Nyop','Tu','Op','Jjut','Zot','Pyt','Hmo','Yit','Vur','Shy','Vep','Za','Jo','[?]','Jjy','Got','Jjie','Wo','Du','Shur','Lie','Cy','Cuop','Cip','Hxop','Shat','[?]','Shop','Che','Zziet','[?]','Ke','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]', +); diff --git a/cacert/www/utf8_to_ascii/db/xd0.php b/cacert/www/utf8_to_ascii/db/xd0.php new file mode 100644 index 0000000..ec858e8 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xd0.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xd0] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/xd1.php b/cacert/www/utf8_to_ascii/db/xd1.php new file mode 100644 index 0000000..176a1cb --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xd1.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xd1] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/xd2.php b/cacert/www/utf8_to_ascii/db/xd2.php new file mode 100644 index 0000000..bf5efdb --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xd2.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xd2] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/xd3.php b/cacert/www/utf8_to_ascii/db/xd3.php new file mode 100644 index 0000000..5d05eff --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xd3.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xd3] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/xd4.php b/cacert/www/utf8_to_ascii/db/xd4.php new file mode 100644 index 0000000..4026dbd --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xd4.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xd4] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/xd5.php b/cacert/www/utf8_to_ascii/db/xd5.php new file mode 100644 index 0000000..ac25ba7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xd5.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xd5] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/xd6.php b/cacert/www/utf8_to_ascii/db/xd6.php new file mode 100644 index 0000000..b665b9f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xd6.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xd6] = array( + +); diff --git a/cacert/www/utf8_to_ascii/db/xd7.php b/cacert/www/utf8_to_ascii/db/xd7.php new file mode 100644 index 0000000..90932a9 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xd7.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xd7] = array( +'ga','gag','gagg','gags','gan','ganj','ganh','gad','gal','galg','galm','galb','gals','galt','galp','galh','gam','gab','gabs','gas','gass','gang','gaj','gac','gak','gat','gap','gah','gae','gaeg','gaegg','gaegs','gaen','gaenj','gaenh','gaed','gael','gaelg','gaelm','gaelb','gaels','gaelt','gaelp','gaelh','gaem','gaeb','gaebs','gaes','gaess','gaeng','gaej','gaec','gaek','gaet','gaep','gaeh','gya','gyag','gyagg','gyags','gyan','gyanj','gyanh','gyad','gyal','gyalg','gyalm','gyalb','gyals','gyalt','gyalp','gyalh','gyam','gyab','gyabs','gyas','gyass','gyang','gyaj','gyac','gyak','gyat','gyap','gyah','gyae','gyaeg','gyaegg','gyaegs','gyaen','gyaenj','gyaenh','gyaed','gyael','gyaelg','gyaelm','gyaelb','gyaels','gyaelt','gyaelp','gyaelh','gyaem','gyaeb','gyaebs','gyaes','gyaess','gyaeng','gyaej','gyaec','gyaek','gyaet','gyaep','gyaeh','geo','geog','geogg','geogs','geon','geonj','geonh','geod','geol','geolg','geolm','geolb','geols','geolt','geolp','geolh','geom','geob','geobs','geos','geoss','geong','geoj','geoc','geok','geot','geop','geoh','ge','geg','gegg','gegs','gen','genj','genh','ged','gel','gelg','gelm','gelb','gels','gelt','gelp','gelh','gem','geb','gebs','ges','gess','geng','gej','gec','gek','get','gep','geh','gyeo','gyeog','gyeogg','gyeogs','gyeon','gyeonj','gyeonh','gyeod','gyeol','gyeolg','gyeolm','gyeolb','gyeols','gyeolt','gyeolp','gyeolh','gyeom','gyeob','gyeobs','gyeos','gyeoss','gyeong','gyeoj','gyeoc','gyeok','gyeot','gyeop','gyeoh','gye','gyeg','gyegg','gyegs','gyen','gyenj','gyenh','gyed','gyel','gyelg','gyelm','gyelb','gyels','gyelt','gyelp','gyelh','gyem','gyeb','gyebs','gyes','gyess','gyeng','gyej','gyec','gyek','gyet','gyep','gyeh','go','gog','gogg','gogs','gon','gonj','gonh','god','gol','golg','golm','golb','gols','golt','golp','golh','gom','gob','gobs','gos','goss','gong','goj','goc','gok','got','gop','goh','gwa','gwag','gwagg','gwags', +); diff --git a/cacert/www/utf8_to_ascii/db/xf9.php b/cacert/www/utf8_to_ascii/db/xf9.php new file mode 100644 index 0000000..0fa3504 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xf9.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xf9] = array( +'gwan','gwanj','gwanh','gwad','gwal','gwalg','gwalm','gwalb','gwals','gwalt','gwalp','gwalh','gwam','gwab','gwabs','gwas','gwass','gwang','gwaj','gwac','gwak','gwat','gwap','gwah','gwae','gwaeg','gwaegg','gwaegs','gwaen','gwaenj','gwaenh','gwaed','gwael','gwaelg','gwaelm','gwaelb','gwaels','gwaelt','gwaelp','gwaelh','gwaem','gwaeb','gwaebs','gwaes','gwaess','gwaeng','gwaej','gwaec','gwaek','gwaet','gwaep','gwaeh','goe','goeg','goegg','goegs','goen','goenj','goenh','goed','goel','goelg','goelm','goelb','goels','goelt','goelp','goelh','goem','goeb','goebs','goes','goess','goeng','goej','goec','goek','goet','goep','goeh','gyo','gyog','gyogg','gyogs','gyon','gyonj','gyonh','gyod','gyol','gyolg','gyolm','gyolb','gyols','gyolt','gyolp','gyolh','gyom','gyob','gyobs','gyos','gyoss','gyong','gyoj','gyoc','gyok','gyot','gyop','gyoh','gu','gug','gugg','gugs','gun','gunj','gunh','gud','gul','gulg','gulm','gulb','guls','gult','gulp','gulh','gum','gub','gubs','gus','guss','gung','guj','guc','guk','gut','gup','guh','gweo','gweog','gweogg','gweogs','gweon','gweonj','gweonh','gweod','gweol','gweolg','gweolm','gweolb','gweols','gweolt','gweolp','gweolh','gweom','gweob','gweobs','gweos','gweoss','gweong','gweoj','gweoc','gweok','gweot','gweop','gweoh','gwe','gweg','gwegg','gwegs','gwen','gwenj','gwenh','gwed','gwel','gwelg','gwelm','gwelb','gwels','gwelt','gwelp','gwelh','gwem','gweb','gwebs','gwes','gwess','gweng','gwej','gwec','gwek','gwet','gwep','gweh','gwi','gwig','gwigg','gwigs','gwin','gwinj','gwinh','gwid','gwil','gwilg','gwilm','gwilb','gwils','gwilt','gwilp','gwilh','gwim','gwib','gwibs','gwis','gwiss','gwing','gwij','gwic','gwik','gwit','gwip','gwih','gyu','gyug','gyugg','gyugs','gyun','gyunj','gyunh','gyud','gyul','gyulg','gyulm','gyulb','gyuls','gyult','gyulp','gyulh','gyum','gyub','gyubs','gyus','gyuss','gyung','gyuj','gyuc','gyuk','gyut','gyup','gyuh','geu','geug','geugg','geugs','geun','geunj','geunh','geud', +); diff --git a/cacert/www/utf8_to_ascii/db/xfa.php b/cacert/www/utf8_to_ascii/db/xfa.php new file mode 100644 index 0000000..06bdc6f --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xfa.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xfa] = array( +'geul','geulg','geulm','geulb','geuls','geult','geulp','geulh','geum','geub','geubs','geus','geuss','geung','geuj','geuc','geuk','geut','geup','geuh','gyi','gyig','gyigg','gyigs','gyin','gyinj','gyinh','gyid','gyil','gyilg','gyilm','gyilb','gyils','gyilt','gyilp','gyilh','gyim','gyib','gyibs','gyis','gyiss','gying','gyij','gyic','gyik','gyit','gyip','gyih','gi','gig','gigg','gigs','gin','ginj','ginh','gid','gil','gilg','gilm','gilb','gils','gilt','gilp','gilh','gim','gib','gibs','gis','giss','ging','gij','gic','gik','git','gip','gih','gga','ggag','ggagg','ggags','ggan','gganj','gganh','ggad','ggal','ggalg','ggalm','ggalb','ggals','ggalt','ggalp','ggalh','ggam','ggab','ggabs','ggas','ggass','ggang','ggaj','ggac','ggak','ggat','ggap','ggah','ggae','ggaeg','ggaegg','ggaegs','ggaen','ggaenj','ggaenh','ggaed','ggael','ggaelg','ggaelm','ggaelb','ggaels','ggaelt','ggaelp','ggaelh','ggaem','ggaeb','ggaebs','ggaes','ggaess','ggaeng','ggaej','ggaec','ggaek','ggaet','ggaep','ggaeh','ggya','ggyag','ggyagg','ggyags','ggyan','ggyanj','ggyanh','ggyad','ggyal','ggyalg','ggyalm','ggyalb','ggyals','ggyalt','ggyalp','ggyalh','ggyam','ggyab','ggyabs','ggyas','ggyass','ggyang','ggyaj','ggyac','ggyak','ggyat','ggyap','ggyah','ggyae','ggyaeg','ggyaegg','ggyaegs','ggyaen','ggyaenj','ggyaenh','ggyaed','ggyael','ggyaelg','ggyaelm','ggyaelb','ggyaels','ggyaelt','ggyaelp','ggyaelh','ggyaem','ggyaeb','ggyaebs','ggyaes','ggyaess','ggyaeng','ggyaej','ggyaec','ggyaek','ggyaet','ggyaep','ggyaeh','ggeo','ggeog','ggeogg','ggeogs','ggeon','ggeonj','ggeonh','ggeod','ggeol','ggeolg','ggeolm','ggeolb','ggeols','ggeolt','ggeolp','ggeolh','ggeom','ggeob','ggeobs','ggeos','ggeoss','ggeong','ggeoj','ggeoc','ggeok','ggeot','ggeop','ggeoh','gge','ggeg','ggegg','ggegs','ggen','ggenj','ggenh','gged','ggel','ggelg','ggelm','ggelb','ggels','ggelt','ggelp','ggelh','ggem','ggeb','ggebs','gges','ggess','ggeng','ggej','ggec','ggek','gget','ggep','ggeh','ggyeo','ggyeog','ggyeogg','ggyeogs','ggyeon','ggyeonj','ggyeonh','ggyeod','ggyeol','ggyeolg','ggyeolm','ggyeolb', +); diff --git a/cacert/www/utf8_to_ascii/db/xfb.php b/cacert/www/utf8_to_ascii/db/xfb.php new file mode 100644 index 0000000..6bca5de --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xfb.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xfb] = array( +'ggyeols','ggyeolt','ggyeolp','ggyeolh','ggyeom','ggyeob','ggyeobs','ggyeos','ggyeoss','ggyeong','ggyeoj','ggyeoc','ggyeok','ggyeot','ggyeop','ggyeoh','ggye','ggyeg','ggyegg','ggyegs','ggyen','ggyenj','ggyenh','ggyed','ggyel','ggyelg','ggyelm','ggyelb','ggyels','ggyelt','ggyelp','ggyelh','ggyem','ggyeb','ggyebs','ggyes','ggyess','ggyeng','ggyej','ggyec','ggyek','ggyet','ggyep','ggyeh','ggo','ggog','ggogg','ggogs','ggon','ggonj','ggonh','ggod','ggol','ggolg','ggolm','ggolb','ggols','ggolt','ggolp','ggolh','ggom','ggob','ggobs','ggos','ggoss','ggong','ggoj','ggoc','ggok','ggot','ggop','ggoh','ggwa','ggwag','ggwagg','ggwags','ggwan','ggwanj','ggwanh','ggwad','ggwal','ggwalg','ggwalm','ggwalb','ggwals','ggwalt','ggwalp','ggwalh','ggwam','ggwab','ggwabs','ggwas','ggwass','ggwang','ggwaj','ggwac','ggwak','ggwat','ggwap','ggwah','ggwae','ggwaeg','ggwaegg','ggwaegs','ggwaen','ggwaenj','ggwaenh','ggwaed','ggwael','ggwaelg','ggwaelm','ggwaelb','ggwaels','ggwaelt','ggwaelp','ggwaelh','ggwaem','ggwaeb','ggwaebs','ggwaes','ggwaess','ggwaeng','ggwaej','ggwaec','ggwaek','ggwaet','ggwaep','ggwaeh','ggoe','ggoeg','ggoegg','ggoegs','ggoen','ggoenj','ggoenh','ggoed','ggoel','ggoelg','ggoelm','ggoelb','ggoels','ggoelt','ggoelp','ggoelh','ggoem','ggoeb','ggoebs','ggoes','ggoess','ggoeng','ggoej','ggoec','ggoek','ggoet','ggoep','ggoeh','ggyo','ggyog','ggyogg','ggyogs','ggyon','ggyonj','ggyonh','ggyod','ggyol','ggyolg','ggyolm','ggyolb','ggyols','ggyolt','ggyolp','ggyolh','ggyom','ggyob','ggyobs','ggyos','ggyoss','ggyong','ggyoj','ggyoc','ggyok','ggyot','ggyop','ggyoh','ggu','ggug','ggugg','ggugs','ggun','ggunj','ggunh','ggud','ggul','ggulg','ggulm','ggulb','gguls','ggult','ggulp','ggulh','ggum','ggub','ggubs','ggus','gguss','ggung','gguj','gguc','gguk','ggut','ggup','gguh','ggweo','ggweog','ggweogg','ggweogs','ggweon','ggweonj','ggweonh','ggweod','ggweol','ggweolg','ggweolm','ggweolb','ggweols','ggweolt','ggweolp','ggweolh','ggweom','ggweob','ggweobs','ggweos','ggweoss','ggweong','ggweoj','ggweoc','ggweok','ggweot','ggweop','ggweoh','ggwe','ggweg','ggwegg','ggwegs','ggwen','ggwenj','ggwenh','ggwed','ggwel','ggwelg','ggwelm','ggwelb','ggwels','ggwelt','ggwelp','ggwelh', +); diff --git a/cacert/www/utf8_to_ascii/db/xfc.php b/cacert/www/utf8_to_ascii/db/xfc.php new file mode 100644 index 0000000..186a0a7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xfc.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xfc] = array( +'ggwem','ggweb','ggwebs','ggwes','ggwess','ggweng','ggwej','ggwec','ggwek','ggwet','ggwep','ggweh','ggwi','ggwig','ggwigg','ggwigs','ggwin','ggwinj','ggwinh','ggwid','ggwil','ggwilg','ggwilm','ggwilb','ggwils','ggwilt','ggwilp','ggwilh','ggwim','ggwib','ggwibs','ggwis','ggwiss','ggwing','ggwij','ggwic','ggwik','ggwit','ggwip','ggwih','ggyu','ggyug','ggyugg','ggyugs','ggyun','ggyunj','ggyunh','ggyud','ggyul','ggyulg','ggyulm','ggyulb','ggyuls','ggyult','ggyulp','ggyulh','ggyum','ggyub','ggyubs','ggyus','ggyuss','ggyung','ggyuj','ggyuc','ggyuk','ggyut','ggyup','ggyuh','ggeu','ggeug','ggeugg','ggeugs','ggeun','ggeunj','ggeunh','ggeud','ggeul','ggeulg','ggeulm','ggeulb','ggeuls','ggeult','ggeulp','ggeulh','ggeum','ggeub','ggeubs','ggeus','ggeuss','ggeung','ggeuj','ggeuc','ggeuk','ggeut','ggeup','ggeuh','ggyi','ggyig','ggyigg','ggyigs','ggyin','ggyinj','ggyinh','ggyid','ggyil','ggyilg','ggyilm','ggyilb','ggyils','ggyilt','ggyilp','ggyilh','ggyim','ggyib','ggyibs','ggyis','ggyiss','ggying','ggyij','ggyic','ggyik','ggyit','ggyip','ggyih','ggi','ggig','ggigg','ggigs','ggin','gginj','gginh','ggid','ggil','ggilg','ggilm','ggilb','ggils','ggilt','ggilp','ggilh','ggim','ggib','ggibs','ggis','ggiss','gging','ggij','ggic','ggik','ggit','ggip','ggih','na','nag','nagg','nags','nan','nanj','nanh','nad','nal','nalg','nalm','nalb','nals','nalt','nalp','nalh','nam','nab','nabs','nas','nass','nang','naj','nac','nak','nat','nap','nah','nae','naeg','naegg','naegs','naen','naenj','naenh','naed','nael','naelg','naelm','naelb','naels','naelt','naelp','naelh','naem','naeb','naebs','naes','naess','naeng','naej','naec','naek','naet','naep','naeh','nya','nyag','nyagg','nyags','nyan','nyanj','nyanh','nyad','nyal','nyalg','nyalm','nyalb','nyals','nyalt','nyalp','nyalh','nyam','nyab','nyabs','nyas','nyass','nyang','nyaj','nyac','nyak','nyat','nyap','nyah','nyae','nyaeg','nyaegg','nyaegs','nyaen','nyaenj','nyaenh','nyaed','nyael','nyaelg','nyaelm','nyaelb','nyaels','nyaelt','nyaelp','nyaelh','nyaem','nyaeb','nyaebs','nyaes', +); diff --git a/cacert/www/utf8_to_ascii/db/xfd.php b/cacert/www/utf8_to_ascii/db/xfd.php new file mode 100644 index 0000000..9267af1 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xfd.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xfd] = array( +'nyaess','nyaeng','nyaej','nyaec','nyaek','nyaet','nyaep','nyaeh','neo','neog','neogg','neogs','neon','neonj','neonh','neod','neol','neolg','neolm','neolb','neols','neolt','neolp','neolh','neom','neob','neobs','neos','neoss','neong','neoj','neoc','neok','neot','neop','neoh','ne','neg','negg','negs','nen','nenj','nenh','ned','nel','nelg','nelm','nelb','nels','nelt','nelp','nelh','nem','neb','nebs','nes','ness','neng','nej','nec','nek','net','nep','neh','nyeo','nyeog','nyeogg','nyeogs','nyeon','nyeonj','nyeonh','nyeod','nyeol','nyeolg','nyeolm','nyeolb','nyeols','nyeolt','nyeolp','nyeolh','nyeom','nyeob','nyeobs','nyeos','nyeoss','nyeong','nyeoj','nyeoc','nyeok','nyeot','nyeop','nyeoh','nye','nyeg','nyegg','nyegs','nyen','nyenj','nyenh','nyed','nyel','nyelg','nyelm','nyelb','nyels','nyelt','nyelp','nyelh','nyem','nyeb','nyebs','nyes','nyess','nyeng','nyej','nyec','nyek','nyet','nyep','nyeh','no','nog','nogg','nogs','non','nonj','nonh','nod','nol','nolg','nolm','nolb','nols','nolt','nolp','nolh','nom','nob','nobs','nos','noss','nong','noj','noc','nok','not','nop','noh','nwa','nwag','nwagg','nwags','nwan','nwanj','nwanh','nwad','nwal','nwalg','nwalm','nwalb','nwals','nwalt','nwalp','nwalh','nwam','nwab','nwabs','nwas','nwass','nwang','nwaj','nwac','nwak','nwat','nwap','nwah','nwae','nwaeg','nwaegg','nwaegs','nwaen','nwaenj','nwaenh','nwaed','nwael','nwaelg','nwaelm','nwaelb','nwaels','nwaelt','nwaelp','nwaelh','nwaem','nwaeb','nwaebs','nwaes','nwaess','nwaeng','nwaej','nwaec','nwaek','nwaet','nwaep','nwaeh','noe','noeg','noegg','noegs','noen','noenj','noenh','noed','noel','noelg','noelm','noelb','noels','noelt','noelp','noelh','noem','noeb','noebs','noes','noess','noeng','noej','noec','noek','noet','noep','noeh','nyo','nyog','nyogg','nyogs','nyon','nyonj','nyonh','nyod','nyol','nyolg','nyolm','nyolb','nyols','nyolt','nyolp','nyolh','nyom','nyob','nyobs','nyos','nyoss','nyong','nyoj','nyoc', +); diff --git a/cacert/www/utf8_to_ascii/db/xfe.php b/cacert/www/utf8_to_ascii/db/xfe.php new file mode 100644 index 0000000..fc26207 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xfe.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xfe] = array( +'nyok','nyot','nyop','nyoh','nu','nug','nugg','nugs','nun','nunj','nunh','nud','nul','nulg','nulm','nulb','nuls','nult','nulp','nulh','num','nub','nubs','nus','nuss','nung','nuj','nuc','nuk','nut','nup','nuh','nweo','nweog','nweogg','nweogs','nweon','nweonj','nweonh','nweod','nweol','nweolg','nweolm','nweolb','nweols','nweolt','nweolp','nweolh','nweom','nweob','nweobs','nweos','nweoss','nweong','nweoj','nweoc','nweok','nweot','nweop','nweoh','nwe','nweg','nwegg','nwegs','nwen','nwenj','nwenh','nwed','nwel','nwelg','nwelm','nwelb','nwels','nwelt','nwelp','nwelh','nwem','nweb','nwebs','nwes','nwess','nweng','nwej','nwec','nwek','nwet','nwep','nweh','nwi','nwig','nwigg','nwigs','nwin','nwinj','nwinh','nwid','nwil','nwilg','nwilm','nwilb','nwils','nwilt','nwilp','nwilh','nwim','nwib','nwibs','nwis','nwiss','nwing','nwij','nwic','nwik','nwit','nwip','nwih','nyu','nyug','nyugg','nyugs','nyun','nyunj','nyunh','nyud','nyul','nyulg','nyulm','nyulb','nyuls','nyult','nyulp','nyulh','nyum','nyub','nyubs','nyus','nyuss','nyung','nyuj','nyuc','nyuk','nyut','nyup','nyuh','neu','neug','neugg','neugs','neun','neunj','neunh','neud','neul','neulg','neulm','neulb','neuls','neult','neulp','neulh','neum','neub','neubs','neus','neuss','neung','neuj','neuc','neuk','neut','neup','neuh','nyi','nyig','nyigg','nyigs','nyin','nyinj','nyinh','nyid','nyil','nyilg','nyilm','nyilb','nyils','nyilt','nyilp','nyilh','nyim','nyib','nyibs','nyis','nyiss','nying','nyij','nyic','nyik','nyit','nyip','nyih','ni','nig','nigg','nigs','nin','ninj','ninh','nid','nil','nilg','nilm','nilb','nils','nilt','nilp','nilh','nim','nib','nibs','nis','niss','ning','nij','nic','nik','nit','nip','nih','da','dag','dagg','dags','dan','danj','danh','dad','dal','dalg','dalm','dalb','dals','dalt','dalp','dalh','dam','dab','dabs','das','dass','dang','daj','dac','dak','dat','dap','dah', +); diff --git a/cacert/www/utf8_to_ascii/db/xff.php b/cacert/www/utf8_to_ascii/db/xff.php new file mode 100644 index 0000000..b03b6c7 --- /dev/null +++ b/cacert/www/utf8_to_ascii/db/xff.php @@ -0,0 +1,4 @@ +<?php +$UTF8_TO_ASCII[0xff] = array( +'dae','daeg','daegg','daegs','daen','daenj','daenh','daed','dael','daelg','daelm','daelb','daels','daelt','daelp','daelh','daem','daeb','daebs','daes','daess','daeng','daej','daec','daek','daet','daep','daeh','dya','dyag','dyagg','dyags','dyan','dyanj','dyanh','dyad','dyal','dyalg','dyalm','dyalb','dyals','dyalt','dyalp','dyalh','dyam','dyab','dyabs','dyas','dyass','dyang','dyaj','dyac','dyak','dyat','dyap','dyah','dyae','dyaeg','dyaegg','dyaegs','dyaen','dyaenj','dyaenh','dyaed','dyael','dyaelg','dyaelm','dyaelb','dyaels','dyaelt','dyaelp','dyaelh','dyaem','dyaeb','dyaebs','dyaes','dyaess','dyaeng','dyaej','dyaec','dyaek','dyaet','dyaep','dyaeh','deo','deog','deogg','deogs','deon','deonj','deonh','deod','deol','deolg','deolm','deolb','deols','deolt','deolp','deolh','deom','deob','deobs','deos','deoss','deong','deoj','deoc','deok','deot','deop','deoh','de','deg','degg','degs','den','denj','denh','ded','del','delg','delm','delb','dels','delt','delp','delh','dem','deb','debs','des','dess','deng','dej','dec','dek','det','dep','deh','dyeo','dyeog','dyeogg','dyeogs','dyeon','dyeonj','dyeonh','dyeod','dyeol','dyeolg','dyeolm','dyeolb','dyeols','dyeolt','dyeolp','dyeolh','dyeom','dyeob','dyeobs','dyeos','dyeoss','dyeong','dyeoj','dyeoc','dyeok','dyeot','dyeop','dyeoh','dye','dyeg','dyegg','dyegs','dyen','dyenj','dyenh','dyed','dyel','dyelg','dyelm','dyelb','dyels','dyelt','dyelp','dyelh','dyem','dyeb','dyebs','dyes','dyess','dyeng','dyej','dyec','dyek','dyet','dyep','dyeh','do','dog','dogg','dogs','don','donj','donh','dod','dol','dolg','dolm','dolb','dols','dolt','dolp','dolh','dom','dob','dobs','dos','doss','dong','doj','doc','dok','dot','dop','doh','dwa','dwag','dwagg','dwags','dwan','dwanj','dwanh','dwad','dwal','dwalg','dwalm','dwalb','dwals','dwalt','dwalp','dwalh','dwam','dwab','dwabs','dwas','dwass','dwang','dwaj','dwac','dwak','dwat','dwap','dwah','dwae','dwaeg','dwaegg','dwaegs', +); diff --git a/cacert/www/utf8_to_ascii/utf8_to_ascii.php b/cacert/www/utf8_to_ascii/utf8_to_ascii.php new file mode 100644 index 0000000..3dfdf19 --- /dev/null +++ b/cacert/www/utf8_to_ascii/utf8_to_ascii.php @@ -0,0 +1,145 @@ +<?php +/** +* US-ASCII transliterations of Unicode text +* @version $Id: utf8_to_ascii.php,v 1.1 2009-11-25 23:43:14 philipp Exp $ +* @package utf8_to_ascii +*/ + +if ( !defined('UTF8_TO_ASCII_DB') ) { + define('UTF8_TO_ASCII_DB',dirname(__FILE__).'/db'); +} + +//-------------------------------------------------------------------- +/** +* US-ASCII transliterations of Unicode text +* Ported Sean M. Burke's Text::Unidecode Perl module (He did all the hard work!) +* Warning: you should only pass this well formed UTF-8! +* Be aware it works by making a copy of the input string which it appends transliterated +* characters to - it uses a PHP output buffer to do this - it means, memory use will increase, +* requiring up to the same amount again as the input string +* @see http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm +* @param string UTF-8 string to convert +* @param string (default = ?) Character use if character unknown +* @return string US-ASCII string +* @package utf8_to_ascii +*/ +function utf8_to_ascii($str, $unknown = '?') { + + # The database for transliteration stored here + static $UTF8_TO_ASCII = array(); + + # Variable lookups faster than accessing constants + $UTF8_TO_ASCII_DB = UTF8_TO_ASCII_DB; + + if ( strlen($str) == 0 ) { return ''; } + + $len = strlen($str); + $i = 0; + + # Use an output buffer to copy the transliterated string + # This is done for performance vs. string concatenation - on my system, drops + # the average request time for the example from ~0.46ms to 0.41ms + # See http://phplens.com/lens/php-book/optimizing-debugging-php.php + # Section "High Return Code Optimizations" + ob_start(); + + while ( $i < $len ) { + + $ord = NULL; + $increment = 1; + + $ord0 = ord($str{$i}); + + # Much nested if /else - PHP fn calls expensive, no block scope... + + # 1 byte - ASCII + if ( $ord0 >= 0 && $ord0 <= 127 ) { + + $ord = $ord0; + $increment = 1; + + } else { + + # 2 bytes + $ord1 = ord($str{$i+1}); + + if ( $ord0 >= 192 && $ord0 <= 223 ) { + + $ord = ( $ord0 - 192 ) * 64 + ( $ord1 - 128 ); + $increment = 2; + + } else { + + # 3 bytes + $ord2 = ord($str{$i+2}); + + if ( $ord0 >= 224 && $ord0 <= 239 ) { + + $ord = ($ord0-224)*4096 + ($ord1-128)*64 + ($ord2-128); + $increment = 3; + + } else { + + # 4 bytes + $ord3 = ord($str{$i+3}); + + if ($ord0>=240 && $ord0<=247) { + + $ord = ($ord0-240)*262144 + ($ord1-128)*4096 + + ($ord2-128)*64 + ($ord3-128); + $increment = 4; + + } else { + + ob_end_clean(); + trigger_error("utf8_to_ascii: looks like badly formed UTF-8 at byte $i"); + return FALSE; + + } + + } + + } + + } + + $bank = $ord >> 8; + + # If we haven't used anything from this bank before, need to load it... + if ( !array_key_exists($bank, $UTF8_TO_ASCII) ) { + + $bankfile = UTF8_TO_ASCII_DB. '/'. sprintf("x%02x",$bank).'.php'; + + if ( file_exists($bankfile) ) { + + # Load the appropriate database + if ( !include $bankfile ) { + ob_end_clean(); + trigger_error("utf8_to_ascii: unable to load $bankfile"); + } + + } else { + + # Some banks are deliberately empty + $UTF8_TO_ASCII[$bank] = array(); + + } + } + + $newchar = $ord & 255; + + if ( array_key_exists($newchar, $UTF8_TO_ASCII[$bank]) ) { + echo $UTF8_TO_ASCII[$bank][$newchar]; + } else { + echo $unknown; + } + + $i += $increment; + + } + + $str = ob_get_contents(); + ob_end_clean(); + return $str; + +} |