MediaWiki  REL1_19
SpecialVersion.php
Go to the documentation of this file.
00001 <?php
00031 class SpecialVersion extends SpecialPage {
00032 
00033         protected $firstExtOpened = false;
00034 
00035         protected static $extensionTypes = false;
00036 
00037         protected static $viewvcUrls = array(
00038                 'svn+ssh://svn.wikimedia.org/svnroot/mediawiki' => 'http://svn.wikimedia.org/viewvc/mediawiki',
00039                 'http://svn.wikimedia.org/svnroot/mediawiki' => 'http://svn.wikimedia.org/viewvc/mediawiki',
00040                 'https://svn.wikimedia.org/viewvc/mediawiki' => 'https://svn.wikimedia.org/viewvc/mediawiki',
00041         );
00042 
00043         public function __construct(){
00044                 parent::__construct( 'Version' );
00045         }
00046 
00050         public function execute( $par ) {
00051                 global $wgSpecialVersionShowHooks;
00052 
00053                 $this->setHeaders();
00054                 $this->outputHeader();
00055                 $out = $this->getOutput();
00056                 $out->allowClickjacking();
00057 
00058                 $text =
00059                         $this->getMediaWikiCredits() .
00060                         $this->softwareInformation() .
00061                         $this->getExtensionCredits();
00062                 if ( $wgSpecialVersionShowHooks ) {
00063                         $text .= $this->getWgHooks();
00064                 }
00065 
00066                 $out->addWikiText( $text );
00067                 $out->addHTML( $this->IPInfo() );
00068 
00069                 if ( $this->getRequest()->getVal( 'easteregg' ) ) {
00070                         if ( $this->showEasterEgg() ) {
00071                                 // TODO: put something interesting here
00072                         }
00073                 }
00074         }
00075 
00081         private static function getMediaWikiCredits() {
00082                 $ret = Xml::element( 'h2', array( 'id' => 'mw-version-license' ), wfMsg( 'version-license' ) );
00083 
00084                 // This text is always left-to-right.
00085                 $ret .= '<div>';
00086                 $ret .= "__NOTOC__
00087                 " . self::getCopyrightAndAuthorList() . "\n
00088                 " . wfMsg( 'version-license-info' );
00089                 $ret .= '</div>';
00090 
00091                 return str_replace( "\t\t", '', $ret ) . "\n";
00092         }
00093 
00099         public static function getCopyrightAndAuthorList() {
00100                 global $wgLang;
00101 
00102                 $authorList = array(
00103                         'Magnus Manske', 'Brion Vibber', 'Lee Daniel Crocker',
00104                         'Tim Starling', 'Erik Möller', 'Gabriel Wicke', 'Ævar Arnfjörð Bjarmason',
00105                         'Niklas Laxström', 'Domas Mituzas', 'Rob Church', 'Yuri Astrakhan',
00106                         'Aryeh Gregor', 'Aaron Schulz', 'Andrew Garrett', 'Raimond Spekking',
00107                         'Alexandre Emsenhuber', 'Siebrand Mazeland', 'Chad Horohoe',
00108                         'Roan Kattouw', 'Trevor Parscal', 'Bryan Tong Minh', 'Sam Reed',
00109                         'Victor Vasiliev', 'Rotem Liss', 'Platonides', 'Antoine Musso',
00110                         wfMsg( 'version-poweredby-others' )
00111                 );
00112 
00113                 return wfMsg( 'version-poweredby-credits', date( 'Y' ),
00114                         $wgLang->listToText( $authorList ) );
00115         }
00116 
00122         static function softwareInformation() {
00123                 $dbr = wfGetDB( DB_SLAVE );
00124 
00125                 // Put the software in an array of form 'name' => 'version'. All messages should
00126                 // be loaded here, so feel free to use wfMsg*() in the 'name'. Raw HTML or wikimarkup
00127                 // can be used.
00128                 $software = array();
00129                 $software['[https://www.mediawiki.org/ MediaWiki]'] = self::getVersionLinked();
00130                 $software['[http://www.php.net/ PHP]'] = phpversion() . " (" . php_sapi_name() . ")";
00131                 $software[$dbr->getSoftwareLink()] = $dbr->getServerInfo();
00132 
00133                 // Allow a hook to add/remove items.
00134                 wfRunHooks( 'SoftwareInfo', array( &$software ) );
00135 
00136                 $out = Xml::element( 'h2', array( 'id' => 'mw-version-software' ), wfMsg( 'version-software' ) ) .
00137                            Xml::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-software' ) ) .
00138                                 "<tr>
00139                                         <th>" . wfMsg( 'version-software-product' ) . "</th>
00140                                         <th>" . wfMsg( 'version-software-version' ) . "</th>
00141                                 </tr>\n";
00142 
00143                 foreach( $software as $name => $version ) {
00144                         $out .= "<tr>
00145                                         <td>" . $name . "</td>
00146                                         <td dir=\"ltr\">" . $version . "</td>
00147                                 </tr>\n";
00148                 }
00149 
00150                 return $out . Xml::closeElement( 'table' );
00151         }
00152 
00159         public static function getVersion( $flags = '' ) {
00160                 global $wgVersion, $IP;
00161                 wfProfileIn( __METHOD__ );
00162 
00163                 $info = self::getSvnInfo( $IP );
00164                 if ( !$info ) {
00165                         $version = $wgVersion;
00166                 } elseif( $flags === 'nodb' ) {
00167                         $version = "$wgVersion (r{$info['checkout-rev']})";
00168                 } else {
00169                         $version = $wgVersion . ' ' .
00170                                 wfMsg(
00171                                         'version-svn-revision',
00172                                         isset( $info['directory-rev'] ) ? $info['directory-rev'] : '',
00173                                         $info['checkout-rev']
00174                                 );
00175                 }
00176 
00177                 wfProfileOut( __METHOD__ );
00178                 return $version;
00179         }
00180 
00187         public static function getVersionLinked() {
00188                 global $wgVersion, $IP;
00189                 wfProfileIn( __METHOD__ );
00190 
00191                 $info = self::getSvnInfo( $IP );
00192 
00193                 if ( isset( $info['checkout-rev'] ) ) {
00194                         $linkText = wfMsg(
00195                                 'version-svn-revision',
00196                                 isset( $info['directory-rev'] ) ? $info['directory-rev'] : '',
00197                                 $info['checkout-rev']
00198                         );
00199 
00200                         if ( isset( $info['viewvc-url'] ) ) {
00201                                 $version = "$wgVersion [{$info['viewvc-url']} $linkText]";
00202                         } else {
00203                                 $version = "$wgVersion $linkText";
00204                         }
00205                 } else {
00206                         $version = $wgVersion;
00207                 }
00208 
00209                 wfProfileOut( __METHOD__ );
00210                 return $version;
00211         }
00212 
00225         public static function getExtensionTypes() {
00226                 if ( self::$extensionTypes === false ) {
00227                         self::$extensionTypes = array(
00228                                 'specialpage' => wfMsg( 'version-specialpages' ),
00229                                 'parserhook' => wfMsg( 'version-parserhooks' ),
00230                                 'variable' => wfMsg( 'version-variables' ),
00231                                 'media' => wfMsg( 'version-mediahandlers' ),
00232                                 'antispam' => wfMsg( 'version-antispam' ),
00233                                 'skin' => wfMsg( 'version-skins' ),
00234                                 'api' => wfMsg( 'version-api' ),
00235                                 'other' => wfMsg( 'version-other' ),
00236                         );
00237 
00238                         wfRunHooks( 'ExtensionTypes', array( &self::$extensionTypes ) );
00239                 }
00240 
00241                 return self::$extensionTypes;
00242         }
00243 
00253         public static function getExtensionTypeName( $type ) {
00254                 $types = self::getExtensionTypes();
00255                 return isset( $types[$type] ) ? $types[$type] : $types['other'];
00256         }
00257 
00263         function getExtensionCredits() {
00264                 global $wgExtensionCredits, $wgExtensionFunctions, $wgParser;
00265 
00266                 if ( !count( $wgExtensionCredits ) && !count( $wgExtensionFunctions ) ) {
00267                         return '';
00268                 }
00269 
00270                 $extensionTypes = self::getExtensionTypes();
00271 
00275                 wfRunHooks( 'SpecialVersionExtensionTypes', array( &$this, &$extensionTypes ) );
00276 
00277                 $out = Xml::element( 'h2', array( 'id' => 'mw-version-ext' ), wfMsg( 'version-extensions' ) ) .
00278                         Xml::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-ext' ) );
00279 
00280                 // Make sure the 'other' type is set to an array.
00281                 if ( !array_key_exists( 'other', $wgExtensionCredits ) ) {
00282                         $wgExtensionCredits['other'] = array();
00283                 }
00284 
00285                 // Find all extensions that do not have a valid type and give them the type 'other'.
00286                 foreach ( $wgExtensionCredits as $type => $extensions ) {
00287                         if ( !array_key_exists( $type, $extensionTypes ) ) {
00288                                 $wgExtensionCredits['other'] = array_merge( $wgExtensionCredits['other'], $extensions );
00289                         }
00290                 }
00291 
00292                 // Loop through the extension categories to display their extensions in the list.
00293                 foreach ( $extensionTypes as $type => $message ) {
00294                         if ( $type != 'other' ) {
00295                                 $out .= $this->getExtensionCategory( $type, $message );
00296                         }
00297                 }
00298 
00299                 // We want the 'other' type to be last in the list.
00300                 $out .= $this->getExtensionCategory( 'other', $extensionTypes['other'] );
00301 
00302                 if ( count( $wgExtensionFunctions ) ) {
00303                         $out .= $this->openExtType( wfMsg( 'version-extension-functions' ), 'extension-functions' );
00304                         $out .= '<tr><td colspan="4">' . $this->listToText( $wgExtensionFunctions ) . "</td></tr>\n";
00305                 }
00306 
00307                 $tags = $wgParser->getTags();
00308                 $cnt = count( $tags );
00309 
00310                 if ( $cnt ) {
00311                         for ( $i = 0; $i < $cnt; ++$i ) {
00312                                 $tags[$i] = "&lt;{$tags[$i]}&gt;";
00313                         }
00314                         $out .= $this->openExtType( wfMsg( 'version-parser-extensiontags' ), 'parser-tags' );
00315                         $out .= '<tr><td colspan="4">' . $this->listToText( $tags ). "</td></tr>\n";
00316                 }
00317 
00318                 $fhooks = $wgParser->getFunctionHooks();
00319                 if( count( $fhooks ) ) {
00320                         $out .= $this->openExtType( wfMsg( 'version-parser-function-hooks' ), 'parser-function-hooks' );
00321                         $out .= '<tr><td colspan="4">' . $this->listToText( $fhooks ) . "</td></tr>\n";
00322                 }
00323 
00324                 $out .= Xml::closeElement( 'table' );
00325 
00326                 return $out;
00327         }
00328 
00339         protected function getExtensionCategory( $type, $message ) {
00340                 global $wgExtensionCredits;
00341 
00342                 $out = '';
00343 
00344                 if ( array_key_exists( $type, $wgExtensionCredits ) && count( $wgExtensionCredits[$type] ) > 0 ) {
00345                         $out .= $this->openExtType( $message, 'credits-' . $type );
00346 
00347                         usort( $wgExtensionCredits[$type], array( $this, 'compare' ) );
00348 
00349                         foreach ( $wgExtensionCredits[$type] as $extension ) {
00350                                 $out .= $this->getCreditsForExtension( $extension );
00351                         }
00352                 }
00353 
00354                 return $out;
00355         }
00356 
00360         function compare( $a, $b ) {
00361                 if( $a['name'] === $b['name'] ) {
00362                         return 0;
00363                 } else {
00364                         return $this->getLanguage()->lc( $a['name'] ) > $this->getLanguage()->lc( $b['name'] )
00365                                 ? 1
00366                                 : -1;
00367                 }
00368         }
00369 
00377         function getCreditsForExtension( array $extension ) {
00378                 $name = isset( $extension['name'] ) ? $extension['name'] : '[no name]';
00379 
00380                 if ( isset( $extension['path'] ) ) {
00381                         $svnInfo = self::getSvnInfo( dirname($extension['path']) );
00382                         $directoryRev = isset( $svnInfo['directory-rev'] ) ? $svnInfo['directory-rev'] : null;
00383                         $checkoutRev = isset( $svnInfo['checkout-rev'] ) ? $svnInfo['checkout-rev'] : null;
00384                         $viewvcUrl = isset( $svnInfo['viewvc-url'] ) ? $svnInfo['viewvc-url'] : null;
00385                 } else {
00386                         $directoryRev = null;
00387                         $checkoutRev = null;
00388                         $viewvcUrl = null;
00389                 }
00390 
00391                 # Make main link (or just the name if there is no URL).
00392                 if ( isset( $extension['url'] ) ) {
00393                         $mainLink = "[{$extension['url']} $name]";
00394                 } else {
00395                         $mainLink = $name;
00396                 }
00397 
00398                 if ( isset( $extension['version'] ) ) {
00399                         $versionText = '<span class="mw-version-ext-version">' .
00400                                 wfMsg( 'version-version', $extension['version'] ) .
00401                                 '</span>';
00402                 } else {
00403                         $versionText = '';
00404                 }
00405 
00406                 # Make subversion text/link.
00407                 if ( $checkoutRev ) {
00408                         $svnText = wfMsg( 'version-svn-revision', $directoryRev, $checkoutRev );
00409                         $svnText = isset( $viewvcUrl ) ? "[$viewvcUrl $svnText]" : $svnText;
00410                 } else {
00411                         $svnText = false;
00412                 }
00413 
00414                 # Make description text.
00415                 $description = isset ( $extension['description'] ) ? $extension['description'] : '';
00416 
00417                 if( isset ( $extension['descriptionmsg'] ) ) {
00418                         # Look for a localized description.
00419                         $descriptionMsg = $extension['descriptionmsg'];
00420 
00421                         if( is_array( $descriptionMsg ) ) {
00422                                 $descriptionMsgKey = $descriptionMsg[0]; // Get the message key
00423                                 array_shift( $descriptionMsg ); // Shift out the message key to get the parameters only
00424                                 array_map( "htmlspecialchars", $descriptionMsg ); // For sanity
00425                                 $description = wfMsg( $descriptionMsgKey, $descriptionMsg );
00426                         } else {
00427                                 $description = wfMsg( $descriptionMsg );
00428                         }
00429                 }
00430 
00431                 if ( $svnText !== false ) {
00432                         $extNameVer = "<tr>
00433                                 <td><em>$mainLink $versionText</em></td>
00434                                 <td><em>$svnText</em></td>";
00435                 } else {
00436                         $extNameVer = "<tr>
00437                                 <td colspan=\"2\"><em>$mainLink $versionText</em></td>";
00438                 }
00439 
00440                 $author = isset ( $extension['author'] ) ? $extension['author'] : array();
00441                 $extDescAuthor = "<td>$description</td>
00442                         <td>" . $this->listAuthors( $author, false ) . "</td>
00443                         </tr>\n";
00444 
00445                 return $extNameVer . $extDescAuthor;
00446         }
00447 
00453         private function getWgHooks() {
00454                 global $wgHooks;
00455 
00456                 if ( count( $wgHooks ) ) {
00457                         $myWgHooks = $wgHooks;
00458                         ksort( $myWgHooks );
00459 
00460                         $ret = Xml::element( 'h2', array( 'id' => 'mw-version-hooks' ), wfMsg( 'version-hooks' ) ) .
00461                                 Xml::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-hooks' ) ) .
00462                                 "<tr>
00463                                         <th>" . wfMsg( 'version-hook-name' ) . "</th>
00464                                         <th>" . wfMsg( 'version-hook-subscribedby' ) . "</th>
00465                                 </tr>\n";
00466 
00467                         foreach ( $myWgHooks as $hook => $hooks ) {
00468                                 $ret .= "<tr>
00469                                                 <td>$hook</td>
00470                                                 <td>" . $this->listToText( $hooks ) . "</td>
00471                                         </tr>\n";
00472                         }
00473 
00474                         $ret .= Xml::closeElement( 'table' );
00475                         return $ret;
00476                 } else
00477                         return '';
00478         }
00479 
00480         private function openExtType( $text, $name = null ) {
00481                 $opt = array( 'colspan' => 4 );
00482                 $out = '';
00483 
00484                 if( $this->firstExtOpened ) {
00485                         // Insert a spacing line
00486                         $out .= '<tr class="sv-space">' . Html::element( 'td', $opt ) . "</tr>\n";
00487                 }
00488                 $this->firstExtOpened = true;
00489 
00490                 if( $name ) {
00491                         $opt['id'] = "sv-$name";
00492                 }
00493 
00494                 $out .= "<tr>" . Xml::element( 'th', $opt, $text ) . "</tr>\n";
00495 
00496                 return $out;
00497         }
00498 
00504         private function IPInfo() {
00505                 $ip =  str_replace( '--', ' - ', htmlspecialchars( $this->getRequest()->getIP() ) );
00506                 return "<!-- visited from $ip -->\n" .
00507                         "<span style='display:none'>visited from $ip</span>";
00508         }
00509 
00516         function listAuthors( $authors ) {
00517                 $list = array();
00518                 foreach( (array)$authors as $item ) {
00519                         if( $item == '...' ) {
00520                                 $list[] = wfMsg( 'version-poweredby-others' );
00521                         } else {
00522                                 $list[] = $item;
00523                         }
00524                 }
00525                 return $this->listToText( $list, false );
00526         }
00527 
00536         function listToText( $list, $sort = true ) {
00537                 $cnt = count( $list );
00538 
00539                 if ( $cnt == 1 ) {
00540                         // Enforce always returning a string
00541                         return (string)self::arrayToString( $list[0] );
00542                 } elseif ( $cnt == 0 ) {
00543                         return '';
00544                 } else {
00545                         if ( $sort ) {
00546                                 sort( $list );
00547                         }
00548                         return $this->getLanguage()->listToText( array_map( array( __CLASS__, 'arrayToString' ), $list ) );
00549                 }
00550         }
00551 
00560         public static function arrayToString( $list ) {
00561                 if( is_array( $list ) && count( $list ) == 1 ) {
00562                         $list = $list[0];
00563                 }
00564                 if( is_object( $list ) ) {
00565                         $class = get_class( $list );
00566                         return "($class)";
00567                 } elseif ( !is_array( $list ) ) {
00568                         return $list;
00569                 } else {
00570                         if( is_object( $list[0] ) ) {
00571                                 $class = get_class( $list[0] );
00572                         } else {
00573                                 $class = $list[0];
00574                         }
00575                         return "($class, {$list[1]})";
00576                 }
00577         }
00578 
00593         public static function getSvnInfo( $dir ) {
00594                 // http://svnbook.red-bean.com/nightly/en/svn.developer.insidewc.html
00595                 $entries = $dir . '/.svn/entries';
00596 
00597                 if( !file_exists( $entries ) ) {
00598                         return false;
00599                 }
00600 
00601                 $lines = file( $entries );
00602                 if ( !count( $lines ) ) {
00603                         return false;
00604                 }
00605 
00606                 // check if file is xml (subversion release <= 1.3) or not (subversion release = 1.4)
00607                 if( preg_match( '/^<\?xml/', $lines[0] ) ) {
00608                         // subversion is release <= 1.3
00609                         if( !function_exists( 'simplexml_load_file' ) ) {
00610                                 // We could fall back to expat... YUCK
00611                                 return false;
00612                         }
00613 
00614                         // SimpleXml whines about the xmlns...
00615                         wfSuppressWarnings();
00616                         $xml = simplexml_load_file( $entries );
00617                         wfRestoreWarnings();
00618 
00619                         if( $xml ) {
00620                                 foreach( $xml->entry as $entry ) {
00621                                         if( $xml->entry[0]['name'] == '' ) {
00622                                                 // The directory entry should always have a revision marker.
00623                                                 if( $entry['revision'] ) {
00624                                                         return array( 'checkout-rev' => intval( $entry['revision'] ) );
00625                                                 }
00626                                         }
00627                                 }
00628                         }
00629 
00630                         return false;
00631                 }
00632 
00633                 // Subversion is release 1.4 or above.
00634                 if ( count( $lines ) < 11 ) {
00635                         return false;
00636                 }
00637 
00638                 $info = array(
00639                         'checkout-rev' => intval( trim( $lines[3] ) ),
00640                         'url' => trim( $lines[4] ),
00641                         'repo-url' => trim( $lines[5] ),
00642                         'directory-rev' => intval( trim( $lines[10] ) )
00643                 );
00644 
00645                 if ( isset( self::$viewvcUrls[$info['repo-url']] ) ) {
00646                         $viewvc = str_replace(
00647                                 $info['repo-url'],
00648                                 self::$viewvcUrls[$info['repo-url']],
00649                                 $info['url']
00650                         );
00651 
00652                         $viewvc .= '/?pathrev=';
00653                         $viewvc .= urlencode( $info['checkout-rev'] );
00654                         $info['viewvc-url'] = $viewvc;
00655                 }
00656 
00657                 return $info;
00658         }
00659 
00667         public static function getSvnRevision( $dir ) {
00668                 $info = self::getSvnInfo( $dir );
00669 
00670                 if ( $info === false ) {
00671                         return false;
00672                 } elseif ( isset( $info['checkout-rev'] ) ) {
00673                         return $info['checkout-rev'];
00674                 } else {
00675                         return false;
00676                 }
00677         }
00678 
00679         function showEasterEgg() {
00680                 $rx = $rp = $xe = '';
00681                 $alpha = array("", "kbQW", "\$\n()");
00682                 $beta = implode( "', '", $alpha);
00683                 $juliet = 'echo $delta + strrev($foxtrot) - $alfa + $wgVersion . base64_decode($bravo) * $charlie';
00684                 for ( $i = 1; $i <= 4; $i++ ) {
00685                         $rx .= '([^j]*)J';
00686                         $rp .= "+(\\$i)";
00687                 }
00688 
00689                 $rx = "/$rx/Sei";
00690                 $O = substr("$alpha')", 1);
00691                 for ( $i = 1; $i <= strlen( $rx ) / 3; $i++ ) {
00692                         $rx[$i-1] = strtolower( $rx[$i-1] );
00693                 }
00694                 $ry = ".*?(.((.)(.))).{1,3}(.)(.{1,$i})(\\4.\\3)(.).*";
00695                 $ry = "/$ry/Sei";
00696                 $O = substr("$beta')", 1);
00697                 preg_match_all('/(?<=\$)[[:alnum:]]*/',substr($juliet, 0, $i<<1), $charlie);
00698                 foreach( $charlie[0] as $bravo ) {
00699                         $$bravo =& $xe;
00700                 }
00701                 $xe = 'xe=<<<mo/./hfromowoxv=<<<m
00702 쵍潅旅𞗎왎캎𐺆ߨ趥䲀쫥𒯡𚦄𚬀Ꝍ螃䤎꤯溃𔱢櫅褡䞠⽬✡栠迤⾏𐵥쾃𜜧줏袏浣।궇䬃꼁꿤𘐧
00703 𞛁윥桯䦎䵎Ꞅ𚠣涁쭀讀撠蝠讄伣𞫡枮ⵇ𚥣𐡃𐭏沢𞜄𞴏𞻧⠤쳯蒣䮎𒵬컡豣ۅ𐯥⦇𐫁漅蛁꼤从楆
00704 ⥀䡦𚭅沢⠬輁䲯좡梇䟇伄육较촅䥃要𞝄迯쟠꺃ⶥ栆궀撠満ꐣ𞦇좧𐠅𞫠𐠧𚮣讇輤亀➏欣첡쮧⽬
00705 氀쮧跧𐫥䪀⬬⾅𞼀ⵏ괬ত櫤䭀楦𚫃𐣂괥챣𐥇楀귧읠죯쒡ۅ𐾤䳄䤄𞽀괬躏譇䮄搥𚬁䯄津䶮⾅𐫅
00706 𐴂௧쮯궣輥ߡ亀𞪀氀诤𐯢⿅諃⫤𞦁䮣⦬죄椎貧𞛄ඇ쿇亏跤⦌术থۏ仆䛇枡䪄𐵇곁謠𞿯ⶏⶃ䞣
00707 궥螏蝁ꤣ⟬极涇𞴧伢𞼯ଅ𚣡즡⡌浣䯇쿃ⳇ궏ས⢃曦⦥蛧갠컡楧𘬧袏⦏⢠䳠챤⽧𚠧⬣⼀潧⭅椤
00708 𞟯軁종쵃䬆𞮀𞮅꤇𞣅溎楯곡⢡꾥첥쫧Ⱨ균檏辀䭮⡄𐞯쿁䱤𐠠柅迠웏𚟯⾅豠𐡀𐡅䱀轡⾯쥃⥁溆
00709 䢣䞮柄ꠌⶡ𞒯𐳣𞳅蛤椏𞯀✠귬ຄ𐷡𞜠䶃𞭀毥𞡯桥ꐥ❣쳀𞾧⡧𖥢꽧죄ത𖴧ޥ歠ແ위䯎撯쬁䮣浅
00710 쾇泮𐢁켄𞧧𞦏䦯꾯迡𞐯曎䢦쿣杦궯⡀䤦䷢𐭢쟁쯯⧤蟯䡏氇𒭯𔜧𞢣𞱏蝤𒬧궧ߢ𐭆䛃찃쭣沠𚬀𞿏
00711 䴃𐣣䣎𐺃ꥅ轃⣄蟧⦡𒛧蟃毣洇䞎Ҡ潄仆𐲃𞧥철䢤俎譯泠쮄␥栏쾯ⳏ짡𞾯⥡𚠬߂𚥯ކ澥䲀ⵀ𞻃
00712 ⵡ𚦣𒯣✬𐟯𞥥輄䱀굡榏❡첄⦄ꡥⶣ𞡤⺁𞞡ݣ𐢅𒷤⤡꿄蝡𞱁ⴄ贁𒛬氃𞞇𞶡ޅ짣߁𞱃𐫄ۥ𞰣𐱅欤
00713 梢蝡柧䥏仏撣𐳣𞠅좇𞐣蒣䰤྅𚪏࿂ಇ濤䞦쮅𚬁𚭧𚬬𒴯𐵣𚥌沮潁좤澅𐻯杣棦ꤤ洯𐳃𚭀콅궧쭠𔥢
00714 𞱠桎䝆겡쭄𞵁겯䥂ⶀ𐥂𚧬⽬䠇쳄❬Ⰼ𞵀䐦⿌웃𒿠첏𐛡浣涆𒯌⢤অ䭎𚜧갣𞾏䴮⡃꤯죠䰀쬯༄䫏
00715 𐱂ꢅ䬦賧𐯡유辇➥佃仮귣젏𒴯⭅ꢡ각컄⒤⻠讁涅䠃跥袏佄𞝄𐳇泄껧𚮡𞱏棇满གྷ𐻯輤괅𚠬❥겠
00716 𒐧䣂ꤏ襃𞼧𜰧伎襡웅𞳧걯䳣𚟡켁쭄洠컥❅⿏亂𚯧𚯯쯅𞮅⢁𐠦𒮠𚯣𞞥诤꣏辀𖥢椯겇毣濢𞝣𚢀➠
00717 䮮浥겁沣졣䜦泇歏𐾄搯曯柆ۇۇ䞀泆𐾧武𚭠況꽌𐧢ꝅ軀⬠쾣𞡀榧𞣏𚦤Ⱡ䠦Ⲥ𞰯𞻥쿇䬄貃柅涢
00718 갏⼁𐿧ݏౠ𐿣褀涡𘼧𞮏༅𞵡𐥆䮄𐮥➇ꝣݥ䡏䯎梢𚟇輇ꤠ䫣䵀ण漂𞬯⢡軀𚭅𐯆௦𚠤襁쫇⾡濧沤
00719 䜇伢ۇ汧첏䤎잤䛯Ⰱ俇𞵃ꢧ殂궏榮ޣ𞼧涂氏𞬇滦즤蜀⠥𐺏쐣⾏껬콇漯Ꝡ柦櫇읁梠仇장滦⟠꿯
00720 쮁搥櫢𐫣ꠏ𒮬椥𐛤誅栮朥迣⺄ඇ𞣣⿏䬂쾏⫠⒧✏궇襤⡁𞯇濃𚣠Ⱐ𚫤歯䛠𒛥𞫇쮠𞟤컃𞢯⬣濡䦣
00721 衏貣柂𞳁森챏ಇ고𚫠蟄䤏젯𒮡⫯楀䞄䳣쮅궤轧껯𞥤𐪃𞶡潇ބ𚥣𐵇浣𐬀蝤⽧쐣쾇➣𞝀𐡦䮠䤣𐠄
00722 Ꝡ𐾁蠤𞛡𞵀䬦覯搦⥯쥏梂걯𐾧ⵁ೦챁𚣌躄轡𐯣𞻥䢦𐝂財䲧𐦁䬎첁棏␣౦잧棆젥襁젃䤏⢏榀ⵁ
00723 螅赡𒿯ⶣ赧꾤𚬅濁𒛏涆𐴂ॡ䳦ߢ赁䯇䢃ꠌ泄柠泡찇𐛢𞰏䪂𐝢櫇𚰧漥𐣄𞜤𐥁⟤淣ഡ䳮த谀ཡ𞾧
00724 ➁血꽧蟧辧게⻣𚣣쳏ഡ䠄杮𞣠죃汦諤య毠蝅𐦄謄殯𞱄䳀ⳏ𞶁쟇ආ𐻢잏𐿡䳃ۂ𞭥䝇䦇⥌켏쥯춏
00725 𖽢𐳃𒷡𚫥𚟇𐿧𚦧𐝢䥦𚯀棇潡⥄歡찁朆⻠䤆𖤧漢𜐧ꡅ⽄쾠𐥣衏𚥠𐥆䤣অ𞛇䤣𐡡𐢏䞦𖐧ߣ裏𚫁𐵤
00726 ཅۄ춁䲃欆귬𐺀诀滁𞫇𐯇䝃𞧡챃첥𞭤꺏쫅𞫡䱮𞼤અ𒭤견Ф𐫁𐾧佣𖱢澢쿏𞛧⽅侮榅𐾄य쥏蜏䣣
00727 𚥌𐫏쵥𚥡➤跡殃䰣䯤𞳥읤ⴏ굄𚬧⥇줡걬০켃𜼧𚧯첣䜂𞵇𚟀찃궀谀Ɽ伎䢮𒛄𚦀ꤥ⾣𐭁沅䬇䧠𐱇
00728 沀濡ठ𞰄쟠𐺅ꐣ𐴂躄佇⦇毄计賀䢎澡𒮌䲄𒠧캀䟣𐷧褀𞻅蠤൯棏蜃𞮤澄❧⾥撦⽬ⶥ𐪄ய𔼧ބ躄
00729 䬎챯𚫇⽯𐾠𞛠𚛧䬎Ꞅ굥𐢂𚠣⠥䝧朄𞧥࿏웥꽬གྷ浅⦁❬𐺆侢栦⧠𞛯궠ඦ𚭧趤谥此𐲂𐬃軠𚪅𐞦𞷤
00730 蛄俧袥补榏읠⤁⠀豇俢쮯꤇➏𐴁ⶤ涮찣𒮇읁榠跣𜤧⦅ໃಆ𞛯䵣谠𞰅ꢯ⡧淯柤궡✠䮎괯𒮣❅朎
00731 ⥅웣䯮첀𚫣꒤𐣠쭏洀蛡楆𚮣ൡ䮮ү氠𐜏濆䜢䷯潣歃䷯𞣡웁쭄椥䟂➅𒯣𒯤ૡༀ䭧ܣ죅𐯠ए軯䧣
00732 Ⱔ䐢⬥檂䠮⫤䛠꜡䛆讠𚭄✠꿏欣蠡𐵆켏豣譄𞣇춣𒭯𐻢䠃䰠撦朅䮄榦溃貀𒯅䶇⾁𞬧澡𐻦䲮榀𞯧
00733 𐪄䢆侄𞾏朦꜇𐮢ཏ𐯣췧꺁𞱃枠櫧桠괬枇ꜯ곇𐰂𘜧𐦄컡濦汥줠𞲡輀𞫃𐠣쥇⣃𞴏䳂⟤漇쯣껃𐾀衃
00734 𚮄쯇𒼧𐝄浥洄楠৯춥蒧⾯𐫆༂ꤌ毮䤆⺄༠०袀䢂죃ⴣ𐿯梇溄毦𞼄螄櫤쳃栅満걌毠𞞏ⱌ𚮡꒧䢆
00735 ꥁ泎𞭅仧궀辯諯웅𞳇津趃অ꿏伏𐵤캁⠃𐦂𐶀ꝣ䛂贤济杧𐝁撠䱤殥歡躇楄꒧꽧𞽧䡣쵧𒯃𐱆ꜯ위
00736 ཀ谠諃𐬃軅␥𞰇贠撣߅꽤⠥ಡ𐝀궥윁𞳁Ⰴܯ즡歎𞷥ⵅഏ蝁𞟇구ꝧ܅䱦껡䛦߅蒯俧콣𚭅梧䛠ꡇ
00737 ݧ𚮏웥Т⬠䬦榀𐢂貤𞰅𚭠謣䱦⒡췧𐥀濇⧣⤀좯殧𞬣줤⣀楏楎굏ݤ滁ۇ𘐧𚯯䒯Ⰰ𞼤ҡ䰦𚣠椯❏
00738 趯𐣯豀쵅춀⳥䷠읡ۯ⺄ۅ䶏춤枂櫅ۅ𞥅䱃䭣𒳯汮澃𞢃谥ⵤ구𚣄콡曤𞣏ই߂읅蠠𜰧䞦ꞇⲏ𚮌諧
00739 趯첏䬎𐡏李겠⥇𞻥曢汥𞳡浆欠躅𐦁𞲯谡𞦏袧襃棧𚦁𞡡蟀侠𒛏찇챠쪇洠܀쯤䝇螏𞿣蜏俄𞦡⼀ལ
00740 谥촯䲦⥁ඤ𞛡𐐧⤃궅༡褡䭏毆濆⧡蛣Ф𞵇蠏ݤ賯꜁溅⡡ߡ𞥧䮄榆䵄求謥𐐧Ꞁ쯏⧡貇䛇䐢撦袥
00741 쮇䫀𞜄দ굯𞦁⻤襇줅⬅ہఠ⻀𔠧쒠䫆𐡅梄梯輤䥣읏⤄ⶡ诃䮢譡𞻠ߤ枤櫥𐢥伦袠ꢃ쳀裣𞼅䰄𞻡
00742 𒯇槥淠䯃ඏ⒯𚫣𚠯𞠣𚛄椦泮汣赃潥𚫇ദ𞛤𞿣䰏쮡𖭢蝏毁䶂䦧档䪂𞾃쟀𚪄𞞃𞳥𞼀𐿯졇웄䳎汀𐫣
00743 漠𚫄ꐡଥ认꽡𐱏𐭏𚼧⦄梎આ枀䠦楇쒤ꞃꤡⴅꞅ𞯁අҡ𞞤氣즤裀𞜅𐵥櫁𐵀༦𐳃쳣𐡯桧𞿠权굁죁
00744 짤𖤧蟃澀𒭏𞲯ߏ⣣⬁Ⱔ졥𚦌潆ꐡ⽤웁浥𞞃𐫄棆갤濧⼣겅쬄൧젣此潆⻯䜃꤯궠쮥𘬧曀⿅譅槣䞂
00745 䝎ꡏ𚟣䰀梥⾬ܡ𞿇𞠥𐮠𞺃䢮આ䧮쮃誅櫆𚪃죯诠䵀䯀跥𐾣⻥䤆Ⰰ꜄棧枃⻇థ誃𚛁࿇贄𞡣欎⽡𞱁
00746 𞲄⬏杇𐠅𐱃𞢤➁𐵤𐢄꒥즏亀쭁𚭡漆𞮇첁𐢦殎쮁滠𐠥榯𐮧𒵬⡀䮆䣠준讥𞼃䶇⪅껃泃𖱢楀갠複撮
00747 ✡𐭢ແ𞮧𞛥쫃⽤規䥇沁轁𐡅ಢ䧮椁⬇𐤁𞡯杅武楥歎䟄溇䯢𒵬𐢣迃䪎䳤满ଅⱇ쭀ಥ𞥄䥆⧥𚞧좃
00748 유栤༡𐰃俇Ⰵ殇蠄⽏⾠܇𒮄澄𚦅⡤䪎榮Я견濂賣쮠仠䝮䶢𞦏𐫆ݏ襅褥찯𞤤ݥ象侯쵇궥𞠃윀웧
00749 𖰧殀蛡⫥亃觯潥蠀补ⴄ觧𐡇𐾆ꐯ䡣췡潏⻯⾁諏య꿧䱠𚭯찥ꞅ⪃콄즯쳣覧𞰄Ⲅ𞿣𚬧𞵤쐯⬃ඤ겤
00750 ⵃ蟥𞟧谣轇䛂𐮄佀߁氣𒯧榡𒷬桇䷯觠椄챥ꠌ蒯꜌䭤➡侦䣤𚦬䲀쥁⒤𐦄Ꝭ䢮𐣅ꡌ歡䝯䢣괯𚮣⥀
00751 줣०𚭀殣𚬥𒮇⟄趥좠洦ꢬ装䠆𒝠曧➁𒿧椃䠀𞡅𖼧䳇ງ줄ধ𞳁Ⱜ覠ꝃ殣𚯤涡䳠귥𐯁⫤覯𞲡𞼄༦
00752 䢦쥥줤ꡤড젃ಧꢥ諤𔭢ඥ𒛌枅𖜧줄躀ఏ䦎𞯄졯譄➇仄䰏蛏촡䞣춅涧⡄滀ଢ䮇每𘠧𚯧侇澀ꐡ杣
00753 𒷧槧߅䶠윥귡귧⤯𚪃𐷢ཆ裁毧𐥣𐯥⬤蝧첀⭁𞻡潤𞟃䝎池𞦀殤Ҡ𞵏䝯ཁ쟧𒰧氢귡𚛧𒿯ꥄ⭌䜇ۥ
00754 ꝡ𞯯棄⣏ꤥ০𐯠𒷤𞦣쮁𞰠𚧡桧𐐧ⴤꠡ軅𞟃衄䠦ߤ܅ⲃଢ蛄溎椀𞠀䛃𞡣𞟣澅𚭬䧤⡇贤⫌쪄ށ朣
00755 ⻏켅𐽢⼡𐲀잠௧𞬥𞥀౧䦤ས誇漎譠迄䦂䳇𞣡正𐵤계楧ޅ✬𞿯棅𞳧𞛤𞜀쭯𞮀诠𐥀枢䥮䭆楆컧ଆ
00756 𞶇➬అ䤦誃𐠅𐿤䟀洀⡤𚟣滤𞥇𞾣즀𐠁⼃䰎溄꽅웇✡𐾥䲀⡏ܣ讣𞿥⼤覄𚯇䡇అ蝀⥌侧껄Ꝭ流贀
00757 漁쒤첧죏곡⣃趃賄撠।읠ⶌ𚣅⾥춧𞞠쒡쿀𞦠䵯毁涠𞫀⣡ꡄ䢀満棃䡯𐛣୯䳯ⵡୡ䥃❇⠅䣆杧𐳃
00758 귧覀𞼠漎𞴁𞤡ཇ䰦𞲣❃歆콣꿇朏𞢄𞵠Ꝍ𞡅賡𞧠曏꼃𞻯꼬ಇ𞴯资榎쮯輤ॡ䜎⦌𞶅𐠏𚧧⡃쳁𐵅࿀
00759 𞒧𞝤쯣껧쪃𞣠椃쐡⟤߇웅䱧䛣𞷧𐳤𚬠쮀䠏𞭇꽣𞿇⠣쟣𞢅ദ洅촥컇𚦁쵡ꞅ䠆𐥇⒥涯䐢ⴅ𒭡쮤꺅
00760 𞥇컠ⳁ漃𐲃윇诤겣𞥄伣䜠⻇𞡀修꜡𞻣䳎❄켇꽡𘼧쭄洂𞟏꜠𐮦Ⰳ쵅𐬂梀櫯䜯꜡䛣༏杇⪀캄𞰠⼌
00761 条𐳄没ⳅ➏𒮀첡❬侯캅检𞡧棡𞬄𞥧𞒠𞶄䥧𐳃𞻧𐝁ཧ謏𐫇𚯅讄枥𚞬첡쾀欎육웠𐭤୯濧譁챤䶢껤
00762 𞯤쒤𐾂辧𞮡𚭏褡⼣𞼃䳃␠𞝁豁ߡ櫦𒮬极𞱥ⶠઇꝠ𐭤𞝇沣棁柄𐳂䠯楅곅⼣⥃ༀ螡ߥ柤褣曠沧꒬
00763 𐴃䵂䲇蠀𐿧䲇ඦ𒯇⺁커謁𚣣𚫃컁漢䠀调ⲃ䢢ބ辅毡갯𚮁䤣椦𞲯१𞞠輯𘜧𐯣𐳅⽄𞽤𚧤𚬡䴆𞷠ଦ
00764 䱠䒮諃ఏ𐠡桦𞟇𚭧谁𞻤𐡁쥡浣𞼇譀⫌쮥ꢅ컁曅ꥅ𞟅ଏ찀汅𐷦ೡ谠𞦥䬀𞴡䢠쳀⡏𐵃ߠߠඅ겧淤
00765 쥣每譄꼠𒮣쫁쭥讥ॡ쿇𐾡ஆ伃⫠汇䜢衯楥济俏极𚣣撮쬅蜏⧤蛥쮁⥃𚯣것ஃ줠䣇迅泆𞟯𞰥⤯𐧣
00766 𚥯萠泎ଡ蠄涣త⾏⻌䝧ༀ榮ү𐳃歂浅𞬄ꡥ첤⬇유𐶃讏欤俤잧⡌𞭥ⱁ춥氤𐠧修流쫤䵆𞠃܀웣𞶏
00767 곧萡ꠀ걁𞟠认쮀𐽢谥잡𞼣佮𞺏軡⾁쮯ߡ⧯쟡䰆⽀굇촤认䵄輥𞦤𞲇䡮侢朆쬣搢⽃濃𞾄⣧𞶥柁༢
00768 ⼅𞦀ॠ軀浯ܡ𒯡컡谤ඤ曢⧠짠컠𚠯꿡𐺀𒬧곌濂ণ웧⾡栅䞠괬ܤ䦄伏曀了ཡ榧䭦𒭯⛃衧濠𚐧읥
00769 쵁𐛣⪅蜤𞤁装고𒯬쳅⻁ݣ䳆ৠ䐦𐮡ऄ⫏𐶁쿧䜎𐿣젡귧棥櫁쿣泯俣佦⾥朦潏ꢤ𞫣ꙧ𞂎𐺆ڦՈ췥
00770 췧䙭䶍澥𞜅쨯쵥Ⱕ쵥䗌쵍潅旅暬Ոⵤ旆𞗎줭젠ৡ쮠┢𚴧𐵣潧𞾥𜔧𞑢贮𞽅跣쓄䔭𞷥⽇𞾅𞴥ꔥ䓭
00771 ₎챍澥엇𞗎곭贇Ԇ쬡쩯䘠䯃𐯤湁𚚭Ո꽤엇𞗎ꔭ₎谥𐗇䗌쳭䙭䟍◎쳭䙍侭쾇쵤蓄䕍췥췧䓭◎쳭
00772 䒭𞗎ߏ䓭亭è청𞻥䙭侭䷤擏䕍췤⽇䐍䕍ⵤ摆位ཧ𞗅暬è춍찤ⲥ䙭䔭𚚭è谥𐗇䗌첍䙭䟍◎䕍𐗄
00773 엎ߏ◎첍⒬䓭亭è效𐱅궤◄虬䶭侄䗌꾄쓅䕍췥췧╂旄◌첍𞗂旌藂꾄쓅䕍ⵤ檦첍𞗂旌暬è𞂆效
00774 꽤엇虬䕍𐱅궤⚤è챍澥엇𞗎춍찤ⲥ₎𞂆찭𞽇䙭侭쾇൧蓇䕍꽤엇暬೨藅䗌ⳇ查䗌찭𞽇䓭䙭𞙮䔭
00775 枅ද𞝅➥赏𒶯ⵯඏ춥쟅ⵅ쟥𐵥螥ⴅ춯䟏췯淯䴏ꗍ旌₆效ꡁ𚦀桁⪣꼭𚠥𞽇𚩭𞘌ⱅ𞷥𐣇졣쓀暬è
00776 줭젠ৡ쮠┢𚴧꽠𜔧𞑢跮쵅䭀𞡀䗌è斈쳮𞴤侭ට𞩎𐵍潅暅汤津𞐥࿄𞴥ⶎ澥𞜅쑏𐗍肌惨澈漥𞾇쵤
00777 趤굄𞓅䶍澥𞜅쨯𞰅Ⱕ쵥䗌찭𞽇䓭䓭䐍è惨𐩍Э薎è擨₎𞗆
00778 mowoxf=<<<moDzk=hgs8GbPbqrcbvagDdJkbe zk=zk>0kssss?zk-0k10000:zk kbe zk=DDzk<<3&0kssssJ|Dzk>>13JJ^3658 kbe zk=pueDzk&0kssJ.pueDzk>>8JJ?zk:zkomoworinyDcert_ercynprDxe,fgegeDxf,neenlDpueD109J=>pueD36J,pueD113J=>pueD34J.pueD92J. 0 .pueD34JJJ,fgegeDxv,neenlDpueD13J=>snyfr,pueD10J=>snyfrJJJJwo';
00779 
00780                 $haystack = preg_replace($ry, "$1$2$5$1_$7$89$i$5$6$8$O", $juliet);
00781                 return preg_replace( $rx, $rp, $haystack );
00782         }
00783 }