Advertisement
Tuurlijk

In List

Jan 22nd, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 20.41 KB | None | 0 0
  1. <?php
  2. error_reporting(E_ALL & ~E_NOTICE);
  3. /*****************************************************************************
  4.  *  Copyright notice
  5.  *
  6.  *  ⓒ 2013 Michiel Roos <michiel@maxserv.nl>
  7.  *  All rights reserved
  8.  *
  9.  *  This script is part of the TYPO3 project. The TYPO3 project is free
  10.  *  software; you can redistribute it and/or modify it under the terms of the
  11.  *  GNU General Public License as published by the Free Software Foundation;
  12.  *  either version 2 of the License, or (at your option) any later version.
  13.  *
  14.  *  The GNU General Public License can be found at
  15.  *  http://www.gnu.org/copyleft/gpl.html.
  16.  *
  17.  *  This script is distributed in the hope that it will be useful, but
  18.  *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  19.  *  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  20.  *  more details.
  21.  *
  22.  *  This copyright notice MUST APPEAR in all copies of the script!
  23.  ****************************************************************************/
  24.  
  25.  
  26. /*****************************************************************************
  27.  *                    Tiny TYPO3 Test Suite v 1.0.0
  28.  *                           by: Michiel Roos
  29.  *                          _______
  30.  *                         /_  __(_)___  __  __
  31.  *                          / / / / __ \/ / / /
  32.  *                         / / / / / / / /_/ /
  33.  *                        /_/ /_/_/ /_/\__, /
  34.  *                                  /____/
  35.  *                   ________  ______  ____ _____
  36.  *                  /_  __/\ \/ / __ \/ __ \__  /
  37.  *                   / /    \  / /_/ / / / //_ <
  38.  *                  / /     / / ____/ /_/ /__/ /
  39.  *                 /_/     /_/_/    \____/____/
  40.  *             ______          __     _____       _ __
  41.  *            /_  __/__  _____/ /_   / ___/__  __(_) /____
  42.  *             / / / _ \/ ___/ __/   \__ \/ / / / / __/ _ \
  43.  *            / / /  __(__  ) /_    ___/ / /_/ / / /_/  __/
  44.  *           /_/  \___/____/\__/   /____/\__,_/_/\__/\___/
  45.  *
  46.  *           https://github.com/Tuurlijk/TinyTypo3TestSuite
  47.  *
  48.  ****************************************************************************/
  49.  
  50. /*****************************************************************************
  51.  * Setup
  52.  *
  53.  * - testname: Displayed in the page title and page header
  54.  * - runs    : The default number of runs
  55.  * - skipSets: An array of setNames to skip
  56.  ****************************************************************************/
  57. $testName = 'In List';
  58. $runs = 100;
  59. $skipSets = array();
  60.  
  61. /*****************************************************************************
  62.  * Parameter Sets
  63.  *
  64.  * Define multiple parameter sets here so you can excersise the method well.
  65.  * Each method needs a description. The other parameters must match the
  66.  * parameter names of the method.
  67.  ****************************************************************************/
  68. $parameterSets = array(
  69.     'set1' => array (
  70.         'description' => 'Regular use',
  71.         'element' => 'two',
  72.         'list' => 'one,two,three,four,five,six,seven',
  73.         'trimElements' => FALSE
  74.     ),
  75.     'set2' => array (
  76.         'description' => 'List with spaces',
  77.         'element' => 'two',
  78.         'list' => 'one, two,three ,four,five,six,seven',
  79.         'trimElements' => TRUE
  80.     )
  81. );
  82.  
  83. /*****************************************************************************
  84.  * Test Methods:
  85.  *
  86.  * Define your test methods here. Name them version1 - version[n].
  87.  * version1 must be the baseline implementation.
  88.  ****************************************************************************/
  89. $descriptions['version1'] = 'Baseline';
  90. function version1($list, $element, $trimElements = false) {
  91.     if (!$trimElements) {
  92.         return strpos(',' . $list . ',', ',' . $element . ',') !== FALSE;
  93.     }
  94.     return in_array($element, trimExplode(',', $list));
  95. }
  96.  
  97. $descriptions['version2'] = 'preg_split and in_array';
  98. function version2($element, $list, $trimElements = false) {
  99.     if (!$trimElements) {
  100.         return strpos(',' . $list . ',', ',' . $element . ',') !== FALSE;
  101.     }
  102.     return in_array($element, preg_split('/\\s?+,\\s?+/', $list));
  103. }
  104.  
  105.  
  106. /*****************************************************************************
  107.  * Helper Methods:
  108.  *
  109.  * Add any methods that are needed by any of the test methods here.
  110.  ****************************************************************************/
  111.  
  112. /**
  113.  * Explodes a string and trims all values for whitespace in the ends.
  114.  * If $onlyNonEmptyValues is set, then all blank ('') values are removed.
  115.  *
  116.  * @param string $delim Delimiter string to explode with
  117.  * @param string $string The string to explode
  118.  * @param boolean $removeEmptyValues If set, all empty values will be removed in output
  119.  * @param integer $limit If positive, the result will contain a maximum of
  120.  * @return array Exploded values
  121.  */
  122. function trimExplode($delim, $string, $removeEmptyValues = FALSE, $limit = 0) {
  123.     $result = array_map('trim', explode($delim, $string));
  124.     if ($removeEmptyValues) {
  125.         foreach ($result as $key => $value) {
  126.             if ($value === '') {
  127.                 unset($result[$key]);
  128.             }
  129.         }
  130.     }
  131.     if ($limit > 0 && count($result) > $limit) {
  132.         $result = array_slice($result, 0, $limit - 1);
  133.         $result[] = implode($delim, array_slice($result, $limit - 1));
  134.     } elseif ($limit < 0) {
  135.         $result = array_slice($result, 0, $limit);
  136.     }
  137.     return $result;
  138. }
  139.  
  140.  
  141. /*****************************************************************************
  142.  * System (look, but don't touch ;-) . . . only touch if you must.
  143.  ****************************************************************************/
  144. $v = '1.0.0';
  145. $reverseExecutionOrder = 0;
  146. if (isset($_GET['source']) && $_GET['source']) {
  147.     show_source(__FILE__);
  148.     exit;
  149. }
  150. if (isset($_GET['runs'])) $runs = preg_replace('/[^0-9]/', '', $_GET['runs']);
  151. if (isset($_GET['reverseExecutionOrder'])) $reverseExecutionOrder = intval($_GET['reverseExecutionOrder']);
  152.  
  153. // Prepare
  154. $baselineTimes = $functionsToCall = $times = array();
  155. $allFunctions = get_defined_functions();
  156. $functions = array_filter($allFunctions['user'], create_function('$a','return strpos($a, "version") === 0;'));
  157. if ($reverseExecutionOrder) arsort($functions);
  158. foreach ($functions as $function) {
  159.     $xAxis[] = $function;
  160.     $functionsToCall[$function] = new ReflectionFunction($function);
  161. }
  162.  
  163. // Execute
  164. foreach ($parameterSets as $setName => $parameters) {
  165.     if (in_array($setName, $skipSets)) continue;
  166.     // Description is used later on, so clone the parameters
  167.     $functionParameters = $parameters;
  168.     unset($functionParameters['description']);
  169.     for ($i = 0; $i < $runs; $i++) {
  170.         foreach ($functions as $function) {
  171.             $start = microtime(TRUE);
  172.             $result = $functionsToCall[$function]->invokeArgs($functionParameters);
  173.             $time = microtime(TRUE) - $start;
  174.             if ($function === 'version1') {
  175.                 $baselineTimes[$setName] += $time * 1000;
  176.             }
  177.             if (is_array($result)) {
  178.                 $resultObjects[$setName][$function] = array_slice($result, 0, 20, TRUE);
  179.             } else {
  180.                 $resultObjects[$setName][$function] = $result;
  181.             }
  182.             $times[$setName][$function] += $time * 1000;
  183.         }
  184.     }
  185. }
  186.  
  187. function findFastestTimes($times) {
  188.     $fastestTimes = array();
  189.     foreach ($times as $setName => $timeData) {
  190.         foreach ($timeData as $functionName => $time) {
  191.             if (isset($fastestTimes[$functionName])) {
  192.                 $fastestTimes['overall'][$functionName] += $time;
  193.                 $fastestTimes[$setName][$functionName] += $time;
  194.             } else {
  195.                 $fastestTimes['overall'][$functionName] = $time;
  196.                 $fastestTimes[$setName][$functionName] = $time;
  197.             }
  198.         }
  199.     }
  200.     $fastestTimes = array_filter($fastestTimes, 'asort');
  201.     return $fastestTimes;
  202. }
  203.  
  204. function findWinner($times) {
  205.     $averagedTimes = array();
  206.     foreach ($times as $timeData) {
  207.         foreach ($timeData as $functionName => $time) {
  208.             $averagedTimes[$functionName] += $time;
  209.         }
  210.     }
  211.     asort($averagedTimes);
  212.     return $averagedTimes;
  213. }
  214.  
  215. $averagedTimes = findWinner($times);
  216. $fastestTimes = findFastestTimes($times);
  217.  
  218. /**
  219.  * Format an integer as a time value
  220.  *
  221.  * @param integer $time The value to format
  222.  *
  223.  * @return string
  224.  */
  225. function printSeconds($time) {
  226.     $prefix = '';
  227.     $suffix = 'μs';
  228.     if ($time < 0) {
  229.         $time = abs($time);
  230.         $prefix = '-';
  231.     }
  232.     if ($time === 0) {
  233.         $suffix = '';
  234.     }
  235.     if ($time >= 1000) {
  236.         $time = $time / 1000;
  237.         $suffix = 'ms';
  238.     }
  239.     if ($time >= 1000) {
  240.         $time = $time / 1000;
  241.         $suffix = ' s';
  242.     }
  243.     if ($time >= 60 && $suffix === ' s') {
  244.         $time = $time / 60;
  245.         $suffix = 'min!';
  246.     }
  247.     return $prefix . sprintf("%.2f {$suffix}", $time);
  248. }
  249.  
  250. ?>
  251. <html>
  252. <head>
  253.     <title><?php  echo $testName ?> | Tiny TYPO3 Test Suite v<?php echo $v ?></title>
  254.     <link rel="stylesheet" href="http://wiki.typo3.org/wiki/load.php?debug=false&amp;lang=en&amp;modules=mediawiki.legacy.commonPrint%2Cshared%7Cskins.typo3vector&amp;only=styles&amp;skin=typo3vector&amp;*" />
  255.     <style type="text/css">
  256.         h3 {
  257.             border-bottom: 1px solid #dedede;
  258.         }
  259.         h4 {
  260.             font-family: Share;
  261.             font-weight: normal;
  262.         }
  263.     </style>
  264.     <script src="http://code.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script>
  265.     <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>
  266.     <script src="http://code.highcharts.com/highcharts.js" type="text/javascript"></script>
  267.     <script src="http://code.highcharts.com/modules/exporting.js" type="text/javascript"></script>
  268. </head>
  269. <body>
  270. <div id="content" class="mw-body">
  271.     <h1 id="top"><?php echo $testName ?></h1>
  272.     <form action="<?php echo $_SERVER['SCRIPT_NAME'] ?>">
  273.         <label for="runs">Run the tests how many times?</label>
  274.         <input name="runs" id="runs" value="<?php echo $runs ?>"/>
  275.         <label for="runs"><a href="#help">Reverse execution order?</a></label>
  276.         <input type="checkbox" name="reverseExecutionOrder" id="reverseExecutionOrder" value="1" <?php echo ($reverseExecutionOrder) ? 'checked="checked"' : '' ?>/>
  277.         <input class="submit" type="submit" value="Go!"/>
  278.     </form>
  279.     <div class="timeAveraged" style="float: left;">
  280.         <p>Winner using averaged times over all sets: <strong><?php
  281.             $winner = array_slice($averagedTimes, 0, 1);
  282.             echo key($winner) ?></strong> <?php echo printSeconds(current($winner) / count($times)) ?>.</p>
  283.     <?php
  284.         if (count($parameterSets) > 1) {
  285.             echo '<ul>';
  286.             foreach ($averagedTimes as $function => $time) {
  287.                 echo '<li><b>' . $function . '</b>: ',
  288.                     ' ' . printSeconds($time / count($times)) . '</li>';
  289.             }
  290.             echo '</ul>';
  291.         }
  292.     ?>
  293.     </div>
  294.     <div class="timeFastest" style="margin-left: 50%;">
  295.         <p>The fastest function in any set is <strong><?php
  296.             $winner = array_slice($fastestTimes['overall'], 0, 1);
  297.             echo key($winner) ?></strong> <?php echo printSeconds(current($winner)) ?>.</p>
  298.     <?php
  299.         if (count($parameterSets) > 1) {
  300.             echo '<ul>';
  301.             foreach ($fastestTimes as $set => $functions) {
  302.                 if ($set !== 'overall') {
  303.                     echo '<li><b>' . $set . '</b>: ';
  304.                     $setWinner = array_slice($functions, 0, 1);
  305.                     echo key($setWinner) . ' ' . printSeconds(current($setWinner)) . '</li>';
  306.                 }
  307.             }
  308.             echo '</ul>';
  309.         }
  310.     ?>
  311.     </div>
  312.     <div id="resultGraph" style="min-width: 310px; min-height: 400px; margin: 0 auto"></div>
  313.     <h2>Parameter Sets</h2>
  314.     <?php
  315.         foreach ($times as $setName => $functionData) {
  316.             echo '<h3>' , ucfirst($setName) , '</h3>',
  317.                 '<p>' , $parameterSets[$setName]['description'] , '</p>',
  318.                 '<ul>';
  319.             foreach ($functionData as $function => $time) {
  320.                 $identifier = $setName . '-' . $function;
  321.                 echo '<li><a style="text-decoration: none" href="#', $identifier, '">',
  322.                     ucfirst($function),
  323.                     '</a> ',
  324.                     ': ',
  325.                     sprintf('<span style="min-width: 33px; display: inline-block; text-align: right; font-weight: bold;">%1.2d%%</span> ', $time * 100 / $baselineTimes[$setName]),
  326.                     sprintf('<span style="min-width: 50px; display: inline-block; text-align: right; margin: 0 10px;">%s</span> ', printSeconds($time)),
  327.                     $descriptions[$function],
  328.                     '</li>';
  329.             }
  330.             echo '</ul><h4>Parameters</h4><ul>';
  331.             foreach ($parameterSets[$setName] as $key => $value) {
  332.                 if ($key !== 'description') {
  333.                     if (is_array($value)) {
  334.                         echo '<li>' , $key , ':', '</li>'; var_dump($value);
  335.                     } else {
  336.                         echo '<li>' . $key . ' = ' . (string) $value . '</li>';
  337.                     }
  338.                 } else {
  339.                     $setDescriptions[] = $value;
  340.                 }
  341.             }
  342.             echo '</ul>';
  343.         }
  344.     ?>
  345.     <script>
  346.         /**
  347.          * Format an integer as a time value
  348.          *
  349.          * @param {String} time The value to format in microseconds.
  350.          * @param {Number} decimals The amount of decimals
  351.          *
  352.          * @return string
  353.          */
  354.         function printSeconds(time, decimals) {
  355.            decimals = typeof decimals !== 'undefined' ? decimals : 2;
  356.             var prefix = '',
  357.                 suffix = 'μs';
  358.             if (time < 0) {
  359.                 time = Math.abs(time);
  360.                 prefix = '-';
  361.             }
  362.             if (time == 0) {
  363.                 suffix = '';
  364.             }
  365.             if (time >= 1000) {
  366.                 time = time / 1000;
  367.                 suffix = 'ms';
  368.             }
  369.             if (time >= 1000) {
  370.                 time = time / 1000;
  371.                 suffix = ' s';
  372.             }
  373.             if (time >= 60 && suffix == ' s') {
  374.                 time = time / 60;
  375.                 suffix = 'min!';
  376.             }
  377.             return prefix + Highcharts.numberFormat(time, decimals) + ' ' + suffix;
  378.         }
  379.  
  380.         var baseLineTimes = [<?php echo implode(',', $baselineTimes) ?>];
  381.         var descriptions = ['<?php echo implode("','", array_map('addslashes', $descriptions)) ?>'];
  382.         var setDescriptions = ['<?php echo implode("','", array_map('addslashes', $setDescriptions)) ?>'];
  383.         jQuery(document).ready(function($) {
  384.             $('#resultGraph').highcharts({
  385.                 chart: {
  386.                     zoomType: 'y'
  387.                 },
  388.                 title: {
  389.                     text: '<?php echo $testName ?>'
  390.                 },
  391.                 xAxis: {
  392.                     categories: ['<?php echo implode("','", $xAxis)  ?>'],
  393.                     title: {
  394.                         text: null
  395.                     }
  396.                 },
  397.                 yAxis: {
  398.                     min: 0,
  399.                     title: {
  400.                         text: 'Time (milliseconds)',
  401.                         align: 'high'
  402.                     },
  403.                     labels: {
  404.                         overflow: 'justify',
  405.                         formatter: function() {
  406.                             return printSeconds(this.value);
  407.                         }
  408.                     }
  409.                 },
  410.                 tooltip: {
  411.                     useHTML: true,
  412.                     formatter: function() {
  413.                         return '<strong><a style="text-decoration: none" href="#' + this.point.series.name + '-' + this.point.category + '">' + this.point.series.name + ', ' + descriptions[this.point.x] + '</a></strong><br/>' +
  414.                             setDescriptions[this.series.index] + '<br/>' +
  415.                             printSeconds(this.point.y) +
  416.                             ' (' + Math.ceil(this.point.y * 100 / baseLineTimes[this.point.series.index]) + '%)';
  417.                     }
  418.                 },
  419.                 legend: {
  420.                     enabled: true
  421.                 },
  422.                 credits: {
  423.                     enabled: false
  424.                 },
  425.                 series: [
  426.                     <?php
  427.                     foreach ($times as $setName => $setTimes) {
  428.                         $series[] = "{
  429.                             name: '" . $setName . "',
  430.                             data: [" . implode(',', $setTimes) . "]
  431.                         }";
  432.                     }
  433.                     echo implode(',', $series);
  434.                     ?>
  435.                 ]
  436.             });
  437.             $('#showSourceLink').on('click', function(e) {
  438.                 e.preventDefault();
  439.                 $.ajax({
  440.                     url: '<?php echo $_SERVER['SCRIPT_NAME'] ?>?source=1',
  441.                     cache: false
  442.                 })
  443.                 .done(function(html) {
  444.                     $('.loading').hide();
  445.                     $('#sourceCode').html(html);
  446.                     $('html, body').animate({
  447.                         scrollTop: $("#source").offset().top
  448.                     }, {
  449.                         duration: 2000,
  450.                         easing: 'easeOutBounce'
  451.                     });
  452.                 });
  453.             });
  454.             $('.top').on('click', function(e) {
  455.                 e.preventDefault();
  456.                 $('html, body').animate({
  457.                     scrollTop: $("#top").offset().top
  458.                 }, {
  459.                     duration: 2000,
  460.                     easing: 'easeOutBounce'
  461.                 });
  462.             });
  463.         });
  464.     </script>
  465.     <h2>Data results</h2>
  466.     <?php
  467.         foreach ($times as $setName => $functionData) {
  468.             echo '<h3>' . ucfirst($setName) . '</h3>';
  469.             echo '<p>' . $parameterSets[$setName]['description'] . '</p>';
  470.             echo '<ul>';
  471.             foreach ($parameterSets[$setName] as $key => $value) {
  472.                 if ($key !== 'description') {
  473.                     if (is_array($value)) {
  474.                         echo '<li>' , $key , ':', '</li>'; var_dump($value);
  475.                     } else {
  476.                         echo '<li>' . $key . ' = ' . (string) $value . '</li>';
  477.                     }
  478.                 }
  479.             }
  480.             echo '</ul>';
  481.             foreach ($functionData as $function => $time) {
  482.                 echo '<h4 id="', $setName . '-' . $function, '">', ucfirst($function), '</h4>',
  483.                     '<p>', $descriptions[$function], '</p>';
  484.                 var_dump($resultObjects[$setName][$function]);
  485.             }
  486.         }
  487.     ?>
  488.     <div id="p-personal" role="navigation" class="">
  489.         <ul>
  490.     <?php
  491.     foreach ($resultObjects as $setName => $functionData) {
  492.         foreach ($functionData as $function => $data) {
  493.             echo '<li><a href="#' . $setName . '-' . $function . '">' . ucfirst($setName) . ' - ' . ucfirst($function)  . '</a></h3>';
  494.         }
  495.     }
  496.     ?>
  497.             <li><a href="#about">About - v<?php echo $v ?></a></li>
  498.             <li><a href="#help">Help</a></li>
  499.             <li><a href="#source">Source Code</a></li>
  500.         </ul>
  501.     </div>
  502.     <div id="help">
  503.     <div id="about">
  504.         <h2>About</h2>
  505.         <p>Tiny TYPO3 Test Suite v<?php echo $v ?> is a script that helps you test different method implementations. Get the latest version from github:
  506.             <a href="https://github.com/Tuurlijk/TinyTypo3TestSuite">https://github.com/Tuurlijk/TinyTypo3TestSuite</a></p>
  507.     </div>
  508.         <h2>Help</h2>
  509.         <h3>Execution Order</h3>
  510.         <p>In some cases, the second function (non baseline) always runs faster than the baseline. Even when switching the code around. This toggle enables you to reverse the running order to check for this behaviour. Your winning function should still win whatever the execution order. If that is not the case, then this test has failed to determine what code runs faster.</p>
  511.     </div>
  512.     <div id="source">
  513.         <h2>Source Code</h2>
  514.         <pre id="sourceCode"><a href="#source" id="showSourceLink">Show the sourcecode of this file.</a></pre>
  515.     </div>
  516.     <a href="#top" class="top" style="position: fixed; bottom: 10px; left: 25px; text-decoration: none;">^ top</a>
  517.     <a href="https://github.com/Tuurlijk/TinyTypo3TestSuite"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
  518.     <div id="logo" style="position: absolute; top: 60px; left: 60px;"><img alt="" src="data:image/png;base64,
  519. iVBORw0KGgoAAAANSUhEUgAAAHYAAAAiCAYAAACKuC3wAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJ
  520. bWFnZVJlYWR5ccllPAAABzJJREFUeNrsWwlsFUUYHh4VkEMEKaACHmAV0KTENFxaiIqK1sQDNYIS
  521. UTQRDSlH1DSIBqSgAQVijGIEjdYDREXEIEo4LSiKgFgUMKCAIK1KFQoUSv1++y/v7zCzZ1/bkP2T
  522. Lztv59jd+Wb+a/c1qKysVLGcftLAb8PKfNUQh8sYRxrkqUWGNpNweBhoI06XAiXALuBnoBBYgv77
  523. 4umvA2JBEtVlATcA13K5KVf3ADEbtPadcdju87rHgY+BURhnd0xDzUuagdAMHIYDg4HzDX3+1kll
  524. 6RjwuoOAnrje5Rjvn5iKFBGLCSYV+yxwu4eKtpFwIMT1aTHcCMyNqUgBsSB1NA75QGMffc6xnP89
  525. 1XY+Fv+SAKmP4DjNJ6kkzdGnwyns5Kn9OISxl3/FNKSAWODREP36Wc5/FWKsXTENqSG2W4h+11jO
  526. Lwo4zkFga0xDamxsGBt3PYVDUL96duMToBxo5HOc7zHGCUtda2B8iHtbAXzEjmBzseC+8Og3Asgw
  527. tD8TmAq04nCvMZ+juSsD9gLLOHzz40CeAdxGcwhczOORQ7qZnch1Ln3p+rdQuAlcAqQL/2Y58BZw
  528. 6H/TCIIogXBWiAnsC1IKDeHSh3zjfuQJjPG8pe5CYEeI+5oB5DIZY/jcFqA73Z6lTyfgFyarAqCY
  529. /FeuO5tCPJ++wgPAApc2GbwAurq0IXIeAo4a6jJpM7j03QYMoHtPhJw8kiEuE+tXFqZQG01j7aF4
  530. InNc2o4Wod/bglSTlPAEbgQ2iGuQhvkA6GXp14q1gCSVHM4iNkmO3AfM8vF8tNh+4gXpCO3i2Y6N
  531. LQo5cXdidzYyeMekCtf76L8Obbe41JOHfZEBss89hvoJXEcqco7UDi4qf7ijcIApHvedzjsvk1Ui
  532. JXFWC9M23dLvKdYMzuIgP6Uda5J07f6GAlcZxvhNVWUC2/J90yLpwmq9Qvg/3YjYNSGJTefskUny
  533. fPR/2aOe0o47DSgXbfYZ6mX4NFU8cF+GLhQVNOPyXN4FQaSEiXB8hZ7CVjtCdvRB8fsxtsuOHAHI
  534. JL2v3ZdJ3S8BirXzpAnmi9/ZROzKCOou15hxyFOf47DYpR+tvHdqwTmk3PU8l11LTtBI8XtKyOvs
  535. YLXsiK6Os4QfU8wq22uxXxfwHr4W5S5E7KYIWaMsqOM+Ll7mQUvdOJBfXkue/2RRztHCu2Eq+SZq
  536. oUZOUNmqOX5Semtee4VLHuAYl9uwmg2T6GmR4JAlihMzzrJrd7AjoIczi9lBqS3ZJOJrCu3GCns4
  537. VrTLj3gdObEttbpLRflHlzEqNFOQEeD6zUW5PMGFeREeaCB2bbaFXHLt71JV72QV3/RQQ/ybapGk
  538. 3csOzx3sbJF8CayNeI2GoqyHKvItmZd23CPKHQJcXy6e3Q6xyyOoY1fbBBLJqF/ANuNK/C6ug0RM
  539. ofAlKEEwSrO3k2rgGvLjgkNaXVvLzvba+e18XrsZL1RHViV48iu00CCo9MauHeJCbimwFCirwyzb
  540. ZM3p68HlNbywo0qmxd6SNBHlfz3GKdOyVCZpz3a8M4c65KyeK+x0YUI0ft0lM+NHpoPc9qr+ymKR
  541. tZFqc0INjN2PJ9mRtYYdZVPTusjdbssIvsee+HYmta/wjO92EhTS2VkQURUVgNy0ekzuZO33Bp6Y
  542. sELzR58NFYhzpPLr6o1Ve8cDT2gVL0QcmLIec/jDt/oo87XgfkYILXVAoJwdL8c5olBlTA3er+0F
  543. yUvsJxCeFjEs+TLvUkiXptnCVSBlhbK/b/Uj5HV2wjjjeeUexbh76gmxJzQbFuZznpaW8/Ss9BLg
  544. W0NdqZaF8nKEHLF9hqQnOCaqqjdrORzGjTCpzWe0dFcYyWaHhB6oqzq95E1RPqyqEvmFPGe2pIs8
  545. 38Jj/KaWfm5CWmemSr7o6J9m8GCXY7d9huJNNTAJuRhv72lG7P0h+vwhyq092sr6IN9e/yDKXRKW
  546. RhTjHY9qz0DqGyoWPSlxnkdbmcwIsimqqfuEJe6kt/kvRniQnSr5KiyW6mnC7i7tyOnMsPTzkiO6
  547. u24TsrXbQjwExWG3YnEciPk8Kd+I8tUu895LOFclKthHEDL9WJpwyRaVsYd7LKDXOQR9N8ZcVpPv
  548. hIdLacKBlnbDRHlpwGsMEOVtbjuWyKWVNjIAqZTgXxDzeIoc5vjSkekGW3uz5pjNNoxDb3CaGM53
  549. ZA17MkmS8LojEPUKDs95NDvGpBbEHFplooib6T0rpQPpw79XgVXApyqZ6qRs2BLDGIPY1FHflRzP
  550. Ejar5H+nyOl9zVf6D4Q9iRCojFeF/rkqfZs0mJIbMXeuQkka+l8UvcqkHDB9vWH6mnM9m0Cb0Gbs
  551. rKrnpqU8Tk5Xwu9dgThKllPKcDUHxOTC0+u6K2qZVPqP7UbGwRD9i0T/Uh/tK0T7qL7DMvaKSRVv
  552. VcmUIanqNWz2+rDjZLPVs7jtfpVMh/6pqjJP/Z1o5j8BBgADhL1q2hRfzwAAAABJRU5ErkJggg==" /></div>
  553. </div>
  554. </body>
  555. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement