code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/piedonut/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); $data = array( array( "y"=> 55.11, "color"=>"js:colors[0]", "drilldown"=>array( "name"=>'MSIE versions', "categories"=>array('MSIE 6.0', 'MSIE 7.0', 'MSIE 8.0', 'MSIE 9.0'), "data"=>array(10.85, 7.35, 33.06, 2.81), "color"=>"js:colors[0]" ) ), array( "y"=> 21.63, "color"=>"js:colors[1]", "drilldown"=>array( "name"=>'Firefox versions', "categories"=>array('Firefox 2.0', 'Firefox 3.0', 'Firefox 3.5', 'Firefox 3.6', 'Firefox 4.0'), "data"=>array(0.20, 0.83, 1.58, 13.12, 5.43), "color"=>"js:colors[1]" ) ), array( "y"=> 11.94, "color"=>"js:colors[2]", "drilldown"=>array( "name"=>'Chrome versions', "categories"=>array('Chrome 5.0', 'Chrome 6.0', 'Chrome 7.0', 'Chrome 8.0', 'Chrome 9.0','Chrome 10.0', 'Chrome 11.0', 'Chrome 12.0'), "data"=>array(0.12, 0.19, 0.12, 0.36, 0.32, 9.91, 0.50, 0.22), "color"=>"js:colors[2]" ) ), array( "y"=> 7.15, "color"=>"js:colors[3]", "drilldown"=>array( "name"=>'Safari versions', "categories"=>array('Safari 5.0', 'Safari 4.0', 'Safari Win 5.0', 'Safari 4.1', 'Safari/Maxthon','Safari 3.1', 'Safari 4.1'), "data"=>array(4.55, 1.42, 0.23, 0.21, 0.20, 0.19, 0.14), "color"=>"js:colors[3]" ) ) ); $sdata = jqGridUtils::encode($data); $click = <<<CLICK function(){ var drilldown = this.drilldown; if (drilldown) { setChart(drilldown.name, drilldown.categories, drilldown.data, drilldown.color); } else { setChart(name, categories, $sdata); } } CLICK; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"column" )) ->setTitle(array('text'=>'Browser market share, April, 2011')) ->setSubtitle(array("text"=>"Click the columns to view versions. Click again to view brands.")) ->setxAxis(array("categories"=>array('MSIE', 'Firefox', 'Chrome', 'Safari', 'Opera'))) ->setyAxis(array( "title"=>array("text"=>"Total percent market share") )) ->setTooltip(array("formatter"=>"function(){var point = this.point, s = this.x +':<b>'+ this.y +'% market share</b><br/>'; if (point.drilldown) {s += 'Click to view '+ point.category +' versions';} else {s += 'Click to return to browser brands';} return s;}")) ->setPlotOptions(array( "column"=> array( "cursor"=>'pointer', "point"=>array( "events"=>array( "click"=>"js:".$click ), "dataLabels"=>array( "enabled"=>true, "color"=>"js:Highcharts.getOptions().colors[0]", "style"=>array("fontWeight"=>'bold'), "formatter"=>"js:function(){return this.y +'%';}" ) ) ))) ->addSeries('Browser brands', $data); $setser = <<<SETSER function setChart(name, categories, data, color) { chart.xAxis[0].setCategories(categories); chart.series[0].remove(); chart.addSeries({ name: name, data: data, color: color || 'white' }); } SETSER; $chart->setJSCode($setser); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columndrildown/chart.php
PHP
gpl2
3,000
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> <script type="text/javascript"> var colors = Highcharts.getOptions().colors, categories = ['MSIE', 'Firefox', 'Chrome', 'Safari', 'Opera'], name = 'Browser brands'; </script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columndrildown/default.php
PHP
gpl2
1,157
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ jQuery(document).ready(function(){ var chart = new Highcharts.Chart({ "credits":{"enabled":false}, "chart":{"renderTo":"jqchart","defaultSeriesType":"column"}, "series":[ {"name":"Browser brands","data":[ { "y":55.11, "color":Highcharts.getOptions().colors[0], "drilldown": {"name":"MSIE versions", "categories":["MSIE 6.0","MSIE 7.0","MSIE 8.0","MSIE 9.0"], "data":[10.85,7.35,33.06,2.81], "color":Highcharts.getOptions().colors[0]}}, { "y":21.63, "color":Highcharts.getOptions().colors[1], "drilldown": {"name":"Firefox versions", "categories":["Firefox 2.0","Firefox 3.0","Firefox 3.5","Firefox 3.6","Firefox 4.0"], "data":[0.2,0.83,1.58,13.12,5.43], "color":Highcharts.getOptions().colors[1]} },{ "y":11.94, "color":Highcharts.getOptions().colors[2], "drilldown": {"name":"Chrome versions", "categories":["Chrome 5.0","Chrome 6.0","Chrome 7.0","Chrome 8.0","Chrome 9.0","Chrome 10.0","Chrome 11.0","Chrome 12.0"], "data":[0.12,0.19,0.12,0.36,0.32,9.91,0.5,0.22], "color":Highcharts.getOptions().colors[2]} },{ "y":7.15, "color":Highcharts.getOptions().colors[3], "drilldown":{ "name":"Safari versions", "categories":["Safari 5.0","Safari 4.0","Safari Win 5.0","Safari 4.1","Safari/Maxthon","Safari 3.1","Safari 4.1"], "data":[4.55,1.42,0.23,0.21,0.2,0.19,0.14], "color":Highcharts.getOptions().colors[3] } } ] }], "title":{ "text":"Browser market share, April, 2011" }, "subtitle":{ "text":"Click the columns to view versions. Click again to view brands." }, "xAxis":{ "categories":["MSIE","Firefox","Chrome","Safari","Opera"] }, "yAxis":{ "title":{ "text":"Total percent market share" } }, "tooltip":{ "formatter":function(){var point = this.point, s = this.x +':<b>'+ this.y +'% market share</b><br/>'; if (point.drilldown) {s += 'Click to view '+ point.category +' versions';} else {s += 'Click to return to browser brands';} return s;} }, "plotOptions":{ "column":{ "cursor":"pointer", "point":{ "events":{ "click":function(){ var drilldown = this.drilldown; if (drilldown) { setChart(drilldown.name, drilldown.categories, drilldown.data, drilldown.color); } else { setChart(name, categories, data); } } } }, "dataLabels":{ "enabled":true, "color":Highcharts.getOptions().colors[0], "style":{ "fontWeight":"bold" }, "formatter":function(){return this.y +'%';}}}}, "exporting":{"url":"\thttp://trirand.com/jqcharts/"}});});
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columndrildown/newjavascript.js
JavaScript
gpl2
2,757
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; //require_once ABSPATH."php/jqGridPdo.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); $loadevent = <<< LOAD function() { // set up the updating of the chart each second var series = this.series[0]; setInterval(function() { var x = (new Date()).getTime(), // current time y = Math.random(); series.addPoint([x, y], true, true); }, 1000); } LOAD; $randdata = <<< RNDATA (function() { // generate an array of random data var data = [], time = (new Date()).getTime(), i; for (i = -19; i <= 0; i++) { data.push({ x: time + i * 1000, y: Math.random() }); } return data; })() RNDATA; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"spline", "marginRight"=>10 )) ->setChartEvent('load', $loadevent) ->setTitle(array('text'=>'Live random data')) ->setxAxis(array( "type"=>'datetime', "tickPixelInterval"=> 150 )) ->setyAxis(array( "title"=>array("text"=>"Value"), "plotLines"=>array(array( "value"=>0, "width"=>1, "color"=>'#808080' )) )) ->setTooltip(array( "formatter"=>"function(){return '<b>'+ this.series.name +'</b><br/>'+Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'<br/>'+Highcharts.numberFormat(this.y, 2);}" )) ->setLegend(array( "enabled"=>false )) ->setExporting('enabled', false) ->addSeries('Random data', 'js:'.$randdata ); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/dynspline/chart.php
PHP
gpl2
1,478
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/dynspline/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=> "scatter", "zoomType"=>"xy" )) ->setTitle(array('text'=>'Height Versus Weight of 507 Individuals by Gender')) ->setSubtitle(array("text"=>"Source: Heinz 2003")) ->setxAxis(array( "title"=>array( "enabled"=> true, "text"=> "Height (cm)" ), "startOnTick"=>true, "endOnTick"=> true, "showLastLabel"=> true )) ->setyAxis(array( "title"=>array("text"=>"Weight (kg)") )) ->setTooltip(array( "formatter" => "function(){ return this.x +' cm, '+ this.y +' kg';}" )) ->setLegend(array( "layout"=> 'vertical', "align"=> 'left', "verticalAlign"=> 'top', "x"=> 100, "y"=> 70, "floating"=> true, "backgroundColor"=>'#FFFFFF', "borderWidth"=> 1 )) ->setPlotOptions(array( "scatter"=>array( "marker"=>array( "radius"=> 5, "states"=>array( "hover"=>array( "enabled"=> true, "lineColor"=> 'rgb(100,100,100)' ) ) ), "states"=>array( "hover"=>array( "marker"=>array( "enabled"=>false ) ) ) ) )) ->addSeries('Female', array( array(161.2, 51.6), array(167.5, 59.0), array(159.5, 49.2), array(157.0, 63.0), array(155.8, 53.6), array(170.0, 59.0), array(159.1, 47.6), array(166.0, 69.8), array(176.2, 66.8), array(160.2, 75.2), array(172.5, 55.2), array(170.9, 54.2), array(172.9, 62.5), array(153.4, 42.0), array(160.0, 50.0), array(147.2, 49.8), array(168.2, 49.2), array(175.0, 73.2), array(157.0, 47.8), array(167.6, 68.8), array(159.5, 50.6), array(175.0, 82.5), array(166.8, 57.2), array(176.5, 87.8), array(170.2, 72.8), array(174.0, 54.5), array(173.0, 59.8), array(179.9, 67.3), array(170.5, 67.8), array(160.0, 47.0), array(154.4, 46.2), array(162.0, 55.0), array(176.5, 83.0), array(160.0, 54.4), array(152.0, 45.8), array(162.1, 53.6), array(170.0, 73.2), array(160.2, 52.1), array(161.3, 67.9), array(166.4, 56.6), array(168.9, 62.3), array(163.8, 58.5), array(167.6, 54.5), array(160.0, 50.2), array(161.3, 60.3), array(167.6, 58.3), array(165.1, 56.2), array(160.0, 50.2), array(170.0, 72.9), array(157.5, 59.8), array(167.6, 61.0), array(160.7, 69.1), array(163.2, 55.9), array(152.4, 46.5), array(157.5, 54.3), array(168.3, 54.8), array(180.3, 60.7), array(165.5, 60.0), array(165.0, 62.0), array(164.5, 60.3), array(156.0, 52.7), array(160.0, 74.3), array(163.0, 62.0), array(165.7, 73.1), array(161.0, 80.0), array(162.0, 54.7), array(166.0, 53.2), array(174.0, 75.7), array(172.7, 61.1), array(167.6, 55.7), array(151.1, 48.7), array(164.5, 52.3), array(163.5, 50.0), array(152.0, 59.3), array(169.0, 62.5), array(164.0, 55.7), array(161.2, 54.8), array(155.0, 45.9), array(170.0, 70.6), array(176.2, 67.2), array(170.0, 69.4), array(162.5, 58.2), array(170.3, 64.8), array(164.1, 71.6), array(169.5, 52.8), array(163.2, 59.8), array(154.5, 49.0), array(159.8, 50.0), array(173.2, 69.2), array(170.0, 55.9), array(161.4, 63.4), array(169.0, 58.2), array(166.2, 58.6), array(159.4, 45.7), array(162.5, 52.2), array(159.0, 48.6), array(162.8, 57.8), array(159.0, 55.6), array(179.8, 66.8), array(162.9, 59.4), array(161.0, 53.6), array(151.1, 73.2), array(168.2, 53.4), array(168.9, 69.0), array(173.2, 58.4), array(171.8, 56.2), array(178.0, 70.6), array(164.3, 59.8), array(163.0, 72.0), array(168.5, 65.2), array(166.8, 56.6), array(172.7, 105.2), array(163.5, 51.8), array(169.4, 63.4), array(167.8, 59.0), array(159.5, 47.6), array(167.6, 63.0), array(161.2, 55.2), array(160.0, 45.0), array(163.2, 54.0), array(162.2, 50.2), array(161.3, 60.2), array(149.5, 44.8), array(157.5, 58.8), array(163.2, 56.4), array(172.7, 62.0), array(155.0, 49.2), array(156.5, 67.2), array(164.0, 53.8), array(160.9, 54.4), array(162.8, 58.0), array(167.0, 59.8), array(160.0, 54.8), array(160.0, 43.2), array(168.9, 60.5), array(158.2, 46.4), array(156.0, 64.4), array(160.0, 48.8), array(167.1, 62.2), array(158.0, 55.5), array(167.6, 57.8), array(156.0, 54.6), array(162.1, 59.2), array(173.4, 52.7), array(159.8, 53.2), array(170.5, 64.5), array(159.2, 51.8), array(157.5, 56.0), array(161.3, 63.6), array(162.6, 63.2), array(160.0, 59.5), array(168.9, 56.8), array(165.1, 64.1), array(162.6, 50.0), array(165.1, 72.3), array(166.4, 55.0), array(160.0, 55.9), array(152.4, 60.4), array(170.2, 69.1), array(162.6, 84.5), array(170.2, 55.9), array(158.8, 55.5), array(172.7, 69.5), array(167.6, 76.4), array(162.6, 61.4), array(167.6, 65.9), array(156.2, 58.6), array(175.2, 66.8), array(172.1, 56.6), array(162.6, 58.6), array(160.0, 55.9), array(165.1, 59.1), array(182.9, 81.8), array(166.4, 70.7), array(165.1, 56.8), array(177.8, 60.0), array(165.1, 58.2), array(175.3, 72.7), array(154.9, 54.1), array(158.8, 49.1), array(172.7, 75.9), array(168.9, 55.0), array(161.3, 57.3), array(167.6, 55.0), array(165.1, 65.5), array(175.3, 65.5), array(157.5, 48.6), array(163.8, 58.6), array(167.6, 63.6), array(165.1, 55.2), array(165.1, 62.7), array(168.9, 56.6), array(162.6, 53.9), array(164.5, 63.2), array(176.5, 73.6), array(168.9, 62.0), array(175.3, 63.6), array(159.4, 53.2), array(160.0, 53.4), array(170.2, 55.0), array(162.6, 70.5), array(167.6, 54.5), array(162.6, 54.5), array(160.7, 55.9), array(160.0, 59.0), array(157.5, 63.6), array(162.6, 54.5), array(152.4, 47.3), array(170.2, 67.7), array(165.1, 80.9), array(172.7, 70.5), array(165.1, 60.9), array(170.2, 63.6), array(170.2, 54.5), array(170.2, 59.1), array(161.3, 70.5), array(167.6, 52.7), array(167.6, 62.7), array(165.1, 86.3), array(162.6, 66.4), array(152.4, 67.3), array(168.9, 63.0), array(170.2, 73.6), array(175.2, 62.3), array(175.2, 57.7), array(160.0, 55.4), array(165.1, 104.1), array(174.0, 55.5), array(170.2, 77.3), array(160.0, 80.5), array(167.6, 64.5), array(167.6, 72.3), array(167.6, 61.4), array(154.9, 58.2), array(162.6, 81.8), array(175.3, 63.6), array(171.4, 53.4), array(157.5, 54.5), array(165.1, 53.6), array(160.0, 60.0), array(174.0, 73.6), array(162.6, 61.4), array(174.0, 55.5), array(162.6, 63.6), array(161.3, 60.9), array(156.2, 60.0), array(149.9, 46.8), array(169.5, 57.3), array(160.0, 64.1), array(175.3, 63.6), array(169.5, 67.3), array(160.0, 75.5), array(172.7, 68.2), array(162.6, 61.4), array(157.5, 76.8), array(176.5, 71.8), array(164.4, 55.5), array(160.7, 48.6), array(174.0, 66.4), array(163.8, 67.3) )) ->setSeriesOption('Female', array( "color"=> 'rgba(223, 83, 83, .5)' )) ->addSeries('Male', array( array(174.0, 65.6), array(175.3, 71.8), array(193.5, 80.7), array(186.5, 72.6), array(187.2, 78.8), array(181.5, 74.8), array(184.0, 86.4), array(184.5, 78.4), array(175.0, 62.0), array(184.0, 81.6), array(180.0, 76.6), array(177.8, 83.6), array(192.0, 90.0), array(176.0, 74.6), array(174.0, 71.0), array(184.0, 79.6), array(192.7, 93.8), array(171.5, 70.0), array(173.0, 72.4), array(176.0, 85.9), array(176.0, 78.8), array(180.5, 77.8), array(172.7, 66.2), array(176.0, 86.4), array(173.5, 81.8), array(178.0, 89.6), array(180.3, 82.8), array(180.3, 76.4), array(164.5, 63.2), array(173.0, 60.9), array(183.5, 74.8), array(175.5, 70.0), array(188.0, 72.4), array(189.2, 84.1), array(172.8, 69.1), array(170.0, 59.5), array(182.0, 67.2), array(170.0, 61.3), array(177.8, 68.6), array(184.2, 80.1), array(186.7, 87.8), array(171.4, 84.7), array(172.7, 73.4), array(175.3, 72.1), array(180.3, 82.6), array(182.9, 88.7), array(188.0, 84.1), array(177.2, 94.1), array(172.1, 74.9), array(167.0, 59.1), array(169.5, 75.6), array(174.0, 86.2), array(172.7, 75.3), array(182.2, 87.1), array(164.1, 55.2), array(163.0, 57.0), array(171.5, 61.4), array(184.2, 76.8), array(174.0, 86.8), array(174.0, 72.2), array(177.0, 71.6), array(186.0, 84.8), array(167.0, 68.2), array(171.8, 66.1), array(182.0, 72.0), array(167.0, 64.6), array(177.8, 74.8), array(164.5, 70.0), array(192.0, 101.6), array(175.5, 63.2), array(171.2, 79.1), array(181.6, 78.9), array(167.4, 67.7), array(181.1, 66.0), array(177.0, 68.2), array(174.5, 63.9), array(177.5, 72.0), array(170.5, 56.8), array(182.4, 74.5), array(197.1, 90.9), array(180.1, 93.0), array(175.5, 80.9), array(180.6, 72.7), array(184.4, 68.0), array(175.5, 70.9), array(180.6, 72.5), array(177.0, 72.5), array(177.1, 83.4), array(181.6, 75.5), array(176.5, 73.0), array(175.0, 70.2), array(174.0, 73.4), array(165.1, 70.5), array(177.0, 68.9), array(192.0, 102.3), array(176.5, 68.4), array(169.4, 65.9), array(182.1, 75.7), array(179.8, 84.5), array(175.3, 87.7), array(184.9, 86.4), array(177.3, 73.2), array(167.4, 53.9), array(178.1, 72.0), array(168.9, 55.5), array(157.2, 58.4), array(180.3, 83.2), array(170.2, 72.7), array(177.8, 64.1), array(172.7, 72.3), array(165.1, 65.0), array(186.7, 86.4), array(165.1, 65.0), array(174.0, 88.6), array(175.3, 84.1), array(185.4, 66.8), array(177.8, 75.5), array(180.3, 93.2), array(180.3, 82.7), array(177.8, 58.0), array(177.8, 79.5), array(177.8, 78.6), array(177.8, 71.8), array(177.8, 116.4), array(163.8, 72.2), array(188.0, 83.6), array(198.1, 85.5), array(175.3, 90.9), array(166.4, 85.9), array(190.5, 89.1), array(166.4, 75.0), array(177.8, 77.7), array(179.7, 86.4), array(172.7, 90.9), array(190.5, 73.6), array(185.4, 76.4), array(168.9, 69.1), array(167.6, 84.5), array(175.3, 64.5), array(170.2, 69.1), array(190.5, 108.6), array(177.8, 86.4), array(190.5, 80.9), array(177.8, 87.7), array(184.2, 94.5), array(176.5, 80.2), array(177.8, 72.0), array(180.3, 71.4), array(171.4, 72.7), array(172.7, 84.1), array(172.7, 76.8), array(177.8, 63.6), array(177.8, 80.9), array(182.9, 80.9), array(170.2, 85.5), array(167.6, 68.6), array(175.3, 67.7), array(165.1, 66.4), array(185.4, 102.3), array(181.6, 70.5), array(172.7, 95.9), array(190.5, 84.1), array(179.1, 87.3), array(175.3, 71.8), array(170.2, 65.9), array(193.0, 95.9), array(171.4, 91.4), array(177.8, 81.8), array(177.8, 96.8), array(167.6, 69.1), array(167.6, 82.7), array(180.3, 75.5), array(182.9, 79.5), array(176.5, 73.6), array(186.7, 91.8), array(188.0, 84.1), array(188.0, 85.9), array(177.8, 81.8), array(174.0, 82.5), array(177.8, 80.5), array(171.4, 70.0), array(185.4, 81.8), array(185.4, 84.1), array(188.0, 90.5), array(188.0, 91.4), array(182.9, 89.1), array(176.5, 85.0), array(175.3, 69.1), array(175.3, 73.6), array(188.0, 80.5), array(188.0, 82.7), array(175.3, 86.4), array(170.5, 67.7), array(179.1, 92.7), array(177.8, 93.6), array(175.3, 70.9), array(182.9, 75.0), array(170.8, 93.2), array(188.0, 93.2), array(180.3, 77.7), array(177.8, 61.4), array(185.4, 94.1), array(168.9, 75.0), array(185.4, 83.6), array(180.3, 85.5), array(174.0, 73.9), array(167.6, 66.8), array(182.9, 87.3), array(160.0, 72.3), array(180.3, 88.6), array(167.6, 75.5), array(186.7, 101.4), array(175.3, 91.1), array(175.3, 67.3), array(175.9, 77.7), array(175.3, 81.8), array(179.1, 75.5), array(181.6, 84.5), array(177.8, 76.6), array(182.9, 85.0), array(177.8, 102.5), array(184.2, 77.3), array(179.1, 71.8), array(176.5, 87.9), array(188.0, 94.3), array(174.0, 70.9), array(167.6, 64.5), array(170.2, 77.3), array(167.6, 72.3), array(188.0, 87.3), array(174.0, 80.0), array(176.5, 82.3), array(180.3, 73.6), array(167.6, 74.1), array(188.0, 85.9), array(180.3, 73.2), array(167.6, 76.3), array(183.0, 65.9), array(183.0, 90.9), array(179.1, 89.1), array(170.2, 62.3), array(177.8, 82.7), array(179.1, 79.1), array(190.5, 98.2), array(177.8, 84.1), array(180.3, 83.2), array(180.3, 83.2) )) ->setSeriesOption('Male', array( "color"=> 'rgba(119, 152, 191, .5)' )); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/skatter/chart.php
PHP
gpl2
12,812
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/skatter/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; //require_once ABSPATH."php/jqGridPdo.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); //$conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD); // Tell the db that we use utf-8 //jqGridDB::query($conn,"SET NAMES utf8"); $chart = new jqChart(); $chart->setChartOptions(array("defaultSeriesType"=>"line","marginRight"=>130,"marginBottom"=>25)) ->setTitle(array('text'=>'Monthly Average Temperature',"x"=>-20)) ->setSubtitle(array("text"=>"Source: WorldClimate.com","x"=>-20)) ->setxAxis(array("categories"=>array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'))) ->setyAxis(array("title"=>array("text"=>"Temperature (°C)"))) ->setTooltip(array("formatter"=>"function(){return '<b>'+ this.series.name +'</b><br/>'+this.x +': '+ this.y +' (°C)';}")) ->setLegend(array( "layout"=>"vertical","align"=>"right","verticalAlign"=>'top',"x"=>-10,"y"=>100,"borderWidth"=>0)) ->addSeries('Tokyo', array(7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6)) ->addSeries('New York', array(-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5)) ->addSeries('Berlin', array(-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0)) ->addSeries('London', array(3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8)); echo $chart->renderChart('',true,700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/basic/chart.php
PHP
gpl2
1,440
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/basic/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqGridPdo.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); $conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD); // Tell the db that we use utf-8 jqGridDB::query($conn,"SET NAMES utf8"); $chart = new jqChart( $conn ); $chart->setChartOptions(array("defaultSeriesType"=>"bar")) ->setTitle(array('text'=>'Freight 1997',"x"=>-20)) ->setyAxis(array("title"=>array("text"=>"Freight"))) ->setTooltip(array("formatter"=>"function(){return '<b>'+ this.series.name +'</b><br/>'+this.x +': '+ this.y;}")) ->addSeries('Blauer See Delikatessen', "SELECT SUM(Freight) FROM orders WHERE CustomerID =? AND OrderDate BETWEEN '1997-01-01' AND '1997-12-31' ",array('BERGS')) ->addSeries('White Clover Markets', "SELECT SUM(Freight) FROM orders WHERE CustomerID =? AND OrderDate BETWEEN '1997-01-01' AND '1997-12-31'",array('WHITC')); echo $chart->renderChart('',true,700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/sqlbar/chart.php
PHP
gpl2
999
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/sqlbar/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"areaspline" )) ->setTitle(array('text'=>'Average fruit consumption during one week')) ->setLegend(array( "layout"=> 'vertical', "align"=> 'right', "verticalAlign"=> 'top', "x"=> 150, "y"=> 100, "floating"=> true, "borderWidth"=> 1, "backgroundColor"=> '#FFFFFF' )) ->setxAxis(array( "categories"=> array('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'), "plotBands"=>array( array( // mark weekend "from"=>4.5, "to"=>6.5, "color"=>'rgba(68, 170, 213, .2)' ) ) )) ->setyAxis(array( "title"=>array("text"=> 'Fruit units') )) ->setTooltip(array( "formatter"=>"function(){return this.x +': '+ this.y+' units';}" )) ->setPlotOptions(array( "areaspline"=>array( "fillOpacity"=> 0.5 ) )) ->addSeries('Jhon', array(3, 4, 3, 5, 4, 10, 12)) ->addSeries('Jane', array(1, 3, 4, 3, 3, 5, 4)); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/areaspline/chart.php
PHP
gpl2
1,094
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/areaspline/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; //require_once ABSPATH."php/jqGridPdo.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); //$conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD); // Tell the db that we use utf-8 //jqGridDB::query($conn,"SET NAMES utf8"); $chart = new jqChart(); $chart->setChartOptions(array("defaultSeriesType"=>"spline")) ->setTitle(array('text'=>'Monthly Average Temperature')) ->setSubtitle(array("text"=>"Source: WorldClimate.com")) ->setxAxis(array( "categories"=>array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec') )) ->setyAxis(array( "title"=>array("text"=>"Temperature"), "labels"=>array( "formatter"=> "js:function() { return this.value + 'C'; }" ) )) ->setTooltip(array( "crosshairs"=>true, "shared"=> true )) ->setPlotOptions(array( "spline"=>array("marker"=>array( "lineColor"=> "#666666", "radius"=> 4, "lineWidth"=> 1 )) )) ->addSeries('Tokyo', array( 7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2,array("y"=>26.5, "marker"=>array("symbol"=>'url(sun.png)')),23.3, 18.3, 13.9, 9.6 )) ->setSeriesOption('Tokyo',array( "marker"=>array("symbol"=>'square') )) ->addSeries('London', array( array("y"=>3.9, "marker"=>array("symbol"=>'url(snow.png)')),4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8 )) ->setSeriesOption('London',array( "marker"=>array("symbol"=>'diamond') )); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/splinesymbol/chart.php
PHP
gpl2
1,523
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/splinesymbol/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"column" )) ->setTitle(array('text'=>'Monthly Average Rainfall')) ->setSubtitle(array("text"=>"Source: WorldClimate.com")) ->setxAxis(array("categories"=>array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'))) ->setyAxis(array( "min"=>0, "title"=>array("text"=>"Rainfall (mm)") )) ->setLegend(array( "layout"=>"vertical", "backgroundColor"=>'#FFFFFF', "align"=>"left", "verticalAlign"=>'top', "x"=>100, "y"=>70, "floating"=>true, "shadow"=>true )) ->setTooltip(array("formatter"=>"function(){return this.x +': '+ this.y +' mm';}")) ->setPlotOptions(array( "column"=> array( "pointPadding"=> 0.2, "borderWidth"=> 0 ) )) ->addSeries('Tokyo', array(49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4)) ->addSeries('New York', array(83.6, 78.8, 98.5, 93.4, 106.0, 84.5, 105.0, 104.3, 91.2, 83.5, 106.6, 92.3)) ->addSeries('London', array(83.6, 78.8, 98.5, 93.4, 106.0, 84.5, 105.0, 104.3, 91.2, 83.5, 106.6, 92.3)) ->addSeries('Berlin', array(42.4, 33.2, 34.5, 39.7, 52.6, 75.5, 57.4, 60.4, 47.6, 39.1, 46.8, 51.1)); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columnbasic/chart.php
PHP
gpl2
1,379
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columnbasic/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"bar" )) ->setTitle(array('text'=>'Historic World Population by Region')) ->setSubtitle(array("text"=>'Source: Wikipedia.org')) ->setxAxis(array( "categories" => array('Africa', 'America', 'Asia', 'Europe', 'Oceania'), "title"=>array("text"=>null), )) ->setyAxis(array( "min"=>0, "title"=>array("text"=>'Population (millions)'), "align"=> 'high' )) ->setTooltip(array( "formatter"=>"function(){return this.series.name +': '+ this.y +' millions';}" )) ->setPlotOptions(array( "bar"=>array( "dataLabels"=>array( "states"=>array("enabled"=>true) ) ) )) ->setLegend(array( "layout"=> 'vertical', "align"=> 'right', "verticalAlign"=> 'top', "x"=> -100, "y"=> 100, "floating"=> true, "borderWidth"=> 1, "backgroundColor"=> '#FFFFFF', "shadow"=>true )) ->addSeries('Year 1800', array(107, 31, 635, 203, 2)) ->addSeries('Year 1900', array(133, 156, 947, 408, 6)) ->addSeries('Year 2008', array(973, 914, 4054, 732, 34)); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/barbasic/chart.php
PHP
gpl2
1,192
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/barbasic/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"column" )) ->setTitle(array('text'=>'Total fruit consumtion, grouped by gender')) ->setxAxis(array( "categories"=>array('Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas') )) ->setyAxis(array( "min"=>0, "allowDecimals"=> false, "title"=>array("text"=>"Number of fruits") )) ->setTooltip(array( "formatter"=>"function(){return '<b>'+ this.x +'</b><br/>'+this.series.name +': '+ this.y +'<br/>'+'Total: '+ this.point.stackTotal;}" )) ->setPlotOptions(array( "column"=>array("stacking"=>"normal") )) ->addSeries('Jhon', array(5, 3, 4, 7, 2)) ->setSeriesOption('Jhon', 'stack', 'male') ->addSeries('Joe', array( 3, 4, 4, 2, 5)) ->setSeriesOption('Joe', 'stack', 'male') ->addSeries('Jane', array(2, 2, 3, 2, 1)) ->setSeriesOption('Jane', 'stack', 'female') ->addSeries('Janet', array(3, 0, 4, 4, 3)) ->setSeriesOption('Janet', 'stack', 'female'); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columnstackgroup/chart.php
PHP
gpl2
1,104
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columnstackgroup/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"area" )) ->setTitle(array('text'=>'Area chart with negative values')) ->setxAxis(array( "categories"=>array('Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas') )) ->setTooltip(array( "formatter"=>"function(){return this.series.name +': '+ this.y +'';}" )) ->addSeries('Jhon', array(5, 3, 4, 7, 2)) ->addSeries('Jane', array(2, -2, -3, 2, 1)) ->addSeries('Joe', array( 3, 4, 4, -2, 5)); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/areanegative/chart.php
PHP
gpl2
643
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/areanegative/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; //require_once ABSPATH."php/jqGridPdo.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); //$conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD); // get the theme $theme = isset ($_GET['theme']) ? $_GET['theme'] : ""; $dateformat = 'l, M j, Y'; //Let get first the data from csv $newisits = array(); $allvisits = array(); $handle = fopen("analytics.csv", "r"); if($handle) { while (($data = fgetcsv($handle, 3200, ",")) !== FALSE) { //$date = DateTime::createFromFormat($dateformat, $data[0]); $d = strtotime($data[0])*1000; $allvisits[] = array($d, (int)str_replace(",","",$data[1])); $newisits[] = array($d, (int)str_replace(",","",$data[2])); } } fclose($handle); // create the chart instance $chart = new jqChart(); $chart->setChartOptions(array("defaultSeriesType"=>"line")) ->setTitle(array('text'=>'Daily visits at www.example.com')) ->setSubtitle(array("text"=>"Source: Google Analytics")) // set xAxis to be datetime ->setxAxis(array( "type"=>"datetime", "tickInterval"=> 7 * 24 * 3600 * 1000, "tickWidth"=> 0, "gridLineWidth"=>1, "labels"=>array( "align"=> 'left', "x"=> 3, "y"=>-3 ) )) // lef and right Y axis ->setyAxis(array( // left y axis array( "title"=>array("text"=>null), "labels"=>array( "align"=>"left", "x"=>3, "y"=>16, "formatter"=>"js:function(){return Highcharts.numberFormat(this.value, 0);}" ), "showFirstLabel"=>false ), // right y axis array( "linkedTo"=>0, "gridLineWidth"=>0, "opposite"=>true, "title"=>array("text"=>null), "labels"=>array( "align"=>"right", "x"=>-3, "y"=>16, "formatter"=>"js:function(){return Highcharts.numberFormat(this.value, 0);}" ), "showFirstLabel"=>false ), )) ->setTooltip(array( "shared"=>true, "crosshairs"=>true )) ->setLegend(array( "align"=>"left", "verticalAlign"=>'top', "y"=>50, "borderWidth"=>0, "floating"=>true )) // Here wi attach a click function when cklic on series point ->setPlotOptions(array( "series"=>array( "cursor"=>"pointer", "point"=>array( "events"=>array( "click"=>"js:function(event){ // this refers to entry object again with data jQuery.jgrid.info_dialog(this.series.name, Highcharts.dateFormat('%A, %b %e, %Y', this.x) +':<br/> '+ this.y +' visits', 'Close',{buttonalign:'right',top:this.pageY, left:this.pageX, modal:false, overlay:0}); }" ) ), "marker"=>array("lineWidth"=>1) ) )) // fil the data ->addSeries('All Visits',$allvisits) ->setSeriesOption('All Visits', array( "lineWidth"=>4, "marker"=>array( "radius"=>4 ) )) ->setTheme($theme) ->addSeries('New Visitors', $newisits); echo $chart->renderChart('',true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/clicklines/chart.php
PHP
gpl2
2,793
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/ui.jqgrid.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script type="text/javascript"> jQuery.jgrid = {}; </script> <script src="../../../js/grid.common.js" type="text/javascript"></script> <script src="../../../js/jqModal.js" type="text/javascript"></script> <script src="../../../js/jqDnR.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/clicklines/default.php
PHP
gpl2
1,360
/** * Dark blue theme for Highcharts JS * @author Torstein Hønsi */ Highcharts.theme = { colors: ["#DDDF0D", "#55BF3B", "#DF5353", "#7798BF", "#aaeeee", "#ff0066", "#eeaaee", "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"], chart: { backgroundColor: { linearGradient: [0, 0, 250, 500], stops: [ [0, 'rgb(48, 48, 96)'], [1, 'rgb(0, 0, 0)'] ] }, borderColor: '#000000', borderWidth: 2, className: 'dark-container', plotBackgroundColor: 'rgba(255, 255, 255, .1)', plotBorderColor: '#CCCCCC', plotBorderWidth: 1 }, title: { style: { color: '#C0C0C0', font: 'bold 16px "Trebuchet MS", Verdana, sans-serif' } }, subtitle: { style: { color: '#666666', font: 'bold 12px "Trebuchet MS", Verdana, sans-serif' } }, xAxis: { gridLineColor: '#333333', gridLineWidth: 1, labels: { style: { color: '#A0A0A0' } }, lineColor: '#A0A0A0', tickColor: '#A0A0A0', title: { style: { color: '#CCC', fontWeight: 'bold', fontSize: '12px', fontFamily: 'Trebuchet MS, Verdana, sans-serif' } } }, yAxis: { gridLineColor: '#333333', labels: { style: { color: '#A0A0A0' } }, lineColor: '#A0A0A0', minorTickInterval: null, tickColor: '#A0A0A0', tickWidth: 1, title: { style: { color: '#CCC', fontWeight: 'bold', fontSize: '12px', fontFamily: 'Trebuchet MS, Verdana, sans-serif' } } }, legend: { itemStyle: { font: '9pt Trebuchet MS, Verdana, sans-serif', color: '#A0A0A0' } }, tooltip: { backgroundColor: 'rgba(0, 0, 0, 0.75)', style: { color: '#F0F0F0' } }, toolbar: { itemStyle: { color: 'silver' } }, plotOptions: { line: { dataLabels: { color: '#CCC' }, marker: { lineColor: '#333' } }, spline: { marker: { lineColor: '#333' } }, scatter: { marker: { lineColor: '#333' } } }, legend: { itemStyle: { color: '#CCC' }, itemHoverStyle: { color: '#FFF' }, itemHiddenStyle: { color: '#444' } }, credits: { style: { color: '#666' } }, labels: { style: { color: '#CCC' } }, navigation: { buttonOptions: { backgroundColor: { linearGradient: [0, 0, 0, 20], stops: [ [0.4, '#606060'], [0.6, '#333333'] ] }, borderColor: '#000000', symbolStroke: '#C0C0C0', hoverSymbolStroke: '#FFFFFF' } }, exporting: { buttons: { exportButton: { symbolFill: '#55BE3B' }, printButton: { symbolFill: '#7797BE' } } }, // special colors for some of the legendBackgroundColor: 'rgba(0, 0, 0, 0.5)', legendBackgroundColorSolid: 'rgb(35, 35, 70)', dataLabelsColor: '#444', textColor: '#C0C0C0', maskColor: 'rgba(255,255,255,0.3)' }; // Apply the theme var highchartsOptions = Highcharts.setOptions(Highcharts.theme);
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/clicklines/dark-blue.js
JavaScript
gpl2
2,842
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; //require_once ABSPATH."php/jqGridPdo.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); //$conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD); // Tell the db that we use utf-8 //jqGridDB::query($conn,"SET NAMES utf8"); $plotbands = array( array("from"=>0.3,"to"=>1.5,"color"=>'rgba(68, 170, 213, 0.1)', "label"=>array("text"=>'Light air',"style"=>array("color"=>'#606060'))), array("from"=>1.5,"to"=>3.3,"color"=>'rgba(0, 0, 0, 0)', "label"=>array("text"=>'Light breeze',"style"=>array("color"=>'#606060'))), array("from"=>3.3,"to"=>5.5,"color"=>'rgba(68, 170, 213, 0.1)', "label"=>array("text"=>'Gentle breeze',"style"=>array("color"=>'#606060'))), array("from"=>5.5,"to"=>8,"color"=>'rgba(0, 0, 0, 0)', "label"=>array("text"=>'Moderate breeze',"style"=>array("color"=>'#606060'))), array("from"=>8,"to"=>11,"color"=>'rgba(68, 170, 213, 0.1)', "label"=>array("text"=>'Fresh breeze',"style"=>array("color"=>'#606060'))), array("from"=>11,"to"=>14,"color"=>'rgba(0, 0, 0, 0)', "label"=>array("text"=>'Strong breeze',"style"=>array("color"=>'#606060'))), array("from"=>14,"to"=>15,"color"=>'rgba(68, 170, 213, 0.1)', "label"=>array("text"=>'High wind',"style"=>array("color"=>'#606060'))) ); $chart = new jqChart(); $chart->setChartOptions(array("defaultSeriesType"=>"spline")) ->setTitle(array('text'=>'Wind speed during two days')) ->setSubtitle(array("text"=>"October 6th and 7th 2009 at two locations in Vik i Sogn, Norway")) ->setxAxis(array( "type"=>"datetime" )) ->setyAxis(array( "title"=>array("text"=>'Wind speed (m/s)'), "min"=>0, "minorGridLineWidth"=>0, "gridLineWidth"=>0, "alternateGridColor"=>null, "plotBands"=>$plotbands )) ->setTooltip(array( "formatter"=>"function(){return ''+Highcharts.dateFormat('%e. %b %Y, %H:00', this.x) +': '+ this.y +' m/s';}" )) ->setPlotOptions(array( "spline"=>array( "lineWidth"=> 4, "states"=>array("hover"=> array ("lineWidth"=>5)), "marker"=>array( "enabled"=> true, "states"=>array("hover"=> array ("lineWidth"=>1,"radius"=>5,"enabled"=>true, "symbol"=>"circle")) ), "pointInterval"=> 3600000, //one hour "pointStart"=> 'js:Date.UTC(2009, 9, 6, 0, 0, 0)' ) )) ->addSeries('Hestavollane', array( 4.3, 5.1, 4.3, 5.2, 5.4, 4.7, 3.5, 4.1, 5.6, 7.4, 6.9, 7.1, 7.9, 7.9, 7.5, 6.7, 7.7, 7.7, 7.4, 7.0, 7.1, 5.8, 5.9, 7.4, 8.2, 8.5, 9.4, 8.1, 10.9, 10.4, 10.9, 12.4, 12.1, 9.5, 7.5, 7.1, 7.5, 8.1, 6.8, 3.4, 2.1, 1.9, 2.8, 2.9, 1.3, 4.4, 4.2,3.0, 3.0 )) ->addSeries('Voll', array( 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.3, 0.0, 0.0, 0.4, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 1.2, 1.7, 0.7, 2.9, 4.1, 2.6, 3.7, 3.9, 1.7, 2.3, 3.0, 3.3, 4.8, 5.0, 4.8, 5.0, 3.2, 2.0, 0.9, 0.4, 0.3, 0.5, 0.4 )); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/splineplot/chart.php
PHP
gpl2
2,867
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/splineplot/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"column" )) ->setTitle(array('text'=>'Column chart with negative values')) ->setxAxis(array( "categories"=>array('Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas') )) ->setTooltip(array( "formatter"=>"function(){return this.series.name +': '+ this.y +'';}" )) ->addSeries('Jhon', array(5, 3, 4, 7, 2)) ->addSeries('Jane', array(2, -2, -3, 2, 1)) ->addSeries('Joe', array( 3, 4, 4, -2, 5)); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columnegative/chart.php
PHP
gpl2
647
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/columnegative/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; //require_once ABSPATH."php/jqGridPdo.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); $clickevent = <<< LOAD function(e) { // find the clicked values and the series var x = e.xAxis[0].value, y = e.yAxis[0].value, series = this.series[0]; // Add it series.addPoint([x, y]); } LOAD; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"scatter", "margin"=>array(70, 50, 60, 80) )) ->setChartEvent('click', $clickevent) ->setTitle(array('text'=>'User supplied data')) ->setSubtitle(array('text'=>'Click the plot area to add a point. Click a point to remove it.')) ->setxAxis(array( "minPadding"=>0.2, "maxPadding"=>0.2, "maxZoom"=>60 )) ->setyAxis(array( "title"=>array("text"=>"Value"), "minPadding"=>0.2, "maxPadding"=>0.2, "maxZoom"=>60, "plotLines"=>array(array( "value"=>0, "width"=>1, "color"=>'#808080' )) )) ->setPlotOptions(array( "series"=>array( "lineWidth"=>1, "point"=>array( "events"=>array( "click"=>"js:function(){if (this.series.data.length > 1) this.remove();}" ) ) ) )) ->setLegend(array( "enabled"=>false )) ->setExporting('enabled', false) ->addSeries('data', array( arraY(20, 20), array(80, 80) )); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/dynnewpoint/chart.php
PHP
gpl2
1,352
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/dynnewpoint/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; //require_once ABSPATH."php/jqGridPdo.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); $tooltip = <<<TOOL function() { var s; if (this.point.name) { // the pie chart s = ''+ this.point.name +': '+ this.y +' fruits'; } else { s = ''+ this.x +': '+ this.y; } return s; } TOOL; $chart = new jqChart(); $chart->setTitle(array('text'=>'Combination chart')) ->setxAxis(array( "categories"=>array('Apples', 'Oranges', 'Pears', 'Bananas', 'Plums') )) ->setTooltip(array("formatter"=>$tooltip)) ->setLabels(array( "items"=>array(array( "html"=> 'Total fruit consumption', "style"=>array("left"=>"40px","top"=>"8px","color"=>"black") )) )) ->addSeries('Jane', array(3, 2, 1, 3, 4)) ->setSeriesOption('Jane','type','column') ->addSeries('John', array(2, 3, 5, 7, 6)) ->setSeriesOption('John','type','column') ->addSeries('Joe', array(4, 3, 3, 9, 0)) ->setSeriesOption('Joe','type','column') ->addSeries('Total consumption', array( array("name"=>"Jane", "y"=>13,'color'=>'#4572A7'), array("name"=>"John", "y"=>23,'color'=>'#AA4643'), array("name"=>"Joe", "y"=>19,'color'=>'#89A54E') )) ->setSeriesOption('Total consumption',array( "type"=>"pie", "center"=>array(100, 80), "size"=>100, "showInLegend" =>false, "dataLabels"=>array("enabled"=>false) )) ->addSeries('Average', array(3, 2.67, 3, 6.33, 3.33)) ->setSeriesOption('Average', 'type', 'spline'); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/combo/chart.php
PHP
gpl2
1,530
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/combo/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); $chart = new jqChart(); $chart->setTitle(array('text'=>'Scatter plot with regression line')) ->setxAxis(array( "min"=>-0.5, "max"=>5.5 )) ->setyAxis(array( "min"=>0 )) ->addSeries('Regression Line', array(array(0,1.11),array(5, 4.51))) ->setSeriesOption('Regression Line',array( 'type'=>'line', 'marker'=>array("enabled"=>false), 'states'=>array("hover"=>array("lineWidth"=>1)), 'enableMouseTracking'=>false )) ->addSeries('Observations', array(1, 1.5, 2.8, 3.5, 3.9, 4.2)) ->setSeriesOption('Observations',array( 'type'=>'scatter', 'marker'=>array("radius"=>4) )); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/combo-scatter/chart.php
PHP
gpl2
784
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/combo-scatter/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; ini_set("display_errors","1"); $chart = new jqChart(); $chart->setTitle(array('text'=>'Browser market shares at a specific website, 2010')) ->setTooltip(array("formatter"=>"function(){return '<b>'+ this.point.name +'</b>: '+ this.y +' %';}")) ->setPlotOptions(array( "pie"=> array( "allowPointSelect"=> true, "cursor"=> 'pointer', "dataLabels"=>array( "enabled"=>false ), "showInLegend"=> true ) )) ->addSeries('Browser share', array( array('Firefox', 45.0), array('IE', 26.8), array( "name"=> 'Chrome', "y"=> 12.8, "sliced"=> true, "selected"=> true ), array('Safari', 8.5), array('Opera', 6.2), array('Others', 0.7) )) ->setSeriesOption('Browser share', 'type','pie'); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/pielegend/chart.php
PHP
gpl2
962
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/pielegend/default.php
PHP
gpl2
972
<?php require_once '../../../jq-config.php'; require_once ABSPATH."php/jqUtils.php"; require_once ABSPATH."php/jqChart.php"; $chart = new jqChart(); $chart->setChartOptions(array( "defaultSeriesType"=>"bar" )) ->setTitle(array('text'=>'Stacked bar chart')) ->setxAxis(array( "categories"=>array('Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas') )) ->setyAxis(array( "min"=>0, "title"=>array("text"=>"Total fruit consumption") )) ->setLegend(array( "backgroundColor"=>'#FFFFFF', "reversed"=> true )) ->setTooltip(array( "formatter"=>"function(){return this.series.name +': '+ this.y +'';}" )) ->setPlotOptions(array( "series"=> array( "stacking"=> 'normal' ) )) ->addSeries('Jhon', array(5, 3, 4, 7, 2)) ->addSeries('Jane', array(2, 2, 3, 2, 1)) ->addSeries('Joe', array( 3, 4, 4, 2, 5)); echo $chart->renderChart('', true, 700, 350); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/barstacked/chart.php
PHP
gpl2
853
<?php require_once '../../../tabs.php'; ?> <!DOCTYPE html> <html> <head> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } #tags {z-index: 900} </style> <title>jqChart PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <script src="../../../js/jquery.js" type="text/javascript"></script> <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script> <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script> </head> <body> <div> <?php include ("chart.php");?> </div> <br/> <?php tabs(array("chart.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/chart/barstacked/default.php
PHP
gpl2
972
<?php require_once "../../php/jqUtils.php"; require_once "../../php/jqScheduler.php"; require_once "../../php/jqGridPdo.php"; require_once '../../jq-config.php'; ini_set("display_errors",1); $conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD); $conn->query("SET NAMES utf8"); $eventcal = new jqScheduler($conn); $eventcal->setLocale('en_GB'); $eventcal->setUrl('eventcal.php'); $eventcal->setUser(1); $eventcal->setUserNames(array('1'=>"Calender User 1",'2'=>"Calendar user 2") ); $eventcal->render(); ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/jqscheduler/eventcal.php
PHP
gpl2
497
<?php function tabs(array $files) { $tabshead = <<<HEAD1 <div id="tabs" style="font-size:75%"> <ul> <li><a href="#DescriptionContent"><span>Info</span></a></li> <li><a href="#HTMLContent"><span>HTML</span></a></li> <li><a href="#PHPCode"><span>PHP</span></a></li> </ul> <div id="DescriptionContent" style="font-size:1.1em !important"> HEAD1; echo $tabshead; // info file $filename = "info.txt"; $lines = file($filename); // Loop through our array, show HTML source as HTML source; and line numbers too. foreach ($lines as $line_num => $line) { echo $line . "<br />\n"; } // html content echo "</div>"; echo '<div id="HTMLContent" style="font-size:1.1em !important">'; $filename = "index.php"; highlight_file($filename); echo "</div>"; // php code echo '<div id="PHPCode" style= "font-size:1em !important">'; for($i=0;$i<count($files);$i++) { $filename = $files[$i]; echo '<span style="font-size:1.2em !important">'; echo "<b>".$filename."</b>.<br />\n"; if(strlen($filename)>0) { highlight_file($filename); } echo "<span>"; } echo "</div>"; // php code echo "</div>"; // tabs echo '<script type="text/javascript">'; echo '$("#tabs").tabs();'; echo '</script>'; $google = <<<GOOGLE <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); try { var pageTracker = _gat._getTracker("UA-5463047-4"); pageTracker._trackPageview(); } catch(err) {} </script> GOOGLE; echo $google; } ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/jqscheduler/tabs.php
PHP
gpl2
1,652
<?php session_start(); require_once 'tabs.php'; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text"> html, body { margin: 0; /* Remove body margin/padding */ padding: 0; overflow: hidden; /* Remove scroll bars on browser window */ font-size: 62.5%; } body { font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif"; } </style> <title>jqScheduler PHP Demo</title> <link rel="stylesheet" type="text/css" media="screen" href="../../themes/redmond/jquery-ui-1.8.2.custom.css" /> <link rel="stylesheet" type="text/css" media="screen" href="../../themes/jquery.ui.tooltip.css" /> <link rel="stylesheet" type="text/css" media="screen" href="../../themes/jqscheduler.css" /> <script src="../../js/jquery.js" type="text/javascript"></script> <script src="../../js/jquery-ui-custom.min" type="text/javascript"></script> <script src="../../js/jquery.jqScheduler.min.js" type="text/javascript"></script> </head> <body> <!-- <div id="calendar" style="height: 900px;margin: 0 auto;width:1000px;font-size: 0.8em;"></div> --> <?php require_once("eventcal.php");?> <br/> <?php tabs(array("eventcal.php"));?> </body> </html>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/examples/jqscheduler/index.php
PHP
gpl2
1,395
/* Document : calendar Created on : May 6, 2011, 6:59:53 PM Author : tony Description: Purpose of the stylesheet follows. .ui-datepicker {display: none;} */ /*datepicker fix for inline calendar */ #ui-datepicker-div { display:none; } /* datepicker tooltip fix when adding content dynamically */ .ui-tooltip { font-size: 12px; } .ui-datepicker { font-size: 12px; } /* Template content */ .ui-input { padding : 4px 2px; } .calwrapper { width: 100%; height : 100%; margin: 0 auto; font-size: 12px; } .content-ui { padding-top: 7px; background-image: none; background-color: inherit; } .jquser { border: 0px none; margin-top :5px; margin-bottom: 5px; padding-left: 20px; } .jqleftpane { float: left; padding: 0 10px; font-size: 11px; } .jqdatepicker { font-size: 1em; } .jqcalendar { float: right; width: 81%; } .jqtoolbar { text-align: right; border: 0px none; padding : 4px 2px; } .jqevent { margin-right: 2.2em; display: none; } /* Buttons*/ .jq-button { outline: 0; margin:0 4px 0 0; padding: .4em 1em; text-decoration:none !important; cursor:pointer; position: relative; text-align: center; zoom: 1; } .jq-button .ui-icon { position: absolute; top: 50%; margin-top: -8px; left: 50%; margin-left: -8px; } a.jq-button { float:left; } /* remove extra button width in IE */ button.jq-button { width:auto; overflow:visible; } .jq-button-icon-left { padding-left: 2.1em; } .jq-button-icon-right { padding-right: 2.1em; } .jq-button-icon-left .ui-icon { right: auto; left: .2em; margin-left: 0; } .jq-button-icon-right .ui-icon { left: auto; right: .2em; margin-left: 0; } .jq-button-icon-solo { display:block; width:8px; text-indent: -9999px; } /* solo icon buttons must have block properties for the text-indent to work */ .jq-buttonset { float:left; } .jq-buttonset .jq-button { float: left; } .jq-buttonset-single .jq-button, .jq-buttonset-multi .jq-button { margin-right: -1px;} .jq-toolbar { padding: .1em; margin: 0; } .jq-toolbar .jq-buttonset { margin-right:1.5em; padding-left: 1px; } .jq-toolbar .jq-button { font-size: 1em; } /* Time picker */ .calendricalTimePopup { /* background: white; border: solid 1px #999999; */ width: 120px; height: 130px; overflow: auto; } .calendricalTimePopup ul { margin: 0; padding: 0; } .calendricalTimePopup ul li { list-style: none; margin: 0; } .calendricalTimePopup ul li a, .calendricalTimePopup ul li a:visited { text-indent: 10px; padding: 4px; display: block; color: black; text-decoration: none; } .calendricalTimePopup ul li a:hover, .calendricalTimePopup ul li.selected a { /*background: #ccccff; */ border: 0px none !important;} .calendricalEndTimePopup { width: 160px; } .ui-widget-content th.ui-event-cell { font-weight: bold; border-left: 0px none; border-top: 0px none; border-right: 0px none; padding: 10px; text-align: left ; vertical-align: top ; white-space: nowrap; } .ui-widget-content td.ui-event-time { border-left: 0px none; border-top: 0px none; border-right: 0px none; font-weight: normal; padding: 10px; text-align: left; vertical-align: top; white-space: nowrap; } .ui-widget-content td.ui-event-title { border-left: 0px none; border-top: 0px none; border-right: 0px none; font-weight: normal; padding: 10px; text-align: left; vertical-align: top; width: 80% ; } .ui-timepicker-div .ui-widget-header{ margin-bottom: 8px; } .ui-timepicker-div dl{ text-align: left; } .ui-timepicker-div dl dt{ height: 25px; } .ui-timepicker-div dl dd{ margin: -25px 0 10px 65px; } .ui-timepicker-div td { font-size: 90%; }
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/templates/calendar.css
CSS
gpl2
3,669
<div class="calwrapper ui-widget"> <div class="content-ui ui-state-default"> <div id="leftpane" class="jqleftpane"> <div class="custbutton jq-toolbar"> <div class="jq-buttonset jq-buttonset-multi"> <div class="jq-buttonset ui-helper-clearfix"> <a href="#" class="jq-button ui-state-default jq-button-icon-solo ui-corner-left" id="b_search_cal" title='[@b_search]' ><span class="ui-icon ui-icon-search"></span>[@b_search]</a> <a href="#" class="jq-button ui-state-default jq-button-icon-solo" id="b_user_change" title="[@b_user]"><span class="ui-icon ui-icon-calendar"></span> [@b_user]</a> <a href="#" class="jq-button ui-state-default jq-button-icon-solo" id="b_export_ical" title="[@b_export]"><span class="ui-icon ui-icon-extlink"></span> [@b_export]</a> <a href="#" class="jq-button ui-state-default jq-button-icon-solo ui-corner-right" id="b_print_cal" title="[@b_print]"><span class="ui-icon ui-icon-print"></span> [@b_print]</a> </div> </div> </div> <div id='[@dpid]' class="jqdatepicker"></div> <hr style="width:100%;margin-top:8px;" class='ui-widget-content'/> <div style="padding-bottom: 3px;margin-top:4px;" >[@currentcal]</div> <div id="cal_user" class="jquser ui-widget-content" >[@caluser]</div> </div> <div id='[@calid]' class="jqcalendar" style="height: auto"></div> <div id='[@eventid]' class="jqevent"> <form action=""> <table> <tr> <td> <label for="title"> [@title] </label>: </td> <td> <input class="ui-widget-content ui-corner-all ui-input" id="title" name="title" size="50"/> </td> </tr> <tr> <td> <label for="location">[@location]</label>: </td> <td> <input class="ui-widget-content ui-corner-all ui-input" id='location' name="location" size="50"/> </td> </tr> <tr> <td> <label for="categories">[@categories]</label>: </td> <td> <select id="categories" name="categories"> [@option_categories] </select> <label for="access">[@access]</label>: <select id="access" name="access"> [@option_access] </select> </td> </tr> <tr> <td colspan="2"> <div class="ui-widget-content ui-helper-clearfix" style="margin: 0.6em .0em;"></div> </td> </tr> <tr> <td>&nbsp;</td> <td> <input type="checkbox" class="ui-widget-content ui-corner-all" id="all_day" name="all_day" /> <label for="all_day" style="padding-bottom:3px;"> [@all_day] </label> </td> </tr> <tr> <td> <label for="start">[@start]</label>: </td> <td> <input class="ui-widget-content ui-corner-all ui-input" id="start" name="start" size="12" /> <input class="ui-widget-content ui-corner-all ui-input" id="starttime" name="starttime" size="8" /> </td> </tr> <tr> <td> <label for="end">[@end]</label>: </td> <td> <input class="ui-widget-content ui-corner-all ui-input" id="end" name="end" size="12" /> <input class="ui-widget-content ui-corner-all ui-input" id="endtime" name="endtime" size="8" /> </td> </tr> <tr> <td colspan="2"> <div class="ui-widget-content ui-helper-clearfix" style="margin: 0.6em 0em;"></div> </td> </tr> <tr> <td style="vertical-align: top;"> <label for="description">[@description]</label>: </td> <td> <textarea class="ui-widget-content ui-corner-all" id='description' name="description" rows="10" cols="46" ></textarea> </td> </tr> </table> </form> </div> <div style='clear:both'></div> <!-- <div id='toolbar' class="jqtoolbar ui-widget ui-state-default">ffff</div> --> <div id='caluser' class="jqevent" style="width:100%;text-align: center;"> <form> <label for="switchuser">[@label_user]</label>: <select id="switchuser" name="switchuser"> [@available_users] </select> </form> </div> <div id='search_cal' class="jqevent" style="width:100%;"></div> <!-- This is inserted in the calendar as view --> <div class="fc-view fc-view-search" style="position:relative;"> <div class="ui-widget-header fc-view-searchtitle" style="width:100%;text-align:center"> [@header_serach]</div> <div class="fc-view-input" style="height:50px;"> <table style="margin: 10px 10px;width:98%"><tr><td style="text-align:left"> <input type="text" size="40" maxlength="80" id="common_search" class ="ui-input" name="comon_search" /> <button class="jq-button ui-state-default ui-corner-all" id="b_common_search">[@b_search]</button> <button class="jq-button ui-state-default ui-corner-all" id="b_adv_search">[@b_adv_search]</button> </td> <td style="text-align:right;width:12%;padding-top:7px;">[@found_events] :&nbsp;&nbsp;</td><td class="fnd-results" style="width:5%;text-align:center;padding-top:7px;"></td></tr></table> </div> <div style="height:97%;overflow-x:hidden;" class="ui-widget-content"> <table id="search_table" style = "width:100%;table-layout:auto;"><tbody></tbody></table> </div> </div> </div> </div>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/templates/cal2.html
HTML
gpl2
5,003
<table width="100%" cellpadding="3" cellspacing="0" > <thead> <tr style="background-color: #dfeffc; color: #2e6e9e;"> <td align="center" style="border: 1px solid #5c9ccc;">[@calendar]</td> </tr> </thead> </table> <table width="100%" cellpadding="3" cellspacing="0" > <thead> <tr style="background-color: #dfeffc; color: #2e6e9e;"> <th width="10%" align="center" style="border: 1px solid #5c9ccc;">[@h_day]</th> <th width="10%" align="center" style="border: 1px solid #5c9ccc;">[@h_start]</th> <th width="10%" align="center" style="border: 1px solid #5c9ccc;">[@h_end]</th> <th width="10%" align="center" style="border: 1px solid #5c9ccc;">[@h_location]</th> <th width="10%" align="center" style="border: 1px solid #5c9ccc;">[@h_categories]</th> <th width="20%" align="center" style="border: 1px solid #5c9ccc;">[@h_title]</th> <th width="30%" align="center" style="border: 1px solid #5c9ccc;">[@h_description]</th> </tr> </thead> <tbody> [@rows] </tbody> </table>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/templates/print.html
HTML
gpl2
1,007
<div class="calwrapper ui-widget"> <div class="content-ui ui-state-default"> <div id="leftpane" class="jqleftpane"> <div class="custbutton jq-toolbar"> <div class="jq-buttonset jq-buttonset-multi"> <div class="jq-buttonset ui-helper-clearfix"> <a href="#" class="jq-button ui-state-default jq-button-icon-solo ui-corner-left" id="b_search_cal" title='[@b_search]' ><span class="ui-icon ui-icon-search"></span>[@b_search]</a> <a href="#" class="jq-button ui-state-default jq-button-icon-solo" id="b_user_change" title="[@b_user]"><span class="ui-icon ui-icon-calendar"></span> [@b_user]</a> <a href="#" class="jq-button ui-state-default jq-button-icon-solo" id="b_export_ical" title="[@b_export]"><span class="ui-icon ui-icon-extlink"></span> [@b_export]</a> <a href="#" class="jq-button ui-state-default jq-button-icon-solo ui-corner-right" id="b_print_cal" title="[@b_print]"><span class="ui-icon ui-icon-print"></span> [@b_print]</a> </div> </div> </div> <div id='[@dpid]' class="jqdatepicker"></div> <hr style="width:100%;margin-top:8px;" class='ui-widget-content'/> <div style="padding-bottom: 3px;margin-top:4px;" >[@currentcal]</div> <ul id="cal_user" class="jquser ui-widget-content" >[@caluser]</ul> </div> <div id='[@calid]' class="jqcalendar" style="height: auto"></div> <div id='[@eventid]' class="jqevent"> <form action=""> <table> <tr> <td> <label for="title"> [@title] </label>: </td> <td> <input class="ui-widget-content ui-corner-all ui-input" id="title" name="title" size="50"/> </td> </tr> <tr> <td> <label for="location">[@location]</label>: </td> <td> <input class="ui-widget-content ui-corner-all ui-input" id='location' name="location" size="50"/> </td> </tr> <tr> <td> <label for="categories">[@categories]</label>: </td> <td> <select id="categories" name="categories"> [@option_categories] </select> <label for="access">[@access]</label>: <select id="access" name="access"> [@option_access] </select> </td> </tr> <tr> <td colspan="2"> <div class="ui-widget-content ui-helper-clearfix" style="margin: 0.6em .0em;"></div> </td> </tr> <tr> <td>&nbsp;</td> <td> <input type="checkbox" class="ui-widget-content ui-corner-all" id="all_day" name="all_day" /> <label for="all_day" style="padding-bottom:3px;"> [@all_day] </label> </td> </tr> <tr> <td> <label for="start">[@start]</label>: </td> <td> <input class="ui-widget-content ui-corner-all ui-input" id="start" name="start" size="12" /> <input class="ui-widget-content ui-corner-all ui-input" id="starttime" name="starttime" size="8" /> </td> </tr> <tr> <td> <label for="end">[@end]</label>: </td> <td> <input class="ui-widget-content ui-corner-all ui-input" id="end" name="end" size="12" /> <input class="ui-widget-content ui-corner-all ui-input" id="endtime" name="endtime" size="8" /> </td> </tr> <tr> <td colspan="2"> <div class="ui-widget-content ui-helper-clearfix" style="margin: 0.6em 0em;"></div> </td> </tr> <tr> <td style="vertical-align: top;"> <label for="description">[@description]</label>: </td> <td> <textarea class="ui-widget-content ui-corner-all" id='description' name="description" rows="10" cols="46" ></textarea> </td> </tr> <tr [@multitiple]> <td colspan="2"> <div class="ui-widget-content ui-helper-clearfix" style="margin: 0.6em .0em;"></div> </td> </tr> <tr [@multitiple]> <td> <label for="user_id">[@username]</label>: </td> <td> <select id="user_id" name="user_id"> [@calusers] </select> </td> </tr> </table> </form> </div> <div style='clear:both'></div> <!-- <div id='toolbar' class="jqtoolbar ui-widget ui-state-default">ffff</div> --> <div id='caluser' class="jqevent" style="width:100%;text-align: center;"> <form> <label for="switchuser">[@label_user]</label>: <select id="switchuser" name="switchuser" [@multisize]> [@available_users] </select> </form> </div> <div id='search_cal' class="jqevent" style="width:100%;"></div> <!-- This is inserted in the calendar as view --> <div class="fc-view fc-view-search" style="position:relative;"> <div class="ui-widget-header fc-view-searchtitle" style="width:100%;text-align:center"> [@header_serach]</div> <div class="fc-view-input" style="height:50px;"> <table style="margin: 10px 10px;width:98%"><tr><td style="text-align:left"> <input type="text" size="40" maxlength="80" id="common_search" class ="ui-input" name="comon_search" /> <button class="jq-button ui-state-default ui-corner-all" id="b_common_search">[@b_search]</button> <button class="jq-button ui-state-default ui-corner-all" id="b_adv_search">[@b_adv_search]</button> </td> <td style="text-align:right;width:12%;padding-top:7px;">[@found_events] :&nbsp;&nbsp;</td><td class="fnd-results" style="width:5%;text-align:center;padding-top:7px;"></td></tr></table> </div> <div style="height:97%;overflow-x:hidden;" class="ui-widget-content"> <table id="search_table" style = "width:100%;table-layout:auto;"><tbody></tbody></table> </div> </div> <div id="day_dialog" style="display:none" class="ui-widget-content" title='[@captionlist]'> <table id="day_table" style = "width:100%;table-layout:auto;border-bottom: 0px none" cellspacing="0" cellpadding="0" class="ui-widget-content"><tbody></tbody></table> </div> </div> </div> <div id="progresspar" style="width:150px;height:30px;z-index: 1002; display:none;font-size: 13px;" class="ui-widget-content"> <div id="progressbar" style="width:130px;height:20px;margin-top: 5px;margin-left: 5px;"> Loading...</div> </div>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/templates/calendar.html
HTML
gpl2
5,867
<tr> <td rowspan="2" width="10%" style="border: 1px solid #5c9ccc;">&nbsp;[@myday]&nbsp;</td> <td colspan="2" align="center" nowrap width="20%" style="border: 1px solid #5c9ccc;">&nbsp; [@mydate] &nbsp;</td> <td rowspan="2" width="10%" style="border: 1px solid #5c9ccc;">[@location]&nbsp;</td> <td rowspan="2" width="10%" style="border: 1px solid #5c9ccc;">[@categories]&nbsp;</td> <td rowspan="2" width="20%" style="border: 1px solid #5c9ccc;">[@title]&nbsp;</td> <td rowspan="2" style="WORD-BREAK:BREAK-ALL;white-space: normal" width="30%" style="border: 1px solid #5c9ccc;">[@description]&nbsp;</td> </tr> <tr style="border: 1px soid #5c9ccc;"> [@allday] </tr>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/templates/print_rows.html
HTML
gpl2
664
<?php /** * jqScheduler * * Database backend * * @version 1.0 * @author Tony Tomov * @copyright (c) Tony Tomov */ require_once('backend.php'); final class Database extends Backend { private $db; private $table; private $user_id; private $dbmap = array( "event_id"=>"id", // this is a id key "title"=>"title", "start"=>"start", "end"=>"end", "description"=>"description", "location"=>"location", "categories"=>"className", "access"=>"access", "all_day"=>"allDay", "user_id"=>"user_id" ); private $encoding = "utf-8"; private $dbtype; // private $searchwhere = ""; private $searchdata = array(); private $wherecond = ""; private $whereparams = array(); public function __construct($db) { $this->db = $db; } public function setUser( $user) { if($user) { $this->user_id=$user; } } public function setTable( $table) { if($table) { $this->table=$table; } } public function setDbType( $dtype ) { $this->dbtype =$dtype; } public function setSearchs( $where, array $whrval) { $this->searchwhere = $where; $this->searchdata = $whrval; } public function setWhere( $where, $param = array()) { $this->wherecond = $where; $this->whereparams = $param; } public function newEvent( $data = array() ) { //$start, $end, $title, $description, $location, $categories, $access, $allDay) { if (!empty($this->user_id) && !empty($this->table) ) { if(!isset($data['user_id'])) { return false; } if(is_array($this->user_id)) { if(!in_array($data['user_id'], $this->user_id)) { return false;} } else { if($data['user_id'] != $this->user_id) { return false; } } $tableFields = array_keys($this->dbmap); $binds = array(); unset($tableFields['event_id']); $rowFields = array_intersect($tableFields, array_keys($data)); foreach($rowFields as $key => $val) { $insertFields[] = "?"; //$field; $value = $data[$val]; if( strtolower($this->encoding) != 'utf-8' ) { $value = iconv("utf-8", $this->encoding."//TRANSLIT", $value); } $binds[] = $value; } $sql = ""; if(count($insertFields) > 0) { $sql = "INSERT INTO " . $this->table . " (" . implode(', ', $rowFields) . ")" . " VALUES( " . implode(', ', $insertFields) . ")"; } if(!$sql) return false; jqGridDB::beginTransaction($this->db); $query = jqGridDB::prepare($this->db, $sql, $binds); jqGridDB::execute($query); $lastid = jqGridDB::lastInsertId($this->db, $this->table, 'event_id', $this->dbtype); jqGridDB::commit($this->db); jqGridDB::closeCursor($query); return $lastid; } else { return false; } } public function editEvent( $data=array() ) //$id, $start, $end, $title, $description, $location, $categories, $access, $allDay) { if (!empty($this->user_id) && !empty($this->table)) { if(!isset($data['user_id'])) { return false; } if(is_array($this->user_id)) { if(!in_array($data['user_id'], $this->user_id)) { return false;} } else { if($data['user_id'] != $this->user_id) { return false; } } $tableFields = array_keys($this->dbmap); $rowFields = array_intersect($tableFields, array_keys($data)); $binds = array(); $updateFields = array(); $pk = 'event_id'; foreach($rowFields as $key => $field) { $value = $data[$field]; if( strtolower($this->encoding) != 'utf-8' ) { $value = iconv("utf-8", $this->encoding."//TRANSLIT", $value); } if($field != $pk ) { $updateFields[] = $field . " = ?"; $binds[] = $value; } else if($field == $pk) { $v2 = $value; } } if(!isset($v2)) die("Primary value is missing"); $binds[] = $v2; $sql = ""; if(count($updateFields) > 0) { $sql = "UPDATE " . $this->table . " SET " . implode(', ', $updateFields) . " WHERE " . $pk . " = ?"; // Prepare update query } if(!$sql ) { return false; } $query = jqGridDB::prepare($this->db, $sql , $binds); jqGridDB::execute($query); jqGridDB::closeCursor($query); return true; } else { return false; } } public function moveEvent($id, $start, $end, $allDay) { if (!empty($this->user_id) && !empty($this->table)) { $query = jqGridDB::prepare($this->db, "UPDATE ".$this->table." SET start=?, end=?, all_day=? WHERE event_id=?", array($start, $end, $allDay, $id )); jqGridDB::execute($query); jqGridDB::closeCursor($query); return true; } else { return false; } } public function resizeEvent($id, $start, $end) { if (!empty($this->user_id) && !empty($this->table)) { $query = jqGridDB::prepare($this->db, "UPDATE ".$this->table." SET start=?, end=? WHERE event_id=?", array($start, $end, $id )); jqGridDB::execute($query); jqGridDB::closeCursor($query); return true; } else { return false; } } public function removeEvent($id) { if (!empty($this->user_id) && !empty($this->table)) { $query = jqGridDB::prepare($this->db,"DELETE FROM ".$this->table." WHERE event_id=?", array((int)$id) ); jqGridDB::execute($query); jqGridDB::closeCursor($query); return true; } else { return false; } } public function getEvents($start, $end) { if (!empty($this->user_id) && !empty($this->table) ) { $sql = "SELECT "; $i =0; foreach($this->dbmap as $k=>$v) { $sql .= $i==0 ? $k .' AS '.$v : ', '.$k .' AS '.$v; $i++; } $sql .= ' FROM '.$this->table.' WHERE '; if($this->wherecond && strlen($this->wherecond) > 0) { $pos = stripos($this->wherecond, 'where'); if($pos !== false) { $this->wherecond = substr_replace($this->wherecond,"", $pos, 5); } $sql .= $this->wherecond.' AND '; } $sqluser = "("; if(is_array($this->user_id)) { foreach($this->user_id as $k =>$v) { if($k != 0) { $sqluser .= " OR user_id = ? "; } else { $sqluser .= " user_id = ? "; } } } else { $sqluser .= " user_id = ? "; } $sqluser .= ")"; if(strlen($this->searchwhere) > 0 ) { $sql .= $this->searchwhere.' AND '.$sqluser.' ORDER BY start DESC'; $params = $this->whereparams; foreach($this->searchdata as $k => $v) { $params[] = $v; } //$params[] if(is_array($this->user_id) ) { foreach($this->user_id as $k =>$v) { $params[] = $v; } } else { $params[] = $this->user_id; } } else { $sql .= $sqluser.' AND start >= ? AND start <= ? ORDER BY start'; $params = $this->whereparams; //$params[] if(is_array($this->user_id) ) { foreach($this->user_id as $k =>$v) { $params[] = $v; } } else { $params[] = $this->user_id; } $params[] = (int)$start; $params[] = (int)$end; } $query = jqGridDB::prepare($this->db, $sql, $params ); $ret = jqGridDB::execute($query, $params); $ev = array(); while($row = jqGridDB::fetch_assoc($query, $this->db)) { $row[$this->dbmap['all_day']] = $row[$this->dbmap['all_day']] == 1 ? true : false; $ev[] = $row; } jqGridDB::closeCursor($query); return $ev; } else { return false; } } } ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/backend/database.php
PHP
gpl2
7,151
<?php /** * jqScheduler * * Basis for all calendar backends * * @version 1.0 * @author Tony Tomov * @copyright (c) 2011 Tony Tomov */ abstract class Backend { /** * Return event(s) as JSON * @param integer Event's start * @param integer Event's end */ abstract public function getEvents($start, $end); /** * Add a single event to the database * * @param integer Event's start * @param integer Event's end * @param string Event's summary * @param string Event's description * @param string Event's location * @param string Event's category * @param string Event's access * @param integer Event allDay state * @access public */ abstract public function newEvent( $data = array() ); //$start, $end, $title, $description, $location, $categories, $access, $allDay); /** * Edit a single event * * @param integer Event's id * @param integer Event's start * @param integer Event's end * @param string Event's summary * @param string Event's description * @param string Event's location * @param string Event's category * @param string Event's access * @param integer Event allDay state * @access public */ abstract public function editEvent( $data = array() ); //$id, $start, $end, $title, $description, $location, $categories, $access, $allDay ); /** * Move a single event * * @param integer Event identifier * @param integer Event's new start * @param integer Event's new end * @param integer Event allDay state * @access public */ abstract public function moveEvent($id, $start, $end, $allDay); /** * Resize a single event * * @param integer Event identifier * @param integer Event's new start * @param integer Event's new end * @access public */ abstract public function resizeEvent($id, $start, $end); /** * Remove a single event from the database * * @param integer Event identifier * @access public */ abstract public function removeEvent($id); } ?>
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/backend/backend.php
PHP
gpl2
2,075
<?php //============================================================+ // File name : datamatrix.php // Version : 1.0.001 // Begin : 2010-06-07 // Last Update : 2011-09-14 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // ------------------------------------------------------------------- // Copyright (C) 2010-2011 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // DESCRIPTION : // // Class to create DataMatrix ECC 200 barcode arrays for TCPDF class. // DataMatrix (ISO/IEC 16022:2006) is a 2-dimensional bar code. //============================================================+ /** * @file * Class to create DataMatrix ECC 200 barcode arrays for TCPDF class. * DataMatrix (ISO/IEC 16022:2006) is a 2-dimensional bar code. * * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.001 */ // custom definitions if (!defined('DATAMATRIXDEFS')) { /** * Indicate that definitions for this class are set */ define('DATAMATRIXDEFS', true); // ----------------------------------------------------- } // end of custom definitions // #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# /** * ASCII encoding: ASCII character 0 to 127 (1 byte per CW) */ define('ENC_ASCII', 0); /** * C40 encoding: Upper-case alphanumeric (3/2 bytes per CW) */ define('ENC_C40', 1); /** * TEXT encoding: Lower-case alphanumeric (3/2 bytes per CW) */ define('ENC_TXT', 2); /** * X12 encoding: ANSI X12 (3/2 byte per CW) */ define('ENC_X12', 3); /** * EDIFACT encoding: ASCII character 32 to 94 (4/3 bytes per CW) */ define('ENC_EDF', 4); /** * BASE 256 encoding: ASCII character 0 to 255 (1 byte per CW) */ define('ENC_BASE256', 5); /** * ASCII extended encoding: ASCII character 128 to 255 (1/2 byte per CW) */ define('ENC_ASCII_EXT', 6); /** * ASCII number encoding: ASCII digits (2 bytes per CW) */ define('ENC_ASCII_NUM', 7); /** * @class Datamatrix * Class to create DataMatrix ECC 200 barcode arrays for TCPDF class. * DataMatrix (ISO/IEC 16022:2006) is a 2-dimensional bar code. * * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.001 */ class Datamatrix { /** * Barcode array to be returned which is readable by TCPDF. * @protected */ protected $barcode_array = array(); /** * Store last used encoding for data codewords. * @protected */ protected $last_enc = ENC_ASCII; /** * Table of Data Matrix ECC 200 Symbol Attributes:<ul> * <li>total matrix rows (including finder pattern)</li> * <li>total matrix cols (including finder pattern)</li> * <li>total matrix rows (without finder pattern)</li> * <li>total matrix cols (without finder pattern)</li> * <li>region data rows (with finder pattern)</li> * <li>region data col (with finder pattern)</li> * <li>region data rows (without finder pattern)</li> * <li>region data col (without finder pattern)</li> * <li>horizontal regions</li> * <li>vertical regions</li> * <li>regions</li> * <li>data codewords</li> * <li>error codewords</li> * <li>blocks</li> * <li>data codewords per block</li> * <li>error codewords per block</li> * </ul> * @protected */ protected $symbattr = array( // square form --------------------------------------------------------------------------------------- array(0x00a,0x00a,0x008,0x008,0x00a,0x00a,0x008,0x008,0x001,0x001,0x001,0x003,0x005,0x001,0x003,0x005), // 10x10 array(0x00c,0x00c,0x00a,0x00a,0x00c,0x00c,0x00a,0x00a,0x001,0x001,0x001,0x005,0x007,0x001,0x005,0x007), // 12x12 array(0x00e,0x00e,0x00c,0x00c,0x00e,0x00e,0x00c,0x00c,0x001,0x001,0x001,0x008,0x00a,0x001,0x008,0x00a), // 14x14 array(0x010,0x010,0x00e,0x00e,0x010,0x010,0x00e,0x00e,0x001,0x001,0x001,0x00c,0x00c,0x001,0x00c,0x00c), // 16x16 array(0x012,0x012,0x010,0x010,0x012,0x012,0x010,0x010,0x001,0x001,0x001,0x012,0x00e,0x001,0x012,0x00e), // 18x18 array(0x014,0x014,0x012,0x012,0x014,0x014,0x012,0x012,0x001,0x001,0x001,0x016,0x012,0x001,0x016,0x012), // 20x20 array(0x016,0x016,0x014,0x014,0x016,0x016,0x014,0x014,0x001,0x001,0x001,0x01e,0x014,0x001,0x01e,0x014), // 22x22 array(0x018,0x018,0x016,0x016,0x018,0x018,0x016,0x016,0x001,0x001,0x001,0x024,0x018,0x001,0x024,0x018), // 24x24 array(0x01a,0x01a,0x018,0x018,0x01a,0x01a,0x018,0x018,0x001,0x001,0x001,0x02c,0x01c,0x001,0x02c,0x01c), // 26x26 array(0x020,0x020,0x01c,0x01c,0x010,0x010,0x00e,0x00e,0x002,0x002,0x004,0x03e,0x024,0x001,0x03e,0x024), // 32x32 array(0x024,0x024,0x020,0x020,0x012,0x012,0x010,0x010,0x002,0x002,0x004,0x056,0x02a,0x001,0x056,0x02a), // 36x36 array(0x028,0x028,0x024,0x024,0x014,0x014,0x012,0x012,0x002,0x002,0x004,0x072,0x030,0x001,0x072,0x030), // 40x40 array(0x02c,0x02c,0x028,0x028,0x016,0x016,0x014,0x014,0x002,0x002,0x004,0x090,0x038,0x001,0x090,0x038), // 44x44 array(0x030,0x030,0x02c,0x02c,0x018,0x018,0x016,0x016,0x002,0x002,0x004,0x0ae,0x044,0x001,0x0ae,0x044), // 48x48 array(0x034,0x034,0x030,0x030,0x01a,0x01a,0x018,0x018,0x002,0x002,0x004,0x0cc,0x054,0x002,0x066,0x02a), // 52x52 array(0x040,0x040,0x038,0x038,0x010,0x010,0x00e,0x00e,0x004,0x004,0x010,0x118,0x070,0x002,0x08c,0x038), // 64x64 array(0x048,0x048,0x040,0x040,0x012,0x012,0x010,0x010,0x004,0x004,0x010,0x170,0x090,0x004,0x05c,0x024), // 72x72 array(0x050,0x050,0x048,0x048,0x014,0x014,0x012,0x012,0x004,0x004,0x010,0x1c8,0x0c0,0x004,0x072,0x030), // 80x80 array(0x058,0x058,0x050,0x050,0x016,0x016,0x014,0x014,0x004,0x004,0x010,0x240,0x0e0,0x004,0x090,0x038), // 88x88 array(0x060,0x060,0x058,0x058,0x018,0x018,0x016,0x016,0x004,0x004,0x010,0x2b8,0x110,0x004,0x0ae,0x044), // 96x96 array(0x068,0x068,0x060,0x060,0x01a,0x01a,0x018,0x018,0x004,0x004,0x010,0x330,0x150,0x006,0x088,0x038), // 104x104 array(0x078,0x078,0x06c,0x06c,0x014,0x014,0x012,0x012,0x006,0x006,0x024,0x41a,0x198,0x006,0x0af,0x044), // 120x120 array(0x084,0x084,0x078,0x078,0x016,0x016,0x014,0x014,0x006,0x006,0x024,0x518,0x1f0,0x008,0x0a3,0x03e), // 132x132 array(0x090,0x090,0x084,0x084,0x018,0x018,0x016,0x016,0x006,0x006,0x024,0x616,0x26c,0x00a,0x09c,0x03e), // 144x144 // rectangular form (currently unused) --------------------------------------------------------------------------- array(0x008,0x012,0x006,0x010,0x008,0x012,0x006,0x010,0x001,0x001,0x001,0x005,0x007,0x001,0x005,0x007), // 8x18 array(0x008,0x020,0x006,0x01c,0x008,0x010,0x006,0x00e,0x001,0x002,0x002,0x00a,0x00b,0x001,0x00a,0x00b), // 8x32 array(0x00c,0x01a,0x00a,0x018,0x00c,0x01a,0x00a,0x018,0x001,0x001,0x001,0x010,0x00e,0x001,0x010,0x00e), // 12x26 array(0x00c,0x024,0x00a,0x020,0x00c,0x012,0x00a,0x010,0x001,0x002,0x002,0x00c,0x012,0x001,0x00c,0x012), // 12x36 array(0x010,0x024,0x00e,0x020,0x010,0x012,0x00e,0x010,0x001,0x002,0x002,0x020,0x018,0x001,0x020,0x018), // 16x36 array(0x010,0x030,0x00e,0x02c,0x010,0x018,0x00e,0x016,0x001,0x002,0x002,0x031,0x01c,0x001,0x031,0x01c) // 16x48 ); /** * Map encodation modes whit character sets. * @protected */ protected $chset_id = array(ENC_C40 => 'C40', ENC_TXT => 'TXT', ENC_X12 =>'X12'); /** * Basic set of charactes for each encodation mode. * @protected */ protected $chset = array( 'C40' => array( // Basic set for C40 ---------------------------------------------------------------------------- 'S1'=>0x00,'S2'=>0x01,'S3'=>0x02,0x20=>0x03,0x30=>0x04,0x31=>0x05,0x32=>0x06,0x33=>0x07,0x34=>0x08,0x35=>0x09, // 0x36=>0x0a,0x37=>0x0b,0x38=>0x0c,0x39=>0x0d,0x41=>0x0e,0x42=>0x0f,0x43=>0x10,0x44=>0x11,0x45=>0x12,0x46=>0x13, // 0x47=>0x14,0x48=>0x15,0x49=>0x16,0x4a=>0x17,0x4b=>0x18,0x4c=>0x19,0x4d=>0x1a,0x4e=>0x1b,0x4f=>0x1c,0x50=>0x1d, // 0x51=>0x1e,0x52=>0x1f,0x53=>0x20,0x54=>0x21,0x55=>0x22,0x56=>0x23,0x57=>0x24,0x58=>0x25,0x59=>0x26,0x5a=>0x27),// 'TXT' => array( // Basic set for TEXT --------------------------------------------------------------------------- 'S1'=>0x00,'S2'=>0x01,'S3'=>0x02,0x20=>0x03,0x30=>0x04,0x31=>0x05,0x32=>0x06,0x33=>0x07,0x34=>0x08,0x35=>0x09, // 0x36=>0x0a,0x37=>0x0b,0x38=>0x0c,0x39=>0x0d,0x61=>0x0e,0x62=>0x0f,0x63=>0x10,0x64=>0x11,0x65=>0x12,0x66=>0x13, // 0x67=>0x14,0x68=>0x15,0x69=>0x16,0x6a=>0x17,0x6b=>0x18,0x6c=>0x19,0x6d=>0x1a,0x6e=>0x1b,0x6f=>0x1c,0x70=>0x1d, // 0x71=>0x1e,0x72=>0x1f,0x73=>0x20,0x74=>0x21,0x75=>0x22,0x76=>0x23,0x77=>0x24,0x78=>0x25,0x79=>0x26,0x7a=>0x27),// 'SH1' => array( // Shift 1 set ---------------------------------------------------------------------------------- 0x00=>0x00,0x01=>0x01,0x02=>0x02,0x03=>0x03,0x04=>0x04,0x05=>0x05,0x06=>0x06,0x07=>0x07,0x08=>0x08,0x09=>0x09, // 0x0a=>0x0a,0x0b=>0x0b,0x0c=>0x0c,0x0d=>0x0d,0x0e=>0x0e,0x0f=>0x0f,0x10=>0x10,0x11=>0x11,0x12=>0x12,0x13=>0x13, // 0x14=>0x14,0x15=>0x15,0x16=>0x16,0x17=>0x17,0x18=>0x18,0x19=>0x19,0x1a=>0x1a,0x1b=>0x1b,0x1c=>0x1c,0x1d=>0x1d, // 0x1e=>0x1e,0x1f=>0x1f), // 'SH2' => array( // Shift 2 set ---------------------------------------------------------------------------------- 0x21=>0x00,0x22=>0x01,0x23=>0x02,0x24=>0x03,0x25=>0x04,0x26=>0x05,0x27=>0x06,0x28=>0x07,0x29=>0x08,0x2a=>0x09, // 0x2b=>0x0a,0x2c=>0x0b,0x2d=>0x0c,0x2e=>0x0d,0x2f=>0x0e,0x3a=>0x0f,0x3b=>0x10,0x3c=>0x11,0x3d=>0x12,0x3e=>0x13, // 0x3f=>0x14,0x40=>0x15,0x5b=>0x16,0x5c=>0x17,0x5d=>0x18,0x5e=>0x19,0x5f=>0x1a,'F1'=>0x1b,'US'=>0x1e), // 'S3C' => array( // Shift 3 set for C40 -------------------------------------------------------------------------- 0x60=>0x00,0x61=>0x01,0x62=>0x02,0x63=>0x03,0x64=>0x04,0x65=>0x05,0x66=>0x06,0x67=>0x07,0x68=>0x08,0x69=>0x09, // 0x6a=>0x0a,0x6b=>0x0b,0x6c=>0x0c,0x6d=>0x0d,0x6e=>0x0e,0x6f=>0x0f,0x70=>0x10,0x71=>0x11,0x72=>0x12,0x73=>0x13, // 0x74=>0x14,0x75=>0x15,0x76=>0x16,0x77=>0x17,0x78=>0x18,0x79=>0x19,0x7a=>0x1a,0x7b=>0x1b,0x7c=>0x1c,0x7d=>0x1d, // 0x7e=>0x1e,0x7f=>0x1f), 'S3T' => array( // Shift 3 set for TEXT ------------------------------------------------------------------------- 0x60=>0x00,0x41=>0x01,0x42=>0x02,0x43=>0x03,0x44=>0x04,0x45=>0x05,0x46=>0x06,0x47=>0x07,0x48=>0x08,0x49=>0x09, // 0x4a=>0x0a,0x4b=>0x0b,0x4c=>0x0c,0x4d=>0x0d,0x4e=>0x0e,0x4f=>0x0f,0x50=>0x10,0x51=>0x11,0x52=>0x12,0x53=>0x13, // 0x54=>0x14,0x55=>0x15,0x56=>0x16,0x57=>0x17,0x58=>0x18,0x59=>0x19,0x5a=>0x1a,0x7b=>0x1b,0x7c=>0x1c,0x7d=>0x1d, // 0x7e=>0x1e,0x7f=>0x1f), // 'X12' => array( // Set for X12 ---------------------------------------------------------------------------------- 0x0d=>0x00,0x2a=>0x01,0x3e=>0x02,0x20=>0x03,0x30=>0x04,0x31=>0x05,0x32=>0x06,0x33=>0x07,0x34=>0x08,0x35=>0x09, // 0x36=>0x0a,0x37=>0x0b,0x38=>0x0c,0x39=>0x0d,0x41=>0x0e,0x42=>0x0f,0x43=>0x10,0x44=>0x11,0x45=>0x12,0x46=>0x13, // 0x47=>0x14,0x48=>0x15,0x49=>0x16,0x4a=>0x17,0x4b=>0x18,0x4c=>0x19,0x4d=>0x1a,0x4e=>0x1b,0x4f=>0x1c,0x50=>0x1d, // 0x51=>0x1e,0x52=>0x1f,0x53=>0x20,0x54=>0x21,0x55=>0x22,0x56=>0x23,0x57=>0x24,0x58=>0x25,0x59=>0x26,0x5a=>0x27) // ); // ----------------------------------------------------------------------------- /** * This is the class constructor. * Creates a datamatrix object * @param $code (string) Code to represent using Datamatrix. * @public */ public function __construct($code) { $barcode_array = array(); if ((is_null($code)) OR ($code == '\0') OR ($code == '')) { return false; } // get data codewords $cw = $this->getHighLevelEncoding($code); // number of data codewords $nd = count($cw); // check size if ($nd > 1558) { return false; } // get minimum required matrix size. foreach ($this->symbattr as $params) { if ($params[11] >= $nd) { break; } } if ($params[11] < $nd) { // too much data return false; } elseif ($params[11] > $nd) { // add padding if ($this->last_enc == ENC_EDF) { // switch to ASCII encoding $cw[] = 124; ++$nd; } elseif (($this->last_enc != ENC_ASCII) AND ($this->last_enc != ENC_BASE256)) { // switch to ASCII encoding $cw[] = 254; ++$nd; } if ($params[11] > $nd) { // add first pad $cw[] = 129; ++$nd; // add remaining pads for ($i = $nd; $i <= $params[11]; ++$i) { $cw[] = $this->get253StateCodeword(129, $i); } } } // add error correction codewords $cw = $this->getErrorCorrection($cw, $params[13], $params[14], $params[15]); // initialize empty arrays $grid = array_fill(0, ($params[2] * $params[3]), 0); // get placement map $places = $this->getPlacemetMap($params[2], $params[3]); // fill the grid with data $grid = array(); $i = 0; // region data row max index $rdri = ($params[4] - 1); // region data column max index $rdci = ($params[5] - 1); // for each vertical region for ($vr = 0; $vr < $params[9]; ++$vr) { // for each row on region for ($r = 0; $r < $params[4]; ++$r) { // get row $row = (($vr * $params[4]) + $r); // for each horizontal region for ($hr = 0; $hr < $params[8]; ++$hr) { // for each column on region for ($c = 0; $c < $params[5]; ++$c) { // get column $col = (($hr * $params[5]) + $c); // braw bits by case if ($r == 0) { // top finder pattern if ($c % 2) { $grid[$row][$col] = 0; } else { $grid[$row][$col] = 1; } } elseif ($r == $rdri) { // bottom finder pattern $grid[$row][$col] = 1; } elseif ($c == 0) { // left finder pattern $grid[$row][$col] = 1; } elseif ($c == $rdci) { // right finder pattern if ($r % 2) { $grid[$row][$col] = 1; } else { $grid[$row][$col] = 0; } } else { // data bit if ($places[$i] < 2) { $grid[$row][$col] = $places[$i]; } else { // codeword ID $cw_id = (floor($places[$i] / 10) - 1); // codeword BIT mask $cw_bit = pow(2, (8 - ($places[$i] % 10))); $grid[$row][$col] = (($cw[$cw_id] & $cw_bit) == 0) ? 0 : 1; } ++$i; } } } } } $this->barcode_array['num_rows'] = $params[0]; $this->barcode_array['num_cols'] = $params[1]; $this->barcode_array['bcode'] = $grid; } /** * Returns a barcode array which is readable by TCPDF * @return array barcode array readable by TCPDF; * @public */ public function getBarcodeArray() { return $this->barcode_array; } /** * Product of two numbers in a Power-of-Two Galois Field * @param $a (int) first number to multiply. * @param $b (int) second number to multiply. * @param $log (array) Log table. * @param $alog (array) Anti-Log table. * @param $gf (array) Number of Factors of the Reed-Solomon polynomial. * @return int product * @protected */ protected function getGFProduct($a, $b, $log, $alog, $gf) { if (($a == 0) OR ($b == 0)) { return 0; } return $alog[($log[$a] + $log[$b]) % ($gf - 1)]; } /** * Add error correction codewords to data codewords array (ANNEX E). * @param $wd (array) Array of datacodewords. * @param $nb (int) Number of blocks. * @param $nd (int) Number of data codewords per block. * @param $nc (int) Number of correction codewords per block. * @param $gf (int) numner of fields on log/antilog table (power of 2). * @param $pp (int) The value of its prime modulus polynomial (301 for ECC200). * @return array data codewords + error codewords * @protected */ protected function getErrorCorrection($wd, $nb, $nd, $nc, $gf=256, $pp=301) { // generate the log ($log) and antilog ($alog) tables $log[0] = 0; $alog[0] = 1; for ($i = 1; $i < $gf; ++$i) { $alog[$i] = ($alog[($i - 1)] * 2); if ($alog[$i] >= $gf) { $alog[$i] ^= $pp; } $log[$alog[$i]] = $i; } ksort($log); // generate the polynomial coefficients (c) $c = array_fill(0, ($nc + 1), 0); $c[0] = 1; for ($i = 1; $i <= $nc; ++$i) { $c[$i] = $c[($i-1)]; for ($j = ($i - 1); $j >= 1; --$j) { $c[$j] = $c[($j - 1)] ^ $this->getGFProduct($c[$j], $alog[$i], $log, $alog, $gf); } $c[0] = $this->getGFProduct($c[0], $alog[$i], $log, $alog, $gf); } ksort($c); // total number of data codewords $num_wd = ($nb * $nd); // total number of error codewords $num_we = ($nb * $nc); // for each block for ($b = 0; $b < $nb; ++$b) { // create interleaved data block $block = array(); for ($n = $b; $n < $num_wd; $n += $nb) { $block[] = $wd[$n]; } // initialize error codewords $we = array_fill(0, ($nc + 1), 0); // calculate error correction codewords for this block for ($i = 0; $i < $nd; ++$i) { $k = ($we[0] ^ $block[$i]); for ($j = 0; $j < $nc; ++$j) { $we[$j] = ($we[($j + 1)] ^ $this->getGFProduct($k, $c[($nc - $j - 1)], $log, $alog, $gf)); } } // add error codewords at the end of data codewords $j = 0; for ($i = $b; $i < $num_we; $i += $nb) { $wd[($num_wd + $i)] = $we[$j]; ++$j; } } // reorder codewords ksort($wd); return $wd; } /** * Return the 253-state codeword * @param $cwpad (int) Pad codeword. * @param $cwpos (int) Number of data codewords from the beginning of encoded data. * @return pad codeword * @protected */ protected function get253StateCodeword($cwpad, $cwpos) { $pad = ($cwpad + (((149 * $cwpos) % 253) + 1)); if ($pad > 254) { $pad -= 254; } return $pad; } /** * Return the 255-state codeword * @param $cwpad (int) Pad codeword. * @param $cwpos (int) Number of data codewords from the beginning of encoded data. * @return pad codeword * @protected */ protected function get255StateCodeword($cwpad, $cwpos) { $pad = ($cwpad + (((149 * $cwpos) % 255) + 1)); if ($pad > 255) { $pad -= 256; } return $pad; } /** * Returns true if the char belongs to the selected mode * @param $chr (int) Character (byte) to check. * @param $mode (int) Current encoding mode. * @return boolean true if the char is of the selected mode. * @protected */ protected function isCharMode($chr, $mode) { $status = false; switch ($mode) { case ENC_ASCII: { // ASCII character 0 to 127 $status = (($chr >= 0) AND ($chr <= 127)); break; } case ENC_C40: { // Upper-case alphanumeric $status = (($chr == 32) OR (($chr >= 48) AND ($chr <= 57)) OR (($chr >= 65) AND ($chr <= 90))); break; } case ENC_TXT: { // Lower-case alphanumeric $status = (($chr == 32) OR (($chr >= 48) AND ($chr <= 57)) OR (($chr >= 97) AND ($chr <= 122))); break; } case ENC_X12: { // ANSI X12 $status = (($chr == 13) OR ($chr == 42) OR ($chr == 62)); break; } case ENC_EDF: { // ASCII character 32 to 94 $status = (($chr >= 32) AND ($chr <= 94)); break; } case ENC_BASE256: { // Function character (FNC1, Structured Append, Reader Program, or Code Page) $status = (($chr == 232) OR ($chr == 233) OR ($chr == 234) OR ($chr == 241)); break; } case ENC_ASCII_EXT: { // ASCII character 128 to 255 $status = (($chr >= 128) AND ($chr <= 255)); break; } case ENC_ASCII_NUM: { // ASCII digits $status = (($chr >= 48) AND ($chr <= 57)); break; } } return $status; } /** * The look-ahead test scans the data to be encoded to find the best mode (Annex P - steps from J to S). * @param $data (string) data to encode * @param $pos (int) current position * @param $mode (int) current encoding mode * @return int encoding mode * @protected */ protected function lookAheadTest($data, $pos, $mode) { $data_length = strlen($data); if ($pos >= $data_length) { return $mode; } $charscount = 0; // count processed chars // STEP J if ($mode == ENC_ASCII) { $numch = array(0, 1, 1, 1, 1, 1.25); } else { $numch = array(1, 2, 2, 2, 2, 2.25); $numch[$mode] = 0; } while (true) { // STEP K if (($pos + $charscount) == $data_length) { if ($numch[ENC_ASCII] <= ceil(min($numch[ENC_C40], $numch[ENC_TXT], $numch[ENC_X12], $numch[ENC_EDF], $numch[ENC_BASE256]))) { return ENC_ASCII; } if ($numch[ENC_BASE256] < ceil(min($numch[ENC_ASCII], $numch[ENC_C40], $numch[ENC_TXT], $numch[ENC_X12], $numch[ENC_EDF]))) { return ENC_BASE256; } if ($numch[ENC_EDF] < ceil(min($numch[ENC_ASCII], $numch[ENC_C40], $numch[ENC_TXT], $numch[ENC_X12], $numch[ENC_BASE256]))) { return ENC_EDF; } if ($numch[ENC_TXT] < ceil(min($numch[ENC_ASCII], $numch[ENC_C40], $numch[ENC_X12], $numch[ENC_EDF], $numch[ENC_BASE256]))) { return ENC_TXT; } if ($numch[ENC_X12] < ceil(min($numch[ENC_ASCII], $numch[ENC_C40], $numch[ENC_TXT], $numch[ENC_EDF], $numch[ENC_BASE256]))) { return ENC_X12; } return ENC_C40; } // get char $chr = ord($data{($pos + $charscount)}); $charscount++; // STEP L if ($this->isCharMode($chr, ENC_ASCII_NUM)) { $numch[ENC_ASCII] += (1 / 2); } elseif ($this->isCharMode($chr, ENC_ASCII_EXT)) { $numch[ENC_ASCII] = ceil($numch[ENC_ASCII]); $numch[ENC_ASCII] += 2; } else { $numch[ENC_ASCII] = ceil($numch[ENC_ASCII]); $numch[ENC_ASCII] += 1; } // STEP M if ($this->isCharMode($chr, ENC_C40)) { $numch[ENC_C40] += (2 / 3); } elseif ($this->isCharMode($chr, ENC_ASCII_EXT)) { $numch[ENC_C40] += (8 / 3); } else { $numch[ENC_C40] += (4 / 3); } // STEP N if ($this->isCharMode($chr, ENC_TXT)) { $numch[ENC_TXT] += (2 / 3); } elseif ($this->isCharMode($chr, ENC_ASCII_EXT)) { $numch[ENC_TXT] += (8 / 3); } else { $numch[ENC_TXT] += (4 / 3); } // STEP O if ($this->isCharMode($chr, ENC_X12) OR $this->isCharMode($chr, ENC_C40)) { $numch[ENC_X12] += (2 / 3); } elseif ($this->isCharMode($chr, ENC_ASCII_EXT)) { $numch[ENC_X12] += (13 / 3); } else { $numch[ENC_X12] += (10 / 3); } // STEP P if ($this->isCharMode($chr, ENC_EDF)) { $numch[ENC_EDF] += (3 / 4); } elseif ($this->isCharMode($chr, ENC_ASCII_EXT)) { $numch[ENC_EDF] += (17 / 4); } else { $numch[ENC_EDF] += (13 / 4); } // STEP Q if ($this->isCharMode($chr, ENC_BASE256)) { $numch[ENC_BASE256] += 4; } else { $numch[ENC_BASE256] += 1; } // STEP R if ($charscount >= 4) { if (($numch[ENC_ASCII] + 1) <= min($numch[ENC_C40], $numch[ENC_TXT], $numch[ENC_X12], $numch[ENC_EDF], $numch[ENC_BASE256])) { return ENC_ASCII; } if ((($numch[ENC_BASE256] + 1) <= $numch[ENC_ASCII]) OR (($numch[ENC_BASE256] + 1) < min($numch[ENC_C40], $numch[ENC_TXT], $numch[ENC_X12], $numch[ENC_EDF]))) { return ENC_BASE256; } if (($numch[ENC_EDF] + 1) < min($numch[ENC_ASCII], $numch[ENC_C40], $numch[ENC_TXT], $numch[ENC_X12], $numch[ENC_BASE256])) { return ENC_EDF; } if (($numch[ENC_TXT] + 1) < min($numch[ENC_ASCII], $numch[ENC_C40], $numch[ENC_X12], $numch[ENC_EDF], $numch[ENC_BASE256])) { return ENC_TXT; } if (($numch[ENC_X12] + 1) < min($numch[ENC_ASCII], $numch[ENC_C40], $numch[ENC_TXT], $numch[ENC_EDF], $numch[ENC_BASE256])) { return ENC_X12; } if (($numch[ENC_C40] + 1) < min($numch[ENC_ASCII], $numch[ENC_TXT], $numch[ENC_EDF], $numch[ENC_BASE256])) { if ($numch[ENC_C40] < $numch[ENC_X12]) { return ENC_C40; } if ($numch[ENC_C40] == $numch[ENC_X12]) { $k = ($pos + $charscount + 1); while ($k < $data_length) { $tmpchr = ord($data{$k}); if ($this->isCharMode($tmpchr, ENC_X12)) { return ENC_X12; } elseif (!($this->isCharMode($tmpchr, ENC_X12) OR $this->isCharMode($tmpchr, ENC_C40))) { break; } ++$k; } return ENC_C40; } } } } // end of while } /** * Get the switching codeword to a new encoding mode (latch codeword) * @param $mode (int) New encoding mode. * @return (int) Switch codeword. * @protected */ protected function getSwitchEncodingCodeword($mode) { switch ($mode) { case ENC_ASCII: { // ASCII character 0 to 127 $cw = 254; break; } case ENC_C40: { // Upper-case alphanumeric $cw = 230; break; } case ENC_TXT: { // Lower-case alphanumeric $cw = 239; break; } case ENC_X12: { // ANSI X12 $cw = 238; break; } case ENC_EDF: { // ASCII character 32 to 94 $cw = 240; break; } case ENC_BASE256: { // Function character (FNC1, Structured Append, Reader Program, or Code Page) $cw = 231; break; } } return $cw; } /** * Choose the minimum matrix size and return the max number of data codewords. * @param $numcw (int) Number of current codewords. * @return number of data codewords in matrix * @protected */ protected function getMaxDataCodewords($numcw) { foreach ($this->symbattr as $key => $matrix) { if ($matrix[11] >= $numcw) { return $matrix[11]; } } return 0; } /** * Get high level encoding using the minimum symbol data characters for ECC 200 * @param $data (string) data to encode * @return array of codewords * @protected */ protected function getHighLevelEncoding($data) { // STEP A. Start in ASCII encodation. $enc = ENC_ASCII; // current encoding mode $pos = 0; // current position $cw = array(); // array of codewords to be returned $cw_num = 0; // number of data codewords $data_lenght = strlen($data); // number of chars while ($pos < $data_lenght) { switch ($enc) { case ENC_ASCII: { // STEP B. While in ASCII encodation if (($data_lenght > 1) AND ($pos < ($data_lenght - 1)) AND ($this->isCharMode(ord($data{($pos)}), ENC_ASCII_NUM) AND $this->isCharMode(ord($data{($pos + 1)}), ENC_ASCII_NUM))) { // 1. If the next data sequence is at least 2 consecutive digits, encode the next two digits as a double digit in ASCII mode. $cw[] = (intval(substr($data, $pos, 2)) + 130); ++$cw_num; $pos += 2; } else { // 2. If the look-ahead test (starting at step J) indicates another mode, switch to that mode. $newenc = $this->lookAheadTest($data, $pos, $enc); if ($newenc != $enc) { // switch to new encoding $enc = $newenc; $cw[] = $this->getSwitchEncodingCodeword($enc); ++$cw_num; } else { // get new byte $chr = ord($data{($pos)}); ++$pos; if ($this->isCharMode($chr, ENC_ASCII_EXT)) { // 3. If the next data character is extended ASCII (greater than 127) encode it in ASCII mode first using the Upper Shift (value 235) character. $cw[] = 235; $cw[] = ($chr - 127); $cw_num += 2; } else { // 4. Otherwise process the next data character in ASCII encodation. $cw[] = ($chr + 1); ++$cw_num; } } } break; } case ENC_C40 : // Upper-case alphanumeric case ENC_TXT : // Lower-case alphanumeric case ENC_X12 : { // ANSI X12 $temp_cw = array(); $p = 0; $epos = $pos; // get charset ID $set_id = $this->chset_id[$enc]; // get basic charset for current encoding $charset = $this->chset[$set_id]; do { // 2. process the next character in C40 encodation. $chr = ord($data{($epos)}); ++$epos; // check for extended character if ($chr & 0x80) { if ($enc == ENC_X12) { return false; } $chr = ($chr & 0x7f); $temp_cw[] = 1; // shift 2 $temp_cw[] = 30; // upper shift $p += 2; } if (isset($charset[$chr])) { $temp_cw[] = $charset[$chr]; ++$p; } else { if (isset($this->chset['SH1'][$chr])) { $temp_cw[] = 0; // shift 1 $shiftset = $this->chset['SH1']; } elseif (isset($chr, $this->chset['SH2'][$chr])) { $temp_cw[] = 1; // shift 2 $shiftset = $this->chset['SH2']; } elseif (($enc == ENC_C40) AND isset($this->chset['S3C'][$chr])) { $temp_cw[] = 2; // shift 3 $shiftset = $this->chset['S3C']; } elseif (($enc == ENC_TXT) AND isset($this->chset['S3T'][$chr])) { $temp_cw[] = 2; // shift 3 $shiftset = $this->chset['S3T']; } else { return false; } $temp_cw[] = $shiftset[$chr]; $p += 2; } if ($p >= 3) { $c1 = array_shift($temp_cw); $c2 = array_shift($temp_cw); $c3 = array_shift($temp_cw); $p -= 3; $tmp = ((1600 * $c1) + (40 * $c2) + $c3 + 1); $cw[] = ($tmp >> 8); $cw[] = ($tmp % 256); $cw_num += 2; $pos = $epos; // 1. If the C40 encoding is at the point of starting a new double symbol character and if the look-ahead test (starting at step J) indicates another mode, switch to that mode. $newenc = $this->lookAheadTest($data, $pos, $enc); if ($newenc != $enc) { $enc = $newenc; $cw[] = $this->getSwitchEncodingCodeword($enc); ++$cw_num; break; } } } while (($p > 0) AND ($epos < $data_lenght)); // process last data (if any) if ($p > 0) { // get remaining number of data symbols $cwr = ($this->getMaxDataCodewords($cw_num + 2) - $cw_num); if (($cwr == 1) AND ($p == 1)) { // d. If one symbol character remains and one C40 value (data character) remains to be encoded $c1 = array_shift($temp_cw); --$p; $cw[] = ($c1 + 1); ++$cw_num; } elseif (($cwr == 2) AND ($p == 1)) { // c. If two symbol characters remain and only one C40 value (data character) remains to be encoded $c1 = array_shift($temp_cw); --$p; $cw[] = 254; $cw[] = ($c1 + 1); $cw_num += 2; } elseif (($cwr == 2) AND ($p == 2)) { // b. If two symbol characters remain and two C40 values remain to be encoded $c1 = array_shift($temp_cw); $c2 = array_shift($temp_cw); $p -= 2; $tmp = ((1600 * $c1) + (40 * $c2) + 1); $cw[] = ($tmp >> 8); $cw[] = ($tmp % 256); $cw_num += 2; } else { // switch to ASCII encoding $enc = ENC_ASCII; $cw[] = $this->getSwitchEncodingCodeword($enc); ++$cw_num; } } break; } case ENC_EDF: { // F. While in EDIFACT (EDF) encodation // initialize temporary array with 0 lenght $temp_cw = array(); $epos = $pos; $field_lenght = 0; while ($epos < $data_lenght) { // 2. process the next character in EDIFACT encodation. $chr = ord($data{($epos)}); ++$epos; $temp_cw[] = $chr; ++$field_lenght; if (($field_lenght == 4) OR ($epos == $data_lenght)) { if ($field_lenght < 4) { // set unlatch character $temp_cw[] = 0x1f; ++$field_lenght; $enc = ENC_ASCII; // fill empty characters for ($i = $field_lenght; $i < 4; ++$i) { $temp_cw[] = 0; } } // encodes four data characters in three codewords $cw[] = (($temp_cw[0] & 0x3F) << 2) + (($temp_cw[1] & 0x30) >> 4); $cw[] = (($temp_cw[1] & 0x0F) << 4) + (($temp_cw[2] & 0x3C) >> 2); $cw[] = (($temp_cw[2] & 0x03) << 6) + ($temp_cw[3] & 0x3F); $cw_num += 3; $temp_cw = array(); $pos = $epos; $field_lenght = 0; } // 1. If the EDIFACT encoding is at the point of starting a new triple symbol character and if the look-ahead test (starting at step J) indicates another mode, switch to that mode. if ($field_lenght == 0) { // get remaining number of data symbols $cwr = ($this->getMaxDataCodewords($cw_num + 2) - $cw_num); if ($cwr < 3) { // return to ascii without unlatch $enc = ENC_ASCII; break; // exit from EDIFACT mode } else { $newenc = $this->lookAheadTest($data, $pos, $enc); if ($newenc != $enc) { // 1. If the look-ahead test (starting at step J) indicates another mode, switch to that mode. $enc = $newenc; $cw[] = $this->getSwitchEncodingCodeword($enc); ++$cw_num; break; // exit from EDIFACT mode } } } } break; } case ENC_BASE256: { // G. While in Base 256 (B256) encodation // initialize temporary array with 0 lenght $temp_cw = array(); $field_lenght = 0; while (($pos < $data_lenght) AND ($field_lenght <= 1555)) { $newenc = $this->lookAheadTest($data, $pos, $enc); if ($newenc != $enc) { // 1. If the look-ahead test (starting at step J) indicates another mode, switch to that mode. $enc = $newenc; $cw[] = $this->getSwitchEncodingCodeword($enc); ++$cw_num; break; // exit from B256 mode } else { // 2. Otherwise, process the next character in Base 256 encodation. $chr = ord($data{($pos)}); ++$pos; $temp_cw[] = $chr; ++$field_lenght; } } // set field lenght if ($field_lenght <= 249) { $cw[] = $field_lenght; ++$cw_num; } else { $cw[] = (floor($field_lenght / 250) + 249); $cw[] = ($field_lenght % 250); $cw_num += 2; } if (!empty($temp_cw)) { // add B256 field foreach ($temp_cw as $p => $cht) { $cw[] = $this->get255StateCodeword($chr, ($cw_num + $p)); } } break; } } // end of switch enc } // end of while // set last used encoding $this->last_enc = $enc; return $cw; } /** * Places "chr+bit" with appropriate wrapping within array[]. * (Annex F - ECC 200 symbol character placement) * @param $marr array Array of symbols. * @param $nrow (int) Number of rows. * @param $ncol (int) Number of columns. * @param $row (int) Row number. * @param $col (int) Column number. * @param $chr (int) Char byte. * @param $bit (int) Bit. * @return array * @protected */ protected function placeModule($marr, $nrow, $ncol, $row, $col, $chr, $bit) { if ($row < 0) { $row += $nrow; $col += (4 - (($nrow + 4) % 8)); } if ($col < 0) { $col += $ncol; $row += (4 - (($ncol + 4) % 8)); } $marr[(($row * $ncol) + $col)] = ((10 * $chr) + $bit); return $marr; } /** * Places the 8 bits of a utah-shaped symbol character. * (Annex F - ECC 200 symbol character placement) * @param $marr array Array of symbols. * @param $nrow (int) Number of rows. * @param $ncol (int) Number of columns. * @param $row (int) Row number. * @param $col (int) Column number. * @param $chr (int) Char byte. * @return array * @protected */ protected function placeUtah($marr, $nrow, $ncol, $row, $col, $chr) { $marr = $this->placeModule($marr, $nrow, $ncol, $row-2, $col-2, $chr, 1); $marr = $this->placeModule($marr, $nrow, $ncol, $row-2, $col-1, $chr, 2); $marr = $this->placeModule($marr, $nrow, $ncol, $row-1, $col-2, $chr, 3); $marr = $this->placeModule($marr, $nrow, $ncol, $row-1, $col-1, $chr, 4); $marr = $this->placeModule($marr, $nrow, $ncol, $row-1, $col, $chr, 5); $marr = $this->placeModule($marr, $nrow, $ncol, $row, $col-2, $chr, 6); $marr = $this->placeModule($marr, $nrow, $ncol, $row, $col-1, $chr, 7); $marr = $this->placeModule($marr, $nrow, $ncol, $row, $col, $chr, 8); return $marr; } /** * Places the 8 bits of the first special corner case. * (Annex F - ECC 200 symbol character placement) * @param $marr array Array of symbols. * @param $nrow (int) Number of rows. * @param $ncol (int) Number of columns. * @param $chr (int) Char byte. * @return array * @protected */ protected function placeCornerA($marr, $nrow, $ncol, $chr) { $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 0, $chr, 1); $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 1, $chr, 2); $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 2, $chr, 3); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-2, $chr, 4); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-1, $chr, 5); $marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol-1, $chr, 6); $marr = $this->placeModule($marr, $nrow, $ncol, 2, $ncol-1, $chr, 7); $marr = $this->placeModule($marr, $nrow, $ncol, 3, $ncol-1, $chr, 8); return $marr; } /** * Places the 8 bits of the second special corner case. * (Annex F - ECC 200 symbol character placement) * @param $marr array Array of symbols. * @param $nrow (int) Number of rows. * @param $ncol (int) Number of columns. * @param $chr (int) Char byte. * @return array * @protected */ protected function placeCornerB($marr, $nrow, $ncol, $chr) { $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-3, 0, $chr, 1); $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-2, 0, $chr, 2); $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 0, $chr, 3); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-4, $chr, 4); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-3, $chr, 5); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-2, $chr, 6); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-1, $chr, 7); $marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol-1, $chr, 8); return $marr; } /** * Places the 8 bits of the third special corner case. * (Annex F - ECC 200 symbol character placement) * @param $marr array Array of symbols. * @param $nrow (int) Number of rows. * @param $ncol (int) Number of columns. * @param $chr (int) Char byte. * @return array * @protected */ protected function placeCornerC($marr, $nrow, $ncol, $chr) { $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-3, 0, $chr, 1); $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-2, 0, $chr, 2); $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 0, $chr, 3); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-2, $chr, 4); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-1, $chr, 5); $marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol-1, $chr, 6); $marr = $this->placeModule($marr, $nrow, $ncol, 2, $ncol-1, $chr, 7); $marr = $this->placeModule($marr, $nrow, $ncol, 3, $ncol-1, $chr, 8); return $marr; } /** * Places the 8 bits of the fourth special corner case. * (Annex F - ECC 200 symbol character placement) * @param $marr array Array of symbols. * @param $nrow (int) Number of rows. * @param $ncol (int) Number of columns. * @param $chr (int) Char byte. * @return array * @protected */ protected function placeCornerD($marr, $nrow, $ncol, $chr) { $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 0, $chr, 1); $marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, $ncol-1, $chr, 2); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-3, $chr, 3); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-2, $chr, 4); $marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol-1, $chr, 5); $marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol-3, $chr, 6); $marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol-2, $chr, 7); $marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol-1, $chr, 8); return $marr; } /** * Build a placement map. * (Annex F - ECC 200 symbol character placement) * @param $nrow (int) Number of rows. * @param $ncol (int) Number of columns. * @return array * @protected */ protected function getPlacemetMap($nrow, $ncol) { // initialize array with zeros $marr = array_fill(0, ($nrow * $ncol), 0); // set starting values $chr = 1; $row = 4; $col = 0; do { // repeatedly first check for one of the special corner cases, then if (($row == $nrow) AND ($col == 0)) { $marr = $this->placeCornerA($marr, $nrow, $ncol, $chr); ++$chr; } if (($row == ($nrow - 2)) AND ($col == 0) AND ($ncol % 4)) { $marr = $this->placeCornerB($marr, $nrow, $ncol, $chr); ++$chr; } if (($row == ($nrow - 2)) AND ($col == 0) AND (($ncol % 8) == 4)) { $marr = $this->placeCornerC($marr, $nrow, $ncol, $chr); ++$chr; } if (($row == ($nrow + 4)) AND ($col == 2) AND (!($ncol % 8))) { $marr = $this->placeCornerD($marr, $nrow, $ncol, $chr); ++$chr; } // sweep upward diagonally, inserting successive characters, do { if (($row < $nrow) AND ($col >= 0) AND (!$marr[(($row * $ncol) + $col)])) { $marr = $this->placeUtah($marr, $nrow, $ncol, $row, $col, $chr); ++$chr; } $row -= 2; $col += 2; } while (($row >= 0) AND ($col < $ncol)); ++$row; $col += 3; // & then sweep downward diagonally, inserting successive characters,... do { if (($row >= 0) AND ($col < $ncol) AND (!$marr[(($row * $ncol) + $col)])) { $marr = $this->placeUtah($marr, $nrow, $ncol, $row, $col, $chr); ++$chr; } $row += 2; $col -= 2; } while (($row < $nrow) AND ($col >= 0)); $row += 3; ++$col; // ... until the entire array is scanned } while (($row < $nrow) OR ($col < $ncol)); // lastly, if the lower righthand corner is untouched, fill in fixed pattern if (!$marr[(($nrow * $ncol) - 1)]) { $marr[(($nrow * $ncol) - 1)] = 1; $marr[(($nrow * $ncol) - $ncol - 2)] = 1; } return $marr; } } // end DataMatrix class //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/datamatrix.php
PHP
gpl2
42,361
<?php //============================================================+ // File name : spotcolors.php // Version : 1.0.001 // Begin : 2010-11-11 // Last Update : 2011-10-03 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // ------------------------------------------------------------------- // Copyright (C) 2002-2011 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Array of Spot Colors for TCPDF library // //============================================================+ /** * @file * Arrays of Spot Colors for TCPDF library * @author Nicola Asuni * @package com.tecnick.tcpdf * @since 5.9.012 (2010-11-11) */ /** * Array of Spot colors (C,M,Y,K,name) * Color keys must be in lowercase and without spaces. * As long as no open standard for spot colours exists, you have to buy a colour book by one of the colour manufacturers and insert the values and names of spot colours directly. * Common industry standard spot colors are: ANPA-COLOR, DIC, FOCOLTONE, GCMI, HKS, PANTONE, TOYO, TRUMATCH. */ $spotcolor = array ( // the following are just examples, fill the array with your own values 'mytcpdfblack' => array(0, 0, 0, 100, 'My TCPDF Black'), 'mytcpdfred' => array(30, 100, 90, 10, 'My TCPDF Red'), 'mytcpdfgreen' => array(100, 30, 100, 0, 'My TCPDF Green'), 'mytcpdfblue' => array(100, 60, 10, 5, 'My TCPDF Blue'), 'mytcpdfyellow' => array(0, 20, 100, 0, 'My TCPDF Yellow'), // ... ); //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/spotcolors.php
PHP
gpl2
2,554
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=500; $cw=array(0=>250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 30=>250,31=>250,32=>250,33=>333,34=>408,35=>500,36=>500,37=>833,38=>778,39=>180, 40=>333,41=>333,42=>500,43=>564,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500, 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>278,59=>278, 60=>564,61=>564,62=>564,63=>444,64=>921,65=>722,66=>667,67=>667,68=>722,69=>611, 70=>556,71=>722,72=>722,73=>333,74=>389,75=>722,76=>611,77=>889,78=>722,79=>722, 80=>556,81=>722,82=>667,83=>556,84=>611,85=>722,86=>722,87=>944,88=>722,89=>722, 90=>611,91=>333,92=>278,93=>333,94=>469,95=>500,96=>333,97=>444,98=>500,99=>444, 100=>500,101=>444,102=>333,103=>500,104=>500,105=>278,106=>278,107=>500,108=>278, 109=>778,110=>500,111=>500,112=>500,113=>500,114=>333,115=>389,116=>278,117=>500, 118=>500,119=>722,120=>500,121=>500,122=>444,123=>480,124=>200,125=>480,126=>541, 127=>350,128=>500,129=>350,130=>333,131=>500,132=>444,133=>1000,134=>500,135=>500, 136=>333,137=>1000,138=>556,139=>333,140=>889,141=>350,142=>611,143=>350,144=>350, 145=>333,146=>333,147=>444,148=>444,149=>350,150=>500,151=>1000,152=>333,153=>980, 154=>389,155=>333,156=>722,157=>350,158=>444,159=>722,160=>250,161=>333,162=>500, 163=>500,164=>500,165=>500,166=>200,167=>500,168=>333,169=>760,170=>276,171=>500, 172=>564,173=>333,174=>760,175=>333,176=>400,177=>564,178=>300,179=>300,180=>333, 181=>500,182=>453,183=>250,184=>333,185=>300,186=>310,187=>500,188=>750,189=>750, 190=>750,191=>444,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>889, 199=>667,200=>611,201=>611,202=>611,203=>611,204=>333,205=>333,206=>333,207=>333, 208=>722,209=>722,210=>722,211=>722,212=>722,213=>722,214=>722,215=>564,216=>722, 217=>722,218=>722,219=>722,220=>722,221=>722,222=>556,223=>500,224=>444,225=>444, 226=>444,227=>444,228=>444,229=>444,230=>667,231=>444,232=>444,233=>444,234=>444, 235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>500,242=>500,243=>500, 244=>500,245=>500,246=>500,247=>564,248=>500,249=>500,250=>500,251=>500,252=>500, 253=>500,254=>500,255=>500); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/times.php
PHP
gpl2
2,336
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=600; $cw=array(0=>600,1=>600,2=>600,3=>600,4=>600,5=>600,6=>600,7=>600,8=>600,9=>600, 10=>600,11=>600,12=>600,13=>600,14=>600,15=>600,16=>600,17=>600,18=>600,19=>600, 20=>600,21=>600,22=>600,23=>600,24=>600,25=>600,26=>600,27=>600,28=>600,29=>600, 30=>600,31=>600,32=>600,33=>600,34=>600,35=>600,36=>600,37=>600,38=>600,39=>600, 40=>600,41=>600,42=>600,43=>600,44=>600,45=>600,46=>600,47=>600,48=>600,49=>600, 50=>600,51=>600,52=>600,53=>600,54=>600,55=>600,56=>600,57=>600,58=>600,59=>600, 60=>600,61=>600,62=>600,63=>600,64=>600,65=>600,66=>600,67=>600,68=>600,69=>600, 70=>600,71=>600,72=>600,73=>600,74=>600,75=>600,76=>600,77=>600,78=>600,79=>600, 80=>600,81=>600,82=>600,83=>600,84=>600,85=>600,86=>600,87=>600,88=>600,89=>600, 90=>600,91=>600,92=>600,93=>600,94=>600,95=>600,96=>600,97=>600,98=>600,99=>600, 100=>600,101=>600,102=>600,103=>600,104=>600,105=>600,106=>600,107=>600,108=>600, 109=>600,110=>600,111=>600,112=>600,113=>600,114=>600,115=>600,116=>600,117=>600, 118=>600,119=>600,120=>600,121=>600,122=>600,123=>600,124=>600,125=>600,126=>600, 127=>600,128=>600,129=>600,130=>600,131=>600,132=>600,133=>600,134=>600,135=>600, 136=>600,137=>600,138=>600,139=>600,140=>600,141=>600,142=>600,143=>600,144=>600, 145=>600,146=>600,147=>600,148=>600,149=>600,150=>600,151=>600,152=>600,153=>600, 154=>600,155=>600,156=>600,157=>600,158=>600,159=>600,160=>600,161=>600,162=>600, 163=>600,164=>600,165=>600,166=>600,167=>600,168=>600,169=>600,170=>600,171=>600, 172=>600,173=>600,174=>600,175=>600,176=>600,177=>600,178=>600,179=>600,180=>600, 181=>600,182=>600,183=>600,184=>600,185=>600,186=>600,187=>600,188=>600,189=>600, 190=>600,191=>600,192=>600,193=>600,194=>600,195=>600,196=>600,197=>600,198=>600, 199=>600,200=>600,201=>600,202=>600,203=>600,204=>600,205=>600,206=>600,207=>600, 208=>600,209=>600,210=>600,211=>600,212=>600,213=>600,214=>600,215=>600,216=>600, 217=>600,218=>600,219=>600,220=>600,221=>600,222=>600,223=>600,224=>600,225=>600, 226=>600,227=>600,228=>600,229=>600,230=>600,231=>600,232=>600,233=>600,234=>600, 235=>600,236=>600,237=>600,238=>600,239=>600,240=>600,241=>600,242=>600,243=>600, 244=>600,245=>600,246=>600,247=>600,248=>600,249=>600,250=>600,251=>600,252=>600, 253=>600,254=>600,255=>600); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/courier.php
PHP
gpl2
2,333
<?php $type='TrueTypeUnicode'; $name='AlMohanad'; $desc=array('Ascent'=>1093,'Descent'=>-509,'CapHeight'=>1093,'Flags'=>32,'FontBBox'=>'[-278 -507 1124 1093]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); $up=-136; $ut=64; $dw=600; $cw=array( 0=>0,32=>139,33=>185,34=>308,35=>278,36=>278,37=>556,38=>463,39=>154,40=>185,41=>185,42=>278,43=>317,44=>139,45=>185,46=>139, 47=>154,48=>278,49=>278,50=>278,51=>278,52=>278,53=>278,54=>278,55=>278,56=>278,57=>278,58=>185,59=>185,60=>317,61=>317,62=>317, 63=>278,64=>517,65=>401,66=>371,67=>401,68=>402,69=>371,70=>339,71=>432,72=>430,73=>214,74=>278,75=>424,76=>369,77=>524,78=>401, 79=>432,80=>339,81=>432,82=>396,83=>309,84=>371,85=>401,86=>401,87=>556,88=>401,89=>401,90=>371,91=>185,92=>154,93=>185,94=>323, 95=>278,96=>185,97=>278,98=>309,99=>247,100=>309,101=>247,102=>185,103=>278,104=>309,105=>154,106=>185,107=>309,108=>154,109=>463,110=>309, 111=>278,112=>309,113=>309,114=>247,115=>216,116=>185,117=>309,118=>278,119=>401,120=>278,121=>278,122=>247,123=>219,124=>122,125=>219,126=>289, 8364=>278,1027=>339,8218=>185,1107=>254,8222=>278,8230=>556,8224=>278,8225=>278,710=>185,8240=>556,352=>309,8249=>185,338=>556,1036=>432,381=>371,1039=>432, 8216=>185,8217=>185,8220=>278,8221=>278,8226=>194,8211=>278,8212=>556,732=>185,8482=>556,353=>216,8250=>185,339=>401,1116=>297,382=>247,376=>401,161=>185, 162=>278,163=>278,164=>278,165=>278,166=>122,167=>278,168=>185,169=>415,170=>167,171=>278,172=>317,174=>415,175=>185,176=>222,177=>317,178=>167, 179=>167,180=>185,181=>309,182=>300,183=>139,184=>185,185=>167,186=>183,187=>278,188=>417,189=>417,190=>417,191=>278,192=>401,193=>401,194=>401, 195=>401,196=>401,197=>401,198=>556,199=>401,200=>371,201=>371,202=>371,203=>371,204=>216,205=>216,206=>216,207=>216,208=>401,209=>401,210=>432, 211=>432,212=>432,213=>432,214=>432,215=>317,216=>432,217=>401,218=>401,219=>401,220=>401,221=>401,222=>339,223=>309,224=>278,225=>278,226=>278, 227=>278,228=>278,229=>278,230=>401,231=>247,232=>247,233=>247,234=>247,235=>247,236=>154,237=>154,238=>154,239=>154,240=>278,241=>309,242=>278, 243=>278,244=>278,245=>278,246=>278,247=>317,248=>278,249=>309,250=>309,251=>309,252=>309,253=>278,254=>309,255=>278,256=>401,257=>278,258=>401, 259=>278,260=>401,261=>278,262=>401,263=>247,264=>401,265=>247,266=>401,267=>247,268=>401,269=>247,270=>401,271=>309,272=>401,273=>309,274=>371, 275=>247,276=>371,277=>247,278=>371,279=>247,280=>371,281=>247,282=>371,283=>247,284=>432,285=>278,286=>432,287=>278,288=>432,289=>278,290=>432, 291=>278,292=>432,293=>309,294=>432,295=>309,296=>216,297=>154,298=>216,299=>154,300=>216,301=>154,302=>216,303=>154,304=>216,305=>154,306=>490, 307=>270,308=>278,309=>185,310=>432,311=>309,312=>297,313=>371,314=>154,315=>371,316=>154,317=>371,318=>154,319=>371,320=>293,321=>371,322=>154, 323=>401,324=>309,325=>401,326=>309,327=>401,328=>309,329=>391,330=>401,331=>309,332=>432,333=>278,334=>432,335=>278,336=>432,337=>278,340=>401, 341=>247,342=>401,343=>247,344=>401,345=>247,346=>309,347=>216,348=>309,349=>216,350=>309,351=>216,354=>371,355=>185,356=>371,357=>185,358=>371, 359=>185,360=>401,361=>309,362=>401,363=>309,364=>401,365=>309,366=>401,367=>309,368=>401,369=>309,370=>401,371=>309,372=>556,373=>401,374=>401, 375=>278,377=>371,378=>247,379=>371,380=>247,383=>185,450=>317,477=>247,484=>432,485=>278,536=>309,537=>216,538=>371,539=>185,658=>282,711=>185, 728=>185,729=>185,730=>185,731=>185,733=>185,768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,774=>0,775=>0,776=>0,777=>0,778=>0, 779=>0,780=>0,781=>0,782=>0,783=>0,784=>0,785=>0,786=>0,787=>0,788=>0,789=>0,790=>0,791=>0,792=>0,793=>0,794=>0, 795=>0,796=>0,797=>0,798=>0,799=>0,800=>0,801=>0,802=>0,803=>0,804=>0,805=>0,806=>0,807=>0,808=>0,809=>0,810=>0, 811=>0,812=>0,813=>0,814=>0,815=>0,816=>0,817=>0,818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,824=>0,825=>0,826=>0, 827=>0,828=>0,829=>0,830=>0,831=>0,864=>0,865=>0,884=>111,885=>111,890=>0,894=>185,900=>100,901=>183,902=>401,903=>139,904=>451, 905=>532,906=>316,908=>451,910=>501,911=>451,912=>183,913=>401,914=>371,915=>339,916=>422,917=>371,918=>371,919=>432,920=>432,921=>216,922=>432, 923=>401,924=>524,925=>401,926=>361,927=>432,928=>451,929=>339,931=>361,932=>371,933=>401,934=>482,935=>401,936=>482,937=>451,938=>0,939=>401, 940=>336,941=>244,942=>336,943=>183,944=>306,945=>336,946=>306,947=>306,948=>306,949=>244,950=>275,951=>336,952=>306,953=>183,954=>338,955=>275, 956=>336,957=>275,958=>275,959=>306,960=>336,961=>306,962=>244,963=>306,964=>244,965=>306,966=>367,967=>275,968=>397,969=>397,970=>183,971=>306, 972=>306,973=>306,974=>397,976=>306,977=>306,978=>401,979=>401,980=>401,981=>367,982=>336,986=>283,987=>237,988=>339,989=>261,1024=>371,1025=>371, 1026=>371,1028=>401,1029=>309,1030=>216,1031=>216,1032=>278,1033=>573,1034=>573,1035=>449,1037=>432,1038=>401,1040=>401,1041=>371,1042=>371,1043=>328,1044=>432, 1045=>371,1046=>615,1047=>313,1048=>429,1049=>429,1050=>424,1051=>432,1052=>524,1053=>432,1054=>432,1055=>430,1056=>339,1057=>401,1058=>371,1059=>401,1060=>444, 1061=>401,1062=>429,1063=>432,1064=>618,1065=>618,1066=>482,1067=>539,1068=>350,1069=>401,1070=>619,1071=>408,1072=>278,1073=>278,1074=>279,1075=>246,1076=>309, 1077=>247,1078=>417,1079=>227,1080=>319,1081=>319,1082=>297,1083=>302,1084=>376,1085=>309,1086=>278,1087=>309,1088=>309,1089=>247,1090=>274,1091=>278,1092=>458, 1093=>278,1094=>309,1095=>309,1096=>454,1097=>454,1098=>340,1099=>423,1100=>284,1101=>247,1102=>439,1103=>284,1104=>247,1105=>247,1106=>309,1108=>247,1109=>216, 1110=>154,1111=>154,1112=>185,1113=>440,1114=>437,1115=>309,1117=>309,1118=>278,1119=>309,1164=>339,1165=>284,1166=>339,1167=>309,1168=>339,1169=>254,1170=>339, 1171=>254,1172=>339,1173=>254,1174=>615,1175=>417,1176=>322,1177=>216,1178=>432,1179=>297,1180=>432,1181=>297,1182=>432,1183=>297,1184=>537,1185=>352,1186=>432, 1187=>309,1188=>563,1189=>408,1190=>432,1191=>461,1192=>401,1193=>247,1194=>401,1195=>247,1196=>371,1197=>274,1198=>401,1199=>278,1200=>401,1201=>278,1202=>401, 1203=>278,1204=>581,1205=>432,1206=>432,1207=>309,1208=>432,1209=>309,1210=>432,1211=>309,1212=>367,1213=>247,1214=>367,1215=>247,1216=>216,1217=>615,1218=>417, 1219=>432,1220=>297,1223=>432,1224=>309,1227=>432,1228=>309,1232=>401,1233=>278,1234=>401,1235=>278,1236=>556,1237=>401,1238=>371,1239=>247,1240=>367,1241=>247, 1242=>367,1243=>247,1244=>615,1245=>417,1246=>313,1247=>227,1248=>322,1249=>216,1250=>432,1251=>309,1252=>432,1253=>309,1254=>432,1255=>278,1256=>432,1257=>278, 1258=>432,1259=>278,1260=>401,1261=>247,1262=>401,1263=>278,1264=>401,1265=>278,1266=>401,1267=>278,1268=>432,1269=>309,1272=>548,1273=>423,1488=>280,1489=>280, 1490=>174,1491=>280,1492=>280,1493=>158,1494=>158,1495=>280,1496=>280,1497=>158,1498=>287,1499=>280,1500=>280,1501=>280,1502=>280,1503=>156,1504=>158,1505=>280, 1506=>280,1507=>292,1508=>280,1509=>273,1510=>280,1511=>305,1512=>285,1513=>299,1514=>280,1548=>195,1563=>246,1567=>340,1569=>392,1570=>306,1571=>247,1572=>447, 1573=>247,1574=>602,1575=>192,1576=>635,1577=>369,1578=>635,1579=>635,1580=>548,1581=>1173,1582=>548,1583=>363,1584=>363,1585=>439,1586=>442,1587=>875,1588=>875, 1589=>1061,1590=>1061,1591=>811,1592=>811,1593=>549,1594=>547,1600=>389,1601=>755,1602=>574,1603=>717,1604=>555,1605=>423,1606=>532,1607=>371,1608=>454,1609=>633, 1610=>643,1611=>-19,1612=>-26,1613=>-20,1614=>-19,1615=>-18,1616=>-19,1617=>-19,1618=>-15,1632=>383,1633=>383,1634=>383,1635=>383,1636=>383,1637=>383,1638=>383, 1639=>383,1640=>383,1641=>383,1642=>383,1645=>398,7936=>336,7937=>336,7938=>336,7939=>336,7940=>336,7941=>336,7942=>336,7943=>336,7944=>401,7945=>401,7946=>401, 7947=>401,7948=>401,7949=>401,7950=>401,7951=>401,7952=>244,7953=>244,7954=>244,7955=>244,7956=>244,7957=>244,7960=>371,7961=>371,7962=>371,7963=>371,7964=>371, 7965=>371,7968=>336,7969=>336,7970=>336,7971=>336,7972=>336,7973=>336,7974=>336,7975=>336,7976=>432,7977=>432,7978=>432,7979=>432,7980=>432,7981=>432,7982=>432, 7983=>432,7984=>183,7985=>183,7986=>183,7987=>183,7988=>183,7989=>183,7990=>183,7991=>183,7992=>216,7993=>216,7994=>216,7995=>216,7996=>216,7997=>216,7998=>216, 7999=>216,8000=>306,8001=>306,8002=>306,8003=>306,8004=>306,8005=>306,8008=>432,8009=>432,8010=>432,8011=>432,8012=>432,8013=>432,8016=>306,8017=>306,8018=>306, 8019=>306,8020=>306,8021=>306,8022=>306,8023=>306,8025=>401,8027=>401,8029=>401,8031=>401,8032=>397,8033=>397,8034=>397,8035=>397,8036=>397,8037=>397,8038=>397, 8039=>397,8040=>451,8041=>451,8042=>451,8043=>451,8044=>451,8045=>451,8046=>451,8047=>451,8048=>336,8049=>336,8050=>244,8051=>244,8052=>336,8053=>336,8054=>183, 8055=>183,8056=>306,8057=>306,8058=>306,8059=>306,8060=>397,8061=>397,8064=>336,8065=>336,8066=>336,8067=>336,8068=>336,8069=>336,8070=>336,8071=>336,8072=>401, 8073=>401,8074=>401,8075=>401,8076=>401,8077=>401,8078=>401,8079=>401,8080=>336,8081=>336,8082=>336,8083=>336,8084=>336,8085=>336,8086=>336,8087=>336,8088=>432, 8089=>432,8090=>432,8091=>432,8092=>432,8093=>432,8094=>432,8095=>432,8096=>397,8097=>397,8098=>397,8099=>397,8100=>397,8101=>397,8102=>397,8103=>397,8104=>451, 8105=>451,8106=>451,8107=>451,8108=>451,8109=>451,8110=>451,8111=>451,8112=>336,8113=>336,8114=>336,8115=>336,8116=>336,8118=>336,8119=>336,8120=>401,8121=>401, 8122=>401,8123=>401,8124=>401,8125=>278,8126=>0,8127=>278,8128=>278,8129=>306,8130=>336,8131=>336,8132=>336,8134=>336,8135=>336,8136=>371,8137=>371,8138=>432, 8139=>432,8140=>432,8141=>278,8142=>278,8143=>278,8144=>183,8145=>183,8146=>183,8147=>183,8150=>183,8151=>183,8152=>216,8153=>216,8154=>216,8155=>216,8157=>278, 8158=>278,8159=>278,8160=>306,8161=>306,8162=>306,8163=>306,8164=>306,8165=>306,8166=>306,8167=>306,8168=>401,8169=>401,8170=>401,8171=>401,8172=>339,8173=>306, 8174=>306,8175=>278,8178=>397,8179=>397,8180=>397,8182=>397,8183=>397,8184=>432,8185=>432,8186=>451,8187=>451,8188=>451,8189=>278,8190=>278,8208=>185,8209=>185, 8219=>185,8223=>278,8227=>311,8241=>1011,8248=>261,8251=>404,8253=>386,8255=>529,8256=>529,8257=>188,8258=>517,8259=>185,8260=>93,8261=>184,8262=>184,8267=>300, 8308=>167,8309=>556,8321=>167,8322=>167,8323=>167,8324=>167,8352=>394,8353=>401,8354=>435,8355=>339,8356=>278,8357=>463,8358=>401,8359=>389,8361=>556,8470=>530, 8471=>415,8479=>401,8483=>401,8486=>451,8487=>451,8494=>306,8498=>339,8543=>417,8706=>274,8710=>340,8721=>396,8722=>317,8730=>305,8734=>418,8800=>317,8804=>317, 8805=>317,9674=>274,12353=>556,12354=>556,12355=>556,12356=>556,12357=>556,12358=>556,12359=>556,12360=>556,12361=>556,12362=>556,12363=>556,12364=>556,12365=>556,12366=>556, 12367=>556,12368=>556,12369=>556,12370=>556,12371=>556,12372=>556,12373=>556,12374=>556,12375=>556,12376=>556,12377=>556,12378=>556,12379=>556,12380=>556,12381=>556,12382=>556, 12383=>556,12384=>556,12385=>556,12386=>556,12387=>556,12388=>556,12389=>556,12390=>556,12391=>556,12392=>556,12393=>556,12394=>556,12395=>556,12396=>556,12397=>556,12398=>556, 12399=>556,12400=>556,12401=>556,12402=>556,12403=>556,12404=>556,12405=>556,12406=>556,12407=>556,12408=>556,12409=>556,12410=>556,12411=>556,12412=>556,12413=>556,12414=>556, 12415=>556,12416=>556,12417=>556,12418=>556,12419=>556,12420=>556,12421=>556,12422=>556,12423=>556,12424=>556,12425=>556,12426=>556,12427=>556,12428=>556,12429=>556,12430=>556, 12431=>556,12432=>556,12433=>556,12434=>556,12435=>556,12449=>556,12450=>556,12451=>556,12452=>556,12453=>556,12454=>556,12455=>556,12456=>556,12457=>556,12458=>556,12459=>556, 12460=>556,12461=>556,12462=>556,12463=>556,12464=>556,12465=>556,12466=>556,12467=>556,12468=>556,12469=>556,12470=>556,12471=>556,12472=>556,12473=>556,12474=>556,12475=>556, 12476=>556,12477=>556,12478=>556,12479=>556,12480=>556,12481=>556,12482=>556,12483=>556,12484=>556,12485=>556,12486=>556,12487=>556,12488=>556,12489=>556,12490=>556,12491=>556, 12492=>556,12493=>556,12494=>556,12495=>556,12496=>556,12497=>556,12498=>556,12499=>556,12500=>556,12501=>556,12502=>556,12503=>556,12504=>556,12505=>556,12506=>556,12507=>556, 12508=>556,12509=>556,12510=>556,12511=>556,12512=>556,12513=>556,12514=>556,12515=>556,12516=>556,12517=>556,12518=>556,12519=>556,12520=>556,12521=>556,12522=>556,12523=>556, 12524=>556,12525=>556,12526=>556,12527=>556,12528=>556,12529=>556,12530=>556,12531=>556,12532=>556,12533=>556,12534=>556,63033=>278,63034=>278,63035=>278,63036=>278,63037=>278, 63038=>278,63039=>278,63040=>278,63041=>278,63171=>185,63196=>278,64256=>309,64257=>309,64258=>309,64259=>463,64260=>463,64262=>402,64606=>0,64607=>0,64608=>0,64609=>0, 64610=>0,64830=>467,64831=>467,65010=>814,65152=>392,65153=>306,65154=>281,65155=>247,65156=>250,65157=>447,65158=>412,65159=>247,65160=>222,65161=>602,65162=>535,65163=>360, 65164=>329,65165=>192,65166=>220,65167=>635,65168=>644,65169=>338,65170=>321,65171=>369,65172=>419,65173=>635,65174=>644,65175=>345,65176=>336,65177=>635,65178=>644,65179=>393, 65180=>345,65181=>548,65182=>553,65183=>637,65184=>652,65185=>548,65186=>546,65187=>637,65188=>656,65189=>548,65190=>544,65191=>637,65192=>656,65193=>363,65194=>439,65195=>363, 65196=>439,65197=>440,65198=>471,65199=>439,65200=>474,65201=>875,65202=>871,65203=>608,65204=>588,65205=>875,65206=>871,65207=>609,65208=>587,65209=>1061,65210=>1033,65211=>794, 65212=>758,65213=>1061,65214=>1033,65215=>794,65216=>761,65217=>811,65218=>793,65219=>659,65220=>647,65221=>811,65222=>793,65223=>659,65224=>642,65225=>549,65226=>481,65227=>512, 65228=>409,65229=>547,65230=>476,65231=>512,65232=>409,65233=>755,65234=>748,65235=>416,65236=>442,65237=>574,65238=>550,65239=>416,65240=>442,65241=>717,65242=>687,65243=>883, 65244=>409,65245=>555,65246=>511,65247=>338,65248=>297,65249=>423,65250=>478,65251=>489,65252=>476,65253=>532,65254=>548,65255=>336,65256=>326,65257=>371,65258=>391,65259=>524, 65260=>412,65261=>454,65262=>412,65263=>633,65264=>566,65265=>643,65266=>560,65267=>357,65268=>333,65269=>623,65270=>617,65271=>603,65272=>621,65273=>576,65274=>617,65275=>576, 65276=>625); $enc=''; $diff=''; $file='almohanad.z'; $ctg='almohanad.ctg.z'; $originalsize=227760; // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/almohanad.php
PHP
gpl2
14,074
<?php $type = 'cidfont0'; $name = 'MSungStd-Light-Acro'; $displayname = 'MSung Light (Trad. Chinese)'; $desc = array( 'Ascent' => 880, 'Descent' => -120, 'CapHeight' => 880, 'Flags' => 6, 'FontBBox' => '[-160 -249 1015 1071]', 'ItalicAngle' => 0, 'StemV' => 93, ); $cidinfo = array( 'Registry' => 'Adobe', 'Ordering' => 'CNS1', 'Supplement' => '3', ); $enc = 'UniCNS-UCS2-H'; $up = -130; $ut = 40; $dw = 1000; $cw = array( 32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240, 42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500, 52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667, 62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771, 72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823, 82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344, 92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438, 102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500, 112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458, 122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667, 17601 => 500, ); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/msungstdlight.php
PHP
gpl2
1,550
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=556; $cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, 10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, 20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, 30=>278,31=>278,32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191, 40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, 50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278, 60=>584,61=>584,62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667, 70=>611,71=>778,72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778, 80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, 90=>611,91=>278,92=>278,93=>278,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500, 100=>556,101=>556,102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222, 109=>833,110=>556,111=>556,112=>556,113=>556,114=>333,115=>500,116=>278,117=>556, 118=>500,119=>722,120=>500,121=>500,122=>500,123=>334,124=>260,125=>334,126=>584, 127=>350,128=>556,129=>350,130=>222,131=>556,132=>333,133=>1000,134=>556,135=>556, 136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, 145=>222,146=>222,147=>333,148=>333,149=>350,150=>556,151=>1000,152=>333,153=>1000, 154=>500,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, 163=>556,164=>556,165=>556,166=>260,167=>556,168=>333,169=>737,170=>370,171=>556, 172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, 181=>556,182=>537,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, 190=>834,191=>611,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>1000, 199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, 217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, 226=>556,227=>556,228=>556,229=>556,230=>889,231=>500,232=>556,233=>556,234=>556, 235=>556,236=>278,237=>278,238=>278,239=>278,240=>556,241=>556,242=>556,243=>556, 244=>556,245=>556,246=>556,247=>584,248=>611,249=>556,250=>556,251=>556,252=>556, 253=>500,254=>556,255=>500); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/helveticai.php
PHP
gpl2
2,340
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=500; $cw=array(0=>250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 30=>250,31=>250,32=>250,33=>333,34=>713,35=>500,36=>549,37=>833,38=>778,39=>439, 40=>333,41=>333,42=>500,43=>549,44=>250,45=>549,46=>250,47=>278,48=>500,49=>500, 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>278,59=>278, 60=>549,61=>549,62=>549,63=>444,64=>549,65=>722,66=>667,67=>722,68=>612,69=>611, 70=>763,71=>603,72=>722,73=>333,74=>631,75=>722,76=>686,77=>889,78=>722,79=>722, 80=>768,81=>741,82=>556,83=>592,84=>611,85=>690,86=>439,87=>768,88=>645,89=>795, 90=>611,91=>333,92=>863,93=>333,94=>658,95=>500,96=>500,97=>631,98=>549,99=>549, 100=>494,101=>439,102=>521,103=>411,104=>603,105=>329,106=>603,107=>549,108=>549, 109=>576,110=>521,111=>549,112=>549,113=>521,114=>549,115=>603,116=>439,117=>576, 118=>713,119=>686,120=>493,121=>686,122=>494,123=>480,124=>200,125=>480,126=>549, 127=>0,128=>0,129=>0,130=>0,131=>0,132=>0,133=>0,134=>0,135=>0,136=>0,137=>0, 138=>0,139=>0,140=>0,141=>0,142=>0,143=>0,144=>0,145=>0,146=>0,147=>0,148=>0, 149=>0,150=>0,151=>0,152=>0,153=>0,154=>0,155=>0,156=>0,157=>0,158=>0,159=>0, 160=>750,161=>620,162=>247,163=>549,164=>167,165=>713,166=>500,167=>753,168=>753, 169=>753,170=>753,171=>1042,172=>987,173=>603,174=>987,175=>603,176=>400,177=>549, 178=>411,179=>549,180=>549,181=>713,182=>494,183=>460,184=>549,185=>549,186=>549, 187=>549,188=>1000,189=>603,190=>1000,191=>658,192=>823,193=>686,194=>795,195=>987, 196=>768,197=>768,198=>823,199=>768,200=>768,201=>713,202=>713,203=>713,204=>713, 205=>713,206=>713,207=>713,208=>768,209=>713,210=>790,211=>790,212=>890,213=>823, 214=>549,215=>250,216=>713,217=>603,218=>603,219=>1042,220=>987,221=>603,222=>987, 223=>603,224=>494,225=>329,226=>790,227=>790,228=>786,229=>713,230=>384,231=>384, 232=>384,233=>384,234=>384,235=>384,236=>494,237=>494,238=>494,239=>494,240=>0, 241=>329,242=>274,243=>686,244=>686,245=>686,246=>384,247=>384,248=>384,249=>384, 250=>384,251=>384,252=>494,253=>494,254=>494,255=>0); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/symbol.php
PHP
gpl2
2,266
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=556; $cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, 10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, 20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, 30=>278,31=>278,32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191, 40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, 50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278, 60=>584,61=>584,62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667, 70=>611,71=>778,72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778, 80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, 90=>611,91=>278,92=>278,93=>278,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500, 100=>556,101=>556,102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222, 109=>833,110=>556,111=>556,112=>556,113=>556,114=>333,115=>500,116=>278,117=>556, 118=>500,119=>722,120=>500,121=>500,122=>500,123=>334,124=>260,125=>334,126=>584, 127=>350,128=>556,129=>350,130=>222,131=>556,132=>333,133=>1000,134=>556,135=>556, 136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, 145=>222,146=>222,147=>333,148=>333,149=>350,150=>556,151=>1000,152=>333,153=>1000, 154=>500,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, 163=>556,164=>556,165=>556,166=>260,167=>556,168=>333,169=>737,170=>370,171=>556, 172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, 181=>556,182=>537,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, 190=>834,191=>611,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>1000, 199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, 217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, 226=>556,227=>556,228=>556,229=>556,230=>889,231=>500,232=>556,233=>556,234=>556, 235=>556,236=>278,237=>278,238=>278,239=>278,240=>556,241=>556,242=>556,243=>556, 244=>556,245=>556,246=>556,247=>584,248=>611,249=>556,250=>556,251=>556,252=>556, 253=>500,254=>556,255=>500); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/helvetica.php
PHP
gpl2
2,340
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=556; $cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, 10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, 20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, 30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238, 40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, 50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333, 60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667, 70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778, 80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, 90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556, 100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278, 109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611, 118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584, 127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556, 136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, 145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000, 154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, 163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556, 172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, 181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, 190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000, 199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, 217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, 226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556, 235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611, 244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611, 253=>556,254=>611,255=>556); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/helveticabi.php
PHP
gpl2
2,339
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=500; $cw=array(0=>250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 30=>250,31=>250,32=>250,33=>333,34=>420,35=>500,36=>500,37=>833,38=>778,39=>214, 40=>333,41=>333,42=>500,43=>675,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500, 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333, 60=>675,61=>675,62=>675,63=>500,64=>920,65=>611,66=>611,67=>667,68=>722,69=>611, 70=>611,71=>722,72=>722,73=>333,74=>444,75=>667,76=>556,77=>833,78=>667,79=>722, 80=>611,81=>722,82=>611,83=>500,84=>556,85=>722,86=>611,87=>833,88=>611,89=>556, 90=>556,91=>389,92=>278,93=>389,94=>422,95=>500,96=>333,97=>500,98=>500,99=>444, 100=>500,101=>444,102=>278,103=>500,104=>500,105=>278,106=>278,107=>444,108=>278, 109=>722,110=>500,111=>500,112=>500,113=>500,114=>389,115=>389,116=>278,117=>500, 118=>444,119=>667,120=>444,121=>444,122=>389,123=>400,124=>275,125=>400,126=>541, 127=>350,128=>500,129=>350,130=>333,131=>500,132=>556,133=>889,134=>500,135=>500, 136=>333,137=>1000,138=>500,139=>333,140=>944,141=>350,142=>556,143=>350,144=>350, 145=>333,146=>333,147=>556,148=>556,149=>350,150=>500,151=>889,152=>333,153=>980, 154=>389,155=>333,156=>667,157=>350,158=>389,159=>556,160=>250,161=>389,162=>500, 163=>500,164=>500,165=>500,166=>275,167=>500,168=>333,169=>760,170=>276,171=>500, 172=>675,173=>333,174=>760,175=>333,176=>400,177=>675,178=>300,179=>300,180=>333, 181=>500,182=>523,183=>250,184=>333,185=>300,186=>310,187=>500,188=>750,189=>750, 190=>750,191=>500,192=>611,193=>611,194=>611,195=>611,196=>611,197=>611,198=>889, 199=>667,200=>611,201=>611,202=>611,203=>611,204=>333,205=>333,206=>333,207=>333, 208=>722,209=>667,210=>722,211=>722,212=>722,213=>722,214=>722,215=>675,216=>722, 217=>722,218=>722,219=>722,220=>722,221=>556,222=>611,223=>500,224=>500,225=>500, 226=>500,227=>500,228=>500,229=>500,230=>667,231=>444,232=>444,233=>444,234=>444, 235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>500,242=>500,243=>500, 244=>500,245=>500,246=>500,247=>675,248=>500,249=>500,250=>500,251=>500,252=>500, 253=>444,254=>500,255=>444); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/timesi.php
PHP
gpl2
2,334
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=500; $cw=array(0=>250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 30=>250,31=>250,32=>250,33=>333,34=>555,35=>500,36=>500,37=>1000,38=>833,39=>278, 40=>333,41=>333,42=>500,43=>570,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500, 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333, 60=>570,61=>570,62=>570,63=>500,64=>930,65=>722,66=>667,67=>722,68=>722,69=>667, 70=>611,71=>778,72=>778,73=>389,74=>500,75=>778,76=>667,77=>944,78=>722,79=>778, 80=>611,81=>778,82=>722,83=>556,84=>667,85=>722,86=>722,87=>1000,88=>722,89=>722, 90=>667,91=>333,92=>278,93=>333,94=>581,95=>500,96=>333,97=>500,98=>556,99=>444, 100=>556,101=>444,102=>333,103=>500,104=>556,105=>278,106=>333,107=>556,108=>278, 109=>833,110=>556,111=>500,112=>556,113=>556,114=>444,115=>389,116=>333,117=>556, 118=>500,119=>722,120=>500,121=>500,122=>444,123=>394,124=>220,125=>394,126=>520, 127=>350,128=>500,129=>350,130=>333,131=>500,132=>500,133=>1000,134=>500,135=>500, 136=>333,137=>1000,138=>556,139=>333,140=>1000,141=>350,142=>667,143=>350,144=>350, 145=>333,146=>333,147=>500,148=>500,149=>350,150=>500,151=>1000,152=>333,153=>1000, 154=>389,155=>333,156=>722,157=>350,158=>444,159=>722,160=>250,161=>333,162=>500, 163=>500,164=>500,165=>500,166=>220,167=>500,168=>333,169=>747,170=>300,171=>500, 172=>570,173=>333,174=>747,175=>333,176=>400,177=>570,178=>300,179=>300,180=>333, 181=>556,182=>540,183=>250,184=>333,185=>300,186=>330,187=>500,188=>750,189=>750, 190=>750,191=>500,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000, 199=>722,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389, 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>570,216=>778, 217=>722,218=>722,219=>722,220=>722,221=>722,222=>611,223=>556,224=>500,225=>500, 226=>500,227=>500,228=>500,229=>500,230=>722,231=>444,232=>444,233=>444,234=>444, 235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>556,242=>500,243=>500, 244=>500,245=>500,246=>500,247=>570,248=>500,249=>556,250=>556,251=>556,252=>556, 253=>500,254=>556,255=>500); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/timesb.php
PHP
gpl2
2,341
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=556; $cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, 10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, 20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, 30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238, 40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, 50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333, 60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667, 70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778, 80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, 90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556, 100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278, 109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611, 118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584, 127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556, 136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, 145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000, 154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, 163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556, 172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, 181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, 190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000, 199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, 217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, 226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556, 235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611, 244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611, 253=>556,254=>611,255=>556); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/helveticab.php
PHP
gpl2
2,339
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=788; $cw=array(0=>0,1=>0,2=>0,3=>0,4=>0,5=>0,6=>0,7=>0,8=>0,9=>0,10=>0,11=>0,12=>0, 13=>0,14=>0,15=>0,16=>0,17=>0,18=>0,19=>0,20=>0,21=>0,22=>0,23=>0,24=>0,25=>0, 26=>0,27=>0,28=>0,29=>0,30=>0,31=>0,32=>278,33=>974,34=>961,35=>974,36=>980, 37=>719,38=>789,39=>790,40=>791,41=>690,42=>960,43=>939,44=>549,45=>855,46=>911, 47=>933,48=>911,49=>945,50=>974,51=>755,52=>846,53=>762,54=>761,55=>571,56=>677, 57=>763,58=>760,59=>759,60=>754,61=>494,62=>552,63=>537,64=>577,65=>692,66=>786, 67=>788,68=>788,69=>790,70=>793,71=>794,72=>816,73=>823,74=>789,75=>841,76=>823, 77=>833,78=>816,79=>831,80=>923,81=>744,82=>723,83=>749,84=>790,85=>792,86=>695, 87=>776,88=>768,89=>792,90=>759,91=>707,92=>708,93=>682,94=>701,95=>826,96=>815, 97=>789,98=>789,99=>707,100=>687,101=>696,102=>689,103=>786,104=>787,105=>713, 106=>791,107=>785,108=>791,109=>873,110=>761,111=>762,112=>762,113=>759,114=>759, 115=>892,116=>892,117=>788,118=>784,119=>438,120=>138,121=>277,122=>415,123=>392, 124=>392,125=>668,126=>668,127=>0,128=>390,129=>390,130=>317,131=>317,132=>276, 133=>276,134=>509,135=>509,136=>410,137=>410,138=>234,139=>234,140=>334,141=>334, 142=>0,143=>0,144=>0,145=>0,146=>0,147=>0,148=>0,149=>0,150=>0,151=>0,152=>0, 153=>0,154=>0,155=>0,156=>0,157=>0,158=>0,159=>0,160=>0,161=>732,162=>544,163=>544, 164=>910,165=>667,166=>760,167=>760,168=>776,169=>595,170=>694,171=>626,172=>788, 173=>788,174=>788,175=>788,176=>788,177=>788,178=>788,179=>788,180=>788,181=>788, 182=>788,183=>788,184=>788,185=>788,186=>788,187=>788,188=>788,189=>788,190=>788, 191=>788,192=>788,193=>788,194=>788,195=>788,196=>788,197=>788,198=>788,199=>788, 200=>788,201=>788,202=>788,203=>788,204=>788,205=>788,206=>788,207=>788,208=>788, 209=>788,210=>788,211=>788,212=>894,213=>838,214=>1016,215=>458,216=>748,217=>924, 218=>748,219=>918,220=>927,221=>928,222=>928,223=>834,224=>873,225=>828,226=>924, 227=>924,228=>917,229=>930,230=>931,231=>463,232=>883,233=>836,234=>836,235=>867, 236=>867,237=>696,238=>696,239=>874,240=>0,241=>874,242=>760,243=>946,244=>771, 245=>865,246=>771,247=>888,248=>967,249=>888,250=>831,251=>873,252=>927,253=>970, 254=>918,255=>0); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/zapfdingbats.php
PHP
gpl2
2,225
<?php // core font definition file for TCPDF (www.tcpdf.org) $type='core'; $dw=500; $cw=array(0=>250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250, 10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250, 20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250, 30=>250,31=>250,32=>250,33=>389,34=>555,35=>500,36=>500,37=>833,38=>778,39=>278, 40=>333,41=>333,42=>500,43=>570,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500, 50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333, 60=>570,61=>570,62=>570,63=>500,64=>832,65=>667,66=>667,67=>667,68=>722,69=>667, 70=>667,71=>722,72=>778,73=>389,74=>500,75=>667,76=>611,77=>889,78=>722,79=>722, 80=>611,81=>722,82=>667,83=>556,84=>611,85=>722,86=>667,87=>889,88=>667,89=>611, 90=>611,91=>333,92=>278,93=>333,94=>570,95=>500,96=>333,97=>500,98=>500,99=>444, 100=>500,101=>444,102=>333,103=>500,104=>556,105=>278,106=>278,107=>500,108=>278, 109=>778,110=>556,111=>500,112=>500,113=>500,114=>389,115=>389,116=>278,117=>556, 118=>444,119=>667,120=>500,121=>444,122=>389,123=>348,124=>220,125=>348,126=>570, 127=>350,128=>500,129=>350,130=>333,131=>500,132=>500,133=>1000,134=>500,135=>500, 136=>333,137=>1000,138=>556,139=>333,140=>944,141=>350,142=>611,143=>350,144=>350, 145=>333,146=>333,147=>500,148=>500,149=>350,150=>500,151=>1000,152=>333,153=>1000, 154=>389,155=>333,156=>722,157=>350,158=>389,159=>611,160=>250,161=>389,162=>500, 163=>500,164=>500,165=>500,166=>220,167=>500,168=>333,169=>747,170=>266,171=>500, 172=>606,173=>333,174=>747,175=>333,176=>400,177=>570,178=>300,179=>300,180=>333, 181=>576,182=>500,183=>250,184=>333,185=>300,186=>300,187=>500,188=>750,189=>750, 190=>750,191=>500,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>944, 199=>667,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389, 208=>722,209=>722,210=>722,211=>722,212=>722,213=>722,214=>722,215=>570,216=>722, 217=>722,218=>722,219=>722,220=>722,221=>611,222=>611,223=>500,224=>500,225=>500, 226=>500,227=>500,228=>500,229=>500,230=>722,231=>444,232=>444,233=>444,234=>444, 235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>556,242=>500,243=>500, 244=>500,245=>500,246=>500,247=>570,248=>500,249=>556,250=>556,251=>556,252=>556, 253=>444,254=>500,255=>444); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/timesbi.php
PHP
gpl2
2,337
<?php $type='TrueTypeUnicode'; $name='FreeSerifItalic'; $desc=array('Ascent'=>900,'Descent'=>-300,'CapHeight'=>-29,'Flags'=>96,'FontBBox'=>'[-879 -434 1558 900]','ItalicAngle'=>-16.5,'StemV'=>70,'MissingWidth'=>600); $up=-125; $ut=50; $dw=600; $cw=array( 32=>250,33=>333,34=>420,35=>500,36=>500,37=>833,38=>778,39=>214,40=>333,41=>333, 42=>500,43=>675,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500, 52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333,60=>675,61=>675, 62=>675,63=>500,64=>920,65=>611,66=>611,67=>667,68=>722,69=>604,70=>611,71=>722, 72=>722,73=>339,74=>444,75=>652,76=>556,77=>828,78=>657,79=>722,80=>603,81=>722, 82=>616,83=>500,84=>556,85=>722,86=>611,87=>833,88=>611,89=>556,90=>556,91=>389, 92=>278,93=>389,94=>422,95=>500,96=>333,97=>500,98=>500,99=>444,100=>500,101=>444, 102=>278,103=>500,104=>500,105=>278,106=>278,107=>444,108=>278,109=>722,110=>500,111=>500, 112=>500,113=>500,114=>389,115=>389,116=>278,117=>500,118=>444,119=>667,120=>444,121=>444, 122=>389,123=>400,124=>275,125=>400,126=>541,8364=>741,8218=>250,402=>278,8222=>444,8230=>889, 8224=>500,8225=>500,710=>333,8240=>1000,352=>500,8249=>250,338=>944,381=>556,8216=>250,8217=>250, 8220=>444,8221=>444,8226=>350,8211=>500,8212=>1000,732=>333,8482=>920,353=>389,8250=>250,339=>694, 382=>389,376=>556,160=>250,161=>389,162=>500,163=>500,164=>500,165=>500,166=>275,167=>500, 168=>333,169=>760,170=>276,171=>444,172=>675,173=>333,174=>760,175=>333,176=>400,177=>675, 178=>300,179=>300,180=>333,181=>500,182=>523,183=>250,184=>333,185=>250,186=>310,187=>444, 188=>750,189=>750,190=>750,191=>500,192=>611,193=>611,194=>611,195=>611,196=>611,197=>611, 198=>889,199=>667,200=>611,201=>611,202=>611,203=>611,204=>333,205=>333,206=>333,207=>333, 208=>722,209=>667,210=>722,211=>722,212=>722,213=>722,214=>722,215=>675,216=>722,217=>722, 218=>722,219=>722,220=>722,221=>556,222=>611,223=>500,224=>500,225=>500,226=>500,227=>500, 228=>500,229=>500,230=>673,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278, 238=>278,239=>278,240=>500,241=>500,242=>500,243=>500,244=>500,245=>500,246=>500,247=>675, 248=>500,249=>500,250=>500,251=>500,252=>500,253=>444,254=>500,255=>444,256=>611,257=>500, 258=>611,259=>500,260=>611,261=>500,262=>667,263=>444,264=>667,265=>444,266=>667,267=>444, 268=>667,269=>444,270=>722,271=>611,272=>722,273=>500,274=>611,275=>444,276=>611,277=>444, 278=>611,279=>444,280=>611,281=>444,282=>611,283=>444,284=>722,285=>500,286=>722,287=>500, 288=>722,289=>500,290=>722,291=>500,292=>722,293=>500,294=>722,295=>500,296=>333,297=>278, 298=>333,299=>278,300=>333,301=>278,302=>333,303=>278,304=>333,305=>278,306=>707,307=>506, 308=>444,309=>278,310=>667,311=>444,312=>444,313=>556,314=>278,315=>556,316=>278,317=>556, 318=>361,319=>556,320=>278,321=>556,322=>278,323=>667,324=>500,325=>667,326=>500,327=>667, 328=>500,329=>550,330=>721,331=>500,332=>722,333=>500,334=>722,335=>500,336=>722,337=>500, 340=>611,341=>389,342=>611,343=>389,344=>611,345=>389,346=>500,347=>389,348=>500,349=>389, 350=>500,351=>389,354=>556,355=>278,356=>556,357=>447,358=>556,359=>278,360=>722,361=>500, 362=>722,363=>500,364=>722,365=>500,366=>722,367=>500,368=>722,369=>500,370=>722,371=>500, 372=>833,373=>667,374=>556,375=>444,377=>556,378=>389,379=>556,380=>389,383=>278,384=>500, 385=>781,386=>610,387=>551,388=>611,389=>549,390=>667,391=>866,392=>703,393=>722,394=>892, 395=>682,396=>500,397=>520,398=>611,399=>722,400=>518,401=>611,403=>863,404=>611,405=>728, 406=>278,407=>333,408=>792,409=>444,410=>278,411=>480,412=>900,413=>779,414=>500,415=>722, 416=>759,417=>546,418=>908,419=>722,420=>772,421=>500,422=>611,423=>500,424=>389,425=>657, 426=>461,427=>313,428=>556,429=>335,430=>556,431=>778,432=>584,433=>747,434=>755,435=>636, 436=>549,437=>556,438=>389,439=>525,440=>558,441=>424,442=>416,443=>500,444=>615,445=>439, 446=>389,447=>500,448=>275,449=>500,450=>600,451=>333,452=>1268,453=>1091,454=>869,455=>1000, 456=>824,457=>506,458=>1101,459=>895,460=>748,461=>611,462=>500,463=>339,464=>278,465=>722, 466=>500,467=>722,468=>500,469=>722,470=>500,471=>722,472=>500,473=>722,474=>500,475=>722, 476=>500,477=>444,478=>611,479=>500,480=>611,481=>500,482=>889,483=>673,484=>722,485=>500, 486=>722,487=>500,488=>652,489=>444,490=>730,491=>500,492=>730,493=>500,494=>525,495=>446, 496=>278,497=>1258,498=>1091,499=>859,500=>817,501=>595,502=>1024,503=>607,504=>657,505=>500, 506=>611,507=>500,508=>889,509=>673,510=>722,511=>500,512=>611,513=>500,514=>611,515=>500, 516=>604,517=>444,518=>604,519=>444,520=>339,521=>278,522=>339,523=>278,524=>722,525=>500, 526=>722,527=>500,528=>616,529=>389,530=>616,531=>389,532=>722,533=>500,534=>722,535=>500, 536=>500,537=>389,538=>556,539=>278,540=>424,541=>465,542=>722,543=>500,544=>781,545=>588, 546=>568,547=>468,548=>611,549=>444,550=>611,551=>500,552=>604,553=>444,554=>722,555=>500, 556=>722,557=>500,558=>722,559=>500,560=>722,561=>500,562=>556,563=>444,564=>405,565=>597, 566=>377,567=>278,568=>775,569=>767,570=>722,571=>667,572=>444,573=>611,574=>611,575=>389, 576=>444,577=>444,578=>444,579=>667,580=>750,581=>697,582=>611,583=>444,584=>389,585=>278, 586=>796,587=>590,588=>667,589=>333,590=>722,591=>500,592=>500,593=>564,594=>564,595=>500, 596=>444,597=>444,598=>524,599=>559,600=>444,601=>444,602=>722,603=>416,604=>426,605=>674, 606=>454,607=>353,608=>624,609=>500,610=>452,611=>500,612=>582,613=>500,614=>500,615=>500, 616=>278,617=>306,618=>278,619=>278,620=>278,621=>364,622=>556,623=>722,624=>778,625=>778, 626=>614,627=>599,628=>500,629=>500,630=>668,631=>693,632=>640,633=>389,634=>389,635=>444, 636=>389,637=>333,638=>333,639=>333,640=>434,641=>456,642=>389,643=>278,644=>500,645=>466, 646=>500,647=>278,648=>278,649=>500,650=>517,651=>500,652=>444,653=>667,654=>444,655=>510, 656=>510,657=>432,658=>446,659=>439,660=>444,661=>444,662=>444,663=>444,664=>722,665=>402, 666=>454,667=>665,668=>476,669=>347,670=>444,671=>363,672=>590,673=>444,674=>444,675=>798, 676=>795,677=>805,678=>554,679=>561,680=>678,681=>614,682=>554,683=>554,684=>500,685=>500, 686=>611,687=>716,688=>300,689=>300,690=>258,691=>278,692=>278,693=>309,694=>306,695=>432, 696=>310,697=>250,698=>408,699=>333,700=>333,701=>333,702=>333,703=>333,704=>258,705=>258, 706=>374,707=>374,708=>383,709=>383,711=>333,712=>250,713=>333,714=>333,715=>333,716=>250, 717=>333,718=>333,719=>333,720=>278,721=>278,722=>333,723=>333,724=>333,725=>333,726=>333, 727=>333,728=>333,729=>333,730=>333,731=>333,733=>333,734=>336,735=>352,736=>311,737=>200, 738=>243,739=>328,740=>300,741=>460,742=>460,743=>460,744=>460,745=>460,746=>477,747=>475, 748=>339,749=>330,750=>444,751=>383,752=>383,753=>294,754=>294,755=>327,756=>261,757=>437, 758=>437,759=>333,760=>278,761=>175,762=>175,763=>175,764=>175,765=>337,766=>337,767=>326, 768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,774=>0,775=>0,776=>0,777=>0, 778=>0,779=>0,780=>0,781=>0,782=>0,783=>0,784=>0,785=>0,786=>0,787=>0, 788=>0,789=>0,790=>0,791=>0,792=>0,793=>0,794=>0,795=>0,796=>0,797=>0, 798=>0,799=>0,800=>0,801=>0,802=>0,803=>0,804=>0,805=>0,806=>0,807=>0, 808=>0,809=>0,810=>0,811=>0,812=>0,813=>0,814=>0,815=>0,816=>0,817=>0, 818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,824=>0,825=>0,826=>0,827=>0, 828=>0,829=>0,830=>0,831=>0,832=>0,833=>0,834=>0,835=>0,836=>0,837=>0, 838=>0,839=>0,840=>0,841=>0,842=>0,843=>0,844=>0,845=>0,846=>0,847=>0, 848=>0,849=>0,850=>0,851=>0,852=>0,853=>0,854=>0,855=>0,856=>0,857=>0, 858=>0,859=>0,860=>0,861=>0,862=>0,863=>0,864=>0,865=>0,866=>0,867=>0, 868=>0,869=>0,870=>0,871=>0,872=>0,873=>0,874=>0,875=>0,876=>0,877=>0, 878=>0,879=>0,884=>199,885=>199,890=>332,894=>333,900=>257,901=>333,902=>661,903=>250, 904=>841,905=>950,906=>559,908=>815,910=>877,911=>899,912=>270,913=>661,914=>581,915=>611, 916=>660,917=>611,918=>606,919=>742,920=>672,921=>333,922=>667,923=>641,924=>833,925=>657, 926=>678,927=>682,928=>749,929=>611,931=>657,932=>596,933=>676,934=>722,935=>611,936=>812, 937=>743,938=>333,939=>696,940=>564,941=>416,942=>506,943=>270,944=>504,945=>564,946=>509, 947=>496,948=>520,949=>416,950=>398,951=>506,952=>533,953=>270,954=>491,955=>488,956=>501, 957=>486,958=>430,959=>510,960=>608,961=>506,962=>423,963=>524,964=>425,965=>504,966=>618, 967=>459,968=>693,969=>693,970=>270,971=>504,972=>510,973=>504,974=>693,976=>534,977=>587, 978=>620,979=>820,980=>620,981=>640,982=>684,983=>504,984=>555,985=>534,986=>548,987=>496, 988=>610,989=>470,990=>633,991=>410,992=>687,993=>544,1008=>534,1009=>534,1010=>485,1011=>278, 1012=>722,1013=>280,1014=>280,1015=>610,1016=>500,1017=>704,1018=>832,1019=>703,1020=>533,1021=>704, 1022=>704,1023=>704,1024=>604,1025=>604,1026=>668,1027=>611,1028=>666,1029=>500,1030=>339,1031=>339, 1032=>444,1033=>972,1034=>977,1035=>703,1036=>664,1037=>720,1038=>728,1039=>728,1040=>611,1041=>610, 1042=>611,1043=>611,1044=>682,1045=>604,1046=>976,1047=>592,1048=>720,1049=>720,1050=>664,1051=>719, 1052=>828,1053=>722,1054=>722,1055=>749,1056=>603,1057=>667,1058=>556,1059=>728,1060=>722,1061=>611, 1062=>728,1063=>666,1064=>997,1065=>1005,1066=>710,1067=>891,1068=>594,1069=>632,1070=>1024,1071=>696, 1072=>500,1073=>500,1074=>442,1075=>344,1076=>503,1077=>440,1078=>932,1079=>402,1080=>500,1081=>500, 1082=>491,1083=>487,1084=>624,1085=>500,1086=>500,1087=>500,1088=>500,1089=>441,1090=>722,1091=>500, 1092=>741,1093=>444,1094=>500,1095=>500,1096=>750,1097=>750,1098=>545,1099=>683,1100=>433,1101=>432, 1102=>700,1103=>503,1104=>440,1105=>440,1106=>500,1107=>344,1108=>442,1109=>389,1110=>278,1111=>278, 1112=>278,1113=>686,1114=>696,1115=>500,1116=>491,1117=>500,1118=>500,1119=>500,1120=>964,1121=>684, 1122=>708,1123=>690,1124=>975,1125=>646,1126=>800,1127=>628,1128=>1096,1129=>795,1130=>952,1131=>730, 1132=>1260,1133=>892,1134=>574,1135=>400,1136=>812,1137=>694,1138=>721,1139=>500,1140=>745,1141=>533, 1142=>745,1143=>533,1144=>1193,1145=>967,1146=>868,1147=>602,1148=>964,1149=>684,1150=>964,1151=>684, 1152=>548,1153=>443,1154=>320,1155=>0,1156=>0,1157=>0,1158=>0,1159=>0,1160=>0,1161=>0, 1162=>720,1163=>500,1164=>602,1165=>433,1166=>611,1167=>500,1168=>552,1169=>424,1170=>593,1171=>424, 1172=>611,1173=>432,1174=>992,1175=>932,1176=>592,1177=>396,1178=>681,1179=>491,1180=>700,1181=>532, 1182=>664,1183=>491,1184=>776,1185=>690,1186=>729,1187=>500,1188=>908,1189=>660,1190=>1034,1191=>694, 1192=>730,1193=>543,1194=>666,1195=>443,1196=>556,1197=>775,1198=>556,1199=>574,1200=>555,1201=>574, 1202=>660,1203=>443,1204=>798,1205=>581,1206=>674,1207=>500,1208=>690,1209=>516,1210=>640,1211=>500, 1212=>785,1213=>558,1214=>785,1215=>558,1216=>339,1217=>976,1218=>932,1219=>664,1220=>491,1221=>719, 1222=>487,1223=>722,1224=>500,1225=>722,1226=>500,1227=>666,1228=>500,1229=>828,1230=>624,1231=>339, 1232=>611,1233=>500,1234=>611,1235=>500,1236=>889,1237=>673,1238=>604,1239=>444,1240=>722,1241=>444, 1242=>722,1243=>444,1244=>976,1245=>932,1246=>592,1247=>402,1248=>525,1249=>446,1250=>720,1251=>500, 1252=>720,1253=>500,1254=>722,1255=>500,1256=>722,1257=>500,1258=>722,1259=>500,1260=>632,1261=>432, 1262=>728,1263=>500,1264=>728,1265=>500,1266=>728,1267=>500,1268=>666,1269=>500,1270=>611,1271=>424, 1272=>891,1273=>683,1296=>532,1297=>409,1298=>719,1299=>487,1306=>722,1307=>500,1308=>833,1309=>656, 1310=>664,1311=>491,1329=>794,1330=>712,1331=>782,1332=>854,1333=>711,1334=>702,1335=>707,1336=>655, 1337=>777,1338=>782,1339=>710,1340=>663,1341=>830,1342=>917,1343=>672,1344=>469,1345=>666,1346=>858, 1347=>685,1348=>856,1349=>618,1350=>858,1351=>709,1352=>719,1353=>714,1354=>731,1355=>702,1356=>874, 1357=>719,1358=>844,1359=>519,1360=>703,1361=>608,1362=>586,1363=>750,1364=>780,1365=>714,1366=>684, 1369=>120,1370=>120,1371=>269,1372=>307,1373=>241,1374=>312,1375=>300,1377=>786,1378=>506,1379=>542, 1380=>541,1381=>506,1382=>503,1383=>478,1384=>499,1385=>541,1386=>539,1387=>508,1388=>289,1389=>750, 1390=>540,1391=>513,1392=>508,1393=>503,1394=>531,1395=>518,1396=>500,1397=>243,1398=>473,1399=>406, 1400=>499,1401=>407,1402=>793,1403=>414,1404=>463,1405=>500,1406=>516,1407=>758,1408=>504,1409=>466, 1410=>288,1411=>758,1412=>510,1413=>501,1414=>562,1415=>543,1417=>278,1418=>280,1425=>0,1426=>0, 1427=>0,1428=>0,1429=>0,1430=>0,1431=>418,1432=>0,1433=>0,1434=>0,1435=>0,1436=>0, 1437=>0,1438=>0,1439=>0,1440=>0,1441=>0,1442=>0,1443=>0,1444=>0,1445=>0,1446=>0, 1447=>0,1448=>0,1449=>0,1450=>0,1451=>0,1452=>0,1453=>0,1454=>0,1455=>0,1456=>0, 1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1466=>0, 1467=>0,1468=>0,1469=>0,1470=>440,1471=>0,1472=>126,1473=>0,1474=>0,1475=>418,1476=>0, 1477=>0,1478=>350,1479=>0,1488=>537,1489=>537,1490=>350,1491=>537,1492=>537,1493=>350,1494=>350, 1495=>537,1496=>537,1497=>350,1498=>537,1499=>537,1500=>537,1501=>537,1502=>537,1503=>350,1504=>350, 1505=>537,1506=>537,1507=>537,1508=>537,1509=>537,1510=>537,1511=>537,1512=>537,1513=>537,1514=>537, 1520=>537,1521=>537,1522=>537,1523=>396,1524=>396,2404=>318,2405=>446,2433=>0,2434=>300,2435=>312, 2437=>594,2438=>776,2439=>469,2440=>513,2441=>535,2442=>561,2443=>604,2444=>481,2447=>580,2448=>604, 2451=>540,2452=>620,2453=>570,2454=>485,2455=>484,2456=>471,2457=>457,2458=>408,2459=>452,2460=>591, 2461=>551,2462=>771,2463=>414,2464=>404,2465=>522,2466=>415,2467=>450,2468=>551,2469=>477,2470=>478, 2471=>449,2472=>448,2474=>535,2475=>611,2476=>443,2477=>534,2478=>492,2479=>474,2480=>442,2482=>542, 2486=>507,2487=>467,2488=>523,2489=>419,2492=>0,2493=>419,2494=>202,2495=>189,2496=>202,2497=>0, 2498=>0,2499=>0,2500=>0,2503=>294,2504=>289,2507=>774,2508=>825,2509=>0,2510=>356,2519=>219, 2524=>523,2525=>420,2527=>469,2528=>604,2529=>481,2530=>0,2531=>0,2534=>500,2535=>437,2536=>479, 2537=>507,2538=>497,2539=>500,2540=>482,2541=>503,2542=>517,2543=>481,2544=>443,2545=>443,2546=>429, 2547=>383,2548=>432,2549=>478,2550=>539,2551=>158,2552=>365,2553=>280,2554=>357,3585=>512,3586=>453, 3587=>512,3588=>519,3589=>529,3590=>561,3591=>411,3592=>437,3593=>552,3594=>452,3595=>509,3596=>707, 3597=>707,3598=>574,3599=>570,3600=>406,3601=>607,3602=>686,3603=>749,3604=>494,3605=>497,3606=>509, 3607=>552,3608=>461,3609=>565,3610=>527,3611=>523,3612=>556,3613=>551,3614=>570,3615=>570,3616=>571, 3617=>531,3618=>493,3619=>433,3620=>513,3621=>491,3622=>571,3623=>439,3624=>510,3625=>594,3626=>484, 3627=>554,3628=>616,3629=>493,3630=>496,3631=>417,3632=>392,3633=>0,3634=>366,3635=>366,3636=>0, 3637=>0,3638=>0,3639=>0,3640=>0,3641=>0,3642=>0,3647=>662,3648=>297,3649=>544,3650=>298, 3651=>329,3652=>328,3653=>326,3654=>488,3655=>0,3656=>0,3657=>0,3658=>0,3659=>0,3660=>0, 3661=>0,3662=>0,3663=>725,3664=>624,3665=>624,3666=>624,3667=>624,3668=>624,3669=>624,3670=>624, 3671=>624,3672=>624,3673=>624,3674=>645,3675=>872,4256=>453,4257=>448,4258=>546,4259=>619,4260=>478, 4261=>481,4262=>459,4263=>707,4264=>467,4265=>471,4266=>842,4267=>464,4268=>443,4269=>707,4270=>460, 4271=>465,4272=>686,4273=>440,4274=>550,4275=>561,4276=>580,4277=>467,4278=>630,4279=>466,4280=>517, 4281=>456,4282=>502,4283=>464,4284=>534,4285=>440,4286=>443,4287=>522,4288=>460,4289=>463,4290=>536, 4291=>455,4292=>468,4293=>449,4304=>454,4305=>452,4306=>544,4307=>629,4308=>451,4309=>452,4310=>452, 4311=>702,4312=>451,4313=>452,4314=>820,4315=>451,4316=>453,4317=>695,4318=>449,4319=>448,4320=>694, 4321=>501,4322=>544,4323=>517,4324=>560,4325=>450,4326=>627,4327=>452,4328=>491,4329=>452,4330=>485, 4331=>452,4332=>485,4333=>443,4334=>500,4335=>582,4336=>455,4337=>451,4338=>480,4339=>414,4340=>453, 4341=>418,4342=>741,4343=>452,4344=>452,4345=>544,4346=>454,4347=>410,4348=>339,5024=>711,5025=>678, 5026=>604,5027=>667,5028=>796,5029=>301,5030=>516,5031=>544,5032=>457,5033=>716,5034=>703,5035=>383, 5036=>628,5037=>709,5038=>455,5039=>601,5040=>472,5041=>574,5042=>730,5043=>939,5044=>498,5045=>528, 5046=>667,5047=>891,5048=>505,5049=>792,5050=>957,5051=>725,5052=>595,5053=>733,5054=>698,5055=>638, 5056=>720,5057=>732,5058=>624,5059=>638,5060=>565,5061=>903,5062=>655,5063=>681,5064=>675,5065=>949, 5066=>683,5067=>547,5068=>693,5069=>732,5070=>529,5071=>569,5072=>536,5073=>677,5074=>631,5075=>495, 5076=>973,5077=>543,5078=>607,5079=>652,5080=>652,5081=>693,5082=>514,5083=>803,5084=>658,5085=>597, 5086=>627,5087=>659,5088=>679,5089=>706,5090=>563,5091=>618,5092=>767,5093=>776,5094=>731,5095=>492, 5096=>808,5097=>823,5098=>796,5099=>689,5100=>716,5101=>518,5102=>521,5103=>719,5104=>563,5105=>776, 5106=>634,5107=>822,5108=>621,7680=>611,7681=>500,7682=>611,7683=>500,7684=>611,7685=>500,7686=>611, 7687=>500,7688=>667,7689=>444,7690=>722,7691=>500,7692=>722,7693=>500,7694=>722,7695=>500,7696=>722, 7697=>500,7698=>722,7699=>500,7700=>611,7701=>444,7702=>611,7703=>444,7704=>604,7705=>444,7706=>604, 7707=>444,7708=>604,7709=>444,7710=>611,7711=>278,7712=>722,7713=>500,7714=>722,7715=>500,7716=>722, 7717=>500,7718=>722,7719=>500,7720=>722,7721=>500,7722=>722,7723=>500,7724=>339,7725=>278,7726=>333, 7727=>278,7728=>652,7729=>444,7730=>652,7731=>444,7732=>652,7733=>444,7734=>556,7735=>278,7736=>556, 7737=>278,7738=>556,7739=>278,7740=>556,7741=>278,7742=>828,7743=>722,7744=>828,7745=>722,7746=>828, 7747=>722,7748=>657,7749=>500,7750=>657,7751=>500,7752=>657,7753=>500,7754=>657,7755=>500,7756=>722, 7757=>500,7758=>722,7759=>500,7760=>722,7761=>500,7762=>722,7763=>500,7764=>603,7765=>500,7766=>603, 7767=>500,7768=>616,7769=>389,7770=>616,7771=>389,7772=>616,7773=>389,7774=>616,7775=>389,7776=>500, 7777=>389,7778=>500,7779=>389,7780=>500,7781=>389,7782=>500,7783=>389,7784=>500,7785=>389,7786=>556, 7787=>278,7788=>556,7789=>278,7790=>556,7791=>278,7792=>556,7793=>278,7794=>722,7795=>500,7796=>722, 7797=>500,7798=>722,7799=>500,7800=>722,7801=>500,7802=>722,7803=>500,7804=>611,7805=>444,7806=>611, 7807=>444,7808=>833,7809=>667,7810=>833,7811=>667,7812=>833,7813=>667,7814=>833,7815=>667,7816=>833, 7817=>667,7818=>611,7819=>444,7820=>611,7821=>444,7822=>556,7823=>444,7824=>556,7825=>389,7826=>556, 7827=>389,7828=>556,7829=>389,7830=>500,7831=>278,7832=>667,7833=>444,7834=>444,7835=>278,7836=>333, 7837=>278,7838=>659,7839=>534,7840=>611,7841=>500,7842=>611,7843=>500,7844=>611,7845=>500,7846=>611, 7847=>500,7848=>611,7849=>500,7850=>611,7851=>500,7852=>611,7853=>500,7854=>611,7855=>500,7856=>611, 7857=>500,7858=>611,7859=>500,7860=>611,7861=>500,7862=>611,7863=>500,7864=>604,7865=>444,7866=>604, 7867=>444,7868=>604,7869=>444,7870=>611,7871=>444,7872=>611,7873=>444,7874=>611,7875=>444,7876=>611, 7877=>444,7878=>604,7879=>444,7880=>339,7881=>278,7882=>339,7883=>278,7884=>722,7885=>500,7886=>722, 7887=>500,7888=>722,7889=>500,7890=>722,7891=>500,7892=>722,7893=>500,7894=>722,7895=>500,7896=>722, 7897=>500,7898=>759,7899=>546,7900=>759,7901=>546,7902=>807,7903=>585,7904=>759,7905=>546,7906=>759, 7907=>546,7908=>722,7909=>500,7910=>722,7911=>500,7912=>778,7913=>584,7914=>778,7915=>584,7916=>807, 7917=>585,7918=>778,7919=>584,7920=>778,7921=>584,7922=>556,7923=>444,7924=>556,7925=>444,7926=>556, 7927=>444,7928=>556,7929=>444,7936=>564,7937=>564,7938=>564,7939=>564,7940=>564,7941=>564,7942=>564, 7943=>564,7944=>661,7945=>661,7946=>794,7947=>811,7948=>792,7949=>803,7950=>661,7951=>648,7952=>416, 7953=>416,7954=>416,7955=>416,7956=>416,7957=>416,7960=>740,7961=>795,7962=>923,7963=>940,7964=>996, 7965=>986,7968=>506,7969=>506,7970=>506,7971=>506,7972=>506,7973=>506,7974=>506,7975=>506,7976=>879, 7977=>901,7978=>1036,7979=>1035,7980=>1099,7981=>1100,7982=>954,7983=>959,7984=>270,7985=>270,7986=>267, 7987=>267,7988=>267,7989=>267,7990=>267,7991=>267,7992=>490,7993=>529,7994=>655,7995=>654,7996=>705, 7997=>713,7998=>570,7999=>573,8000=>558,8001=>510,8002=>510,8003=>510,8004=>510,8005=>510,8008=>797, 8009=>867,8010=>1026,8011=>1022,8012=>993,8013=>1017,8016=>504,8017=>504,8018=>504,8019=>504,8020=>504, 8021=>504,8022=>504,8023=>504,8025=>916,8027=>1062,8029=>1100,8031=>933,8032=>693,8033=>693,8034=>693, 8035=>693,8036=>693,8037=>693,8038=>693,8039=>693,8040=>852,8041=>909,8042=>1072,8043=>1072,8044=>1032, 8045=>1047,8046=>930,8047=>946,8048=>564,8049=>564,8050=>416,8051=>416,8052=>506,8053=>506,8054=>270, 8055=>270,8056=>510,8057=>510,8058=>504,8059=>504,8060=>693,8061=>693,8064=>564,8065=>564,8066=>564, 8067=>564,8068=>564,8069=>564,8070=>564,8071=>564,8072=>821,8073=>854,8074=>998,8075=>1011,8076=>992, 8077=>1001,8078=>866,8079=>858,8080=>506,8081=>506,8082=>506,8083=>506,8084=>506,8085=>506,8086=>506, 8087=>506,8088=>999,8089=>1044,8090=>1179,8091=>1165,8092=>1227,8093=>1229,8094=>1080,8095=>1085,8096=>693, 8097=>693,8098=>693,8099=>693,8100=>693,8101=>693,8102=>693,8103=>693,8104=>1037,8105=>1113,8106=>1264, 8107=>1264,8108=>1219,8109=>1241,8110=>1120,8111=>1132,8112=>564,8113=>564,8114=>564,8115=>564,8116=>564, 8118=>564,8119=>564,8120=>661,8121=>661,8122=>661,8123=>661,8124=>831,8125=>192,8126=>332,8127=>500, 8128=>500,8129=>534,8130=>506,8131=>506,8132=>506,8134=>506,8135=>506,8136=>611,8137=>816,8138=>889, 8139=>908,8140=>881,8141=>500,8142=>500,8143=>500,8144=>270,8145=>270,8146=>270,8147=>270,8150=>270, 8151=>270,8152=>333,8153=>333,8154=>497,8155=>521,8157=>500,8158=>500,8159=>500,8160=>504,8161=>504, 8162=>504,8163=>504,8164=>506,8165=>506,8166=>504,8167=>504,8168=>676,8169=>676,8170=>905,8171=>901, 8172=>783,8173=>333,8174=>333,8175=>500,8178=>693,8179=>693,8180=>693,8182=>693,8183=>693,8184=>907, 8185=>833,8186=>963,8187=>875,8188=>952,8189=>500,8190=>500,8192=>500,8193=>1000,8194=>500,8195=>1000, 8196=>333,8197=>250,8198=>167,8199=>500,8200=>250,8201=>200,8202=>100,8203=>0,8204=>0,8205=>0, 8206=>0,8207=>0,8208=>333,8209=>333,8210=>500,8213=>1000,8214=>293,8215=>465,8219=>250,8223=>444, 8227=>350,8228=>250,8229=>500,8231=>250,8232=>0,8233=>0,8234=>0,8235=>0,8236=>0,8237=>0, 8238=>0,8239=>250,8241=>1601,8242=>247,8243=>411,8244=>611,8245=>220,8246=>440,8247=>660,8248=>469, 8251=>629,8252=>666,8253=>500,8254=>500,8255=>953,8256=>1000,8257=>314,8258=>931,8259=>333,8260=>167, 8261=>480,8262=>480,8263=>1000,8264=>833,8265=>833,8266=>500,8267=>453,8268=>453,8269=>450,8270=>500, 8271=>278,8272=>882,8273=>500,8274=>497,8275=>500,8276=>953,8277=>512,8278=>410,8279=>855,8280=>620, 8281=>620,8282=>179,8283=>621,8284=>564,8285=>179,8286=>179,8287=>111,8288=>0,8289=>0,8290=>0, 8291=>0,8292=>0,8304=>300,8305=>235,8308=>300,8309=>300,8310=>300,8311=>300,8312=>300,8313=>300, 8314=>300,8315=>300,8316=>300,8317=>216,8318=>216,8319=>318,8320=>300,8321=>250,8322=>300,8323=>300, 8324=>300,8325=>300,8326=>300,8327=>300,8328=>300,8329=>300,8330=>300,8331=>300,8332=>300,8333=>216, 8334=>216,8336=>350,8337=>304,8338=>340,8339=>317,8340=>278,8352=>698,8353=>667,8354=>667,8355=>611, 8356=>500,8357=>722,8358=>667,8359=>988,8360=>953,8361=>833,8362=>869,8363=>512,8365=>722,8366=>611, 8367=>1340,8368=>489,8369=>589,8370=>619,8371=>722,8372=>556,8373=>611,8374=>408,8376=>524,8400=>0, 8401=>0,8402=>0,8403=>0,8404=>0,8405=>0,8406=>0,8407=>0,8408=>0,8409=>0,8410=>0, 8411=>0,8412=>0,8413=>0,8414=>0,8415=>0,8416=>0,8417=>0,8418=>0,8419=>0,8420=>0, 8421=>0,8422=>0,8423=>0,8424=>0,8425=>0,8426=>0,8427=>0,8428=>0,8429=>0,8430=>0, 8431=>0,8432=>0,8448=>604,8449=>605,8450=>674,8451=>954,8452=>556,8453=>573,8454=>667,8455=>518, 8456=>667,8457=>822,8458=>490,8459=>824,8460=>663,8461=>818,8462=>500,8463=>500,8464=>578,8465=>613, 8466=>715,8467=>417,8468=>777,8469=>751,8470=>783,8471=>792,8472=>832,8473=>589,8474=>729,8475=>892, 8476=>711,8477=>755,8478=>616,8479=>610,8480=>879,8481=>1156,8483=>611,8484=>659,8485=>389,8486=>743, 8487=>743,8488=>663,8489=>286,8490=>722,8491=>722,8492=>846,8493=>613,8494=>533,8495=>363,8496=>587, 8497=>690,8498=>556,8499=>1021,8500=>387,8501=>537,8502=>537,8503=>350,8504=>537,8505=>417,8506=>906, 8507=>1155,8508=>655,8510=>586,8511=>722,8513=>663,8514=>485,8515=>485,8516=>637,8522=>516,8523=>778, 8525=>906,8526=>378,8531=>750,8532=>750,8533=>750,8534=>750,8535=>750,8536=>750,8537=>750,8538=>750, 8539=>750,8540=>750,8541=>750,8542=>750,8543=>750,8544=>339,8545=>608,8546=>877,8547=>940,8548=>611, 8549=>910,8550=>1176,8551=>1439,8552=>940,8553=>611,8554=>936,8555=>1204,8556=>556,8557=>667,8558=>722, 8559=>828,8560=>278,8561=>526,8562=>774,8563=>712,8564=>444,8565=>702,8566=>950,8567=>1198,8568=>712, 8569=>444,8570=>692,8571=>970,8572=>278,8573=>444,8574=>500,8575=>722,8592=>964,8593=>499,8594=>964, 8595=>499,8706=>494,8710=>612,8721=>713,8722=>675,8723=>675,8725=>750,8730=>549,8734=>677,8747=>416, 8748=>750,8749=>1083,8750=>722,8751=>750,8800=>564,8804=>675,8805=>675,8992=>686,8993=>686,9251=>500, 9674=>494,9675=>791,9676=>791,9824=>626,9825=>694,9826=>595,9827=>776,9828=>626,9829=>694,9830=>595, 9831=>776,9833=>333,9834=>555,9835=>722,9836=>722,9837=>415,9838=>377,9839=>402,11799=>333,42790=>722, 42791=>491,42792=>770,42793=>586,42794=>532,42795=>409,42796=>437,42797=>389,42798=>578,42799=>580,42888=>333, 42889=>278,42890=>282,42891=>286,42892=>278,64256=>526,64257=>500,64258=>500,64259=>747,64260=>748,64261=>518, 64262=>665,64275=>971,64276=>969,64277=>978,64278=>971,64279=>1219,64285=>350,64286=>0,64287=>537,64288=>537, 64297=>564,64298=>537,64299=>537,64300=>537,64301=>537,64302=>537,64303=>537,64304=>537,64305=>537,64306=>350, 64307=>537,64308=>537,64309=>350,64310=>350,64312=>537,64313=>350,64314=>537,64315=>537,64316=>537,64318=>537, 64320=>350,64321=>537,64323=>537,64324=>537,64326=>537,64327=>537,64328=>537,64329=>537,64330=>537,64331=>350, 64332=>537,64333=>537,64334=>537,64335=>537,65533=>900); $enc=''; $diff=''; $file='freeserifi.z'; $ctg='freeserifi.ctg.z'; $originalsize=691448; // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/freeserifi.php
PHP
gpl2
25,330
<?php $type = 'cidfont0'; $name = 'STSongStd-Light-Acro'; $displayname = 'STSong Light (Simp. Chinese)'; $desc = array( 'Ascent' => 752, 'Descent' => -271, 'CapHeight' => 737, 'Flags' => 6, 'FontBBox' => '[-25 -254 1000 880]', 'ItalicAngle' => 0, 'StemV' => 58, 'Style' => '<< /Panose <000000000400000000000000> >>', ); $cidinfo = array( 'Registry' => 'Adobe', 'Ordering' => 'GB1', 'Supplement' => '2', ); $enc = 'UniGB-UCS2-H'; // underline position, needs checking: $up = -130; $ut = 40; $dw = 1000; $cw = array( 32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374, 42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462, 52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605, 62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729, 72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772, 82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374, 92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415, 102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524, 112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452, 122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605 ); // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/stsongstdlight.php
PHP
gpl2
1,627
<?php $type='TrueTypeUnicode'; $name='FreeSerif'; $desc=array('Ascent'=>900,'Descent'=>-300,'CapHeight'=>10,'Flags'=>96,'FontBBox'=>'[-879 -2090 1824 2606]','ItalicAngle'=>-33.2,'StemV'=>70,'MissingWidth'=>600); $up=-125; $ut=50; $dw=600; $cw=array( 32=>250,33=>333,34=>408,35=>500,36=>500,37=>833,38=>778,39=>180,40=>333,41=>333, 42=>500,43=>564,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500, 52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>278,59=>278,60=>564,61=>564, 62=>564,63=>444,64=>921,65=>722,66=>667,67=>667,68=>722,69=>611,70=>556,71=>722, 72=>722,73=>333,74=>389,75=>722,76=>611,77=>889,78=>722,79=>722,80=>556,81=>722, 82=>667,83=>556,84=>611,85=>722,86=>722,87=>944,88=>722,89=>722,90=>611,91=>333, 92=>296,93=>333,94=>469,95=>500,96=>333,97=>444,98=>500,99=>444,100=>500,101=>444, 102=>333,103=>500,104=>500,105=>278,106=>278,107=>500,108=>278,109=>778,110=>500,111=>500, 112=>500,113=>500,114=>333,115=>389,116=>278,117=>500,118=>500,119=>722,120=>500,121=>500, 122=>444,123=>480,124=>200,125=>480,126=>541,8364=>741,8218=>250,402=>358,8222=>444,8230=>1000, 8224=>500,8225=>500,710=>333,8240=>1000,352=>556,8249=>250,338=>889,381=>611,8216=>250,8217=>250, 8220=>444,8221=>444,8226=>350,8211=>500,8212=>1000,732=>333,8482=>1008,353=>389,8250=>250,339=>709, 382=>444,376=>722,160=>250,161=>333,162=>500,163=>500,164=>500,165=>500,166=>200,167=>500, 168=>333,169=>793,170=>276,171=>444,172=>564,173=>333,174=>792,175=>333,176=>400,177=>564, 178=>320,179=>320,180=>333,181=>500,182=>483,183=>250,184=>333,185=>320,186=>310,187=>441, 188=>750,189=>750,190=>750,191=>444,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722, 198=>889,199=>667,200=>611,201=>611,202=>611,203=>611,204=>333,205=>333,206=>333,207=>333, 208=>722,209=>722,210=>722,211=>722,212=>722,213=>722,214=>722,215=>564,216=>722,217=>722, 218=>722,219=>722,220=>722,221=>722,222=>576,223=>500,224=>444,225=>444,226=>444,227=>444, 228=>444,229=>444,230=>651,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278, 238=>278,239=>278,240=>501,241=>500,242=>500,243=>500,244=>500,245=>500,246=>500,247=>564, 248=>500,249=>500,250=>500,251=>500,252=>500,253=>500,254=>496,255=>500,256=>722,257=>444, 258=>722,259=>444,260=>722,261=>444,262=>667,263=>444,264=>667,265=>444,266=>667,267=>444, 268=>667,269=>444,270=>722,271=>630,272=>722,273=>500,274=>611,275=>444,276=>611,277=>444, 278=>611,279=>444,280=>611,281=>444,282=>611,283=>444,284=>722,285=>500,286=>722,287=>500, 288=>722,289=>500,290=>722,291=>500,292=>722,293=>500,294=>722,295=>500,296=>333,297=>278, 298=>333,299=>278,300=>333,301=>278,302=>333,303=>278,304=>333,305=>278,306=>703,307=>529, 308=>389,309=>278,310=>722,311=>500,312=>500,313=>611,314=>278,315=>611,316=>278,317=>611, 318=>396,319=>611,320=>444,321=>611,322=>278,323=>722,324=>500,325=>722,326=>500,327=>722, 328=>500,329=>556,330=>721,331=>500,332=>722,333=>500,334=>722,335=>500,336=>722,337=>500, 340=>667,341=>333,342=>667,343=>333,344=>667,345=>333,346=>556,347=>389,348=>556,349=>389, 350=>556,351=>389,354=>611,355=>278,356=>611,357=>415,358=>611,359=>278,360=>722,361=>500, 362=>722,363=>500,364=>722,365=>500,366=>722,367=>500,368=>722,369=>500,370=>722,371=>500, 372=>944,373=>722,374=>722,375=>500,377=>611,378=>444,379=>611,380=>444,383=>333,384=>500, 385=>777,386=>576,387=>520,388=>646,389=>520,390=>667,391=>811,392=>558,393=>722,394=>830, 395=>646,396=>500,397=>534,398=>611,399=>710,400=>518,401=>629,403=>824,404=>665,405=>729, 406=>333,407=>336,408=>810,409=>500,410=>286,411=>480,412=>944,413=>798,414=>500,415=>726, 416=>722,417=>540,418=>1043,419=>778,420=>667,421=>500,422=>667,423=>556,424=>389,425=>627, 426=>592,427=>285,428=>626,429=>376,430=>611,431=>782,432=>544,433=>743,434=>722,435=>813, 436=>657,437=>611,438=>444,439=>530,440=>556,441=>389,442=>394,443=>500,444=>615,445=>439, 446=>421,447=>500,448=>190,449=>350,450=>600,451=>333,452=>1333,453=>1166,454=>944,455=>1000, 456=>889,457=>556,458=>1111,459=>1000,460=>778,461=>722,462=>444,463=>333,464=>278,465=>722, 466=>500,467=>722,468=>500,469=>722,470=>500,471=>722,472=>500,473=>722,474=>500,475=>722, 476=>500,477=>444,478=>722,479=>444,480=>722,481=>444,482=>889,483=>651,484=>722,485=>500, 486=>722,487=>500,488=>722,489=>500,490=>722,491=>500,492=>722,493=>500,494=>530,495=>389, 496=>278,497=>1333,498=>1166,499=>944,500=>722,501=>500,502=>944,503=>522,504=>722,505=>500, 506=>722,507=>444,508=>889,509=>651,510=>722,511=>500,512=>722,513=>444,514=>722,515=>444, 516=>611,517=>444,518=>611,519=>444,520=>333,521=>278,522=>333,523=>278,524=>722,525=>500, 526=>722,527=>500,528=>667,529=>333,530=>667,531=>333,532=>722,533=>500,534=>722,535=>500, 536=>556,537=>389,538=>611,539=>279,540=>424,541=>455,542=>722,543=>500,544=>715,545=>588, 546=>565,547=>468,548=>611,549=>444,550=>722,551=>444,552=>611,553=>444,554=>722,555=>500, 556=>722,557=>500,558=>722,559=>500,560=>722,561=>500,562=>722,563=>500,564=>407,565=>597, 566=>379,567=>278,568=>771,569=>760,570=>722,571=>667,572=>444,573=>611,574=>611,575=>389, 576=>444,577=>444,578=>444,579=>667,580=>722,581=>722,582=>611,583=>444,584=>389,585=>278, 586=>810,587=>601,588=>667,589=>333,590=>722,591=>500,592=>444,593=>500,594=>507,595=>500, 596=>444,597=>444,598=>606,599=>624,600=>444,601=>444,602=>703,603=>426,604=>426,605=>662, 606=>454,607=>353,608=>624,609=>500,610=>484,611=>500,612=>582,613=>500,614=>500,615=>500, 616=>278,617=>306,618=>278,619=>340,620=>294,621=>364,622=>556,623=>778,624=>778,625=>778, 626=>596,627=>599,628=>500,629=>491,630=>668,631=>693,632=>640,633=>336,634=>339,635=>444, 636=>338,637=>339,638=>372,639=>372,640=>457,641=>456,642=>389,643=>466,644=>483,645=>466, 646=>506,647=>278,648=>336,649=>512,650=>517,651=>514,652=>500,653=>722,654=>500,655=>510, 656=>600,657=>444,658=>389,659=>456,660=>444,661=>444,662=>444,663=>444,664=>722,665=>468, 666=>454,667=>623,668=>524,669=>354,670=>505,671=>443,672=>625,673=>444,674=>444,675=>798, 676=>795,677=>805,678=>539,679=>549,680=>678,681=>722,682=>533,683=>554,684=>500,685=>500, 686=>611,687=>716,688=>332,689=>333,690=>240,691=>228,692=>228,693=>299,694=>300,695=>477, 696=>328,697=>250,698=>408,699=>333,700=>333,701=>333,702=>333,703=>333,704=>258,705=>258, 706=>374,707=>374,708=>383,709=>383,711=>333,712=>250,713=>333,714=>333,715=>333,716=>250, 717=>333,718=>333,719=>333,720=>278,721=>278,722=>333,723=>333,724=>333,725=>333,726=>333, 727=>333,728=>333,729=>333,730=>333,731=>333,733=>382,734=>336,735=>352,736=>331,737=>187, 738=>263,739=>332,740=>300,741=>460,742=>460,743=>460,744=>460,745=>460,746=>477,747=>475, 748=>339,749=>333,750=>444,751=>383,752=>383,753=>294,754=>294,755=>327,756=>261,757=>437, 758=>437,759=>333,760=>278,761=>175,762=>175,763=>175,764=>175,765=>337,766=>337,767=>326, 768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,774=>0,775=>0,776=>0,777=>0, 778=>0,779=>0,780=>0,781=>0,782=>0,783=>0,784=>0,785=>0,786=>0,787=>0, 788=>0,789=>0,790=>0,791=>0,792=>0,793=>0,794=>0,795=>0,796=>0,797=>0, 798=>0,799=>0,800=>0,801=>0,802=>0,803=>0,804=>0,805=>0,806=>0,807=>0, 808=>0,809=>0,810=>0,811=>0,812=>0,813=>0,814=>0,815=>0,816=>0,817=>0, 818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,824=>0,825=>0,826=>0,827=>0, 828=>0,829=>0,830=>0,831=>0,832=>0,833=>0,834=>0,835=>0,836=>0,837=>0, 838=>0,839=>0,840=>0,841=>0,842=>0,843=>0,844=>0,845=>0,846=>0,847=>0, 848=>0,849=>0,850=>0,851=>0,852=>0,853=>0,854=>0,855=>0,856=>0,857=>0, 858=>0,859=>0,860=>0,861=>0,862=>0,863=>0,864=>0,865=>0,866=>0,867=>0, 868=>0,869=>0,870=>0,871=>0,872=>0,873=>0,874=>0,875=>0,876=>0,877=>0, 878=>0,879=>0,880=>535,881=>433,882=>537,883=>497,884=>199,885=>199,890=>332,894=>278, 900=>267,901=>333,902=>722,903=>250,904=>800,905=>902,906=>507,908=>818,910=>861,911=>871, 912=>286,913=>722,914=>667,915=>586,916=>660,917=>611,918=>611,919=>722,920=>726,921=>333, 922=>722,923=>722,924=>889,925=>722,926=>628,927=>722,928=>722,929=>556,931=>627,932=>611, 933=>696,934=>742,935=>722,936=>808,937=>743,938=>333,939=>718,940=>583,941=>426,942=>536, 943=>286,944=>514,945=>583,946=>527,947=>480,948=>534,949=>426,950=>466,951=>536,952=>534, 953=>286,954=>544,955=>476,956=>536,957=>480,958=>514,959=>500,960=>587,961=>528,962=>452, 963=>537,964=>420,965=>514,966=>643,967=>480,968=>693,969=>693,970=>286,971=>514,972=>500, 973=>514,974=>693,976=>534,977=>587,978=>620,979=>809,980=>620,981=>640,982=>684,983=>534, 984=>556,985=>500,986=>594,987=>426,988=>556,989=>445,990=>656,991=>400,992=>722,993=>570, 994=>960,995=>673,996=>592,997=>522,998=>580,999=>460,1000=>500,1001=>338,1002=>842,1003=>593, 1004=>564,1005=>412,1006=>634,1007=>447,1008=>534,1009=>534,1010=>485,1011=>278,1012=>726,1013=>361, 1014=>361,1015=>576,1016=>542,1017=>667,1018=>889,1019=>709,1020=>534,1021=>667,1022=>1000,1023=>1000, 1024=>613,1025=>613,1026=>748,1027=>570,1028=>659,1029=>487,1030=>337,1031=>337,1032=>385,1033=>943, 1034=>985,1035=>827,1036=>669,1037=>723,1038=>709,1039=>723,1040=>711,1041=>576,1042=>626,1043=>570, 1044=>639,1045=>613,1046=>937,1047=>580,1048=>723,1049=>723,1050=>669,1051=>684,1052=>891,1053=>723, 1054=>722,1055=>723,1056=>576,1057=>659,1058=>608,1059=>709,1060=>750,1061=>714,1062=>728,1063=>682, 1064=>984,1065=>988,1066=>725,1067=>863,1068=>576,1069=>659,1070=>966,1071=>648,1072=>434,1073=>495, 1074=>468,1075=>388,1076=>490,1077=>436,1078=>662,1079=>406,1080=>524,1081=>524,1082=>498,1083=>490, 1084=>632,1085=>524,1086=>491,1087=>524,1088=>500,1089=>424,1090=>422,1091=>471,1092=>694,1093=>482, 1094=>524,1095=>506,1096=>756,1097=>756,1098=>505,1099=>626,1100=>431,1101=>432,1102=>664,1103=>492, 1104=>434,1105=>434,1106=>479,1107=>388,1108=>432,1109=>347,1110=>269,1111=>278,1112=>278,1113=>677, 1114=>711,1115=>514,1116=>498,1117=>524,1118=>471,1119=>524,1120=>978,1121=>664,1122=>718,1123=>506, 1124=>947,1125=>647,1126=>901,1127=>635,1128=>1248,1129=>894,1130=>937,1131=>654,1132=>1278,1133=>907, 1134=>516,1135=>391,1136=>870,1137=>694,1138=>726,1139=>491,1140=>780,1141=>550,1142=>780,1143=>550, 1144=>1207,1145=>946,1146=>877,1147=>611,1148=>978,1149=>664,1150=>978,1151=>664,1152=>594,1153=>428, 1154=>232,1155=>0,1156=>0,1157=>0,1158=>0,1159=>0,1160=>0,1161=>0,1162=>715,1163=>522, 1164=>562,1165=>430,1166=>556,1167=>511,1168=>564,1169=>398,1170=>586,1171=>392,1172=>623,1173=>463, 1174=>1001,1175=>688,1176=>580,1177=>401,1178=>696,1179=>517,1180=>713,1181=>532,1182=>669,1183=>498, 1184=>813,1185=>572,1186=>730,1187=>524,1188=>934,1189=>652,1190=>1030,1191=>722,1192=>750,1193=>516, 1194=>659,1195=>424,1196=>608,1197=>452,1198=>722,1199=>563,1200=>722,1201=>562,1202=>773,1203=>518, 1204=>972,1205=>693,1206=>681,1207=>506,1208=>726,1209=>540,1210=>682,1211=>510,1212=>866,1213=>553, 1214=>866,1215=>553,1216=>333,1217=>937,1218=>662,1219=>618,1220=>448,1221=>702,1222=>490,1223=>723, 1224=>499,1225=>723,1226=>547,1227=>682,1228=>506,1229=>891,1230=>632,1231=>337,1232=>711,1233=>434, 1234=>711,1235=>434,1236=>891,1237=>630,1238=>623,1239=>436,1240=>710,1241=>436,1242=>710,1243=>436, 1244=>937,1245=>662,1246=>580,1247=>406,1248=>530,1249=>366,1250=>723,1251=>524,1252=>723,1253=>524, 1254=>722,1255=>491,1256=>722,1257=>491,1258=>722,1259=>491,1260=>659,1261=>432,1262=>709,1263=>471, 1264=>709,1265=>471,1266=>709,1267=>471,1268=>682,1269=>506,1270=>572,1271=>388,1272=>863,1273=>626, 1274=>572,1275=>388,1276=>720,1277=>445,1278=>722,1279=>495,1280=>556,1281=>504,1282=>900,1283=>634, 1284=>803,1285=>518,1286=>553,1287=>471,1288=>964,1289=>637,1290=>968,1291=>682,1292=>722,1293=>433, 1294=>714,1295=>504,1296=>532,1297=>407,1298=>702,1299=>489,1300=>960,1301=>644,1302=>823,1303=>698, 1304=>961,1305=>748,1306=>722,1307=>505,1308=>947,1309=>693,1310=>669,1311=>498,1312=>992,1313=>710, 1314=>1029,1315=>742,1329=>794,1330=>712,1331=>782,1332=>854,1333=>711,1334=>702,1335=>707,1336=>655, 1337=>777,1338=>782,1339=>710,1340=>663,1341=>830,1342=>917,1343=>672,1344=>469,1345=>666,1346=>858, 1347=>685,1348=>856,1349=>618,1350=>858,1351=>709,1352=>719,1353=>714,1354=>731,1355=>702,1356=>874, 1357=>719,1358=>844,1359=>519,1360=>703,1361=>608,1362=>586,1363=>750,1364=>780,1365=>714,1366=>684, 1369=>120,1370=>120,1371=>269,1372=>307,1373=>241,1374=>312,1375=>300,1377=>786,1378=>506,1379=>542, 1380=>541,1381=>506,1382=>503,1383=>478,1384=>499,1385=>541,1386=>539,1387=>508,1388=>289,1389=>750, 1390=>540,1391=>513,1392=>508,1393=>503,1394=>531,1395=>518,1396=>500,1397=>243,1398=>473,1399=>406, 1400=>499,1401=>407,1402=>793,1403=>414,1404=>463,1405=>500,1406=>516,1407=>758,1408=>504,1409=>466, 1410=>288,1411=>758,1412=>510,1413=>501,1414=>562,1415=>543,1417=>278,1418=>280,1425=>0,1426=>0, 1427=>0,1428=>0,1429=>0,1430=>0,1431=>418,1432=>0,1433=>0,1434=>0,1435=>0,1436=>0, 1437=>0,1438=>0,1439=>0,1440=>0,1441=>0,1442=>0,1443=>0,1444=>0,1445=>0,1446=>0, 1447=>0,1448=>0,1449=>0,1450=>0,1451=>0,1452=>0,1453=>0,1454=>0,1455=>0,1456=>0, 1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1466=>0, 1467=>0,1468=>0,1469=>0,1470=>440,1471=>0,1472=>126,1473=>0,1474=>0,1475=>418,1476=>0, 1477=>0,1478=>350,1479=>0,1488=>537,1489=>537,1490=>350,1491=>537,1492=>537,1493=>350,1494=>350, 1495=>537,1496=>537,1497=>350,1498=>537,1499=>537,1500=>537,1501=>537,1502=>537,1503=>350,1504=>350, 1505=>537,1506=>537,1507=>537,1508=>537,1509=>537,1510=>537,1511=>537,1512=>537,1513=>537,1514=>537, 1520=>537,1521=>537,1522=>537,1523=>396,1524=>396,1548=>226,1563=>250,1567=>473,1569=>350,1570=>321, 1571=>249,1572=>399,1573=>249,1574=>776,1575=>249,1576=>950,1577=>424,1578=>925,1579=>924,1580=>738, 1581=>748,1582=>701,1583=>397,1584=>399,1585=>328,1586=>331,1587=>951,1588=>949,1589=>949,1590=>949, 1591=>557,1592=>550,1593=>625,1594=>602,1601=>801,1602=>696,1603=>757,1604=>655,1605=>549,1606=>651, 1607=>424,1608=>399,1609=>776,1610=>776,1611=>0,1613=>0,1614=>0,1615=>0,1616=>0,1617=>0, 1618=>0,1619=>0,1620=>0,1621=>0,1632=>297,1633=>254,1634=>427,1635=>497,1636=>440,1637=>465, 1638=>466,1639=>421,1640=>459,1641=>424,1643=>212,1652=>300,1662=>926,1670=>750,1688=>338,1711=>874, 1740=>776,1748=>176,1920=>450,1921=>501,1922=>582,1923=>544,1924=>482,1925=>433,1926=>448,1927=>462, 1928=>474,1929=>471,1930=>469,1931=>537,1932=>499,1933=>514,1934=>471,1935=>572,1936=>880,1937=>440, 1938=>476,1939=>594,1940=>469,1941=>448,1942=>441,1943=>519,1944=>573,1945=>459,1946=>447,1947=>496, 1948=>541,1949=>887,1950=>883,1951=>964,1952=>558,1953=>505,1954=>471,1955=>554,1956=>459,1957=>486, 1958=>36,1959=>36,1960=>43,1961=>45,1962=>43,1963=>45,1964=>45,1965=>45,1966=>45,1967=>45, 1968=>0,2304=>0,2305=>0,2306=>398,2307=>398,2308=>862,2309=>862,2310=>1042,2311=>553,2312=>553, 2313=>597,2314=>848,2315=>967,2316=>828,2317=>654,2318=>654,2319=>654,2320=>654,2321=>1042,2322=>1042, 2323=>1042,2324=>1042,2325=>743,2326=>798,2327=>694,2328=>694,2329=>730,2330=>734,2331=>888,2332=>814, 2333=>834,2334=>734,2335=>629,2336=>629,2337=>653,2338=>609,2339=>694,2340=>654,2341=>694,2342=>588, 2343=>694,2344=>654,2345=>654,2346=>615,2347=>788,2348=>621,2349=>694,2350=>694,2351=>694,2352=>575, 2353=>575,2354=>787,2355=>848,2356=>848,2357=>621,2358=>654,2359=>615,2360=>734,2361=>609,2364=>398, 2365=>569,2366=>341,2367=>341,2368=>341,2369=>0,2370=>0,2371=>0,2372=>0,2373=>0,2374=>0, 2375=>615,2376=>615,2377=>341,2378=>341,2379=>341,2380=>341,2381=>0,2382=>0,2384=>1047,2385=>0, 2386=>0,2387=>0,2388=>0,2389=>0,2392=>743,2393=>798,2394=>694,2395=>814,2396=>653,2397=>609, 2398=>788,2399=>694,2400=>967,2401=>828,2402=>0,2403=>0,2404=>398,2405=>478,2406=>455,2407=>420, 2408=>569,2409=>509,2410=>702,2411=>629,2412=>569,2413=>702,2414=>609,2415=>609,2416=>626,2417=>398, 2418=>862,2425=>814,2426=>694,2427=>654,2428=>814,2429=>569,2430=>730,2431=>621,2433=>0,2434=>300, 2435=>312,2437=>594,2438=>776,2439=>469,2440=>513,2441=>535,2442=>561,2443=>604,2444=>481,2447=>580, 2448=>604,2451=>540,2452=>620,2453=>570,2454=>485,2455=>484,2456=>471,2457=>457,2458=>408,2459=>452, 2460=>591,2461=>551,2462=>771,2463=>414,2464=>404,2465=>522,2466=>415,2467=>450,2468=>551,2469=>477, 2470=>478,2471=>449,2472=>448,2474=>535,2475=>611,2476=>443,2477=>534,2478=>492,2479=>474,2480=>442, 2482=>542,2486=>507,2487=>467,2488=>523,2489=>419,2492=>0,2493=>419,2494=>202,2495=>189,2496=>202, 2497=>0,2498=>0,2499=>0,2500=>0,2503=>294,2504=>289,2507=>774,2508=>825,2509=>0,2510=>356, 2519=>219,2524=>523,2525=>420,2527=>469,2528=>604,2529=>481,2530=>0,2531=>0,2534=>500,2535=>437, 2536=>479,2537=>507,2538=>497,2539=>500,2540=>482,2541=>503,2542=>517,2543=>481,2544=>443,2545=>443, 2546=>429,2547=>383,2548=>432,2549=>478,2550=>539,2551=>158,2552=>365,2553=>280,2554=>357,2561=>0, 2562=>0,2563=>385,2565=>728,2566=>884,2567=>656,2568=>656,2569=>580,2570=>580,2575=>482,2576=>728, 2579=>580,2580=>728,2581=>534,2582=>518,2583=>602,2584=>674,2585=>530,2586=>502,2587=>576,2588=>476, 2589=>558,2590=>501,2591=>510,2592=>540,2593=>508,2594=>512,2595=>558,2596=>468,2597=>518,2598=>488, 2599=>518,2600=>522,2602=>518,2603=>490,2604=>546,2605=>500,2606=>530,2607=>654,2608=>522,2610=>710, 2611=>710,2613=>498,2614=>530,2616=>530,2617=>501,2620=>286,2622=>156,2623=>174,2624=>174,2625=>0, 2626=>0,2631=>0,2632=>0,2635=>0,2636=>0,2637=>0,2641=>0,2649=>534,2650=>618,2651=>492, 2652=>484,2654=>506,2662=>616,2663=>480,2664=>560,2665=>480,2666=>468,2667=>492,2668=>514,2669=>538, 2670=>572,2671=>560,2672=>0,2673=>0,2674=>498,2675=>596,2676=>900,2677=>0,2946=>0,2947=>616, 2949=>910,2950=>1072,2951=>848,2952=>591,2953=>492,2954=>1123,2958=>602,2959=>602,2960=>691,2962=>753, 2963=>753,2964=>1597,2965=>677,2969=>697,2970=>607,2972=>691,2974=>871,2975=>589,2979=>1230,2980=>688, 2984=>560,2985=>911,2986=>477,2990=>625,2991=>672,2992=>452,2993=>553,2994=>651,2995=>804,2996=>645, 2997=>740,2998=>767,2999=>865,3000=>870,3001=>1067,3006=>452,3007=>176,3008=>0,3009=>404,3010=>601, 3014=>690,3015=>500,3016=>840,3018=>1150,3019=>1000,3020=>1488,3021=>0,3024=>753,3031=>844,3046=>500, 3047=>677,3048=>829,3049=>673,3050=>793,3051=>845,3052=>861,3053=>602,3054=>910,3055=>807,3056=>553, 3057=>697,3058=>906,3059=>609,3060=>853,3061=>1585,3062=>664,3063=>978,3064=>1325,3065=>845,3066=>731, 3330=>417,3331=>221,3333=>1055,3334=>1195,3335=>792,3336=>1469,3337=>570,3338=>1244,3339=>676,3340=>897, 3342=>1008,3343=>1008,3344=>1538,3346=>586,3347=>981,3348=>1254,3349=>776,3350=>798,3351=>691,3352=>1095, 3353=>811,3354=>728,3355=>963,3356=>704,3357=>1245,3358=>1106,3359=>466,3360=>531,3361=>984,3362=>1028, 3363=>1102,3364=>780,3365=>732,3366=>485,3367=>737,3368=>747,3370=>780,3371=>962,3372=>1023,3373=>500, 3374=>511,3375=>792,3376=>530,3377=>512,3378=>712,3379=>556,3380=>519,3381=>716,3382=>786,3383=>921, 3384=>977,3385=>978,3389=>375,3390=>403,3391=>283,3392=>323,3393=>275,3394=>258,3395=>378,3396=>378, 3398=>542,3399=>478,3400=>1070,3402=>0,3403=>0,3404=>0,3405=>89,3415=>677,3424=>676,3425=>1006, 3426=>0,3427=>0,3430=>559,3431=>660,3432=>674,3433=>933,3434=>671,3435=>699,3436=>704,3437=>694, 3438=>678,3439=>684,3440=>981,3441=>742,3442=>1056,3443=>660,3444=>664,3445=>870,3449=>864,3450=>1137, 3451=>776,3452=>534,3453=>860,3454=>780,3455=>866,3458=>254,3459=>254,3461=>616,3462=>922,3463=>908, 3464=>907,3465=>626,3466=>615,3467=>763,3468=>1109,3469=>1019,3470=>1311,3471=>1050,3472=>1477,3473=>677, 3474=>746,3475=>1314,3476=>741,3477=>741,3478=>1170,3482=>894,3483=>715,3484=>715,3485=>719,3486=>741, 3487=>834,3488=>719,3489=>677,3490=>677,3491=>1302,3492=>1005,3493=>919,3494=>677,3495=>719,3496=>677, 3497=>741,3498=>677,3499=>1123,3500=>743,3501=>779,3502=>677,3503=>444,3504=>741,3505=>921,3507=>444, 3508=>677,3509=>677,3510=>715,3511=>787,3512=>719,3513=>741,3514=>719,3515=>604,3517=>763,3520=>719, 3521=>715,3522=>677,3523=>719,3524=>787,3525=>763,3526=>677,3530=>0,3535=>329,3536=>319,3537=>319, 3538=>0,3539=>0,3540=>0,3542=>0,3544=>329,3545=>691,3546=>1062,3547=>1333,3548=>1278,3549=>1235, 3550=>1292,3551=>461,3570=>680,3571=>481,3572=>948,3585=>532,3586=>472,3587=>534,3588=>532,3589=>544, 3590=>583,3591=>417,3592=>488,3593=>604,3594=>472,3595=>534,3596=>716,3597=>717,3598=>568,3599=>568, 3600=>457,3601=>637,3602=>731,3603=>790,3604=>531,3605=>542,3606=>522,3607=>577,3608=>468,3609=>603, 3610=>554,3611=>554,3612=>556,3613=>556,3614=>604,3615=>604,3616=>568,3617=>542,3618=>496,3619=>442, 3620=>530,3621=>512,3622=>568,3623=>478,3624=>543,3625=>614,3626=>525,3627=>578,3628=>659,3629=>514, 3630=>514,3631=>450,3632=>402,3633=>0,3634=>378,3635=>415,3636=>0,3637=>0,3638=>0,3639=>0, 3640=>0,3641=>0,3642=>0,3647=>620,3648=>286,3649=>521,3650=>447,3651=>426,3652=>424,3653=>333, 3654=>453,3655=>0,3656=>0,3657=>0,3658=>0,3659=>0,3660=>0,3661=>0,3662=>0,3663=>657, 3664=>528,3665=>528,3666=>571,3667=>594,3668=>631,3669=>632,3670=>478,3671=>713,3672=>597,3673=>565, 3674=>615,3675=>1381,4256=>453,4257=>448,4258=>546,4259=>619,4260=>478,4261=>481,4262=>459,4263=>707, 4264=>467,4265=>471,4266=>842,4267=>464,4268=>443,4269=>707,4270=>460,4271=>465,4272=>686,4273=>440, 4274=>550,4275=>561,4276=>580,4277=>467,4278=>630,4279=>466,4280=>517,4281=>456,4282=>502,4283=>464, 4284=>534,4285=>440,4286=>443,4287=>522,4288=>460,4289=>463,4290=>536,4291=>455,4292=>468,4293=>449, 4304=>454,4305=>452,4306=>544,4307=>629,4308=>451,4309=>452,4310=>452,4311=>702,4312=>451,4313=>452, 4314=>820,4315=>451,4316=>453,4317=>695,4318=>449,4319=>448,4320=>694,4321=>501,4322=>544,4323=>518, 4324=>560,4325=>450,4326=>627,4327=>452,4328=>490,4329=>452,4330=>485,4331=>452,4332=>485,4333=>443, 4334=>500,4335=>582,4336=>455,4337=>451,4338=>482,4339=>414,4340=>453,4341=>418,4342=>741,4343=>452, 4344=>452,4345=>544,4346=>454,4347=>410,4348=>339,4608=>583,4609=>770,4610=>560,4611=>525,4612=>525, 4613=>583,4614=>758,4616=>598,4617=>787,4618=>817,4619=>583,4620=>758,4621=>612,4622=>875,4623=>817, 4624=>817,4625=>1050,4626=>1050,4627=>817,4628=>1050,4629=>817,4630=>787,4631=>1021,4632=>933,4633=>1137, 4634=>1067,4635=>980,4636=>1065,4637=>962,4638=>962,4639=>1097,4640=>831,4641=>1021,4642=>851,4643=>735, 4644=>875,4645=>968,4646=>817,4647=>881,4648=>583,4649=>642,4650=>583,4651=>758,4652=>700,4653=>583, 4654=>700,4655=>758,4656=>583,4657=>787,4658=>787,4659=>583,4660=>729,4661=>583,4662=>583,4663=>817, 4664=>642,4665=>817,4666=>846,4667=>642,4668=>758,4669=>744,4670=>642,4671=>817,4672=>700,4673=>700, 4674=>700,4675=>758,4676=>700,4677=>700,4678=>729,4680=>846,4682=>1079,4683=>700,4684=>700,4685=>1021, 4688=>700,4689=>700,4690=>700,4691=>758,4692=>700,4693=>758,4694=>729,4696=>846,4698=>1079,4699=>700, 4700=>700,4701=>1021,4704=>525,4705=>758,4706=>758,4707=>525,4708=>700,4709=>773,4710=>525,4711=>787, 4712=>525,4713=>758,4714=>758,4715=>525,4716=>700,4717=>773,4718=>525,4719=>525,4720=>729,4721=>729, 4722=>729,4723=>802,4724=>729,4725=>729,4726=>758,4727=>729,4728=>758,4729=>758,4730=>758,4731=>817, 4732=>758,4733=>817,4734=>758,4735=>758,4736=>612,4737=>817,4738=>817,4739=>612,4740=>787,4741=>583, 4742=>875,4744=>962,4746=>992,4747=>700,4748=>758,4749=>904,4752=>408,4753=>583,4754=>525,4755=>554, 4756=>481,4757=>554,4758=>642,4759=>671,4760=>700,4761=>758,4762=>729,4763=>700,4764=>671,4765=>700, 4766=>758,4767=>700,4768=>583,4769=>735,4770=>822,4771=>583,4772=>793,4773=>583,4774=>583,4775=>694, 4776=>554,4777=>729,4778=>773,4779=>554,4780=>700,4781=>554,4782=>554,4784=>992,4786=>1021,4787=>671, 4788=>787,4789=>904,4792=>729,4793=>904,4794=>948,4795=>729,4796=>875,4797=>729,4798=>729,4800=>1137, 4802=>1167,4803=>758,4804=>875,4805=>1108,4808=>758,4809=>875,4810=>700,4811=>700,4812=>700,4813=>992, 4814=>758,4816=>554,4817=>787,4818=>758,4819=>583,4820=>758,4821=>496,4822=>612,4824=>525,4825=>700, 4826=>700,4827=>525,4828=>685,4829=>729,4830=>510,4831=>729,4832=>962,4833=>962,4834=>962,4835=>962, 4836=>962,4837=>1021,4838=>962,4839=>962,4840=>467,4841=>525,4842=>671,4843=>612,4844=>612,4845=>671, 4846=>671,4848=>612,4849=>875,4850=>817,4851=>642,4852=>729,4853=>729,4854=>758,4855=>817,4856=>700, 4857=>758,4858=>715,4859=>700,4860=>700,4861=>787,4862=>758,4863=>700,4864=>700,4865=>758,4866=>715, 4867=>700,4868=>700,4869=>787,4870=>758,4871=>700,4872=>467,4873=>671,4874=>671,4875=>612,4876=>612, 4877=>583,4878=>525,4880=>846,4882=>904,4883=>554,4884=>700,4885=>817,4888=>525,4889=>729,4890=>729, 4891=>612,4892=>671,4893=>583,4894=>525,4896=>817,4897=>1021,4898=>1021,4899=>817,4900=>992,4901=>758, 4902=>817,4903=>1021,4904=>1079,4905=>1137,4906=>1137,4907=>1050,4908=>1312,4909=>1050,4910=>1050,4911=>1123, 4912=>647,4913=>793,4914=>822,4915=>647,4916=>793,4917=>764,4918=>583,4919=>647,4920=>583,4921=>793, 4922=>822,4923=>583,4924=>793,4925=>764,4926=>583,4927=>793,4928=>540,4929=>758,4930=>583,4931=>467, 4932=>583,4933=>481,4934=>612,4936=>758,4937=>700,4938=>758,4939=>700,4940=>831,4941=>671,4942=>758, 4943=>700,4944=>758,4945=>758,4946=>758,4947=>817,4948=>758,4949=>758,4950=>817,4951=>758,4952=>642, 4953=>980,4954=>758,4961=>233,4962=>583,4963=>408,4964=>408,4965=>525,4966=>525,4967=>233,4968=>700, 4969=>671,4970=>612,4971=>642,4972=>642,4973=>642,4974=>583,4975=>700,4976=>758,4977=>642,4978=>583, 4979=>700,4980=>729,4981=>720,4982=>583,4983=>758,4984=>700,4985=>904,4986=>612,4987=>583,4988=>875, 5024=>711,5025=>678,5026=>604,5027=>667,5028=>796,5029=>301,5030=>516,5031=>544,5032=>457,5033=>716, 5034=>703,5035=>383,5036=>628,5037=>709,5038=>455,5039=>601,5040=>472,5041=>574,5042=>730,5043=>939, 5044=>498,5045=>528,5046=>667,5047=>891,5048=>505,5049=>792,5050=>957,5051=>725,5052=>595,5053=>733, 5054=>698,5055=>638,5056=>720,5057=>732,5058=>624,5059=>638,5060=>565,5061=>903,5062=>655,5063=>681, 5064=>675,5065=>949,5066=>683,5067=>547,5068=>693,5069=>732,5070=>529,5071=>569,5072=>536,5073=>677, 5074=>631,5075=>542,5076=>973,5077=>543,5078=>607,5079=>652,5080=>652,5081=>693,5082=>514,5083=>803, 5084=>658,5085=>597,5086=>627,5087=>659,5088=>679,5089=>706,5090=>563,5091=>618,5092=>767,5093=>776, 5094=>731,5095=>492,5096=>808,5097=>823,5098=>796,5099=>689,5100=>716,5101=>518,5102=>521,5103=>719, 5104=>563,5105=>776,5106=>634,5107=>822,5108=>621,5920=>502,5921=>502,5922=>500,5923=>498,5924=>500, 5925=>502,5926=>502,5927=>502,5928=>500,5929=>503,5930=>502,5931=>502,5932=>500,5933=>500,5934=>500, 5935=>796,5936=>500,5937=>502,5938=>0,5939=>0,5940=>0,5941=>230,5942=>397,6480=>537,6481=>537, 6482=>531,6483=>678,6484=>682,6485=>628,6486=>732,6487=>721,6488=>598,6489=>583,6490=>702,6491=>554, 6492=>683,6493=>554,6494=>710,6495=>695,6496=>523,6497=>678,6498=>589,6499=>272,6500=>506,6501=>515, 6502=>515,6503=>210,6504=>210,6505=>515,6506=>515,6507=>515,6508=>229,6509=>705,6512=>649,6513=>538, 6514=>568,6515=>520,6516=>544,6656=>820,6657=>958,6658=>758,6659=>859,6660=>958,6661=>727,6662=>904, 6663=>940,6664=>850,6665=>905,6666=>838,6667=>961,6668=>1000,6669=>880,6670=>1189,6671=>1246,6672=>1177, 6673=>757,6674=>1246,6675=>1192,6676=>709,6677=>1192,6678=>1075,6679=>0,6680=>0,6681=>534,6682=>690, 6683=>0,6686=>697,6687=>500,7424=>484,7425=>595,7426=>651,7427=>446,7428=>446,7429=>483,7430=>483, 7431=>409,7432=>426,7433=>278,7434=>260,7435=>483,7436=>409,7437=>595,7438=>483,7439=>483,7440=>435, 7441=>507,7442=>507,7443=>673,7444=>709,7445=>378,7446=>483,7447=>483,7448=>372,7449=>456,7450=>446, 7451=>409,7452=>483,7453=>488,7454=>660,7455=>500,7456=>483,7457=>632,7458=>409,7459=>355,7460=>444, 7461=>681,7462=>392,7463=>483,7464=>483,7465=>372,7466=>541,7467=>470,7468=>484,7469=>595,7470=>446, 7471=>446,7472=>483,7473=>409,7474=>409,7475=>483,7476=>483,7477=>223,7478=>260,7479=>483,7480=>409, 7481=>595,7482=>483,7483=>483,7484=>483,7485=>378,7486=>372,7487=>446,7488=>409,7489=>483,7490=>632, 7491=>297,7492=>297,7493=>335,7494=>440,7495=>335,7496=>335,7497=>297,7498=>297,7499=>285,7500=>285, 7501=>335,7502=>186,7503=>335,7504=>521,7505=>335,7506=>335,7507=>297,7508=>483,7509=>483,7510=>335, 7511=>186,7512=>335,7513=>326,7514=>521,7515=>335,7516=>442,7517=>353,7518=>321,7519=>357,7520=>430, 7521=>321,7522=>186,7523=>223,7524=>335,7525=>335,7526=>353,7527=>321,7528=>353,7529=>430,7530=>321, 7531=>754,7532=>500,7533=>500,7534=>333,7535=>778,7536=>500,7537=>500,7538=>333,7539=>333,7540=>389, 7541=>278,7542=>444,7543=>500,7544=>483,7545=>447,7546=>774,7547=>280,7548=>278,7549=>500,7550=>483, 7551=>514,7552=>500,7553=>500,7554=>333,7555=>676,7556=>525,7557=>278,7558=>802,7559=>507,7560=>500, 7561=>333,7562=>389,7563=>384,7564=>500,7565=>500,7566=>444,7567=>602,7568=>637,7569=>648,7570=>590, 7571=>559,7572=>426,7573=>590,7574=>413,7575=>444,7576=>360,7577=>638,7578=>389,7579=>335,7580=>293, 7581=>283,7582=>337,7583=>299,7584=>229,7585=>251,7586=>335,7587=>322,7588=>188,7589=>212,7590=>278, 7591=>182,7592=>240,7593=>233,7594=>208,7595=>287,7596=>499,7597=>533,7598=>401,7599=>374,7600=>330, 7601=>329,7602=>426,7603=>262,7604=>312,7605=>197,7606=>344,7607=>336,7608=>323,7609=>334,7610=>325, 7611=>293,7612=>403,7613=>288,7614=>257,7615=>354,7680=>722,7681=>444,7682=>667,7683=>500,7684=>667, 7685=>500,7686=>667,7687=>500,7688=>667,7689=>444,7690=>722,7691=>500,7692=>722,7693=>500,7694=>722, 7695=>500,7696=>720,7697=>500,7698=>722,7699=>500,7700=>611,7701=>444,7702=>611,7703=>444,7704=>611, 7705=>444,7706=>611,7707=>444,7708=>611,7709=>444,7710=>556,7711=>333,7712=>722,7713=>500,7714=>722, 7715=>500,7716=>722,7717=>500,7718=>722,7719=>500,7720=>722,7721=>500,7722=>722,7723=>500,7724=>333, 7725=>278,7726=>333,7727=>278,7728=>722,7729=>500,7730=>722,7731=>500,7732=>722,7733=>500,7734=>611, 7735=>278,7736=>611,7737=>278,7738=>611,7739=>278,7740=>611,7741=>278,7742=>889,7743=>778,7744=>889, 7745=>778,7746=>889,7747=>778,7748=>722,7749=>500,7750=>722,7751=>500,7752=>722,7753=>500,7754=>722, 7755=>500,7756=>722,7757=>500,7758=>722,7759=>500,7760=>722,7761=>500,7762=>722,7763=>500,7764=>556, 7765=>500,7766=>556,7767=>500,7768=>667,7769=>333,7770=>667,7771=>333,7772=>667,7773=>333,7774=>667, 7775=>333,7776=>556,7777=>389,7778=>556,7779=>389,7780=>556,7781=>389,7782=>556,7783=>389,7784=>556, 7785=>389,7786=>611,7787=>278,7788=>611,7789=>278,7790=>611,7791=>278,7792=>611,7793=>278,7794=>722, 7795=>500,7796=>722,7797=>500,7798=>722,7799=>500,7800=>722,7801=>500,7802=>722,7803=>500,7804=>722, 7805=>500,7806=>722,7807=>500,7808=>944,7809=>722,7810=>944,7811=>722,7812=>944,7813=>722,7814=>944, 7815=>722,7816=>944,7817=>722,7818=>722,7819=>500,7820=>722,7821=>500,7822=>722,7823=>500,7824=>611, 7825=>444,7826=>611,7827=>444,7828=>611,7829=>444,7830=>500,7831=>278,7832=>722,7833=>500,7834=>444, 7835=>333,7836=>333,7837=>333,7838=>659,7839=>534,7840=>722,7841=>444,7842=>722,7843=>444,7844=>722, 7845=>444,7846=>722,7847=>444,7848=>722,7849=>454,7850=>722,7851=>444,7852=>722,7853=>444,7854=>722, 7855=>444,7856=>722,7857=>444,7858=>722,7859=>454,7860=>722,7861=>444,7862=>722,7863=>444,7864=>611, 7865=>444,7866=>611,7867=>444,7868=>611,7869=>444,7870=>611,7871=>444,7872=>611,7873=>444,7874=>613, 7875=>444,7876=>611,7877=>444,7878=>611,7879=>444,7880=>333,7881=>278,7882=>333,7883=>278,7884=>722, 7885=>500,7886=>722,7887=>500,7888=>722,7889=>500,7890=>722,7891=>500,7892=>722,7893=>500,7894=>722, 7895=>500,7896=>722,7897=>500,7898=>722,7899=>540,7900=>722,7901=>540,7902=>720,7903=>540,7904=>722, 7905=>540,7906=>722,7907=>540,7908=>722,7909=>500,7910=>717,7911=>500,7912=>782,7913=>544,7914=>782, 7915=>544,7916=>782,7917=>544,7918=>782,7919=>544,7920=>782,7921=>544,7922=>722,7923=>500,7924=>722, 7925=>500,7926=>722,7927=>501,7928=>722,7929=>500,7930=>914,7931=>514,7932=>500,7933=>342,7934=>722, 7935=>530,7936=>583,7937=>583,7938=>583,7939=>583,7940=>583,7941=>583,7942=>583,7943=>583,7944=>722, 7945=>722,7946=>813,7947=>817,7948=>763,7949=>765,7950=>720,7951=>722,7952=>426,7953=>426,7954=>426, 7955=>426,7956=>426,7957=>426,7960=>770,7961=>770,7962=>902,7963=>919,7964=>940,7965=>936,7968=>536, 7969=>536,7970=>536,7971=>536,7972=>536,7973=>536,7974=>536,7975=>536,7976=>847,7977=>859,7978=>986, 7979=>1010,7980=>1026,7981=>1029,7982=>918,7983=>921,7984=>286,7985=>286,7986=>302,7987=>320,7988=>300, 7989=>306,7990=>312,7991=>303,7992=>475,7993=>507,7994=>617,7995=>654,7996=>655,7997=>660,7998=>551, 7999=>566,8000=>500,8001=>500,8002=>500,8003=>500,8004=>500,8005=>500,8008=>816,8009=>825,8010=>969, 8011=>995,8012=>938,8013=>955,8016=>514,8017=>514,8018=>514,8019=>514,8020=>514,8021=>514,8022=>514, 8023=>514,8025=>818,8027=>988,8029=>989,8031=>893,8032=>693,8033=>693,8034=>693,8035=>693,8036=>693, 8037=>693,8038=>693,8039=>693,8040=>836,8041=>843,8042=>1006,8043=>1024,8044=>974,8045=>986,8046=>905, 8047=>896,8048=>583,8049=>583,8050=>426,8051=>426,8052=>536,8053=>536,8054=>286,8055=>286,8056=>500, 8057=>500,8058=>514,8059=>514,8060=>693,8061=>693,8064=>583,8065=>583,8066=>583,8067=>583,8068=>583, 8069=>583,8070=>583,8071=>583,8072=>888,8073=>889,8074=>984,8075=>991,8076=>943,8077=>948,8078=>884, 8079=>886,8080=>536,8081=>536,8082=>536,8083=>536,8084=>536,8085=>536,8086=>536,8087=>536,8088=>1017, 8089=>1026,8090=>1153,8091=>1179,8092=>1195,8093=>1199,8094=>1088,8095=>1088,8096=>693,8097=>693,8098=>693, 8099=>693,8100=>693,8101=>693,8102=>693,8103=>693,8104=>1034,8105=>1040,8106=>1210,8107=>1229,8108=>1176, 8109=>1186,8110=>1098,8111=>1090,8112=>583,8113=>583,8114=>583,8115=>583,8116=>583,8118=>583,8119=>583, 8120=>722,8121=>722,8122=>722,8123=>722,8124=>889,8125=>250,8126=>332,8127=>500,8128=>500,8129=>534, 8130=>536,8131=>536,8132=>536,8134=>536,8135=>536,8136=>761,8137=>800,8138=>829,8139=>893,8140=>883, 8141=>500,8142=>500,8143=>500,8144=>286,8145=>286,8146=>286,8147=>286,8150=>286,8151=>286,8152=>333, 8153=>333,8154=>447,8155=>537,8157=>500,8158=>500,8159=>500,8160=>514,8161=>514,8162=>514,8163=>514, 8164=>528,8165=>528,8166=>514,8167=>514,8168=>696,8169=>696,8170=>816,8171=>828,8172=>721,8173=>333, 8174=>333,8175=>500,8178=>693,8179=>693,8180=>693,8182=>693,8183=>693,8184=>832,8185=>899,8186=>847, 8187=>852,8188=>928,8189=>500,8190=>500,8192=>500,8193=>1000,8194=>500,8195=>1000,8196=>333,8197=>250, 8198=>167,8199=>500,8200=>250,8201=>200,8202=>100,8203=>0,8204=>0,8205=>0,8206=>0,8207=>0, 8208=>333,8209=>333,8210=>500,8213=>1000,8214=>293,8215=>478,8219=>250,8223=>444,8227=>350,8228=>620, 8229=>620,8231=>250,8232=>0,8233=>0,8234=>0,8235=>0,8236=>0,8237=>0,8238=>0,8239=>250, 8241=>1363,8242=>247,8243=>411,8244=>611,8245=>247,8246=>411,8247=>611,8248=>469,8251=>629,8252=>666, 8253=>444,8254=>500,8255=>953,8256=>953,8257=>314,8258=>931,8259=>333,8260=>167,8261=>383,8262=>383, 8263=>888,8264=>777,8265=>777,8266=>500,8267=>453,8268=>453,8269=>450,8270=>500,8271=>278,8272=>882, 8273=>500,8274=>497,8275=>500,8276=>953,8277=>512,8278=>410,8279=>855,8280=>620,8281=>620,8282=>179, 8283=>621,8284=>564,8285=>179,8286=>179,8287=>111,8288=>0,8289=>0,8290=>0,8291=>0,8292=>0, 8304=>320,8305=>180,8308=>320,8309=>320,8310=>320,8311=>320,8312=>320,8313=>320,8314=>300,8315=>300, 8316=>300,8317=>216,8318=>216,8319=>335,8320=>320,8321=>320,8322=>320,8323=>320,8324=>320,8325=>320, 8326=>320,8327=>320,8328=>320,8329=>320,8330=>300,8331=>300,8332=>300,8333=>216,8334=>216,8336=>320, 8337=>304,8338=>340,8339=>337,8340=>298,8352=>698,8353=>667,8354=>667,8355=>556,8356=>500,8357=>778, 8358=>722,8359=>940,8360=>1026,8361=>813,8362=>869,8363=>512,8365=>722,8366=>611,8367=>1340,8368=>489, 8369=>601,8370=>619,8371=>722,8372=>556,8373=>611,8374=>498,8376=>524,8400=>0,8401=>0,8402=>0, 8403=>0,8404=>0,8405=>0,8406=>0,8407=>0,8408=>0,8409=>0,8410=>0,8411=>0,8412=>0, 8413=>0,8414=>0,8415=>0,8416=>0,8417=>0,8418=>0,8419=>0,8420=>0,8421=>0,8422=>0, 8423=>0,8424=>0,8425=>0,8426=>0,8427=>0,8428=>0,8429=>0,8430=>0,8431=>0,8432=>0, 8448=>751,8449=>723,8450=>674,8451=>954,8452=>556,8453=>781,8454=>806,8455=>518,8456=>667,8457=>822, 8458=>490,8459=>824,8460=>663,8461=>818,8462=>500,8463=>500,8464=>578,8465=>613,8466=>715,8467=>417, 8468=>778,8469=>751,8470=>880,8471=>792,8472=>832,8473=>589,8474=>729,8475=>892,8476=>711,8477=>755, 8478=>667,8479=>667,8480=>939,8481=>1156,8483=>722,8484=>659,8485=>389,8486=>743,8487=>757,8488=>663, 8489=>286,8490=>722,8491=>722,8492=>846,8493=>613,8494=>533,8495=>363,8496=>587,8497=>690,8498=>556, 8499=>1021,8500=>387,8501=>537,8502=>537,8503=>350,8504=>537,8505=>417,8506=>906,8507=>1155,8508=>655, 8510=>586,8511=>722,8513=>663,8514=>485,8515=>485,8516=>637,8522=>516,8523=>778,8525=>899,8526=>386, 8528=>780,8529=>770,8530=>980,8531=>750,8532=>750,8533=>750,8534=>750,8535=>750,8536=>750,8537=>750, 8538=>750,8539=>750,8540=>750,8541=>750,8542=>750,8543=>750,8544=>333,8545=>658,8546=>977,8547=>1041, 8548=>722,8549=>1040,8550=>1363,8551=>1679,8552=>1051,8553=>722,8554=>1046,8555=>1366,8556=>611,8557=>667, 8558=>722,8559=>889,8560=>278,8561=>536,8562=>794,8563=>734,8564=>500,8565=>758,8566=>1016,8567=>1274, 8568=>754,8569=>500,8570=>764,8571=>1022,8572=>278,8573=>444,8574=>500,8575=>778,8576=>1082,8577=>722, 8578=>1090,8579=>667,8580=>444,8581=>667,8582=>528,8583=>722,8584=>1093,8585=>771,8592=>964,8593=>472, 8594=>964,8595=>500,8596=>964,8597=>499,8598=>964,8599=>964,8600=>964,8601=>964,8602=>964,8603=>964, 8604=>1009,8605=>1009,8606=>964,8607=>500,8608=>964,8609=>499,8610=>1093,8611=>1093,8612=>1093,8613=>500, 8614=>1093,8615=>500,8616=>500,8617=>964,8618=>964,8619=>964,8620=>964,8621=>1151,8622=>964,8623=>592, 8624=>482,8625=>482,8626=>482,8627=>482,8628=>658,8629=>658,8630=>1069,8631=>1069,8632=>836,8633=>964, 8634=>939,8635=>939,8636=>964,8637=>964,8638=>499,8639=>499,8640=>964,8641=>964,8642=>499,8643=>499, 8644=>964,8645=>840,8646=>964,8647=>964,8648=>840,8649=>964,8650=>840,8651=>964,8652=>964,8653=>964, 8654=>964,8655=>964,8656=>964,8657=>550,8658=>964,8659=>550,8660=>964,8661=>550,8662=>1047,8663=>1047, 8664=>1047,8665=>1047,8666=>964,8667=>964,8668=>1092,8669=>1092,8670=>500,8671=>500,8672=>964,8673=>500, 8674=>964,8675=>500,8676=>964,8677=>964,8678=>964,8679=>596,8680=>964,8681=>596,8682=>594,8683=>594, 8684=>594,8685=>595,8686=>596,8687=>596,8688=>966,8689=>926,8690=>926,8691=>596,8692=>964,8693=>842, 8694=>964,8695=>964,8696=>964,8697=>964,8698=>964,8699=>964,8700=>964,8701=>964,8702=>964,8703=>964, 8704=>587,8705=>716,8706=>494,8707=>587,8708=>587,8709=>746,8710=>612,8711=>612,8712=>536,8713=>536, 8714=>439,8715=>536,8716=>536,8717=>439,8718=>506,8719=>823,8720=>823,8721=>713,8722=>564,8723=>564, 8724=>564,8725=>636,8726=>636,8727=>471,8728=>497,8729=>497,8730=>549,8731=>549,8732=>549,8733=>636, 8734=>853,8735=>509,8736=>575,8737=>559,8738=>509,8739=>200,8740=>250,8741=>320,8742=>320,8743=>564, 8744=>564,8745=>654,8746=>654,8747=>416,8748=>750,8749=>1083,8750=>722,8751=>750,8752=>1083,8753=>697, 8754=>722,8755=>722,8756=>565,8757=>568,8758=>250,8759=>629,8760=>564,8761=>758,8762=>564,8763=>636, 8764=>636,8765=>636,8766=>503,8767=>614,8768=>636,8769=>636,8770=>636,8771=>636,8772=>636,8773=>636, 8774=>636,8775=>636,8776=>636,8777=>636,8778=>636,8779=>636,8780=>636,8781=>636,8782=>636,8783=>636, 8784=>564,8785=>564,8786=>564,8787=>564,8788=>735,8789=>755,8790=>564,8791=>564,8792=>564,8793=>564, 8794=>564,8795=>564,8796=>600,8797=>564,8798=>564,8799=>564,8800=>564,8801=>636,8802=>636,8803=>636, 8804=>636,8805=>636,8806=>636,8807=>636,8808=>636,8809=>636,8810=>900,8811=>899,8812=>410,8813=>636, 8814=>636,8815=>636,8816=>636,8817=>636,8818=>636,8819=>636,8820=>636,8821=>636,8822=>636,8823=>636, 8824=>636,8825=>636,8826=>636,8827=>636,8828=>636,8829=>636,8830=>636,8831=>636,8832=>636,8833=>636, 8834=>636,8835=>636,8836=>636,8837=>636,8838=>636,8839=>636,8840=>636,8841=>636,8842=>636,8843=>636, 8844=>654,8845=>654,8846=>654,8847=>636,8848=>636,8849=>636,8850=>636,8851=>636,8852=>636,8853=>636, 8854=>636,8855=>636,8856=>636,8857=>636,8858=>636,8859=>636,8860=>636,8861=>636,8862=>636,8863=>636, 8864=>636,8865=>636,8866=>600,8867=>600,8868=>712,8869=>712,8870=>466,8871=>466,8872=>595,8873=>588, 8874=>710,8875=>706,8876=>595,8877=>596,8878=>588,8879=>706,8880=>636,8881=>636,8882=>636,8883=>636, 8884=>636,8885=>636,8886=>1296,8887=>1296,8888=>966,8889=>564,8890=>626,8891=>564,8892=>564,8893=>566, 8894=>570,8895=>582,8896=>744,8897=>744,8898=>764,8899=>764,8900=>512,8901=>250,8902=>471,8903=>629, 8904=>636,8905=>636,8906=>636,8907=>816,8908=>816,8909=>636,8910=>636,8911=>636,8912=>636,8913=>636, 8914=>654,8915=>654,8916=>654,8917=>564,8918=>564,8919=>564,8920=>1215,8921=>1215,8922=>636,8923=>636, 8924=>636,8925=>636,8926=>636,8927=>636,8928=>636,8929=>636,8930=>636,8931=>636,8932=>636,8933=>636, 8934=>636,8935=>636,8936=>636,8937=>636,8938=>636,8939=>636,8940=>636,8941=>636,8942=>250,8943=>1000, 8944=>1000,8945=>1000,8946=>601,8947=>536,8948=>464,8949=>536,8950=>536,8951=>464,8952=>536,8953=>536, 8954=>601,8955=>536,8956=>464,8957=>536,8958=>464,8959=>600,8960=>780,8961=>442,8962=>794,8968=>474, 8969=>474,8970=>474,8971=>474,8976=>564,8977=>503,8978=>791,8979=>791,8980=>593,8981=>560,8982=>563, 8983=>563,8984=>800,8985=>564,8986=>800,8987=>632,8988=>474,8989=>474,8990=>474,8991=>474,8992=>686, 8993=>686,8994=>658,8995=>658,8996=>800,8997=>800,8998=>800,8999=>800,9000=>800,9001=>329,9002=>329, 9003=>800,9004=>800,9031=>777,9032=>777,9040=>777,9047=>777,9054=>777,9088=>800,9089=>800,9090=>800, 9091=>800,9094=>800,9095=>800,9096=>800,9097=>800,9098=>800,9100=>800,9103=>788,9104=>788,9105=>788, 9106=>788,9108=>800,9109=>800,9110=>800,9111=>800,9112=>800,9113=>800,9114=>800,9115=>384,9116=>384, 9117=>384,9118=>384,9119=>384,9120=>384,9121=>388,9122=>388,9123=>388,9124=>388,9125=>388,9126=>388, 9127=>494,9128=>494,9129=>494,9130=>494,9131=>494,9132=>494,9133=>494,9134=>686,9138=>1287,9139=>1287, 9140=>860,9141=>861,9142=>861,9144=>889,9145=>889,9146=>889,9147=>889,9148=>889,9149=>889,9166=>800, 9167=>800,9180=>896,9181=>896,9182=>903,9183=>904,9184=>910,9185=>910,9186=>761,9187=>910,9189=>942, 9190=>817,9216=>800,9217=>800,9218=>800,9219=>800,9220=>800,9221=>800,9222=>800,9223=>800,9224=>800, 9225=>800,9226=>800,9227=>800,9228=>800,9229=>800,9230=>800,9231=>800,9232=>800,9233=>800,9234=>800, 9235=>800,9236=>800,9237=>800,9238=>800,9239=>800,9240=>800,9241=>800,9242=>800,9243=>800,9244=>800, 9245=>800,9246=>800,9247=>800,9248=>800,9249=>800,9251=>500,9252=>800,9312=>788,9313=>788,9314=>788, 9315=>788,9316=>788,9317=>788,9318=>788,9319=>788,9320=>788,9321=>788,9472=>889,9473=>889,9474=>889, 9475=>889,9484=>889,9485=>889,9486=>889,9487=>889,9488=>889,9489=>889,9490=>889,9491=>889,9492=>889, 9493=>889,9494=>889,9495=>889,9496=>889,9497=>889,9498=>889,9499=>889,9500=>889,9501=>889,9502=>889, 9503=>889,9504=>889,9505=>889,9506=>889,9507=>889,9508=>889,9509=>889,9510=>889,9511=>889,9512=>889, 9513=>889,9514=>889,9515=>889,9516=>889,9517=>889,9518=>889,9519=>889,9520=>889,9521=>889,9522=>889, 9523=>889,9524=>889,9525=>889,9526=>889,9527=>889,9528=>889,9529=>889,9530=>889,9531=>889,9532=>889, 9533=>889,9534=>889,9535=>889,9536=>889,9537=>889,9538=>889,9539=>889,9540=>889,9541=>889,9542=>889, 9543=>889,9544=>889,9545=>889,9546=>889,9547=>889,9552=>889,9553=>889,9554=>889,9555=>889,9556=>889, 9557=>889,9558=>889,9559=>889,9560=>889,9561=>889,9562=>889,9563=>889,9564=>889,9565=>889,9566=>889, 9567=>889,9568=>889,9569=>889,9570=>889,9571=>889,9572=>889,9573=>889,9574=>889,9575=>889,9576=>889, 9577=>889,9578=>889,9579=>889,9580=>889,9581=>889,9582=>889,9583=>889,9584=>889,9585=>889,9586=>889, 9587=>889,9588=>889,9589=>889,9590=>889,9591=>889,9592=>889,9593=>889,9594=>889,9595=>889,9596=>600, 9597=>889,9598=>600,9599=>889,9600=>761,9601=>761,9602=>761,9603=>761,9604=>761,9605=>761,9606=>761, 9607=>761,9608=>761,9609=>761,9610=>761,9611=>761,9612=>761,9613=>761,9614=>761,9615=>761,9616=>761, 9617=>1000,9618=>1000,9619=>1000,9620=>761,9621=>761,9622=>761,9623=>761,9624=>761,9625=>761,9626=>761, 9627=>761,9628=>761,9629=>761,9630=>761,9631=>761,9632=>761,9633=>761,9634=>761,9635=>761,9636=>761, 9637=>761,9638=>761,9639=>761,9640=>761,9641=>761,9642=>532,9643=>532,9644=>761,9645=>761,9646=>761, 9647=>761,9648=>761,9649=>761,9650=>892,9651=>892,9652=>446,9653=>446,9654=>892,9655=>892,9656=>446, 9657=>446,9658=>892,9659=>892,9660=>892,9661=>892,9662=>446,9663=>446,9664=>892,9665=>892,9666=>446, 9667=>446,9668=>892,9669=>892,9670=>788,9671=>788,9672=>788,9673=>791,9674=>494,9675=>791,9676=>791, 9677=>785,9678=>791,9679=>791,9680=>791,9681=>791,9682=>791,9683=>791,9684=>791,9685=>791,9686=>791, 9687=>791,9688=>350,9689=>761,9690=>761,9691=>761,9692=>791,9693=>791,9694=>791,9695=>791,9696=>791, 9697=>791,9698=>761,9699=>761,9700=>761,9701=>761,9702=>350,9703=>761,9704=>761,9705=>761,9706=>761, 9707=>761,9708=>892,9709=>892,9710=>892,9711=>885,9712=>761,9713=>761,9714=>761,9715=>761,9716=>791, 9717=>791,9718=>791,9719=>791,9720=>761,9721=>761,9722=>761,9723=>761,9724=>761,9725=>570,9726=>570, 9727=>761,9728=>800,9729=>800,9730=>748,9731=>800,9732=>800,9733=>811,9734=>816,9735=>468,9736=>677, 9737=>724,9738=>944,9739=>944,9740=>686,9741=>944,9742=>715,9743=>715,9744=>757,9745=>755,9746=>755, 9747=>756,9748=>800,9749=>837,9750=>719,9751=>719,9752=>782,9753=>822,9754=>954,9755=>954,9756=>933, 9757=>489,9758=>933,9759=>489,9760=>517,9761=>660,9762=>724,9763=>732,9764=>886,9765=>577,9766=>489, 9767=>563,9768=>490,9769=>770,9770=>725,9771=>860,9772=>668,9773=>753,9774=>724,9775=>730,9776=>600, 9777=>600,9778=>600,9779=>600,9780=>600,9781=>600,9782=>600,9783=>600,9784=>730,9785=>724,9786=>724, 9787=>724,9788=>799,9789=>659,9790=>659,9791=>495,9792=>495,9793=>495,9794=>686,9795=>661,9796=>544, 9797=>608,9798=>605,9799=>545,9800=>804,9801=>583,9802=>796,9803=>1006,9804=>825,9805=>1189,9806=>1144, 9807=>1189,9808=>683,9809=>808,9810=>1146,9811=>797,9812=>758,9813=>757,9814=>758,9815=>758,9816=>758, 9817=>758,9818=>758,9819=>758,9820=>758,9821=>758,9822=>758,9823=>758,9824=>770,9825=>770,9826=>770, 9827=>770,9828=>770,9829=>770,9830=>770,9831=>770,9832=>895,9833=>333,9834=>513,9835=>722,9836=>722, 9837=>371,9838=>377,9839=>402,9840=>642,9841=>655,9842=>869,9843=>905,9844=>905,9845=>905,9846=>905, 9847=>905,9848=>905,9849=>905,9850=>905,9851=>1016,9852=>1064,9853=>1064,9854=>954,9855=>606,9856=>522, 9857=>522,9858=>522,9859=>522,9860=>522,9861=>522,9862=>845,9863=>844,9864=>844,9865=>844,9866=>748, 9867=>748,9868=>748,9869=>748,9870=>748,9871=>748,9872=>726,9873=>726,9874=>963,9875=>770,9876=>1038, 9877=>388,9878=>997,9879=>787,9880=>508,9881=>809,9882=>1014,9883=>859,9884=>818,9885=>972,9888=>1000, 9889=>546,9890=>784,9891=>786,9892=>738,9893=>542,9894=>601,9895=>700,9896=>511,9897=>861,9898=>611, 9899=>611,9900=>544,9901=>782,9902=>1025,9903=>1141,9904=>1000,9905=>513,9906=>510,9907=>642,9908=>722, 9909=>719,9910=>777,9911=>495,9912=>602,9913=>836,9914=>666,9915=>666,9916=>691,9920=>689,9921=>689, 9922=>689,9923=>689,9985=>974,9986=>961,9987=>974,9988=>980,9990=>789,9991=>790,9992=>791,9993=>690, 9996=>549,9997=>855,9998=>911,9999=>933,10000=>911,10001=>945,10002=>974,10003=>755,10004=>846,10005=>762, 10006=>761,10007=>571,10008=>677,10009=>763,10010=>760,10011=>759,10012=>754,10013=>494,10014=>552,10015=>537, 10016=>577,10017=>692,10018=>786,10019=>788,10020=>788,10021=>790,10022=>793,10023=>794,10025=>823,10026=>789, 10027=>841,10028=>823,10029=>833,10030=>816,10031=>831,10032=>923,10033=>744,10034=>723,10035=>749,10036=>790, 10037=>792,10038=>695,10039=>776,10040=>768,10041=>792,10042=>759,10043=>707,10044=>708,10045=>682,10046=>701, 10047=>826,10048=>815,10049=>789,10050=>789,10051=>707,10052=>687,10053=>696,10054=>689,10055=>786,10056=>787, 10057=>713,10058=>791,10059=>785,10061=>873,10063=>762,10064=>762,10065=>759,10066=>759,10070=>784,10072=>138, 10073=>277,10074=>415,10075=>392,10076=>392,10077=>668,10078=>668,10081=>732,10082=>544,10083=>544,10084=>910, 10085=>667,10086=>760,10087=>760,10088=>390,10089=>390,10090=>317,10091=>317,10092=>276,10093=>276,10094=>509, 10095=>509,10096=>410,10097=>410,10098=>234,10099=>234,10100=>334,10101=>334,10102=>788,10103=>788,10104=>788, 10105=>788,10106=>788,10107=>788,10108=>788,10109=>788,10110=>788,10111=>788,10112=>788,10113=>788,10114=>788, 10115=>788,10116=>788,10117=>788,10118=>788,10119=>788,10120=>788,10121=>788,10122=>788,10123=>788,10124=>788, 10125=>788,10126=>788,10127=>788,10128=>788,10129=>788,10130=>788,10131=>788,10132=>894,10136=>748,10137=>924, 10138=>748,10139=>918,10140=>927,10141=>928,10142=>928,10143=>834,10144=>873,10145=>828,10146=>924,10147=>924, 10148=>917,10149=>930,10150=>931,10151=>463,10152=>883,10153=>836,10154=>836,10155=>867,10156=>867,10157=>696, 10158=>696,10159=>874,10161=>874,10162=>760,10163=>946,10164=>771,10165=>865,10166=>771,10167=>888,10168=>967, 10169=>888,10170=>831,10171=>873,10172=>927,10173=>970,10174=>918,10214=>545,10215=>545,10216=>329,10217=>329, 10218=>496,10219=>496,10224=>1000,10225=>1000,10226=>1104,10227=>1102,10228=>964,10229=>1000,10230=>1000,10231=>1000, 10232=>1000,10233=>1000,10234=>1000,10235=>1000,10236=>1000,10237=>1000,10238=>1000,10239=>1392,10752=>860,10753=>860, 10754=>860,10755=>766,10756=>766,10757=>756,10758=>756,10761=>745,10781=>702,10815=>722,11008=>1000,11009=>1000, 11010=>1000,11011=>1000,11012=>1222,11013=>1000,11014=>1000,11015=>1000,11016=>1000,11017=>1000,11018=>1000,11019=>1000, 11020=>1244,11021=>1000,11026=>770,11027=>770,11028=>770,11029=>770,11030=>770,11031=>770,11032=>770,11033=>770, 11034=>770,11035=>1000,11036=>1000,11037=>283,11038=>283,11039=>846,11040=>846,11041=>799,11042=>799,11043=>807, 11044=>1000,11045=>461,11046=>461,11047=>461,11048=>461,11049=>360,11050=>360,11051=>283,11052=>854,11053=>854, 11054=>628,11055=>628,11088=>589,11089=>443,11090=>443,11091=>802,11092=>803,11264=>645,11265=>793,11266=>851, 11267=>700,11268=>851,11269=>640,11270=>774,11271=>665,11272=>733,11273=>834,11274=>834,11275=>734,11276=>790, 11277=>580,11278=>834,11279=>979,11280=>738,11281=>410,11282=>775,11283=>471,11284=>734,11285=>851,11286=>895, 11287=>722,11288=>638,11289=>620,11290=>721,11291=>793,11292=>821,11293=>699,11294=>793,11295=>682,11296=>569, 11297=>791,11299=>751,11300=>705,11301=>874,11302=>665,11303=>1139,11304=>1023,11305=>1238,11306=>762,11310=>759, 11312=>484,11313=>595,11314=>638,11315=>525,11316=>638,11317=>480,11318=>580,11319=>499,11320=>550,11321=>625, 11322=>626,11323=>550,11324=>592,11325=>435,11326=>626,11327=>734,11328=>553,11329=>308,11330=>581,11331=>353, 11332=>550,11333=>638,11334=>671,11335=>542,11336=>478,11337=>465,11338=>540,11339=>594,11340=>616,11341=>524, 11342=>594,11343=>512,11344=>427,11345=>589,11347=>564,11348=>529,11349=>655,11350=>499,11351=>854,11352=>767, 11353=>929,11354=>571,11358=>569,11360=>611,11361=>289,11362=>627,11363=>556,11364=>667,11365=>447,11366=>303, 11367=>728,11368=>500,11369=>734,11370=>511,11371=>611,11372=>444,11373=>680,11374=>889,11375=>722,11377=>651, 11378=>1075,11379=>881,11380=>500,11381=>557,11382=>383,11383=>643,11384=>559,11385=>339,11386=>722,11387=>397, 11388=>180,11389=>469,11392=>719,11393=>499,11394=>532,11395=>381,11396=>615,11397=>433,11398=>969,11399=>680, 11400=>647,11401=>443,11402=>593,11403=>402,11404=>573,11405=>405,11406=>698,11407=>509,11408=>726,11409=>493, 11410=>283,11411=>238,11412=>628,11413=>455,11414=>653,11415=>471,11416=>819,11417=>589,11418=>698,11419=>507, 11420=>546,11421=>378,11422=>722,11423=>489,11424=>724,11425=>524,11426=>526,11427=>375,11428=>647,11429=>438, 11430=>615,11431=>433,11432=>719,11433=>519,11434=>762,11435=>538,11436=>649,11437=>461,11438=>721,11439=>519, 11440=>964,11441=>681,11456=>689,11457=>464,11464=>579,11465=>391,11466=>493,11467=>355,11492=>408,11493=>499, 11494=>496,11495=>986,11496=>466,11497=>461,11498=>934,11517=>256,11518=>617,11519=>266,11744=>0,11745=>0, 11746=>0,11747=>0,11748=>0,11749=>0,11750=>0,11751=>0,11752=>0,11753=>0,11754=>0,11755=>0, 11756=>0,11757=>0,11758=>0,11759=>0,11760=>0,11761=>0,11762=>0,11763=>0,11764=>0,11765=>0, 11766=>0,11767=>0,11768=>0,11769=>0,11770=>0,11771=>0,11772=>0,11773=>0,11774=>0,11775=>0, 11799=>333,42560=>607,42561=>411,42562=>611,42563=>410,42564=>487,42565=>347,42566=>368,42567=>286,42568=>722, 42569=>519,42570=>550,42571=>468,42572=>1145,42573=>775,42574=>665,42575=>548,42576=>1014,42577=>736,42578=>910, 42579=>675,42580=>966,42581=>677,42582=>1042,42583=>648,42584=>722,42585=>513,42586=>932,42587=>700,42588=>1042, 42589=>749,42590=>780,42591=>550,42594=>896,42595=>635,42596=>933,42597=>635,42598=>1139,42599=>777,42600=>722, 42601=>500,42602=>790,42603=>560,42604=>1262,42605=>850,42606=>734,42607=>0,42608=>0,42609=>0,42610=>0, 42611=>519,42620=>0,42621=>0,42622=>510,42623=>201,42624=>639,42625=>488,42626=>475,42627=>347,42628=>1160, 42629=>842,42630=>1000,42631=>768,42632=>737,42633=>531,42634=>827,42635=>530,42636=>608,42637=>438,42638=>742, 42639=>545,42640=>608,42641=>480,42642=>926,42643=>654,42644=>671,42645=>518,42646=>992,42647=>780,42752=>318, 42753=>318,42754=>318,42755=>318,42756=>318,42757=>318,42758=>318,42759=>318,42760=>307,42761=>307,42762=>307, 42763=>307,42764=>307,42765=>307,42766=>307,42767=>307,42768=>307,42769=>307,42770=>460,42771=>460,42772=>460, 42773=>460,42774=>460,42775=>374,42776=>445,42777=>564,42778=>564,42779=>354,42780=>354,42781=>243,42782=>243, 42783=>243,42784=>564,42785=>564,42786=>276,42787=>242,42788=>386,42789=>276,42790=>722,42791=>500,42792=>895, 42793=>703,42794=>532,42795=>409,42796=>437,42797=>389,42798=>592,42799=>600,42800=>378,42801=>378,42802=>1183, 42803=>708,42804=>1154,42805=>758,42806=>1089,42807=>716,42808=>902,42809=>586,42810=>902,42811=>586,42812=>912, 42813=>572,42814=>667,42815=>444,42816=>722,42817=>500,42818=>722,42819=>500,42820=>722,42821=>500,42822=>713, 42823=>361,42824=>611,42825=>289,42826=>750,42827=>544,42828=>918,42829=>658,42830=>1262,42831=>848,42832=>556, 42833=>500,42838=>722,42839=>500,42852=>576,42853=>496,42854=>576,42855=>496,42873=>722,42874=>500,42875=>483, 42876=>341,42877=>611,42878=>611,42879=>447,42880=>611,42881=>278,42882=>689,42883=>500,42884=>483,42885=>341, 42886=>667,42887=>444,42888=>333,42889=>278,42890=>282,42891=>286,42892=>278,43003=>556,43004=>556,43005=>889, 43006=>333,43007=>1298,64256=>589,64257=>534,64258=>530,64259=>805,64260=>799,64261=>586,64262=>677,64275=>971, 64276=>969,64277=>978,64278=>971,64279=>1219,64285=>350,64286=>0,64287=>537,64288=>537,64297=>564,64298=>537, 64299=>537,64300=>537,64301=>537,64302=>537,64303=>537,64304=>537,64305=>537,64306=>350,64307=>537,64308=>537, 64309=>350,64310=>350,64312=>537,64313=>350,64314=>537,64315=>537,64316=>537,64318=>537,64320=>350,64321=>537, 64323=>537,64324=>537,64326=>537,64327=>537,64328=>537,64329=>537,64330=>537,64331=>350,64332=>537,64333=>537, 64334=>537,64335=>537,64342=>926,64343=>926,64344=>308,64345=>308,64378=>750,64379=>750,64380=>580,64381=>580, 64394=>338,64395=>338,64402=>874,64403=>874,64404=>329,64405=>329,64508=>776,64509=>700,64510=>304,64511=>304, 65010=>640,65020=>837,65136=>300,65140=>300,65142=>300,65144=>300,65146=>300,65148=>300,65152=>724,65153=>321, 65154=>275,65155=>249,65156=>275,65157=>399,65158=>399,65159=>249,65160=>275,65161=>776,65162=>776,65163=>301, 65164=>264,65165=>249,65166=>275,65167=>950,65168=>950,65169=>293,65170=>293,65171=>424,65172=>622,65173=>925, 65174=>925,65175=>308,65176=>308,65177=>924,65178=>924,65179=>298,65180=>298,65181=>738,65182=>738,65183=>574, 65184=>574,65185=>748,65186=>750,65187=>600,65188=>600,65189=>701,65190=>775,65191=>596,65192=>596,65193=>397, 65194=>397,65195=>399,65196=>399,65197=>328,65198=>328,65199=>331,65200=>331,65201=>951,65202=>951,65203=>600, 65204=>600,65205=>949,65206=>949,65207=>649,65208=>649,65209=>949,65210=>949,65211=>823,65212=>823,65213=>949, 65214=>949,65215=>805,65216=>805,65217=>557,65218=>557,65219=>460,65220=>460,65221=>550,65222=>550,65223=>455, 65224=>550,65225=>625,65226=>575,65227=>674,65228=>550,65229=>602,65230=>577,65231=>578,65232=>577,65233=>801, 65234=>801,65235=>300,65236=>300,65237=>696,65238=>696,65239=>650,65240=>650,65241=>757,65242=>757,65243=>318, 65244=>318,65245=>655,65246=>655,65247=>206,65248=>206,65249=>549,65250=>549,65251=>403,65252=>403,65253=>651, 65254=>651,65255=>323,65256=>323,65257=>424,65258=>622,65259=>525,65260=>476,65261=>399,65262=>399,65263=>776, 65264=>776,65265=>776,65266=>776,65267=>296,65268=>264,65269=>676,65270=>724,65271=>676,65272=>724,65273=>676, 65274=>724,65275=>676,65276=>724,65279=>0,65533=>900); $enc=''; $diff=''; $file='freeserif.z'; $ctg='freeserif.ctg.z'; $originalsize=1687516; // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/freeserif.php
PHP
gpl2
55,967
<?php $type='cidfont0'; $name='HYSMyeongJoStd-Medium-Acro'; // AdobeMyungjoStd-Medium-Acro in acrobat 6 $displayname = 'MyungJo Medium (Korean)'; $desc = array( 'Ascent' => 880, 'Descent' => -120, 'CapHeight' => 720, 'Flags' => 6, 'FontBBox' => '[-28 -148 1001 880]', 'ItalicAngle' => 0, 'StemV' => 60, 'Style' => '<< /Panose <000000000600000000000000> >>', ); $cidinfo = array( 'Registry' => 'Adobe', 'Ordering' => 'Korea1', 'Supplement' => '1', ); $enc = 'UniKS-UCS2-H'; // underline position, needs checking: $up = -130; $ut = 40; $dw = 1000; $cw = array( 32 => 333, 33 => 416, 34 => 416, 35 => 833, 36 => 625, 37 => 916, 38 => 833, 39 => 250, 40 => 500, 41 => 500, 42 => 500, 43 => 833, 44 => 291, 45 => 450, 46 => 291, 47 => 375, 48 => 625, 49 => 625, 50 => 625, 51 => 625, 52 => 625, 53 => 625, 54 => 625, 55 => 625, 56 => 625, 57 => 625, 58 => 333, 59 => 333, 60 => 833, 61 => 833, 62 => 916, 63 => 500, 64 => 1000, 65 => 791, 66 => 708, 67 => 708, 68 => 750, 69 => 708, 70 => 666, 71 => 750, 72 => 791, 73 => 375, 74 => 500, 75 => 791, 76 => 666, 77 => 916, 78 => 791, 79 => 750, 80 => 666, 81 => 750, 82 => 708, 83 => 666, 84 => 791, 85 => 791, 86 => 750, 87 => 1000, 88 => 708, 89 => 708, 90 => 666, 91 => 500, 92 => 375, 93 => 500, 94 => 500, 95 => 500, 96 => 333, 97 => 541, 98 => 583, 99 => 541, 100 => 583, 101 => 583, 102 => 375, 103 => 583, 104 => 583, 105 => 291, 106 => 333, 107 => 583, 108 => 291, 109 => 875, 110 => 583, 111 => 583, 112 => 583, 113 => 583, 114 => 458, 115 => 541, 116 => 375, 117 => 583, 118 => 583, 119 => 833, 120 => 625, 121 => 625, 122 => 500, 123 => 583, 124 => 583, 125 => 583, 126 => 750, ); $_cr = array( //array(97, 97, 500), array(8094, 8190, 500) ); foreach($_cr as $_r) { for($i = $_r[0]; $i <= $_r[1]; $i++) { $cw[$i+31] = $_r[2]; } } // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/hysmyeongjostdmedium.php
PHP
gpl2
1,829
<?php $type='TrueTypeUnicode'; $name='FreeSerifBold'; $desc=array('Ascent'=>900,'Descent'=>-300,'CapHeight'=>16,'Flags'=>32,'FontBBox'=>'[-796 -433 1830 1053]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); $up=-125; $ut=50; $dw=600; $cw=array( 32=>250,33=>333,34=>555,35=>500,36=>500,37=>1000,38=>833,39=>278,40=>333,41=>333, 42=>507,43=>676,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500, 52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333,60=>676,61=>676, 62=>676,63=>500,64=>930,65=>722,66=>667,67=>722,68=>724,69=>667,70=>611,71=>778, 72=>774,73=>386,74=>500,75=>764,76=>664,77=>943,78=>722,79=>778,80=>611,81=>778, 82=>712,83=>556,84=>667,85=>722,86=>722,87=>1000,88=>722,89=>722,90=>667,91=>333, 92=>278,93=>333,94=>581,95=>500,96=>333,97=>500,98=>546,99=>444,100=>556,101=>444, 102=>333,103=>500,104=>556,105=>278,106=>333,107=>556,108=>278,109=>833,110=>556,111=>500, 112=>549,113=>547,114=>444,115=>389,116=>333,117=>556,118=>500,119=>722,120=>500,121=>500, 122=>444,123=>394,124=>220,125=>394,126=>520,8364=>761,8218=>250,402=>333,8222=>500,8230=>1000, 8224=>500,8225=>500,710=>333,8240=>1000,352=>556,8249=>333,338=>1000,381=>667,8216=>250,8217=>250, 8220=>500,8221=>500,8226=>524,8211=>500,8212=>1000,732=>333,8482=>1086,353=>389,8250=>333,339=>717, 382=>444,376=>722,160=>250,161=>333,162=>500,163=>500,164=>500,165=>500,166=>220,167=>500, 168=>333,169=>747,170=>300,171=>500,172=>680,173=>333,174=>747,175=>333,176=>400,177=>676, 178=>300,179=>300,180=>333,181=>556,182=>540,183=>250,184=>333,185=>270,186=>330,187=>500, 188=>750,189=>750,190=>750,191=>500,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722, 198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389, 208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>676,216=>778,217=>722, 218=>722,219=>722,220=>722,221=>722,222=>632,223=>556,224=>500,225=>500,226=>500,227=>500, 228=>500,229=>500,230=>703,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278, 238=>278,239=>278,240=>500,241=>556,242=>500,243=>500,244=>500,245=>500,246=>500,247=>676, 248=>500,249=>556,250=>556,251=>556,252=>556,253=>500,254=>556,255=>500,256=>722,257=>500, 258=>722,259=>500,260=>722,261=>500,262=>722,263=>444,264=>722,265=>444,266=>722,267=>444, 268=>722,269=>444,270=>722,271=>692,272=>722,273=>556,274=>667,275=>444,276=>667,277=>444, 278=>667,279=>444,280=>667,281=>444,282=>667,283=>444,284=>778,285=>500,286=>778,287=>500, 288=>778,289=>500,290=>778,291=>500,292=>778,293=>556,294=>778,295=>556,296=>389,297=>278, 298=>389,299=>278,300=>389,301=>278,302=>389,303=>278,304=>389,305=>278,306=>882,307=>533, 308=>500,309=>338,310=>778,311=>556,312=>534,313=>667,314=>278,315=>667,316=>278,317=>667, 318=>433,319=>667,320=>528,321=>667,322=>278,323=>722,324=>556,325=>722,326=>556,327=>722, 328=>556,329=>666,330=>829,331=>556,332=>778,333=>500,334=>778,335=>500,336=>778,337=>500, 340=>722,341=>444,342=>722,343=>444,344=>722,345=>444,346=>556,347=>389,348=>556,349=>389, 350=>556,351=>389,354=>667,355=>333,356=>667,357=>488,358=>667,359=>333,360=>722,361=>556, 362=>722,363=>556,364=>722,365=>556,366=>722,367=>556,368=>722,369=>556,370=>722,371=>556, 372=>1000,373=>722,374=>722,375=>500,377=>667,378=>444,379=>667,380=>444,383=>333,384=>556, 385=>805,386=>659,387=>556,388=>667,389=>556,390=>722,391=>915,392=>605,393=>722,394=>862, 395=>667,396=>556,397=>550,398=>667,399=>818,400=>631,401=>611,403=>903,404=>776,405=>807, 406=>327,407=>389,408=>887,409=>556,410=>278,411=>495,412=>1000,413=>864,414=>556,415=>828, 416=>793,417=>584,418=>1192,419=>795,420=>749,421=>556,422=>748,423=>556,424=>389,425=>650, 426=>465,427=>333,428=>667,429=>333,430=>667,431=>768,432=>620,433=>811,434=>685,435=>853, 436=>705,437=>667,438=>444,439=>593,440=>654,441=>508,442=>500,443=>500,444=>654,445=>520, 446=>444,447=>611,448=>220,449=>418,450=>570,451=>333,452=>1331,453=>1158,454=>990,455=>1134, 456=>977,457=>611,458=>1200,459=>1015,460=>879,461=>722,462=>500,463=>386,464=>278,465=>778, 466=>500,467=>722,468=>556,469=>722,470=>556,471=>722,472=>556,473=>722,474=>556,475=>722, 476=>556,477=>444,478=>722,479=>500,480=>722,481=>500,482=>1000,483=>703,484=>778,485=>500, 486=>778,487=>500,488=>764,489=>556,490=>778,491=>500,492=>778,493=>500,494=>593,495=>502, 496=>338,497=>1331,498=>1158,499=>990,500=>778,501=>500,502=>995,503=>603,504=>722,505=>556, 506=>722,507=>500,508=>1000,509=>703,510=>778,511=>500,512=>722,513=>500,514=>722,515=>500, 516=>667,517=>444,518=>667,519=>444,520=>386,521=>278,522=>386,523=>278,524=>778,525=>500, 526=>778,527=>500,528=>712,529=>444,530=>712,531=>444,532=>722,533=>556,534=>722,535=>556, 536=>556,537=>389,538=>667,539=>333,540=>464,541=>455,542=>774,543=>556,544=>731,545=>649, 546=>568,547=>494,548=>667,549=>444,550=>722,551=>500,552=>667,553=>444,554=>778,555=>500, 556=>778,557=>500,558=>778,559=>500,560=>778,561=>500,562=>722,563=>500,564=>437,565=>636, 566=>415,567=>338,568=>776,569=>760,570=>722,571=>722,572=>444,573=>664,574=>667,575=>389, 576=>451,577=>505,578=>479,579=>686,580=>750,581=>722,582=>667,583=>478,584=>500,585=>333, 586=>808,587=>608,588=>712,589=>444,590=>722,591=>500,592=>500,593=>523,594=>523,595=>556, 596=>444,597=>468,598=>658,599=>659,600=>444,601=>444,602=>611,603=>440,604=>440,605=>611, 606=>459,607=>333,608=>665,609=>500,610=>556,611=>550,612=>582,613=>556,614=>556,615=>556, 616=>293,617=>333,618=>278,619=>369,620=>397,621=>389,622=>667,623=>833,624=>833,625=>833, 626=>556,627=>673,628=>589,629=>500,630=>744,631=>715,632=>667,633=>444,634=>444,635=>564, 636=>444,637=>444,638=>394,639=>394,640=>556,641=>556,642=>389,643=>503,644=>507,645=>507, 646=>560,647=>333,648=>394,649=>500,650=>557,651=>529,652=>500,653=>722,654=>500,655=>500, 656=>672,657=>492,658=>502,659=>502,660=>500,661=>500,662=>500,663=>444,664=>778,665=>545, 666=>460,667=>722,668=>556,669=>438,670=>556,671=>444,672=>666,673=>500,674=>500,675=>872, 676=>878,677=>926,678=>645,679=>634,680=>724,681=>825,682=>636,683=>604,684=>490,685=>500, 686=>611,687=>722,688=>378,689=>378,690=>226,691=>301,692=>301,693=>301,694=>378,695=>490, 696=>340,697=>250,698=>408,699=>250,700=>250,701=>250,702=>300,703=>300,704=>340,705=>340, 706=>333,707=>333,708=>333,709=>333,711=>333,712=>333,713=>333,714=>333,715=>333,716=>300, 717=>333,718=>333,719=>333,720=>278,721=>278,722=>300,723=>300,724=>333,725=>333,726=>333, 727=>333,728=>333,729=>333,730=>333,731=>333,733=>400,734=>333,735=>352,736=>374,737=>189, 738=>264,739=>340,740=>340,741=>526,742=>526,743=>526,744=>526,745=>526,746=>519,747=>519, 748=>333,749=>333,750=>480,751=>333,752=>333,753=>333,754=>333,755=>327,756=>261,757=>437, 758=>437,759=>400,760=>278,761=>175,762=>175,763=>175,764=>175,765=>333,766=>337,767=>432, 768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,774=>0,775=>0,776=>0,777=>0, 778=>0,779=>0,780=>0,781=>0,782=>0,783=>0,784=>0,785=>0,786=>0,787=>0, 788=>0,789=>0,790=>0,791=>0,792=>0,793=>0,794=>0,795=>0,796=>0,797=>0, 798=>0,799=>0,800=>0,801=>0,802=>0,803=>0,804=>0,805=>0,806=>0,807=>0, 808=>0,809=>0,810=>0,811=>0,812=>0,813=>0,814=>0,815=>0,816=>0,817=>0, 818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,824=>0,825=>0,826=>0,827=>0, 828=>0,829=>0,830=>0,831=>0,832=>0,833=>0,834=>0,835=>0,836=>0,837=>0, 838=>0,839=>0,840=>0,841=>0,842=>0,843=>0,844=>0,845=>0,846=>0,847=>0, 848=>0,849=>0,850=>0,851=>0,852=>0,853=>0,854=>0,855=>0,856=>0,857=>0, 858=>0,859=>0,860=>0,861=>0,862=>0,863=>0,864=>0,865=>0,884=>199,885=>199, 890=>0,894=>333,900=>330,901=>415,902=>722,903=>250,904=>811,905=>938,906=>556,908=>840, 910=>886,911=>879,912=>330,913=>722,914=>667,915=>611,916=>759,917=>667,918=>667,919=>774, 920=>778,921=>386,922=>777,923=>722,924=>943,925=>722,926=>650,927=>778,928=>812,929=>611, 931=>650,932=>667,933=>738,934=>868,935=>722,936=>924,937=>811,938=>386,939=>738,940=>605, 941=>440,942=>605,943=>330,944=>550,945=>605,946=>550,947=>550,948=>550,949=>440,950=>495, 951=>605,952=>550,953=>330,954=>608,955=>495,956=>605,957=>495,958=>495,959=>550,960=>605, 961=>550,962=>440,963=>550,964=>440,965=>550,966=>660,967=>495,968=>715,969=>715,970=>330, 971=>550,972=>550,973=>550,974=>715,976=>550,977=>605,978=>722,979=>871,980=>722,981=>660, 982=>715,983=>550,984=>611,985=>550,986=>650,987=>514,988=>611,989=>513,990=>715,991=>439, 992=>722,993=>605,994=>1022,995=>715,996=>626,997=>576,998=>616,999=>544,1000=>539,1001=>441, 1002=>932,1003=>653,1004=>593,1005=>513,1006=>654,1007=>517,1008=>550,1009=>550,1010=>477,1011=>333, 1012=>828,1013=>424,1014=>424,1015=>632,1016=>575,1017=>722,1018=>943,1019=>809,1020=>550,1021=>722, 1022=>722,1023=>722,1024=>666,1025=>666,1026=>852,1027=>617,1028=>733,1029=>568,1030=>400,1031=>400, 1032=>513,1033=>1062,1034=>1057,1035=>899,1036=>769,1037=>788,1038=>731,1039=>788,1040=>704,1041=>659, 1042=>678,1043=>617,1044=>718,1045=>666,1046=>1104,1047=>654,1048=>788,1049=>788,1050=>769,1051=>793, 1052=>957,1053=>788,1054=>828,1055=>814,1056=>659,1057=>733,1058=>649,1059=>731,1060=>864,1061=>715, 1062=>788,1063=>768,1064=>1129,1065=>1129,1066=>794,1067=>984,1068=>659,1069=>747,1070=>1136,1071=>734, 1072=>528,1073=>567,1074=>545,1075=>439,1076=>565,1077=>511,1078=>805,1079=>495,1080=>572,1081=>572, 1082=>566,1083=>551,1084=>682,1085=>572,1086=>571,1087=>572,1088=>591,1089=>495,1090=>501,1091=>496, 1092=>879,1093=>502,1094=>566,1095=>564,1096=>833,1097=>827,1098=>647,1099=>764,1100=>545,1101=>539, 1102=>800,1103=>563,1104=>511,1105=>511,1106=>592,1107=>439,1108=>539,1109=>436,1110=>291,1111=>291, 1112=>333,1113=>812,1114=>824,1115=>570,1116=>566,1117=>572,1118=>496,1119=>572,1120=>1066,1121=>769, 1122=>796,1123=>648,1124=>1033,1125=>778,1126=>977,1127=>685,1128=>1363,1129=>971,1130=>1086,1131=>778, 1132=>1466,1133=>1062,1134=>650,1135=>462,1136=>974,1137=>771,1138=>828,1139=>661,1140=>808,1141=>578, 1142=>808,1143=>590,1144=>1318,1145=>1014,1146=>992,1147=>744,1148=>1066,1149=>769,1150=>1066,1151=>769, 1152=>694,1153=>483,1154=>258,1155=>0,1156=>0,1157=>0,1158=>0,1159=>0,1160=>0,1161=>0, 1162=>788,1163=>569,1164=>659,1165=>548,1166=>659,1167=>594,1168=>618,1169=>459,1170=>618,1171=>439, 1172=>666,1173=>585,1174=>1155,1175=>843,1176=>670,1177=>495,1178=>833,1179=>610,1180=>815,1181=>597, 1182=>901,1183=>676,1184=>874,1185=>636,1186=>788,1187=>572,1188=>986,1189=>693,1190=>1086,1191=>864, 1192=>913,1193=>666,1194=>733,1195=>495,1196=>649,1197=>501,1198=>712,1199=>609,1200=>712,1201=>609, 1202=>790,1203=>567,1204=>1043,1205=>785,1206=>768,1207=>562,1208=>824,1209=>598,1210=>768,1211=>570, 1212=>960,1213=>637,1214=>960,1215=>637,1216=>400,1217=>1104,1218=>805,1219=>742,1220=>557,1221=>793, 1222=>551,1223=>788,1224=>570,1225=>788,1226=>572,1227=>768,1228=>564,1229=>957,1230=>682,1231=>400, 1232=>704,1233=>528,1234=>704,1235=>528,1236=>989,1237=>725,1238=>667,1239=>511,1240=>818,1241=>511, 1242=>818,1243=>511,1244=>1104,1245=>805,1246=>654,1247=>495,1248=>644,1249=>472,1250=>788,1251=>572, 1252=>788,1253=>572,1254=>828,1255=>571,1256=>828,1257=>571,1258=>828,1259=>571,1260=>747,1261=>539, 1262=>731,1263=>496,1264=>731,1265=>496,1266=>731,1267=>500,1268=>768,1269=>564,1270=>627,1271=>435, 1272=>984,1273=>764,1296=>660,1297=>495,1298=>793,1299=>551,1306=>818,1307=>588,1308=>994,1309=>716, 1310=>769,1311=>566,1329=>889,1330=>787,1331=>858,1332=>941,1333=>775,1334=>765,1335=>805,1336=>762, 1337=>938,1338=>869,1339=>765,1340=>756,1341=>966,1342=>992,1343=>748,1344=>469,1345=>731,1346=>941, 1347=>745,1348=>966,1349=>641,1350=>929,1351=>774,1352=>779,1353=>784,1354=>841,1355=>775,1356=>955, 1357=>779,1358=>927,1359=>555,1360=>763,1361=>641,1362=>656,1363=>824,1364=>869,1365=>768,1366=>754, 1369=>300,1370=>300,1371=>270,1372=>307,1373=>270,1374=>324,1375=>322,1377=>818,1378=>548,1379=>601, 1380=>608,1381=>551,1382=>547,1383=>496,1384=>548,1385=>586,1386=>585,1387=>548,1388=>269,1389=>798, 1390=>594,1391=>544,1392=>548,1393=>513,1394=>583,1395=>560,1396=>551,1397=>397,1398=>567,1399=>447, 1400=>548,1401=>411,1402=>810,1403=>464,1404=>548,1405=>551,1406=>595,1407=>821,1408=>548,1409=>557, 1410=>312,1411=>821,1412=>550,1413=>511,1414=>668,1415=>602,1417=>333,1418=>349,1425=>0,1426=>0, 1427=>0,1428=>0,1429=>0,1430=>0,1431=>0,1432=>0,1433=>0,1434=>0,1435=>0,1436=>0, 1437=>0,1438=>0,1439=>0,1440=>0,1441=>0,1442=>0,1443=>0,1444=>0,1445=>0,1446=>0, 1447=>0,1448=>0,1449=>0,1450=>0,1451=>0,1452=>0,1453=>0,1454=>0,1455=>0,1456=>0, 1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1466=>0, 1467=>0,1468=>0,1469=>0,1470=>433,1471=>0,1472=>155,1473=>0,1474=>0,1475=>400,1476=>0, 1477=>0,1478=>347,1479=>0,1488=>593,1489=>498,1490=>339,1491=>523,1492=>561,1493=>266,1494=>291, 1495=>559,1496=>576,1497=>266,1498=>496,1499=>501,1500=>510,1501=>542,1502=>581,1503=>273,1504=>347, 1505=>512,1506=>552,1507=>493,1508=>491,1509=>537,1510=>561,1511=>544,1512=>502,1513=>716,1514=>571, 1520=>532,1521=>532,1522=>532,1523=>396,1524=>432,3585=>590,3586=>578,3587=>661,3588=>592,3589=>592, 3590=>699,3591=>447,3592=>534,3593=>692,3594=>578,3595=>659,3596=>899,3597=>804,3598=>633,3599=>637, 3600=>484,3601=>730,3602=>876,3603=>915,3604=>592,3605=>592,3606=>578,3607=>670,3608=>542,3609=>671, 3610=>621,3611=>618,3612=>621,3613=>617,3614=>708,3615=>708,3616=>637,3617=>589,3618=>552,3619=>484, 3620=>590,3621=>569,3622=>637,3623=>526,3624=>599,3625=>802,3626=>579,3627=>668,3628=>778,3629=>560, 3630=>514,3631=>510,3632=>412,3633=>0,3634=>423,3635=>452,3636=>0,3637=>0,3638=>0,3639=>0, 3640=>0,3641=>0,3642=>0,3647=>665,3648=>357,3649=>624,3650=>529,3651=>486,3652=>475,3653=>423, 3654=>500,3655=>0,3656=>0,3657=>0,3658=>0,3659=>0,3660=>0,3661=>0,3662=>0,3663=>657, 3664=>548,3665=>548,3666=>592,3667=>614,3668=>631,3669=>643,3670=>508,3671=>744,3672=>622,3673=>585, 3674=>721,3675=>1381,4256=>540,4257=>544,4258=>639,4259=>718,4260=>553,4261=>545,4262=>541,4263=>810, 4264=>540,4265=>541,4266=>921,4267=>540,4268=>529,4269=>810,4270=>540,4271=>540,4272=>810,4273=>545, 4274=>642,4275=>643,4276=>659,4277=>538,4278=>718,4279=>541,4280=>592,4281=>535,4282=>586,4283=>540, 4284=>628,4285=>521,4286=>548,4287=>630,4288=>541,4289=>541,4290=>660,4291=>544,4292=>542,4293=>498, 4304=>522,4305=>518,4306=>621,4307=>716,4308=>517,4309=>519,4310=>518,4311=>796,4312=>518,4313=>518, 4314=>934,4315=>517,4316=>519,4317=>787,4318=>515,4319=>514,4320=>788,4321=>573,4322=>620,4323=>593, 4324=>639,4325=>516,4326=>714,4327=>518,4328=>572,4329=>518,4330=>555,4331=>518,4332=>559,4333=>509, 4334=>572,4335=>677,4336=>523,4337=>517,4338=>595,4339=>480,4340=>519,4341=>484,4342=>838,4343=>517, 4344=>516,4345=>621,4346=>522,4347=>450,4348=>389,5024=>718,5025=>768,5026=>633,5027=>878,5028=>1001, 5029=>371,5030=>576,5031=>754,5032=>531,5033=>774,5034=>692,5035=>499,5036=>668,5037=>829,5038=>575, 5039=>681,5040=>485,5041=>607,5042=>885,5043=>974,5044=>588,5045=>583,5046=>726,5047=>947,5048=>558, 5049=>832,5050=>1096,5051=>780,5052=>595,5053=>869,5054=>752,5055=>710,5056=>761,5057=>802,5058=>760, 5059=>656,5060=>655,5061=>982,5062=>684,5063=>801,5064=>805,5065=>1042,5066=>755,5067=>612,5068=>707, 5069=>889,5070=>584,5071=>623,5072=>536,5073=>763,5074=>763,5075=>581,5076=>1052,5077=>600,5078=>730, 5079=>714,5080=>714,5081=>697,5082=>543,5083=>943,5084=>718,5085=>630,5086=>660,5087=>692,5088=>841, 5089=>861,5090=>617,5091=>733,5092=>898,5093=>896,5094=>781,5095=>612,5096=>830,5097=>948,5098=>886, 5099=>757,5100=>796,5101=>578,5102=>601,5103=>797,5104=>623,5105=>886,5106=>730,5107=>827,5108=>648, 7680=>722,7681=>500,7682=>667,7683=>546,7684=>667,7685=>546,7686=>667,7687=>546,7688=>722,7689=>444, 7690=>724,7691=>556,7692=>724,7693=>556,7694=>724,7695=>556,7696=>724,7697=>556,7698=>724,7699=>556, 7700=>667,7701=>444,7702=>667,7703=>444,7704=>667,7705=>444,7706=>667,7707=>444,7708=>667,7709=>444, 7710=>611,7711=>333,7712=>778,7713=>500,7714=>774,7715=>556,7716=>774,7717=>556,7718=>774,7719=>556, 7720=>774,7721=>556,7722=>774,7723=>556,7724=>386,7725=>278,7726=>389,7727=>278,7728=>764,7729=>556, 7730=>764,7731=>556,7732=>764,7733=>556,7734=>664,7735=>278,7736=>664,7737=>278,7738=>664,7739=>278, 7740=>664,7741=>278,7742=>943,7743=>833,7744=>943,7745=>833,7746=>943,7747=>833,7748=>722,7749=>556, 7750=>722,7751=>556,7752=>722,7753=>556,7754=>722,7755=>556,7756=>778,7757=>500,7758=>778,7759=>500, 7760=>778,7761=>500,7762=>778,7763=>500,7764=>611,7765=>549,7766=>611,7767=>549,7768=>712,7769=>444, 7770=>712,7771=>444,7772=>712,7773=>444,7774=>712,7775=>444,7776=>556,7777=>389,7778=>556,7779=>389, 7780=>556,7781=>389,7782=>556,7783=>389,7784=>556,7785=>389,7786=>667,7787=>333,7788=>667,7789=>333, 7790=>667,7791=>333,7792=>667,7793=>333,7794=>722,7795=>556,7796=>722,7797=>556,7798=>722,7799=>556, 7800=>722,7801=>556,7802=>722,7803=>556,7804=>722,7805=>500,7806=>722,7807=>500,7808=>1000,7809=>722, 7810=>1000,7811=>722,7812=>1000,7813=>722,7814=>1000,7815=>722,7816=>1000,7817=>722,7818=>722,7819=>500, 7820=>722,7821=>500,7822=>722,7823=>500,7824=>667,7825=>444,7826=>667,7827=>444,7828=>667,7829=>444, 7830=>556,7831=>333,7832=>722,7833=>500,7834=>507,7835=>333,7836=>333,7837=>333,7838=>792,7839=>534, 7840=>722,7841=>500,7842=>722,7843=>500,7844=>722,7845=>500,7846=>722,7847=>500,7848=>722,7849=>500, 7850=>722,7851=>500,7852=>722,7853=>500,7854=>722,7855=>500,7856=>722,7857=>500,7858=>722,7859=>603, 7860=>722,7861=>500,7862=>722,7863=>500,7864=>667,7865=>444,7866=>667,7867=>444,7868=>667,7869=>444, 7870=>667,7871=>444,7872=>667,7873=>444,7874=>667,7875=>444,7876=>667,7877=>444,7878=>667,7879=>444, 7880=>386,7881=>278,7882=>386,7883=>278,7884=>778,7885=>500,7886=>778,7887=>500,7888=>778,7889=>500, 7890=>778,7891=>500,7892=>778,7893=>500,7894=>778,7895=>500,7896=>778,7897=>500,7898=>774,7899=>584, 7900=>774,7901=>584,7902=>774,7903=>549,7904=>793,7905=>584,7906=>793,7907=>584,7908=>722,7909=>556, 7910=>722,7911=>556,7912=>838,7913=>672,7914=>838,7915=>672,7916=>825,7917=>659,7918=>768,7919=>620, 7920=>768,7921=>620,7922=>722,7923=>500,7924=>722,7925=>500,7926=>722,7927=>500,7928=>722,7929=>500, 7936=>605,7937=>605,7938=>605,7939=>605,7940=>605,7941=>605,7942=>605,7943=>605,7944=>722,7945=>722, 7946=>830,7947=>833,7948=>761,7949=>798,7950=>721,7951=>722,7952=>440,7953=>440,7954=>440,7955=>440, 7956=>440,7957=>440,7960=>817,7961=>826,7962=>944,7963=>970,7964=>964,7965=>1009,7968=>605,7969=>605, 7970=>605,7971=>605,7972=>605,7973=>605,7974=>605,7975=>605,7976=>926,7977=>921,7978=>1038,7979=>1064, 7980=>1092,7981=>1102,7982=>1005,7983=>991,7984=>330,7985=>330,7986=>330,7987=>330,7988=>330,7989=>330, 7990=>330,7991=>330,7992=>534,7993=>541,7994=>653,7995=>659,7996=>705,7997=>714,7998=>612,7999=>614, 8000=>550,8001=>550,8002=>550,8003=>550,8004=>550,8005=>550,8008=>885,8009=>886,8010=>1038,8011=>1052, 8012=>997,8013=>1021,8016=>550,8017=>550,8018=>550,8019=>550,8020=>550,8021=>550,8022=>550,8023=>550, 8025=>870,8027=>1014,8029=>1043,8031=>944,8032=>715,8033=>715,8034=>715,8035=>715,8036=>715,8037=>715, 8038=>715,8039=>715,8040=>905,8041=>913,8042=>1066,8043=>1085,8044=>1034,8045=>1044,8046=>980,8047=>961, 8048=>605,8049=>605,8050=>440,8051=>440,8052=>605,8053=>605,8054=>330,8055=>330,8056=>550,8057=>550, 8058=>550,8059=>550,8060=>715,8061=>715,8064=>605,8065=>605,8066=>605,8067=>605,8068=>605,8069=>605, 8070=>605,8071=>605,8072=>886,8073=>887,8074=>985,8075=>993,8076=>937,8077=>956,8078=>874,8079=>878, 8080=>605,8081=>605,8082=>605,8083=>605,8084=>605,8085=>605,8086=>605,8087=>605,8088=>1096,8089=>1092, 8090=>1223,8091=>1250,8092=>1270,8093=>1283,8094=>1174,8095=>1162,8096=>715,8097=>715,8098=>715,8099=>715, 8100=>715,8101=>715,8102=>715,8103=>715,8104=>1057,8105=>1073,8106=>1228,8107=>1251,8108=>1202,8109=>1210, 8110=>1151,8111=>1131,8112=>605,8113=>605,8114=>605,8115=>605,8116=>605,8118=>605,8119=>605,8120=>722, 8121=>722,8122=>722,8123=>722,8124=>883,8125=>500,8126=>0,8127=>500,8128=>500,8129=>550,8130=>605, 8131=>605,8132=>605,8134=>605,8135=>605,8136=>790,8137=>830,8138=>909,8139=>931,8140=>950,8141=>500, 8142=>500,8143=>500,8144=>330,8145=>330,8146=>330,8147=>330,8150=>330,8151=>330,8152=>386,8153=>386, 8154=>506,8155=>550,8157=>500,8158=>500,8159=>500,8160=>550,8161=>550,8162=>550,8163=>550,8164=>550, 8165=>550,8166=>550,8167=>550,8168=>738,8169=>738,8170=>858,8171=>880,8172=>764,8173=>550,8174=>550, 8175=>500,8178=>715,8179=>715,8180=>715,8182=>715,8183=>715,8184=>884,8185=>857,8186=>927,8187=>892, 8188=>988,8189=>500,8190=>500,8192=>500,8193=>1000,8194=>500,8195=>1000,8196=>333,8197=>250,8198=>167, 8199=>500,8200=>250,8201=>200,8202=>100,8203=>0,8204=>0,8205=>0,8206=>0,8207=>0,8208=>333, 8209=>333,8210=>500,8213=>1000,8214=>333,8215=>478,8219=>250,8223=>500,8227=>560,8228=>250,8229=>500, 8231=>250,8232=>0,8233=>0,8234=>0,8235=>0,8236=>0,8237=>0,8238=>0,8239=>250,8241=>1588, 8242=>270,8243=>492,8244=>714,8245=>270,8246=>484,8247=>693,8248=>469,8251=>727,8252=>666,8253=>695, 8254=>500,8255=>953,8256=>953,8257=>338,8258=>931,8259=>333,8260=>167,8261=>332,8262=>332,8263=>1000, 8264=>833,8265=>833,8266=>500,8267=>540,8268=>528,8269=>523,8270=>500,8271=>333,8272=>953,8273=>500, 8274=>497,8275=>576,8276=>953,8277=>785,8278=>450,8279=>881,8280=>620,8281=>620,8282=>179,8283=>621, 8284=>569,8285=>179,8286=>179,8287=>111,8288=>0,8289=>0,8290=>0,8291=>0,8292=>0,8304=>300, 8305=>185,8308=>300,8309=>300,8310=>300,8311=>300,8312=>300,8313=>300,8314=>300,8315=>300,8316=>300, 8317=>216,8318=>216,8319=>325,8320=>300,8321=>274,8322=>300,8323=>300,8324=>300,8325=>300,8326=>300, 8327=>300,8328=>300,8329=>300,8330=>300,8331=>300,8332=>300,8333=>216,8334=>216,8336=>344,8337=>304, 8338=>340,8339=>337,8340=>308,8352=>710,8353=>722,8354=>783,8355=>611,8356=>500,8357=>833,8358=>722, 8359=>960,8360=>1101,8361=>1000,8362=>889,8363=>532,8365=>742,8366=>631,8367=>1435,8368=>579,8369=>609, 8370=>639,8371=>660,8372=>556,8373=>500,8376=>524,8400=>0,8401=>0,8406=>0,8407=>0,8411=>0, 8412=>0,8413=>0,8414=>0,8415=>0,8416=>0,8417=>0,8421=>0,8423=>0,8424=>0,8426=>0, 8427=>0,8428=>0,8429=>0,8430=>0,8431=>0,8448=>624,8449=>625,8451=>1009,8453=>623,8454=>737, 8455=>631,8456=>709,8457=>923,8458=>500,8459=>1035,8462=>556,8463=>556,8464=>792,8465=>737,8466=>800, 8467=>427,8468=>835,8470=>896,8471=>855,8472=>666,8475=>747,8476=>955,8478=>722,8479=>722,8480=>991, 8481=>1186,8483=>722,8486=>811,8487=>811,8489=>333,8490=>764,8491=>722,8492=>806,8494=>551,8495=>444, 8497=>723,8498=>611,8499=>1203,8501=>593,8502=>498,8503=>339,8504=>523,8506=>906,8507=>1181,8523=>778, 8525=>1028,8526=>408,8531=>750,8532=>750,8533=>750,8534=>750,8535=>750,8536=>750,8537=>750,8538=>750, 8539=>750,8540=>750,8541=>750,8542=>750,8543=>750,8544=>386,8545=>760,8546=>1138,8547=>1098,8548=>722, 8549=>1098,8550=>1474,8551=>1850,8552=>1096,8553=>722,8554=>1095,8555=>1472,8556=>664,8557=>722,8558=>724, 8559=>943,8560=>278,8561=>545,8562=>812,8563=>758,8564=>500,8565=>769,8566=>1036,8567=>1298,8568=>768, 8569=>500,8570=>768,8571=>1034,8572=>278,8573=>444,8574=>556,8575=>833,8592=>964,8593=>523,8594=>964, 8595=>523,8596=>964,8597=>964,8598=>964,8599=>964,8600=>964,8601=>964,8602=>964,8603=>964,8604=>1152, 8605=>1152,8606=>964,8607=>964,8608=>964,8609=>964,8610=>1078,8611=>1078,8612=>964,8613=>964,8614=>964, 8615=>964,8616=>964,8617=>964,8618=>964,8619=>964,8620=>964,8621=>1168,8622=>964,8624=>622,8625=>622, 8630=>1069,8631=>1069,8632=>964,8633=>964,8634=>980,8635=>980,8636=>964,8637=>964,8638=>557,8639=>556, 8640=>964,8641=>964,8642=>557,8643=>556,8644=>964,8645=>964,8646=>964,8647=>964,8648=>964,8649=>964, 8650=>964,8651=>964,8652=>964,8653=>964,8654=>964,8655=>964,8656=>964,8657=>630,8658=>964,8659=>630, 8660=>964,8661=>630,8662=>1063,8663=>1063,8664=>1063,8665=>1063,8666=>964,8667=>964,8668=>1100,8669=>1100, 8672=>964,8674=>964,8676=>964,8677=>964,8704=>627,8705=>716,8706=>558,8707=>627,8708=>627,8709=>746, 8710=>612,8711=>719,8713=>576,8714=>576,8716=>576,8717=>576,8720=>733,8721=>713,8722=>676,8723=>676, 8724=>676,8725=>750,8727=>570,8729=>570,8730=>549,8733=>676,8734=>752,8736=>555,8737=>555,8738=>555, 8739=>240,8740=>531,8741=>478,8742=>705,8743=>694,8744=>694,8745=>694,8746=>694,8747=>323,8756=>629, 8757=>629,8761=>947,8764=>676,8765=>676,8766=>763,8768=>305,8769=>676,8770=>676,8771=>676,8773=>676, 8776=>676,8777=>676,8778=>676,8781=>676,8782=>676,8783=>676,8784=>676,8785=>676,8786=>676,8787=>676, 8788=>947,8789=>947,8790=>676,8791=>676,8796=>676,8800=>570,8801=>676,8802=>676,8804=>570,8805=>570, 8806=>676,8807=>676,8808=>676,8809=>676,8810=>1047,8811=>1047,8812=>450,8813=>676,8814=>676,8815=>676, 8816=>676,8817=>676,8818=>676,8819=>676,8820=>676,8821=>676,8822=>676,8823=>676,8824=>676,8825=>676, 8826=>676,8827=>676,8828=>676,8829=>676,8830=>676,8831=>676,8832=>676,8833=>676,8834=>676,8835=>676, 8836=>676,8837=>676,8838=>676,8839=>676,8840=>676,8841=>676,8842=>676,8843=>676,8846=>694,8847=>676, 8848=>676,8849=>676,8850=>676,8851=>694,8852=>694,8853=>738,8854=>738,8855=>738,8856=>738,8857=>738, 8858=>738,8859=>738,8861=>738,8862=>678,8863=>678,8864=>678,8865=>678,8866=>487,8867=>487,8868=>752, 8869=>752,8871=>487,8873=>659,8874=>831,8876=>487,8877=>487,8878=>659,8879=>659,8882=>676,8883=>676, 8884=>676,8885=>676,8886=>1380,8887=>1380,8888=>1027,8890=>626,8891=>694,8892=>694,8893=>694,8900=>512, 8903=>676,8904=>759,8905=>632,8906=>632,8907=>1000,8908=>1000,8909=>676,8910=>694,8911=>694,8912=>676, 8913=>676,8914=>694,8915=>694,8916=>694,8918=>676,8919=>676,8920=>1441,8921=>1441,8922=>676,8923=>676, 8924=>676,8925=>676,8926=>676,8927=>676,8928=>676,8929=>676,8930=>676,8931=>676,8934=>676,8935=>676, 8936=>676,8937=>676,8938=>676,8939=>676,8940=>676,8941=>676,8960=>737,8968=>411,8969=>411,8970=>411, 8971=>411,8976=>680,8994=>951,8995=>951,9001=>398,9002=>398,9251=>500,9472=>1000,9473=>1000,9474=>1000, 9475=>1000,9476=>1000,9477=>1000,9478=>1000,9479=>1000,9480=>1000,9481=>1000,9482=>1000,9483=>1000,9484=>1000, 9485=>1000,9486=>1000,9487=>1000,9488=>1000,9489=>1000,9490=>1000,9491=>1000,9492=>1000,9493=>1000,9494=>1000, 9495=>1000,9496=>1000,9497=>1000,9498=>1000,9499=>1000,9500=>1000,9501=>1000,9502=>1000,9503=>1000,9504=>1000, 9505=>1000,9506=>1000,9507=>1000,9508=>1000,9509=>1000,9510=>1000,9511=>1000,9512=>1000,9513=>1000,9514=>1000, 9515=>1000,9516=>1000,9517=>1000,9518=>1000,9519=>1000,9520=>1000,9521=>1000,9522=>1000,9523=>1000,9524=>1000, 9525=>1000,9526=>1000,9527=>1000,9528=>1000,9529=>1000,9530=>1000,9531=>1000,9532=>1000,9533=>1000,9534=>1000, 9535=>1000,9536=>1000,9537=>1000,9538=>1000,9539=>1000,9540=>1000,9541=>1000,9542=>1000,9543=>1000,9544=>1000, 9545=>1000,9546=>1000,9547=>1000,9552=>1000,9553=>1000,9554=>1000,9555=>1000,9556=>1000,9557=>1000,9558=>1000, 9559=>1000,9560=>1000,9561=>1000,9562=>1000,9563=>1000,9564=>1000,9565=>1000,9566=>1000,9567=>1000,9568=>1000, 9569=>1000,9570=>1000,9571=>1000,9572=>1000,9573=>1000,9574=>1000,9575=>1000,9576=>1000,9577=>1000,9578=>1000, 9579=>1000,9580=>1000,9600=>1000,9601=>1000,9602=>1000,9603=>1000,9604=>1000,9605=>1000,9606=>1000,9607=>1000, 9608=>1000,9609=>1000,9610=>1000,9611=>1000,9612=>1000,9613=>1000,9614=>1000,9615=>1000,9616=>1000,9617=>1000, 9618=>1000,9619=>1000,9620=>1000,9621=>1000,9622=>1000,9623=>1000,9624=>1000,9625=>1000,9626=>1000,9627=>1000, 9628=>1000,9629=>1000,9630=>1000,9631=>1000,9632=>678,9633=>678,9642=>309,9650=>681,9651=>681,9654=>681, 9655=>681,9660=>681,9661=>681,9664=>681,9665=>681,9670=>580,9671=>580,9674=>494,9675=>738,9676=>732, 9679=>738,9702=>524,9711=>855,9733=>1003,9734=>1003,9824=>618,9825=>645,9826=>587,9827=>582,9828=>582, 9829=>645,9830=>587,9831=>618,9833=>333,9834=>556,9835=>778,9836=>778,9837=>556,9838=>556,9839=>556, 10214=>561,10215=>561,11392=>760,11393=>568,11394=>545,11395=>444,11396=>598,11397=>433,11398=>1039,11399=>760, 11400=>681,11401=>502,11402=>572,11403=>405,11404=>583,11405=>463,11406=>698,11407=>529,11408=>754,11409=>555, 11410=>338,11411=>258,11412=>688,11413=>524,11414=>700,11415=>521,11416=>799,11417=>609,11418=>708,11419=>537, 11420=>546,11421=>411,11422=>778,11423=>541,11424=>724,11425=>524,11426=>545,11427=>446,11428=>676,11429=>498, 11430=>615,11431=>433,11432=>759,11433=>589,11434=>800,11435=>670,11436=>669,11437=>512,11438=>801,11439=>609, 11440=>1003,11441=>743,11517=>266,11518=>617,11519=>307,11799=>333,42790=>774,42791=>551,42792=>964,42793=>754, 42794=>652,42795=>452,42796=>478,42797=>422,42798=>662,42799=>612,42888=>333,42889=>278,42890=>282,42891=>349, 42892=>278,64256=>613,64257=>559,64258=>559,64259=>846,64260=>836,64261=>603,64262=>723,64275=>1105,64276=>1105, 64277=>1099,64278=>1105,64279=>1361,64285=>266,64286=>0,64287=>532,64288=>552,64297=>570,64298=>716,64299=>716, 64300=>716,64301=>716,64302=>593,64303=>593,64304=>593,64305=>498,64306=>339,64307=>523,64308=>561,64309=>266, 64310=>291,64312=>576,64313=>266,64314=>496,64315=>501,64316=>510,64318=>581,64320=>347,64321=>512,64323=>493, 64324=>491,64326=>561,64327=>544,64328=>502,64329=>716,64330=>571,64331=>266,64332=>498,64333=>501,64334=>491, 64335=>593,65533=>900); $enc=''; $diff=''; $file='freeserifb.z'; $ctg='freeserifb.ctg.z'; $originalsize=615292; // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/freeserifb.php
PHP
gpl2
28,972
<?php $type='TrueTypeUnicode'; $name='FreeSerifBoldItalic'; $desc=array('Ascent'=>900,'Descent'=>-300,'CapHeight'=>-24,'Flags'=>96,'FontBBox'=>'[-831 -1120 1678 1571]','ItalicAngle'=>-16.3,'StemV'=>120,'MissingWidth'=>600); $up=-125; $ut=50; $dw=600; $cw=array( 32=>250,33=>389,34=>555,35=>500,36=>500,37=>833,38=>778,39=>278,40=>333,41=>333, 42=>500,43=>570,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500, 52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333,60=>570,61=>570, 62=>570,63=>500,64=>832,65=>667,66=>667,67=>667,68=>744,69=>670,70=>656,71=>722, 72=>778,73=>393,74=>500,75=>664,76=>609,77=>896,78=>722,79=>722,80=>614,81=>722, 82=>672,83=>556,84=>611,85=>722,86=>667,87=>889,88=>667,89=>611,90=>611,91=>333, 92=>278,93=>333,94=>570,95=>500,96=>333,97=>500,98=>500,99=>444,100=>500,101=>444, 102=>333,103=>500,104=>556,105=>278,106=>278,107=>500,108=>278,109=>778,110=>556,111=>500, 112=>500,113=>500,114=>389,115=>389,116=>278,117=>556,118=>444,119=>667,120=>500,121=>444, 122=>389,123=>348,124=>220,125=>348,126=>570,8364=>761,8218=>250,402=>333,8222=>500,8230=>1000, 8224=>500,8225=>500,710=>333,8240=>1000,352=>556,8249=>333,338=>944,381=>611,8216=>250,8217=>250, 8220=>500,8221=>500,8226=>350,8211=>500,8212=>1000,732=>333,8482=>1086,353=>389,8250=>333,339=>711, 382=>389,376=>611,160=>250,161=>389,162=>500,163=>500,164=>500,165=>500,166=>220,167=>500, 168=>333,169=>747,170=>266,171=>500,172=>606,173=>333,174=>747,175=>333,176=>400,177=>570, 178=>300,179=>300,180=>333,181=>576,182=>500,183=>250,184=>333,185=>272,186=>300,187=>500, 188=>750,189=>750,190=>750,191=>500,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667, 198=>944,199=>667,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389, 208=>722,209=>722,210=>722,211=>722,212=>722,213=>722,214=>722,215=>570,216=>722,217=>722, 218=>722,219=>722,220=>722,221=>611,222=>609,223=>500,224=>500,225=>500,226=>500,227=>500, 228=>500,229=>500,230=>703,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278, 238=>278,239=>278,240=>500,241=>556,242=>500,243=>500,244=>500,245=>500,246=>500,247=>570, 248=>500,249=>556,250=>556,251=>556,252=>556,253=>444,254=>500,255=>444,256=>667,257=>500, 258=>667,259=>500,260=>667,261=>500,262=>667,263=>444,264=>667,265=>444,266=>667,267=>444, 268=>667,269=>444,270=>722,271=>609,272=>722,273=>500,274=>667,275=>444,276=>667,277=>444, 278=>667,279=>444,280=>667,281=>444,282=>667,283=>444,284=>722,285=>500,286=>722,287=>500, 288=>722,289=>500,290=>722,291=>500,292=>778,293=>556,294=>778,295=>556,296=>389,297=>278, 298=>389,299=>278,300=>389,301=>278,302=>389,303=>278,304=>389,305=>278,306=>834,307=>545, 308=>500,309=>278,310=>667,311=>500,312=>534,313=>611,314=>278,315=>611,316=>278,317=>638, 318=>382,319=>611,320=>424,321=>611,322=>278,323=>722,324=>556,325=>722,326=>556,327=>722, 328=>556,329=>646,330=>829,331=>547,332=>722,333=>500,334=>722,335=>500,336=>722,337=>500, 340=>667,341=>389,342=>667,343=>389,344=>667,345=>389,346=>556,347=>389,348=>556,349=>389, 350=>556,351=>389,354=>611,355=>278,356=>611,357=>426,358=>611,359=>278,360=>722,361=>556, 362=>722,363=>556,364=>722,365=>556,366=>722,367=>556,368=>722,369=>556,370=>722,371=>556, 372=>889,373=>667,374=>611,375=>444,377=>611,378=>389,379=>611,380=>389,383=>333,384=>500, 385=>850,386=>667,387=>575,388=>630,389=>500,390=>722,391=>929,392=>654,393=>722,394=>864, 395=>684,396=>500,397=>546,398=>670,399=>722,400=>631,401=>769,403=>929,404=>716,405=>745, 406=>278,407=>389,408=>829,409=>500,410=>278,411=>495,412=>853,413=>919,414=>556,415=>722, 416=>868,417=>603,418=>1014,419=>778,420=>757,421=>500,422=>611,423=>556,424=>389,425=>730, 426=>455,427=>349,428=>611,429=>298,430=>611,431=>879,432=>704,433=>811,434=>678,435=>611, 436=>581,437=>611,438=>389,439=>619,440=>614,441=>461,442=>445,443=>500,444=>614,445=>500, 446=>389,447=>504,448=>220,449=>418,450=>570,451=>333,452=>1355,453=>1133,454=>889,455=>1109, 456=>887,457=>556,458=>1152,459=>1000,460=>834,461=>667,462=>500,463=>393,464=>278,465=>722, 466=>500,467=>722,468=>556,469=>722,470=>556,471=>722,472=>556,473=>722,474=>556,475=>722, 476=>556,477=>444,478=>667,479=>500,480=>667,481=>500,482=>944,483=>703,484=>722,485=>500, 486=>722,487=>500,488=>664,489=>500,490=>722,491=>500,492=>722,493=>500,494=>619,495=>513, 496=>278,497=>1355,498=>1133,499=>889,500=>722,501=>500,502=>944,503=>660,504=>722,505=>556, 506=>667,507=>500,508=>944,509=>703,510=>722,511=>500,512=>667,513=>500,514=>667,515=>500, 516=>670,517=>444,518=>670,519=>444,520=>393,521=>278,522=>393,523=>278,524=>722,525=>500, 526=>722,527=>500,528=>672,529=>389,530=>672,531=>389,532=>722,533=>556,534=>722,535=>556, 536=>556,537=>389,538=>611,539=>278,540=>424,541=>455,542=>778,543=>556,544=>731,545=>618, 546=>568,547=>500,548=>667,549=>444,550=>667,551=>500,552=>670,553=>444,554=>722,555=>500, 556=>722,557=>500,558=>722,559=>500,560=>722,561=>500,562=>611,563=>444,564=>422,565=>621, 566=>413,567=>278,568=>800,569=>784,570=>644,571=>667,572=>444,573=>664,574=>611,575=>389, 576=>451,577=>444,578=>444,579=>667,580=>722,581=>722,582=>670,583=>444,584=>500,585=>278, 586=>808,587=>608,588=>672,589=>389,590=>611,591=>444,592=>500,593=>590,594=>590,595=>510, 596=>444,598=>516,599=>552,600=>444,601=>444,603=>430,604=>440,606=>440,607=>278,608=>569, 609=>500,610=>504,612=>582,613=>556,614=>556,615=>556,616=>288,617=>320,618=>278,619=>278, 621=>516,622=>559,623=>778,624=>778,625=>778,626=>556,627=>556,628=>500,629=>500,630=>732, 631=>715,632=>667,633=>389,634=>389,635=>495,636=>389,637=>389,638=>394,639=>394,640=>556, 641=>556,642=>389,643=>333,644=>333,645=>433,647=>333,648=>278,649=>500,650=>557,651=>492, 652=>444,653=>667,654=>444,655=>406,656=>604,658=>513,660=>500,661=>500,662=>500,663=>444, 664=>778,665=>445,667=>700,668=>542,670=>500,671=>429,672=>560,673=>500,675=>752,676=>807, 678=>609,679=>510,681=>815,682=>606,683=>525,684=>490,686=>556,687=>556,688=>396,689=>397, 690=>172,691=>243,692=>267,693=>341,694=>368,695=>440,696=>300,697=>250,698=>408,699=>250, 700=>250,701=>250,702=>300,703=>300,704=>340,705=>340,706=>333,707=>333,708=>333,709=>333, 711=>333,712=>333,713=>333,714=>333,715=>333,716=>300,717=>333,718=>333,719=>333,720=>278, 721=>278,722=>300,723=>300,724=>333,725=>333,726=>333,727=>333,728=>333,729=>333,730=>333, 731=>333,733=>333,734=>333,735=>352,736=>374,737=>227,738=>264,739=>340,740=>340,741=>526, 742=>526,743=>526,744=>526,745=>526,746=>519,747=>519,748=>333,749=>333,750=>480,751=>333, 752=>333,753=>333,754=>333,755=>327,756=>261,757=>437,758=>437,759=>400,760=>278,761=>175, 762=>175,763=>175,764=>175,765=>0,766=>337,767=>432,768=>0,769=>0,770=>0,771=>0, 772=>0,773=>0,774=>0,775=>0,776=>0,777=>0,778=>0,779=>0,780=>0,781=>0, 782=>0,783=>0,784=>0,785=>0,786=>0,787=>0,788=>0,789=>0,790=>0,791=>0, 792=>0,793=>0,794=>0,795=>0,796=>0,797=>0,798=>0,799=>0,800=>0,801=>0, 802=>0,803=>0,804=>0,805=>0,806=>0,807=>0,808=>0,809=>0,810=>0,811=>0, 812=>0,813=>0,814=>0,815=>0,816=>0,817=>0,818=>0,819=>0,820=>0,821=>0, 822=>0,823=>0,824=>0,825=>0,826=>0,827=>0,828=>0,829=>0,830=>0,831=>0, 832=>0,833=>0,834=>0,835=>0,836=>0,837=>0,838=>0,839=>0,840=>0,841=>0, 842=>0,843=>0,844=>0,845=>0,846=>0,847=>0,848=>0,849=>0,850=>0,851=>0, 852=>0,853=>0,854=>0,855=>0,856=>0,857=>0,858=>0,859=>0,860=>0,861=>0, 862=>0,863=>0,864=>0,865=>0,884=>199,885=>199,890=>0,894=>333,900=>330,901=>333, 902=>667,903=>250,904=>819,905=>955,906=>539,908=>835,910=>961,911=>889,912=>320,913=>667, 914=>667,915=>637,916=>740,917=>667,918=>611,919=>778,920=>722,921=>389,922=>677,923=>667, 924=>889,925=>722,926=>650,927=>722,928=>778,929=>611,931=>730,932=>621,933=>722,934=>748, 935=>667,936=>858,937=>741,938=>389,939=>722,940=>590,941=>430,942=>548,943=>320,944=>536, 945=>590,946=>536,947=>548,948=>550,949=>430,950=>482,951=>548,952=>525,953=>320,954=>564, 955=>510,956=>589,957=>522,958=>482,959=>536,960=>629,961=>536,962=>470,963=>536,964=>464, 965=>536,966=>643,967=>482,968=>715,969=>715,970=>320,971=>536,972=>536,973=>536,974=>715, 976=>508,977=>589,978=>722,979=>931,980=>722,981=>660,982=>715,983=>536,984=>611,985=>536, 986=>620,987=>524,988=>667,989=>535,990=>708,991=>428,992=>671,993=>633,1008=>550,1009=>550, 1010=>477,1011=>278,1012=>722,1013=>411,1014=>411,1015=>609,1016=>500,1017=>667,1018=>896,1019=>769, 1020=>536,1021=>667,1022=>667,1023=>667,1024=>670,1025=>670,1026=>762,1027=>637,1028=>667,1029=>556, 1030=>393,1031=>393,1032=>500,1033=>1085,1034=>1049,1035=>747,1036=>736,1037=>778,1038=>746,1039=>778, 1040=>667,1041=>667,1042=>667,1043=>637,1044=>778,1045=>670,1046=>1044,1047=>650,1048=>778,1049=>778, 1050=>736,1051=>814,1052=>896,1053=>778,1054=>722,1055=>778,1056=>614,1057=>667,1058=>611,1059=>746, 1060=>748,1061=>667,1062=>778,1063=>742,1064=>1136,1065=>1135,1066=>779,1067=>984,1068=>664,1069=>732, 1070=>1069,1071=>779,1072=>500,1073=>508,1074=>486,1075=>414,1076=>486,1077=>444,1078=>982,1079=>476, 1080=>556,1081=>556,1082=>564,1083=>585,1084=>757,1085=>552,1086=>500,1087=>556,1088=>500,1089=>444, 1090=>778,1091=>532,1092=>764,1093=>500,1094=>556,1095=>556,1096=>806,1097=>806,1098=>644,1099=>744, 1100=>470,1101=>488,1102=>757,1103=>586,1104=>444,1105=>444,1106=>524,1107=>414,1108=>488,1109=>389, 1110=>278,1111=>278,1112=>278,1113=>772,1114=>745,1115=>556,1116=>564,1117=>556,1118=>532,1119=>556, 1120=>990,1121=>690,1122=>804,1123=>751,1124=>1017,1125=>752,1126=>900,1127=>728,1128=>1236,1129=>927, 1130=>1044,1131=>826,1132=>1401,1133=>1016,1134=>620,1135=>476,1136=>858,1137=>769,1138=>722,1139=>544, 1140=>796,1141=>584,1142=>796,1143=>584,1144=>1268,1145=>1023,1146=>895,1147=>612,1148=>990,1149=>690, 1150=>990,1151=>635,1152=>620,1153=>444,1154=>372,1155=>0,1156=>0,1157=>0,1158=>0,1159=>0, 1160=>0,1161=>0,1162=>778,1163=>556,1164=>664,1165=>470,1166=>614,1167=>473,1168=>624,1169=>448, 1170=>624,1171=>448,1172=>733,1173=>485,1174=>1080,1175=>982,1176=>650,1177=>476,1178=>772,1179=>564, 1180=>772,1181=>590,1182=>738,1183=>499,1184=>862,1185=>718,1186=>778,1187=>552,1188=>976,1189=>682, 1190=>1085,1191=>787,1192=>667,1193=>480,1194=>667,1195=>444,1196=>534,1197=>778,1198=>611,1199=>640, 1200=>611,1201=>640,1202=>694,1203=>500,1204=>1004,1205=>518,1206=>742,1207=>556,1208=>742,1209=>556, 1210=>716,1211=>556,1212=>844,1213=>530,1214=>844,1215=>530,1216=>393,1217=>1044,1218=>982,1219=>736, 1220=>534,1221=>814,1222=>585,1223=>778,1224=>552,1225=>778,1226=>552,1227=>742,1228=>556,1229=>896, 1230=>757,1231=>393,1232=>667,1233=>500,1234=>667,1235=>500,1236=>891,1237=>646,1238=>670,1239=>444, 1240=>659,1241=>372,1242=>619,1243=>372,1244=>1044,1245=>994,1246=>650,1247=>476,1248=>604,1249=>459, 1250=>778,1251=>539,1252=>778,1253=>539,1254=>722,1255=>500,1256=>722,1257=>500,1258=>722,1259=>500, 1260=>732,1261=>488,1262=>746,1263=>532,1264=>746,1265=>532,1266=>746,1267=>532,1268=>742,1269=>556, 1270=>637,1271=>448,1272=>984,1273=>744,1296=>652,1297=>452,1298=>814,1299=>585,1306=>722,1307=>500, 1308=>889,1309=>656,1310=>736,1311=>564,1329=>889,1330=>787,1331=>858,1332=>941,1333=>775,1334=>765, 1335=>805,1336=>762,1337=>938,1338=>869,1339=>765,1340=>756,1341=>966,1342=>992,1343=>748,1344=>469, 1345=>731,1346=>941,1347=>745,1348=>966,1349=>641,1350=>929,1351=>774,1352=>779,1353=>784,1354=>841, 1355=>775,1356=>955,1357=>779,1358=>927,1359=>555,1360=>763,1361=>641,1362=>656,1363=>824,1364=>869, 1365=>768,1366=>754,1369=>300,1370=>300,1371=>270,1372=>307,1373=>270,1374=>324,1375=>322,1377=>818, 1378=>548,1379=>601,1380=>608,1381=>551,1382=>547,1383=>496,1384=>548,1385=>586,1386=>585,1387=>548, 1388=>269,1389=>798,1390=>594,1391=>544,1392=>548,1393=>513,1394=>583,1395=>560,1396=>551,1397=>397, 1398=>567,1399=>447,1400=>548,1401=>411,1402=>810,1403=>464,1404=>548,1405=>551,1406=>595,1407=>821, 1408=>548,1409=>557,1410=>312,1411=>821,1412=>550,1413=>511,1414=>668,1415=>602,1417=>333,1418=>349, 1425=>0,1426=>0,1427=>0,1428=>0,1429=>0,1430=>0,1431=>0,1432=>0,1433=>0,1434=>0, 1435=>0,1436=>0,1437=>0,1438=>0,1439=>0,1440=>0,1441=>0,1442=>0,1443=>0,1444=>0, 1445=>0,1446=>0,1447=>0,1448=>0,1449=>0,1450=>0,1451=>0,1452=>0,1453=>0,1454=>0, 1455=>0,1456=>0,1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0, 1465=>0,1466=>0,1467=>0,1468=>0,1469=>0,1470=>433,1471=>0,1472=>155,1473=>0,1474=>0, 1475=>400,1476=>0,1477=>0,1478=>347,1479=>0,1488=>593,1489=>498,1490=>339,1491=>523,1492=>561, 1493=>266,1494=>291,1495=>559,1496=>576,1497=>266,1498=>496,1499=>501,1500=>510,1501=>542,1502=>581, 1503=>273,1504=>347,1505=>512,1506=>552,1507=>493,1508=>491,1509=>537,1510=>561,1511=>544,1512=>502, 1513=>716,1514=>571,1520=>532,1521=>532,1522=>532,1523=>396,1524=>432,3585=>590,3586=>578,3587=>661, 3588=>592,3589=>592,3590=>699,3591=>447,3592=>534,3593=>692,3594=>578,3595=>659,3596=>899,3597=>804, 3598=>633,3599=>637,3600=>484,3601=>730,3602=>876,3603=>915,3604=>592,3605=>592,3606=>578,3607=>670, 3608=>542,3609=>671,3610=>621,3611=>618,3612=>621,3613=>617,3614=>708,3615=>708,3616=>637,3617=>589, 3618=>552,3619=>484,3620=>590,3621=>569,3622=>637,3623=>526,3624=>599,3625=>802,3626=>579,3627=>668, 3628=>778,3629=>560,3630=>514,3631=>510,3632=>442,3633=>0,3634=>423,3635=>452,3636=>0,3637=>0, 3638=>0,3639=>0,3640=>0,3641=>0,3642=>0,3647=>665,3648=>357,3649=>624,3650=>529,3651=>486, 3652=>475,3653=>423,3654=>500,3655=>0,3656=>0,3657=>0,3658=>0,3659=>0,3660=>0,3661=>0, 3662=>0,3663=>657,3664=>548,3665=>548,3666=>592,3667=>614,3668=>631,3669=>643,3670=>508,3671=>744, 3672=>622,3673=>585,3674=>721,3675=>1381,4256=>475,4257=>469,4258=>573,4259=>650,4260=>502,4261=>506, 4262=>481,4263=>746,4264=>491,4265=>495,4266=>888,4267=>488,4268=>464,4269=>745,4270=>483,4271=>489, 4272=>721,4273=>464,4274=>578,4275=>590,4276=>611,4277=>491,4278=>663,4279=>489,4280=>544,4281=>479, 4282=>527,4283=>488,4284=>560,4285=>461,4286=>467,4287=>546,4288=>483,4289=>487,4290=>562,4291=>477, 4292=>491,4293=>471,4304=>522,4305=>518,4306=>621,4307=>716,4308=>517,4309=>519,4310=>518,4311=>796, 4312=>518,4313=>518,4314=>934,4315=>517,4316=>519,4317=>787,4318=>515,4319=>514,4320=>788,4321=>573, 4322=>620,4323=>593,4324=>639,4325=>516,4326=>714,4327=>518,4328=>572,4329=>518,4330=>555,4331=>518, 4332=>562,4333=>509,4334=>572,4335=>677,4336=>523,4337=>517,4338=>595,4339=>480,4340=>519,4341=>484, 4342=>838,4343=>517,4344=>516,4345=>621,4346=>522,4347=>410,4348=>389,5024=>718,5025=>768,5026=>633, 5027=>878,5028=>1001,5029=>371,5030=>576,5031=>754,5032=>531,5033=>774,5034=>692,5035=>499,5036=>668, 5037=>829,5038=>575,5039=>681,5040=>485,5041=>607,5042=>885,5043=>974,5044=>588,5045=>583,5046=>726, 5047=>947,5048=>558,5049=>832,5050=>1096,5051=>780,5052=>595,5053=>869,5054=>752,5055=>710,5056=>761, 5057=>802,5058=>760,5059=>656,5060=>655,5061=>982,5062=>684,5063=>801,5064=>805,5065=>1042,5066=>755, 5067=>612,5068=>707,5069=>889,5070=>584,5071=>623,5072=>536,5073=>763,5074=>763,5075=>549,5076=>1052, 5077=>600,5078=>730,5079=>714,5080=>714,5081=>697,5082=>543,5083=>943,5084=>718,5085=>630,5086=>660, 5087=>692,5088=>841,5089=>861,5090=>617,5091=>733,5092=>898,5093=>896,5094=>781,5095=>612,5096=>830, 5097=>948,5098=>886,5099=>757,5100=>796,5101=>578,5102=>601,5103=>797,5104=>623,5105=>886,5106=>730, 5107=>827,5108=>648,7680=>667,7681=>500,7682=>667,7683=>500,7684=>667,7685=>500,7686=>667,7687=>500, 7688=>667,7689=>444,7690=>744,7691=>500,7692=>744,7693=>500,7694=>744,7695=>500,7696=>744,7697=>500, 7698=>744,7699=>500,7700=>667,7701=>444,7702=>667,7703=>444,7704=>670,7705=>444,7706=>670,7707=>444, 7708=>670,7709=>444,7710=>656,7711=>333,7712=>722,7713=>500,7714=>778,7715=>556,7716=>778,7717=>556, 7718=>778,7719=>556,7720=>778,7721=>556,7722=>778,7723=>556,7724=>393,7725=>278,7726=>389,7727=>278, 7728=>664,7729=>500,7730=>664,7731=>500,7732=>664,7733=>500,7734=>609,7735=>278,7736=>609,7737=>278, 7738=>609,7739=>278,7740=>609,7741=>278,7742=>896,7743=>778,7744=>896,7745=>778,7746=>896,7747=>778, 7748=>722,7749=>556,7750=>722,7751=>556,7752=>722,7753=>556,7754=>722,7755=>556,7756=>722,7757=>500, 7758=>722,7759=>500,7760=>722,7761=>500,7762=>722,7763=>500,7764=>614,7765=>500,7766=>614,7767=>500, 7768=>672,7769=>389,7770=>672,7771=>389,7772=>672,7773=>389,7774=>672,7775=>389,7776=>556,7777=>389, 7778=>556,7779=>389,7780=>556,7781=>389,7782=>556,7783=>389,7784=>556,7785=>389,7786=>611,7787=>278, 7788=>611,7789=>278,7790=>611,7791=>278,7792=>611,7793=>278,7794=>722,7795=>556,7796=>722,7797=>556, 7798=>722,7799=>556,7800=>722,7801=>556,7802=>722,7803=>556,7804=>667,7805=>444,7806=>667,7807=>444, 7808=>889,7809=>667,7810=>889,7811=>667,7812=>889,7813=>667,7814=>889,7815=>667,7816=>889,7817=>667, 7818=>667,7819=>500,7820=>667,7821=>500,7822=>611,7823=>444,7824=>611,7825=>389,7826=>611,7827=>389, 7828=>611,7829=>389,7830=>556,7831=>278,7832=>667,7833=>444,7834=>507,7835=>333,7836=>333,7837=>333, 7838=>792,7839=>534,7840=>667,7841=>500,7842=>667,7843=>500,7844=>667,7845=>500,7846=>667,7847=>500, 7848=>667,7849=>500,7850=>667,7851=>500,7852=>667,7853=>500,7854=>667,7855=>500,7856=>667,7857=>500, 7858=>667,7859=>500,7860=>667,7861=>500,7862=>667,7863=>500,7864=>670,7865=>444,7866=>670,7867=>444, 7868=>670,7869=>444,7870=>667,7871=>444,7872=>667,7873=>444,7874=>667,7875=>444,7876=>667,7877=>444, 7878=>670,7879=>444,7880=>393,7881=>278,7882=>393,7883=>278,7884=>722,7885=>500,7886=>722,7887=>500, 7888=>722,7889=>500,7890=>722,7891=>500,7892=>722,7893=>500,7894=>722,7895=>500,7896=>722,7897=>500, 7898=>868,7899=>603,7900=>868,7901=>603,7902=>868,7903=>603,7904=>868,7905=>603,7906=>868,7907=>603, 7908=>722,7909=>556,7910=>722,7911=>556,7912=>879,7913=>704,7914=>879,7915=>704,7916=>879,7917=>704, 7918=>879,7919=>704,7920=>879,7921=>704,7922=>611,7923=>444,7924=>611,7925=>444,7926=>611,7927=>444, 7928=>611,7929=>444,7936=>590,7937=>590,7938=>590,7939=>590,7940=>590,7941=>590,7942=>590,7943=>590, 7944=>724,7945=>753,7946=>891,7947=>912,7948=>822,7949=>853,7950=>796,7951=>787,7952=>430,7953=>430, 7954=>430,7955=>430,7956=>430,7957=>430,7960=>864,7961=>905,7962=>1034,7963=>1038,7964=>1031,7965=>1045, 7968=>548,7969=>548,7970=>548,7971=>548,7972=>548,7973=>548,7974=>548,7975=>548,7976=>976,7977=>1009, 7978=>1132,7979=>1141,7980=>1138,7981=>1154,7982=>1079,7983=>1071,7984=>320,7985=>320,7986=>320,7987=>320, 7988=>320,7989=>320,7990=>320,7991=>320,7992=>593,7993=>620,7994=>746,7995=>762,7996=>742,7997=>773, 7998=>691,7999=>683,8000=>536,8001=>536,8002=>536,8003=>536,8004=>536,8005=>536,8008=>899,8009=>928, 8010=>1086,8011=>1118,8012=>1020,8013=>1028,8016=>536,8017=>536,8018=>536,8019=>536,8020=>536,8021=>536, 8022=>536,8023=>536,8025=>959,8027=>1085,8029=>1108,8031=>1027,8032=>715,8033=>715,8034=>715,8035=>715, 8036=>715,8037=>715,8038=>715,8039=>715,8040=>946,8041=>960,8042=>1133,8043=>1148,8044=>1059,8045=>1081, 8046=>1020,8047=>1016,8048=>590,8049=>590,8050=>430,8051=>430,8052=>548,8053=>548,8054=>320,8055=>320, 8056=>536,8057=>536,8058=>536,8059=>536,8060=>715,8061=>715,8064=>590,8065=>590,8066=>590,8067=>590, 8068=>590,8069=>590,8070=>590,8071=>590,8072=>842,8073=>877,8074=>1011,8075=>1031,8076=>947,8077=>975, 8078=>907,8079=>893,8080=>548,8081=>548,8082=>548,8083=>548,8084=>548,8085=>548,8086=>548,8087=>548, 8088=>1030,8089=>1066,8090=>1188,8091=>1199,8092=>1196,8093=>1211,8094=>1134,8095=>1129,8096=>715,8097=>715, 8098=>715,8099=>715,8100=>715,8101=>715,8102=>715,8103=>715,8104=>1060,8105=>1076,8106=>1264,8107=>1287, 8108=>1179,8109=>1204,8110=>1137,8111=>1135,8112=>590,8113=>590,8114=>590,8115=>590,8116=>590,8118=>590, 8119=>590,8120=>667,8121=>667,8122=>752,8123=>728,8124=>775,8125=>250,8126=>0,8127=>500,8128=>500, 8129=>550,8130=>548,8131=>548,8132=>548,8134=>548,8135=>548,8136=>884,8137=>859,8138=>982,8139=>968, 8140=>839,8141=>500,8142=>500,8143=>500,8144=>320,8145=>320,8146=>320,8147=>320,8150=>320,8151=>320, 8152=>389,8153=>389,8154=>599,8155=>592,8157=>500,8158=>500,8159=>500,8160=>536,8161=>536,8162=>536, 8163=>536,8164=>536,8165=>536,8166=>536,8167=>536,8168=>722,8169=>722,8170=>1007,8171=>932,8172=>842, 8173=>550,8174=>550,8175=>500,8178=>715,8179=>715,8180=>715,8182=>715,8183=>715,8184=>971,8185=>853, 8186=>1004,8187=>875,8188=>862,8189=>500,8190=>500,8192=>500,8193=>1000,8194=>500,8195=>1000,8196=>333, 8197=>250,8198=>167,8199=>500,8200=>250,8201=>200,8202=>100,8203=>0,8204=>0,8205=>0,8206=>0, 8207=>0,8208=>333,8209=>333,8210=>500,8213=>1000,8214=>333,8215=>478,8219=>250,8223=>500,8227=>560, 8228=>250,8229=>478,8231=>0,8232=>0,8233=>0,8234=>0,8235=>0,8236=>0,8237=>0,8238=>250, 8239=>0,8241=>1618,8242=>278,8243=>556,8244=>834,8245=>270,8246=>468,8247=>630,8248=>469,8251=>727, 8252=>778,8253=>733,8254=>500,8255=>953,8256=>953,8257=>338,8258=>931,8259=>333,8260=>167,8261=>332, 8262=>332,8263=>1000,8264=>889,8265=>889,8266=>500,8267=>453,8268=>479,8269=>492,8270=>500,8271=>333, 8272=>953,8273=>500,8274=>521,8275=>576,8276=>953,8277=>785,8278=>410,8279=>881,8280=>620,8281=>620, 8282=>179,8283=>621,8284=>569,8285=>179,8286=>179,8287=>111,8288=>0,8289=>0,8290=>0,8291=>0, 8292=>0,8304=>300,8305=>219,8308=>300,8309=>300,8310=>300,8311=>300,8312=>300,8313=>300,8314=>300, 8315=>300,8316=>300,8317=>216,8318=>216,8319=>362,8320=>300,8321=>274,8322=>300,8323=>300,8324=>300, 8325=>300,8326=>300,8327=>300,8328=>300,8329=>300,8330=>300,8331=>300,8332=>300,8333=>216,8334=>216, 8336=>350,8337=>296,8338=>320,8339=>337,8340=>298,8352=>667,8353=>667,8354=>667,8355=>667,8356=>500, 8357=>742,8358=>722,8359=>1008,8360=>953,8361=>889,8362=>889,8363=>532,8365=>742,8366=>631,8367=>1435, 8368=>579,8369=>609,8370=>639,8371=>742,8372=>576,8373=>500,8376=>524,8400=>0,8401=>0,8406=>0, 8407=>0,8411=>0,8412=>0,8413=>0,8414=>0,8415=>0,8416=>0,8417=>0,8421=>0,8423=>0, 8424=>0,8426=>0,8427=>0,8428=>0,8429=>0,8430=>0,8431=>0,8448=>624,8449=>625,8451=>925, 8453=>623,8454=>737,8455=>631,8456=>709,8457=>867,8458=>500,8459=>1035,8462=>556,8463=>556,8464=>792, 8465=>737,8466=>800,8467=>427,8468=>835,8470=>806,8471=>855,8472=>666,8475=>747,8476=>955,8478=>722, 8479=>722,8480=>991,8481=>1050,8483=>667,8486=>741,8487=>741,8489=>320,8490=>664,8491=>667,8492=>806, 8494=>551,8495=>444,8497=>723,8498=>595,8499=>1203,8501=>537,8502=>537,8503=>350,8504=>537,8506=>942, 8507=>1050,8523=>698,8525=>1028,8526=>396,8531=>750,8532=>750,8533=>750,8534=>750,8535=>750,8536=>750, 8537=>750,8538=>750,8539=>750,8540=>750,8541=>750,8542=>750,8543=>750,8544=>393,8545=>716,8546=>1039, 8547=>1040,8548=>667,8549=>1016,8550=>1334,8551=>1657,8552=>1005,8553=>667,8554=>1024,8555=>1353,8556=>609, 8557=>667,8558=>744,8559=>896,8560=>278,8561=>556,8562=>834,8563=>722,8564=>444,8565=>722,8566=>1000, 8567=>1278,8568=>778,8569=>500,8570=>778,8571=>1056,8572=>278,8573=>444,8574=>500,8575=>778,8592=>964, 8593=>964,8594=>964,8595=>964,8596=>964,8597=>964,8598=>964,8599=>964,8600=>964,8601=>964,8602=>964, 8603=>964,8606=>964,8607=>964,8608=>964,8609=>964,8610=>964,8611=>964,8612=>964,8613=>964,8614=>964, 8615=>964,8616=>964,8632=>964,8633=>964,8636=>964,8637=>964,8638=>964,8639=>964,8640=>964,8641=>964, 8642=>964,8643=>964,8644=>964,8645=>964,8646=>964,8647=>964,8648=>964,8649=>964,8650=>964,8676=>964, 8677=>964,8706=>494,8710=>612,8721=>713,8722=>606,8725=>750,8730=>549,8734=>752,8800=>570,8804=>570, 8805=>570,9251=>500,9674=>494,9675=>738,9676=>732,9711=>855,9824=>618,9825=>645,9826=>587,9827=>582, 9828=>582,9829=>645,9830=>587,9831=>618,9833=>333,9834=>556,9835=>778,9836=>778,9837=>556,9838=>556, 9839=>556,11799=>333,42790=>778,42791=>548,42792=>839,42793=>615,42794=>652,42795=>452,42796=>478,42797=>422, 42798=>675,42799=>627,42888=>333,42889=>278,42890=>282,42891=>349,42892=>278,64256=>602,64257=>572,64258=>569, 64259=>842,64260=>838,64261=>577,64262=>662,64275=>1105,64276=>1105,64277=>1099,64278=>1105,64279=>1361,64285=>266, 64286=>0,64287=>532,64288=>552,64297=>570,64298=>716,64299=>716,64300=>716,64301=>716,64302=>593,64303=>593, 64304=>593,64305=>498,64306=>339,64307=>523,64308=>561,64309=>266,64310=>291,64312=>576,64313=>266,64314=>496, 64315=>501,64316=>510,64318=>581,64320=>347,64321=>512,64323=>493,64324=>491,64326=>561,64327=>544,64328=>502, 64329=>716,64330=>571,64331=>266,64332=>498,64333=>501,64334=>491,64335=>593,65533=>900); $enc=''; $diff=''; $file='freeserifbi.z'; $ctg='freeserifbi.ctg.z'; $originalsize=508412; // --- EOF ---
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/fonts/freeserifbi.php
PHP
gpl2
24,192
<?php //============================================================+ // File name : htmlcolors.php // Version : 1.0.008 // Begin : 2002-04-09 // Last Update : 2010-12-16 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // ------------------------------------------------------------------- // Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Array of WEB safe colors // //============================================================+ /** * @file * Array of WEB safe colors * @author Nicola Asuni * @package com.tecnick.tcpdf * @since 2.9.000 (2008-03-26) */ /** * Array of WEB safe colors */ $webcolor = array ( 'aliceblue' => 'f0f8ff', 'antiquewhite' => 'faebd7', 'aqua' => '00ffff', 'aquamarine' => '7fffd4', 'azure' => 'f0ffff', 'beige' => 'f5f5dc', 'bisque' => 'ffe4c4', 'black' => '000000', 'blanchedalmond' => 'ffebcd', 'blue' => '0000ff', 'blueviolet' => '8a2be2', 'brown' => 'a52a2a', 'burlywood' => 'deb887', 'cadetblue' => '5f9ea0', 'chartreuse' => '7fff00', 'chocolate' => 'd2691e', 'coral' => 'ff7f50', 'cornflowerblue' => '6495ed', 'cornsilk' => 'fff8dc', 'crimson' => 'dc143c', 'cyan' => '00ffff', 'darkblue' => '00008b', 'darkcyan' => '008b8b', 'darkgoldenrod' => 'b8860b', 'dkgray' => 'a9a9a9', 'darkgray' => 'a9a9a9', 'darkgrey' => 'a9a9a9', 'darkgreen' => '006400', 'darkkhaki' => 'bdb76b', 'darkmagenta' => '8b008b', 'darkolivegreen' => '556b2f', 'darkorange' => 'ff8c00', 'darkorchid' => '9932cc', 'darkred' => '8b0000', 'darksalmon' => 'e9967a', 'darkseagreen' => '8fbc8f', 'darkslateblue' => '483d8b', 'darkslategray' => '2f4f4f', 'darkslategrey' => '2f4f4f', 'darkturquoise' => '00ced1', 'darkviolet' => '9400d3', 'deeppink' => 'ff1493', 'deepskyblue' => '00bfff', 'dimgray' => '696969', 'dimgrey' => '696969', 'dodgerblue' => '1e90ff', 'firebrick' => 'b22222', 'floralwhite' => 'fffaf0', 'forestgreen' => '228b22', 'fuchsia' => 'ff00ff', 'gainsboro' => 'dcdcdc', 'ghostwhite' => 'f8f8ff', 'gold' => 'ffd700', 'goldenrod' => 'daa520', 'gray' => '808080', 'grey' => '808080', 'green' => '008000', 'greenyellow' => 'adff2f', 'honeydew' => 'f0fff0', 'hotpink' => 'ff69b4', 'indianred' => 'cd5c5c', 'indigo' => '4b0082', 'ivory' => 'fffff0', 'khaki' => 'f0e68c', 'lavender' => 'e6e6fa', 'lavenderblush' => 'fff0f5', 'lawngreen' => '7cfc00', 'lemonchiffon' => 'fffacd', 'lightblue' => 'add8e6', 'lightcoral' => 'f08080', 'lightcyan' => 'e0ffff', 'lightgoldenrodyellow' => 'fafad2', 'ltgray' => 'd3d3d3', 'lightgray' => 'd3d3d3', 'lightgrey' => 'd3d3d3', 'lightgreen' => '90ee90', 'lightpink' => 'ffb6c1', 'lightsalmon' => 'ffa07a', 'lightseagreen' => '20b2aa', 'lightskyblue' => '87cefa', 'lightslategray' => '778899', 'lightslategrey' => '778899', 'lightsteelblue' => 'b0c4de', 'lightyellow' => 'ffffe0', 'lime' => '00ff00', 'limegreen' => '32cd32', 'linen' => 'faf0e6', 'magenta' => 'ff00ff', 'maroon' => '800000', 'mediumaquamarine' => '66cdaa', 'mediumblue' => '0000cd', 'mediumorchid' => 'ba55d3', 'mediumpurple' => '9370d8', 'mediumseagreen' => '3cb371', 'mediumslateblue' => '7b68ee', 'mediumspringgreen' => '00fa9a', 'mediumturquoise' => '48d1cc', 'mediumvioletred' => 'c71585', 'midnightblue' => '191970', 'mintcream' => 'f5fffa', 'mistyrose' => 'ffe4e1', 'moccasin' => 'ffe4b5', 'navajowhite' => 'ffdead', 'navy' => '000080', 'oldlace' => 'fdf5e6', 'olive' => '808000', 'olivedrab' => '6b8e23', 'orange' => 'ffa500', 'orangered' => 'ff4500', 'orchid' => 'da70d6', 'palegoldenrod' => 'eee8aa', 'palegreen' => '98fb98', 'paleturquoise' => 'afeeee', 'palevioletred' => 'd87093', 'papayawhip' => 'ffefd5', 'peachpuff' => 'ffdab9', 'peru' => 'cd853f', 'pink' => 'ffc0cb', 'plum' => 'dda0dd', 'powderblue' => 'b0e0e6', 'purple' => '800080', 'red' => 'ff0000', 'rosybrown' => 'bc8f8f', 'royalblue' => '4169e1', 'saddlebrown' => '8b4513', 'salmon' => 'fa8072', 'sandybrown' => 'f4a460', 'seagreen' => '2e8b57', 'seashell' => 'fff5ee', 'sienna' => 'a0522d', 'silver' => 'c0c0c0', 'skyblue' => '87ceeb', 'slateblue' => '6a5acd', 'slategray' => '708090', 'slategrey' => '708090', 'snow' => 'fffafa', 'springgreen' => '00ff7f', 'steelblue' => '4682b4', 'tan' => 'd2b48c', 'teal' => '008080', 'thistle' => 'd8bfd8', 'tomato' => 'ff6347', 'turquoise' => '40e0d0', 'violet' => 'ee82ee', 'wheat' => 'f5deb3', 'white' => 'ffffff', 'whitesmoke' => 'f5f5f5', 'yellow' => 'ffff00', 'yellowgreen' => '9acd32' ); //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/htmlcolors.php
PHP
gpl2
5,499
<?php //============================================================+ // File name : pdf417.php // Version : 1.0.003 // Begin : 2010-06-03 // Last Update : 2010-12-16 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // ------------------------------------------------------------------- // Copyright (C) 2010-2010 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // DESCRIPTION : // // Class to create PDF417 barcode arrays for TCPDF class. // PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991. // It is one of the most popular 2D codes because of its ability to be read with slightly modified handheld laser or linear CCD scanners. // TECHNICAL DATA / FEATURES OF PDF417: // Encodable Character Set: All 128 ASCII Characters (including extended) // Code Type: Continuous, Multi-Row // Symbol Height: 3 - 90 Rows // Symbol Width: 90X - 583X // Bidirectional Decoding: Yes // Error Correction Characters: 2 - 512 // Maximum Data Characters: 1850 text, 2710 digits, 1108 bytes // //============================================================+ /** * @file * Class to create PDF417 barcode arrays for TCPDF class. * PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991. * (requires PHP bcmath extension) * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.003 */ // definitions if (!defined('PDF417DEFS')) { /** * Indicate that definitions for this class are set */ define('PDF417DEFS', true); // ----------------------------------------------------- /** * Row height respect X dimension of single module */ define('ROWHEIGHT', 4); /** * Horizontal quiet zone in modules */ define('QUIETH', 2); /** * Vertical quiet zone in modules */ define('QUIETV', 2); } // end of definitions // #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# /** * @class PDF417 * Class to create PDF417 barcode arrays for TCPDF class. * PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991. * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.003 */ class PDF417 { /** * Barcode array to be returned which is readable by TCPDF. * @protected */ protected $barcode_array = array(); /** * Start pattern. * @protected */ protected $start_pattern = '11111111010101000'; /** * Stop pattern. * @protected */ protected $stop_pattern = '111111101000101001'; /** * Array of text Compaction Sub-Modes (values 0xFB - 0xFF are used for submode changers). * @protected */ protected $textsubmodes = array( array(0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x20,0xFD,0xFE,0xFF), // Alpha array(0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x20,0xFD,0xFE,0xFF), // Lower array(0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x26,0x0d,0x09,0x2c,0x3a,0x23,0x2d,0x2e,0x24,0x2f,0x2b,0x25,0x2a,0x3d,0x5e,0xFB,0x20,0xFD,0xFE,0xFF), // Mixed array(0x3b,0x3c,0x3e,0x40,0x5b,0x5c,0x5d,0x5f,0x60,0x7e,0x21,0x0d,0x09,0x2c,0x3a,0x0a,0x2d,0x2e,0x24,0x2f,0x22,0x7c,0x2a,0x28,0x29,0x3f,0x7b,0x7d,0x27,0xFF) // Puntuaction ); /** * Array of switching codes for Text Compaction Sub-Modes. * @protected */ protected $textlatch = array( '01' => array(27), '02' => array(28), '03' => array(28,25), // '10' => array(28,28), '12' => array(28), '13' => array(28,25), // '20' => array(28), '21' => array(27), '23' => array(25), // '30' => array(29), '31' => array(29,27), '32' => array(29,28) // ); /** * Clusters of codewords (0, 3, 6)<br/> * Values are hex equivalents of binary representation of bars (1 = bar, 0 = space).<br/> * The codewords numbered from 900 to 928 have special meaning, some enable to switch between modes in order to optimise the code:<ul> * <li>900 : Switch to "Text" mode</li> * <li>901 : Switch to "Byte" mode</li> * <li>902 : Switch to "Numeric" mode</li> * <li>903 - 912 : Reserved</li> * <li>913 : Switch to "Octet" only for the next codeword</li> * <li>914 - 920 : Reserved</li> * <li>921 : Initialization</li> * <li>922 : Terminator codeword for Macro PDF control block</li> * <li>923 : Sequence tag to identify the beginning of optional fields in the Macro PDF control block</li> * <li>924 : Switch to "Byte" mode (If the total number of byte is multiple of 6)</li> * <li>925 : Identifier for a user defined Extended Channel Interpretation (ECI)</li> * <li>926 : Identifier for a general purpose ECI format</li> * <li>927 : Identifier for an ECI of a character set or code page</li> * <li>928 : Macro marker codeword to indicate the beginning of a Macro PDF Control Block</li> * </ul> * @protected */ protected $clusters = array( array( // cluster 0 ----------------------------------------------------------------------- 0x1d5c0,0x1eaf0,0x1f57c,0x1d4e0,0x1ea78,0x1f53e,0x1a8c0,0x1d470,0x1a860,0x15040, // 10 0x1a830,0x15020,0x1adc0,0x1d6f0,0x1eb7c,0x1ace0,0x1d678,0x1eb3e,0x158c0,0x1ac70, // 20 0x15860,0x15dc0,0x1aef0,0x1d77c,0x15ce0,0x1ae78,0x1d73e,0x15c70,0x1ae3c,0x15ef0, // 30 0x1af7c,0x15e78,0x1af3e,0x15f7c,0x1f5fa,0x1d2e0,0x1e978,0x1f4be,0x1a4c0,0x1d270, // 40 0x1e93c,0x1a460,0x1d238,0x14840,0x1a430,0x1d21c,0x14820,0x1a418,0x14810,0x1a6e0, // 50 0x1d378,0x1e9be,0x14cc0,0x1a670,0x1d33c,0x14c60,0x1a638,0x1d31e,0x14c30,0x1a61c, // 60 0x14ee0,0x1a778,0x1d3be,0x14e70,0x1a73c,0x14e38,0x1a71e,0x14f78,0x1a7be,0x14f3c, // 70 0x14f1e,0x1a2c0,0x1d170,0x1e8bc,0x1a260,0x1d138,0x1e89e,0x14440,0x1a230,0x1d11c, // 80 0x14420,0x1a218,0x14410,0x14408,0x146c0,0x1a370,0x1d1bc,0x14660,0x1a338,0x1d19e, // 90 0x14630,0x1a31c,0x14618,0x1460c,0x14770,0x1a3bc,0x14738,0x1a39e,0x1471c,0x147bc, // 100 0x1a160,0x1d0b8,0x1e85e,0x14240,0x1a130,0x1d09c,0x14220,0x1a118,0x1d08e,0x14210, // 110 0x1a10c,0x14208,0x1a106,0x14360,0x1a1b8,0x1d0de,0x14330,0x1a19c,0x14318,0x1a18e, // 120 0x1430c,0x14306,0x1a1de,0x1438e,0x14140,0x1a0b0,0x1d05c,0x14120,0x1a098,0x1d04e, // 130 0x14110,0x1a08c,0x14108,0x1a086,0x14104,0x141b0,0x14198,0x1418c,0x140a0,0x1d02e, // 140 0x1a04c,0x1a046,0x14082,0x1cae0,0x1e578,0x1f2be,0x194c0,0x1ca70,0x1e53c,0x19460, // 150 0x1ca38,0x1e51e,0x12840,0x19430,0x12820,0x196e0,0x1cb78,0x1e5be,0x12cc0,0x19670, // 160 0x1cb3c,0x12c60,0x19638,0x12c30,0x12c18,0x12ee0,0x19778,0x1cbbe,0x12e70,0x1973c, // 170 0x12e38,0x12e1c,0x12f78,0x197be,0x12f3c,0x12fbe,0x1dac0,0x1ed70,0x1f6bc,0x1da60, // 180 0x1ed38,0x1f69e,0x1b440,0x1da30,0x1ed1c,0x1b420,0x1da18,0x1ed0e,0x1b410,0x1da0c, // 190 0x192c0,0x1c970,0x1e4bc,0x1b6c0,0x19260,0x1c938,0x1e49e,0x1b660,0x1db38,0x1ed9e, // 200 0x16c40,0x12420,0x19218,0x1c90e,0x16c20,0x1b618,0x16c10,0x126c0,0x19370,0x1c9bc, // 210 0x16ec0,0x12660,0x19338,0x1c99e,0x16e60,0x1b738,0x1db9e,0x16e30,0x12618,0x16e18, // 220 0x12770,0x193bc,0x16f70,0x12738,0x1939e,0x16f38,0x1b79e,0x16f1c,0x127bc,0x16fbc, // 230 0x1279e,0x16f9e,0x1d960,0x1ecb8,0x1f65e,0x1b240,0x1d930,0x1ec9c,0x1b220,0x1d918, // 240 0x1ec8e,0x1b210,0x1d90c,0x1b208,0x1b204,0x19160,0x1c8b8,0x1e45e,0x1b360,0x19130, // 250 0x1c89c,0x16640,0x12220,0x1d99c,0x1c88e,0x16620,0x12210,0x1910c,0x16610,0x1b30c, // 260 0x19106,0x12204,0x12360,0x191b8,0x1c8de,0x16760,0x12330,0x1919c,0x16730,0x1b39c, // 270 0x1918e,0x16718,0x1230c,0x12306,0x123b8,0x191de,0x167b8,0x1239c,0x1679c,0x1238e, // 280 0x1678e,0x167de,0x1b140,0x1d8b0,0x1ec5c,0x1b120,0x1d898,0x1ec4e,0x1b110,0x1d88c, // 290 0x1b108,0x1d886,0x1b104,0x1b102,0x12140,0x190b0,0x1c85c,0x16340,0x12120,0x19098, // 300 0x1c84e,0x16320,0x1b198,0x1d8ce,0x16310,0x12108,0x19086,0x16308,0x1b186,0x16304, // 310 0x121b0,0x190dc,0x163b0,0x12198,0x190ce,0x16398,0x1b1ce,0x1638c,0x12186,0x16386, // 320 0x163dc,0x163ce,0x1b0a0,0x1d858,0x1ec2e,0x1b090,0x1d84c,0x1b088,0x1d846,0x1b084, // 330 0x1b082,0x120a0,0x19058,0x1c82e,0x161a0,0x12090,0x1904c,0x16190,0x1b0cc,0x19046, // 340 0x16188,0x12084,0x16184,0x12082,0x120d8,0x161d8,0x161cc,0x161c6,0x1d82c,0x1d826, // 350 0x1b042,0x1902c,0x12048,0x160c8,0x160c4,0x160c2,0x18ac0,0x1c570,0x1e2bc,0x18a60, // 360 0x1c538,0x11440,0x18a30,0x1c51c,0x11420,0x18a18,0x11410,0x11408,0x116c0,0x18b70, // 370 0x1c5bc,0x11660,0x18b38,0x1c59e,0x11630,0x18b1c,0x11618,0x1160c,0x11770,0x18bbc, // 380 0x11738,0x18b9e,0x1171c,0x117bc,0x1179e,0x1cd60,0x1e6b8,0x1f35e,0x19a40,0x1cd30, // 390 0x1e69c,0x19a20,0x1cd18,0x1e68e,0x19a10,0x1cd0c,0x19a08,0x1cd06,0x18960,0x1c4b8, // 400 0x1e25e,0x19b60,0x18930,0x1c49c,0x13640,0x11220,0x1cd9c,0x1c48e,0x13620,0x19b18, // 410 0x1890c,0x13610,0x11208,0x13608,0x11360,0x189b8,0x1c4de,0x13760,0x11330,0x1cdde, // 420 0x13730,0x19b9c,0x1898e,0x13718,0x1130c,0x1370c,0x113b8,0x189de,0x137b8,0x1139c, // 430 0x1379c,0x1138e,0x113de,0x137de,0x1dd40,0x1eeb0,0x1f75c,0x1dd20,0x1ee98,0x1f74e, // 440 0x1dd10,0x1ee8c,0x1dd08,0x1ee86,0x1dd04,0x19940,0x1ccb0,0x1e65c,0x1bb40,0x19920, // 450 0x1eedc,0x1e64e,0x1bb20,0x1dd98,0x1eece,0x1bb10,0x19908,0x1cc86,0x1bb08,0x1dd86, // 460 0x19902,0x11140,0x188b0,0x1c45c,0x13340,0x11120,0x18898,0x1c44e,0x17740,0x13320, // 470 0x19998,0x1ccce,0x17720,0x1bb98,0x1ddce,0x18886,0x17710,0x13308,0x19986,0x17708, // 480 0x11102,0x111b0,0x188dc,0x133b0,0x11198,0x188ce,0x177b0,0x13398,0x199ce,0x17798, // 490 0x1bbce,0x11186,0x13386,0x111dc,0x133dc,0x111ce,0x177dc,0x133ce,0x1dca0,0x1ee58, // 500 0x1f72e,0x1dc90,0x1ee4c,0x1dc88,0x1ee46,0x1dc84,0x1dc82,0x198a0,0x1cc58,0x1e62e, // 510 0x1b9a0,0x19890,0x1ee6e,0x1b990,0x1dccc,0x1cc46,0x1b988,0x19884,0x1b984,0x19882, // 520 0x1b982,0x110a0,0x18858,0x1c42e,0x131a0,0x11090,0x1884c,0x173a0,0x13190,0x198cc, // 530 0x18846,0x17390,0x1b9cc,0x11084,0x17388,0x13184,0x11082,0x13182,0x110d8,0x1886e, // 540 0x131d8,0x110cc,0x173d8,0x131cc,0x110c6,0x173cc,0x131c6,0x110ee,0x173ee,0x1dc50, // 550 0x1ee2c,0x1dc48,0x1ee26,0x1dc44,0x1dc42,0x19850,0x1cc2c,0x1b8d0,0x19848,0x1cc26, // 560 0x1b8c8,0x1dc66,0x1b8c4,0x19842,0x1b8c2,0x11050,0x1882c,0x130d0,0x11048,0x18826, // 570 0x171d0,0x130c8,0x19866,0x171c8,0x1b8e6,0x11042,0x171c4,0x130c2,0x171c2,0x130ec, // 580 0x171ec,0x171e6,0x1ee16,0x1dc22,0x1cc16,0x19824,0x19822,0x11028,0x13068,0x170e8, // 590 0x11022,0x13062,0x18560,0x10a40,0x18530,0x10a20,0x18518,0x1c28e,0x10a10,0x1850c, // 600 0x10a08,0x18506,0x10b60,0x185b8,0x1c2de,0x10b30,0x1859c,0x10b18,0x1858e,0x10b0c, // 610 0x10b06,0x10bb8,0x185de,0x10b9c,0x10b8e,0x10bde,0x18d40,0x1c6b0,0x1e35c,0x18d20, // 620 0x1c698,0x18d10,0x1c68c,0x18d08,0x1c686,0x18d04,0x10940,0x184b0,0x1c25c,0x11b40, // 630 0x10920,0x1c6dc,0x1c24e,0x11b20,0x18d98,0x1c6ce,0x11b10,0x10908,0x18486,0x11b08, // 640 0x18d86,0x10902,0x109b0,0x184dc,0x11bb0,0x10998,0x184ce,0x11b98,0x18dce,0x11b8c, // 650 0x10986,0x109dc,0x11bdc,0x109ce,0x11bce,0x1cea0,0x1e758,0x1f3ae,0x1ce90,0x1e74c, // 660 0x1ce88,0x1e746,0x1ce84,0x1ce82,0x18ca0,0x1c658,0x19da0,0x18c90,0x1c64c,0x19d90, // 670 0x1cecc,0x1c646,0x19d88,0x18c84,0x19d84,0x18c82,0x19d82,0x108a0,0x18458,0x119a0, // 680 0x10890,0x1c66e,0x13ba0,0x11990,0x18ccc,0x18446,0x13b90,0x19dcc,0x10884,0x13b88, // 690 0x11984,0x10882,0x11982,0x108d8,0x1846e,0x119d8,0x108cc,0x13bd8,0x119cc,0x108c6, // 700 0x13bcc,0x119c6,0x108ee,0x119ee,0x13bee,0x1ef50,0x1f7ac,0x1ef48,0x1f7a6,0x1ef44, // 710 0x1ef42,0x1ce50,0x1e72c,0x1ded0,0x1ef6c,0x1e726,0x1dec8,0x1ef66,0x1dec4,0x1ce42, // 720 0x1dec2,0x18c50,0x1c62c,0x19cd0,0x18c48,0x1c626,0x1bdd0,0x19cc8,0x1ce66,0x1bdc8, // 730 0x1dee6,0x18c42,0x1bdc4,0x19cc2,0x1bdc2,0x10850,0x1842c,0x118d0,0x10848,0x18426, // 740 0x139d0,0x118c8,0x18c66,0x17bd0,0x139c8,0x19ce6,0x10842,0x17bc8,0x1bde6,0x118c2, // 750 0x17bc4,0x1086c,0x118ec,0x10866,0x139ec,0x118e6,0x17bec,0x139e6,0x17be6,0x1ef28, // 760 0x1f796,0x1ef24,0x1ef22,0x1ce28,0x1e716,0x1de68,0x1ef36,0x1de64,0x1ce22,0x1de62, // 770 0x18c28,0x1c616,0x19c68,0x18c24,0x1bce8,0x19c64,0x18c22,0x1bce4,0x19c62,0x1bce2, // 780 0x10828,0x18416,0x11868,0x18c36,0x138e8,0x11864,0x10822,0x179e8,0x138e4,0x11862, // 790 0x179e4,0x138e2,0x179e2,0x11876,0x179f6,0x1ef12,0x1de34,0x1de32,0x19c34,0x1bc74, // 800 0x1bc72,0x11834,0x13874,0x178f4,0x178f2,0x10540,0x10520,0x18298,0x10510,0x10508, // 810 0x10504,0x105b0,0x10598,0x1058c,0x10586,0x105dc,0x105ce,0x186a0,0x18690,0x1c34c, // 820 0x18688,0x1c346,0x18684,0x18682,0x104a0,0x18258,0x10da0,0x186d8,0x1824c,0x10d90, // 830 0x186cc,0x10d88,0x186c6,0x10d84,0x10482,0x10d82,0x104d8,0x1826e,0x10dd8,0x186ee, // 840 0x10dcc,0x104c6,0x10dc6,0x104ee,0x10dee,0x1c750,0x1c748,0x1c744,0x1c742,0x18650, // 850 0x18ed0,0x1c76c,0x1c326,0x18ec8,0x1c766,0x18ec4,0x18642,0x18ec2,0x10450,0x10cd0, // 860 0x10448,0x18226,0x11dd0,0x10cc8,0x10444,0x11dc8,0x10cc4,0x10442,0x11dc4,0x10cc2, // 870 0x1046c,0x10cec,0x10466,0x11dec,0x10ce6,0x11de6,0x1e7a8,0x1e7a4,0x1e7a2,0x1c728, // 880 0x1cf68,0x1e7b6,0x1cf64,0x1c722,0x1cf62,0x18628,0x1c316,0x18e68,0x1c736,0x19ee8, // 890 0x18e64,0x18622,0x19ee4,0x18e62,0x19ee2,0x10428,0x18216,0x10c68,0x18636,0x11ce8, // 900 0x10c64,0x10422,0x13de8,0x11ce4,0x10c62,0x13de4,0x11ce2,0x10436,0x10c76,0x11cf6, // 910 0x13df6,0x1f7d4,0x1f7d2,0x1e794,0x1efb4,0x1e792,0x1efb2,0x1c714,0x1cf34,0x1c712, // 920 0x1df74,0x1cf32,0x1df72,0x18614,0x18e34,0x18612,0x19e74,0x18e32,0x1bef4), // 929 array( // cluster 3 ----------------------------------------------------------------------- 0x1f560,0x1fab8,0x1ea40,0x1f530,0x1fa9c,0x1ea20,0x1f518,0x1fa8e,0x1ea10,0x1f50c, // 10 0x1ea08,0x1f506,0x1ea04,0x1eb60,0x1f5b8,0x1fade,0x1d640,0x1eb30,0x1f59c,0x1d620, // 20 0x1eb18,0x1f58e,0x1d610,0x1eb0c,0x1d608,0x1eb06,0x1d604,0x1d760,0x1ebb8,0x1f5de, // 30 0x1ae40,0x1d730,0x1eb9c,0x1ae20,0x1d718,0x1eb8e,0x1ae10,0x1d70c,0x1ae08,0x1d706, // 40 0x1ae04,0x1af60,0x1d7b8,0x1ebde,0x15e40,0x1af30,0x1d79c,0x15e20,0x1af18,0x1d78e, // 50 0x15e10,0x1af0c,0x15e08,0x1af06,0x15f60,0x1afb8,0x1d7de,0x15f30,0x1af9c,0x15f18, // 60 0x1af8e,0x15f0c,0x15fb8,0x1afde,0x15f9c,0x15f8e,0x1e940,0x1f4b0,0x1fa5c,0x1e920, // 70 0x1f498,0x1fa4e,0x1e910,0x1f48c,0x1e908,0x1f486,0x1e904,0x1e902,0x1d340,0x1e9b0, // 80 0x1f4dc,0x1d320,0x1e998,0x1f4ce,0x1d310,0x1e98c,0x1d308,0x1e986,0x1d304,0x1d302, // 90 0x1a740,0x1d3b0,0x1e9dc,0x1a720,0x1d398,0x1e9ce,0x1a710,0x1d38c,0x1a708,0x1d386, // 100 0x1a704,0x1a702,0x14f40,0x1a7b0,0x1d3dc,0x14f20,0x1a798,0x1d3ce,0x14f10,0x1a78c, // 110 0x14f08,0x1a786,0x14f04,0x14fb0,0x1a7dc,0x14f98,0x1a7ce,0x14f8c,0x14f86,0x14fdc, // 120 0x14fce,0x1e8a0,0x1f458,0x1fa2e,0x1e890,0x1f44c,0x1e888,0x1f446,0x1e884,0x1e882, // 130 0x1d1a0,0x1e8d8,0x1f46e,0x1d190,0x1e8cc,0x1d188,0x1e8c6,0x1d184,0x1d182,0x1a3a0, // 140 0x1d1d8,0x1e8ee,0x1a390,0x1d1cc,0x1a388,0x1d1c6,0x1a384,0x1a382,0x147a0,0x1a3d8, // 150 0x1d1ee,0x14790,0x1a3cc,0x14788,0x1a3c6,0x14784,0x14782,0x147d8,0x1a3ee,0x147cc, // 160 0x147c6,0x147ee,0x1e850,0x1f42c,0x1e848,0x1f426,0x1e844,0x1e842,0x1d0d0,0x1e86c, // 170 0x1d0c8,0x1e866,0x1d0c4,0x1d0c2,0x1a1d0,0x1d0ec,0x1a1c8,0x1d0e6,0x1a1c4,0x1a1c2, // 180 0x143d0,0x1a1ec,0x143c8,0x1a1e6,0x143c4,0x143c2,0x143ec,0x143e6,0x1e828,0x1f416, // 190 0x1e824,0x1e822,0x1d068,0x1e836,0x1d064,0x1d062,0x1a0e8,0x1d076,0x1a0e4,0x1a0e2, // 200 0x141e8,0x1a0f6,0x141e4,0x141e2,0x1e814,0x1e812,0x1d034,0x1d032,0x1a074,0x1a072, // 210 0x1e540,0x1f2b0,0x1f95c,0x1e520,0x1f298,0x1f94e,0x1e510,0x1f28c,0x1e508,0x1f286, // 220 0x1e504,0x1e502,0x1cb40,0x1e5b0,0x1f2dc,0x1cb20,0x1e598,0x1f2ce,0x1cb10,0x1e58c, // 230 0x1cb08,0x1e586,0x1cb04,0x1cb02,0x19740,0x1cbb0,0x1e5dc,0x19720,0x1cb98,0x1e5ce, // 240 0x19710,0x1cb8c,0x19708,0x1cb86,0x19704,0x19702,0x12f40,0x197b0,0x1cbdc,0x12f20, // 250 0x19798,0x1cbce,0x12f10,0x1978c,0x12f08,0x19786,0x12f04,0x12fb0,0x197dc,0x12f98, // 260 0x197ce,0x12f8c,0x12f86,0x12fdc,0x12fce,0x1f6a0,0x1fb58,0x16bf0,0x1f690,0x1fb4c, // 270 0x169f8,0x1f688,0x1fb46,0x168fc,0x1f684,0x1f682,0x1e4a0,0x1f258,0x1f92e,0x1eda0, // 280 0x1e490,0x1fb6e,0x1ed90,0x1f6cc,0x1f246,0x1ed88,0x1e484,0x1ed84,0x1e482,0x1ed82, // 290 0x1c9a0,0x1e4d8,0x1f26e,0x1dba0,0x1c990,0x1e4cc,0x1db90,0x1edcc,0x1e4c6,0x1db88, // 300 0x1c984,0x1db84,0x1c982,0x1db82,0x193a0,0x1c9d8,0x1e4ee,0x1b7a0,0x19390,0x1c9cc, // 310 0x1b790,0x1dbcc,0x1c9c6,0x1b788,0x19384,0x1b784,0x19382,0x1b782,0x127a0,0x193d8, // 320 0x1c9ee,0x16fa0,0x12790,0x193cc,0x16f90,0x1b7cc,0x193c6,0x16f88,0x12784,0x16f84, // 330 0x12782,0x127d8,0x193ee,0x16fd8,0x127cc,0x16fcc,0x127c6,0x16fc6,0x127ee,0x1f650, // 340 0x1fb2c,0x165f8,0x1f648,0x1fb26,0x164fc,0x1f644,0x1647e,0x1f642,0x1e450,0x1f22c, // 350 0x1ecd0,0x1e448,0x1f226,0x1ecc8,0x1f666,0x1ecc4,0x1e442,0x1ecc2,0x1c8d0,0x1e46c, // 360 0x1d9d0,0x1c8c8,0x1e466,0x1d9c8,0x1ece6,0x1d9c4,0x1c8c2,0x1d9c2,0x191d0,0x1c8ec, // 370 0x1b3d0,0x191c8,0x1c8e6,0x1b3c8,0x1d9e6,0x1b3c4,0x191c2,0x1b3c2,0x123d0,0x191ec, // 380 0x167d0,0x123c8,0x191e6,0x167c8,0x1b3e6,0x167c4,0x123c2,0x167c2,0x123ec,0x167ec, // 390 0x123e6,0x167e6,0x1f628,0x1fb16,0x162fc,0x1f624,0x1627e,0x1f622,0x1e428,0x1f216, // 400 0x1ec68,0x1f636,0x1ec64,0x1e422,0x1ec62,0x1c868,0x1e436,0x1d8e8,0x1c864,0x1d8e4, // 410 0x1c862,0x1d8e2,0x190e8,0x1c876,0x1b1e8,0x1d8f6,0x1b1e4,0x190e2,0x1b1e2,0x121e8, // 420 0x190f6,0x163e8,0x121e4,0x163e4,0x121e2,0x163e2,0x121f6,0x163f6,0x1f614,0x1617e, // 430 0x1f612,0x1e414,0x1ec34,0x1e412,0x1ec32,0x1c834,0x1d874,0x1c832,0x1d872,0x19074, // 440 0x1b0f4,0x19072,0x1b0f2,0x120f4,0x161f4,0x120f2,0x161f2,0x1f60a,0x1e40a,0x1ec1a, // 450 0x1c81a,0x1d83a,0x1903a,0x1b07a,0x1e2a0,0x1f158,0x1f8ae,0x1e290,0x1f14c,0x1e288, // 460 0x1f146,0x1e284,0x1e282,0x1c5a0,0x1e2d8,0x1f16e,0x1c590,0x1e2cc,0x1c588,0x1e2c6, // 470 0x1c584,0x1c582,0x18ba0,0x1c5d8,0x1e2ee,0x18b90,0x1c5cc,0x18b88,0x1c5c6,0x18b84, // 480 0x18b82,0x117a0,0x18bd8,0x1c5ee,0x11790,0x18bcc,0x11788,0x18bc6,0x11784,0x11782, // 490 0x117d8,0x18bee,0x117cc,0x117c6,0x117ee,0x1f350,0x1f9ac,0x135f8,0x1f348,0x1f9a6, // 500 0x134fc,0x1f344,0x1347e,0x1f342,0x1e250,0x1f12c,0x1e6d0,0x1e248,0x1f126,0x1e6c8, // 510 0x1f366,0x1e6c4,0x1e242,0x1e6c2,0x1c4d0,0x1e26c,0x1cdd0,0x1c4c8,0x1e266,0x1cdc8, // 520 0x1e6e6,0x1cdc4,0x1c4c2,0x1cdc2,0x189d0,0x1c4ec,0x19bd0,0x189c8,0x1c4e6,0x19bc8, // 530 0x1cde6,0x19bc4,0x189c2,0x19bc2,0x113d0,0x189ec,0x137d0,0x113c8,0x189e6,0x137c8, // 540 0x19be6,0x137c4,0x113c2,0x137c2,0x113ec,0x137ec,0x113e6,0x137e6,0x1fba8,0x175f0, // 550 0x1bafc,0x1fba4,0x174f8,0x1ba7e,0x1fba2,0x1747c,0x1743e,0x1f328,0x1f996,0x132fc, // 560 0x1f768,0x1fbb6,0x176fc,0x1327e,0x1f764,0x1f322,0x1767e,0x1f762,0x1e228,0x1f116, // 570 0x1e668,0x1e224,0x1eee8,0x1f776,0x1e222,0x1eee4,0x1e662,0x1eee2,0x1c468,0x1e236, // 580 0x1cce8,0x1c464,0x1dde8,0x1cce4,0x1c462,0x1dde4,0x1cce2,0x1dde2,0x188e8,0x1c476, // 590 0x199e8,0x188e4,0x1bbe8,0x199e4,0x188e2,0x1bbe4,0x199e2,0x1bbe2,0x111e8,0x188f6, // 600 0x133e8,0x111e4,0x177e8,0x133e4,0x111e2,0x177e4,0x133e2,0x177e2,0x111f6,0x133f6, // 610 0x1fb94,0x172f8,0x1b97e,0x1fb92,0x1727c,0x1723e,0x1f314,0x1317e,0x1f734,0x1f312, // 620 0x1737e,0x1f732,0x1e214,0x1e634,0x1e212,0x1ee74,0x1e632,0x1ee72,0x1c434,0x1cc74, // 630 0x1c432,0x1dcf4,0x1cc72,0x1dcf2,0x18874,0x198f4,0x18872,0x1b9f4,0x198f2,0x1b9f2, // 640 0x110f4,0x131f4,0x110f2,0x173f4,0x131f2,0x173f2,0x1fb8a,0x1717c,0x1713e,0x1f30a, // 650 0x1f71a,0x1e20a,0x1e61a,0x1ee3a,0x1c41a,0x1cc3a,0x1dc7a,0x1883a,0x1987a,0x1b8fa, // 660 0x1107a,0x130fa,0x171fa,0x170be,0x1e150,0x1f0ac,0x1e148,0x1f0a6,0x1e144,0x1e142, // 670 0x1c2d0,0x1e16c,0x1c2c8,0x1e166,0x1c2c4,0x1c2c2,0x185d0,0x1c2ec,0x185c8,0x1c2e6, // 680 0x185c4,0x185c2,0x10bd0,0x185ec,0x10bc8,0x185e6,0x10bc4,0x10bc2,0x10bec,0x10be6, // 690 0x1f1a8,0x1f8d6,0x11afc,0x1f1a4,0x11a7e,0x1f1a2,0x1e128,0x1f096,0x1e368,0x1e124, // 700 0x1e364,0x1e122,0x1e362,0x1c268,0x1e136,0x1c6e8,0x1c264,0x1c6e4,0x1c262,0x1c6e2, // 710 0x184e8,0x1c276,0x18de8,0x184e4,0x18de4,0x184e2,0x18de2,0x109e8,0x184f6,0x11be8, // 720 0x109e4,0x11be4,0x109e2,0x11be2,0x109f6,0x11bf6,0x1f9d4,0x13af8,0x19d7e,0x1f9d2, // 730 0x13a7c,0x13a3e,0x1f194,0x1197e,0x1f3b4,0x1f192,0x13b7e,0x1f3b2,0x1e114,0x1e334, // 740 0x1e112,0x1e774,0x1e332,0x1e772,0x1c234,0x1c674,0x1c232,0x1cef4,0x1c672,0x1cef2, // 750 0x18474,0x18cf4,0x18472,0x19df4,0x18cf2,0x19df2,0x108f4,0x119f4,0x108f2,0x13bf4, // 760 0x119f2,0x13bf2,0x17af0,0x1bd7c,0x17a78,0x1bd3e,0x17a3c,0x17a1e,0x1f9ca,0x1397c, // 770 0x1fbda,0x17b7c,0x1393e,0x17b3e,0x1f18a,0x1f39a,0x1f7ba,0x1e10a,0x1e31a,0x1e73a, // 780 0x1ef7a,0x1c21a,0x1c63a,0x1ce7a,0x1defa,0x1843a,0x18c7a,0x19cfa,0x1bdfa,0x1087a, // 790 0x118fa,0x139fa,0x17978,0x1bcbe,0x1793c,0x1791e,0x138be,0x179be,0x178bc,0x1789e, // 800 0x1785e,0x1e0a8,0x1e0a4,0x1e0a2,0x1c168,0x1e0b6,0x1c164,0x1c162,0x182e8,0x1c176, // 810 0x182e4,0x182e2,0x105e8,0x182f6,0x105e4,0x105e2,0x105f6,0x1f0d4,0x10d7e,0x1f0d2, // 820 0x1e094,0x1e1b4,0x1e092,0x1e1b2,0x1c134,0x1c374,0x1c132,0x1c372,0x18274,0x186f4, // 830 0x18272,0x186f2,0x104f4,0x10df4,0x104f2,0x10df2,0x1f8ea,0x11d7c,0x11d3e,0x1f0ca, // 840 0x1f1da,0x1e08a,0x1e19a,0x1e3ba,0x1c11a,0x1c33a,0x1c77a,0x1823a,0x1867a,0x18efa, // 850 0x1047a,0x10cfa,0x11dfa,0x13d78,0x19ebe,0x13d3c,0x13d1e,0x11cbe,0x13dbe,0x17d70, // 860 0x1bebc,0x17d38,0x1be9e,0x17d1c,0x17d0e,0x13cbc,0x17dbc,0x13c9e,0x17d9e,0x17cb8, // 870 0x1be5e,0x17c9c,0x17c8e,0x13c5e,0x17cde,0x17c5c,0x17c4e,0x17c2e,0x1c0b4,0x1c0b2, // 880 0x18174,0x18172,0x102f4,0x102f2,0x1e0da,0x1c09a,0x1c1ba,0x1813a,0x1837a,0x1027a, // 890 0x106fa,0x10ebe,0x11ebc,0x11e9e,0x13eb8,0x19f5e,0x13e9c,0x13e8e,0x11e5e,0x13ede, // 900 0x17eb0,0x1bf5c,0x17e98,0x1bf4e,0x17e8c,0x17e86,0x13e5c,0x17edc,0x13e4e,0x17ece, // 910 0x17e58,0x1bf2e,0x17e4c,0x17e46,0x13e2e,0x17e6e,0x17e2c,0x17e26,0x10f5e,0x11f5c, // 920 0x11f4e,0x13f58,0x19fae,0x13f4c,0x13f46,0x11f2e,0x13f6e,0x13f2c,0x13f26), // 929 array( // cluster 6 ----------------------------------------------------------------------- 0x1abe0,0x1d5f8,0x153c0,0x1a9f0,0x1d4fc,0x151e0,0x1a8f8,0x1d47e,0x150f0,0x1a87c, // 10 0x15078,0x1fad0,0x15be0,0x1adf8,0x1fac8,0x159f0,0x1acfc,0x1fac4,0x158f8,0x1ac7e, // 20 0x1fac2,0x1587c,0x1f5d0,0x1faec,0x15df8,0x1f5c8,0x1fae6,0x15cfc,0x1f5c4,0x15c7e, // 30 0x1f5c2,0x1ebd0,0x1f5ec,0x1ebc8,0x1f5e6,0x1ebc4,0x1ebc2,0x1d7d0,0x1ebec,0x1d7c8, // 40 0x1ebe6,0x1d7c4,0x1d7c2,0x1afd0,0x1d7ec,0x1afc8,0x1d7e6,0x1afc4,0x14bc0,0x1a5f0, // 50 0x1d2fc,0x149e0,0x1a4f8,0x1d27e,0x148f0,0x1a47c,0x14878,0x1a43e,0x1483c,0x1fa68, // 60 0x14df0,0x1a6fc,0x1fa64,0x14cf8,0x1a67e,0x1fa62,0x14c7c,0x14c3e,0x1f4e8,0x1fa76, // 70 0x14efc,0x1f4e4,0x14e7e,0x1f4e2,0x1e9e8,0x1f4f6,0x1e9e4,0x1e9e2,0x1d3e8,0x1e9f6, // 80 0x1d3e4,0x1d3e2,0x1a7e8,0x1d3f6,0x1a7e4,0x1a7e2,0x145e0,0x1a2f8,0x1d17e,0x144f0, // 90 0x1a27c,0x14478,0x1a23e,0x1443c,0x1441e,0x1fa34,0x146f8,0x1a37e,0x1fa32,0x1467c, // 100 0x1463e,0x1f474,0x1477e,0x1f472,0x1e8f4,0x1e8f2,0x1d1f4,0x1d1f2,0x1a3f4,0x1a3f2, // 110 0x142f0,0x1a17c,0x14278,0x1a13e,0x1423c,0x1421e,0x1fa1a,0x1437c,0x1433e,0x1f43a, // 120 0x1e87a,0x1d0fa,0x14178,0x1a0be,0x1413c,0x1411e,0x141be,0x140bc,0x1409e,0x12bc0, // 130 0x195f0,0x1cafc,0x129e0,0x194f8,0x1ca7e,0x128f0,0x1947c,0x12878,0x1943e,0x1283c, // 140 0x1f968,0x12df0,0x196fc,0x1f964,0x12cf8,0x1967e,0x1f962,0x12c7c,0x12c3e,0x1f2e8, // 150 0x1f976,0x12efc,0x1f2e4,0x12e7e,0x1f2e2,0x1e5e8,0x1f2f6,0x1e5e4,0x1e5e2,0x1cbe8, // 160 0x1e5f6,0x1cbe4,0x1cbe2,0x197e8,0x1cbf6,0x197e4,0x197e2,0x1b5e0,0x1daf8,0x1ed7e, // 170 0x169c0,0x1b4f0,0x1da7c,0x168e0,0x1b478,0x1da3e,0x16870,0x1b43c,0x16838,0x1b41e, // 180 0x1681c,0x125e0,0x192f8,0x1c97e,0x16de0,0x124f0,0x1927c,0x16cf0,0x1b67c,0x1923e, // 190 0x16c78,0x1243c,0x16c3c,0x1241e,0x16c1e,0x1f934,0x126f8,0x1937e,0x1fb74,0x1f932, // 200 0x16ef8,0x1267c,0x1fb72,0x16e7c,0x1263e,0x16e3e,0x1f274,0x1277e,0x1f6f4,0x1f272, // 210 0x16f7e,0x1f6f2,0x1e4f4,0x1edf4,0x1e4f2,0x1edf2,0x1c9f4,0x1dbf4,0x1c9f2,0x1dbf2, // 220 0x193f4,0x193f2,0x165c0,0x1b2f0,0x1d97c,0x164e0,0x1b278,0x1d93e,0x16470,0x1b23c, // 230 0x16438,0x1b21e,0x1641c,0x1640e,0x122f0,0x1917c,0x166f0,0x12278,0x1913e,0x16678, // 240 0x1b33e,0x1663c,0x1221e,0x1661e,0x1f91a,0x1237c,0x1fb3a,0x1677c,0x1233e,0x1673e, // 250 0x1f23a,0x1f67a,0x1e47a,0x1ecfa,0x1c8fa,0x1d9fa,0x191fa,0x162e0,0x1b178,0x1d8be, // 260 0x16270,0x1b13c,0x16238,0x1b11e,0x1621c,0x1620e,0x12178,0x190be,0x16378,0x1213c, // 270 0x1633c,0x1211e,0x1631e,0x121be,0x163be,0x16170,0x1b0bc,0x16138,0x1b09e,0x1611c, // 280 0x1610e,0x120bc,0x161bc,0x1209e,0x1619e,0x160b8,0x1b05e,0x1609c,0x1608e,0x1205e, // 290 0x160de,0x1605c,0x1604e,0x115e0,0x18af8,0x1c57e,0x114f0,0x18a7c,0x11478,0x18a3e, // 300 0x1143c,0x1141e,0x1f8b4,0x116f8,0x18b7e,0x1f8b2,0x1167c,0x1163e,0x1f174,0x1177e, // 310 0x1f172,0x1e2f4,0x1e2f2,0x1c5f4,0x1c5f2,0x18bf4,0x18bf2,0x135c0,0x19af0,0x1cd7c, // 320 0x134e0,0x19a78,0x1cd3e,0x13470,0x19a3c,0x13438,0x19a1e,0x1341c,0x1340e,0x112f0, // 330 0x1897c,0x136f0,0x11278,0x1893e,0x13678,0x19b3e,0x1363c,0x1121e,0x1361e,0x1f89a, // 340 0x1137c,0x1f9ba,0x1377c,0x1133e,0x1373e,0x1f13a,0x1f37a,0x1e27a,0x1e6fa,0x1c4fa, // 350 0x1cdfa,0x189fa,0x1bae0,0x1dd78,0x1eebe,0x174c0,0x1ba70,0x1dd3c,0x17460,0x1ba38, // 360 0x1dd1e,0x17430,0x1ba1c,0x17418,0x1ba0e,0x1740c,0x132e0,0x19978,0x1ccbe,0x176e0, // 370 0x13270,0x1993c,0x17670,0x1bb3c,0x1991e,0x17638,0x1321c,0x1761c,0x1320e,0x1760e, // 380 0x11178,0x188be,0x13378,0x1113c,0x17778,0x1333c,0x1111e,0x1773c,0x1331e,0x1771e, // 390 0x111be,0x133be,0x177be,0x172c0,0x1b970,0x1dcbc,0x17260,0x1b938,0x1dc9e,0x17230, // 400 0x1b91c,0x17218,0x1b90e,0x1720c,0x17206,0x13170,0x198bc,0x17370,0x13138,0x1989e, // 410 0x17338,0x1b99e,0x1731c,0x1310e,0x1730e,0x110bc,0x131bc,0x1109e,0x173bc,0x1319e, // 420 0x1739e,0x17160,0x1b8b8,0x1dc5e,0x17130,0x1b89c,0x17118,0x1b88e,0x1710c,0x17106, // 430 0x130b8,0x1985e,0x171b8,0x1309c,0x1719c,0x1308e,0x1718e,0x1105e,0x130de,0x171de, // 440 0x170b0,0x1b85c,0x17098,0x1b84e,0x1708c,0x17086,0x1305c,0x170dc,0x1304e,0x170ce, // 450 0x17058,0x1b82e,0x1704c,0x17046,0x1302e,0x1706e,0x1702c,0x17026,0x10af0,0x1857c, // 460 0x10a78,0x1853e,0x10a3c,0x10a1e,0x10b7c,0x10b3e,0x1f0ba,0x1e17a,0x1c2fa,0x185fa, // 470 0x11ae0,0x18d78,0x1c6be,0x11a70,0x18d3c,0x11a38,0x18d1e,0x11a1c,0x11a0e,0x10978, // 480 0x184be,0x11b78,0x1093c,0x11b3c,0x1091e,0x11b1e,0x109be,0x11bbe,0x13ac0,0x19d70, // 490 0x1cebc,0x13a60,0x19d38,0x1ce9e,0x13a30,0x19d1c,0x13a18,0x19d0e,0x13a0c,0x13a06, // 500 0x11970,0x18cbc,0x13b70,0x11938,0x18c9e,0x13b38,0x1191c,0x13b1c,0x1190e,0x13b0e, // 510 0x108bc,0x119bc,0x1089e,0x13bbc,0x1199e,0x13b9e,0x1bd60,0x1deb8,0x1ef5e,0x17a40, // 520 0x1bd30,0x1de9c,0x17a20,0x1bd18,0x1de8e,0x17a10,0x1bd0c,0x17a08,0x1bd06,0x17a04, // 530 0x13960,0x19cb8,0x1ce5e,0x17b60,0x13930,0x19c9c,0x17b30,0x1bd9c,0x19c8e,0x17b18, // 540 0x1390c,0x17b0c,0x13906,0x17b06,0x118b8,0x18c5e,0x139b8,0x1189c,0x17bb8,0x1399c, // 550 0x1188e,0x17b9c,0x1398e,0x17b8e,0x1085e,0x118de,0x139de,0x17bde,0x17940,0x1bcb0, // 560 0x1de5c,0x17920,0x1bc98,0x1de4e,0x17910,0x1bc8c,0x17908,0x1bc86,0x17904,0x17902, // 570 0x138b0,0x19c5c,0x179b0,0x13898,0x19c4e,0x17998,0x1bcce,0x1798c,0x13886,0x17986, // 580 0x1185c,0x138dc,0x1184e,0x179dc,0x138ce,0x179ce,0x178a0,0x1bc58,0x1de2e,0x17890, // 590 0x1bc4c,0x17888,0x1bc46,0x17884,0x17882,0x13858,0x19c2e,0x178d8,0x1384c,0x178cc, // 600 0x13846,0x178c6,0x1182e,0x1386e,0x178ee,0x17850,0x1bc2c,0x17848,0x1bc26,0x17844, // 610 0x17842,0x1382c,0x1786c,0x13826,0x17866,0x17828,0x1bc16,0x17824,0x17822,0x13816, // 620 0x17836,0x10578,0x182be,0x1053c,0x1051e,0x105be,0x10d70,0x186bc,0x10d38,0x1869e, // 630 0x10d1c,0x10d0e,0x104bc,0x10dbc,0x1049e,0x10d9e,0x11d60,0x18eb8,0x1c75e,0x11d30, // 640 0x18e9c,0x11d18,0x18e8e,0x11d0c,0x11d06,0x10cb8,0x1865e,0x11db8,0x10c9c,0x11d9c, // 650 0x10c8e,0x11d8e,0x1045e,0x10cde,0x11dde,0x13d40,0x19eb0,0x1cf5c,0x13d20,0x19e98, // 660 0x1cf4e,0x13d10,0x19e8c,0x13d08,0x19e86,0x13d04,0x13d02,0x11cb0,0x18e5c,0x13db0, // 670 0x11c98,0x18e4e,0x13d98,0x19ece,0x13d8c,0x11c86,0x13d86,0x10c5c,0x11cdc,0x10c4e, // 680 0x13ddc,0x11cce,0x13dce,0x1bea0,0x1df58,0x1efae,0x1be90,0x1df4c,0x1be88,0x1df46, // 690 0x1be84,0x1be82,0x13ca0,0x19e58,0x1cf2e,0x17da0,0x13c90,0x19e4c,0x17d90,0x1becc, // 700 0x19e46,0x17d88,0x13c84,0x17d84,0x13c82,0x17d82,0x11c58,0x18e2e,0x13cd8,0x11c4c, // 710 0x17dd8,0x13ccc,0x11c46,0x17dcc,0x13cc6,0x17dc6,0x10c2e,0x11c6e,0x13cee,0x17dee, // 720 0x1be50,0x1df2c,0x1be48,0x1df26,0x1be44,0x1be42,0x13c50,0x19e2c,0x17cd0,0x13c48, // 730 0x19e26,0x17cc8,0x1be66,0x17cc4,0x13c42,0x17cc2,0x11c2c,0x13c6c,0x11c26,0x17cec, // 740 0x13c66,0x17ce6,0x1be28,0x1df16,0x1be24,0x1be22,0x13c28,0x19e16,0x17c68,0x13c24, // 750 0x17c64,0x13c22,0x17c62,0x11c16,0x13c36,0x17c76,0x1be14,0x1be12,0x13c14,0x17c34, // 760 0x13c12,0x17c32,0x102bc,0x1029e,0x106b8,0x1835e,0x1069c,0x1068e,0x1025e,0x106de, // 770 0x10eb0,0x1875c,0x10e98,0x1874e,0x10e8c,0x10e86,0x1065c,0x10edc,0x1064e,0x10ece, // 780 0x11ea0,0x18f58,0x1c7ae,0x11e90,0x18f4c,0x11e88,0x18f46,0x11e84,0x11e82,0x10e58, // 790 0x1872e,0x11ed8,0x18f6e,0x11ecc,0x10e46,0x11ec6,0x1062e,0x10e6e,0x11eee,0x19f50, // 800 0x1cfac,0x19f48,0x1cfa6,0x19f44,0x19f42,0x11e50,0x18f2c,0x13ed0,0x19f6c,0x18f26, // 810 0x13ec8,0x11e44,0x13ec4,0x11e42,0x13ec2,0x10e2c,0x11e6c,0x10e26,0x13eec,0x11e66, // 820 0x13ee6,0x1dfa8,0x1efd6,0x1dfa4,0x1dfa2,0x19f28,0x1cf96,0x1bf68,0x19f24,0x1bf64, // 830 0x19f22,0x1bf62,0x11e28,0x18f16,0x13e68,0x11e24,0x17ee8,0x13e64,0x11e22,0x17ee4, // 840 0x13e62,0x17ee2,0x10e16,0x11e36,0x13e76,0x17ef6,0x1df94,0x1df92,0x19f14,0x1bf34, // 850 0x19f12,0x1bf32,0x11e14,0x13e34,0x11e12,0x17e74,0x13e32,0x17e72,0x1df8a,0x19f0a, // 860 0x1bf1a,0x11e0a,0x13e1a,0x17e3a,0x1035c,0x1034e,0x10758,0x183ae,0x1074c,0x10746, // 870 0x1032e,0x1076e,0x10f50,0x187ac,0x10f48,0x187a6,0x10f44,0x10f42,0x1072c,0x10f6c, // 880 0x10726,0x10f66,0x18fa8,0x1c7d6,0x18fa4,0x18fa2,0x10f28,0x18796,0x11f68,0x18fb6, // 890 0x11f64,0x10f22,0x11f62,0x10716,0x10f36,0x11f76,0x1cfd4,0x1cfd2,0x18f94,0x19fb4, // 900 0x18f92,0x19fb2,0x10f14,0x11f34,0x10f12,0x13f74,0x11f32,0x13f72,0x1cfca,0x18f8a, // 910 0x19f9a,0x10f0a,0x11f1a,0x13f3a,0x103ac,0x103a6,0x107a8,0x183d6,0x107a4,0x107a2, // 920 0x10396,0x107b6,0x187d4,0x187d2,0x10794,0x10fb4,0x10792,0x10fb2,0x1c7ea) // 929 ); // end of $clusters array /** * Array of factors of the Reed-Solomon polynomial equations used for error correction; one sub array for each correction level (0-8). * @protected */ protected $rsfactors = array( array( // ECL 0 (2 factors) ------------------------------------------------------------------------------- 0x01b,0x395), // 2 array( // ECL 1 (4 factors) ------------------------------------------------------------------------------- 0x20a,0x238,0x2d3,0x329), // 4 array( // ECL 2 (8 factors) ------------------------------------------------------------------------------- 0x0ed,0x134,0x1b4,0x11c,0x286,0x28d,0x1ac,0x17b), // 8 array( // ECL 3 (16 factors) ------------------------------------------------------------------------------ 0x112,0x232,0x0e8,0x2f3,0x257,0x20c,0x321,0x084,0x127,0x074,0x1ba,0x1ac,0x127,0x02a,0x0b0,0x041),// 16 array( // ECL 4 (32 factors) ------------------------------------------------------------------------------ 0x169,0x23f,0x39a,0x20d,0x0b0,0x24a,0x280,0x141,0x218,0x2e6,0x2a5,0x2e6,0x2af,0x11c,0x0c1,0x205, // 16 0x111,0x1ee,0x107,0x093,0x251,0x320,0x23b,0x140,0x323,0x085,0x0e7,0x186,0x2ad,0x14a,0x03f,0x19a),// 32 array( // ECL 5 (64 factors) ------------------------------------------------------------------------------ 0x21b,0x1a6,0x006,0x05d,0x35e,0x303,0x1c5,0x06a,0x262,0x11f,0x06b,0x1f9,0x2dd,0x36d,0x17d,0x264, // 16 0x2d3,0x1dc,0x1ce,0x0ac,0x1ae,0x261,0x35a,0x336,0x21f,0x178,0x1ff,0x190,0x2a0,0x2fa,0x11b,0x0b8, // 32 0x1b8,0x023,0x207,0x01f,0x1cc,0x252,0x0e1,0x217,0x205,0x160,0x25d,0x09e,0x28b,0x0c9,0x1e8,0x1f6, // 48 0x288,0x2dd,0x2cd,0x053,0x194,0x061,0x118,0x303,0x348,0x275,0x004,0x17d,0x34b,0x26f,0x108,0x21f),// 64 array( // ECL 6 (128 factors) ----------------------------------------------------------------------------- 0x209,0x136,0x360,0x223,0x35a,0x244,0x128,0x17b,0x035,0x30b,0x381,0x1bc,0x190,0x39d,0x2ed,0x19f, // 16 0x336,0x05d,0x0d9,0x0d0,0x3a0,0x0f4,0x247,0x26c,0x0f6,0x094,0x1bf,0x277,0x124,0x38c,0x1ea,0x2c0, // 32 0x204,0x102,0x1c9,0x38b,0x252,0x2d3,0x2a2,0x124,0x110,0x060,0x2ac,0x1b0,0x2ae,0x25e,0x35c,0x239, // 48 0x0c1,0x0db,0x081,0x0ba,0x0ec,0x11f,0x0c0,0x307,0x116,0x0ad,0x028,0x17b,0x2c8,0x1cf,0x286,0x308, // 64 0x0ab,0x1eb,0x129,0x2fb,0x09c,0x2dc,0x05f,0x10e,0x1bf,0x05a,0x1fb,0x030,0x0e4,0x335,0x328,0x382, // 80 0x310,0x297,0x273,0x17a,0x17e,0x106,0x17c,0x25a,0x2f2,0x150,0x059,0x266,0x057,0x1b0,0x29e,0x268, // 96 0x09d,0x176,0x0f2,0x2d6,0x258,0x10d,0x177,0x382,0x34d,0x1c6,0x162,0x082,0x32e,0x24b,0x324,0x022, // 112 0x0d3,0x14a,0x21b,0x129,0x33b,0x361,0x025,0x205,0x342,0x13b,0x226,0x056,0x321,0x004,0x06c,0x21b),// 128 array( // ECL 7 (256 factors) ----------------------------------------------------------------------------- 0x20c,0x37e,0x04b,0x2fe,0x372,0x359,0x04a,0x0cc,0x052,0x24a,0x2c4,0x0fa,0x389,0x312,0x08a,0x2d0, // 16 0x35a,0x0c2,0x137,0x391,0x113,0x0be,0x177,0x352,0x1b6,0x2dd,0x0c2,0x118,0x0c9,0x118,0x33c,0x2f5, // 32 0x2c6,0x32e,0x397,0x059,0x044,0x239,0x00b,0x0cc,0x31c,0x25d,0x21c,0x391,0x321,0x2bc,0x31f,0x089, // 48 0x1b7,0x1a2,0x250,0x29c,0x161,0x35b,0x172,0x2b6,0x145,0x0f0,0x0d8,0x101,0x11c,0x225,0x0d1,0x374, // 64 0x13b,0x046,0x149,0x319,0x1ea,0x112,0x36d,0x0a2,0x2ed,0x32c,0x2ac,0x1cd,0x14e,0x178,0x351,0x209, // 80 0x133,0x123,0x323,0x2c8,0x013,0x166,0x18f,0x38c,0x067,0x1ff,0x033,0x008,0x205,0x0e1,0x121,0x1d6, // 96 0x27d,0x2db,0x042,0x0ff,0x395,0x10d,0x1cf,0x33e,0x2da,0x1b1,0x350,0x249,0x088,0x21a,0x38a,0x05a, // 112 0x002,0x122,0x2e7,0x0c7,0x28f,0x387,0x149,0x031,0x322,0x244,0x163,0x24c,0x0bc,0x1ce,0x00a,0x086, // 128 0x274,0x140,0x1df,0x082,0x2e3,0x047,0x107,0x13e,0x176,0x259,0x0c0,0x25d,0x08e,0x2a1,0x2af,0x0ea, // 144 0x2d2,0x180,0x0b1,0x2f0,0x25f,0x280,0x1c7,0x0c1,0x2b1,0x2c3,0x325,0x281,0x030,0x03c,0x2dc,0x26d, // 160 0x37f,0x220,0x105,0x354,0x28f,0x135,0x2b9,0x2f3,0x2f4,0x03c,0x0e7,0x305,0x1b2,0x1a5,0x2d6,0x210, // 176 0x1f7,0x076,0x031,0x31b,0x020,0x090,0x1f4,0x0ee,0x344,0x18a,0x118,0x236,0x13f,0x009,0x287,0x226, // 192 0x049,0x392,0x156,0x07e,0x020,0x2a9,0x14b,0x318,0x26c,0x03c,0x261,0x1b9,0x0b4,0x317,0x37d,0x2f2, // 208 0x25d,0x17f,0x0e4,0x2ed,0x2f8,0x0d5,0x036,0x129,0x086,0x036,0x342,0x12b,0x39a,0x0bf,0x38e,0x214, // 224 0x261,0x33d,0x0bd,0x014,0x0a7,0x01d,0x368,0x1c1,0x053,0x192,0x029,0x290,0x1f9,0x243,0x1e1,0x0ad, // 240 0x194,0x0fb,0x2b0,0x05f,0x1f1,0x22b,0x282,0x21f,0x133,0x09f,0x39c,0x22e,0x288,0x037,0x1f1,0x00a),// 256 array( // ECL 8 (512 factors) ----------------------------------------------------------------------------- 0x160,0x04d,0x175,0x1f8,0x023,0x257,0x1ac,0x0cf,0x199,0x23e,0x076,0x1f2,0x11d,0x17c,0x15e,0x1ec, // 16 0x0c5,0x109,0x398,0x09b,0x392,0x12b,0x0e5,0x283,0x126,0x367,0x132,0x058,0x057,0x0c1,0x160,0x30d, // 32 0x34e,0x04b,0x147,0x208,0x1b3,0x21f,0x0cb,0x29a,0x0f9,0x15a,0x30d,0x26d,0x280,0x10c,0x31a,0x216, // 48 0x21b,0x30d,0x198,0x186,0x284,0x066,0x1dc,0x1f3,0x122,0x278,0x221,0x025,0x35a,0x394,0x228,0x029, // 64 0x21e,0x121,0x07a,0x110,0x17f,0x320,0x1e5,0x062,0x2f0,0x1d8,0x2f9,0x06b,0x310,0x35c,0x292,0x2e5, // 80 0x122,0x0cc,0x2a9,0x197,0x357,0x055,0x063,0x03e,0x1e2,0x0b4,0x014,0x129,0x1c3,0x251,0x391,0x08e, // 96 0x328,0x2ac,0x11f,0x218,0x231,0x04c,0x28d,0x383,0x2d9,0x237,0x2e8,0x186,0x201,0x0c0,0x204,0x102, // 112 0x0f0,0x206,0x31a,0x18b,0x300,0x350,0x033,0x262,0x180,0x0a8,0x0be,0x33a,0x148,0x254,0x312,0x12f, // 128 0x23a,0x17d,0x19f,0x281,0x09c,0x0ed,0x097,0x1ad,0x213,0x0cf,0x2a4,0x2c6,0x059,0x0a8,0x130,0x192, // 144 0x028,0x2c4,0x23f,0x0a2,0x360,0x0e5,0x041,0x35d,0x349,0x200,0x0a4,0x1dd,0x0dd,0x05c,0x166,0x311, // 160 0x120,0x165,0x352,0x344,0x33b,0x2e0,0x2c3,0x05e,0x008,0x1ee,0x072,0x209,0x002,0x1f3,0x353,0x21f, // 176 0x098,0x2d9,0x303,0x05f,0x0f8,0x169,0x242,0x143,0x358,0x31d,0x121,0x033,0x2ac,0x1d2,0x215,0x334, // 192 0x29d,0x02d,0x386,0x1c4,0x0a7,0x156,0x0f4,0x0ad,0x023,0x1cf,0x28b,0x033,0x2bb,0x24f,0x1c4,0x242, // 208 0x025,0x07c,0x12a,0x14c,0x228,0x02b,0x1ab,0x077,0x296,0x309,0x1db,0x352,0x2fc,0x16c,0x242,0x38f, // 224 0x11b,0x2c7,0x1d8,0x1a4,0x0f5,0x120,0x252,0x18a,0x1ff,0x147,0x24d,0x309,0x2bb,0x2b0,0x02b,0x198, // 240 0x34a,0x17f,0x2d1,0x209,0x230,0x284,0x2ca,0x22f,0x03e,0x091,0x369,0x297,0x2c9,0x09f,0x2a0,0x2d9, // 256 0x270,0x03b,0x0c1,0x1a1,0x09e,0x0d1,0x233,0x234,0x157,0x2b5,0x06d,0x260,0x233,0x16d,0x0b5,0x304, // 272 0x2a5,0x136,0x0f8,0x161,0x2c4,0x19a,0x243,0x366,0x269,0x349,0x278,0x35c,0x121,0x218,0x023,0x309, // 288 0x26a,0x24a,0x1a8,0x341,0x04d,0x255,0x15a,0x10d,0x2f5,0x278,0x2b7,0x2ef,0x14b,0x0f7,0x0b8,0x02d, // 304 0x313,0x2a8,0x012,0x042,0x197,0x171,0x036,0x1ec,0x0e4,0x265,0x33e,0x39a,0x1b5,0x207,0x284,0x389, // 320 0x315,0x1a4,0x131,0x1b9,0x0cf,0x12c,0x37c,0x33b,0x08d,0x219,0x17d,0x296,0x201,0x038,0x0fc,0x155, // 336 0x0f2,0x31d,0x346,0x345,0x2d0,0x0e0,0x133,0x277,0x03d,0x057,0x230,0x136,0x2f4,0x299,0x18d,0x328, // 352 0x353,0x135,0x1d9,0x31b,0x17a,0x01f,0x287,0x393,0x1cb,0x326,0x24e,0x2db,0x1a9,0x0d8,0x224,0x0f9, // 368 0x141,0x371,0x2bb,0x217,0x2a1,0x30e,0x0d2,0x32f,0x389,0x12f,0x34b,0x39a,0x119,0x049,0x1d5,0x317, // 384 0x294,0x0a2,0x1f2,0x134,0x09b,0x1a6,0x38b,0x331,0x0bb,0x03e,0x010,0x1a9,0x217,0x150,0x11e,0x1b5, // 400 0x177,0x111,0x262,0x128,0x0b7,0x39b,0x074,0x29b,0x2ef,0x161,0x03e,0x16e,0x2b3,0x17b,0x2af,0x34a, // 416 0x025,0x165,0x2d0,0x2e6,0x14a,0x005,0x027,0x39b,0x137,0x1a8,0x0f2,0x2ed,0x141,0x036,0x29d,0x13c, // 432 0x156,0x12b,0x216,0x069,0x29b,0x1e8,0x280,0x2a0,0x240,0x21c,0x13c,0x1e6,0x2d1,0x262,0x02e,0x290, // 448 0x1bf,0x0ab,0x268,0x1d0,0x0be,0x213,0x129,0x141,0x2fa,0x2f0,0x215,0x0af,0x086,0x00e,0x17d,0x1b1, // 464 0x2cd,0x02d,0x06f,0x014,0x254,0x11c,0x2e0,0x08a,0x286,0x19b,0x36d,0x29d,0x08d,0x397,0x02d,0x30c, // 480 0x197,0x0a4,0x14c,0x383,0x0a5,0x2d6,0x258,0x145,0x1f2,0x28f,0x165,0x2f0,0x300,0x0df,0x351,0x287, // 496 0x03f,0x136,0x35f,0x0fb,0x16e,0x130,0x11a,0x2e2,0x2a3,0x19a,0x185,0x0f4,0x01f,0x079,0x12f,0x107) // 512 ); /** * This is the class constructor. * Creates a PDF417 object * @param $code (string) code to represent using PDF417 * @param $ecl (int) error correction level (0-8); default -1 = automatic correction level * @param $aspectratio (float) the width to height of the symbol (excluding quiet zones) * @param $macro (array) information for macro block * @public */ public function __construct($code, $ecl=-1, $aspectratio=2, $macro=array()) { $barcode_array = array(); if ((is_null($code)) OR ($code == '\0') OR ($code == '')) { return false; } // get the input sequence array $sequence = $this->getInputSequences($code); $codewords = array(); // array of code-words foreach($sequence as $seq) { $cw = $this->getCompaction($seq[0], $seq[1], true); $codewords = array_merge($codewords, $cw); } if ($codewords[0] == 900) { // Text Alpha is the default mode, so remove the first code array_shift($codewords); } // count number of codewords $numcw = count($codewords); if ($numcw > 925) { // reached maximum data codeword capacity return false; } // build macro control block codewords if (!empty($macro)) { $macrocw = array(); // beginning of macro control block $macrocw[] = 928; // segment index $cw = $this->getCompaction(902, sprintf('%05d', $macro['segment_index']), false); $macrocw = array_merge($macrocw, $cw); // file ID $cw = $this->getCompaction(900, $macro['file_id'], false); $macrocw = array_merge($macrocw, $cw); // optional fields $optmodes = array(900,902,902,900,900,902,902); $optsize = array(-1,2,4,-1,-1,-1,2); foreach ($optmodes as $k => $omode) { if (isset($macro['option_'.$k])) { $macrocw[] = 923; $macrocw[] = $k; if ($optsize[$k] == 2) { $macro['option_'.$k] = sprintf('%05d', $macro['option_'.$k]); } elseif ($optsize[$k] == 4) { $macro['option_'.$k] = sprintf('%010d', $macro['option_'.$k]); } $cw = $this->getCompaction($omode, $macro['option_'.$k], false); $macrocw = array_merge($macrocw, $cw); } } if ($macro['segment_index'] == ($macro['segment_total'] - 1)) { // end of control block $macrocw[] = 922; } // update total codewords $numcw += count($macrocw); } // set error correction level $ecl = $this->getErrorCorrectionLevel($ecl, $numcw); // number of codewords for error correction $errsize = (2 << $ecl); // calculate number of columns (number of codewords per row) and rows $nce = ($numcw + $errsize + 1); $cols = round((sqrt(4761 + (68 * $aspectratio * ROWHEIGHT * $nce)) - 69) / 34); // adjust cols if ($cols < 1) { $cols = 1; } elseif ($cols > 30) { $cols = 30; } $rows = ceil($nce / $cols); $size = ($cols * $rows); // adjust rows if (($rows < 3) OR ($rows > 90)) { if ($rows < 3) { $rows = 3; } elseif ($rows > 90) { $rows = 90; } $cols = ceil($size / $rows); $size = ($cols * $rows); } if ($size > 928) { // set dimensions to get maximum capacity if (abs($aspectratio - (17 * 29 / 32)) < abs($aspectratio - (17 * 16 / 58))) { $cols = 29; $rows = 32; } else { $cols = 16; $rows = 58; } $size = 928; } // calculate padding $pad = ($size - $nce); if ($pad > 0) { if (($size - $rows) == $nce) { --$rows; $size -= $rows; } else { // add pading $codewords = array_merge($codewords, array_fill(0, $pad, 900)); } } if (!empty($macro)) { // add macro section $codewords = array_merge($codewords, $macrocw); } // Symbol Lenght Descriptor (number of data codewords including Symbol Lenght Descriptor and pad codewords) $sld = $size - $errsize; // add symbol length description array_unshift($codewords, $sld); // calculate error correction $ecw = $this->getErrorCorrection($codewords, $ecl); // add error correction codewords $codewords = array_merge($codewords, $ecw); // add horizontal quiet zones to start and stop patterns $pstart = str_repeat('0', QUIETH).$this->start_pattern; $pstop = $this->stop_pattern.str_repeat('0', QUIETH); $barcode_array['num_rows'] = ($rows * ROWHEIGHT) + (2 * QUIETV); $barcode_array['num_cols'] = (($cols + 2) * 17) + 35 + (2 * QUIETH); $barcode_array['bcode'] = array(); // build rows for vertical quiet zone if (QUIETV > 0) { $empty_row = array_fill(0, $barcode_array['num_cols'], 0); for ($i = 0; $i < QUIETV; ++$i) { // add vertical quiet rows $barcode_array['bcode'][] = $empty_row; } } $k = 0; // codeword index $cid = 0; // initial cluster // for each row for ($r = 0; $r < $rows; ++$r) { // row start code $row = $pstart; switch ($cid) { case 0: { $L = ((30 * intval($r / 3)) + intval(($rows - 1) / 3)); break; } case 1: { $L = ((30 * intval($r / 3)) + ($ecl * 3) + (($rows - 1) % 3)); break; } case 2: { $L = ((30 * intval($r / 3)) + ($cols - 1)); break; } } // left row indicator $row .= sprintf('%17b', $this->clusters[$cid][$L]); // for each column for ($c = 0; $c < $cols; ++$c) { $row .= sprintf('%17b', $this->clusters[$cid][$codewords[$k]]); ++$k; } switch ($cid) { case 0: { $L = ((30 * intval($r / 3)) + ($cols - 1)); break; } case 1: { $L = ((30 * intval($r / 3)) + intval(($rows - 1) / 3)); break; } case 2: { $L = ((30 * intval($r / 3)) + ($ecl * 3) + (($rows - 1) % 3)); break; } } // right row indicator $row .= sprintf('%17b', $this->clusters[$cid][$L]); // row stop code $row .= $pstop; // convert the string to array $arow = preg_split('//', $row, -1, PREG_SPLIT_NO_EMPTY); // duplicate row to get the desired height for ($h = 0; $h < ROWHEIGHT; ++$h) { $barcode_array['bcode'][] = $arow; } ++$cid; if ($cid > 2) { $cid = 0; } } if (QUIETV > 0) { for ($i = 0; $i < QUIETV; ++$i) { // add vertical quiet rows $barcode_array['bcode'][] = $empty_row; } } $this->barcode_array = $barcode_array; } /** * Returns a barcode array which is readable by TCPDF * @return array barcode array readable by TCPDF; * @public */ public function getBarcodeArray() { return $this->barcode_array; } /** * Returns the error correction level (0-8) to be used * @param $ecl (int) error correction level * @param $numcw (int) number of data codewords * @return int error correction level * @protected */ protected function getErrorCorrectionLevel($ecl, $numcw) { // get maximum correction level $maxecl = 8; // starting error level $maxerrsize = (928 - $numcw); // available codewords for error while ($maxecl > 0) { $errsize = (2 << $ecl); if ($maxerrsize >= $errsize) { break; } --$maxecl; } // check for automatic levels if (($ecl < 0) OR ($ecl > 8)) { if ($numcw < 41) { $ecl = 2; } elseif ($numcw < 161) { $ecl = 3; } elseif ($numcw < 321) { $ecl = 4; } elseif ($numcw < 864) { $ecl = 5; } else { $ecl = $maxecl; } } if ($ecl > $maxecl) { $ecl = $maxecl; } return $ecl; } /** * Returns the error correction codewords * @param $cw (array) array of codewords including Symbol Lenght Descriptor and pad * @param $ecl (int) error correction level 0-8 * @return array of error correction codewords * @protected */ protected function getErrorCorrection($cw, $ecl) { // get error correction coefficients $ecc = $this->rsfactors[$ecl]; // number of error correction factors $eclsize = (2 << $ecl); // maximum index for $rsfactors[$ecl] $eclmaxid = ($eclsize - 1); // initialize array of error correction codewords $ecw = array_fill(0, $eclsize, 0); // for each data codeword foreach($cw as $k => $d) { $t1 = ($d + $ecw[$eclmaxid]) % 929; for ($j = $eclmaxid; $j > 0; --$j) { $t2 = ($t1 * $ecc[$j]) % 929; $t3 = 929 - $t2; $ecw[$j] = ($ecw[($j - 1)] + $t3) % 929; } $t2 = ($t1 * $ecc[0]) % 929; $t3 = 929 - $t2; $ecw[0] = $t3 % 929; } foreach($ecw as $j => $e) { if ($e != 0) { $ecw[$j] = 929 - $e; } } $ecw = array_reverse($ecw); return $ecw; } /** * Create array of sequences from input * @param $code (string) code * @return bidimensional array containing characters and classification * @protected */ protected function getInputSequences($code) { $sequence_array = array(); // array to be returned $numseq = array(); // get numeric sequences preg_match_all('/([0-9]{13,})/', $code, $numseq, PREG_OFFSET_CAPTURE); $numseq[1][] = array('', strlen($code)); $offset = 0; foreach($numseq[1] as $seq) { $seqlen = strlen($seq[0]); if ($seq[1] > 0) { // extract text sequence before the number sequence $prevseq = substr($code, $offset, ($seq[1] - $offset)); $textseq = array(); // get text sequences preg_match_all('/([\x09\x0a\x0d\x20-\x7e]{5,})/', $prevseq, $textseq, PREG_OFFSET_CAPTURE); $textseq[1][] = array('', strlen($prevseq)); $txtoffset = 0; foreach($textseq[1] as $txtseq) { $txtseqlen = strlen($txtseq[0]); if ($txtseq[1] > 0) { // extract byte sequence before the text sequence $prevtxtseq = substr($prevseq, $txtoffset, ($txtseq[1] - $txtoffset)); if (strlen($prevtxtseq) > 0) { // add BYTE sequence if ((strlen($prevtxtseq) == 1) AND ((count($sequence_array) > 0) AND ($sequence_array[(count($sequence_array) - 1)][0] == 900))) { $sequence_array[] = array(913, $prevtxtseq); } elseif ((strlen($prevtxtseq) % 6) == 0) { $sequence_array[] = array(924, $prevtxtseq); } else { $sequence_array[] = array(901, $prevtxtseq); } } } if ($txtseqlen > 0) { // add numeric sequence $sequence_array[] = array(900, $txtseq[0]); } $txtoffset = $txtseq[1] + $txtseqlen; } } if ($seqlen > 0) { // add numeric sequence $sequence_array[] = array(902, $seq[0]); } $offset = $seq[1] + $seqlen; } return $sequence_array; } /** * Compact data by mode. * @param $mode (int) compaction mode number * @param $code (string) data to compact * @param $addmode (boolean) if true add the mode codeword at first position * @return array of codewords * @protected */ protected function getCompaction($mode, $code, $addmode=true) { $cw = array(); // array of codewords to return switch($mode) { case 900: { // Text Compaction mode latch $submode = 0; // default Alpha sub-mode $txtarr = array(); // array of characters and sub-mode switching characters $codelen = strlen($code); for ($i = 0; $i < $codelen; ++$i) { $chval = ord($code{$i}); if (($k = array_search($chval, $this->textsubmodes[$submode])) !== false) { // we are on the same sub-mode $txtarr[] = $k; } else { // the sub-mode is changed for ($s = 0; $s < 4; ++$s) { // search new sub-mode if (($s != $submode) AND (($k = array_search($chval, $this->textsubmodes[$s])) !== false)) { // $s is the new submode if (((($i + 1) == $codelen) OR ((($i + 1) < $codelen) AND (array_search(ord($code{($i + 1)}), $this->textsubmodes[$submode]) !== false))) AND (($s == 3) OR (($s == 0) AND ($submode == 1)))) { // shift (temporary change only for this char) if ($s == 3) { // shift to puntuaction $txtarr[] = 29; } else { // shift from lower to alpha $txtarr[] = 27; } } else { // latch $txtarr = array_merge($txtarr, $this->textlatch[''.$submode.$s]); // set new submode $submode = $s; } // add characted code to array $txtarr[] = $k; break; } } } } $txtarrlen = count($txtarr); if (($txtarrlen % 2) != 0) { // add padding $txtarr[] = 29; ++$txtarrlen; } // calculate codewords for ($i = 0; $i < $txtarrlen; $i += 2) { $cw[] = (30 * $txtarr[$i]) + $txtarr[($i + 1)]; } break; } case 901: case 924: { // Byte Compaction mode latch while (($codelen = strlen($code)) > 0) { if ($codelen > 6) { $rest = substr($code, 6); $code = substr($code, 0, 6); $sublen = 6; } else { $rest = ''; $sublen = strlen($code); } if ($sublen == 6) { $t = bcmul(''.ord($code{0}), '1099511627776'); $t = bcadd($t, bcmul(''.ord($code{1}), '4294967296')); $t = bcadd($t, bcmul(''.ord($code{2}), '16777216')); $t = bcadd($t, bcmul(''.ord($code{3}), '65536')); $t = bcadd($t, bcmul(''.ord($code{4}), '256')); $t = bcadd($t, ''.ord($code{5})); do { $d = bcmod($t, '900'); $t = bcdiv($t, '900'); array_unshift($cw, $d); } while ($t != '0'); } else { for ($i = 0; $i < $sublen; ++$i) { $cw[] = ord($code{$i}); } } $code = $rest; } break; } case 902: { // Numeric Compaction mode latch while (($codelen = strlen($code)) > 0) { if ($codelen > 44) { $rest = substr($code, 44); $code = substr($code, 0, 44); } else { $rest = ''; } $t = '1'.$code; do { $d = bcmod($t, '900'); $t = bcdiv($t, '900'); array_unshift($cw, $d); } while ($t != '0'); $code = $rest; } break; } case 913: { // Byte Compaction mode shift $cw[] = ord($code); break; } } if ($addmode) { // add the compaction mode codeword at the beginning array_unshift($cw, $mode); } return $cw; } } // end PDF417 class //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/pdf417.php
PHP
gpl2
53,738
<?php //============================================================+ // File name : tcpdf_parser.php // Version : 1.0.000 // Begin : 2011-05-23 // Last Update : 2011-07-14 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS. // ------------------------------------------------------------------- // Copyright (C) 2011-2011 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. Additionally, // YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE // GENERATED PDF DOCUMENTS. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the License // along with TCPDF. If not, see // <http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : This is a PHP class for parsing PDF documents. // //============================================================+ /** * @file * This is a PHP class for parsing PDF documents.<br> * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.000 */ // include class for decoding filters require_once(dirname(__FILE__).'/tcpdf_filters.php'); /** * @class TCPDF_PARSER * This is a PHP class for parsing PDF documents.<br> * @package com.tecnick.tcpdf * @brief This is a PHP class for parsing PDF documents.. * @version 1.0.000 * @author Nicola Asuni - info@tecnick.com */ class TCPDF_PARSER { /** * Raw content of the PDF document. * @private */ private $pdfdata = ''; /** * XREF data. * @protected */ protected $xref = array(); /** * Array of PDF objects. * @protected */ protected $objects = array(); /** * Class object for decoding filters. * @private */ private $FilterDecoders; // ----------------------------------------------------------------------------- /** * Parse a PDF document an return an array of objects. * @param $data (string) PDF data to parse. * @public * @since 1.0.000 (2011-05-24) */ public function __construct($data) { if (empty($data)) { $this->Error('Empty PDF data.'); } $this->pdfdata = $data; // get length $pdflen = strlen($this->pdfdata); // initialize class for decoding filters $this->FilterDecoders = new TCPDF_FILTERS(); // get xref and trailer data $this->xref = $this->getXrefData(); // parse all document objects $this->objects = array(); foreach ($this->xref['xref'] as $obj => $offset) { if (!isset($this->objects[$obj])) { $this->objects[$obj] = $this->getIndirectObject($obj, $offset, true); } } // release some memory unset($this->pdfdata); $this->pdfdata = ''; } /** * Return an array of parsed PDF document objects. * @return (array) Array of parsed PDF document objects. * @public * @since 1.0.000 (2011-06-26) */ public function getParsedData() { return array($this->xref, $this->objects); } /** * Get xref (cross-reference table) and trailer data from PDF document data. * @param $offset (int) xref offset (if know). * @param $xref (array) previous xref array (if any). * @return Array containing xref and trailer data. * @protected * @since 1.0.000 (2011-05-24) */ protected function getXrefData($offset=0, $xref=array()) { // find last startxref if (preg_match_all('/[\r\n]startxref[\s]*[\r\n]+([0-9]+)[\s]*[\r\n]+%%EOF/i', $this->pdfdata, $matches, PREG_SET_ORDER, $offset) == 0) { $this->Error('Unable to find startxref'); } $matches = array_pop($matches); $startxref = $matches[1]; // check xref position if (strpos($this->pdfdata, 'xref', $startxref) != $startxref) { $this->Error('Unable to find xref'); } // extract xref data (object indexes and offsets) $offset = $startxref + 5; // initialize object number $obj_num = 0; while (preg_match('/^([0-9]+)[\s]([0-9]+)[\s]?([nf]?)/im', $this->pdfdata, $matches, PREG_OFFSET_CAPTURE, $offset) > 0) { $offset = (strlen($matches[0][0]) + $matches[0][1]); if ($matches[3][0] == 'n') { // create unique object index: [object number]_[generation number] $index = $obj_num.'_'.intval($matches[2][0]); // check if object already exist if (!isset($xref['xref'][$index])) { // store object offset position $xref['xref'][$index] = intval($matches[1][0]); } ++$obj_num; $offset += 2; } elseif ($matches[3][0] == 'f') { ++$obj_num; $offset += 2; } else { // object number (index) $obj_num = intval($matches[1][0]); } } // get trailer data if (preg_match('/trailer[\s]*<<(.*)>>[\s]*[\r\n]+startxref[\s]*[\r\n]+/isU', $this->pdfdata, $matches, PREG_OFFSET_CAPTURE, $offset) > 0) { $trailer_data = $matches[1][0]; if (!isset($xref['trailer'])) { // get only the last updated version $xref['trailer'] = array(); // parse trailer_data if (preg_match('/Size[\s]+([0-9]+)/i', $trailer_data, $matches) > 0) { $xref['trailer']['size'] = intval($matches[1]); } if (preg_match('/Root[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { $xref['trailer']['root'] = intval($matches[1]).'_'.intval($matches[2]); } if (preg_match('/Encrypt[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { $xref['trailer']['encrypt'] = intval($matches[1]).'_'.intval($matches[2]); } if (preg_match('/Info[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { $xref['trailer']['info'] = intval($matches[1]).'_'.intval($matches[2]); } if (preg_match('/ID[\s]*[\[][\s]*[<]([^>]*)[>][\s]*[<]([^>]*)[>]/i', $trailer_data, $matches) > 0) { $xref['trailer']['id'] = array(); $xref['trailer']['id'][0] = $matches[1]; $xref['trailer']['id'][1] = $matches[2]; } } if (preg_match('/Prev[\s]+([0-9]+)/i', $trailer_data, $matches) > 0) { // get previous xref $xref = getXrefData(substr($this->pdfdata, 0, $startxref), intval($matches[1]), $xref); } } else { $this->Error('Unable to find trailer'); } return $xref; } /** * Get object type, raw value and offset to next object * @param $offset (int) Object offset. * @return array containing object type, raw value and offset to next object * @protected * @since 1.0.000 (2011-06-20) */ protected function getRawObject($offset=0) { $objtype = ''; // object type to be returned $objval = ''; // object value to be returned // skip initial white space chars: \x00 null (NUL), \x09 horizontal tab (HT), \x0A line feed (LF), \x0C form feed (FF), \x0D carriage return (CR), \x20 space (SP) $offset += strspn($this->pdfdata, "\x00\x09\x0a\x0c\x0d\x20", $offset); // get first char $char = $this->pdfdata{$offset}; // get object type switch ($char) { case '%': { // \x25 PERCENT SIGN // skip comment and search for next token $next = strcspn($this->pdfdata, "\r\n", $offset); if ($next > 0) { $offset += $next; return $this->getRawObject($this->pdfdata, $offset); } break; } case '/': { // \x2F SOLIDUS // name object $objtype = $char; ++$offset; if (preg_match('/^([^\x00\x09\x0a\x0c\x0d\x20\s\x28\x29\x3c\x3e\x5b\x5d\x7b\x7d\x2f\x25]+)/', substr($this->pdfdata, $offset, 256), $matches) == 1) { $objval = $matches[1]; // unescaped value $offset += strlen($objval); } break; } case '(': // \x28 LEFT PARENTHESIS case ')': { // \x29 RIGHT PARENTHESIS // literal string object $objtype = $char; ++$offset; $strpos = $offset; if ($char == '(') { $open_bracket = 1; while ($open_bracket > 0) { if (!isset($this->pdfdata{$strpos})) { break; } $ch = $this->pdfdata{$strpos}; switch ($ch) { case '\\': { // REVERSE SOLIDUS (5Ch) (Backslash) // skip next character ++$strpos; break; } case '(': { // LEFT PARENHESIS (28h) ++$open_bracket; break; } case ')': { // RIGHT PARENTHESIS (29h) --$open_bracket; break; } } ++$strpos; } $objval = substr($this->pdfdata, $offset, ($strpos - $offset - 1)); $offset = $strpos; } break; } case '[': // \x5B LEFT SQUARE BRACKET case ']': { // \x5D RIGHT SQUARE BRACKET // array object $objtype = $char; ++$offset; if ($char == '[') { // get array content $objval = array(); do { // get element $element = $this->getRawObject($offset); $offset = $element[2]; $objval[] = $element; } while ($element[0] != ']'); // remove closing delimiter array_pop($objval); } break; } case '<': // \x3C LESS-THAN SIGN case '>': { // \x3E GREATER-THAN SIGN if (isset($this->pdfdata{($offset + 1)}) AND ($this->pdfdata{($offset + 1)} == $char)) { // dictionary object $objtype = $char.$char; $offset += 2; if ($char == '<') { // get array content $objval = array(); do { // get element $element = $this->getRawObject($offset); $offset = $element[2]; $objval[] = $element; } while ($element[0] != '>>'); // remove closing delimiter array_pop($objval); } } else { // hexadecimal string object $objtype = $char; ++$offset; if (($char == '<') AND (preg_match('/^([0-9A-Fa-f]+)[>]/iU', substr($this->pdfdata, $offset), $matches) == 1)) { $objval = $matches[1]; $offset += strlen($matches[0]); } } break; } default: { if (substr($this->pdfdata, $offset, 6) == 'endobj') { // indirect object $objtype = 'endobj'; $offset += 6; } elseif (substr($this->pdfdata, $offset, 4) == 'null') { // null object $objtype = 'null'; $offset += 4; $objval = 'null'; } elseif (substr($this->pdfdata, $offset, 4) == 'true') { // boolean true object $objtype = 'boolean'; $offset += 4; $objval = 'true'; } elseif (substr($this->pdfdata, $offset, 5) == 'false') { // boolean false object $objtype = 'boolean'; $offset += 5; $objval = 'false'; } elseif (substr($this->pdfdata, $offset, 6) == 'stream') { // start stream object $objtype = 'stream'; $offset += 6; if (preg_match('/^[\r\n]+(.*)[\r\n]*endstream/isU', substr($this->pdfdata, $offset), $matches) == 1) { $objval = $matches[1]; $offset += strlen($matches[0]); } } elseif (substr($this->pdfdata, $offset, 9) == 'endstream') { // end stream object $objtype = 'endstream'; $offset += 9; } elseif (preg_match('/^([0-9]+)[\s]+([0-9]+)[\s]+R/iU', substr($this->pdfdata, $offset, 33), $matches) == 1) { // indirect object reference $objtype = 'ojbref'; $offset += strlen($matches[0]); $objval = intval($matches[1]).'_'.intval($matches[2]); } elseif (preg_match('/^([0-9]+)[\s]+([0-9]+)[\s]+obj/iU', substr($this->pdfdata, $offset, 33), $matches) == 1) { // object start $objtype = 'ojb'; $objval = intval($matches[1]).'_'.intval($matches[2]); $offset += strlen ($matches[0]); } elseif (($numlen = strspn($this->pdfdata, '+-.0123456789', $offset)) > 0) { // numeric object $objtype = 'numeric'; $objval = substr($this->pdfdata, $offset, $numlen); $offset += $numlen; } break; } } return array($objtype, $objval, $offset); } /** * Get content of indirect object. * @param $obj_ref (string) Object number and generation number separated by underscore character. * @param $offset (int) Object offset. * @param $decoding (boolean) If true decode streams. * @return array containing object data. * @protected * @since 1.0.000 (2011-05-24) */ protected function getIndirectObject($obj_ref, $offset=0, $decoding=true) { $obj = explode('_', $obj_ref); if (($obj === false) OR (count($obj) != 2)) { $this->Error('Invalid object reference: '.$obj); return; } $objref = $obj[0].' '.$obj[1].' obj'; if (strpos($this->pdfdata, $objref, $offset) != $offset) { // an indirect reference to an undefined object shall be considered a reference to the null object return array('null', 'null', $offset); } // starting position of object content $offset += strlen($objref); // get array of object content $objdata = array(); $i = 0; // object main index do { // get element $element = $this->getRawObject($offset); $offset = $element[2]; // decode stream using stream's dictionary information if ($decoding AND ($element[0] == 'stream') AND (isset($objdata[($i - 1)][0])) AND ($objdata[($i - 1)][0] == '<<')) { $element[3] = $this->decodeStream($objdata[($i - 1)][1], $element[1]); } $objdata[$i] = $element; ++$i; } while ($element[0] != 'endobj'); // remove closing delimiter array_pop($objdata); // return raw object content return $objdata; } /** * Get the content of object, resolving indect object reference if necessary. * @param $obj (string) Object value. * @return array containing object data. * @protected * @since 1.0.000 (2011-06-26) */ protected function getObjectVal($obj) { if ($obj[0] == 'objref') { // reference to indirect object if (isset($this->objects[$obj[1]])) { // this object has been already parsed return $this->objects[$obj[1]]; } elseif (isset($this->xref[$obj[1]])) { // parse new object $this->objects[$obj[1]] = $this->getIndirectObject($obj[1], $this->xref[$obj[1]], false); return $this->objects[$obj[1]]; } } return $obj; } /** * Decode the specified stream. * @param $sdic (array) Stream's dictionary array. * @param $stream (string) Stream to decode. * @return array containing decoded stream data and remaining filters. * @protected * @since 1.0.000 (2011-06-22) */ protected function decodeStream($sdic, $stream) { // get stream lenght and filters $slength = strlen($stream); $filters = array(); foreach ($sdic as $k => $v) { if ($v[0] == '/') { if (($v[1] == 'Length') AND (isset($sdic[($k + 1)])) AND ($sdic[($k + 1)][0] == 'numeric')) { // get declared stream lenght $declength = intval($sdic[($k + 1)][1]); if ($declength < $slength) { $stream = substr($stream, 0, $declength); $slength = $declength; } } elseif (($v[1] == 'Filter') AND (isset($sdic[($k + 1)]))) { // resolve indirect object $objval = $this->getObjectVal($sdic[($k + 1)]); if ($objval[0] == '/') { // single filter $filters[] = $objval[1]; } elseif ($objval[0] == '[') { // array of filters foreach ($objval[1] as $flt) { if ($flt[0] == '/') { $filters[] = $flt[1]; } } } } } } // decode the stream $remaining_filters = array(); foreach ($filters as $filter) { if (in_array($filter, $this->FilterDecoders->getAvailableFilters())) { $stream = $this->FilterDecoders->decodeFilter($filter, $stream); } else { // add missing filter to array $remaining_filters[] = $filter; } } return array($stream, $remaining_filters); } /** * This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. * @param $msg (string) The error message * @public * @since 1.0.000 (2011-05-23) */ public function Error($msg) { // exit program and print error die('<strong>TCPDF_PARSER ERROR: </strong>'.$msg); } } // END OF TCPDF_PARSER CLASS //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/tcpdf_parser.php
PHP
gpl2
16,368
<?php //============================================================+ // File name : unicode_data.php // Version : 1.0.009 // Begin : 2008-01-01 // Last Update : 2011-10-01 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // ------------------------------------------------------------------- // Copyright (C) 2008-2011 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Unicode data for TCPDF library. // //============================================================+ // THANKS TO // Efthimios Mavrogeorgiadis // Saleh AlMatrafe /** * @file * Unicode data class for TCPDF library. * @author Nicola Asuni * @package com.tecnick.tcpdf * @since 2.1.000 (2008-01-08) */ /** * @class TCPDF_UNICODE_DATA * This is a PHP class containing UnicOde data for TCPDF library. * @package com.tecnick.tcpdf * @version 1.0.009 * @author Nicola Asuni - info@tecnick.com */ class TCPDF_UNICODE_DATA { /** * Unicode code for Left-to-Right Mark. * @public */ public $uni_LRM = 8206; /** * Unicode code for Right-to-Left Mark. * @public */ public $uni_RLM = 8207; /** * Unicode code for Left-to-Right Embedding. * @public */ public $uni_LRE = 8234; /** * Unicode code for Right-to-Left Embedding. * @public */ public $uni_RLE = 8235; /** * Unicode code for Pop Directional Format. * @public */ public $uni_PDF = 8236; /** * Unicode code for Left-to-Right Override. * @public */ public $uni_LRO = 8237; /** * Unicode code for Right-to-Left Override. * @public */ public $uni_RLO = 8238; /** * Pattern to test RTL (Righ-To-Left) strings using regular expressions. * @public */ public $uni_RE_PATTERN_RTL = "/( \xD6\xBE # R | \xD7[\x80\x83\x86\x90-\xAA\xB0-\xB4] # R | \xDF[\x80-\xAA\xB4\xB5\xBA] # R | \xE2\x80\x8F # R | \xEF\xAC[\x9D\x9F\xA0-\xA8\xAA-\xB6\xB8-\xBC\xBE] # R | \xEF\xAD[\x80\x81\x83\x84\x86-\x8F] # R | \xF0\x90\xA0[\x80-\x85\x88\x8A-\xB5\xB7\xB8\xBC\xBF] # R | \xF0\x90\xA4[\x80-\x99] # R | \xF0\x90\xA8[\x80\x90-\x93\x95-\x97\x99-\xB3] # R | \xF0\x90\xA9[\x80-\x87\x90-\x98] # R | \xE2\x80[\xAB\xAE] # RLE & RLO )/x"; /** * Pattern to test Arabic strings using regular expressions. Source: http://www.w3.org/International/questions/qa-forms-utf-8 * @public */ public $uni_RE_PATTERN_ARABIC = "/( \xD8[\x80-\x83\x8B\x8D\x9B\x9E\x9F\xA1-\xBA] # AL | \xD9[\x80-\x8A\xAD-\xAF\xB1-\xBF] # AL | \xDA[\x80-\xBF] # AL | \xDB[\x80-\x95\x9D\xA5\xA6\xAE\xAF\xBA-\xBF] # AL | \xDC[\x80-\x8D\x90\x92-\xAF] # AL | \xDD[\x8D-\xAD] # AL | \xDE[\x80-\xA5\xB1] # AL | \xEF\xAD[\x90-\xBF] # AL | \xEF\xAE[\x80-\xB1] # AL | \xEF\xAF[\x93-\xBF] # AL | \xEF[\xB0-\xB3][\x80-\xBF] # AL | \xEF\xB4[\x80-\xBD] # AL | \xEF\xB5[\x90-\xBF] # AL | \xEF\xB6[\x80-\x8F\x92-\xBF] # AL | \xEF\xB7[\x80-\x87\xB0-\xBC] # AL | \xEF\xB9[\xB0-\xB4\xB6-\xBF] # AL | \xEF\xBA[\x80-\xBF] # AL | \xEF\xBB[\x80-\xBC] # AL | \xD9[\xA0-\xA9\xAB\xAC] # AN )/x"; /** * Array of Unicode types. * @public */ public $uni_type = array( 0=>'BN', 1=>'BN', 2=>'BN', 3=>'BN', 4=>'BN', 5=>'BN', 6=>'BN', 7=>'BN', 8=>'BN', 9=>'S', 10=>'B', 11=>'S', 12=>'WS', 13=>'B', 14=>'BN', 15=>'BN', 16=>'BN', 17=>'BN', 18=>'BN', 19=>'BN', 20=>'BN', 21=>'BN', 22=>'BN', 23=>'BN', 24=>'BN', 25=>'BN', 26=>'BN', 27=>'BN', 28=>'B', 29=>'B', 30=>'B', 31=>'S', 32=>'WS', 33=>'ON', 34=>'ON', 35=>'ET', 36=>'ET', 37=>'ET', 38=>'ON', 39=>'ON', 40=>'ON', 41=>'ON', 42=>'ON', 43=>'ES', 44=>'CS', 45=>'ES', 46=>'CS', 47=>'CS', 48=>'EN', 49=>'EN', 50=>'EN', 51=>'EN', 52=>'EN', 53=>'EN', 54=>'EN', 55=>'EN', 56=>'EN', 57=>'EN', 58=>'CS', 59=>'ON', 60=>'ON', 61=>'ON', 62=>'ON', 63=>'ON', 64=>'ON', 65=>'L', 66=>'L', 67=>'L', 68=>'L', 69=>'L', 70=>'L', 71=>'L', 72=>'L', 73=>'L', 74=>'L', 75=>'L', 76=>'L', 77=>'L', 78=>'L', 79=>'L', 80=>'L', 81=>'L', 82=>'L', 83=>'L', 84=>'L', 85=>'L', 86=>'L', 87=>'L', 88=>'L', 89=>'L', 90=>'L', 91=>'ON', 92=>'ON', 93=>'ON', 94=>'ON', 95=>'ON', 96=>'ON', 97=>'L', 98=>'L', 99=>'L', 100=>'L', 101=>'L', 102=>'L', 103=>'L', 104=>'L', 105=>'L', 106=>'L', 107=>'L', 108=>'L', 109=>'L', 110=>'L', 111=>'L', 112=>'L', 113=>'L', 114=>'L', 115=>'L', 116=>'L', 117=>'L', 118=>'L', 119=>'L', 120=>'L', 121=>'L', 122=>'L', 123=>'ON', 124=>'ON', 125=>'ON', 126=>'ON', 127=>'BN', 128=>'BN', 129=>'BN', 130=>'BN', 131=>'BN', 132=>'BN', 133=>'B', 134=>'BN', 135=>'BN', 136=>'BN', 137=>'BN', 138=>'BN', 139=>'BN', 140=>'BN', 141=>'BN', 142=>'BN', 143=>'BN', 144=>'BN', 145=>'BN', 146=>'BN', 147=>'BN', 148=>'BN', 149=>'BN', 150=>'BN', 151=>'BN', 152=>'BN', 153=>'BN', 154=>'BN', 155=>'BN', 156=>'BN', 157=>'BN', 158=>'BN', 159=>'BN', 160=>'CS', 161=>'ON', 162=>'ET', 163=>'ET', 164=>'ET', 165=>'ET', 166=>'ON', 167=>'ON', 168=>'ON', 169=>'ON', 170=>'L', 171=>'ON', 172=>'ON', 173=>'BN', 174=>'ON', 175=>'ON', 176=>'ET', 177=>'ET', 178=>'EN', 179=>'EN', 180=>'ON', 181=>'L', 182=>'ON', 183=>'ON', 184=>'ON', 185=>'EN', 186=>'L', 187=>'ON', 188=>'ON', 189=>'ON', 190=>'ON', 191=>'ON', 192=>'L', 193=>'L', 194=>'L', 195=>'L', 196=>'L', 197=>'L', 198=>'L', 199=>'L', 200=>'L', 201=>'L', 202=>'L', 203=>'L', 204=>'L', 205=>'L', 206=>'L', 207=>'L', 208=>'L', 209=>'L', 210=>'L', 211=>'L', 212=>'L', 213=>'L', 214=>'L', 215=>'ON', 216=>'L', 217=>'L', 218=>'L', 219=>'L', 220=>'L', 221=>'L', 222=>'L', 223=>'L', 224=>'L', 225=>'L', 226=>'L', 227=>'L', 228=>'L', 229=>'L', 230=>'L', 231=>'L', 232=>'L', 233=>'L', 234=>'L', 235=>'L', 236=>'L', 237=>'L', 238=>'L', 239=>'L', 240=>'L', 241=>'L', 242=>'L', 243=>'L', 244=>'L', 245=>'L', 246=>'L', 247=>'ON', 248=>'L', 249=>'L', 250=>'L', 251=>'L', 252=>'L', 253=>'L', 254=>'L', 255=>'L', 256=>'L', 257=>'L', 258=>'L', 259=>'L', 260=>'L', 261=>'L', 262=>'L', 263=>'L', 264=>'L', 265=>'L', 266=>'L', 267=>'L', 268=>'L', 269=>'L', 270=>'L', 271=>'L', 272=>'L', 273=>'L', 274=>'L', 275=>'L', 276=>'L', 277=>'L', 278=>'L', 279=>'L', 280=>'L', 281=>'L', 282=>'L', 283=>'L', 284=>'L', 285=>'L', 286=>'L', 287=>'L', 288=>'L', 289=>'L', 290=>'L', 291=>'L', 292=>'L', 293=>'L', 294=>'L', 295=>'L', 296=>'L', 297=>'L', 298=>'L', 299=>'L', 300=>'L', 301=>'L', 302=>'L', 303=>'L', 304=>'L', 305=>'L', 306=>'L', 307=>'L', 308=>'L', 309=>'L', 310=>'L', 311=>'L', 312=>'L', 313=>'L', 314=>'L', 315=>'L', 316=>'L', 317=>'L', 318=>'L', 319=>'L', 320=>'L', 321=>'L', 322=>'L', 323=>'L', 324=>'L', 325=>'L', 326=>'L', 327=>'L', 328=>'L', 329=>'L', 330=>'L', 331=>'L', 332=>'L', 333=>'L', 334=>'L', 335=>'L', 336=>'L', 337=>'L', 338=>'L', 339=>'L', 340=>'L', 341=>'L', 342=>'L', 343=>'L', 344=>'L', 345=>'L', 346=>'L', 347=>'L', 348=>'L', 349=>'L', 350=>'L', 351=>'L', 352=>'L', 353=>'L', 354=>'L', 355=>'L', 356=>'L', 357=>'L', 358=>'L', 359=>'L', 360=>'L', 361=>'L', 362=>'L', 363=>'L', 364=>'L', 365=>'L', 366=>'L', 367=>'L', 368=>'L', 369=>'L', 370=>'L', 371=>'L', 372=>'L', 373=>'L', 374=>'L', 375=>'L', 376=>'L', 377=>'L', 378=>'L', 379=>'L', 380=>'L', 381=>'L', 382=>'L', 383=>'L', 384=>'L', 385=>'L', 386=>'L', 387=>'L', 388=>'L', 389=>'L', 390=>'L', 391=>'L', 392=>'L', 393=>'L', 394=>'L', 395=>'L', 396=>'L', 397=>'L', 398=>'L', 399=>'L', 400=>'L', 401=>'L', 402=>'L', 403=>'L', 404=>'L', 405=>'L', 406=>'L', 407=>'L', 408=>'L', 409=>'L', 410=>'L', 411=>'L', 412=>'L', 413=>'L', 414=>'L', 415=>'L', 416=>'L', 417=>'L', 418=>'L', 419=>'L', 420=>'L', 421=>'L', 422=>'L', 423=>'L', 424=>'L', 425=>'L', 426=>'L', 427=>'L', 428=>'L', 429=>'L', 430=>'L', 431=>'L', 432=>'L', 433=>'L', 434=>'L', 435=>'L', 436=>'L', 437=>'L', 438=>'L', 439=>'L', 440=>'L', 441=>'L', 442=>'L', 443=>'L', 444=>'L', 445=>'L', 446=>'L', 447=>'L', 448=>'L', 449=>'L', 450=>'L', 451=>'L', 452=>'L', 453=>'L', 454=>'L', 455=>'L', 456=>'L', 457=>'L', 458=>'L', 459=>'L', 460=>'L', 461=>'L', 462=>'L', 463=>'L', 464=>'L', 465=>'L', 466=>'L', 467=>'L', 468=>'L', 469=>'L', 470=>'L', 471=>'L', 472=>'L', 473=>'L', 474=>'L', 475=>'L', 476=>'L', 477=>'L', 478=>'L', 479=>'L', 480=>'L', 481=>'L', 482=>'L', 483=>'L', 484=>'L', 485=>'L', 486=>'L', 487=>'L', 488=>'L', 489=>'L', 490=>'L', 491=>'L', 492=>'L', 493=>'L', 494=>'L', 495=>'L', 496=>'L', 497=>'L', 498=>'L', 499=>'L', 500=>'L', 501=>'L', 502=>'L', 503=>'L', 504=>'L', 505=>'L', 506=>'L', 507=>'L', 508=>'L', 509=>'L', 510=>'L', 511=>'L', 512=>'L', 513=>'L', 514=>'L', 515=>'L', 516=>'L', 517=>'L', 518=>'L', 519=>'L', 520=>'L', 521=>'L', 522=>'L', 523=>'L', 524=>'L', 525=>'L', 526=>'L', 527=>'L', 528=>'L', 529=>'L', 530=>'L', 531=>'L', 532=>'L', 533=>'L', 534=>'L', 535=>'L', 536=>'L', 537=>'L', 538=>'L', 539=>'L', 540=>'L', 541=>'L', 542=>'L', 543=>'L', 544=>'L', 545=>'L', 546=>'L', 547=>'L', 548=>'L', 549=>'L', 550=>'L', 551=>'L', 552=>'L', 553=>'L', 554=>'L', 555=>'L', 556=>'L', 557=>'L', 558=>'L', 559=>'L', 560=>'L', 561=>'L', 562=>'L', 563=>'L', 564=>'L', 565=>'L', 566=>'L', 567=>'L', 568=>'L', 569=>'L', 570=>'L', 571=>'L', 572=>'L', 573=>'L', 574=>'L', 575=>'L', 576=>'L', 577=>'L', 578=>'L', 579=>'L', 580=>'L', 581=>'L', 582=>'L', 583=>'L', 584=>'L', 585=>'L', 586=>'L', 587=>'L', 588=>'L', 589=>'L', 590=>'L', 591=>'L', 592=>'L', 593=>'L', 594=>'L', 595=>'L', 596=>'L', 597=>'L', 598=>'L', 599=>'L', 600=>'L', 601=>'L', 602=>'L', 603=>'L', 604=>'L', 605=>'L', 606=>'L', 607=>'L', 608=>'L', 609=>'L', 610=>'L', 611=>'L', 612=>'L', 613=>'L', 614=>'L', 615=>'L', 616=>'L', 617=>'L', 618=>'L', 619=>'L', 620=>'L', 621=>'L', 622=>'L', 623=>'L', 624=>'L', 625=>'L', 626=>'L', 627=>'L', 628=>'L', 629=>'L', 630=>'L', 631=>'L', 632=>'L', 633=>'L', 634=>'L', 635=>'L', 636=>'L', 637=>'L', 638=>'L', 639=>'L', 640=>'L', 641=>'L', 642=>'L', 643=>'L', 644=>'L', 645=>'L', 646=>'L', 647=>'L', 648=>'L', 649=>'L', 650=>'L', 651=>'L', 652=>'L', 653=>'L', 654=>'L', 655=>'L', 656=>'L', 657=>'L', 658=>'L', 659=>'L', 660=>'L', 661=>'L', 662=>'L', 663=>'L', 664=>'L', 665=>'L', 666=>'L', 667=>'L', 668=>'L', 669=>'L', 670=>'L', 671=>'L', 672=>'L', 673=>'L', 674=>'L', 675=>'L', 676=>'L', 677=>'L', 678=>'L', 679=>'L', 680=>'L', 681=>'L', 682=>'L', 683=>'L', 684=>'L', 685=>'L', 686=>'L', 687=>'L', 688=>'L', 689=>'L', 690=>'L', 691=>'L', 692=>'L', 693=>'L', 694=>'L', 695=>'L', 696=>'L', 697=>'ON', 698=>'ON', 699=>'L', 700=>'L', 701=>'L', 702=>'L', 703=>'L', 704=>'L', 705=>'L', 706=>'ON', 707=>'ON', 708=>'ON', 709=>'ON', 710=>'ON', 711=>'ON', 712=>'ON', 713=>'ON', 714=>'ON', 715=>'ON', 716=>'ON', 717=>'ON', 718=>'ON', 719=>'ON', 720=>'L', 721=>'L', 722=>'ON', 723=>'ON', 724=>'ON', 725=>'ON', 726=>'ON', 727=>'ON', 728=>'ON', 729=>'ON', 730=>'ON', 731=>'ON', 732=>'ON', 733=>'ON', 734=>'ON', 735=>'ON', 736=>'L', 737=>'L', 738=>'L', 739=>'L', 740=>'L', 741=>'ON', 742=>'ON', 743=>'ON', 744=>'ON', 745=>'ON', 746=>'ON', 747=>'ON', 748=>'ON', 749=>'ON', 750=>'L', 751=>'ON', 752=>'ON', 753=>'ON', 754=>'ON', 755=>'ON', 756=>'ON', 757=>'ON', 758=>'ON', 759=>'ON', 760=>'ON', 761=>'ON', 762=>'ON', 763=>'ON', 764=>'ON', 765=>'ON', 766=>'ON', 767=>'ON', 768=>'NSM', 769=>'NSM', 770=>'NSM', 771=>'NSM', 772=>'NSM', 773=>'NSM', 774=>'NSM', 775=>'NSM', 776=>'NSM', 777=>'NSM', 778=>'NSM', 779=>'NSM', 780=>'NSM', 781=>'NSM', 782=>'NSM', 783=>'NSM', 784=>'NSM', 785=>'NSM', 786=>'NSM', 787=>'NSM', 788=>'NSM', 789=>'NSM', 790=>'NSM', 791=>'NSM', 792=>'NSM', 793=>'NSM', 794=>'NSM', 795=>'NSM', 796=>'NSM', 797=>'NSM', 798=>'NSM', 799=>'NSM', 800=>'NSM', 801=>'NSM', 802=>'NSM', 803=>'NSM', 804=>'NSM', 805=>'NSM', 806=>'NSM', 807=>'NSM', 808=>'NSM', 809=>'NSM', 810=>'NSM', 811=>'NSM', 812=>'NSM', 813=>'NSM', 814=>'NSM', 815=>'NSM', 816=>'NSM', 817=>'NSM', 818=>'NSM', 819=>'NSM', 820=>'NSM', 821=>'NSM', 822=>'NSM', 823=>'NSM', 824=>'NSM', 825=>'NSM', 826=>'NSM', 827=>'NSM', 828=>'NSM', 829=>'NSM', 830=>'NSM', 831=>'NSM', 832=>'NSM', 833=>'NSM', 834=>'NSM', 835=>'NSM', 836=>'NSM', 837=>'NSM', 838=>'NSM', 839=>'NSM', 840=>'NSM', 841=>'NSM', 842=>'NSM', 843=>'NSM', 844=>'NSM', 845=>'NSM', 846=>'NSM', 847=>'NSM', 848=>'NSM', 849=>'NSM', 850=>'NSM', 851=>'NSM', 852=>'NSM', 853=>'NSM', 854=>'NSM', 855=>'NSM', 856=>'NSM', 857=>'NSM', 858=>'NSM', 859=>'NSM', 860=>'NSM', 861=>'NSM', 862=>'NSM', 863=>'NSM', 864=>'NSM', 865=>'NSM', 866=>'NSM', 867=>'NSM', 868=>'NSM', 869=>'NSM', 870=>'NSM', 871=>'NSM', 872=>'NSM', 873=>'NSM', 874=>'NSM', 875=>'NSM', 876=>'NSM', 877=>'NSM', 878=>'NSM', 879=>'NSM', 884=>'ON', 885=>'ON', 890=>'L', 891=>'L', 892=>'L', 893=>'L', 894=>'ON', 900=>'ON', 901=>'ON', 902=>'L', 903=>'ON', 904=>'L', 905=>'L', 906=>'L', 908=>'L', 910=>'L', 911=>'L', 912=>'L', 913=>'L', 914=>'L', 915=>'L', 916=>'L', 917=>'L', 918=>'L', 919=>'L', 920=>'L', 921=>'L', 922=>'L', 923=>'L', 924=>'L', 925=>'L', 926=>'L', 927=>'L', 928=>'L', 929=>'L', 931=>'L', 932=>'L', 933=>'L', 934=>'L', 935=>'L', 936=>'L', 937=>'L', 938=>'L', 939=>'L', 940=>'L', 941=>'L', 942=>'L', 943=>'L', 944=>'L', 945=>'L', 946=>'L', 947=>'L', 948=>'L', 949=>'L', 950=>'L', 951=>'L', 952=>'L', 953=>'L', 954=>'L', 955=>'L', 956=>'L', 957=>'L', 958=>'L', 959=>'L', 960=>'L', 961=>'L', 962=>'L', 963=>'L', 964=>'L', 965=>'L', 966=>'L', 967=>'L', 968=>'L', 969=>'L', 970=>'L', 971=>'L', 972=>'L', 973=>'L', 974=>'L', 976=>'L', 977=>'L', 978=>'L', 979=>'L', 980=>'L', 981=>'L', 982=>'L', 983=>'L', 984=>'L', 985=>'L', 986=>'L', 987=>'L', 988=>'L', 989=>'L', 990=>'L', 991=>'L', 992=>'L', 993=>'L', 994=>'L', 995=>'L', 996=>'L', 997=>'L', 998=>'L', 999=>'L', 1000=>'L', 1001=>'L', 1002=>'L', 1003=>'L', 1004=>'L', 1005=>'L', 1006=>'L', 1007=>'L', 1008=>'L', 1009=>'L', 1010=>'L', 1011=>'L', 1012=>'L', 1013=>'L', 1014=>'ON', 1015=>'L', 1016=>'L', 1017=>'L', 1018=>'L', 1019=>'L', 1020=>'L', 1021=>'L', 1022=>'L', 1023=>'L', 1024=>'L', 1025=>'L', 1026=>'L', 1027=>'L', 1028=>'L', 1029=>'L', 1030=>'L', 1031=>'L', 1032=>'L', 1033=>'L', 1034=>'L', 1035=>'L', 1036=>'L', 1037=>'L', 1038=>'L', 1039=>'L', 1040=>'L', 1041=>'L', 1042=>'L', 1043=>'L', 1044=>'L', 1045=>'L', 1046=>'L', 1047=>'L', 1048=>'L', 1049=>'L', 1050=>'L', 1051=>'L', 1052=>'L', 1053=>'L', 1054=>'L', 1055=>'L', 1056=>'L', 1057=>'L', 1058=>'L', 1059=>'L', 1060=>'L', 1061=>'L', 1062=>'L', 1063=>'L', 1064=>'L', 1065=>'L', 1066=>'L', 1067=>'L', 1068=>'L', 1069=>'L', 1070=>'L', 1071=>'L', 1072=>'L', 1073=>'L', 1074=>'L', 1075=>'L', 1076=>'L', 1077=>'L', 1078=>'L', 1079=>'L', 1080=>'L', 1081=>'L', 1082=>'L', 1083=>'L', 1084=>'L', 1085=>'L', 1086=>'L', 1087=>'L', 1088=>'L', 1089=>'L', 1090=>'L', 1091=>'L', 1092=>'L', 1093=>'L', 1094=>'L', 1095=>'L', 1096=>'L', 1097=>'L', 1098=>'L', 1099=>'L', 1100=>'L', 1101=>'L', 1102=>'L', 1103=>'L', 1104=>'L', 1105=>'L', 1106=>'L', 1107=>'L', 1108=>'L', 1109=>'L', 1110=>'L', 1111=>'L', 1112=>'L', 1113=>'L', 1114=>'L', 1115=>'L', 1116=>'L', 1117=>'L', 1118=>'L', 1119=>'L', 1120=>'L', 1121=>'L', 1122=>'L', 1123=>'L', 1124=>'L', 1125=>'L', 1126=>'L', 1127=>'L', 1128=>'L', 1129=>'L', 1130=>'L', 1131=>'L', 1132=>'L', 1133=>'L', 1134=>'L', 1135=>'L', 1136=>'L', 1137=>'L', 1138=>'L', 1139=>'L', 1140=>'L', 1141=>'L', 1142=>'L', 1143=>'L', 1144=>'L', 1145=>'L', 1146=>'L', 1147=>'L', 1148=>'L', 1149=>'L', 1150=>'L', 1151=>'L', 1152=>'L', 1153=>'L', 1154=>'L', 1155=>'NSM', 1156=>'NSM', 1157=>'NSM', 1158=>'NSM', 1160=>'NSM', 1161=>'NSM', 1162=>'L', 1163=>'L', 1164=>'L', 1165=>'L', 1166=>'L', 1167=>'L', 1168=>'L', 1169=>'L', 1170=>'L', 1171=>'L', 1172=>'L', 1173=>'L', 1174=>'L', 1175=>'L', 1176=>'L', 1177=>'L', 1178=>'L', 1179=>'L', 1180=>'L', 1181=>'L', 1182=>'L', 1183=>'L', 1184=>'L', 1185=>'L', 1186=>'L', 1187=>'L', 1188=>'L', 1189=>'L', 1190=>'L', 1191=>'L', 1192=>'L', 1193=>'L', 1194=>'L', 1195=>'L', 1196=>'L', 1197=>'L', 1198=>'L', 1199=>'L', 1200=>'L', 1201=>'L', 1202=>'L', 1203=>'L', 1204=>'L', 1205=>'L', 1206=>'L', 1207=>'L', 1208=>'L', 1209=>'L', 1210=>'L', 1211=>'L', 1212=>'L', 1213=>'L', 1214=>'L', 1215=>'L', 1216=>'L', 1217=>'L', 1218=>'L', 1219=>'L', 1220=>'L', 1221=>'L', 1222=>'L', 1223=>'L', 1224=>'L', 1225=>'L', 1226=>'L', 1227=>'L', 1228=>'L', 1229=>'L', 1230=>'L', 1231=>'L', 1232=>'L', 1233=>'L', 1234=>'L', 1235=>'L', 1236=>'L', 1237=>'L', 1238=>'L', 1239=>'L', 1240=>'L', 1241=>'L', 1242=>'L', 1243=>'L', 1244=>'L', 1245=>'L', 1246=>'L', 1247=>'L', 1248=>'L', 1249=>'L', 1250=>'L', 1251=>'L', 1252=>'L', 1253=>'L', 1254=>'L', 1255=>'L', 1256=>'L', 1257=>'L', 1258=>'L', 1259=>'L', 1260=>'L', 1261=>'L', 1262=>'L', 1263=>'L', 1264=>'L', 1265=>'L', 1266=>'L', 1267=>'L', 1268=>'L', 1269=>'L', 1270=>'L', 1271=>'L', 1272=>'L', 1273=>'L', 1274=>'L', 1275=>'L', 1276=>'L', 1277=>'L', 1278=>'L', 1279=>'L', 1280=>'L', 1281=>'L', 1282=>'L', 1283=>'L', 1284=>'L', 1285=>'L', 1286=>'L', 1287=>'L', 1288=>'L', 1289=>'L', 1290=>'L', 1291=>'L', 1292=>'L', 1293=>'L', 1294=>'L', 1295=>'L', 1296=>'L', 1297=>'L', 1298=>'L', 1299=>'L', 1329=>'L', 1330=>'L', 1331=>'L', 1332=>'L', 1333=>'L', 1334=>'L', 1335=>'L', 1336=>'L', 1337=>'L', 1338=>'L', 1339=>'L', 1340=>'L', 1341=>'L', 1342=>'L', 1343=>'L', 1344=>'L', 1345=>'L', 1346=>'L', 1347=>'L', 1348=>'L', 1349=>'L', 1350=>'L', 1351=>'L', 1352=>'L', 1353=>'L', 1354=>'L', 1355=>'L', 1356=>'L', 1357=>'L', 1358=>'L', 1359=>'L', 1360=>'L', 1361=>'L', 1362=>'L', 1363=>'L', 1364=>'L', 1365=>'L', 1366=>'L', 1369=>'L', 1370=>'L', 1371=>'L', 1372=>'L', 1373=>'L', 1374=>'L', 1375=>'L', 1377=>'L', 1378=>'L', 1379=>'L', 1380=>'L', 1381=>'L', 1382=>'L', 1383=>'L', 1384=>'L', 1385=>'L', 1386=>'L', 1387=>'L', 1388=>'L', 1389=>'L', 1390=>'L', 1391=>'L', 1392=>'L', 1393=>'L', 1394=>'L', 1395=>'L', 1396=>'L', 1397=>'L', 1398=>'L', 1399=>'L', 1400=>'L', 1401=>'L', 1402=>'L', 1403=>'L', 1404=>'L', 1405=>'L', 1406=>'L', 1407=>'L', 1408=>'L', 1409=>'L', 1410=>'L', 1411=>'L', 1412=>'L', 1413=>'L', 1414=>'L', 1415=>'L', 1417=>'L', 1418=>'ON', 1425=>'NSM', 1426=>'NSM', 1427=>'NSM', 1428=>'NSM', 1429=>'NSM', 1430=>'NSM', 1431=>'NSM', 1432=>'NSM', 1433=>'NSM', 1434=>'NSM', 1435=>'NSM', 1436=>'NSM', 1437=>'NSM', 1438=>'NSM', 1439=>'NSM', 1440=>'NSM', 1441=>'NSM', 1442=>'NSM', 1443=>'NSM', 1444=>'NSM', 1445=>'NSM', 1446=>'NSM', 1447=>'NSM', 1448=>'NSM', 1449=>'NSM', 1450=>'NSM', 1451=>'NSM', 1452=>'NSM', 1453=>'NSM', 1454=>'NSM', 1455=>'NSM', 1456=>'NSM', 1457=>'NSM', 1458=>'NSM', 1459=>'NSM', 1460=>'NSM', 1461=>'NSM', 1462=>'NSM', 1463=>'NSM', 1464=>'NSM', 1465=>'NSM', 1466=>'NSM', 1467=>'NSM', 1468=>'NSM', 1469=>'NSM', 1470=>'R', 1471=>'NSM', 1472=>'R', 1473=>'NSM', 1474=>'NSM', 1475=>'R', 1476=>'NSM', 1477=>'NSM', 1478=>'R', 1479=>'NSM', 1488=>'R', 1489=>'R', 1490=>'R', 1491=>'R', 1492=>'R', 1493=>'R', 1494=>'R', 1495=>'R', 1496=>'R', 1497=>'R', 1498=>'R', 1499=>'R', 1500=>'R', 1501=>'R', 1502=>'R', 1503=>'R', 1504=>'R', 1505=>'R', 1506=>'R', 1507=>'R', 1508=>'R', 1509=>'R', 1510=>'R', 1511=>'R', 1512=>'R', 1513=>'R', 1514=>'R', 1520=>'R', 1521=>'R', 1522=>'R', 1523=>'R', 1524=>'R', 1536=>'AL', 1537=>'AL', 1538=>'AL', 1539=>'AL', 1547=>'AL', 1548=>'CS', 1549=>'AL', 1550=>'ON', 1551=>'ON', 1552=>'NSM', 1553=>'NSM', 1554=>'NSM', 1555=>'NSM', 1556=>'NSM', 1557=>'NSM', 1563=>'AL', 1566=>'AL', 1567=>'AL', 1569=>'AL', 1570=>'AL', 1571=>'AL', 1572=>'AL', 1573=>'AL', 1574=>'AL', 1575=>'AL', 1576=>'AL', 1577=>'AL', 1578=>'AL', 1579=>'AL', 1580=>'AL', 1581=>'AL', 1582=>'AL', 1583=>'AL', 1584=>'AL', 1585=>'AL', 1586=>'AL', 1587=>'AL', 1588=>'AL', 1589=>'AL', 1590=>'AL', 1591=>'AL', 1592=>'AL', 1593=>'AL', 1594=>'AL', 1600=>'AL', 1601=>'AL', 1602=>'AL', 1603=>'AL', 1604=>'AL', 1605=>'AL', 1606=>'AL', 1607=>'AL', 1608=>'AL', 1609=>'AL', 1610=>'AL', 1611=>'NSM', 1612=>'NSM', 1613=>'NSM', 1614=>'NSM', 1615=>'NSM', 1616=>'NSM', 1617=>'NSM', 1618=>'NSM', 1619=>'NSM', 1620=>'NSM', 1621=>'NSM', 1622=>'NSM', 1623=>'NSM', 1624=>'NSM', 1625=>'NSM', 1626=>'NSM', 1627=>'NSM', 1628=>'NSM', 1629=>'NSM', 1630=>'NSM', 1632=>'AN', 1633=>'AN', 1634=>'AN', 1635=>'AN', 1636=>'AN', 1637=>'AN', 1638=>'AN', 1639=>'AN', 1640=>'AN', 1641=>'AN', 1642=>'ET', 1643=>'AN', 1644=>'AN', 1645=>'AL', 1646=>'AL', 1647=>'AL', 1648=>'NSM', 1649=>'AL', 1650=>'AL', 1651=>'AL', 1652=>'AL', 1653=>'AL', 1654=>'AL', 1655=>'AL', 1656=>'AL', 1657=>'AL', 1658=>'AL', 1659=>'AL', 1660=>'AL', 1661=>'AL', 1662=>'AL', 1663=>'AL', 1664=>'AL', 1665=>'AL', 1666=>'AL', 1667=>'AL', 1668=>'AL', 1669=>'AL', 1670=>'AL', 1671=>'AL', 1672=>'AL', 1673=>'AL', 1674=>'AL', 1675=>'AL', 1676=>'AL', 1677=>'AL', 1678=>'AL', 1679=>'AL', 1680=>'AL', 1681=>'AL', 1682=>'AL', 1683=>'AL', 1684=>'AL', 1685=>'AL', 1686=>'AL', 1687=>'AL', 1688=>'AL', 1689=>'AL', 1690=>'AL', 1691=>'AL', 1692=>'AL', 1693=>'AL', 1694=>'AL', 1695=>'AL', 1696=>'AL', 1697=>'AL', 1698=>'AL', 1699=>'AL', 1700=>'AL', 1701=>'AL', 1702=>'AL', 1703=>'AL', 1704=>'AL', 1705=>'AL', 1706=>'AL', 1707=>'AL', 1708=>'AL', 1709=>'AL', 1710=>'AL', 1711=>'AL', 1712=>'AL', 1713=>'AL', 1714=>'AL', 1715=>'AL', 1716=>'AL', 1717=>'AL', 1718=>'AL', 1719=>'AL', 1720=>'AL', 1721=>'AL', 1722=>'AL', 1723=>'AL', 1724=>'AL', 1725=>'AL', 1726=>'AL', 1727=>'AL', 1728=>'AL', 1729=>'AL', 1730=>'AL', 1731=>'AL', 1732=>'AL', 1733=>'AL', 1734=>'AL', 1735=>'AL', 1736=>'AL', 1737=>'AL', 1738=>'AL', 1739=>'AL', 1740=>'AL', 1741=>'AL', 1742=>'AL', 1743=>'AL', 1744=>'AL', 1745=>'AL', 1746=>'AL', 1747=>'AL', 1748=>'AL', 1749=>'AL', 1750=>'NSM', 1751=>'NSM', 1752=>'NSM', 1753=>'NSM', 1754=>'NSM', 1755=>'NSM', 1756=>'NSM', 1757=>'AL', 1758=>'NSM', 1759=>'NSM', 1760=>'NSM', 1761=>'NSM', 1762=>'NSM', 1763=>'NSM', 1764=>'NSM', 1765=>'AL', 1766=>'AL', 1767=>'NSM', 1768=>'NSM', 1769=>'ON', 1770=>'NSM', 1771=>'NSM', 1772=>'NSM', 1773=>'NSM', 1774=>'AL', 1775=>'AL', 1776=>'EN', 1777=>'EN', 1778=>'EN', 1779=>'EN', 1780=>'EN', 1781=>'EN', 1782=>'EN', 1783=>'EN', 1784=>'EN', 1785=>'EN', 1786=>'AL', 1787=>'AL', 1788=>'AL', 1789=>'AL', 1790=>'AL', 1791=>'AL', 1792=>'AL', 1793=>'AL', 1794=>'AL', 1795=>'AL', 1796=>'AL', 1797=>'AL', 1798=>'AL', 1799=>'AL', 1800=>'AL', 1801=>'AL', 1802=>'AL', 1803=>'AL', 1804=>'AL', 1805=>'AL', 1807=>'BN', 1808=>'AL', 1809=>'NSM', 1810=>'AL', 1811=>'AL', 1812=>'AL', 1813=>'AL', 1814=>'AL', 1815=>'AL', 1816=>'AL', 1817=>'AL', 1818=>'AL', 1819=>'AL', 1820=>'AL', 1821=>'AL', 1822=>'AL', 1823=>'AL', 1824=>'AL', 1825=>'AL', 1826=>'AL', 1827=>'AL', 1828=>'AL', 1829=>'AL', 1830=>'AL', 1831=>'AL', 1832=>'AL', 1833=>'AL', 1834=>'AL', 1835=>'AL', 1836=>'AL', 1837=>'AL', 1838=>'AL', 1839=>'AL', 1840=>'NSM', 1841=>'NSM', 1842=>'NSM', 1843=>'NSM', 1844=>'NSM', 1845=>'NSM', 1846=>'NSM', 1847=>'NSM', 1848=>'NSM', 1849=>'NSM', 1850=>'NSM', 1851=>'NSM', 1852=>'NSM', 1853=>'NSM', 1854=>'NSM', 1855=>'NSM', 1856=>'NSM', 1857=>'NSM', 1858=>'NSM', 1859=>'NSM', 1860=>'NSM', 1861=>'NSM', 1862=>'NSM', 1863=>'NSM', 1864=>'NSM', 1865=>'NSM', 1866=>'NSM', 1869=>'AL', 1870=>'AL', 1871=>'AL', 1872=>'AL', 1873=>'AL', 1874=>'AL', 1875=>'AL', 1876=>'AL', 1877=>'AL', 1878=>'AL', 1879=>'AL', 1880=>'AL', 1881=>'AL', 1882=>'AL', 1883=>'AL', 1884=>'AL', 1885=>'AL', 1886=>'AL', 1887=>'AL', 1888=>'AL', 1889=>'AL', 1890=>'AL', 1891=>'AL', 1892=>'AL', 1893=>'AL', 1894=>'AL', 1895=>'AL', 1896=>'AL', 1897=>'AL', 1898=>'AL', 1899=>'AL', 1900=>'AL', 1901=>'AL', 1920=>'AL', 1921=>'AL', 1922=>'AL', 1923=>'AL', 1924=>'AL', 1925=>'AL', 1926=>'AL', 1927=>'AL', 1928=>'AL', 1929=>'AL', 1930=>'AL', 1931=>'AL', 1932=>'AL', 1933=>'AL', 1934=>'AL', 1935=>'AL', 1936=>'AL', 1937=>'AL', 1938=>'AL', 1939=>'AL', 1940=>'AL', 1941=>'AL', 1942=>'AL', 1943=>'AL', 1944=>'AL', 1945=>'AL', 1946=>'AL', 1947=>'AL', 1948=>'AL', 1949=>'AL', 1950=>'AL', 1951=>'AL', 1952=>'AL', 1953=>'AL', 1954=>'AL', 1955=>'AL', 1956=>'AL', 1957=>'AL', 1958=>'NSM', 1959=>'NSM', 1960=>'NSM', 1961=>'NSM', 1962=>'NSM', 1963=>'NSM', 1964=>'NSM', 1965=>'NSM', 1966=>'NSM', 1967=>'NSM', 1968=>'NSM', 1969=>'AL', 1984=>'R', 1985=>'R', 1986=>'R', 1987=>'R', 1988=>'R', 1989=>'R', 1990=>'R', 1991=>'R', 1992=>'R', 1993=>'R', 1994=>'R', 1995=>'R', 1996=>'R', 1997=>'R', 1998=>'R', 1999=>'R', 2000=>'R', 2001=>'R', 2002=>'R', 2003=>'R', 2004=>'R', 2005=>'R', 2006=>'R', 2007=>'R', 2008=>'R', 2009=>'R', 2010=>'R', 2011=>'R', 2012=>'R', 2013=>'R', 2014=>'R', 2015=>'R', 2016=>'R', 2017=>'R', 2018=>'R', 2019=>'R', 2020=>'R', 2021=>'R', 2022=>'R', 2023=>'R', 2024=>'R', 2025=>'R', 2026=>'R', 2027=>'NSM', 2028=>'NSM', 2029=>'NSM', 2030=>'NSM', 2031=>'NSM', 2032=>'NSM', 2033=>'NSM', 2034=>'NSM', 2035=>'NSM', 2036=>'R', 2037=>'R', 2038=>'ON', 2039=>'ON', 2040=>'ON', 2041=>'ON', 2042=>'R', 2305=>'NSM', 2306=>'NSM', 2307=>'L', 2308=>'L', 2309=>'L', 2310=>'L', 2311=>'L', 2312=>'L', 2313=>'L', 2314=>'L', 2315=>'L', 2316=>'L', 2317=>'L', 2318=>'L', 2319=>'L', 2320=>'L', 2321=>'L', 2322=>'L', 2323=>'L', 2324=>'L', 2325=>'L', 2326=>'L', 2327=>'L', 2328=>'L', 2329=>'L', 2330=>'L', 2331=>'L', 2332=>'L', 2333=>'L', 2334=>'L', 2335=>'L', 2336=>'L', 2337=>'L', 2338=>'L', 2339=>'L', 2340=>'L', 2341=>'L', 2342=>'L', 2343=>'L', 2344=>'L', 2345=>'L', 2346=>'L', 2347=>'L', 2348=>'L', 2349=>'L', 2350=>'L', 2351=>'L', 2352=>'L', 2353=>'L', 2354=>'L', 2355=>'L', 2356=>'L', 2357=>'L', 2358=>'L', 2359=>'L', 2360=>'L', 2361=>'L', 2364=>'NSM', 2365=>'L', 2366=>'L', 2367=>'L', 2368=>'L', 2369=>'NSM', 2370=>'NSM', 2371=>'NSM', 2372=>'NSM', 2373=>'NSM', 2374=>'NSM', 2375=>'NSM', 2376=>'NSM', 2377=>'L', 2378=>'L', 2379=>'L', 2380=>'L', 2381=>'NSM', 2384=>'L', 2385=>'NSM', 2386=>'NSM', 2387=>'NSM', 2388=>'NSM', 2392=>'L', 2393=>'L', 2394=>'L', 2395=>'L', 2396=>'L', 2397=>'L', 2398=>'L', 2399=>'L', 2400=>'L', 2401=>'L', 2402=>'NSM', 2403=>'NSM', 2404=>'L', 2405=>'L', 2406=>'L', 2407=>'L', 2408=>'L', 2409=>'L', 2410=>'L', 2411=>'L', 2412=>'L', 2413=>'L', 2414=>'L', 2415=>'L', 2416=>'L', 2427=>'L', 2428=>'L', 2429=>'L', 2430=>'L', 2431=>'L', 2433=>'NSM', 2434=>'L', 2435=>'L', 2437=>'L', 2438=>'L', 2439=>'L', 2440=>'L', 2441=>'L', 2442=>'L', 2443=>'L', 2444=>'L', 2447=>'L', 2448=>'L', 2451=>'L', 2452=>'L', 2453=>'L', 2454=>'L', 2455=>'L', 2456=>'L', 2457=>'L', 2458=>'L', 2459=>'L', 2460=>'L', 2461=>'L', 2462=>'L', 2463=>'L', 2464=>'L', 2465=>'L', 2466=>'L', 2467=>'L', 2468=>'L', 2469=>'L', 2470=>'L', 2471=>'L', 2472=>'L', 2474=>'L', 2475=>'L', 2476=>'L', 2477=>'L', 2478=>'L', 2479=>'L', 2480=>'L', 2482=>'L', 2486=>'L', 2487=>'L', 2488=>'L', 2489=>'L', 2492=>'NSM', 2493=>'L', 2494=>'L', 2495=>'L', 2496=>'L', 2497=>'NSM', 2498=>'NSM', 2499=>'NSM', 2500=>'NSM', 2503=>'L', 2504=>'L', 2507=>'L', 2508=>'L', 2509=>'NSM', 2510=>'L', 2519=>'L', 2524=>'L', 2525=>'L', 2527=>'L', 2528=>'L', 2529=>'L', 2530=>'NSM', 2531=>'NSM', 2534=>'L', 2535=>'L', 2536=>'L', 2537=>'L', 2538=>'L', 2539=>'L', 2540=>'L', 2541=>'L', 2542=>'L', 2543=>'L', 2544=>'L', 2545=>'L', 2546=>'ET', 2547=>'ET', 2548=>'L', 2549=>'L', 2550=>'L', 2551=>'L', 2552=>'L', 2553=>'L', 2554=>'L', 2561=>'NSM', 2562=>'NSM', 2563=>'L', 2565=>'L', 2566=>'L', 2567=>'L', 2568=>'L', 2569=>'L', 2570=>'L', 2575=>'L', 2576=>'L', 2579=>'L', 2580=>'L', 2581=>'L', 2582=>'L', 2583=>'L', 2584=>'L', 2585=>'L', 2586=>'L', 2587=>'L', 2588=>'L', 2589=>'L', 2590=>'L', 2591=>'L', 2592=>'L', 2593=>'L', 2594=>'L', 2595=>'L', 2596=>'L', 2597=>'L', 2598=>'L', 2599=>'L', 2600=>'L', 2602=>'L', 2603=>'L', 2604=>'L', 2605=>'L', 2606=>'L', 2607=>'L', 2608=>'L', 2610=>'L', 2611=>'L', 2613=>'L', 2614=>'L', 2616=>'L', 2617=>'L', 2620=>'NSM', 2622=>'L', 2623=>'L', 2624=>'L', 2625=>'NSM', 2626=>'NSM', 2631=>'NSM', 2632=>'NSM', 2635=>'NSM', 2636=>'NSM', 2637=>'NSM', 2649=>'L', 2650=>'L', 2651=>'L', 2652=>'L', 2654=>'L', 2662=>'L', 2663=>'L', 2664=>'L', 2665=>'L', 2666=>'L', 2667=>'L', 2668=>'L', 2669=>'L', 2670=>'L', 2671=>'L', 2672=>'NSM', 2673=>'NSM', 2674=>'L', 2675=>'L', 2676=>'L', 2689=>'NSM', 2690=>'NSM', 2691=>'L', 2693=>'L', 2694=>'L', 2695=>'L', 2696=>'L', 2697=>'L', 2698=>'L', 2699=>'L', 2700=>'L', 2701=>'L', 2703=>'L', 2704=>'L', 2705=>'L', 2707=>'L', 2708=>'L', 2709=>'L', 2710=>'L', 2711=>'L', 2712=>'L', 2713=>'L', 2714=>'L', 2715=>'L', 2716=>'L', 2717=>'L', 2718=>'L', 2719=>'L', 2720=>'L', 2721=>'L', 2722=>'L', 2723=>'L', 2724=>'L', 2725=>'L', 2726=>'L', 2727=>'L', 2728=>'L', 2730=>'L', 2731=>'L', 2732=>'L', 2733=>'L', 2734=>'L', 2735=>'L', 2736=>'L', 2738=>'L', 2739=>'L', 2741=>'L', 2742=>'L', 2743=>'L', 2744=>'L', 2745=>'L', 2748=>'NSM', 2749=>'L', 2750=>'L', 2751=>'L', 2752=>'L', 2753=>'NSM', 2754=>'NSM', 2755=>'NSM', 2756=>'NSM', 2757=>'NSM', 2759=>'NSM', 2760=>'NSM', 2761=>'L', 2763=>'L', 2764=>'L', 2765=>'NSM', 2768=>'L', 2784=>'L', 2785=>'L', 2786=>'NSM', 2787=>'NSM', 2790=>'L', 2791=>'L', 2792=>'L', 2793=>'L', 2794=>'L', 2795=>'L', 2796=>'L', 2797=>'L', 2798=>'L', 2799=>'L', 2801=>'ET', 2817=>'NSM', 2818=>'L', 2819=>'L', 2821=>'L', 2822=>'L', 2823=>'L', 2824=>'L', 2825=>'L', 2826=>'L', 2827=>'L', 2828=>'L', 2831=>'L', 2832=>'L', 2835=>'L', 2836=>'L', 2837=>'L', 2838=>'L', 2839=>'L', 2840=>'L', 2841=>'L', 2842=>'L', 2843=>'L', 2844=>'L', 2845=>'L', 2846=>'L', 2847=>'L', 2848=>'L', 2849=>'L', 2850=>'L', 2851=>'L', 2852=>'L', 2853=>'L', 2854=>'L', 2855=>'L', 2856=>'L', 2858=>'L', 2859=>'L', 2860=>'L', 2861=>'L', 2862=>'L', 2863=>'L', 2864=>'L', 2866=>'L', 2867=>'L', 2869=>'L', 2870=>'L', 2871=>'L', 2872=>'L', 2873=>'L', 2876=>'NSM', 2877=>'L', 2878=>'L', 2879=>'NSM', 2880=>'L', 2881=>'NSM', 2882=>'NSM', 2883=>'NSM', 2887=>'L', 2888=>'L', 2891=>'L', 2892=>'L', 2893=>'NSM', 2902=>'NSM', 2903=>'L', 2908=>'L', 2909=>'L', 2911=>'L', 2912=>'L', 2913=>'L', 2918=>'L', 2919=>'L', 2920=>'L', 2921=>'L', 2922=>'L', 2923=>'L', 2924=>'L', 2925=>'L', 2926=>'L', 2927=>'L', 2928=>'L', 2929=>'L', 2946=>'NSM', 2947=>'L', 2949=>'L', 2950=>'L', 2951=>'L', 2952=>'L', 2953=>'L', 2954=>'L', 2958=>'L', 2959=>'L', 2960=>'L', 2962=>'L', 2963=>'L', 2964=>'L', 2965=>'L', 2969=>'L', 2970=>'L', 2972=>'L', 2974=>'L', 2975=>'L', 2979=>'L', 2980=>'L', 2984=>'L', 2985=>'L', 2986=>'L', 2990=>'L', 2991=>'L', 2992=>'L', 2993=>'L', 2994=>'L', 2995=>'L', 2996=>'L', 2997=>'L', 2998=>'L', 2999=>'L', 3000=>'L', 3001=>'L', 3006=>'L', 3007=>'L', 3008=>'NSM', 3009=>'L', 3010=>'L', 3014=>'L', 3015=>'L', 3016=>'L', 3018=>'L', 3019=>'L', 3020=>'L', 3021=>'NSM', 3031=>'L', 3046=>'L', 3047=>'L', 3048=>'L', 3049=>'L', 3050=>'L', 3051=>'L', 3052=>'L', 3053=>'L', 3054=>'L', 3055=>'L', 3056=>'L', 3057=>'L', 3058=>'L', 3059=>'ON', 3060=>'ON', 3061=>'ON', 3062=>'ON', 3063=>'ON', 3064=>'ON', 3065=>'ET', 3066=>'ON', 3073=>'L', 3074=>'L', 3075=>'L', 3077=>'L', 3078=>'L', 3079=>'L', 3080=>'L', 3081=>'L', 3082=>'L', 3083=>'L', 3084=>'L', 3086=>'L', 3087=>'L', 3088=>'L', 3090=>'L', 3091=>'L', 3092=>'L', 3093=>'L', 3094=>'L', 3095=>'L', 3096=>'L', 3097=>'L', 3098=>'L', 3099=>'L', 3100=>'L', 3101=>'L', 3102=>'L', 3103=>'L', 3104=>'L', 3105=>'L', 3106=>'L', 3107=>'L', 3108=>'L', 3109=>'L', 3110=>'L', 3111=>'L', 3112=>'L', 3114=>'L', 3115=>'L', 3116=>'L', 3117=>'L', 3118=>'L', 3119=>'L', 3120=>'L', 3121=>'L', 3122=>'L', 3123=>'L', 3125=>'L', 3126=>'L', 3127=>'L', 3128=>'L', 3129=>'L', 3134=>'NSM', 3135=>'NSM', 3136=>'NSM', 3137=>'L', 3138=>'L', 3139=>'L', 3140=>'L', 3142=>'NSM', 3143=>'NSM', 3144=>'NSM', 3146=>'NSM', 3147=>'NSM', 3148=>'NSM', 3149=>'NSM', 3157=>'NSM', 3158=>'NSM', 3168=>'L', 3169=>'L', 3174=>'L', 3175=>'L', 3176=>'L', 3177=>'L', 3178=>'L', 3179=>'L', 3180=>'L', 3181=>'L', 3182=>'L', 3183=>'L', 3202=>'L', 3203=>'L', 3205=>'L', 3206=>'L', 3207=>'L', 3208=>'L', 3209=>'L', 3210=>'L', 3211=>'L', 3212=>'L', 3214=>'L', 3215=>'L', 3216=>'L', 3218=>'L', 3219=>'L', 3220=>'L', 3221=>'L', 3222=>'L', 3223=>'L', 3224=>'L', 3225=>'L', 3226=>'L', 3227=>'L', 3228=>'L', 3229=>'L', 3230=>'L', 3231=>'L', 3232=>'L', 3233=>'L', 3234=>'L', 3235=>'L', 3236=>'L', 3237=>'L', 3238=>'L', 3239=>'L', 3240=>'L', 3242=>'L', 3243=>'L', 3244=>'L', 3245=>'L', 3246=>'L', 3247=>'L', 3248=>'L', 3249=>'L', 3250=>'L', 3251=>'L', 3253=>'L', 3254=>'L', 3255=>'L', 3256=>'L', 3257=>'L', 3260=>'NSM', 3261=>'L', 3262=>'L', 3263=>'L', 3264=>'L', 3265=>'L', 3266=>'L', 3267=>'L', 3268=>'L', 3270=>'L', 3271=>'L', 3272=>'L', 3274=>'L', 3275=>'L', 3276=>'NSM', 3277=>'NSM', 3285=>'L', 3286=>'L', 3294=>'L', 3296=>'L', 3297=>'L', 3298=>'NSM', 3299=>'NSM', 3302=>'L', 3303=>'L', 3304=>'L', 3305=>'L', 3306=>'L', 3307=>'L', 3308=>'L', 3309=>'L', 3310=>'L', 3311=>'L', 3313=>'ON', 3314=>'ON', 3330=>'L', 3331=>'L', 3333=>'L', 3334=>'L', 3335=>'L', 3336=>'L', 3337=>'L', 3338=>'L', 3339=>'L', 3340=>'L', 3342=>'L', 3343=>'L', 3344=>'L', 3346=>'L', 3347=>'L', 3348=>'L', 3349=>'L', 3350=>'L', 3351=>'L', 3352=>'L', 3353=>'L', 3354=>'L', 3355=>'L', 3356=>'L', 3357=>'L', 3358=>'L', 3359=>'L', 3360=>'L', 3361=>'L', 3362=>'L', 3363=>'L', 3364=>'L', 3365=>'L', 3366=>'L', 3367=>'L', 3368=>'L', 3370=>'L', 3371=>'L', 3372=>'L', 3373=>'L', 3374=>'L', 3375=>'L', 3376=>'L', 3377=>'L', 3378=>'L', 3379=>'L', 3380=>'L', 3381=>'L', 3382=>'L', 3383=>'L', 3384=>'L', 3385=>'L', 3390=>'L', 3391=>'L', 3392=>'L', 3393=>'NSM', 3394=>'NSM', 3395=>'NSM', 3398=>'L', 3399=>'L', 3400=>'L', 3402=>'L', 3403=>'L', 3404=>'L', 3405=>'NSM', 3415=>'L', 3424=>'L', 3425=>'L', 3430=>'L', 3431=>'L', 3432=>'L', 3433=>'L', 3434=>'L', 3435=>'L', 3436=>'L', 3437=>'L', 3438=>'L', 3439=>'L', 3458=>'L', 3459=>'L', 3461=>'L', 3462=>'L', 3463=>'L', 3464=>'L', 3465=>'L', 3466=>'L', 3467=>'L', 3468=>'L', 3469=>'L', 3470=>'L', 3471=>'L', 3472=>'L', 3473=>'L', 3474=>'L', 3475=>'L', 3476=>'L', 3477=>'L', 3478=>'L', 3482=>'L', 3483=>'L', 3484=>'L', 3485=>'L', 3486=>'L', 3487=>'L', 3488=>'L', 3489=>'L', 3490=>'L', 3491=>'L', 3492=>'L', 3493=>'L', 3494=>'L', 3495=>'L', 3496=>'L', 3497=>'L', 3498=>'L', 3499=>'L', 3500=>'L', 3501=>'L', 3502=>'L', 3503=>'L', 3504=>'L', 3505=>'L', 3507=>'L', 3508=>'L', 3509=>'L', 3510=>'L', 3511=>'L', 3512=>'L', 3513=>'L', 3514=>'L', 3515=>'L', 3517=>'L', 3520=>'L', 3521=>'L', 3522=>'L', 3523=>'L', 3524=>'L', 3525=>'L', 3526=>'L', 3530=>'NSM', 3535=>'L', 3536=>'L', 3537=>'L', 3538=>'NSM', 3539=>'NSM', 3540=>'NSM', 3542=>'NSM', 3544=>'L', 3545=>'L', 3546=>'L', 3547=>'L', 3548=>'L', 3549=>'L', 3550=>'L', 3551=>'L', 3570=>'L', 3571=>'L', 3572=>'L', 3585=>'L', 3586=>'L', 3587=>'L', 3588=>'L', 3589=>'L', 3590=>'L', 3591=>'L', 3592=>'L', 3593=>'L', 3594=>'L', 3595=>'L', 3596=>'L', 3597=>'L', 3598=>'L', 3599=>'L', 3600=>'L', 3601=>'L', 3602=>'L', 3603=>'L', 3604=>'L', 3605=>'L', 3606=>'L', 3607=>'L', 3608=>'L', 3609=>'L', 3610=>'L', 3611=>'L', 3612=>'L', 3613=>'L', 3614=>'L', 3615=>'L', 3616=>'L', 3617=>'L', 3618=>'L', 3619=>'L', 3620=>'L', 3621=>'L', 3622=>'L', 3623=>'L', 3624=>'L', 3625=>'L', 3626=>'L', 3627=>'L', 3628=>'L', 3629=>'L', 3630=>'L', 3631=>'L', 3632=>'L', 3633=>'NSM', 3634=>'L', 3635=>'L', 3636=>'NSM', 3637=>'NSM', 3638=>'NSM', 3639=>'NSM', 3640=>'NSM', 3641=>'NSM', 3642=>'NSM', 3647=>'ET', 3648=>'L', 3649=>'L', 3650=>'L', 3651=>'L', 3652=>'L', 3653=>'L', 3654=>'L', 3655=>'NSM', 3656=>'NSM', 3657=>'NSM', 3658=>'NSM', 3659=>'NSM', 3660=>'NSM', 3661=>'NSM', 3662=>'NSM', 3663=>'L', 3664=>'L', 3665=>'L', 3666=>'L', 3667=>'L', 3668=>'L', 3669=>'L', 3670=>'L', 3671=>'L', 3672=>'L', 3673=>'L', 3674=>'L', 3675=>'L', 3713=>'L', 3714=>'L', 3716=>'L', 3719=>'L', 3720=>'L', 3722=>'L', 3725=>'L', 3732=>'L', 3733=>'L', 3734=>'L', 3735=>'L', 3737=>'L', 3738=>'L', 3739=>'L', 3740=>'L', 3741=>'L', 3742=>'L', 3743=>'L', 3745=>'L', 3746=>'L', 3747=>'L', 3749=>'L', 3751=>'L', 3754=>'L', 3755=>'L', 3757=>'L', 3758=>'L', 3759=>'L', 3760=>'L', 3761=>'NSM', 3762=>'L', 3763=>'L', 3764=>'NSM', 3765=>'NSM', 3766=>'NSM', 3767=>'NSM', 3768=>'NSM', 3769=>'NSM', 3771=>'NSM', 3772=>'NSM', 3773=>'L', 3776=>'L', 3777=>'L', 3778=>'L', 3779=>'L', 3780=>'L', 3782=>'L', 3784=>'NSM', 3785=>'NSM', 3786=>'NSM', 3787=>'NSM', 3788=>'NSM', 3789=>'NSM', 3792=>'L', 3793=>'L', 3794=>'L', 3795=>'L', 3796=>'L', 3797=>'L', 3798=>'L', 3799=>'L', 3800=>'L', 3801=>'L', 3804=>'L', 3805=>'L', 3840=>'L', 3841=>'L', 3842=>'L', 3843=>'L', 3844=>'L', 3845=>'L', 3846=>'L', 3847=>'L', 3848=>'L', 3849=>'L', 3850=>'L', 3851=>'L', 3852=>'L', 3853=>'L', 3854=>'L', 3855=>'L', 3856=>'L', 3857=>'L', 3858=>'L', 3859=>'L', 3860=>'L', 3861=>'L', 3862=>'L', 3863=>'L', 3864=>'NSM', 3865=>'NSM', 3866=>'L', 3867=>'L', 3868=>'L', 3869=>'L', 3870=>'L', 3871=>'L', 3872=>'L', 3873=>'L', 3874=>'L', 3875=>'L', 3876=>'L', 3877=>'L', 3878=>'L', 3879=>'L', 3880=>'L', 3881=>'L', 3882=>'L', 3883=>'L', 3884=>'L', 3885=>'L', 3886=>'L', 3887=>'L', 3888=>'L', 3889=>'L', 3890=>'L', 3891=>'L', 3892=>'L', 3893=>'NSM', 3894=>'L', 3895=>'NSM', 3896=>'L', 3897=>'NSM', 3898=>'ON', 3899=>'ON', 3900=>'ON', 3901=>'ON', 3902=>'L', 3903=>'L', 3904=>'L', 3905=>'L', 3906=>'L', 3907=>'L', 3908=>'L', 3909=>'L', 3910=>'L', 3911=>'L', 3913=>'L', 3914=>'L', 3915=>'L', 3916=>'L', 3917=>'L', 3918=>'L', 3919=>'L', 3920=>'L', 3921=>'L', 3922=>'L', 3923=>'L', 3924=>'L', 3925=>'L', 3926=>'L', 3927=>'L', 3928=>'L', 3929=>'L', 3930=>'L', 3931=>'L', 3932=>'L', 3933=>'L', 3934=>'L', 3935=>'L', 3936=>'L', 3937=>'L', 3938=>'L', 3939=>'L', 3940=>'L', 3941=>'L', 3942=>'L', 3943=>'L', 3944=>'L', 3945=>'L', 3946=>'L', 3953=>'NSM', 3954=>'NSM', 3955=>'NSM', 3956=>'NSM', 3957=>'NSM', 3958=>'NSM', 3959=>'NSM', 3960=>'NSM', 3961=>'NSM', 3962=>'NSM', 3963=>'NSM', 3964=>'NSM', 3965=>'NSM', 3966=>'NSM', 3967=>'L', 3968=>'NSM', 3969=>'NSM', 3970=>'NSM', 3971=>'NSM', 3972=>'NSM', 3973=>'L', 3974=>'NSM', 3975=>'NSM', 3976=>'L', 3977=>'L', 3978=>'L', 3979=>'L', 3984=>'NSM', 3985=>'NSM', 3986=>'NSM', 3987=>'NSM', 3988=>'NSM', 3989=>'NSM', 3990=>'NSM', 3991=>'NSM', 3993=>'NSM', 3994=>'NSM', 3995=>'NSM', 3996=>'NSM', 3997=>'NSM', 3998=>'NSM', 3999=>'NSM', 4000=>'NSM', 4001=>'NSM', 4002=>'NSM', 4003=>'NSM', 4004=>'NSM', 4005=>'NSM', 4006=>'NSM', 4007=>'NSM', 4008=>'NSM', 4009=>'NSM', 4010=>'NSM', 4011=>'NSM', 4012=>'NSM', 4013=>'NSM', 4014=>'NSM', 4015=>'NSM', 4016=>'NSM', 4017=>'NSM', 4018=>'NSM', 4019=>'NSM', 4020=>'NSM', 4021=>'NSM', 4022=>'NSM', 4023=>'NSM', 4024=>'NSM', 4025=>'NSM', 4026=>'NSM', 4027=>'NSM', 4028=>'NSM', 4030=>'L', 4031=>'L', 4032=>'L', 4033=>'L', 4034=>'L', 4035=>'L', 4036=>'L', 4037=>'L', 4038=>'NSM', 4039=>'L', 4040=>'L', 4041=>'L', 4042=>'L', 4043=>'L', 4044=>'L', 4047=>'L', 4048=>'L', 4049=>'L', 4096=>'L', 4097=>'L', 4098=>'L', 4099=>'L', 4100=>'L', 4101=>'L', 4102=>'L', 4103=>'L', 4104=>'L', 4105=>'L', 4106=>'L', 4107=>'L', 4108=>'L', 4109=>'L', 4110=>'L', 4111=>'L', 4112=>'L', 4113=>'L', 4114=>'L', 4115=>'L', 4116=>'L', 4117=>'L', 4118=>'L', 4119=>'L', 4120=>'L', 4121=>'L', 4122=>'L', 4123=>'L', 4124=>'L', 4125=>'L', 4126=>'L', 4127=>'L', 4128=>'L', 4129=>'L', 4131=>'L', 4132=>'L', 4133=>'L', 4134=>'L', 4135=>'L', 4137=>'L', 4138=>'L', 4140=>'L', 4141=>'NSM', 4142=>'NSM', 4143=>'NSM', 4144=>'NSM', 4145=>'L', 4146=>'NSM', 4150=>'NSM', 4151=>'NSM', 4152=>'L', 4153=>'NSM', 4160=>'L', 4161=>'L', 4162=>'L', 4163=>'L', 4164=>'L', 4165=>'L', 4166=>'L', 4167=>'L', 4168=>'L', 4169=>'L', 4170=>'L', 4171=>'L', 4172=>'L', 4173=>'L', 4174=>'L', 4175=>'L', 4176=>'L', 4177=>'L', 4178=>'L', 4179=>'L', 4180=>'L', 4181=>'L', 4182=>'L', 4183=>'L', 4184=>'NSM', 4185=>'NSM', 4256=>'L', 4257=>'L', 4258=>'L', 4259=>'L', 4260=>'L', 4261=>'L', 4262=>'L', 4263=>'L', 4264=>'L', 4265=>'L', 4266=>'L', 4267=>'L', 4268=>'L', 4269=>'L', 4270=>'L', 4271=>'L', 4272=>'L', 4273=>'L', 4274=>'L', 4275=>'L', 4276=>'L', 4277=>'L', 4278=>'L', 4279=>'L', 4280=>'L', 4281=>'L', 4282=>'L', 4283=>'L', 4284=>'L', 4285=>'L', 4286=>'L', 4287=>'L', 4288=>'L', 4289=>'L', 4290=>'L', 4291=>'L', 4292=>'L', 4293=>'L', 4304=>'L', 4305=>'L', 4306=>'L', 4307=>'L', 4308=>'L', 4309=>'L', 4310=>'L', 4311=>'L', 4312=>'L', 4313=>'L', 4314=>'L', 4315=>'L', 4316=>'L', 4317=>'L', 4318=>'L', 4319=>'L', 4320=>'L', 4321=>'L', 4322=>'L', 4323=>'L', 4324=>'L', 4325=>'L', 4326=>'L', 4327=>'L', 4328=>'L', 4329=>'L', 4330=>'L', 4331=>'L', 4332=>'L', 4333=>'L', 4334=>'L', 4335=>'L', 4336=>'L', 4337=>'L', 4338=>'L', 4339=>'L', 4340=>'L', 4341=>'L', 4342=>'L', 4343=>'L', 4344=>'L', 4345=>'L', 4346=>'L', 4347=>'L', 4348=>'L', 4352=>'L', 4353=>'L', 4354=>'L', 4355=>'L', 4356=>'L', 4357=>'L', 4358=>'L', 4359=>'L', 4360=>'L', 4361=>'L', 4362=>'L', 4363=>'L', 4364=>'L', 4365=>'L', 4366=>'L', 4367=>'L', 4368=>'L', 4369=>'L', 4370=>'L', 4371=>'L', 4372=>'L', 4373=>'L', 4374=>'L', 4375=>'L', 4376=>'L', 4377=>'L', 4378=>'L', 4379=>'L', 4380=>'L', 4381=>'L', 4382=>'L', 4383=>'L', 4384=>'L', 4385=>'L', 4386=>'L', 4387=>'L', 4388=>'L', 4389=>'L', 4390=>'L', 4391=>'L', 4392=>'L', 4393=>'L', 4394=>'L', 4395=>'L', 4396=>'L', 4397=>'L', 4398=>'L', 4399=>'L', 4400=>'L', 4401=>'L', 4402=>'L', 4403=>'L', 4404=>'L', 4405=>'L', 4406=>'L', 4407=>'L', 4408=>'L', 4409=>'L', 4410=>'L', 4411=>'L', 4412=>'L', 4413=>'L', 4414=>'L', 4415=>'L', 4416=>'L', 4417=>'L', 4418=>'L', 4419=>'L', 4420=>'L', 4421=>'L', 4422=>'L', 4423=>'L', 4424=>'L', 4425=>'L', 4426=>'L', 4427=>'L', 4428=>'L', 4429=>'L', 4430=>'L', 4431=>'L', 4432=>'L', 4433=>'L', 4434=>'L', 4435=>'L', 4436=>'L', 4437=>'L', 4438=>'L', 4439=>'L', 4440=>'L', 4441=>'L', 4447=>'L', 4448=>'L', 4449=>'L', 4450=>'L', 4451=>'L', 4452=>'L', 4453=>'L', 4454=>'L', 4455=>'L', 4456=>'L', 4457=>'L', 4458=>'L', 4459=>'L', 4460=>'L', 4461=>'L', 4462=>'L', 4463=>'L', 4464=>'L', 4465=>'L', 4466=>'L', 4467=>'L', 4468=>'L', 4469=>'L', 4470=>'L', 4471=>'L', 4472=>'L', 4473=>'L', 4474=>'L', 4475=>'L', 4476=>'L', 4477=>'L', 4478=>'L', 4479=>'L', 4480=>'L', 4481=>'L', 4482=>'L', 4483=>'L', 4484=>'L', 4485=>'L', 4486=>'L', 4487=>'L', 4488=>'L', 4489=>'L', 4490=>'L', 4491=>'L', 4492=>'L', 4493=>'L', 4494=>'L', 4495=>'L', 4496=>'L', 4497=>'L', 4498=>'L', 4499=>'L', 4500=>'L', 4501=>'L', 4502=>'L', 4503=>'L', 4504=>'L', 4505=>'L', 4506=>'L', 4507=>'L', 4508=>'L', 4509=>'L', 4510=>'L', 4511=>'L', 4512=>'L', 4513=>'L', 4514=>'L', 4520=>'L', 4521=>'L', 4522=>'L', 4523=>'L', 4524=>'L', 4525=>'L', 4526=>'L', 4527=>'L', 4528=>'L', 4529=>'L', 4530=>'L', 4531=>'L', 4532=>'L', 4533=>'L', 4534=>'L', 4535=>'L', 4536=>'L', 4537=>'L', 4538=>'L', 4539=>'L', 4540=>'L', 4541=>'L', 4542=>'L', 4543=>'L', 4544=>'L', 4545=>'L', 4546=>'L', 4547=>'L', 4548=>'L', 4549=>'L', 4550=>'L', 4551=>'L', 4552=>'L', 4553=>'L', 4554=>'L', 4555=>'L', 4556=>'L', 4557=>'L', 4558=>'L', 4559=>'L', 4560=>'L', 4561=>'L', 4562=>'L', 4563=>'L', 4564=>'L', 4565=>'L', 4566=>'L', 4567=>'L', 4568=>'L', 4569=>'L', 4570=>'L', 4571=>'L', 4572=>'L', 4573=>'L', 4574=>'L', 4575=>'L', 4576=>'L', 4577=>'L', 4578=>'L', 4579=>'L', 4580=>'L', 4581=>'L', 4582=>'L', 4583=>'L', 4584=>'L', 4585=>'L', 4586=>'L', 4587=>'L', 4588=>'L', 4589=>'L', 4590=>'L', 4591=>'L', 4592=>'L', 4593=>'L', 4594=>'L', 4595=>'L', 4596=>'L', 4597=>'L', 4598=>'L', 4599=>'L', 4600=>'L', 4601=>'L', 4608=>'L', 4609=>'L', 4610=>'L', 4611=>'L', 4612=>'L', 4613=>'L', 4614=>'L', 4615=>'L', 4616=>'L', 4617=>'L', 4618=>'L', 4619=>'L', 4620=>'L', 4621=>'L', 4622=>'L', 4623=>'L', 4624=>'L', 4625=>'L', 4626=>'L', 4627=>'L', 4628=>'L', 4629=>'L', 4630=>'L', 4631=>'L', 4632=>'L', 4633=>'L', 4634=>'L', 4635=>'L', 4636=>'L', 4637=>'L', 4638=>'L', 4639=>'L', 4640=>'L', 4641=>'L', 4642=>'L', 4643=>'L', 4644=>'L', 4645=>'L', 4646=>'L', 4647=>'L', 4648=>'L', 4649=>'L', 4650=>'L', 4651=>'L', 4652=>'L', 4653=>'L', 4654=>'L', 4655=>'L', 4656=>'L', 4657=>'L', 4658=>'L', 4659=>'L', 4660=>'L', 4661=>'L', 4662=>'L', 4663=>'L', 4664=>'L', 4665=>'L', 4666=>'L', 4667=>'L', 4668=>'L', 4669=>'L', 4670=>'L', 4671=>'L', 4672=>'L', 4673=>'L', 4674=>'L', 4675=>'L', 4676=>'L', 4677=>'L', 4678=>'L', 4679=>'L', 4680=>'L', 4682=>'L', 4683=>'L', 4684=>'L', 4685=>'L', 4688=>'L', 4689=>'L', 4690=>'L', 4691=>'L', 4692=>'L', 4693=>'L', 4694=>'L', 4696=>'L', 4698=>'L', 4699=>'L', 4700=>'L', 4701=>'L', 4704=>'L', 4705=>'L', 4706=>'L', 4707=>'L', 4708=>'L', 4709=>'L', 4710=>'L', 4711=>'L', 4712=>'L', 4713=>'L', 4714=>'L', 4715=>'L', 4716=>'L', 4717=>'L', 4718=>'L', 4719=>'L', 4720=>'L', 4721=>'L', 4722=>'L', 4723=>'L', 4724=>'L', 4725=>'L', 4726=>'L', 4727=>'L', 4728=>'L', 4729=>'L', 4730=>'L', 4731=>'L', 4732=>'L', 4733=>'L', 4734=>'L', 4735=>'L', 4736=>'L', 4737=>'L', 4738=>'L', 4739=>'L', 4740=>'L', 4741=>'L', 4742=>'L', 4743=>'L', 4744=>'L', 4746=>'L', 4747=>'L', 4748=>'L', 4749=>'L', 4752=>'L', 4753=>'L', 4754=>'L', 4755=>'L', 4756=>'L', 4757=>'L', 4758=>'L', 4759=>'L', 4760=>'L', 4761=>'L', 4762=>'L', 4763=>'L', 4764=>'L', 4765=>'L', 4766=>'L', 4767=>'L', 4768=>'L', 4769=>'L', 4770=>'L', 4771=>'L', 4772=>'L', 4773=>'L', 4774=>'L', 4775=>'L', 4776=>'L', 4777=>'L', 4778=>'L', 4779=>'L', 4780=>'L', 4781=>'L', 4782=>'L', 4783=>'L', 4784=>'L', 4786=>'L', 4787=>'L', 4788=>'L', 4789=>'L', 4792=>'L', 4793=>'L', 4794=>'L', 4795=>'L', 4796=>'L', 4797=>'L', 4798=>'L', 4800=>'L', 4802=>'L', 4803=>'L', 4804=>'L', 4805=>'L', 4808=>'L', 4809=>'L', 4810=>'L', 4811=>'L', 4812=>'L', 4813=>'L', 4814=>'L', 4815=>'L', 4816=>'L', 4817=>'L', 4818=>'L', 4819=>'L', 4820=>'L', 4821=>'L', 4822=>'L', 4824=>'L', 4825=>'L', 4826=>'L', 4827=>'L', 4828=>'L', 4829=>'L', 4830=>'L', 4831=>'L', 4832=>'L', 4833=>'L', 4834=>'L', 4835=>'L', 4836=>'L', 4837=>'L', 4838=>'L', 4839=>'L', 4840=>'L', 4841=>'L', 4842=>'L', 4843=>'L', 4844=>'L', 4845=>'L', 4846=>'L', 4847=>'L', 4848=>'L', 4849=>'L', 4850=>'L', 4851=>'L', 4852=>'L', 4853=>'L', 4854=>'L', 4855=>'L', 4856=>'L', 4857=>'L', 4858=>'L', 4859=>'L', 4860=>'L', 4861=>'L', 4862=>'L', 4863=>'L', 4864=>'L', 4865=>'L', 4866=>'L', 4867=>'L', 4868=>'L', 4869=>'L', 4870=>'L', 4871=>'L', 4872=>'L', 4873=>'L', 4874=>'L', 4875=>'L', 4876=>'L', 4877=>'L', 4878=>'L', 4879=>'L', 4880=>'L', 4882=>'L', 4883=>'L', 4884=>'L', 4885=>'L', 4888=>'L', 4889=>'L', 4890=>'L', 4891=>'L', 4892=>'L', 4893=>'L', 4894=>'L', 4895=>'L', 4896=>'L', 4897=>'L', 4898=>'L', 4899=>'L', 4900=>'L', 4901=>'L', 4902=>'L', 4903=>'L', 4904=>'L', 4905=>'L', 4906=>'L', 4907=>'L', 4908=>'L', 4909=>'L', 4910=>'L', 4911=>'L', 4912=>'L', 4913=>'L', 4914=>'L', 4915=>'L', 4916=>'L', 4917=>'L', 4918=>'L', 4919=>'L', 4920=>'L', 4921=>'L', 4922=>'L', 4923=>'L', 4924=>'L', 4925=>'L', 4926=>'L', 4927=>'L', 4928=>'L', 4929=>'L', 4930=>'L', 4931=>'L', 4932=>'L', 4933=>'L', 4934=>'L', 4935=>'L', 4936=>'L', 4937=>'L', 4938=>'L', 4939=>'L', 4940=>'L', 4941=>'L', 4942=>'L', 4943=>'L', 4944=>'L', 4945=>'L', 4946=>'L', 4947=>'L', 4948=>'L', 4949=>'L', 4950=>'L', 4951=>'L', 4952=>'L', 4953=>'L', 4954=>'L', 4959=>'NSM', 4960=>'L', 4961=>'L', 4962=>'L', 4963=>'L', 4964=>'L', 4965=>'L', 4966=>'L', 4967=>'L', 4968=>'L', 4969=>'L', 4970=>'L', 4971=>'L', 4972=>'L', 4973=>'L', 4974=>'L', 4975=>'L', 4976=>'L', 4977=>'L', 4978=>'L', 4979=>'L', 4980=>'L', 4981=>'L', 4982=>'L', 4983=>'L', 4984=>'L', 4985=>'L', 4986=>'L', 4987=>'L', 4988=>'L', 4992=>'L', 4993=>'L', 4994=>'L', 4995=>'L', 4996=>'L', 4997=>'L', 4998=>'L', 4999=>'L', 5000=>'L', 5001=>'L', 5002=>'L', 5003=>'L', 5004=>'L', 5005=>'L', 5006=>'L', 5007=>'L', 5008=>'ON', 5009=>'ON', 5010=>'ON', 5011=>'ON', 5012=>'ON', 5013=>'ON', 5014=>'ON', 5015=>'ON', 5016=>'ON', 5017=>'ON', 5024=>'L', 5025=>'L', 5026=>'L', 5027=>'L', 5028=>'L', 5029=>'L', 5030=>'L', 5031=>'L', 5032=>'L', 5033=>'L', 5034=>'L', 5035=>'L', 5036=>'L', 5037=>'L', 5038=>'L', 5039=>'L', 5040=>'L', 5041=>'L', 5042=>'L', 5043=>'L', 5044=>'L', 5045=>'L', 5046=>'L', 5047=>'L', 5048=>'L', 5049=>'L', 5050=>'L', 5051=>'L', 5052=>'L', 5053=>'L', 5054=>'L', 5055=>'L', 5056=>'L', 5057=>'L', 5058=>'L', 5059=>'L', 5060=>'L', 5061=>'L', 5062=>'L', 5063=>'L', 5064=>'L', 5065=>'L', 5066=>'L', 5067=>'L', 5068=>'L', 5069=>'L', 5070=>'L', 5071=>'L', 5072=>'L', 5073=>'L', 5074=>'L', 5075=>'L', 5076=>'L', 5077=>'L', 5078=>'L', 5079=>'L', 5080=>'L', 5081=>'L', 5082=>'L', 5083=>'L', 5084=>'L', 5085=>'L', 5086=>'L', 5087=>'L', 5088=>'L', 5089=>'L', 5090=>'L', 5091=>'L', 5092=>'L', 5093=>'L', 5094=>'L', 5095=>'L', 5096=>'L', 5097=>'L', 5098=>'L', 5099=>'L', 5100=>'L', 5101=>'L', 5102=>'L', 5103=>'L', 5104=>'L', 5105=>'L', 5106=>'L', 5107=>'L', 5108=>'L', 5121=>'L', 5122=>'L', 5123=>'L', 5124=>'L', 5125=>'L', 5126=>'L', 5127=>'L', 5128=>'L', 5129=>'L', 5130=>'L', 5131=>'L', 5132=>'L', 5133=>'L', 5134=>'L', 5135=>'L', 5136=>'L', 5137=>'L', 5138=>'L', 5139=>'L', 5140=>'L', 5141=>'L', 5142=>'L', 5143=>'L', 5144=>'L', 5145=>'L', 5146=>'L', 5147=>'L', 5148=>'L', 5149=>'L', 5150=>'L', 5151=>'L', 5152=>'L', 5153=>'L', 5154=>'L', 5155=>'L', 5156=>'L', 5157=>'L', 5158=>'L', 5159=>'L', 5160=>'L', 5161=>'L', 5162=>'L', 5163=>'L', 5164=>'L', 5165=>'L', 5166=>'L', 5167=>'L', 5168=>'L', 5169=>'L', 5170=>'L', 5171=>'L', 5172=>'L', 5173=>'L', 5174=>'L', 5175=>'L', 5176=>'L', 5177=>'L', 5178=>'L', 5179=>'L', 5180=>'L', 5181=>'L', 5182=>'L', 5183=>'L', 5184=>'L', 5185=>'L', 5186=>'L', 5187=>'L', 5188=>'L', 5189=>'L', 5190=>'L', 5191=>'L', 5192=>'L', 5193=>'L', 5194=>'L', 5195=>'L', 5196=>'L', 5197=>'L', 5198=>'L', 5199=>'L', 5200=>'L', 5201=>'L', 5202=>'L', 5203=>'L', 5204=>'L', 5205=>'L', 5206=>'L', 5207=>'L', 5208=>'L', 5209=>'L', 5210=>'L', 5211=>'L', 5212=>'L', 5213=>'L', 5214=>'L', 5215=>'L', 5216=>'L', 5217=>'L', 5218=>'L', 5219=>'L', 5220=>'L', 5221=>'L', 5222=>'L', 5223=>'L', 5224=>'L', 5225=>'L', 5226=>'L', 5227=>'L', 5228=>'L', 5229=>'L', 5230=>'L', 5231=>'L', 5232=>'L', 5233=>'L', 5234=>'L', 5235=>'L', 5236=>'L', 5237=>'L', 5238=>'L', 5239=>'L', 5240=>'L', 5241=>'L', 5242=>'L', 5243=>'L', 5244=>'L', 5245=>'L', 5246=>'L', 5247=>'L', 5248=>'L', 5249=>'L', 5250=>'L', 5251=>'L', 5252=>'L', 5253=>'L', 5254=>'L', 5255=>'L', 5256=>'L', 5257=>'L', 5258=>'L', 5259=>'L', 5260=>'L', 5261=>'L', 5262=>'L', 5263=>'L', 5264=>'L', 5265=>'L', 5266=>'L', 5267=>'L', 5268=>'L', 5269=>'L', 5270=>'L', 5271=>'L', 5272=>'L', 5273=>'L', 5274=>'L', 5275=>'L', 5276=>'L', 5277=>'L', 5278=>'L', 5279=>'L', 5280=>'L', 5281=>'L', 5282=>'L', 5283=>'L', 5284=>'L', 5285=>'L', 5286=>'L', 5287=>'L', 5288=>'L', 5289=>'L', 5290=>'L', 5291=>'L', 5292=>'L', 5293=>'L', 5294=>'L', 5295=>'L', 5296=>'L', 5297=>'L', 5298=>'L', 5299=>'L', 5300=>'L', 5301=>'L', 5302=>'L', 5303=>'L', 5304=>'L', 5305=>'L', 5306=>'L', 5307=>'L', 5308=>'L', 5309=>'L', 5310=>'L', 5311=>'L', 5312=>'L', 5313=>'L', 5314=>'L', 5315=>'L', 5316=>'L', 5317=>'L', 5318=>'L', 5319=>'L', 5320=>'L', 5321=>'L', 5322=>'L', 5323=>'L', 5324=>'L', 5325=>'L', 5326=>'L', 5327=>'L', 5328=>'L', 5329=>'L', 5330=>'L', 5331=>'L', 5332=>'L', 5333=>'L', 5334=>'L', 5335=>'L', 5336=>'L', 5337=>'L', 5338=>'L', 5339=>'L', 5340=>'L', 5341=>'L', 5342=>'L', 5343=>'L', 5344=>'L', 5345=>'L', 5346=>'L', 5347=>'L', 5348=>'L', 5349=>'L', 5350=>'L', 5351=>'L', 5352=>'L', 5353=>'L', 5354=>'L', 5355=>'L', 5356=>'L', 5357=>'L', 5358=>'L', 5359=>'L', 5360=>'L', 5361=>'L', 5362=>'L', 5363=>'L', 5364=>'L', 5365=>'L', 5366=>'L', 5367=>'L', 5368=>'L', 5369=>'L', 5370=>'L', 5371=>'L', 5372=>'L', 5373=>'L', 5374=>'L', 5375=>'L', 5376=>'L', 5377=>'L', 5378=>'L', 5379=>'L', 5380=>'L', 5381=>'L', 5382=>'L', 5383=>'L', 5384=>'L', 5385=>'L', 5386=>'L', 5387=>'L', 5388=>'L', 5389=>'L', 5390=>'L', 5391=>'L', 5392=>'L', 5393=>'L', 5394=>'L', 5395=>'L', 5396=>'L', 5397=>'L', 5398=>'L', 5399=>'L', 5400=>'L', 5401=>'L', 5402=>'L', 5403=>'L', 5404=>'L', 5405=>'L', 5406=>'L', 5407=>'L', 5408=>'L', 5409=>'L', 5410=>'L', 5411=>'L', 5412=>'L', 5413=>'L', 5414=>'L', 5415=>'L', 5416=>'L', 5417=>'L', 5418=>'L', 5419=>'L', 5420=>'L', 5421=>'L', 5422=>'L', 5423=>'L', 5424=>'L', 5425=>'L', 5426=>'L', 5427=>'L', 5428=>'L', 5429=>'L', 5430=>'L', 5431=>'L', 5432=>'L', 5433=>'L', 5434=>'L', 5435=>'L', 5436=>'L', 5437=>'L', 5438=>'L', 5439=>'L', 5440=>'L', 5441=>'L', 5442=>'L', 5443=>'L', 5444=>'L', 5445=>'L', 5446=>'L', 5447=>'L', 5448=>'L', 5449=>'L', 5450=>'L', 5451=>'L', 5452=>'L', 5453=>'L', 5454=>'L', 5455=>'L', 5456=>'L', 5457=>'L', 5458=>'L', 5459=>'L', 5460=>'L', 5461=>'L', 5462=>'L', 5463=>'L', 5464=>'L', 5465=>'L', 5466=>'L', 5467=>'L', 5468=>'L', 5469=>'L', 5470=>'L', 5471=>'L', 5472=>'L', 5473=>'L', 5474=>'L', 5475=>'L', 5476=>'L', 5477=>'L', 5478=>'L', 5479=>'L', 5480=>'L', 5481=>'L', 5482=>'L', 5483=>'L', 5484=>'L', 5485=>'L', 5486=>'L', 5487=>'L', 5488=>'L', 5489=>'L', 5490=>'L', 5491=>'L', 5492=>'L', 5493=>'L', 5494=>'L', 5495=>'L', 5496=>'L', 5497=>'L', 5498=>'L', 5499=>'L', 5500=>'L', 5501=>'L', 5502=>'L', 5503=>'L', 5504=>'L', 5505=>'L', 5506=>'L', 5507=>'L', 5508=>'L', 5509=>'L', 5510=>'L', 5511=>'L', 5512=>'L', 5513=>'L', 5514=>'L', 5515=>'L', 5516=>'L', 5517=>'L', 5518=>'L', 5519=>'L', 5520=>'L', 5521=>'L', 5522=>'L', 5523=>'L', 5524=>'L', 5525=>'L', 5526=>'L', 5527=>'L', 5528=>'L', 5529=>'L', 5530=>'L', 5531=>'L', 5532=>'L', 5533=>'L', 5534=>'L', 5535=>'L', 5536=>'L', 5537=>'L', 5538=>'L', 5539=>'L', 5540=>'L', 5541=>'L', 5542=>'L', 5543=>'L', 5544=>'L', 5545=>'L', 5546=>'L', 5547=>'L', 5548=>'L', 5549=>'L', 5550=>'L', 5551=>'L', 5552=>'L', 5553=>'L', 5554=>'L', 5555=>'L', 5556=>'L', 5557=>'L', 5558=>'L', 5559=>'L', 5560=>'L', 5561=>'L', 5562=>'L', 5563=>'L', 5564=>'L', 5565=>'L', 5566=>'L', 5567=>'L', 5568=>'L', 5569=>'L', 5570=>'L', 5571=>'L', 5572=>'L', 5573=>'L', 5574=>'L', 5575=>'L', 5576=>'L', 5577=>'L', 5578=>'L', 5579=>'L', 5580=>'L', 5581=>'L', 5582=>'L', 5583=>'L', 5584=>'L', 5585=>'L', 5586=>'L', 5587=>'L', 5588=>'L', 5589=>'L', 5590=>'L', 5591=>'L', 5592=>'L', 5593=>'L', 5594=>'L', 5595=>'L', 5596=>'L', 5597=>'L', 5598=>'L', 5599=>'L', 5600=>'L', 5601=>'L', 5602=>'L', 5603=>'L', 5604=>'L', 5605=>'L', 5606=>'L', 5607=>'L', 5608=>'L', 5609=>'L', 5610=>'L', 5611=>'L', 5612=>'L', 5613=>'L', 5614=>'L', 5615=>'L', 5616=>'L', 5617=>'L', 5618=>'L', 5619=>'L', 5620=>'L', 5621=>'L', 5622=>'L', 5623=>'L', 5624=>'L', 5625=>'L', 5626=>'L', 5627=>'L', 5628=>'L', 5629=>'L', 5630=>'L', 5631=>'L', 5632=>'L', 5633=>'L', 5634=>'L', 5635=>'L', 5636=>'L', 5637=>'L', 5638=>'L', 5639=>'L', 5640=>'L', 5641=>'L', 5642=>'L', 5643=>'L', 5644=>'L', 5645=>'L', 5646=>'L', 5647=>'L', 5648=>'L', 5649=>'L', 5650=>'L', 5651=>'L', 5652=>'L', 5653=>'L', 5654=>'L', 5655=>'L', 5656=>'L', 5657=>'L', 5658=>'L', 5659=>'L', 5660=>'L', 5661=>'L', 5662=>'L', 5663=>'L', 5664=>'L', 5665=>'L', 5666=>'L', 5667=>'L', 5668=>'L', 5669=>'L', 5670=>'L', 5671=>'L', 5672=>'L', 5673=>'L', 5674=>'L', 5675=>'L', 5676=>'L', 5677=>'L', 5678=>'L', 5679=>'L', 5680=>'L', 5681=>'L', 5682=>'L', 5683=>'L', 5684=>'L', 5685=>'L', 5686=>'L', 5687=>'L', 5688=>'L', 5689=>'L', 5690=>'L', 5691=>'L', 5692=>'L', 5693=>'L', 5694=>'L', 5695=>'L', 5696=>'L', 5697=>'L', 5698=>'L', 5699=>'L', 5700=>'L', 5701=>'L', 5702=>'L', 5703=>'L', 5704=>'L', 5705=>'L', 5706=>'L', 5707=>'L', 5708=>'L', 5709=>'L', 5710=>'L', 5711=>'L', 5712=>'L', 5713=>'L', 5714=>'L', 5715=>'L', 5716=>'L', 5717=>'L', 5718=>'L', 5719=>'L', 5720=>'L', 5721=>'L', 5722=>'L', 5723=>'L', 5724=>'L', 5725=>'L', 5726=>'L', 5727=>'L', 5728=>'L', 5729=>'L', 5730=>'L', 5731=>'L', 5732=>'L', 5733=>'L', 5734=>'L', 5735=>'L', 5736=>'L', 5737=>'L', 5738=>'L', 5739=>'L', 5740=>'L', 5741=>'L', 5742=>'L', 5743=>'L', 5744=>'L', 5745=>'L', 5746=>'L', 5747=>'L', 5748=>'L', 5749=>'L', 5750=>'L', 5760=>'WS', 5761=>'L', 5762=>'L', 5763=>'L', 5764=>'L', 5765=>'L', 5766=>'L', 5767=>'L', 5768=>'L', 5769=>'L', 5770=>'L', 5771=>'L', 5772=>'L', 5773=>'L', 5774=>'L', 5775=>'L', 5776=>'L', 5777=>'L', 5778=>'L', 5779=>'L', 5780=>'L', 5781=>'L', 5782=>'L', 5783=>'L', 5784=>'L', 5785=>'L', 5786=>'L', 5787=>'ON', 5788=>'ON', 5792=>'L', 5793=>'L', 5794=>'L', 5795=>'L', 5796=>'L', 5797=>'L', 5798=>'L', 5799=>'L', 5800=>'L', 5801=>'L', 5802=>'L', 5803=>'L', 5804=>'L', 5805=>'L', 5806=>'L', 5807=>'L', 5808=>'L', 5809=>'L', 5810=>'L', 5811=>'L', 5812=>'L', 5813=>'L', 5814=>'L', 5815=>'L', 5816=>'L', 5817=>'L', 5818=>'L', 5819=>'L', 5820=>'L', 5821=>'L', 5822=>'L', 5823=>'L', 5824=>'L', 5825=>'L', 5826=>'L', 5827=>'L', 5828=>'L', 5829=>'L', 5830=>'L', 5831=>'L', 5832=>'L', 5833=>'L', 5834=>'L', 5835=>'L', 5836=>'L', 5837=>'L', 5838=>'L', 5839=>'L', 5840=>'L', 5841=>'L', 5842=>'L', 5843=>'L', 5844=>'L', 5845=>'L', 5846=>'L', 5847=>'L', 5848=>'L', 5849=>'L', 5850=>'L', 5851=>'L', 5852=>'L', 5853=>'L', 5854=>'L', 5855=>'L', 5856=>'L', 5857=>'L', 5858=>'L', 5859=>'L', 5860=>'L', 5861=>'L', 5862=>'L', 5863=>'L', 5864=>'L', 5865=>'L', 5866=>'L', 5867=>'L', 5868=>'L', 5869=>'L', 5870=>'L', 5871=>'L', 5872=>'L', 5888=>'L', 5889=>'L', 5890=>'L', 5891=>'L', 5892=>'L', 5893=>'L', 5894=>'L', 5895=>'L', 5896=>'L', 5897=>'L', 5898=>'L', 5899=>'L', 5900=>'L', 5902=>'L', 5903=>'L', 5904=>'L', 5905=>'L', 5906=>'NSM', 5907=>'NSM', 5908=>'NSM', 5920=>'L', 5921=>'L', 5922=>'L', 5923=>'L', 5924=>'L', 5925=>'L', 5926=>'L', 5927=>'L', 5928=>'L', 5929=>'L', 5930=>'L', 5931=>'L', 5932=>'L', 5933=>'L', 5934=>'L', 5935=>'L', 5936=>'L', 5937=>'L', 5938=>'NSM', 5939=>'NSM', 5940=>'NSM', 5941=>'L', 5942=>'L', 5952=>'L', 5953=>'L', 5954=>'L', 5955=>'L', 5956=>'L', 5957=>'L', 5958=>'L', 5959=>'L', 5960=>'L', 5961=>'L', 5962=>'L', 5963=>'L', 5964=>'L', 5965=>'L', 5966=>'L', 5967=>'L', 5968=>'L', 5969=>'L', 5970=>'NSM', 5971=>'NSM', 5984=>'L', 5985=>'L', 5986=>'L', 5987=>'L', 5988=>'L', 5989=>'L', 5990=>'L', 5991=>'L', 5992=>'L', 5993=>'L', 5994=>'L', 5995=>'L', 5996=>'L', 5998=>'L', 5999=>'L', 6000=>'L', 6002=>'NSM', 6003=>'NSM', 6016=>'L', 6017=>'L', 6018=>'L', 6019=>'L', 6020=>'L', 6021=>'L', 6022=>'L', 6023=>'L', 6024=>'L', 6025=>'L', 6026=>'L', 6027=>'L', 6028=>'L', 6029=>'L', 6030=>'L', 6031=>'L', 6032=>'L', 6033=>'L', 6034=>'L', 6035=>'L', 6036=>'L', 6037=>'L', 6038=>'L', 6039=>'L', 6040=>'L', 6041=>'L', 6042=>'L', 6043=>'L', 6044=>'L', 6045=>'L', 6046=>'L', 6047=>'L', 6048=>'L', 6049=>'L', 6050=>'L', 6051=>'L', 6052=>'L', 6053=>'L', 6054=>'L', 6055=>'L', 6056=>'L', 6057=>'L', 6058=>'L', 6059=>'L', 6060=>'L', 6061=>'L', 6062=>'L', 6063=>'L', 6064=>'L', 6065=>'L', 6066=>'L', 6067=>'L', 6068=>'L', 6069=>'L', 6070=>'L', 6071=>'NSM', 6072=>'NSM', 6073=>'NSM', 6074=>'NSM', 6075=>'NSM', 6076=>'NSM', 6077=>'NSM', 6078=>'L', 6079=>'L', 6080=>'L', 6081=>'L', 6082=>'L', 6083=>'L', 6084=>'L', 6085=>'L', 6086=>'NSM', 6087=>'L', 6088=>'L', 6089=>'NSM', 6090=>'NSM', 6091=>'NSM', 6092=>'NSM', 6093=>'NSM', 6094=>'NSM', 6095=>'NSM', 6096=>'NSM', 6097=>'NSM', 6098=>'NSM', 6099=>'NSM', 6100=>'L', 6101=>'L', 6102=>'L', 6103=>'L', 6104=>'L', 6105=>'L', 6106=>'L', 6107=>'ET', 6108=>'L', 6109=>'NSM', 6112=>'L', 6113=>'L', 6114=>'L', 6115=>'L', 6116=>'L', 6117=>'L', 6118=>'L', 6119=>'L', 6120=>'L', 6121=>'L', 6128=>'ON', 6129=>'ON', 6130=>'ON', 6131=>'ON', 6132=>'ON', 6133=>'ON', 6134=>'ON', 6135=>'ON', 6136=>'ON', 6137=>'ON', 6144=>'ON', 6145=>'ON', 6146=>'ON', 6147=>'ON', 6148=>'ON', 6149=>'ON', 6150=>'ON', 6151=>'ON', 6152=>'ON', 6153=>'ON', 6154=>'ON', 6155=>'NSM', 6156=>'NSM', 6157=>'NSM', 6158=>'WS', 6160=>'L', 6161=>'L', 6162=>'L', 6163=>'L', 6164=>'L', 6165=>'L', 6166=>'L', 6167=>'L', 6168=>'L', 6169=>'L', 6176=>'L', 6177=>'L', 6178=>'L', 6179=>'L', 6180=>'L', 6181=>'L', 6182=>'L', 6183=>'L', 6184=>'L', 6185=>'L', 6186=>'L', 6187=>'L', 6188=>'L', 6189=>'L', 6190=>'L', 6191=>'L', 6192=>'L', 6193=>'L', 6194=>'L', 6195=>'L', 6196=>'L', 6197=>'L', 6198=>'L', 6199=>'L', 6200=>'L', 6201=>'L', 6202=>'L', 6203=>'L', 6204=>'L', 6205=>'L', 6206=>'L', 6207=>'L', 6208=>'L', 6209=>'L', 6210=>'L', 6211=>'L', 6212=>'L', 6213=>'L', 6214=>'L', 6215=>'L', 6216=>'L', 6217=>'L', 6218=>'L', 6219=>'L', 6220=>'L', 6221=>'L', 6222=>'L', 6223=>'L', 6224=>'L', 6225=>'L', 6226=>'L', 6227=>'L', 6228=>'L', 6229=>'L', 6230=>'L', 6231=>'L', 6232=>'L', 6233=>'L', 6234=>'L', 6235=>'L', 6236=>'L', 6237=>'L', 6238=>'L', 6239=>'L', 6240=>'L', 6241=>'L', 6242=>'L', 6243=>'L', 6244=>'L', 6245=>'L', 6246=>'L', 6247=>'L', 6248=>'L', 6249=>'L', 6250=>'L', 6251=>'L', 6252=>'L', 6253=>'L', 6254=>'L', 6255=>'L', 6256=>'L', 6257=>'L', 6258=>'L', 6259=>'L', 6260=>'L', 6261=>'L', 6262=>'L', 6263=>'L', 6272=>'L', 6273=>'L', 6274=>'L', 6275=>'L', 6276=>'L', 6277=>'L', 6278=>'L', 6279=>'L', 6280=>'L', 6281=>'L', 6282=>'L', 6283=>'L', 6284=>'L', 6285=>'L', 6286=>'L', 6287=>'L', 6288=>'L', 6289=>'L', 6290=>'L', 6291=>'L', 6292=>'L', 6293=>'L', 6294=>'L', 6295=>'L', 6296=>'L', 6297=>'L', 6298=>'L', 6299=>'L', 6300=>'L', 6301=>'L', 6302=>'L', 6303=>'L', 6304=>'L', 6305=>'L', 6306=>'L', 6307=>'L', 6308=>'L', 6309=>'L', 6310=>'L', 6311=>'L', 6312=>'L', 6313=>'NSM', 6400=>'L', 6401=>'L', 6402=>'L', 6403=>'L', 6404=>'L', 6405=>'L', 6406=>'L', 6407=>'L', 6408=>'L', 6409=>'L', 6410=>'L', 6411=>'L', 6412=>'L', 6413=>'L', 6414=>'L', 6415=>'L', 6416=>'L', 6417=>'L', 6418=>'L', 6419=>'L', 6420=>'L', 6421=>'L', 6422=>'L', 6423=>'L', 6424=>'L', 6425=>'L', 6426=>'L', 6427=>'L', 6428=>'L', 6432=>'NSM', 6433=>'NSM', 6434=>'NSM', 6435=>'L', 6436=>'L', 6437=>'L', 6438=>'L', 6439=>'NSM', 6440=>'NSM', 6441=>'NSM', 6442=>'NSM', 6443=>'NSM', 6448=>'L', 6449=>'L', 6450=>'NSM', 6451=>'L', 6452=>'L', 6453=>'L', 6454=>'L', 6455=>'L', 6456=>'L', 6457=>'NSM', 6458=>'NSM', 6459=>'NSM', 6464=>'ON', 6468=>'ON', 6469=>'ON', 6470=>'L', 6471=>'L', 6472=>'L', 6473=>'L', 6474=>'L', 6475=>'L', 6476=>'L', 6477=>'L', 6478=>'L', 6479=>'L', 6480=>'L', 6481=>'L', 6482=>'L', 6483=>'L', 6484=>'L', 6485=>'L', 6486=>'L', 6487=>'L', 6488=>'L', 6489=>'L', 6490=>'L', 6491=>'L', 6492=>'L', 6493=>'L', 6494=>'L', 6495=>'L', 6496=>'L', 6497=>'L', 6498=>'L', 6499=>'L', 6500=>'L', 6501=>'L', 6502=>'L', 6503=>'L', 6504=>'L', 6505=>'L', 6506=>'L', 6507=>'L', 6508=>'L', 6509=>'L', 6512=>'L', 6513=>'L', 6514=>'L', 6515=>'L', 6516=>'L', 6528=>'L', 6529=>'L', 6530=>'L', 6531=>'L', 6532=>'L', 6533=>'L', 6534=>'L', 6535=>'L', 6536=>'L', 6537=>'L', 6538=>'L', 6539=>'L', 6540=>'L', 6541=>'L', 6542=>'L', 6543=>'L', 6544=>'L', 6545=>'L', 6546=>'L', 6547=>'L', 6548=>'L', 6549=>'L', 6550=>'L', 6551=>'L', 6552=>'L', 6553=>'L', 6554=>'L', 6555=>'L', 6556=>'L', 6557=>'L', 6558=>'L', 6559=>'L', 6560=>'L', 6561=>'L', 6562=>'L', 6563=>'L', 6564=>'L', 6565=>'L', 6566=>'L', 6567=>'L', 6568=>'L', 6569=>'L', 6576=>'L', 6577=>'L', 6578=>'L', 6579=>'L', 6580=>'L', 6581=>'L', 6582=>'L', 6583=>'L', 6584=>'L', 6585=>'L', 6586=>'L', 6587=>'L', 6588=>'L', 6589=>'L', 6590=>'L', 6591=>'L', 6592=>'L', 6593=>'L', 6594=>'L', 6595=>'L', 6596=>'L', 6597=>'L', 6598=>'L', 6599=>'L', 6600=>'L', 6601=>'L', 6608=>'L', 6609=>'L', 6610=>'L', 6611=>'L', 6612=>'L', 6613=>'L', 6614=>'L', 6615=>'L', 6616=>'L', 6617=>'L', 6622=>'ON', 6623=>'ON', 6624=>'ON', 6625=>'ON', 6626=>'ON', 6627=>'ON', 6628=>'ON', 6629=>'ON', 6630=>'ON', 6631=>'ON', 6632=>'ON', 6633=>'ON', 6634=>'ON', 6635=>'ON', 6636=>'ON', 6637=>'ON', 6638=>'ON', 6639=>'ON', 6640=>'ON', 6641=>'ON', 6642=>'ON', 6643=>'ON', 6644=>'ON', 6645=>'ON', 6646=>'ON', 6647=>'ON', 6648=>'ON', 6649=>'ON', 6650=>'ON', 6651=>'ON', 6652=>'ON', 6653=>'ON', 6654=>'ON', 6655=>'ON', 6656=>'L', 6657=>'L', 6658=>'L', 6659=>'L', 6660=>'L', 6661=>'L', 6662=>'L', 6663=>'L', 6664=>'L', 6665=>'L', 6666=>'L', 6667=>'L', 6668=>'L', 6669=>'L', 6670=>'L', 6671=>'L', 6672=>'L', 6673=>'L', 6674=>'L', 6675=>'L', 6676=>'L', 6677=>'L', 6678=>'L', 6679=>'NSM', 6680=>'NSM', 6681=>'L', 6682=>'L', 6683=>'L', 6686=>'L', 6687=>'L', 6912=>'NSM', 6913=>'NSM', 6914=>'NSM', 6915=>'NSM', 6916=>'L', 6917=>'L', 6918=>'L', 6919=>'L', 6920=>'L', 6921=>'L', 6922=>'L', 6923=>'L', 6924=>'L', 6925=>'L', 6926=>'L', 6927=>'L', 6928=>'L', 6929=>'L', 6930=>'L', 6931=>'L', 6932=>'L', 6933=>'L', 6934=>'L', 6935=>'L', 6936=>'L', 6937=>'L', 6938=>'L', 6939=>'L', 6940=>'L', 6941=>'L', 6942=>'L', 6943=>'L', 6944=>'L', 6945=>'L', 6946=>'L', 6947=>'L', 6948=>'L', 6949=>'L', 6950=>'L', 6951=>'L', 6952=>'L', 6953=>'L', 6954=>'L', 6955=>'L', 6956=>'L', 6957=>'L', 6958=>'L', 6959=>'L', 6960=>'L', 6961=>'L', 6962=>'L', 6963=>'L', 6964=>'NSM', 6965=>'L', 6966=>'NSM', 6967=>'NSM', 6968=>'NSM', 6969=>'NSM', 6970=>'NSM', 6971=>'L', 6972=>'NSM', 6973=>'L', 6974=>'L', 6975=>'L', 6976=>'L', 6977=>'L', 6978=>'NSM', 6979=>'L', 6980=>'L', 6981=>'L', 6982=>'L', 6983=>'L', 6984=>'L', 6985=>'L', 6986=>'L', 6987=>'L', 6992=>'L', 6993=>'L', 6994=>'L', 6995=>'L', 6996=>'L', 6997=>'L', 6998=>'L', 6999=>'L', 7000=>'L', 7001=>'L', 7002=>'L', 7003=>'L', 7004=>'L', 7005=>'L', 7006=>'L', 7007=>'L', 7008=>'L', 7009=>'L', 7010=>'L', 7011=>'L', 7012=>'L', 7013=>'L', 7014=>'L', 7015=>'L', 7016=>'L', 7017=>'L', 7018=>'L', 7019=>'NSM', 7020=>'NSM', 7021=>'NSM', 7022=>'NSM', 7023=>'NSM', 7024=>'NSM', 7025=>'NSM', 7026=>'NSM', 7027=>'NSM', 7028=>'L', 7029=>'L', 7030=>'L', 7031=>'L', 7032=>'L', 7033=>'L', 7034=>'L', 7035=>'L', 7036=>'L', 7424=>'L', 7425=>'L', 7426=>'L', 7427=>'L', 7428=>'L', 7429=>'L', 7430=>'L', 7431=>'L', 7432=>'L', 7433=>'L', 7434=>'L', 7435=>'L', 7436=>'L', 7437=>'L', 7438=>'L', 7439=>'L', 7440=>'L', 7441=>'L', 7442=>'L', 7443=>'L', 7444=>'L', 7445=>'L', 7446=>'L', 7447=>'L', 7448=>'L', 7449=>'L', 7450=>'L', 7451=>'L', 7452=>'L', 7453=>'L', 7454=>'L', 7455=>'L', 7456=>'L', 7457=>'L', 7458=>'L', 7459=>'L', 7460=>'L', 7461=>'L', 7462=>'L', 7463=>'L', 7464=>'L', 7465=>'L', 7466=>'L', 7467=>'L', 7468=>'L', 7469=>'L', 7470=>'L', 7471=>'L', 7472=>'L', 7473=>'L', 7474=>'L', 7475=>'L', 7476=>'L', 7477=>'L', 7478=>'L', 7479=>'L', 7480=>'L', 7481=>'L', 7482=>'L', 7483=>'L', 7484=>'L', 7485=>'L', 7486=>'L', 7487=>'L', 7488=>'L', 7489=>'L', 7490=>'L', 7491=>'L', 7492=>'L', 7493=>'L', 7494=>'L', 7495=>'L', 7496=>'L', 7497=>'L', 7498=>'L', 7499=>'L', 7500=>'L', 7501=>'L', 7502=>'L', 7503=>'L', 7504=>'L', 7505=>'L', 7506=>'L', 7507=>'L', 7508=>'L', 7509=>'L', 7510=>'L', 7511=>'L', 7512=>'L', 7513=>'L', 7514=>'L', 7515=>'L', 7516=>'L', 7517=>'L', 7518=>'L', 7519=>'L', 7520=>'L', 7521=>'L', 7522=>'L', 7523=>'L', 7524=>'L', 7525=>'L', 7526=>'L', 7527=>'L', 7528=>'L', 7529=>'L', 7530=>'L', 7531=>'L', 7532=>'L', 7533=>'L', 7534=>'L', 7535=>'L', 7536=>'L', 7537=>'L', 7538=>'L', 7539=>'L', 7540=>'L', 7541=>'L', 7542=>'L', 7543=>'L', 7544=>'L', 7545=>'L', 7546=>'L', 7547=>'L', 7548=>'L', 7549=>'L', 7550=>'L', 7551=>'L', 7552=>'L', 7553=>'L', 7554=>'L', 7555=>'L', 7556=>'L', 7557=>'L', 7558=>'L', 7559=>'L', 7560=>'L', 7561=>'L', 7562=>'L', 7563=>'L', 7564=>'L', 7565=>'L', 7566=>'L', 7567=>'L', 7568=>'L', 7569=>'L', 7570=>'L', 7571=>'L', 7572=>'L', 7573=>'L', 7574=>'L', 7575=>'L', 7576=>'L', 7577=>'L', 7578=>'L', 7579=>'L', 7580=>'L', 7581=>'L', 7582=>'L', 7583=>'L', 7584=>'L', 7585=>'L', 7586=>'L', 7587=>'L', 7588=>'L', 7589=>'L', 7590=>'L', 7591=>'L', 7592=>'L', 7593=>'L', 7594=>'L', 7595=>'L', 7596=>'L', 7597=>'L', 7598=>'L', 7599=>'L', 7600=>'L', 7601=>'L', 7602=>'L', 7603=>'L', 7604=>'L', 7605=>'L', 7606=>'L', 7607=>'L', 7608=>'L', 7609=>'L', 7610=>'L', 7611=>'L', 7612=>'L', 7613=>'L', 7614=>'L', 7615=>'L', 7616=>'NSM', 7617=>'NSM', 7618=>'NSM', 7619=>'NSM', 7620=>'NSM', 7621=>'NSM', 7622=>'NSM', 7623=>'NSM', 7624=>'NSM', 7625=>'NSM', 7626=>'NSM', 7678=>'NSM', 7679=>'NSM', 7680=>'L', 7681=>'L', 7682=>'L', 7683=>'L', 7684=>'L', 7685=>'L', 7686=>'L', 7687=>'L', 7688=>'L', 7689=>'L', 7690=>'L', 7691=>'L', 7692=>'L', 7693=>'L', 7694=>'L', 7695=>'L', 7696=>'L', 7697=>'L', 7698=>'L', 7699=>'L', 7700=>'L', 7701=>'L', 7702=>'L', 7703=>'L', 7704=>'L', 7705=>'L', 7706=>'L', 7707=>'L', 7708=>'L', 7709=>'L', 7710=>'L', 7711=>'L', 7712=>'L', 7713=>'L', 7714=>'L', 7715=>'L', 7716=>'L', 7717=>'L', 7718=>'L', 7719=>'L', 7720=>'L', 7721=>'L', 7722=>'L', 7723=>'L', 7724=>'L', 7725=>'L', 7726=>'L', 7727=>'L', 7728=>'L', 7729=>'L', 7730=>'L', 7731=>'L', 7732=>'L', 7733=>'L', 7734=>'L', 7735=>'L', 7736=>'L', 7737=>'L', 7738=>'L', 7739=>'L', 7740=>'L', 7741=>'L', 7742=>'L', 7743=>'L', 7744=>'L', 7745=>'L', 7746=>'L', 7747=>'L', 7748=>'L', 7749=>'L', 7750=>'L', 7751=>'L', 7752=>'L', 7753=>'L', 7754=>'L', 7755=>'L', 7756=>'L', 7757=>'L', 7758=>'L', 7759=>'L', 7760=>'L', 7761=>'L', 7762=>'L', 7763=>'L', 7764=>'L', 7765=>'L', 7766=>'L', 7767=>'L', 7768=>'L', 7769=>'L', 7770=>'L', 7771=>'L', 7772=>'L', 7773=>'L', 7774=>'L', 7775=>'L', 7776=>'L', 7777=>'L', 7778=>'L', 7779=>'L', 7780=>'L', 7781=>'L', 7782=>'L', 7783=>'L', 7784=>'L', 7785=>'L', 7786=>'L', 7787=>'L', 7788=>'L', 7789=>'L', 7790=>'L', 7791=>'L', 7792=>'L', 7793=>'L', 7794=>'L', 7795=>'L', 7796=>'L', 7797=>'L', 7798=>'L', 7799=>'L', 7800=>'L', 7801=>'L', 7802=>'L', 7803=>'L', 7804=>'L', 7805=>'L', 7806=>'L', 7807=>'L', 7808=>'L', 7809=>'L', 7810=>'L', 7811=>'L', 7812=>'L', 7813=>'L', 7814=>'L', 7815=>'L', 7816=>'L', 7817=>'L', 7818=>'L', 7819=>'L', 7820=>'L', 7821=>'L', 7822=>'L', 7823=>'L', 7824=>'L', 7825=>'L', 7826=>'L', 7827=>'L', 7828=>'L', 7829=>'L', 7830=>'L', 7831=>'L', 7832=>'L', 7833=>'L', 7834=>'L', 7835=>'L', 7840=>'L', 7841=>'L', 7842=>'L', 7843=>'L', 7844=>'L', 7845=>'L', 7846=>'L', 7847=>'L', 7848=>'L', 7849=>'L', 7850=>'L', 7851=>'L', 7852=>'L', 7853=>'L', 7854=>'L', 7855=>'L', 7856=>'L', 7857=>'L', 7858=>'L', 7859=>'L', 7860=>'L', 7861=>'L', 7862=>'L', 7863=>'L', 7864=>'L', 7865=>'L', 7866=>'L', 7867=>'L', 7868=>'L', 7869=>'L', 7870=>'L', 7871=>'L', 7872=>'L', 7873=>'L', 7874=>'L', 7875=>'L', 7876=>'L', 7877=>'L', 7878=>'L', 7879=>'L', 7880=>'L', 7881=>'L', 7882=>'L', 7883=>'L', 7884=>'L', 7885=>'L', 7886=>'L', 7887=>'L', 7888=>'L', 7889=>'L', 7890=>'L', 7891=>'L', 7892=>'L', 7893=>'L', 7894=>'L', 7895=>'L', 7896=>'L', 7897=>'L', 7898=>'L', 7899=>'L', 7900=>'L', 7901=>'L', 7902=>'L', 7903=>'L', 7904=>'L', 7905=>'L', 7906=>'L', 7907=>'L', 7908=>'L', 7909=>'L', 7910=>'L', 7911=>'L', 7912=>'L', 7913=>'L', 7914=>'L', 7915=>'L', 7916=>'L', 7917=>'L', 7918=>'L', 7919=>'L', 7920=>'L', 7921=>'L', 7922=>'L', 7923=>'L', 7924=>'L', 7925=>'L', 7926=>'L', 7927=>'L', 7928=>'L', 7929=>'L', 7936=>'L', 7937=>'L', 7938=>'L', 7939=>'L', 7940=>'L', 7941=>'L', 7942=>'L', 7943=>'L', 7944=>'L', 7945=>'L', 7946=>'L', 7947=>'L', 7948=>'L', 7949=>'L', 7950=>'L', 7951=>'L', 7952=>'L', 7953=>'L', 7954=>'L', 7955=>'L', 7956=>'L', 7957=>'L', 7960=>'L', 7961=>'L', 7962=>'L', 7963=>'L', 7964=>'L', 7965=>'L', 7968=>'L', 7969=>'L', 7970=>'L', 7971=>'L', 7972=>'L', 7973=>'L', 7974=>'L', 7975=>'L', 7976=>'L', 7977=>'L', 7978=>'L', 7979=>'L', 7980=>'L', 7981=>'L', 7982=>'L', 7983=>'L', 7984=>'L', 7985=>'L', 7986=>'L', 7987=>'L', 7988=>'L', 7989=>'L', 7990=>'L', 7991=>'L', 7992=>'L', 7993=>'L', 7994=>'L', 7995=>'L', 7996=>'L', 7997=>'L', 7998=>'L', 7999=>'L', 8000=>'L', 8001=>'L', 8002=>'L', 8003=>'L', 8004=>'L', 8005=>'L', 8008=>'L', 8009=>'L', 8010=>'L', 8011=>'L', 8012=>'L', 8013=>'L', 8016=>'L', 8017=>'L', 8018=>'L', 8019=>'L', 8020=>'L', 8021=>'L', 8022=>'L', 8023=>'L', 8025=>'L', 8027=>'L', 8029=>'L', 8031=>'L', 8032=>'L', 8033=>'L', 8034=>'L', 8035=>'L', 8036=>'L', 8037=>'L', 8038=>'L', 8039=>'L', 8040=>'L', 8041=>'L', 8042=>'L', 8043=>'L', 8044=>'L', 8045=>'L', 8046=>'L', 8047=>'L', 8048=>'L', 8049=>'L', 8050=>'L', 8051=>'L', 8052=>'L', 8053=>'L', 8054=>'L', 8055=>'L', 8056=>'L', 8057=>'L', 8058=>'L', 8059=>'L', 8060=>'L', 8061=>'L', 8064=>'L', 8065=>'L', 8066=>'L', 8067=>'L', 8068=>'L', 8069=>'L', 8070=>'L', 8071=>'L', 8072=>'L', 8073=>'L', 8074=>'L', 8075=>'L', 8076=>'L', 8077=>'L', 8078=>'L', 8079=>'L', 8080=>'L', 8081=>'L', 8082=>'L', 8083=>'L', 8084=>'L', 8085=>'L', 8086=>'L', 8087=>'L', 8088=>'L', 8089=>'L', 8090=>'L', 8091=>'L', 8092=>'L', 8093=>'L', 8094=>'L', 8095=>'L', 8096=>'L', 8097=>'L', 8098=>'L', 8099=>'L', 8100=>'L', 8101=>'L', 8102=>'L', 8103=>'L', 8104=>'L', 8105=>'L', 8106=>'L', 8107=>'L', 8108=>'L', 8109=>'L', 8110=>'L', 8111=>'L', 8112=>'L', 8113=>'L', 8114=>'L', 8115=>'L', 8116=>'L', 8118=>'L', 8119=>'L', 8120=>'L', 8121=>'L', 8122=>'L', 8123=>'L', 8124=>'L', 8125=>'ON', 8126=>'L', 8127=>'ON', 8128=>'ON', 8129=>'ON', 8130=>'L', 8131=>'L', 8132=>'L', 8134=>'L', 8135=>'L', 8136=>'L', 8137=>'L', 8138=>'L', 8139=>'L', 8140=>'L', 8141=>'ON', 8142=>'ON', 8143=>'ON', 8144=>'L', 8145=>'L', 8146=>'L', 8147=>'L', 8150=>'L', 8151=>'L', 8152=>'L', 8153=>'L', 8154=>'L', 8155=>'L', 8157=>'ON', 8158=>'ON', 8159=>'ON', 8160=>'L', 8161=>'L', 8162=>'L', 8163=>'L', 8164=>'L', 8165=>'L', 8166=>'L', 8167=>'L', 8168=>'L', 8169=>'L', 8170=>'L', 8171=>'L', 8172=>'L', 8173=>'ON', 8174=>'ON', 8175=>'ON', 8178=>'L', 8179=>'L', 8180=>'L', 8182=>'L', 8183=>'L', 8184=>'L', 8185=>'L', 8186=>'L', 8187=>'L', 8188=>'L', 8189=>'ON', 8190=>'ON', 8192=>'WS', 8193=>'WS', 8194=>'WS', 8195=>'WS', 8196=>'WS', 8197=>'WS', 8198=>'WS', 8199=>'WS', 8200=>'WS', 8201=>'WS', 8202=>'WS', 8203=>'BN', 8204=>'BN', 8205=>'BN', 8206=>'L', 8207=>'R', 8208=>'ON', 8209=>'ON', 8210=>'ON', 8211=>'ON', 8212=>'ON', 8213=>'ON', 8214=>'ON', 8215=>'ON', 8216=>'ON', 8217=>'ON', 8218=>'ON', 8219=>'ON', 8220=>'ON', 8221=>'ON', 8222=>'ON', 8223=>'ON', 8224=>'ON', 8225=>'ON', 8226=>'ON', 8227=>'ON', 8228=>'ON', 8229=>'ON', 8230=>'ON', 8231=>'ON', 8232=>'WS', 8233=>'B', 8234=>'LRE', 8235=>'RLE', 8236=>'PDF', 8237=>'LRO', 8238=>'RLO', 8239=>'CS', 8240=>'ET', 8241=>'ET', 8242=>'ET', 8243=>'ET', 8244=>'ET', 8245=>'ON', 8246=>'ON', 8247=>'ON', 8248=>'ON', 8249=>'ON', 8250=>'ON', 8251=>'ON', 8252=>'ON', 8253=>'ON', 8254=>'ON', 8255=>'ON', 8256=>'ON', 8257=>'ON', 8258=>'ON', 8259=>'ON', 8260=>'CS', 8261=>'ON', 8262=>'ON', 8263=>'ON', 8264=>'ON', 8265=>'ON', 8266=>'ON', 8267=>'ON', 8268=>'ON', 8269=>'ON', 8270=>'ON', 8271=>'ON', 8272=>'ON', 8273=>'ON', 8274=>'ON', 8275=>'ON', 8276=>'ON', 8277=>'ON', 8278=>'ON', 8279=>'ON', 8280=>'ON', 8281=>'ON', 8282=>'ON', 8283=>'ON', 8284=>'ON', 8285=>'ON', 8286=>'ON', 8287=>'WS', 8288=>'BN', 8289=>'BN', 8290=>'BN', 8291=>'BN', 8298=>'BN', 8299=>'BN', 8300=>'BN', 8301=>'BN', 8302=>'BN', 8303=>'BN', 8304=>'EN', 8305=>'L', 8308=>'EN', 8309=>'EN', 8310=>'EN', 8311=>'EN', 8312=>'EN', 8313=>'EN', 8314=>'ES', 8315=>'ES', 8316=>'ON', 8317=>'ON', 8318=>'ON', 8319=>'L', 8320=>'EN', 8321=>'EN', 8322=>'EN', 8323=>'EN', 8324=>'EN', 8325=>'EN', 8326=>'EN', 8327=>'EN', 8328=>'EN', 8329=>'EN', 8330=>'ES', 8331=>'ES', 8332=>'ON', 8333=>'ON', 8334=>'ON', 8336=>'L', 8337=>'L', 8338=>'L', 8339=>'L', 8340=>'L', 8352=>'ET', 8353=>'ET', 8354=>'ET', 8355=>'ET', 8356=>'ET', 8357=>'ET', 8358=>'ET', 8359=>'ET', 8360=>'ET', 8361=>'ET', 8362=>'ET', 8363=>'ET', 8364=>'ET', 8365=>'ET', 8366=>'ET', 8367=>'ET', 8368=>'ET', 8369=>'ET', 8370=>'ET', 8371=>'ET', 8372=>'ET', 8373=>'ET', 8400=>'NSM', 8401=>'NSM', 8402=>'NSM', 8403=>'NSM', 8404=>'NSM', 8405=>'NSM', 8406=>'NSM', 8407=>'NSM', 8408=>'NSM', 8409=>'NSM', 8410=>'NSM', 8411=>'NSM', 8412=>'NSM', 8413=>'NSM', 8414=>'NSM', 8415=>'NSM', 8416=>'NSM', 8417=>'NSM', 8418=>'NSM', 8419=>'NSM', 8420=>'NSM', 8421=>'NSM', 8422=>'NSM', 8423=>'NSM', 8424=>'NSM', 8425=>'NSM', 8426=>'NSM', 8427=>'NSM', 8428=>'NSM', 8429=>'NSM', 8430=>'NSM', 8431=>'NSM', 8448=>'ON', 8449=>'ON', 8450=>'L', 8451=>'ON', 8452=>'ON', 8453=>'ON', 8454=>'ON', 8455=>'L', 8456=>'ON', 8457=>'ON', 8458=>'L', 8459=>'L', 8460=>'L', 8461=>'L', 8462=>'L', 8463=>'L', 8464=>'L', 8465=>'L', 8466=>'L', 8467=>'L', 8468=>'ON', 8469=>'L', 8470=>'ON', 8471=>'ON', 8472=>'ON', 8473=>'L', 8474=>'L', 8475=>'L', 8476=>'L', 8477=>'L', 8478=>'ON', 8479=>'ON', 8480=>'ON', 8481=>'ON', 8482=>'ON', 8483=>'ON', 8484=>'L', 8485=>'ON', 8486=>'L', 8487=>'ON', 8488=>'L', 8489=>'ON', 8490=>'L', 8491=>'L', 8492=>'L', 8493=>'L', 8494=>'ET', 8495=>'L', 8496=>'L', 8497=>'L', 8498=>'L', 8499=>'L', 8500=>'L', 8501=>'L', 8502=>'L', 8503=>'L', 8504=>'L', 8505=>'L', 8506=>'ON', 8507=>'ON', 8508=>'L', 8509=>'L', 8510=>'L', 8511=>'L', 8512=>'ON', 8513=>'ON', 8514=>'ON', 8515=>'ON', 8516=>'ON', 8517=>'L', 8518=>'L', 8519=>'L', 8520=>'L', 8521=>'L', 8522=>'ON', 8523=>'ON', 8524=>'ON', 8525=>'ON', 8526=>'L', 8531=>'ON', 8532=>'ON', 8533=>'ON', 8534=>'ON', 8535=>'ON', 8536=>'ON', 8537=>'ON', 8538=>'ON', 8539=>'ON', 8540=>'ON', 8541=>'ON', 8542=>'ON', 8543=>'ON', 8544=>'L', 8545=>'L', 8546=>'L', 8547=>'L', 8548=>'L', 8549=>'L', 8550=>'L', 8551=>'L', 8552=>'L', 8553=>'L', 8554=>'L', 8555=>'L', 8556=>'L', 8557=>'L', 8558=>'L', 8559=>'L', 8560=>'L', 8561=>'L', 8562=>'L', 8563=>'L', 8564=>'L', 8565=>'L', 8566=>'L', 8567=>'L', 8568=>'L', 8569=>'L', 8570=>'L', 8571=>'L', 8572=>'L', 8573=>'L', 8574=>'L', 8575=>'L', 8576=>'L', 8577=>'L', 8578=>'L', 8579=>'L', 8580=>'L', 8592=>'ON', 8593=>'ON', 8594=>'ON', 8595=>'ON', 8596=>'ON', 8597=>'ON', 8598=>'ON', 8599=>'ON', 8600=>'ON', 8601=>'ON', 8602=>'ON', 8603=>'ON', 8604=>'ON', 8605=>'ON', 8606=>'ON', 8607=>'ON', 8608=>'ON', 8609=>'ON', 8610=>'ON', 8611=>'ON', 8612=>'ON', 8613=>'ON', 8614=>'ON', 8615=>'ON', 8616=>'ON', 8617=>'ON', 8618=>'ON', 8619=>'ON', 8620=>'ON', 8621=>'ON', 8622=>'ON', 8623=>'ON', 8624=>'ON', 8625=>'ON', 8626=>'ON', 8627=>'ON', 8628=>'ON', 8629=>'ON', 8630=>'ON', 8631=>'ON', 8632=>'ON', 8633=>'ON', 8634=>'ON', 8635=>'ON', 8636=>'ON', 8637=>'ON', 8638=>'ON', 8639=>'ON', 8640=>'ON', 8641=>'ON', 8642=>'ON', 8643=>'ON', 8644=>'ON', 8645=>'ON', 8646=>'ON', 8647=>'ON', 8648=>'ON', 8649=>'ON', 8650=>'ON', 8651=>'ON', 8652=>'ON', 8653=>'ON', 8654=>'ON', 8655=>'ON', 8656=>'ON', 8657=>'ON', 8658=>'ON', 8659=>'ON', 8660=>'ON', 8661=>'ON', 8662=>'ON', 8663=>'ON', 8664=>'ON', 8665=>'ON', 8666=>'ON', 8667=>'ON', 8668=>'ON', 8669=>'ON', 8670=>'ON', 8671=>'ON', 8672=>'ON', 8673=>'ON', 8674=>'ON', 8675=>'ON', 8676=>'ON', 8677=>'ON', 8678=>'ON', 8679=>'ON', 8680=>'ON', 8681=>'ON', 8682=>'ON', 8683=>'ON', 8684=>'ON', 8685=>'ON', 8686=>'ON', 8687=>'ON', 8688=>'ON', 8689=>'ON', 8690=>'ON', 8691=>'ON', 8692=>'ON', 8693=>'ON', 8694=>'ON', 8695=>'ON', 8696=>'ON', 8697=>'ON', 8698=>'ON', 8699=>'ON', 8700=>'ON', 8701=>'ON', 8702=>'ON', 8703=>'ON', 8704=>'ON', 8705=>'ON', 8706=>'ON', 8707=>'ON', 8708=>'ON', 8709=>'ON', 8710=>'ON', 8711=>'ON', 8712=>'ON', 8713=>'ON', 8714=>'ON', 8715=>'ON', 8716=>'ON', 8717=>'ON', 8718=>'ON', 8719=>'ON', 8720=>'ON', 8721=>'ON', 8722=>'ES', 8723=>'ET', 8724=>'ON', 8725=>'ON', 8726=>'ON', 8727=>'ON', 8728=>'ON', 8729=>'ON', 8730=>'ON', 8731=>'ON', 8732=>'ON', 8733=>'ON', 8734=>'ON', 8735=>'ON', 8736=>'ON', 8737=>'ON', 8738=>'ON', 8739=>'ON', 8740=>'ON', 8741=>'ON', 8742=>'ON', 8743=>'ON', 8744=>'ON', 8745=>'ON', 8746=>'ON', 8747=>'ON', 8748=>'ON', 8749=>'ON', 8750=>'ON', 8751=>'ON', 8752=>'ON', 8753=>'ON', 8754=>'ON', 8755=>'ON', 8756=>'ON', 8757=>'ON', 8758=>'ON', 8759=>'ON', 8760=>'ON', 8761=>'ON', 8762=>'ON', 8763=>'ON', 8764=>'ON', 8765=>'ON', 8766=>'ON', 8767=>'ON', 8768=>'ON', 8769=>'ON', 8770=>'ON', 8771=>'ON', 8772=>'ON', 8773=>'ON', 8774=>'ON', 8775=>'ON', 8776=>'ON', 8777=>'ON', 8778=>'ON', 8779=>'ON', 8780=>'ON', 8781=>'ON', 8782=>'ON', 8783=>'ON', 8784=>'ON', 8785=>'ON', 8786=>'ON', 8787=>'ON', 8788=>'ON', 8789=>'ON', 8790=>'ON', 8791=>'ON', 8792=>'ON', 8793=>'ON', 8794=>'ON', 8795=>'ON', 8796=>'ON', 8797=>'ON', 8798=>'ON', 8799=>'ON', 8800=>'ON', 8801=>'ON', 8802=>'ON', 8803=>'ON', 8804=>'ON', 8805=>'ON', 8806=>'ON', 8807=>'ON', 8808=>'ON', 8809=>'ON', 8810=>'ON', 8811=>'ON', 8812=>'ON', 8813=>'ON', 8814=>'ON', 8815=>'ON', 8816=>'ON', 8817=>'ON', 8818=>'ON', 8819=>'ON', 8820=>'ON', 8821=>'ON', 8822=>'ON', 8823=>'ON', 8824=>'ON', 8825=>'ON', 8826=>'ON', 8827=>'ON', 8828=>'ON', 8829=>'ON', 8830=>'ON', 8831=>'ON', 8832=>'ON', 8833=>'ON', 8834=>'ON', 8835=>'ON', 8836=>'ON', 8837=>'ON', 8838=>'ON', 8839=>'ON', 8840=>'ON', 8841=>'ON', 8842=>'ON', 8843=>'ON', 8844=>'ON', 8845=>'ON', 8846=>'ON', 8847=>'ON', 8848=>'ON', 8849=>'ON', 8850=>'ON', 8851=>'ON', 8852=>'ON', 8853=>'ON', 8854=>'ON', 8855=>'ON', 8856=>'ON', 8857=>'ON', 8858=>'ON', 8859=>'ON', 8860=>'ON', 8861=>'ON', 8862=>'ON', 8863=>'ON', 8864=>'ON', 8865=>'ON', 8866=>'ON', 8867=>'ON', 8868=>'ON', 8869=>'ON', 8870=>'ON', 8871=>'ON', 8872=>'ON', 8873=>'ON', 8874=>'ON', 8875=>'ON', 8876=>'ON', 8877=>'ON', 8878=>'ON', 8879=>'ON', 8880=>'ON', 8881=>'ON', 8882=>'ON', 8883=>'ON', 8884=>'ON', 8885=>'ON', 8886=>'ON', 8887=>'ON', 8888=>'ON', 8889=>'ON', 8890=>'ON', 8891=>'ON', 8892=>'ON', 8893=>'ON', 8894=>'ON', 8895=>'ON', 8896=>'ON', 8897=>'ON', 8898=>'ON', 8899=>'ON', 8900=>'ON', 8901=>'ON', 8902=>'ON', 8903=>'ON', 8904=>'ON', 8905=>'ON', 8906=>'ON', 8907=>'ON', 8908=>'ON', 8909=>'ON', 8910=>'ON', 8911=>'ON', 8912=>'ON', 8913=>'ON', 8914=>'ON', 8915=>'ON', 8916=>'ON', 8917=>'ON', 8918=>'ON', 8919=>'ON', 8920=>'ON', 8921=>'ON', 8922=>'ON', 8923=>'ON', 8924=>'ON', 8925=>'ON', 8926=>'ON', 8927=>'ON', 8928=>'ON', 8929=>'ON', 8930=>'ON', 8931=>'ON', 8932=>'ON', 8933=>'ON', 8934=>'ON', 8935=>'ON', 8936=>'ON', 8937=>'ON', 8938=>'ON', 8939=>'ON', 8940=>'ON', 8941=>'ON', 8942=>'ON', 8943=>'ON', 8944=>'ON', 8945=>'ON', 8946=>'ON', 8947=>'ON', 8948=>'ON', 8949=>'ON', 8950=>'ON', 8951=>'ON', 8952=>'ON', 8953=>'ON', 8954=>'ON', 8955=>'ON', 8956=>'ON', 8957=>'ON', 8958=>'ON', 8959=>'ON', 8960=>'ON', 8961=>'ON', 8962=>'ON', 8963=>'ON', 8964=>'ON', 8965=>'ON', 8966=>'ON', 8967=>'ON', 8968=>'ON', 8969=>'ON', 8970=>'ON', 8971=>'ON', 8972=>'ON', 8973=>'ON', 8974=>'ON', 8975=>'ON', 8976=>'ON', 8977=>'ON', 8978=>'ON', 8979=>'ON', 8980=>'ON', 8981=>'ON', 8982=>'ON', 8983=>'ON', 8984=>'ON', 8985=>'ON', 8986=>'ON', 8987=>'ON', 8988=>'ON', 8989=>'ON', 8990=>'ON', 8991=>'ON', 8992=>'ON', 8993=>'ON', 8994=>'ON', 8995=>'ON', 8996=>'ON', 8997=>'ON', 8998=>'ON', 8999=>'ON', 9000=>'ON', 9001=>'ON', 9002=>'ON', 9003=>'ON', 9004=>'ON', 9005=>'ON', 9006=>'ON', 9007=>'ON', 9008=>'ON', 9009=>'ON', 9010=>'ON', 9011=>'ON', 9012=>'ON', 9013=>'ON', 9014=>'L', 9015=>'L', 9016=>'L', 9017=>'L', 9018=>'L', 9019=>'L', 9020=>'L', 9021=>'L', 9022=>'L', 9023=>'L', 9024=>'L', 9025=>'L', 9026=>'L', 9027=>'L', 9028=>'L', 9029=>'L', 9030=>'L', 9031=>'L', 9032=>'L', 9033=>'L', 9034=>'L', 9035=>'L', 9036=>'L', 9037=>'L', 9038=>'L', 9039=>'L', 9040=>'L', 9041=>'L', 9042=>'L', 9043=>'L', 9044=>'L', 9045=>'L', 9046=>'L', 9047=>'L', 9048=>'L', 9049=>'L', 9050=>'L', 9051=>'L', 9052=>'L', 9053=>'L', 9054=>'L', 9055=>'L', 9056=>'L', 9057=>'L', 9058=>'L', 9059=>'L', 9060=>'L', 9061=>'L', 9062=>'L', 9063=>'L', 9064=>'L', 9065=>'L', 9066=>'L', 9067=>'L', 9068=>'L', 9069=>'L', 9070=>'L', 9071=>'L', 9072=>'L', 9073=>'L', 9074=>'L', 9075=>'L', 9076=>'L', 9077=>'L', 9078=>'L', 9079=>'L', 9080=>'L', 9081=>'L', 9082=>'L', 9083=>'ON', 9084=>'ON', 9085=>'ON', 9086=>'ON', 9087=>'ON', 9088=>'ON', 9089=>'ON', 9090=>'ON', 9091=>'ON', 9092=>'ON', 9093=>'ON', 9094=>'ON', 9095=>'ON', 9096=>'ON', 9097=>'ON', 9098=>'ON', 9099=>'ON', 9100=>'ON', 9101=>'ON', 9102=>'ON', 9103=>'ON', 9104=>'ON', 9105=>'ON', 9106=>'ON', 9107=>'ON', 9108=>'ON', 9109=>'L', 9110=>'ON', 9111=>'ON', 9112=>'ON', 9113=>'ON', 9114=>'ON', 9115=>'ON', 9116=>'ON', 9117=>'ON', 9118=>'ON', 9119=>'ON', 9120=>'ON', 9121=>'ON', 9122=>'ON', 9123=>'ON', 9124=>'ON', 9125=>'ON', 9126=>'ON', 9127=>'ON', 9128=>'ON', 9129=>'ON', 9130=>'ON', 9131=>'ON', 9132=>'ON', 9133=>'ON', 9134=>'ON', 9135=>'ON', 9136=>'ON', 9137=>'ON', 9138=>'ON', 9139=>'ON', 9140=>'ON', 9141=>'ON', 9142=>'ON', 9143=>'ON', 9144=>'ON', 9145=>'ON', 9146=>'ON', 9147=>'ON', 9148=>'ON', 9149=>'ON', 9150=>'ON', 9151=>'ON', 9152=>'ON', 9153=>'ON', 9154=>'ON', 9155=>'ON', 9156=>'ON', 9157=>'ON', 9158=>'ON', 9159=>'ON', 9160=>'ON', 9161=>'ON', 9162=>'ON', 9163=>'ON', 9164=>'ON', 9165=>'ON', 9166=>'ON', 9167=>'ON', 9168=>'ON', 9169=>'ON', 9170=>'ON', 9171=>'ON', 9172=>'ON', 9173=>'ON', 9174=>'ON', 9175=>'ON', 9176=>'ON', 9177=>'ON', 9178=>'ON', 9179=>'ON', 9180=>'ON', 9181=>'ON', 9182=>'ON', 9183=>'ON', 9184=>'ON', 9185=>'ON', 9186=>'ON', 9187=>'ON', 9188=>'ON', 9189=>'ON', 9190=>'ON', 9191=>'ON', 9216=>'ON', 9217=>'ON', 9218=>'ON', 9219=>'ON', 9220=>'ON', 9221=>'ON', 9222=>'ON', 9223=>'ON', 9224=>'ON', 9225=>'ON', 9226=>'ON', 9227=>'ON', 9228=>'ON', 9229=>'ON', 9230=>'ON', 9231=>'ON', 9232=>'ON', 9233=>'ON', 9234=>'ON', 9235=>'ON', 9236=>'ON', 9237=>'ON', 9238=>'ON', 9239=>'ON', 9240=>'ON', 9241=>'ON', 9242=>'ON', 9243=>'ON', 9244=>'ON', 9245=>'ON', 9246=>'ON', 9247=>'ON', 9248=>'ON', 9249=>'ON', 9250=>'ON', 9251=>'ON', 9252=>'ON', 9253=>'ON', 9254=>'ON', 9280=>'ON', 9281=>'ON', 9282=>'ON', 9283=>'ON', 9284=>'ON', 9285=>'ON', 9286=>'ON', 9287=>'ON', 9288=>'ON', 9289=>'ON', 9290=>'ON', 9312=>'ON', 9313=>'ON', 9314=>'ON', 9315=>'ON', 9316=>'ON', 9317=>'ON', 9318=>'ON', 9319=>'ON', 9320=>'ON', 9321=>'ON', 9322=>'ON', 9323=>'ON', 9324=>'ON', 9325=>'ON', 9326=>'ON', 9327=>'ON', 9328=>'ON', 9329=>'ON', 9330=>'ON', 9331=>'ON', 9332=>'ON', 9333=>'ON', 9334=>'ON', 9335=>'ON', 9336=>'ON', 9337=>'ON', 9338=>'ON', 9339=>'ON', 9340=>'ON', 9341=>'ON', 9342=>'ON', 9343=>'ON', 9344=>'ON', 9345=>'ON', 9346=>'ON', 9347=>'ON', 9348=>'ON', 9349=>'ON', 9350=>'ON', 9351=>'ON', 9352=>'EN', 9353=>'EN', 9354=>'EN', 9355=>'EN', 9356=>'EN', 9357=>'EN', 9358=>'EN', 9359=>'EN', 9360=>'EN', 9361=>'EN', 9362=>'EN', 9363=>'EN', 9364=>'EN', 9365=>'EN', 9366=>'EN', 9367=>'EN', 9368=>'EN', 9369=>'EN', 9370=>'EN', 9371=>'EN', 9372=>'L', 9373=>'L', 9374=>'L', 9375=>'L', 9376=>'L', 9377=>'L', 9378=>'L', 9379=>'L', 9380=>'L', 9381=>'L', 9382=>'L', 9383=>'L', 9384=>'L', 9385=>'L', 9386=>'L', 9387=>'L', 9388=>'L', 9389=>'L', 9390=>'L', 9391=>'L', 9392=>'L', 9393=>'L', 9394=>'L', 9395=>'L', 9396=>'L', 9397=>'L', 9398=>'L', 9399=>'L', 9400=>'L', 9401=>'L', 9402=>'L', 9403=>'L', 9404=>'L', 9405=>'L', 9406=>'L', 9407=>'L', 9408=>'L', 9409=>'L', 9410=>'L', 9411=>'L', 9412=>'L', 9413=>'L', 9414=>'L', 9415=>'L', 9416=>'L', 9417=>'L', 9418=>'L', 9419=>'L', 9420=>'L', 9421=>'L', 9422=>'L', 9423=>'L', 9424=>'L', 9425=>'L', 9426=>'L', 9427=>'L', 9428=>'L', 9429=>'L', 9430=>'L', 9431=>'L', 9432=>'L', 9433=>'L', 9434=>'L', 9435=>'L', 9436=>'L', 9437=>'L', 9438=>'L', 9439=>'L', 9440=>'L', 9441=>'L', 9442=>'L', 9443=>'L', 9444=>'L', 9445=>'L', 9446=>'L', 9447=>'L', 9448=>'L', 9449=>'L', 9450=>'ON', 9451=>'ON', 9452=>'ON', 9453=>'ON', 9454=>'ON', 9455=>'ON', 9456=>'ON', 9457=>'ON', 9458=>'ON', 9459=>'ON', 9460=>'ON', 9461=>'ON', 9462=>'ON', 9463=>'ON', 9464=>'ON', 9465=>'ON', 9466=>'ON', 9467=>'ON', 9468=>'ON', 9469=>'ON', 9470=>'ON', 9471=>'ON', 9472=>'ON', 9473=>'ON', 9474=>'ON', 9475=>'ON', 9476=>'ON', 9477=>'ON', 9478=>'ON', 9479=>'ON', 9480=>'ON', 9481=>'ON', 9482=>'ON', 9483=>'ON', 9484=>'ON', 9485=>'ON', 9486=>'ON', 9487=>'ON', 9488=>'ON', 9489=>'ON', 9490=>'ON', 9491=>'ON', 9492=>'ON', 9493=>'ON', 9494=>'ON', 9495=>'ON', 9496=>'ON', 9497=>'ON', 9498=>'ON', 9499=>'ON', 9500=>'ON', 9501=>'ON', 9502=>'ON', 9503=>'ON', 9504=>'ON', 9505=>'ON', 9506=>'ON', 9507=>'ON', 9508=>'ON', 9509=>'ON', 9510=>'ON', 9511=>'ON', 9512=>'ON', 9513=>'ON', 9514=>'ON', 9515=>'ON', 9516=>'ON', 9517=>'ON', 9518=>'ON', 9519=>'ON', 9520=>'ON', 9521=>'ON', 9522=>'ON', 9523=>'ON', 9524=>'ON', 9525=>'ON', 9526=>'ON', 9527=>'ON', 9528=>'ON', 9529=>'ON', 9530=>'ON', 9531=>'ON', 9532=>'ON', 9533=>'ON', 9534=>'ON', 9535=>'ON', 9536=>'ON', 9537=>'ON', 9538=>'ON', 9539=>'ON', 9540=>'ON', 9541=>'ON', 9542=>'ON', 9543=>'ON', 9544=>'ON', 9545=>'ON', 9546=>'ON', 9547=>'ON', 9548=>'ON', 9549=>'ON', 9550=>'ON', 9551=>'ON', 9552=>'ON', 9553=>'ON', 9554=>'ON', 9555=>'ON', 9556=>'ON', 9557=>'ON', 9558=>'ON', 9559=>'ON', 9560=>'ON', 9561=>'ON', 9562=>'ON', 9563=>'ON', 9564=>'ON', 9565=>'ON', 9566=>'ON', 9567=>'ON', 9568=>'ON', 9569=>'ON', 9570=>'ON', 9571=>'ON', 9572=>'ON', 9573=>'ON', 9574=>'ON', 9575=>'ON', 9576=>'ON', 9577=>'ON', 9578=>'ON', 9579=>'ON', 9580=>'ON', 9581=>'ON', 9582=>'ON', 9583=>'ON', 9584=>'ON', 9585=>'ON', 9586=>'ON', 9587=>'ON', 9588=>'ON', 9589=>'ON', 9590=>'ON', 9591=>'ON', 9592=>'ON', 9593=>'ON', 9594=>'ON', 9595=>'ON', 9596=>'ON', 9597=>'ON', 9598=>'ON', 9599=>'ON', 9600=>'ON', 9601=>'ON', 9602=>'ON', 9603=>'ON', 9604=>'ON', 9605=>'ON', 9606=>'ON', 9607=>'ON', 9608=>'ON', 9609=>'ON', 9610=>'ON', 9611=>'ON', 9612=>'ON', 9613=>'ON', 9614=>'ON', 9615=>'ON', 9616=>'ON', 9617=>'ON', 9618=>'ON', 9619=>'ON', 9620=>'ON', 9621=>'ON', 9622=>'ON', 9623=>'ON', 9624=>'ON', 9625=>'ON', 9626=>'ON', 9627=>'ON', 9628=>'ON', 9629=>'ON', 9630=>'ON', 9631=>'ON', 9632=>'ON', 9633=>'ON', 9634=>'ON', 9635=>'ON', 9636=>'ON', 9637=>'ON', 9638=>'ON', 9639=>'ON', 9640=>'ON', 9641=>'ON', 9642=>'ON', 9643=>'ON', 9644=>'ON', 9645=>'ON', 9646=>'ON', 9647=>'ON', 9648=>'ON', 9649=>'ON', 9650=>'ON', 9651=>'ON', 9652=>'ON', 9653=>'ON', 9654=>'ON', 9655=>'ON', 9656=>'ON', 9657=>'ON', 9658=>'ON', 9659=>'ON', 9660=>'ON', 9661=>'ON', 9662=>'ON', 9663=>'ON', 9664=>'ON', 9665=>'ON', 9666=>'ON', 9667=>'ON', 9668=>'ON', 9669=>'ON', 9670=>'ON', 9671=>'ON', 9672=>'ON', 9673=>'ON', 9674=>'ON', 9675=>'ON', 9676=>'ON', 9677=>'ON', 9678=>'ON', 9679=>'ON', 9680=>'ON', 9681=>'ON', 9682=>'ON', 9683=>'ON', 9684=>'ON', 9685=>'ON', 9686=>'ON', 9687=>'ON', 9688=>'ON', 9689=>'ON', 9690=>'ON', 9691=>'ON', 9692=>'ON', 9693=>'ON', 9694=>'ON', 9695=>'ON', 9696=>'ON', 9697=>'ON', 9698=>'ON', 9699=>'ON', 9700=>'ON', 9701=>'ON', 9702=>'ON', 9703=>'ON', 9704=>'ON', 9705=>'ON', 9706=>'ON', 9707=>'ON', 9708=>'ON', 9709=>'ON', 9710=>'ON', 9711=>'ON', 9712=>'ON', 9713=>'ON', 9714=>'ON', 9715=>'ON', 9716=>'ON', 9717=>'ON', 9718=>'ON', 9719=>'ON', 9720=>'ON', 9721=>'ON', 9722=>'ON', 9723=>'ON', 9724=>'ON', 9725=>'ON', 9726=>'ON', 9727=>'ON', 9728=>'ON', 9729=>'ON', 9730=>'ON', 9731=>'ON', 9732=>'ON', 9733=>'ON', 9734=>'ON', 9735=>'ON', 9736=>'ON', 9737=>'ON', 9738=>'ON', 9739=>'ON', 9740=>'ON', 9741=>'ON', 9742=>'ON', 9743=>'ON', 9744=>'ON', 9745=>'ON', 9746=>'ON', 9747=>'ON', 9748=>'ON', 9749=>'ON', 9750=>'ON', 9751=>'ON', 9752=>'ON', 9753=>'ON', 9754=>'ON', 9755=>'ON', 9756=>'ON', 9757=>'ON', 9758=>'ON', 9759=>'ON', 9760=>'ON', 9761=>'ON', 9762=>'ON', 9763=>'ON', 9764=>'ON', 9765=>'ON', 9766=>'ON', 9767=>'ON', 9768=>'ON', 9769=>'ON', 9770=>'ON', 9771=>'ON', 9772=>'ON', 9773=>'ON', 9774=>'ON', 9775=>'ON', 9776=>'ON', 9777=>'ON', 9778=>'ON', 9779=>'ON', 9780=>'ON', 9781=>'ON', 9782=>'ON', 9783=>'ON', 9784=>'ON', 9785=>'ON', 9786=>'ON', 9787=>'ON', 9788=>'ON', 9789=>'ON', 9790=>'ON', 9791=>'ON', 9792=>'ON', 9793=>'ON', 9794=>'ON', 9795=>'ON', 9796=>'ON', 9797=>'ON', 9798=>'ON', 9799=>'ON', 9800=>'ON', 9801=>'ON', 9802=>'ON', 9803=>'ON', 9804=>'ON', 9805=>'ON', 9806=>'ON', 9807=>'ON', 9808=>'ON', 9809=>'ON', 9810=>'ON', 9811=>'ON', 9812=>'ON', 9813=>'ON', 9814=>'ON', 9815=>'ON', 9816=>'ON', 9817=>'ON', 9818=>'ON', 9819=>'ON', 9820=>'ON', 9821=>'ON', 9822=>'ON', 9823=>'ON', 9824=>'ON', 9825=>'ON', 9826=>'ON', 9827=>'ON', 9828=>'ON', 9829=>'ON', 9830=>'ON', 9831=>'ON', 9832=>'ON', 9833=>'ON', 9834=>'ON', 9835=>'ON', 9836=>'ON', 9837=>'ON', 9838=>'ON', 9839=>'ON', 9840=>'ON', 9841=>'ON', 9842=>'ON', 9843=>'ON', 9844=>'ON', 9845=>'ON', 9846=>'ON', 9847=>'ON', 9848=>'ON', 9849=>'ON', 9850=>'ON', 9851=>'ON', 9852=>'ON', 9853=>'ON', 9854=>'ON', 9855=>'ON', 9856=>'ON', 9857=>'ON', 9858=>'ON', 9859=>'ON', 9860=>'ON', 9861=>'ON', 9862=>'ON', 9863=>'ON', 9864=>'ON', 9865=>'ON', 9866=>'ON', 9867=>'ON', 9868=>'ON', 9869=>'ON', 9870=>'ON', 9871=>'ON', 9872=>'ON', 9873=>'ON', 9874=>'ON', 9875=>'ON', 9876=>'ON', 9877=>'ON', 9878=>'ON', 9879=>'ON', 9880=>'ON', 9881=>'ON', 9882=>'ON', 9883=>'ON', 9884=>'ON', 9888=>'ON', 9889=>'ON', 9890=>'ON', 9891=>'ON', 9892=>'ON', 9893=>'ON', 9894=>'ON', 9895=>'ON', 9896=>'ON', 9897=>'ON', 9898=>'ON', 9899=>'ON', 9900=>'L', 9901=>'ON', 9902=>'ON', 9903=>'ON', 9904=>'ON', 9905=>'ON', 9906=>'ON', 9985=>'ON', 9986=>'ON', 9987=>'ON', 9988=>'ON', 9990=>'ON', 9991=>'ON', 9992=>'ON', 9993=>'ON', 9996=>'ON', 9997=>'ON', 9998=>'ON', 9999=>'ON', 10000=>'ON', 10001=>'ON', 10002=>'ON', 10003=>'ON', 10004=>'ON', 10005=>'ON', 10006=>'ON', 10007=>'ON', 10008=>'ON', 10009=>'ON', 10010=>'ON', 10011=>'ON', 10012=>'ON', 10013=>'ON', 10014=>'ON', 10015=>'ON', 10016=>'ON', 10017=>'ON', 10018=>'ON', 10019=>'ON', 10020=>'ON', 10021=>'ON', 10022=>'ON', 10023=>'ON', 10025=>'ON', 10026=>'ON', 10027=>'ON', 10028=>'ON', 10029=>'ON', 10030=>'ON', 10031=>'ON', 10032=>'ON', 10033=>'ON', 10034=>'ON', 10035=>'ON', 10036=>'ON', 10037=>'ON', 10038=>'ON', 10039=>'ON', 10040=>'ON', 10041=>'ON', 10042=>'ON', 10043=>'ON', 10044=>'ON', 10045=>'ON', 10046=>'ON', 10047=>'ON', 10048=>'ON', 10049=>'ON', 10050=>'ON', 10051=>'ON', 10052=>'ON', 10053=>'ON', 10054=>'ON', 10055=>'ON', 10056=>'ON', 10057=>'ON', 10058=>'ON', 10059=>'ON', 10061=>'ON', 10063=>'ON', 10064=>'ON', 10065=>'ON', 10066=>'ON', 10070=>'ON', 10072=>'ON', 10073=>'ON', 10074=>'ON', 10075=>'ON', 10076=>'ON', 10077=>'ON', 10078=>'ON', 10081=>'ON', 10082=>'ON', 10083=>'ON', 10084=>'ON', 10085=>'ON', 10086=>'ON', 10087=>'ON', 10088=>'ON', 10089=>'ON', 10090=>'ON', 10091=>'ON', 10092=>'ON', 10093=>'ON', 10094=>'ON', 10095=>'ON', 10096=>'ON', 10097=>'ON', 10098=>'ON', 10099=>'ON', 10100=>'ON', 10101=>'ON', 10102=>'ON', 10103=>'ON', 10104=>'ON', 10105=>'ON', 10106=>'ON', 10107=>'ON', 10108=>'ON', 10109=>'ON', 10110=>'ON', 10111=>'ON', 10112=>'ON', 10113=>'ON', 10114=>'ON', 10115=>'ON', 10116=>'ON', 10117=>'ON', 10118=>'ON', 10119=>'ON', 10120=>'ON', 10121=>'ON', 10122=>'ON', 10123=>'ON', 10124=>'ON', 10125=>'ON', 10126=>'ON', 10127=>'ON', 10128=>'ON', 10129=>'ON', 10130=>'ON', 10131=>'ON', 10132=>'ON', 10136=>'ON', 10137=>'ON', 10138=>'ON', 10139=>'ON', 10140=>'ON', 10141=>'ON', 10142=>'ON', 10143=>'ON', 10144=>'ON', 10145=>'ON', 10146=>'ON', 10147=>'ON', 10148=>'ON', 10149=>'ON', 10150=>'ON', 10151=>'ON', 10152=>'ON', 10153=>'ON', 10154=>'ON', 10155=>'ON', 10156=>'ON', 10157=>'ON', 10158=>'ON', 10159=>'ON', 10161=>'ON', 10162=>'ON', 10163=>'ON', 10164=>'ON', 10165=>'ON', 10166=>'ON', 10167=>'ON', 10168=>'ON', 10169=>'ON', 10170=>'ON', 10171=>'ON', 10172=>'ON', 10173=>'ON', 10174=>'ON', 10176=>'ON', 10177=>'ON', 10178=>'ON', 10179=>'ON', 10180=>'ON', 10181=>'ON', 10182=>'ON', 10183=>'ON', 10184=>'ON', 10185=>'ON', 10186=>'ON', 10192=>'ON', 10193=>'ON', 10194=>'ON', 10195=>'ON', 10196=>'ON', 10197=>'ON', 10198=>'ON', 10199=>'ON', 10200=>'ON', 10201=>'ON', 10202=>'ON', 10203=>'ON', 10204=>'ON', 10205=>'ON', 10206=>'ON', 10207=>'ON', 10208=>'ON', 10209=>'ON', 10210=>'ON', 10211=>'ON', 10212=>'ON', 10213=>'ON', 10214=>'ON', 10215=>'ON', 10216=>'ON', 10217=>'ON', 10218=>'ON', 10219=>'ON', 10224=>'ON', 10225=>'ON', 10226=>'ON', 10227=>'ON', 10228=>'ON', 10229=>'ON', 10230=>'ON', 10231=>'ON', 10232=>'ON', 10233=>'ON', 10234=>'ON', 10235=>'ON', 10236=>'ON', 10237=>'ON', 10238=>'ON', 10239=>'ON', 10240=>'L', 10241=>'L', 10242=>'L', 10243=>'L', 10244=>'L', 10245=>'L', 10246=>'L', 10247=>'L', 10248=>'L', 10249=>'L', 10250=>'L', 10251=>'L', 10252=>'L', 10253=>'L', 10254=>'L', 10255=>'L', 10256=>'L', 10257=>'L', 10258=>'L', 10259=>'L', 10260=>'L', 10261=>'L', 10262=>'L', 10263=>'L', 10264=>'L', 10265=>'L', 10266=>'L', 10267=>'L', 10268=>'L', 10269=>'L', 10270=>'L', 10271=>'L', 10272=>'L', 10273=>'L', 10274=>'L', 10275=>'L', 10276=>'L', 10277=>'L', 10278=>'L', 10279=>'L', 10280=>'L', 10281=>'L', 10282=>'L', 10283=>'L', 10284=>'L', 10285=>'L', 10286=>'L', 10287=>'L', 10288=>'L', 10289=>'L', 10290=>'L', 10291=>'L', 10292=>'L', 10293=>'L', 10294=>'L', 10295=>'L', 10296=>'L', 10297=>'L', 10298=>'L', 10299=>'L', 10300=>'L', 10301=>'L', 10302=>'L', 10303=>'L', 10304=>'L', 10305=>'L', 10306=>'L', 10307=>'L', 10308=>'L', 10309=>'L', 10310=>'L', 10311=>'L', 10312=>'L', 10313=>'L', 10314=>'L', 10315=>'L', 10316=>'L', 10317=>'L', 10318=>'L', 10319=>'L', 10320=>'L', 10321=>'L', 10322=>'L', 10323=>'L', 10324=>'L', 10325=>'L', 10326=>'L', 10327=>'L', 10328=>'L', 10329=>'L', 10330=>'L', 10331=>'L', 10332=>'L', 10333=>'L', 10334=>'L', 10335=>'L', 10336=>'L', 10337=>'L', 10338=>'L', 10339=>'L', 10340=>'L', 10341=>'L', 10342=>'L', 10343=>'L', 10344=>'L', 10345=>'L', 10346=>'L', 10347=>'L', 10348=>'L', 10349=>'L', 10350=>'L', 10351=>'L', 10352=>'L', 10353=>'L', 10354=>'L', 10355=>'L', 10356=>'L', 10357=>'L', 10358=>'L', 10359=>'L', 10360=>'L', 10361=>'L', 10362=>'L', 10363=>'L', 10364=>'L', 10365=>'L', 10366=>'L', 10367=>'L', 10368=>'L', 10369=>'L', 10370=>'L', 10371=>'L', 10372=>'L', 10373=>'L', 10374=>'L', 10375=>'L', 10376=>'L', 10377=>'L', 10378=>'L', 10379=>'L', 10380=>'L', 10381=>'L', 10382=>'L', 10383=>'L', 10384=>'L', 10385=>'L', 10386=>'L', 10387=>'L', 10388=>'L', 10389=>'L', 10390=>'L', 10391=>'L', 10392=>'L', 10393=>'L', 10394=>'L', 10395=>'L', 10396=>'L', 10397=>'L', 10398=>'L', 10399=>'L', 10400=>'L', 10401=>'L', 10402=>'L', 10403=>'L', 10404=>'L', 10405=>'L', 10406=>'L', 10407=>'L', 10408=>'L', 10409=>'L', 10410=>'L', 10411=>'L', 10412=>'L', 10413=>'L', 10414=>'L', 10415=>'L', 10416=>'L', 10417=>'L', 10418=>'L', 10419=>'L', 10420=>'L', 10421=>'L', 10422=>'L', 10423=>'L', 10424=>'L', 10425=>'L', 10426=>'L', 10427=>'L', 10428=>'L', 10429=>'L', 10430=>'L', 10431=>'L', 10432=>'L', 10433=>'L', 10434=>'L', 10435=>'L', 10436=>'L', 10437=>'L', 10438=>'L', 10439=>'L', 10440=>'L', 10441=>'L', 10442=>'L', 10443=>'L', 10444=>'L', 10445=>'L', 10446=>'L', 10447=>'L', 10448=>'L', 10449=>'L', 10450=>'L', 10451=>'L', 10452=>'L', 10453=>'L', 10454=>'L', 10455=>'L', 10456=>'L', 10457=>'L', 10458=>'L', 10459=>'L', 10460=>'L', 10461=>'L', 10462=>'L', 10463=>'L', 10464=>'L', 10465=>'L', 10466=>'L', 10467=>'L', 10468=>'L', 10469=>'L', 10470=>'L', 10471=>'L', 10472=>'L', 10473=>'L', 10474=>'L', 10475=>'L', 10476=>'L', 10477=>'L', 10478=>'L', 10479=>'L', 10480=>'L', 10481=>'L', 10482=>'L', 10483=>'L', 10484=>'L', 10485=>'L', 10486=>'L', 10487=>'L', 10488=>'L', 10489=>'L', 10490=>'L', 10491=>'L', 10492=>'L', 10493=>'L', 10494=>'L', 10495=>'L', 10496=>'ON', 10497=>'ON', 10498=>'ON', 10499=>'ON', 10500=>'ON', 10501=>'ON', 10502=>'ON', 10503=>'ON', 10504=>'ON', 10505=>'ON', 10506=>'ON', 10507=>'ON', 10508=>'ON', 10509=>'ON', 10510=>'ON', 10511=>'ON', 10512=>'ON', 10513=>'ON', 10514=>'ON', 10515=>'ON', 10516=>'ON', 10517=>'ON', 10518=>'ON', 10519=>'ON', 10520=>'ON', 10521=>'ON', 10522=>'ON', 10523=>'ON', 10524=>'ON', 10525=>'ON', 10526=>'ON', 10527=>'ON', 10528=>'ON', 10529=>'ON', 10530=>'ON', 10531=>'ON', 10532=>'ON', 10533=>'ON', 10534=>'ON', 10535=>'ON', 10536=>'ON', 10537=>'ON', 10538=>'ON', 10539=>'ON', 10540=>'ON', 10541=>'ON', 10542=>'ON', 10543=>'ON', 10544=>'ON', 10545=>'ON', 10546=>'ON', 10547=>'ON', 10548=>'ON', 10549=>'ON', 10550=>'ON', 10551=>'ON', 10552=>'ON', 10553=>'ON', 10554=>'ON', 10555=>'ON', 10556=>'ON', 10557=>'ON', 10558=>'ON', 10559=>'ON', 10560=>'ON', 10561=>'ON', 10562=>'ON', 10563=>'ON', 10564=>'ON', 10565=>'ON', 10566=>'ON', 10567=>'ON', 10568=>'ON', 10569=>'ON', 10570=>'ON', 10571=>'ON', 10572=>'ON', 10573=>'ON', 10574=>'ON', 10575=>'ON', 10576=>'ON', 10577=>'ON', 10578=>'ON', 10579=>'ON', 10580=>'ON', 10581=>'ON', 10582=>'ON', 10583=>'ON', 10584=>'ON', 10585=>'ON', 10586=>'ON', 10587=>'ON', 10588=>'ON', 10589=>'ON', 10590=>'ON', 10591=>'ON', 10592=>'ON', 10593=>'ON', 10594=>'ON', 10595=>'ON', 10596=>'ON', 10597=>'ON', 10598=>'ON', 10599=>'ON', 10600=>'ON', 10601=>'ON', 10602=>'ON', 10603=>'ON', 10604=>'ON', 10605=>'ON', 10606=>'ON', 10607=>'ON', 10608=>'ON', 10609=>'ON', 10610=>'ON', 10611=>'ON', 10612=>'ON', 10613=>'ON', 10614=>'ON', 10615=>'ON', 10616=>'ON', 10617=>'ON', 10618=>'ON', 10619=>'ON', 10620=>'ON', 10621=>'ON', 10622=>'ON', 10623=>'ON', 10624=>'ON', 10625=>'ON', 10626=>'ON', 10627=>'ON', 10628=>'ON', 10629=>'ON', 10630=>'ON', 10631=>'ON', 10632=>'ON', 10633=>'ON', 10634=>'ON', 10635=>'ON', 10636=>'ON', 10637=>'ON', 10638=>'ON', 10639=>'ON', 10640=>'ON', 10641=>'ON', 10642=>'ON', 10643=>'ON', 10644=>'ON', 10645=>'ON', 10646=>'ON', 10647=>'ON', 10648=>'ON', 10649=>'ON', 10650=>'ON', 10651=>'ON', 10652=>'ON', 10653=>'ON', 10654=>'ON', 10655=>'ON', 10656=>'ON', 10657=>'ON', 10658=>'ON', 10659=>'ON', 10660=>'ON', 10661=>'ON', 10662=>'ON', 10663=>'ON', 10664=>'ON', 10665=>'ON', 10666=>'ON', 10667=>'ON', 10668=>'ON', 10669=>'ON', 10670=>'ON', 10671=>'ON', 10672=>'ON', 10673=>'ON', 10674=>'ON', 10675=>'ON', 10676=>'ON', 10677=>'ON', 10678=>'ON', 10679=>'ON', 10680=>'ON', 10681=>'ON', 10682=>'ON', 10683=>'ON', 10684=>'ON', 10685=>'ON', 10686=>'ON', 10687=>'ON', 10688=>'ON', 10689=>'ON', 10690=>'ON', 10691=>'ON', 10692=>'ON', 10693=>'ON', 10694=>'ON', 10695=>'ON', 10696=>'ON', 10697=>'ON', 10698=>'ON', 10699=>'ON', 10700=>'ON', 10701=>'ON', 10702=>'ON', 10703=>'ON', 10704=>'ON', 10705=>'ON', 10706=>'ON', 10707=>'ON', 10708=>'ON', 10709=>'ON', 10710=>'ON', 10711=>'ON', 10712=>'ON', 10713=>'ON', 10714=>'ON', 10715=>'ON', 10716=>'ON', 10717=>'ON', 10718=>'ON', 10719=>'ON', 10720=>'ON', 10721=>'ON', 10722=>'ON', 10723=>'ON', 10724=>'ON', 10725=>'ON', 10726=>'ON', 10727=>'ON', 10728=>'ON', 10729=>'ON', 10730=>'ON', 10731=>'ON', 10732=>'ON', 10733=>'ON', 10734=>'ON', 10735=>'ON', 10736=>'ON', 10737=>'ON', 10738=>'ON', 10739=>'ON', 10740=>'ON', 10741=>'ON', 10742=>'ON', 10743=>'ON', 10744=>'ON', 10745=>'ON', 10746=>'ON', 10747=>'ON', 10748=>'ON', 10749=>'ON', 10750=>'ON', 10751=>'ON', 10752=>'ON', 10753=>'ON', 10754=>'ON', 10755=>'ON', 10756=>'ON', 10757=>'ON', 10758=>'ON', 10759=>'ON', 10760=>'ON', 10761=>'ON', 10762=>'ON', 10763=>'ON', 10764=>'ON', 10765=>'ON', 10766=>'ON', 10767=>'ON', 10768=>'ON', 10769=>'ON', 10770=>'ON', 10771=>'ON', 10772=>'ON', 10773=>'ON', 10774=>'ON', 10775=>'ON', 10776=>'ON', 10777=>'ON', 10778=>'ON', 10779=>'ON', 10780=>'ON', 10781=>'ON', 10782=>'ON', 10783=>'ON', 10784=>'ON', 10785=>'ON', 10786=>'ON', 10787=>'ON', 10788=>'ON', 10789=>'ON', 10790=>'ON', 10791=>'ON', 10792=>'ON', 10793=>'ON', 10794=>'ON', 10795=>'ON', 10796=>'ON', 10797=>'ON', 10798=>'ON', 10799=>'ON', 10800=>'ON', 10801=>'ON', 10802=>'ON', 10803=>'ON', 10804=>'ON', 10805=>'ON', 10806=>'ON', 10807=>'ON', 10808=>'ON', 10809=>'ON', 10810=>'ON', 10811=>'ON', 10812=>'ON', 10813=>'ON', 10814=>'ON', 10815=>'ON', 10816=>'ON', 10817=>'ON', 10818=>'ON', 10819=>'ON', 10820=>'ON', 10821=>'ON', 10822=>'ON', 10823=>'ON', 10824=>'ON', 10825=>'ON', 10826=>'ON', 10827=>'ON', 10828=>'ON', 10829=>'ON', 10830=>'ON', 10831=>'ON', 10832=>'ON', 10833=>'ON', 10834=>'ON', 10835=>'ON', 10836=>'ON', 10837=>'ON', 10838=>'ON', 10839=>'ON', 10840=>'ON', 10841=>'ON', 10842=>'ON', 10843=>'ON', 10844=>'ON', 10845=>'ON', 10846=>'ON', 10847=>'ON', 10848=>'ON', 10849=>'ON', 10850=>'ON', 10851=>'ON', 10852=>'ON', 10853=>'ON', 10854=>'ON', 10855=>'ON', 10856=>'ON', 10857=>'ON', 10858=>'ON', 10859=>'ON', 10860=>'ON', 10861=>'ON', 10862=>'ON', 10863=>'ON', 10864=>'ON', 10865=>'ON', 10866=>'ON', 10867=>'ON', 10868=>'ON', 10869=>'ON', 10870=>'ON', 10871=>'ON', 10872=>'ON', 10873=>'ON', 10874=>'ON', 10875=>'ON', 10876=>'ON', 10877=>'ON', 10878=>'ON', 10879=>'ON', 10880=>'ON', 10881=>'ON', 10882=>'ON', 10883=>'ON', 10884=>'ON', 10885=>'ON', 10886=>'ON', 10887=>'ON', 10888=>'ON', 10889=>'ON', 10890=>'ON', 10891=>'ON', 10892=>'ON', 10893=>'ON', 10894=>'ON', 10895=>'ON', 10896=>'ON', 10897=>'ON', 10898=>'ON', 10899=>'ON', 10900=>'ON', 10901=>'ON', 10902=>'ON', 10903=>'ON', 10904=>'ON', 10905=>'ON', 10906=>'ON', 10907=>'ON', 10908=>'ON', 10909=>'ON', 10910=>'ON', 10911=>'ON', 10912=>'ON', 10913=>'ON', 10914=>'ON', 10915=>'ON', 10916=>'ON', 10917=>'ON', 10918=>'ON', 10919=>'ON', 10920=>'ON', 10921=>'ON', 10922=>'ON', 10923=>'ON', 10924=>'ON', 10925=>'ON', 10926=>'ON', 10927=>'ON', 10928=>'ON', 10929=>'ON', 10930=>'ON', 10931=>'ON', 10932=>'ON', 10933=>'ON', 10934=>'ON', 10935=>'ON', 10936=>'ON', 10937=>'ON', 10938=>'ON', 10939=>'ON', 10940=>'ON', 10941=>'ON', 10942=>'ON', 10943=>'ON', 10944=>'ON', 10945=>'ON', 10946=>'ON', 10947=>'ON', 10948=>'ON', 10949=>'ON', 10950=>'ON', 10951=>'ON', 10952=>'ON', 10953=>'ON', 10954=>'ON', 10955=>'ON', 10956=>'ON', 10957=>'ON', 10958=>'ON', 10959=>'ON', 10960=>'ON', 10961=>'ON', 10962=>'ON', 10963=>'ON', 10964=>'ON', 10965=>'ON', 10966=>'ON', 10967=>'ON', 10968=>'ON', 10969=>'ON', 10970=>'ON', 10971=>'ON', 10972=>'ON', 10973=>'ON', 10974=>'ON', 10975=>'ON', 10976=>'ON', 10977=>'ON', 10978=>'ON', 10979=>'ON', 10980=>'ON', 10981=>'ON', 10982=>'ON', 10983=>'ON', 10984=>'ON', 10985=>'ON', 10986=>'ON', 10987=>'ON', 10988=>'ON', 10989=>'ON', 10990=>'ON', 10991=>'ON', 10992=>'ON', 10993=>'ON', 10994=>'ON', 10995=>'ON', 10996=>'ON', 10997=>'ON', 10998=>'ON', 10999=>'ON', 11000=>'ON', 11001=>'ON', 11002=>'ON', 11003=>'ON', 11004=>'ON', 11005=>'ON', 11006=>'ON', 11007=>'ON', 11008=>'ON', 11009=>'ON', 11010=>'ON', 11011=>'ON', 11012=>'ON', 11013=>'ON', 11014=>'ON', 11015=>'ON', 11016=>'ON', 11017=>'ON', 11018=>'ON', 11019=>'ON', 11020=>'ON', 11021=>'ON', 11022=>'ON', 11023=>'ON', 11024=>'ON', 11025=>'ON', 11026=>'ON', 11027=>'ON', 11028=>'ON', 11029=>'ON', 11030=>'ON', 11031=>'ON', 11032=>'ON', 11033=>'ON', 11034=>'ON', 11040=>'ON', 11041=>'ON', 11042=>'ON', 11043=>'ON', 11264=>'L', 11265=>'L', 11266=>'L', 11267=>'L', 11268=>'L', 11269=>'L', 11270=>'L', 11271=>'L', 11272=>'L', 11273=>'L', 11274=>'L', 11275=>'L', 11276=>'L', 11277=>'L', 11278=>'L', 11279=>'L', 11280=>'L', 11281=>'L', 11282=>'L', 11283=>'L', 11284=>'L', 11285=>'L', 11286=>'L', 11287=>'L', 11288=>'L', 11289=>'L', 11290=>'L', 11291=>'L', 11292=>'L', 11293=>'L', 11294=>'L', 11295=>'L', 11296=>'L', 11297=>'L', 11298=>'L', 11299=>'L', 11300=>'L', 11301=>'L', 11302=>'L', 11303=>'L', 11304=>'L', 11305=>'L', 11306=>'L', 11307=>'L', 11308=>'L', 11309=>'L', 11310=>'L', 11312=>'L', 11313=>'L', 11314=>'L', 11315=>'L', 11316=>'L', 11317=>'L', 11318=>'L', 11319=>'L', 11320=>'L', 11321=>'L', 11322=>'L', 11323=>'L', 11324=>'L', 11325=>'L', 11326=>'L', 11327=>'L', 11328=>'L', 11329=>'L', 11330=>'L', 11331=>'L', 11332=>'L', 11333=>'L', 11334=>'L', 11335=>'L', 11336=>'L', 11337=>'L', 11338=>'L', 11339=>'L', 11340=>'L', 11341=>'L', 11342=>'L', 11343=>'L', 11344=>'L', 11345=>'L', 11346=>'L', 11347=>'L', 11348=>'L', 11349=>'L', 11350=>'L', 11351=>'L', 11352=>'L', 11353=>'L', 11354=>'L', 11355=>'L', 11356=>'L', 11357=>'L', 11358=>'L', 11360=>'L', 11361=>'L', 11362=>'L', 11363=>'L', 11364=>'L', 11365=>'L', 11366=>'L', 11367=>'L', 11368=>'L', 11369=>'L', 11370=>'L', 11371=>'L', 11372=>'L', 11380=>'L', 11381=>'L', 11382=>'L', 11383=>'L', 11392=>'L', 11393=>'L', 11394=>'L', 11395=>'L', 11396=>'L', 11397=>'L', 11398=>'L', 11399=>'L', 11400=>'L', 11401=>'L', 11402=>'L', 11403=>'L', 11404=>'L', 11405=>'L', 11406=>'L', 11407=>'L', 11408=>'L', 11409=>'L', 11410=>'L', 11411=>'L', 11412=>'L', 11413=>'L', 11414=>'L', 11415=>'L', 11416=>'L', 11417=>'L', 11418=>'L', 11419=>'L', 11420=>'L', 11421=>'L', 11422=>'L', 11423=>'L', 11424=>'L', 11425=>'L', 11426=>'L', 11427=>'L', 11428=>'L', 11429=>'L', 11430=>'L', 11431=>'L', 11432=>'L', 11433=>'L', 11434=>'L', 11435=>'L', 11436=>'L', 11437=>'L', 11438=>'L', 11439=>'L', 11440=>'L', 11441=>'L', 11442=>'L', 11443=>'L', 11444=>'L', 11445=>'L', 11446=>'L', 11447=>'L', 11448=>'L', 11449=>'L', 11450=>'L', 11451=>'L', 11452=>'L', 11453=>'L', 11454=>'L', 11455=>'L', 11456=>'L', 11457=>'L', 11458=>'L', 11459=>'L', 11460=>'L', 11461=>'L', 11462=>'L', 11463=>'L', 11464=>'L', 11465=>'L', 11466=>'L', 11467=>'L', 11468=>'L', 11469=>'L', 11470=>'L', 11471=>'L', 11472=>'L', 11473=>'L', 11474=>'L', 11475=>'L', 11476=>'L', 11477=>'L', 11478=>'L', 11479=>'L', 11480=>'L', 11481=>'L', 11482=>'L', 11483=>'L', 11484=>'L', 11485=>'L', 11486=>'L', 11487=>'L', 11488=>'L', 11489=>'L', 11490=>'L', 11491=>'L', 11492=>'L', 11493=>'ON', 11494=>'ON', 11495=>'ON', 11496=>'ON', 11497=>'ON', 11498=>'ON', 11513=>'ON', 11514=>'ON', 11515=>'ON', 11516=>'ON', 11517=>'ON', 11518=>'ON', 11519=>'ON', 11520=>'L', 11521=>'L', 11522=>'L', 11523=>'L', 11524=>'L', 11525=>'L', 11526=>'L', 11527=>'L', 11528=>'L', 11529=>'L', 11530=>'L', 11531=>'L', 11532=>'L', 11533=>'L', 11534=>'L', 11535=>'L', 11536=>'L', 11537=>'L', 11538=>'L', 11539=>'L', 11540=>'L', 11541=>'L', 11542=>'L', 11543=>'L', 11544=>'L', 11545=>'L', 11546=>'L', 11547=>'L', 11548=>'L', 11549=>'L', 11550=>'L', 11551=>'L', 11552=>'L', 11553=>'L', 11554=>'L', 11555=>'L', 11556=>'L', 11557=>'L', 11568=>'L', 11569=>'L', 11570=>'L', 11571=>'L', 11572=>'L', 11573=>'L', 11574=>'L', 11575=>'L', 11576=>'L', 11577=>'L', 11578=>'L', 11579=>'L', 11580=>'L', 11581=>'L', 11582=>'L', 11583=>'L', 11584=>'L', 11585=>'L', 11586=>'L', 11587=>'L', 11588=>'L', 11589=>'L', 11590=>'L', 11591=>'L', 11592=>'L', 11593=>'L', 11594=>'L', 11595=>'L', 11596=>'L', 11597=>'L', 11598=>'L', 11599=>'L', 11600=>'L', 11601=>'L', 11602=>'L', 11603=>'L', 11604=>'L', 11605=>'L', 11606=>'L', 11607=>'L', 11608=>'L', 11609=>'L', 11610=>'L', 11611=>'L', 11612=>'L', 11613=>'L', 11614=>'L', 11615=>'L', 11616=>'L', 11617=>'L', 11618=>'L', 11619=>'L', 11620=>'L', 11621=>'L', 11631=>'L', 11648=>'L', 11649=>'L', 11650=>'L', 11651=>'L', 11652=>'L', 11653=>'L', 11654=>'L', 11655=>'L', 11656=>'L', 11657=>'L', 11658=>'L', 11659=>'L', 11660=>'L', 11661=>'L', 11662=>'L', 11663=>'L', 11664=>'L', 11665=>'L', 11666=>'L', 11667=>'L', 11668=>'L', 11669=>'L', 11670=>'L', 11680=>'L', 11681=>'L', 11682=>'L', 11683=>'L', 11684=>'L', 11685=>'L', 11686=>'L', 11688=>'L', 11689=>'L', 11690=>'L', 11691=>'L', 11692=>'L', 11693=>'L', 11694=>'L', 11696=>'L', 11697=>'L', 11698=>'L', 11699=>'L', 11700=>'L', 11701=>'L', 11702=>'L', 11704=>'L', 11705=>'L', 11706=>'L', 11707=>'L', 11708=>'L', 11709=>'L', 11710=>'L', 11712=>'L', 11713=>'L', 11714=>'L', 11715=>'L', 11716=>'L', 11717=>'L', 11718=>'L', 11720=>'L', 11721=>'L', 11722=>'L', 11723=>'L', 11724=>'L', 11725=>'L', 11726=>'L', 11728=>'L', 11729=>'L', 11730=>'L', 11731=>'L', 11732=>'L', 11733=>'L', 11734=>'L', 11736=>'L', 11737=>'L', 11738=>'L', 11739=>'L', 11740=>'L', 11741=>'L', 11742=>'L', 11776=>'ON', 11777=>'ON', 11778=>'ON', 11779=>'ON', 11780=>'ON', 11781=>'ON', 11782=>'ON', 11783=>'ON', 11784=>'ON', 11785=>'ON', 11786=>'ON', 11787=>'ON', 11788=>'ON', 11789=>'ON', 11790=>'ON', 11791=>'ON', 11792=>'ON', 11793=>'ON', 11794=>'ON', 11795=>'ON', 11796=>'ON', 11797=>'ON', 11798=>'ON', 11799=>'ON', 11804=>'ON', 11805=>'ON', 11904=>'ON', 11905=>'ON', 11906=>'ON', 11907=>'ON', 11908=>'ON', 11909=>'ON', 11910=>'ON', 11911=>'ON', 11912=>'ON', 11913=>'ON', 11914=>'ON', 11915=>'ON', 11916=>'ON', 11917=>'ON', 11918=>'ON', 11919=>'ON', 11920=>'ON', 11921=>'ON', 11922=>'ON', 11923=>'ON', 11924=>'ON', 11925=>'ON', 11926=>'ON', 11927=>'ON', 11928=>'ON', 11929=>'ON', 11931=>'ON', 11932=>'ON', 11933=>'ON', 11934=>'ON', 11935=>'ON', 11936=>'ON', 11937=>'ON', 11938=>'ON', 11939=>'ON', 11940=>'ON', 11941=>'ON', 11942=>'ON', 11943=>'ON', 11944=>'ON', 11945=>'ON', 11946=>'ON', 11947=>'ON', 11948=>'ON', 11949=>'ON', 11950=>'ON', 11951=>'ON', 11952=>'ON', 11953=>'ON', 11954=>'ON', 11955=>'ON', 11956=>'ON', 11957=>'ON', 11958=>'ON', 11959=>'ON', 11960=>'ON', 11961=>'ON', 11962=>'ON', 11963=>'ON', 11964=>'ON', 11965=>'ON', 11966=>'ON', 11967=>'ON', 11968=>'ON', 11969=>'ON', 11970=>'ON', 11971=>'ON', 11972=>'ON', 11973=>'ON', 11974=>'ON', 11975=>'ON', 11976=>'ON', 11977=>'ON', 11978=>'ON', 11979=>'ON', 11980=>'ON', 11981=>'ON', 11982=>'ON', 11983=>'ON', 11984=>'ON', 11985=>'ON', 11986=>'ON', 11987=>'ON', 11988=>'ON', 11989=>'ON', 11990=>'ON', 11991=>'ON', 11992=>'ON', 11993=>'ON', 11994=>'ON', 11995=>'ON', 11996=>'ON', 11997=>'ON', 11998=>'ON', 11999=>'ON', 12000=>'ON', 12001=>'ON', 12002=>'ON', 12003=>'ON', 12004=>'ON', 12005=>'ON', 12006=>'ON', 12007=>'ON', 12008=>'ON', 12009=>'ON', 12010=>'ON', 12011=>'ON', 12012=>'ON', 12013=>'ON', 12014=>'ON', 12015=>'ON', 12016=>'ON', 12017=>'ON', 12018=>'ON', 12019=>'ON', 12032=>'ON', 12033=>'ON', 12034=>'ON', 12035=>'ON', 12036=>'ON', 12037=>'ON', 12038=>'ON', 12039=>'ON', 12040=>'ON', 12041=>'ON', 12042=>'ON', 12043=>'ON', 12044=>'ON', 12045=>'ON', 12046=>'ON', 12047=>'ON', 12048=>'ON', 12049=>'ON', 12050=>'ON', 12051=>'ON', 12052=>'ON', 12053=>'ON', 12054=>'ON', 12055=>'ON', 12056=>'ON', 12057=>'ON', 12058=>'ON', 12059=>'ON', 12060=>'ON', 12061=>'ON', 12062=>'ON', 12063=>'ON', 12064=>'ON', 12065=>'ON', 12066=>'ON', 12067=>'ON', 12068=>'ON', 12069=>'ON', 12070=>'ON', 12071=>'ON', 12072=>'ON', 12073=>'ON', 12074=>'ON', 12075=>'ON', 12076=>'ON', 12077=>'ON', 12078=>'ON', 12079=>'ON', 12080=>'ON', 12081=>'ON', 12082=>'ON', 12083=>'ON', 12084=>'ON', 12085=>'ON', 12086=>'ON', 12087=>'ON', 12088=>'ON', 12089=>'ON', 12090=>'ON', 12091=>'ON', 12092=>'ON', 12093=>'ON', 12094=>'ON', 12095=>'ON', 12096=>'ON', 12097=>'ON', 12098=>'ON', 12099=>'ON', 12100=>'ON', 12101=>'ON', 12102=>'ON', 12103=>'ON', 12104=>'ON', 12105=>'ON', 12106=>'ON', 12107=>'ON', 12108=>'ON', 12109=>'ON', 12110=>'ON', 12111=>'ON', 12112=>'ON', 12113=>'ON', 12114=>'ON', 12115=>'ON', 12116=>'ON', 12117=>'ON', 12118=>'ON', 12119=>'ON', 12120=>'ON', 12121=>'ON', 12122=>'ON', 12123=>'ON', 12124=>'ON', 12125=>'ON', 12126=>'ON', 12127=>'ON', 12128=>'ON', 12129=>'ON', 12130=>'ON', 12131=>'ON', 12132=>'ON', 12133=>'ON', 12134=>'ON', 12135=>'ON', 12136=>'ON', 12137=>'ON', 12138=>'ON', 12139=>'ON', 12140=>'ON', 12141=>'ON', 12142=>'ON', 12143=>'ON', 12144=>'ON', 12145=>'ON', 12146=>'ON', 12147=>'ON', 12148=>'ON', 12149=>'ON', 12150=>'ON', 12151=>'ON', 12152=>'ON', 12153=>'ON', 12154=>'ON', 12155=>'ON', 12156=>'ON', 12157=>'ON', 12158=>'ON', 12159=>'ON', 12160=>'ON', 12161=>'ON', 12162=>'ON', 12163=>'ON', 12164=>'ON', 12165=>'ON', 12166=>'ON', 12167=>'ON', 12168=>'ON', 12169=>'ON', 12170=>'ON', 12171=>'ON', 12172=>'ON', 12173=>'ON', 12174=>'ON', 12175=>'ON', 12176=>'ON', 12177=>'ON', 12178=>'ON', 12179=>'ON', 12180=>'ON', 12181=>'ON', 12182=>'ON', 12183=>'ON', 12184=>'ON', 12185=>'ON', 12186=>'ON', 12187=>'ON', 12188=>'ON', 12189=>'ON', 12190=>'ON', 12191=>'ON', 12192=>'ON', 12193=>'ON', 12194=>'ON', 12195=>'ON', 12196=>'ON', 12197=>'ON', 12198=>'ON', 12199=>'ON', 12200=>'ON', 12201=>'ON', 12202=>'ON', 12203=>'ON', 12204=>'ON', 12205=>'ON', 12206=>'ON', 12207=>'ON', 12208=>'ON', 12209=>'ON', 12210=>'ON', 12211=>'ON', 12212=>'ON', 12213=>'ON', 12214=>'ON', 12215=>'ON', 12216=>'ON', 12217=>'ON', 12218=>'ON', 12219=>'ON', 12220=>'ON', 12221=>'ON', 12222=>'ON', 12223=>'ON', 12224=>'ON', 12225=>'ON', 12226=>'ON', 12227=>'ON', 12228=>'ON', 12229=>'ON', 12230=>'ON', 12231=>'ON', 12232=>'ON', 12233=>'ON', 12234=>'ON', 12235=>'ON', 12236=>'ON', 12237=>'ON', 12238=>'ON', 12239=>'ON', 12240=>'ON', 12241=>'ON', 12242=>'ON', 12243=>'ON', 12244=>'ON', 12245=>'ON', 12272=>'ON', 12273=>'ON', 12274=>'ON', 12275=>'ON', 12276=>'ON', 12277=>'ON', 12278=>'ON', 12279=>'ON', 12280=>'ON', 12281=>'ON', 12282=>'ON', 12283=>'ON', 12288=>'WS', 12289=>'ON', 12290=>'ON', 12291=>'ON', 12292=>'ON', 12293=>'L', 12294=>'L', 12295=>'L', 12296=>'ON', 12297=>'ON', 12298=>'ON', 12299=>'ON', 12300=>'ON', 12301=>'ON', 12302=>'ON', 12303=>'ON', 12304=>'ON', 12305=>'ON', 12306=>'ON', 12307=>'ON', 12308=>'ON', 12309=>'ON', 12310=>'ON', 12311=>'ON', 12312=>'ON', 12313=>'ON', 12314=>'ON', 12315=>'ON', 12316=>'ON', 12317=>'ON', 12318=>'ON', 12319=>'ON', 12320=>'ON', 12321=>'L', 12322=>'L', 12323=>'L', 12324=>'L', 12325=>'L', 12326=>'L', 12327=>'L', 12328=>'L', 12329=>'L', 12330=>'NSM', 12331=>'NSM', 12332=>'NSM', 12333=>'NSM', 12334=>'NSM', 12335=>'NSM', 12336=>'ON', 12337=>'L', 12338=>'L', 12339=>'L', 12340=>'L', 12341=>'L', 12342=>'ON', 12343=>'ON', 12344=>'L', 12345=>'L', 12346=>'L', 12347=>'L', 12348=>'L', 12349=>'ON', 12350=>'ON', 12351=>'ON', 12353=>'L', 12354=>'L', 12355=>'L', 12356=>'L', 12357=>'L', 12358=>'L', 12359=>'L', 12360=>'L', 12361=>'L', 12362=>'L', 12363=>'L', 12364=>'L', 12365=>'L', 12366=>'L', 12367=>'L', 12368=>'L', 12369=>'L', 12370=>'L', 12371=>'L', 12372=>'L', 12373=>'L', 12374=>'L', 12375=>'L', 12376=>'L', 12377=>'L', 12378=>'L', 12379=>'L', 12380=>'L', 12381=>'L', 12382=>'L', 12383=>'L', 12384=>'L', 12385=>'L', 12386=>'L', 12387=>'L', 12388=>'L', 12389=>'L', 12390=>'L', 12391=>'L', 12392=>'L', 12393=>'L', 12394=>'L', 12395=>'L', 12396=>'L', 12397=>'L', 12398=>'L', 12399=>'L', 12400=>'L', 12401=>'L', 12402=>'L', 12403=>'L', 12404=>'L', 12405=>'L', 12406=>'L', 12407=>'L', 12408=>'L', 12409=>'L', 12410=>'L', 12411=>'L', 12412=>'L', 12413=>'L', 12414=>'L', 12415=>'L', 12416=>'L', 12417=>'L', 12418=>'L', 12419=>'L', 12420=>'L', 12421=>'L', 12422=>'L', 12423=>'L', 12424=>'L', 12425=>'L', 12426=>'L', 12427=>'L', 12428=>'L', 12429=>'L', 12430=>'L', 12431=>'L', 12432=>'L', 12433=>'L', 12434=>'L', 12435=>'L', 12436=>'L', 12437=>'L', 12438=>'L', 12441=>'NSM', 12442=>'NSM', 12443=>'ON', 12444=>'ON', 12445=>'L', 12446=>'L', 12447=>'L', 12448=>'ON', 12449=>'L', 12450=>'L', 12451=>'L', 12452=>'L', 12453=>'L', 12454=>'L', 12455=>'L', 12456=>'L', 12457=>'L', 12458=>'L', 12459=>'L', 12460=>'L', 12461=>'L', 12462=>'L', 12463=>'L', 12464=>'L', 12465=>'L', 12466=>'L', 12467=>'L', 12468=>'L', 12469=>'L', 12470=>'L', 12471=>'L', 12472=>'L', 12473=>'L', 12474=>'L', 12475=>'L', 12476=>'L', 12477=>'L', 12478=>'L', 12479=>'L', 12480=>'L', 12481=>'L', 12482=>'L', 12483=>'L', 12484=>'L', 12485=>'L', 12486=>'L', 12487=>'L', 12488=>'L', 12489=>'L', 12490=>'L', 12491=>'L', 12492=>'L', 12493=>'L', 12494=>'L', 12495=>'L', 12496=>'L', 12497=>'L', 12498=>'L', 12499=>'L', 12500=>'L', 12501=>'L', 12502=>'L', 12503=>'L', 12504=>'L', 12505=>'L', 12506=>'L', 12507=>'L', 12508=>'L', 12509=>'L', 12510=>'L', 12511=>'L', 12512=>'L', 12513=>'L', 12514=>'L', 12515=>'L', 12516=>'L', 12517=>'L', 12518=>'L', 12519=>'L', 12520=>'L', 12521=>'L', 12522=>'L', 12523=>'L', 12524=>'L', 12525=>'L', 12526=>'L', 12527=>'L', 12528=>'L', 12529=>'L', 12530=>'L', 12531=>'L', 12532=>'L', 12533=>'L', 12534=>'L', 12535=>'L', 12536=>'L', 12537=>'L', 12538=>'L', 12539=>'ON', 12540=>'L', 12541=>'L', 12542=>'L', 12543=>'L', 12549=>'L', 12550=>'L', 12551=>'L', 12552=>'L', 12553=>'L', 12554=>'L', 12555=>'L', 12556=>'L', 12557=>'L', 12558=>'L', 12559=>'L', 12560=>'L', 12561=>'L', 12562=>'L', 12563=>'L', 12564=>'L', 12565=>'L', 12566=>'L', 12567=>'L', 12568=>'L', 12569=>'L', 12570=>'L', 12571=>'L', 12572=>'L', 12573=>'L', 12574=>'L', 12575=>'L', 12576=>'L', 12577=>'L', 12578=>'L', 12579=>'L', 12580=>'L', 12581=>'L', 12582=>'L', 12583=>'L', 12584=>'L', 12585=>'L', 12586=>'L', 12587=>'L', 12588=>'L', 12593=>'L', 12594=>'L', 12595=>'L', 12596=>'L', 12597=>'L', 12598=>'L', 12599=>'L', 12600=>'L', 12601=>'L', 12602=>'L', 12603=>'L', 12604=>'L', 12605=>'L', 12606=>'L', 12607=>'L', 12608=>'L', 12609=>'L', 12610=>'L', 12611=>'L', 12612=>'L', 12613=>'L', 12614=>'L', 12615=>'L', 12616=>'L', 12617=>'L', 12618=>'L', 12619=>'L', 12620=>'L', 12621=>'L', 12622=>'L', 12623=>'L', 12624=>'L', 12625=>'L', 12626=>'L', 12627=>'L', 12628=>'L', 12629=>'L', 12630=>'L', 12631=>'L', 12632=>'L', 12633=>'L', 12634=>'L', 12635=>'L', 12636=>'L', 12637=>'L', 12638=>'L', 12639=>'L', 12640=>'L', 12641=>'L', 12642=>'L', 12643=>'L', 12644=>'L', 12645=>'L', 12646=>'L', 12647=>'L', 12648=>'L', 12649=>'L', 12650=>'L', 12651=>'L', 12652=>'L', 12653=>'L', 12654=>'L', 12655=>'L', 12656=>'L', 12657=>'L', 12658=>'L', 12659=>'L', 12660=>'L', 12661=>'L', 12662=>'L', 12663=>'L', 12664=>'L', 12665=>'L', 12666=>'L', 12667=>'L', 12668=>'L', 12669=>'L', 12670=>'L', 12671=>'L', 12672=>'L', 12673=>'L', 12674=>'L', 12675=>'L', 12676=>'L', 12677=>'L', 12678=>'L', 12679=>'L', 12680=>'L', 12681=>'L', 12682=>'L', 12683=>'L', 12684=>'L', 12685=>'L', 12686=>'L', 12688=>'L', 12689=>'L', 12690=>'L', 12691=>'L', 12692=>'L', 12693=>'L', 12694=>'L', 12695=>'L', 12696=>'L', 12697=>'L', 12698=>'L', 12699=>'L', 12700=>'L', 12701=>'L', 12702=>'L', 12703=>'L', 12704=>'L', 12705=>'L', 12706=>'L', 12707=>'L', 12708=>'L', 12709=>'L', 12710=>'L', 12711=>'L', 12712=>'L', 12713=>'L', 12714=>'L', 12715=>'L', 12716=>'L', 12717=>'L', 12718=>'L', 12719=>'L', 12720=>'L', 12721=>'L', 12722=>'L', 12723=>'L', 12724=>'L', 12725=>'L', 12726=>'L', 12727=>'L', 12736=>'ON', 12737=>'ON', 12738=>'ON', 12739=>'ON', 12740=>'ON', 12741=>'ON', 12742=>'ON', 12743=>'ON', 12744=>'ON', 12745=>'ON', 12746=>'ON', 12747=>'ON', 12748=>'ON', 12749=>'ON', 12750=>'ON', 12751=>'ON', 12784=>'L', 12785=>'L', 12786=>'L', 12787=>'L', 12788=>'L', 12789=>'L', 12790=>'L', 12791=>'L', 12792=>'L', 12793=>'L', 12794=>'L', 12795=>'L', 12796=>'L', 12797=>'L', 12798=>'L', 12799=>'L', 12800=>'L', 12801=>'L', 12802=>'L', 12803=>'L', 12804=>'L', 12805=>'L', 12806=>'L', 12807=>'L', 12808=>'L', 12809=>'L', 12810=>'L', 12811=>'L', 12812=>'L', 12813=>'L', 12814=>'L', 12815=>'L', 12816=>'L', 12817=>'L', 12818=>'L', 12819=>'L', 12820=>'L', 12821=>'L', 12822=>'L', 12823=>'L', 12824=>'L', 12825=>'L', 12826=>'L', 12827=>'L', 12828=>'L', 12829=>'ON', 12830=>'ON', 12832=>'L', 12833=>'L', 12834=>'L', 12835=>'L', 12836=>'L', 12837=>'L', 12838=>'L', 12839=>'L', 12840=>'L', 12841=>'L', 12842=>'L', 12843=>'L', 12844=>'L', 12845=>'L', 12846=>'L', 12847=>'L', 12848=>'L', 12849=>'L', 12850=>'L', 12851=>'L', 12852=>'L', 12853=>'L', 12854=>'L', 12855=>'L', 12856=>'L', 12857=>'L', 12858=>'L', 12859=>'L', 12860=>'L', 12861=>'L', 12862=>'L', 12863=>'L', 12864=>'L', 12865=>'L', 12866=>'L', 12867=>'L', 12880=>'ON', 12881=>'ON', 12882=>'ON', 12883=>'ON', 12884=>'ON', 12885=>'ON', 12886=>'ON', 12887=>'ON', 12888=>'ON', 12889=>'ON', 12890=>'ON', 12891=>'ON', 12892=>'ON', 12893=>'ON', 12894=>'ON', 12895=>'ON', 12896=>'L', 12897=>'L', 12898=>'L', 12899=>'L', 12900=>'L', 12901=>'L', 12902=>'L', 12903=>'L', 12904=>'L', 12905=>'L', 12906=>'L', 12907=>'L', 12908=>'L', 12909=>'L', 12910=>'L', 12911=>'L', 12912=>'L', 12913=>'L', 12914=>'L', 12915=>'L', 12916=>'L', 12917=>'L', 12918=>'L', 12919=>'L', 12920=>'L', 12921=>'L', 12922=>'L', 12923=>'L', 12924=>'ON', 12925=>'ON', 12926=>'ON', 12927=>'L', 12928=>'L', 12929=>'L', 12930=>'L', 12931=>'L', 12932=>'L', 12933=>'L', 12934=>'L', 12935=>'L', 12936=>'L', 12937=>'L', 12938=>'L', 12939=>'L', 12940=>'L', 12941=>'L', 12942=>'L', 12943=>'L', 12944=>'L', 12945=>'L', 12946=>'L', 12947=>'L', 12948=>'L', 12949=>'L', 12950=>'L', 12951=>'L', 12952=>'L', 12953=>'L', 12954=>'L', 12955=>'L', 12956=>'L', 12957=>'L', 12958=>'L', 12959=>'L', 12960=>'L', 12961=>'L', 12962=>'L', 12963=>'L', 12964=>'L', 12965=>'L', 12966=>'L', 12967=>'L', 12968=>'L', 12969=>'L', 12970=>'L', 12971=>'L', 12972=>'L', 12973=>'L', 12974=>'L', 12975=>'L', 12976=>'L', 12977=>'ON', 12978=>'ON', 12979=>'ON', 12980=>'ON', 12981=>'ON', 12982=>'ON', 12983=>'ON', 12984=>'ON', 12985=>'ON', 12986=>'ON', 12987=>'ON', 12988=>'ON', 12989=>'ON', 12990=>'ON', 12991=>'ON', 12992=>'L', 12993=>'L', 12994=>'L', 12995=>'L', 12996=>'L', 12997=>'L', 12998=>'L', 12999=>'L', 13000=>'L', 13001=>'L', 13002=>'L', 13003=>'L', 13004=>'ON', 13005=>'ON', 13006=>'ON', 13007=>'ON', 13008=>'L', 13009=>'L', 13010=>'L', 13011=>'L', 13012=>'L', 13013=>'L', 13014=>'L', 13015=>'L', 13016=>'L', 13017=>'L', 13018=>'L', 13019=>'L', 13020=>'L', 13021=>'L', 13022=>'L', 13023=>'L', 13024=>'L', 13025=>'L', 13026=>'L', 13027=>'L', 13028=>'L', 13029=>'L', 13030=>'L', 13031=>'L', 13032=>'L', 13033=>'L', 13034=>'L', 13035=>'L', 13036=>'L', 13037=>'L', 13038=>'L', 13039=>'L', 13040=>'L', 13041=>'L', 13042=>'L', 13043=>'L', 13044=>'L', 13045=>'L', 13046=>'L', 13047=>'L', 13048=>'L', 13049=>'L', 13050=>'L', 13051=>'L', 13052=>'L', 13053=>'L', 13054=>'L', 13056=>'L', 13057=>'L', 13058=>'L', 13059=>'L', 13060=>'L', 13061=>'L', 13062=>'L', 13063=>'L', 13064=>'L', 13065=>'L', 13066=>'L', 13067=>'L', 13068=>'L', 13069=>'L', 13070=>'L', 13071=>'L', 13072=>'L', 13073=>'L', 13074=>'L', 13075=>'L', 13076=>'L', 13077=>'L', 13078=>'L', 13079=>'L', 13080=>'L', 13081=>'L', 13082=>'L', 13083=>'L', 13084=>'L', 13085=>'L', 13086=>'L', 13087=>'L', 13088=>'L', 13089=>'L', 13090=>'L', 13091=>'L', 13092=>'L', 13093=>'L', 13094=>'L', 13095=>'L', 13096=>'L', 13097=>'L', 13098=>'L', 13099=>'L', 13100=>'L', 13101=>'L', 13102=>'L', 13103=>'L', 13104=>'L', 13105=>'L', 13106=>'L', 13107=>'L', 13108=>'L', 13109=>'L', 13110=>'L', 13111=>'L', 13112=>'L', 13113=>'L', 13114=>'L', 13115=>'L', 13116=>'L', 13117=>'L', 13118=>'L', 13119=>'L', 13120=>'L', 13121=>'L', 13122=>'L', 13123=>'L', 13124=>'L', 13125=>'L', 13126=>'L', 13127=>'L', 13128=>'L', 13129=>'L', 13130=>'L', 13131=>'L', 13132=>'L', 13133=>'L', 13134=>'L', 13135=>'L', 13136=>'L', 13137=>'L', 13138=>'L', 13139=>'L', 13140=>'L', 13141=>'L', 13142=>'L', 13143=>'L', 13144=>'L', 13145=>'L', 13146=>'L', 13147=>'L', 13148=>'L', 13149=>'L', 13150=>'L', 13151=>'L', 13152=>'L', 13153=>'L', 13154=>'L', 13155=>'L', 13156=>'L', 13157=>'L', 13158=>'L', 13159=>'L', 13160=>'L', 13161=>'L', 13162=>'L', 13163=>'L', 13164=>'L', 13165=>'L', 13166=>'L', 13167=>'L', 13168=>'L', 13169=>'L', 13170=>'L', 13171=>'L', 13172=>'L', 13173=>'L', 13174=>'L', 13175=>'ON', 13176=>'ON', 13177=>'ON', 13178=>'ON', 13179=>'L', 13180=>'L', 13181=>'L', 13182=>'L', 13183=>'L', 13184=>'L', 13185=>'L', 13186=>'L', 13187=>'L', 13188=>'L', 13189=>'L', 13190=>'L', 13191=>'L', 13192=>'L', 13193=>'L', 13194=>'L', 13195=>'L', 13196=>'L', 13197=>'L', 13198=>'L', 13199=>'L', 13200=>'L', 13201=>'L', 13202=>'L', 13203=>'L', 13204=>'L', 13205=>'L', 13206=>'L', 13207=>'L', 13208=>'L', 13209=>'L', 13210=>'L', 13211=>'L', 13212=>'L', 13213=>'L', 13214=>'L', 13215=>'L', 13216=>'L', 13217=>'L', 13218=>'L', 13219=>'L', 13220=>'L', 13221=>'L', 13222=>'L', 13223=>'L', 13224=>'L', 13225=>'L', 13226=>'L', 13227=>'L', 13228=>'L', 13229=>'L', 13230=>'L', 13231=>'L', 13232=>'L', 13233=>'L', 13234=>'L', 13235=>'L', 13236=>'L', 13237=>'L', 13238=>'L', 13239=>'L', 13240=>'L', 13241=>'L', 13242=>'L', 13243=>'L', 13244=>'L', 13245=>'L', 13246=>'L', 13247=>'L', 13248=>'L', 13249=>'L', 13250=>'L', 13251=>'L', 13252=>'L', 13253=>'L', 13254=>'L', 13255=>'L', 13256=>'L', 13257=>'L', 13258=>'L', 13259=>'L', 13260=>'L', 13261=>'L', 13262=>'L', 13263=>'L', 13264=>'L', 13265=>'L', 13266=>'L', 13267=>'L', 13268=>'L', 13269=>'L', 13270=>'L', 13271=>'L', 13272=>'L', 13273=>'L', 13274=>'L', 13275=>'L', 13276=>'L', 13277=>'L', 13278=>'ON', 13279=>'ON', 13280=>'L', 13281=>'L', 13282=>'L', 13283=>'L', 13284=>'L', 13285=>'L', 13286=>'L', 13287=>'L', 13288=>'L', 13289=>'L', 13290=>'L', 13291=>'L', 13292=>'L', 13293=>'L', 13294=>'L', 13295=>'L', 13296=>'L', 13297=>'L', 13298=>'L', 13299=>'L', 13300=>'L', 13301=>'L', 13302=>'L', 13303=>'L', 13304=>'L', 13305=>'L', 13306=>'L', 13307=>'L', 13308=>'L', 13309=>'L', 13310=>'L', 13311=>'ON', 13312=>'L', 19893=>'L', 19904=>'ON', 19905=>'ON', 19906=>'ON', 19907=>'ON', 19908=>'ON', 19909=>'ON', 19910=>'ON', 19911=>'ON', 19912=>'ON', 19913=>'ON', 19914=>'ON', 19915=>'ON', 19916=>'ON', 19917=>'ON', 19918=>'ON', 19919=>'ON', 19920=>'ON', 19921=>'ON', 19922=>'ON', 19923=>'ON', 19924=>'ON', 19925=>'ON', 19926=>'ON', 19927=>'ON', 19928=>'ON', 19929=>'ON', 19930=>'ON', 19931=>'ON', 19932=>'ON', 19933=>'ON', 19934=>'ON', 19935=>'ON', 19936=>'ON', 19937=>'ON', 19938=>'ON', 19939=>'ON', 19940=>'ON', 19941=>'ON', 19942=>'ON', 19943=>'ON', 19944=>'ON', 19945=>'ON', 19946=>'ON', 19947=>'ON', 19948=>'ON', 19949=>'ON', 19950=>'ON', 19951=>'ON', 19952=>'ON', 19953=>'ON', 19954=>'ON', 19955=>'ON', 19956=>'ON', 19957=>'ON', 19958=>'ON', 19959=>'ON', 19960=>'ON', 19961=>'ON', 19962=>'ON', 19963=>'ON', 19964=>'ON', 19965=>'ON', 19966=>'ON', 19967=>'ON', 19968=>'L', 40891=>'L', 40960=>'L', 40961=>'L', 40962=>'L', 40963=>'L', 40964=>'L', 40965=>'L', 40966=>'L', 40967=>'L', 40968=>'L', 40969=>'L', 40970=>'L', 40971=>'L', 40972=>'L', 40973=>'L', 40974=>'L', 40975=>'L', 40976=>'L', 40977=>'L', 40978=>'L', 40979=>'L', 40980=>'L', 40981=>'L', 40982=>'L', 40983=>'L', 40984=>'L', 40985=>'L', 40986=>'L', 40987=>'L', 40988=>'L', 40989=>'L', 40990=>'L', 40991=>'L', 40992=>'L', 40993=>'L', 40994=>'L', 40995=>'L', 40996=>'L', 40997=>'L', 40998=>'L', 40999=>'L', 41000=>'L', 41001=>'L', 41002=>'L', 41003=>'L', 41004=>'L', 41005=>'L', 41006=>'L', 41007=>'L', 41008=>'L', 41009=>'L', 41010=>'L', 41011=>'L', 41012=>'L', 41013=>'L', 41014=>'L', 41015=>'L', 41016=>'L', 41017=>'L', 41018=>'L', 41019=>'L', 41020=>'L', 41021=>'L', 41022=>'L', 41023=>'L', 41024=>'L', 41025=>'L', 41026=>'L', 41027=>'L', 41028=>'L', 41029=>'L', 41030=>'L', 41031=>'L', 41032=>'L', 41033=>'L', 41034=>'L', 41035=>'L', 41036=>'L', 41037=>'L', 41038=>'L', 41039=>'L', 41040=>'L', 41041=>'L', 41042=>'L', 41043=>'L', 41044=>'L', 41045=>'L', 41046=>'L', 41047=>'L', 41048=>'L', 41049=>'L', 41050=>'L', 41051=>'L', 41052=>'L', 41053=>'L', 41054=>'L', 41055=>'L', 41056=>'L', 41057=>'L', 41058=>'L', 41059=>'L', 41060=>'L', 41061=>'L', 41062=>'L', 41063=>'L', 41064=>'L', 41065=>'L', 41066=>'L', 41067=>'L', 41068=>'L', 41069=>'L', 41070=>'L', 41071=>'L', 41072=>'L', 41073=>'L', 41074=>'L', 41075=>'L', 41076=>'L', 41077=>'L', 41078=>'L', 41079=>'L', 41080=>'L', 41081=>'L', 41082=>'L', 41083=>'L', 41084=>'L', 41085=>'L', 41086=>'L', 41087=>'L', 41088=>'L', 41089=>'L', 41090=>'L', 41091=>'L', 41092=>'L', 41093=>'L', 41094=>'L', 41095=>'L', 41096=>'L', 41097=>'L', 41098=>'L', 41099=>'L', 41100=>'L', 41101=>'L', 41102=>'L', 41103=>'L', 41104=>'L', 41105=>'L', 41106=>'L', 41107=>'L', 41108=>'L', 41109=>'L', 41110=>'L', 41111=>'L', 41112=>'L', 41113=>'L', 41114=>'L', 41115=>'L', 41116=>'L', 41117=>'L', 41118=>'L', 41119=>'L', 41120=>'L', 41121=>'L', 41122=>'L', 41123=>'L', 41124=>'L', 41125=>'L', 41126=>'L', 41127=>'L', 41128=>'L', 41129=>'L', 41130=>'L', 41131=>'L', 41132=>'L', 41133=>'L', 41134=>'L', 41135=>'L', 41136=>'L', 41137=>'L', 41138=>'L', 41139=>'L', 41140=>'L', 41141=>'L', 41142=>'L', 41143=>'L', 41144=>'L', 41145=>'L', 41146=>'L', 41147=>'L', 41148=>'L', 41149=>'L', 41150=>'L', 41151=>'L', 41152=>'L', 41153=>'L', 41154=>'L', 41155=>'L', 41156=>'L', 41157=>'L', 41158=>'L', 41159=>'L', 41160=>'L', 41161=>'L', 41162=>'L', 41163=>'L', 41164=>'L', 41165=>'L', 41166=>'L', 41167=>'L', 41168=>'L', 41169=>'L', 41170=>'L', 41171=>'L', 41172=>'L', 41173=>'L', 41174=>'L', 41175=>'L', 41176=>'L', 41177=>'L', 41178=>'L', 41179=>'L', 41180=>'L', 41181=>'L', 41182=>'L', 41183=>'L', 41184=>'L', 41185=>'L', 41186=>'L', 41187=>'L', 41188=>'L', 41189=>'L', 41190=>'L', 41191=>'L', 41192=>'L', 41193=>'L', 41194=>'L', 41195=>'L', 41196=>'L', 41197=>'L', 41198=>'L', 41199=>'L', 41200=>'L', 41201=>'L', 41202=>'L', 41203=>'L', 41204=>'L', 41205=>'L', 41206=>'L', 41207=>'L', 41208=>'L', 41209=>'L', 41210=>'L', 41211=>'L', 41212=>'L', 41213=>'L', 41214=>'L', 41215=>'L', 41216=>'L', 41217=>'L', 41218=>'L', 41219=>'L', 41220=>'L', 41221=>'L', 41222=>'L', 41223=>'L', 41224=>'L', 41225=>'L', 41226=>'L', 41227=>'L', 41228=>'L', 41229=>'L', 41230=>'L', 41231=>'L', 41232=>'L', 41233=>'L', 41234=>'L', 41235=>'L', 41236=>'L', 41237=>'L', 41238=>'L', 41239=>'L', 41240=>'L', 41241=>'L', 41242=>'L', 41243=>'L', 41244=>'L', 41245=>'L', 41246=>'L', 41247=>'L', 41248=>'L', 41249=>'L', 41250=>'L', 41251=>'L', 41252=>'L', 41253=>'L', 41254=>'L', 41255=>'L', 41256=>'L', 41257=>'L', 41258=>'L', 41259=>'L', 41260=>'L', 41261=>'L', 41262=>'L', 41263=>'L', 41264=>'L', 41265=>'L', 41266=>'L', 41267=>'L', 41268=>'L', 41269=>'L', 41270=>'L', 41271=>'L', 41272=>'L', 41273=>'L', 41274=>'L', 41275=>'L', 41276=>'L', 41277=>'L', 41278=>'L', 41279=>'L', 41280=>'L', 41281=>'L', 41282=>'L', 41283=>'L', 41284=>'L', 41285=>'L', 41286=>'L', 41287=>'L', 41288=>'L', 41289=>'L', 41290=>'L', 41291=>'L', 41292=>'L', 41293=>'L', 41294=>'L', 41295=>'L', 41296=>'L', 41297=>'L', 41298=>'L', 41299=>'L', 41300=>'L', 41301=>'L', 41302=>'L', 41303=>'L', 41304=>'L', 41305=>'L', 41306=>'L', 41307=>'L', 41308=>'L', 41309=>'L', 41310=>'L', 41311=>'L', 41312=>'L', 41313=>'L', 41314=>'L', 41315=>'L', 41316=>'L', 41317=>'L', 41318=>'L', 41319=>'L', 41320=>'L', 41321=>'L', 41322=>'L', 41323=>'L', 41324=>'L', 41325=>'L', 41326=>'L', 41327=>'L', 41328=>'L', 41329=>'L', 41330=>'L', 41331=>'L', 41332=>'L', 41333=>'L', 41334=>'L', 41335=>'L', 41336=>'L', 41337=>'L', 41338=>'L', 41339=>'L', 41340=>'L', 41341=>'L', 41342=>'L', 41343=>'L', 41344=>'L', 41345=>'L', 41346=>'L', 41347=>'L', 41348=>'L', 41349=>'L', 41350=>'L', 41351=>'L', 41352=>'L', 41353=>'L', 41354=>'L', 41355=>'L', 41356=>'L', 41357=>'L', 41358=>'L', 41359=>'L', 41360=>'L', 41361=>'L', 41362=>'L', 41363=>'L', 41364=>'L', 41365=>'L', 41366=>'L', 41367=>'L', 41368=>'L', 41369=>'L', 41370=>'L', 41371=>'L', 41372=>'L', 41373=>'L', 41374=>'L', 41375=>'L', 41376=>'L', 41377=>'L', 41378=>'L', 41379=>'L', 41380=>'L', 41381=>'L', 41382=>'L', 41383=>'L', 41384=>'L', 41385=>'L', 41386=>'L', 41387=>'L', 41388=>'L', 41389=>'L', 41390=>'L', 41391=>'L', 41392=>'L', 41393=>'L', 41394=>'L', 41395=>'L', 41396=>'L', 41397=>'L', 41398=>'L', 41399=>'L', 41400=>'L', 41401=>'L', 41402=>'L', 41403=>'L', 41404=>'L', 41405=>'L', 41406=>'L', 41407=>'L', 41408=>'L', 41409=>'L', 41410=>'L', 41411=>'L', 41412=>'L', 41413=>'L', 41414=>'L', 41415=>'L', 41416=>'L', 41417=>'L', 41418=>'L', 41419=>'L', 41420=>'L', 41421=>'L', 41422=>'L', 41423=>'L', 41424=>'L', 41425=>'L', 41426=>'L', 41427=>'L', 41428=>'L', 41429=>'L', 41430=>'L', 41431=>'L', 41432=>'L', 41433=>'L', 41434=>'L', 41435=>'L', 41436=>'L', 41437=>'L', 41438=>'L', 41439=>'L', 41440=>'L', 41441=>'L', 41442=>'L', 41443=>'L', 41444=>'L', 41445=>'L', 41446=>'L', 41447=>'L', 41448=>'L', 41449=>'L', 41450=>'L', 41451=>'L', 41452=>'L', 41453=>'L', 41454=>'L', 41455=>'L', 41456=>'L', 41457=>'L', 41458=>'L', 41459=>'L', 41460=>'L', 41461=>'L', 41462=>'L', 41463=>'L', 41464=>'L', 41465=>'L', 41466=>'L', 41467=>'L', 41468=>'L', 41469=>'L', 41470=>'L', 41471=>'L', 41472=>'L', 41473=>'L', 41474=>'L', 41475=>'L', 41476=>'L', 41477=>'L', 41478=>'L', 41479=>'L', 41480=>'L', 41481=>'L', 41482=>'L', 41483=>'L', 41484=>'L', 41485=>'L', 41486=>'L', 41487=>'L', 41488=>'L', 41489=>'L', 41490=>'L', 41491=>'L', 41492=>'L', 41493=>'L', 41494=>'L', 41495=>'L', 41496=>'L', 41497=>'L', 41498=>'L', 41499=>'L', 41500=>'L', 41501=>'L', 41502=>'L', 41503=>'L', 41504=>'L', 41505=>'L', 41506=>'L', 41507=>'L', 41508=>'L', 41509=>'L', 41510=>'L', 41511=>'L', 41512=>'L', 41513=>'L', 41514=>'L', 41515=>'L', 41516=>'L', 41517=>'L', 41518=>'L', 41519=>'L', 41520=>'L', 41521=>'L', 41522=>'L', 41523=>'L', 41524=>'L', 41525=>'L', 41526=>'L', 41527=>'L', 41528=>'L', 41529=>'L', 41530=>'L', 41531=>'L', 41532=>'L', 41533=>'L', 41534=>'L', 41535=>'L', 41536=>'L', 41537=>'L', 41538=>'L', 41539=>'L', 41540=>'L', 41541=>'L', 41542=>'L', 41543=>'L', 41544=>'L', 41545=>'L', 41546=>'L', 41547=>'L', 41548=>'L', 41549=>'L', 41550=>'L', 41551=>'L', 41552=>'L', 41553=>'L', 41554=>'L', 41555=>'L', 41556=>'L', 41557=>'L', 41558=>'L', 41559=>'L', 41560=>'L', 41561=>'L', 41562=>'L', 41563=>'L', 41564=>'L', 41565=>'L', 41566=>'L', 41567=>'L', 41568=>'L', 41569=>'L', 41570=>'L', 41571=>'L', 41572=>'L', 41573=>'L', 41574=>'L', 41575=>'L', 41576=>'L', 41577=>'L', 41578=>'L', 41579=>'L', 41580=>'L', 41581=>'L', 41582=>'L', 41583=>'L', 41584=>'L', 41585=>'L', 41586=>'L', 41587=>'L', 41588=>'L', 41589=>'L', 41590=>'L', 41591=>'L', 41592=>'L', 41593=>'L', 41594=>'L', 41595=>'L', 41596=>'L', 41597=>'L', 41598=>'L', 41599=>'L', 41600=>'L', 41601=>'L', 41602=>'L', 41603=>'L', 41604=>'L', 41605=>'L', 41606=>'L', 41607=>'L', 41608=>'L', 41609=>'L', 41610=>'L', 41611=>'L', 41612=>'L', 41613=>'L', 41614=>'L', 41615=>'L', 41616=>'L', 41617=>'L', 41618=>'L', 41619=>'L', 41620=>'L', 41621=>'L', 41622=>'L', 41623=>'L', 41624=>'L', 41625=>'L', 41626=>'L', 41627=>'L', 41628=>'L', 41629=>'L', 41630=>'L', 41631=>'L', 41632=>'L', 41633=>'L', 41634=>'L', 41635=>'L', 41636=>'L', 41637=>'L', 41638=>'L', 41639=>'L', 41640=>'L', 41641=>'L', 41642=>'L', 41643=>'L', 41644=>'L', 41645=>'L', 41646=>'L', 41647=>'L', 41648=>'L', 41649=>'L', 41650=>'L', 41651=>'L', 41652=>'L', 41653=>'L', 41654=>'L', 41655=>'L', 41656=>'L', 41657=>'L', 41658=>'L', 41659=>'L', 41660=>'L', 41661=>'L', 41662=>'L', 41663=>'L', 41664=>'L', 41665=>'L', 41666=>'L', 41667=>'L', 41668=>'L', 41669=>'L', 41670=>'L', 41671=>'L', 41672=>'L', 41673=>'L', 41674=>'L', 41675=>'L', 41676=>'L', 41677=>'L', 41678=>'L', 41679=>'L', 41680=>'L', 41681=>'L', 41682=>'L', 41683=>'L', 41684=>'L', 41685=>'L', 41686=>'L', 41687=>'L', 41688=>'L', 41689=>'L', 41690=>'L', 41691=>'L', 41692=>'L', 41693=>'L', 41694=>'L', 41695=>'L', 41696=>'L', 41697=>'L', 41698=>'L', 41699=>'L', 41700=>'L', 41701=>'L', 41702=>'L', 41703=>'L', 41704=>'L', 41705=>'L', 41706=>'L', 41707=>'L', 41708=>'L', 41709=>'L', 41710=>'L', 41711=>'L', 41712=>'L', 41713=>'L', 41714=>'L', 41715=>'L', 41716=>'L', 41717=>'L', 41718=>'L', 41719=>'L', 41720=>'L', 41721=>'L', 41722=>'L', 41723=>'L', 41724=>'L', 41725=>'L', 41726=>'L', 41727=>'L', 41728=>'L', 41729=>'L', 41730=>'L', 41731=>'L', 41732=>'L', 41733=>'L', 41734=>'L', 41735=>'L', 41736=>'L', 41737=>'L', 41738=>'L', 41739=>'L', 41740=>'L', 41741=>'L', 41742=>'L', 41743=>'L', 41744=>'L', 41745=>'L', 41746=>'L', 41747=>'L', 41748=>'L', 41749=>'L', 41750=>'L', 41751=>'L', 41752=>'L', 41753=>'L', 41754=>'L', 41755=>'L', 41756=>'L', 41757=>'L', 41758=>'L', 41759=>'L', 41760=>'L', 41761=>'L', 41762=>'L', 41763=>'L', 41764=>'L', 41765=>'L', 41766=>'L', 41767=>'L', 41768=>'L', 41769=>'L', 41770=>'L', 41771=>'L', 41772=>'L', 41773=>'L', 41774=>'L', 41775=>'L', 41776=>'L', 41777=>'L', 41778=>'L', 41779=>'L', 41780=>'L', 41781=>'L', 41782=>'L', 41783=>'L', 41784=>'L', 41785=>'L', 41786=>'L', 41787=>'L', 41788=>'L', 41789=>'L', 41790=>'L', 41791=>'L', 41792=>'L', 41793=>'L', 41794=>'L', 41795=>'L', 41796=>'L', 41797=>'L', 41798=>'L', 41799=>'L', 41800=>'L', 41801=>'L', 41802=>'L', 41803=>'L', 41804=>'L', 41805=>'L', 41806=>'L', 41807=>'L', 41808=>'L', 41809=>'L', 41810=>'L', 41811=>'L', 41812=>'L', 41813=>'L', 41814=>'L', 41815=>'L', 41816=>'L', 41817=>'L', 41818=>'L', 41819=>'L', 41820=>'L', 41821=>'L', 41822=>'L', 41823=>'L', 41824=>'L', 41825=>'L', 41826=>'L', 41827=>'L', 41828=>'L', 41829=>'L', 41830=>'L', 41831=>'L', 41832=>'L', 41833=>'L', 41834=>'L', 41835=>'L', 41836=>'L', 41837=>'L', 41838=>'L', 41839=>'L', 41840=>'L', 41841=>'L', 41842=>'L', 41843=>'L', 41844=>'L', 41845=>'L', 41846=>'L', 41847=>'L', 41848=>'L', 41849=>'L', 41850=>'L', 41851=>'L', 41852=>'L', 41853=>'L', 41854=>'L', 41855=>'L', 41856=>'L', 41857=>'L', 41858=>'L', 41859=>'L', 41860=>'L', 41861=>'L', 41862=>'L', 41863=>'L', 41864=>'L', 41865=>'L', 41866=>'L', 41867=>'L', 41868=>'L', 41869=>'L', 41870=>'L', 41871=>'L', 41872=>'L', 41873=>'L', 41874=>'L', 41875=>'L', 41876=>'L', 41877=>'L', 41878=>'L', 41879=>'L', 41880=>'L', 41881=>'L', 41882=>'L', 41883=>'L', 41884=>'L', 41885=>'L', 41886=>'L', 41887=>'L', 41888=>'L', 41889=>'L', 41890=>'L', 41891=>'L', 41892=>'L', 41893=>'L', 41894=>'L', 41895=>'L', 41896=>'L', 41897=>'L', 41898=>'L', 41899=>'L', 41900=>'L', 41901=>'L', 41902=>'L', 41903=>'L', 41904=>'L', 41905=>'L', 41906=>'L', 41907=>'L', 41908=>'L', 41909=>'L', 41910=>'L', 41911=>'L', 41912=>'L', 41913=>'L', 41914=>'L', 41915=>'L', 41916=>'L', 41917=>'L', 41918=>'L', 41919=>'L', 41920=>'L', 41921=>'L', 41922=>'L', 41923=>'L', 41924=>'L', 41925=>'L', 41926=>'L', 41927=>'L', 41928=>'L', 41929=>'L', 41930=>'L', 41931=>'L', 41932=>'L', 41933=>'L', 41934=>'L', 41935=>'L', 41936=>'L', 41937=>'L', 41938=>'L', 41939=>'L', 41940=>'L', 41941=>'L', 41942=>'L', 41943=>'L', 41944=>'L', 41945=>'L', 41946=>'L', 41947=>'L', 41948=>'L', 41949=>'L', 41950=>'L', 41951=>'L', 41952=>'L', 41953=>'L', 41954=>'L', 41955=>'L', 41956=>'L', 41957=>'L', 41958=>'L', 41959=>'L', 41960=>'L', 41961=>'L', 41962=>'L', 41963=>'L', 41964=>'L', 41965=>'L', 41966=>'L', 41967=>'L', 41968=>'L', 41969=>'L', 41970=>'L', 41971=>'L', 41972=>'L', 41973=>'L', 41974=>'L', 41975=>'L', 41976=>'L', 41977=>'L', 41978=>'L', 41979=>'L', 41980=>'L', 41981=>'L', 41982=>'L', 41983=>'L', 41984=>'L', 41985=>'L', 41986=>'L', 41987=>'L', 41988=>'L', 41989=>'L', 41990=>'L', 41991=>'L', 41992=>'L', 41993=>'L', 41994=>'L', 41995=>'L', 41996=>'L', 41997=>'L', 41998=>'L', 41999=>'L', 42000=>'L', 42001=>'L', 42002=>'L', 42003=>'L', 42004=>'L', 42005=>'L', 42006=>'L', 42007=>'L', 42008=>'L', 42009=>'L', 42010=>'L', 42011=>'L', 42012=>'L', 42013=>'L', 42014=>'L', 42015=>'L', 42016=>'L', 42017=>'L', 42018=>'L', 42019=>'L', 42020=>'L', 42021=>'L', 42022=>'L', 42023=>'L', 42024=>'L', 42025=>'L', 42026=>'L', 42027=>'L', 42028=>'L', 42029=>'L', 42030=>'L', 42031=>'L', 42032=>'L', 42033=>'L', 42034=>'L', 42035=>'L', 42036=>'L', 42037=>'L', 42038=>'L', 42039=>'L', 42040=>'L', 42041=>'L', 42042=>'L', 42043=>'L', 42044=>'L', 42045=>'L', 42046=>'L', 42047=>'L', 42048=>'L', 42049=>'L', 42050=>'L', 42051=>'L', 42052=>'L', 42053=>'L', 42054=>'L', 42055=>'L', 42056=>'L', 42057=>'L', 42058=>'L', 42059=>'L', 42060=>'L', 42061=>'L', 42062=>'L', 42063=>'L', 42064=>'L', 42065=>'L', 42066=>'L', 42067=>'L', 42068=>'L', 42069=>'L', 42070=>'L', 42071=>'L', 42072=>'L', 42073=>'L', 42074=>'L', 42075=>'L', 42076=>'L', 42077=>'L', 42078=>'L', 42079=>'L', 42080=>'L', 42081=>'L', 42082=>'L', 42083=>'L', 42084=>'L', 42085=>'L', 42086=>'L', 42087=>'L', 42088=>'L', 42089=>'L', 42090=>'L', 42091=>'L', 42092=>'L', 42093=>'L', 42094=>'L', 42095=>'L', 42096=>'L', 42097=>'L', 42098=>'L', 42099=>'L', 42100=>'L', 42101=>'L', 42102=>'L', 42103=>'L', 42104=>'L', 42105=>'L', 42106=>'L', 42107=>'L', 42108=>'L', 42109=>'L', 42110=>'L', 42111=>'L', 42112=>'L', 42113=>'L', 42114=>'L', 42115=>'L', 42116=>'L', 42117=>'L', 42118=>'L', 42119=>'L', 42120=>'L', 42121=>'L', 42122=>'L', 42123=>'L', 42124=>'L', 42128=>'ON', 42129=>'ON', 42130=>'ON', 42131=>'ON', 42132=>'ON', 42133=>'ON', 42134=>'ON', 42135=>'ON', 42136=>'ON', 42137=>'ON', 42138=>'ON', 42139=>'ON', 42140=>'ON', 42141=>'ON', 42142=>'ON', 42143=>'ON', 42144=>'ON', 42145=>'ON', 42146=>'ON', 42147=>'ON', 42148=>'ON', 42149=>'ON', 42150=>'ON', 42151=>'ON', 42152=>'ON', 42153=>'ON', 42154=>'ON', 42155=>'ON', 42156=>'ON', 42157=>'ON', 42158=>'ON', 42159=>'ON', 42160=>'ON', 42161=>'ON', 42162=>'ON', 42163=>'ON', 42164=>'ON', 42165=>'ON', 42166=>'ON', 42167=>'ON', 42168=>'ON', 42169=>'ON', 42170=>'ON', 42171=>'ON', 42172=>'ON', 42173=>'ON', 42174=>'ON', 42175=>'ON', 42176=>'ON', 42177=>'ON', 42178=>'ON', 42179=>'ON', 42180=>'ON', 42181=>'ON', 42182=>'ON', 42752=>'ON', 42753=>'ON', 42754=>'ON', 42755=>'ON', 42756=>'ON', 42757=>'ON', 42758=>'ON', 42759=>'ON', 42760=>'ON', 42761=>'ON', 42762=>'ON', 42763=>'ON', 42764=>'ON', 42765=>'ON', 42766=>'ON', 42767=>'ON', 42768=>'ON', 42769=>'ON', 42770=>'ON', 42771=>'ON', 42772=>'ON', 42773=>'ON', 42774=>'ON', 42775=>'ON', 42776=>'ON', 42777=>'ON', 42778=>'ON', 42784=>'ON', 42785=>'ON', 43008=>'L', 43009=>'L', 43010=>'NSM', 43011=>'L', 43012=>'L', 43013=>'L', 43014=>'NSM', 43015=>'L', 43016=>'L', 43017=>'L', 43018=>'L', 43019=>'NSM', 43020=>'L', 43021=>'L', 43022=>'L', 43023=>'L', 43024=>'L', 43025=>'L', 43026=>'L', 43027=>'L', 43028=>'L', 43029=>'L', 43030=>'L', 43031=>'L', 43032=>'L', 43033=>'L', 43034=>'L', 43035=>'L', 43036=>'L', 43037=>'L', 43038=>'L', 43039=>'L', 43040=>'L', 43041=>'L', 43042=>'L', 43043=>'L', 43044=>'L', 43045=>'NSM', 43046=>'NSM', 43047=>'L', 43048=>'ON', 43049=>'ON', 43050=>'ON', 43051=>'ON', 43072=>'L', 43073=>'L', 43074=>'L', 43075=>'L', 43076=>'L', 43077=>'L', 43078=>'L', 43079=>'L', 43080=>'L', 43081=>'L', 43082=>'L', 43083=>'L', 43084=>'L', 43085=>'L', 43086=>'L', 43087=>'L', 43088=>'L', 43089=>'L', 43090=>'L', 43091=>'L', 43092=>'L', 43093=>'L', 43094=>'L', 43095=>'L', 43096=>'L', 43097=>'L', 43098=>'L', 43099=>'L', 43100=>'L', 43101=>'L', 43102=>'L', 43103=>'L', 43104=>'L', 43105=>'L', 43106=>'L', 43107=>'L', 43108=>'L', 43109=>'L', 43110=>'L', 43111=>'L', 43112=>'L', 43113=>'L', 43114=>'L', 43115=>'L', 43116=>'L', 43117=>'L', 43118=>'L', 43119=>'L', 43120=>'L', 43121=>'L', 43122=>'L', 43123=>'L', 43124=>'ON', 43125=>'ON', 43126=>'ON', 43127=>'ON', 44032=>'L', 55203=>'L', 55296=>'L', 56191=>'L', 56192=>'L', 56319=>'L', 56320=>'L', 57343=>'L', 57344=>'L', 63743=>'L', 63744=>'L', 63745=>'L', 63746=>'L', 63747=>'L', 63748=>'L', 63749=>'L', 63750=>'L', 63751=>'L', 63752=>'L', 63753=>'L', 63754=>'L', 63755=>'L', 63756=>'L', 63757=>'L', 63758=>'L', 63759=>'L', 63760=>'L', 63761=>'L', 63762=>'L', 63763=>'L', 63764=>'L', 63765=>'L', 63766=>'L', 63767=>'L', 63768=>'L', 63769=>'L', 63770=>'L', 63771=>'L', 63772=>'L', 63773=>'L', 63774=>'L', 63775=>'L', 63776=>'L', 63777=>'L', 63778=>'L', 63779=>'L', 63780=>'L', 63781=>'L', 63782=>'L', 63783=>'L', 63784=>'L', 63785=>'L', 63786=>'L', 63787=>'L', 63788=>'L', 63789=>'L', 63790=>'L', 63791=>'L', 63792=>'L', 63793=>'L', 63794=>'L', 63795=>'L', 63796=>'L', 63797=>'L', 63798=>'L', 63799=>'L', 63800=>'L', 63801=>'L', 63802=>'L', 63803=>'L', 63804=>'L', 63805=>'L', 63806=>'L', 63807=>'L', 63808=>'L', 63809=>'L', 63810=>'L', 63811=>'L', 63812=>'L', 63813=>'L', 63814=>'L', 63815=>'L', 63816=>'L', 63817=>'L', 63818=>'L', 63819=>'L', 63820=>'L', 63821=>'L', 63822=>'L', 63823=>'L', 63824=>'L', 63825=>'L', 63826=>'L', 63827=>'L', 63828=>'L', 63829=>'L', 63830=>'L', 63831=>'L', 63832=>'L', 63833=>'L', 63834=>'L', 63835=>'L', 63836=>'L', 63837=>'L', 63838=>'L', 63839=>'L', 63840=>'L', 63841=>'L', 63842=>'L', 63843=>'L', 63844=>'L', 63845=>'L', 63846=>'L', 63847=>'L', 63848=>'L', 63849=>'L', 63850=>'L', 63851=>'L', 63852=>'L', 63853=>'L', 63854=>'L', 63855=>'L', 63856=>'L', 63857=>'L', 63858=>'L', 63859=>'L', 63860=>'L', 63861=>'L', 63862=>'L', 63863=>'L', 63864=>'L', 63865=>'L', 63866=>'L', 63867=>'L', 63868=>'L', 63869=>'L', 63870=>'L', 63871=>'L', 63872=>'L', 63873=>'L', 63874=>'L', 63875=>'L', 63876=>'L', 63877=>'L', 63878=>'L', 63879=>'L', 63880=>'L', 63881=>'L', 63882=>'L', 63883=>'L', 63884=>'L', 63885=>'L', 63886=>'L', 63887=>'L', 63888=>'L', 63889=>'L', 63890=>'L', 63891=>'L', 63892=>'L', 63893=>'L', 63894=>'L', 63895=>'L', 63896=>'L', 63897=>'L', 63898=>'L', 63899=>'L', 63900=>'L', 63901=>'L', 63902=>'L', 63903=>'L', 63904=>'L', 63905=>'L', 63906=>'L', 63907=>'L', 63908=>'L', 63909=>'L', 63910=>'L', 63911=>'L', 63912=>'L', 63913=>'L', 63914=>'L', 63915=>'L', 63916=>'L', 63917=>'L', 63918=>'L', 63919=>'L', 63920=>'L', 63921=>'L', 63922=>'L', 63923=>'L', 63924=>'L', 63925=>'L', 63926=>'L', 63927=>'L', 63928=>'L', 63929=>'L', 63930=>'L', 63931=>'L', 63932=>'L', 63933=>'L', 63934=>'L', 63935=>'L', 63936=>'L', 63937=>'L', 63938=>'L', 63939=>'L', 63940=>'L', 63941=>'L', 63942=>'L', 63943=>'L', 63944=>'L', 63945=>'L', 63946=>'L', 63947=>'L', 63948=>'L', 63949=>'L', 63950=>'L', 63951=>'L', 63952=>'L', 63953=>'L', 63954=>'L', 63955=>'L', 63956=>'L', 63957=>'L', 63958=>'L', 63959=>'L', 63960=>'L', 63961=>'L', 63962=>'L', 63963=>'L', 63964=>'L', 63965=>'L', 63966=>'L', 63967=>'L', 63968=>'L', 63969=>'L', 63970=>'L', 63971=>'L', 63972=>'L', 63973=>'L', 63974=>'L', 63975=>'L', 63976=>'L', 63977=>'L', 63978=>'L', 63979=>'L', 63980=>'L', 63981=>'L', 63982=>'L', 63983=>'L', 63984=>'L', 63985=>'L', 63986=>'L', 63987=>'L', 63988=>'L', 63989=>'L', 63990=>'L', 63991=>'L', 63992=>'L', 63993=>'L', 63994=>'L', 63995=>'L', 63996=>'L', 63997=>'L', 63998=>'L', 63999=>'L', 64000=>'L', 64001=>'L', 64002=>'L', 64003=>'L', 64004=>'L', 64005=>'L', 64006=>'L', 64007=>'L', 64008=>'L', 64009=>'L', 64010=>'L', 64011=>'L', 64012=>'L', 64013=>'L', 64014=>'L', 64015=>'L', 64016=>'L', 64017=>'L', 64018=>'L', 64019=>'L', 64020=>'L', 64021=>'L', 64022=>'L', 64023=>'L', 64024=>'L', 64025=>'L', 64026=>'L', 64027=>'L', 64028=>'L', 64029=>'L', 64030=>'L', 64031=>'L', 64032=>'L', 64033=>'L', 64034=>'L', 64035=>'L', 64036=>'L', 64037=>'L', 64038=>'L', 64039=>'L', 64040=>'L', 64041=>'L', 64042=>'L', 64043=>'L', 64044=>'L', 64045=>'L', 64048=>'L', 64049=>'L', 64050=>'L', 64051=>'L', 64052=>'L', 64053=>'L', 64054=>'L', 64055=>'L', 64056=>'L', 64057=>'L', 64058=>'L', 64059=>'L', 64060=>'L', 64061=>'L', 64062=>'L', 64063=>'L', 64064=>'L', 64065=>'L', 64066=>'L', 64067=>'L', 64068=>'L', 64069=>'L', 64070=>'L', 64071=>'L', 64072=>'L', 64073=>'L', 64074=>'L', 64075=>'L', 64076=>'L', 64077=>'L', 64078=>'L', 64079=>'L', 64080=>'L', 64081=>'L', 64082=>'L', 64083=>'L', 64084=>'L', 64085=>'L', 64086=>'L', 64087=>'L', 64088=>'L', 64089=>'L', 64090=>'L', 64091=>'L', 64092=>'L', 64093=>'L', 64094=>'L', 64095=>'L', 64096=>'L', 64097=>'L', 64098=>'L', 64099=>'L', 64100=>'L', 64101=>'L', 64102=>'L', 64103=>'L', 64104=>'L', 64105=>'L', 64106=>'L', 64112=>'L', 64113=>'L', 64114=>'L', 64115=>'L', 64116=>'L', 64117=>'L', 64118=>'L', 64119=>'L', 64120=>'L', 64121=>'L', 64122=>'L', 64123=>'L', 64124=>'L', 64125=>'L', 64126=>'L', 64127=>'L', 64128=>'L', 64129=>'L', 64130=>'L', 64131=>'L', 64132=>'L', 64133=>'L', 64134=>'L', 64135=>'L', 64136=>'L', 64137=>'L', 64138=>'L', 64139=>'L', 64140=>'L', 64141=>'L', 64142=>'L', 64143=>'L', 64144=>'L', 64145=>'L', 64146=>'L', 64147=>'L', 64148=>'L', 64149=>'L', 64150=>'L', 64151=>'L', 64152=>'L', 64153=>'L', 64154=>'L', 64155=>'L', 64156=>'L', 64157=>'L', 64158=>'L', 64159=>'L', 64160=>'L', 64161=>'L', 64162=>'L', 64163=>'L', 64164=>'L', 64165=>'L', 64166=>'L', 64167=>'L', 64168=>'L', 64169=>'L', 64170=>'L', 64171=>'L', 64172=>'L', 64173=>'L', 64174=>'L', 64175=>'L', 64176=>'L', 64177=>'L', 64178=>'L', 64179=>'L', 64180=>'L', 64181=>'L', 64182=>'L', 64183=>'L', 64184=>'L', 64185=>'L', 64186=>'L', 64187=>'L', 64188=>'L', 64189=>'L', 64190=>'L', 64191=>'L', 64192=>'L', 64193=>'L', 64194=>'L', 64195=>'L', 64196=>'L', 64197=>'L', 64198=>'L', 64199=>'L', 64200=>'L', 64201=>'L', 64202=>'L', 64203=>'L', 64204=>'L', 64205=>'L', 64206=>'L', 64207=>'L', 64208=>'L', 64209=>'L', 64210=>'L', 64211=>'L', 64212=>'L', 64213=>'L', 64214=>'L', 64215=>'L', 64216=>'L', 64217=>'L', 64256=>'L', 64257=>'L', 64258=>'L', 64259=>'L', 64260=>'L', 64261=>'L', 64262=>'L', 64275=>'L', 64276=>'L', 64277=>'L', 64278=>'L', 64279=>'L', 64285=>'R', 64286=>'NSM', 64287=>'R', 64288=>'R', 64289=>'R', 64290=>'R', 64291=>'R', 64292=>'R', 64293=>'R', 64294=>'R', 64295=>'R', 64296=>'R', 64297=>'ES', 64298=>'R', 64299=>'R', 64300=>'R', 64301=>'R', 64302=>'R', 64303=>'R', 64304=>'R', 64305=>'R', 64306=>'R', 64307=>'R', 64308=>'R', 64309=>'R', 64310=>'R', 64312=>'R', 64313=>'R', 64314=>'R', 64315=>'R', 64316=>'R', 64318=>'R', 64320=>'R', 64321=>'R', 64323=>'R', 64324=>'R', 64326=>'R', 64327=>'R', 64328=>'R', 64329=>'R', 64330=>'R', 64331=>'R', 64332=>'R', 64333=>'R', 64334=>'R', 64335=>'R', 64336=>'AL', 64337=>'AL', 64338=>'AL', 64339=>'AL', 64340=>'AL', 64341=>'AL', 64342=>'AL', 64343=>'AL', 64344=>'AL', 64345=>'AL', 64346=>'AL', 64347=>'AL', 64348=>'AL', 64349=>'AL', 64350=>'AL', 64351=>'AL', 64352=>'AL', 64353=>'AL', 64354=>'AL', 64355=>'AL', 64356=>'AL', 64357=>'AL', 64358=>'AL', 64359=>'AL', 64360=>'AL', 64361=>'AL', 64362=>'AL', 64363=>'AL', 64364=>'AL', 64365=>'AL', 64366=>'AL', 64367=>'AL', 64368=>'AL', 64369=>'AL', 64370=>'AL', 64371=>'AL', 64372=>'AL', 64373=>'AL', 64374=>'AL', 64375=>'AL', 64376=>'AL', 64377=>'AL', 64378=>'AL', 64379=>'AL', 64380=>'AL', 64381=>'AL', 64382=>'AL', 64383=>'AL', 64384=>'AL', 64385=>'AL', 64386=>'AL', 64387=>'AL', 64388=>'AL', 64389=>'AL', 64390=>'AL', 64391=>'AL', 64392=>'AL', 64393=>'AL', 64394=>'AL', 64395=>'AL', 64396=>'AL', 64397=>'AL', 64398=>'AL', 64399=>'AL', 64400=>'AL', 64401=>'AL', 64402=>'AL', 64403=>'AL', 64404=>'AL', 64405=>'AL', 64406=>'AL', 64407=>'AL', 64408=>'AL', 64409=>'AL', 64410=>'AL', 64411=>'AL', 64412=>'AL', 64413=>'AL', 64414=>'AL', 64415=>'AL', 64416=>'AL', 64417=>'AL', 64418=>'AL', 64419=>'AL', 64420=>'AL', 64421=>'AL', 64422=>'AL', 64423=>'AL', 64424=>'AL', 64425=>'AL', 64426=>'AL', 64427=>'AL', 64428=>'AL', 64429=>'AL', 64430=>'AL', 64431=>'AL', 64432=>'AL', 64433=>'AL', 64467=>'AL', 64468=>'AL', 64469=>'AL', 64470=>'AL', 64471=>'AL', 64472=>'AL', 64473=>'AL', 64474=>'AL', 64475=>'AL', 64476=>'AL', 64477=>'AL', 64478=>'AL', 64479=>'AL', 64480=>'AL', 64481=>'AL', 64482=>'AL', 64483=>'AL', 64484=>'AL', 64485=>'AL', 64486=>'AL', 64487=>'AL', 64488=>'AL', 64489=>'AL', 64490=>'AL', 64491=>'AL', 64492=>'AL', 64493=>'AL', 64494=>'AL', 64495=>'AL', 64496=>'AL', 64497=>'AL', 64498=>'AL', 64499=>'AL', 64500=>'AL', 64501=>'AL', 64502=>'AL', 64503=>'AL', 64504=>'AL', 64505=>'AL', 64506=>'AL', 64507=>'AL', 64508=>'AL', 64509=>'AL', 64510=>'AL', 64511=>'AL', 64512=>'AL', 64513=>'AL', 64514=>'AL', 64515=>'AL', 64516=>'AL', 64517=>'AL', 64518=>'AL', 64519=>'AL', 64520=>'AL', 64521=>'AL', 64522=>'AL', 64523=>'AL', 64524=>'AL', 64525=>'AL', 64526=>'AL', 64527=>'AL', 64528=>'AL', 64529=>'AL', 64530=>'AL', 64531=>'AL', 64532=>'AL', 64533=>'AL', 64534=>'AL', 64535=>'AL', 64536=>'AL', 64537=>'AL', 64538=>'AL', 64539=>'AL', 64540=>'AL', 64541=>'AL', 64542=>'AL', 64543=>'AL', 64544=>'AL', 64545=>'AL', 64546=>'AL', 64547=>'AL', 64548=>'AL', 64549=>'AL', 64550=>'AL', 64551=>'AL', 64552=>'AL', 64553=>'AL', 64554=>'AL', 64555=>'AL', 64556=>'AL', 64557=>'AL', 64558=>'AL', 64559=>'AL', 64560=>'AL', 64561=>'AL', 64562=>'AL', 64563=>'AL', 64564=>'AL', 64565=>'AL', 64566=>'AL', 64567=>'AL', 64568=>'AL', 64569=>'AL', 64570=>'AL', 64571=>'AL', 64572=>'AL', 64573=>'AL', 64574=>'AL', 64575=>'AL', 64576=>'AL', 64577=>'AL', 64578=>'AL', 64579=>'AL', 64580=>'AL', 64581=>'AL', 64582=>'AL', 64583=>'AL', 64584=>'AL', 64585=>'AL', 64586=>'AL', 64587=>'AL', 64588=>'AL', 64589=>'AL', 64590=>'AL', 64591=>'AL', 64592=>'AL', 64593=>'AL', 64594=>'AL', 64595=>'AL', 64596=>'AL', 64597=>'AL', 64598=>'AL', 64599=>'AL', 64600=>'AL', 64601=>'AL', 64602=>'AL', 64603=>'AL', 64604=>'AL', 64605=>'AL', 64606=>'AL', 64607=>'AL', 64608=>'AL', 64609=>'AL', 64610=>'AL', 64611=>'AL', 64612=>'AL', 64613=>'AL', 64614=>'AL', 64615=>'AL', 64616=>'AL', 64617=>'AL', 64618=>'AL', 64619=>'AL', 64620=>'AL', 64621=>'AL', 64622=>'AL', 64623=>'AL', 64624=>'AL', 64625=>'AL', 64626=>'AL', 64627=>'AL', 64628=>'AL', 64629=>'AL', 64630=>'AL', 64631=>'AL', 64632=>'AL', 64633=>'AL', 64634=>'AL', 64635=>'AL', 64636=>'AL', 64637=>'AL', 64638=>'AL', 64639=>'AL', 64640=>'AL', 64641=>'AL', 64642=>'AL', 64643=>'AL', 64644=>'AL', 64645=>'AL', 64646=>'AL', 64647=>'AL', 64648=>'AL', 64649=>'AL', 64650=>'AL', 64651=>'AL', 64652=>'AL', 64653=>'AL', 64654=>'AL', 64655=>'AL', 64656=>'AL', 64657=>'AL', 64658=>'AL', 64659=>'AL', 64660=>'AL', 64661=>'AL', 64662=>'AL', 64663=>'AL', 64664=>'AL', 64665=>'AL', 64666=>'AL', 64667=>'AL', 64668=>'AL', 64669=>'AL', 64670=>'AL', 64671=>'AL', 64672=>'AL', 64673=>'AL', 64674=>'AL', 64675=>'AL', 64676=>'AL', 64677=>'AL', 64678=>'AL', 64679=>'AL', 64680=>'AL', 64681=>'AL', 64682=>'AL', 64683=>'AL', 64684=>'AL', 64685=>'AL', 64686=>'AL', 64687=>'AL', 64688=>'AL', 64689=>'AL', 64690=>'AL', 64691=>'AL', 64692=>'AL', 64693=>'AL', 64694=>'AL', 64695=>'AL', 64696=>'AL', 64697=>'AL', 64698=>'AL', 64699=>'AL', 64700=>'AL', 64701=>'AL', 64702=>'AL', 64703=>'AL', 64704=>'AL', 64705=>'AL', 64706=>'AL', 64707=>'AL', 64708=>'AL', 64709=>'AL', 64710=>'AL', 64711=>'AL', 64712=>'AL', 64713=>'AL', 64714=>'AL', 64715=>'AL', 64716=>'AL', 64717=>'AL', 64718=>'AL', 64719=>'AL', 64720=>'AL', 64721=>'AL', 64722=>'AL', 64723=>'AL', 64724=>'AL', 64725=>'AL', 64726=>'AL', 64727=>'AL', 64728=>'AL', 64729=>'AL', 64730=>'AL', 64731=>'AL', 64732=>'AL', 64733=>'AL', 64734=>'AL', 64735=>'AL', 64736=>'AL', 64737=>'AL', 64738=>'AL', 64739=>'AL', 64740=>'AL', 64741=>'AL', 64742=>'AL', 64743=>'AL', 64744=>'AL', 64745=>'AL', 64746=>'AL', 64747=>'AL', 64748=>'AL', 64749=>'AL', 64750=>'AL', 64751=>'AL', 64752=>'AL', 64753=>'AL', 64754=>'AL', 64755=>'AL', 64756=>'AL', 64757=>'AL', 64758=>'AL', 64759=>'AL', 64760=>'AL', 64761=>'AL', 64762=>'AL', 64763=>'AL', 64764=>'AL', 64765=>'AL', 64766=>'AL', 64767=>'AL', 64768=>'AL', 64769=>'AL', 64770=>'AL', 64771=>'AL', 64772=>'AL', 64773=>'AL', 64774=>'AL', 64775=>'AL', 64776=>'AL', 64777=>'AL', 64778=>'AL', 64779=>'AL', 64780=>'AL', 64781=>'AL', 64782=>'AL', 64783=>'AL', 64784=>'AL', 64785=>'AL', 64786=>'AL', 64787=>'AL', 64788=>'AL', 64789=>'AL', 64790=>'AL', 64791=>'AL', 64792=>'AL', 64793=>'AL', 64794=>'AL', 64795=>'AL', 64796=>'AL', 64797=>'AL', 64798=>'AL', 64799=>'AL', 64800=>'AL', 64801=>'AL', 64802=>'AL', 64803=>'AL', 64804=>'AL', 64805=>'AL', 64806=>'AL', 64807=>'AL', 64808=>'AL', 64809=>'AL', 64810=>'AL', 64811=>'AL', 64812=>'AL', 64813=>'AL', 64814=>'AL', 64815=>'AL', 64816=>'AL', 64817=>'AL', 64818=>'AL', 64819=>'AL', 64820=>'AL', 64821=>'AL', 64822=>'AL', 64823=>'AL', 64824=>'AL', 64825=>'AL', 64826=>'AL', 64827=>'AL', 64828=>'AL', 64829=>'AL', 64830=>'ON', 64831=>'ON', 64848=>'AL', 64849=>'AL', 64850=>'AL', 64851=>'AL', 64852=>'AL', 64853=>'AL', 64854=>'AL', 64855=>'AL', 64856=>'AL', 64857=>'AL', 64858=>'AL', 64859=>'AL', 64860=>'AL', 64861=>'AL', 64862=>'AL', 64863=>'AL', 64864=>'AL', 64865=>'AL', 64866=>'AL', 64867=>'AL', 64868=>'AL', 64869=>'AL', 64870=>'AL', 64871=>'AL', 64872=>'AL', 64873=>'AL', 64874=>'AL', 64875=>'AL', 64876=>'AL', 64877=>'AL', 64878=>'AL', 64879=>'AL', 64880=>'AL', 64881=>'AL', 64882=>'AL', 64883=>'AL', 64884=>'AL', 64885=>'AL', 64886=>'AL', 64887=>'AL', 64888=>'AL', 64889=>'AL', 64890=>'AL', 64891=>'AL', 64892=>'AL', 64893=>'AL', 64894=>'AL', 64895=>'AL', 64896=>'AL', 64897=>'AL', 64898=>'AL', 64899=>'AL', 64900=>'AL', 64901=>'AL', 64902=>'AL', 64903=>'AL', 64904=>'AL', 64905=>'AL', 64906=>'AL', 64907=>'AL', 64908=>'AL', 64909=>'AL', 64910=>'AL', 64911=>'AL', 64914=>'AL', 64915=>'AL', 64916=>'AL', 64917=>'AL', 64918=>'AL', 64919=>'AL', 64920=>'AL', 64921=>'AL', 64922=>'AL', 64923=>'AL', 64924=>'AL', 64925=>'AL', 64926=>'AL', 64927=>'AL', 64928=>'AL', 64929=>'AL', 64930=>'AL', 64931=>'AL', 64932=>'AL', 64933=>'AL', 64934=>'AL', 64935=>'AL', 64936=>'AL', 64937=>'AL', 64938=>'AL', 64939=>'AL', 64940=>'AL', 64941=>'AL', 64942=>'AL', 64943=>'AL', 64944=>'AL', 64945=>'AL', 64946=>'AL', 64947=>'AL', 64948=>'AL', 64949=>'AL', 64950=>'AL', 64951=>'AL', 64952=>'AL', 64953=>'AL', 64954=>'AL', 64955=>'AL', 64956=>'AL', 64957=>'AL', 64958=>'AL', 64959=>'AL', 64960=>'AL', 64961=>'AL', 64962=>'AL', 64963=>'AL', 64964=>'AL', 64965=>'AL', 64966=>'AL', 64967=>'AL', 65008=>'AL', 65009=>'AL', 65010=>'AL', 65011=>'AL', 65012=>'AL', 65013=>'AL', 65014=>'AL', 65015=>'AL', 65016=>'AL', 65017=>'AL', 65018=>'AL', 65019=>'AL', 65020=>'AL', 65021=>'ON', 65024=>'NSM', 65025=>'NSM', 65026=>'NSM', 65027=>'NSM', 65028=>'NSM', 65029=>'NSM', 65030=>'NSM', 65031=>'NSM', 65032=>'NSM', 65033=>'NSM', 65034=>'NSM', 65035=>'NSM', 65036=>'NSM', 65037=>'NSM', 65038=>'NSM', 65039=>'NSM', 65040=>'ON', 65041=>'ON', 65042=>'ON', 65043=>'ON', 65044=>'ON', 65045=>'ON', 65046=>'ON', 65047=>'ON', 65048=>'ON', 65049=>'ON', 65056=>'NSM', 65057=>'NSM', 65058=>'NSM', 65059=>'NSM', 65072=>'ON', 65073=>'ON', 65074=>'ON', 65075=>'ON', 65076=>'ON', 65077=>'ON', 65078=>'ON', 65079=>'ON', 65080=>'ON', 65081=>'ON', 65082=>'ON', 65083=>'ON', 65084=>'ON', 65085=>'ON', 65086=>'ON', 65087=>'ON', 65088=>'ON', 65089=>'ON', 65090=>'ON', 65091=>'ON', 65092=>'ON', 65093=>'ON', 65094=>'ON', 65095=>'ON', 65096=>'ON', 65097=>'ON', 65098=>'ON', 65099=>'ON', 65100=>'ON', 65101=>'ON', 65102=>'ON', 65103=>'ON', 65104=>'CS', 65105=>'ON', 65106=>'CS', 65108=>'ON', 65109=>'CS', 65110=>'ON', 65111=>'ON', 65112=>'ON', 65113=>'ON', 65114=>'ON', 65115=>'ON', 65116=>'ON', 65117=>'ON', 65118=>'ON', 65119=>'ET', 65120=>'ON', 65121=>'ON', 65122=>'ES', 65123=>'ES', 65124=>'ON', 65125=>'ON', 65126=>'ON', 65128=>'ON', 65129=>'ET', 65130=>'ET', 65131=>'ON', 65136=>'AL', 65137=>'AL', 65138=>'AL', 65139=>'AL', 65140=>'AL', 65142=>'AL', 65143=>'AL', 65144=>'AL', 65145=>'AL', 65146=>'AL', 65147=>'AL', 65148=>'AL', 65149=>'AL', 65150=>'AL', 65151=>'AL', 65152=>'AL', 65153=>'AL', 65154=>'AL', 65155=>'AL', 65156=>'AL', 65157=>'AL', 65158=>'AL', 65159=>'AL', 65160=>'AL', 65161=>'AL', 65162=>'AL', 65163=>'AL', 65164=>'AL', 65165=>'AL', 65166=>'AL', 65167=>'AL', 65168=>'AL', 65169=>'AL', 65170=>'AL', 65171=>'AL', 65172=>'AL', 65173=>'AL', 65174=>'AL', 65175=>'AL', 65176=>'AL', 65177=>'AL', 65178=>'AL', 65179=>'AL', 65180=>'AL', 65181=>'AL', 65182=>'AL', 65183=>'AL', 65184=>'AL', 65185=>'AL', 65186=>'AL', 65187=>'AL', 65188=>'AL', 65189=>'AL', 65190=>'AL', 65191=>'AL', 65192=>'AL', 65193=>'AL', 65194=>'AL', 65195=>'AL', 65196=>'AL', 65197=>'AL', 65198=>'AL', 65199=>'AL', 65200=>'AL', 65201=>'AL', 65202=>'AL', 65203=>'AL', 65204=>'AL', 65205=>'AL', 65206=>'AL', 65207=>'AL', 65208=>'AL', 65209=>'AL', 65210=>'AL', 65211=>'AL', 65212=>'AL', 65213=>'AL', 65214=>'AL', 65215=>'AL', 65216=>'AL', 65217=>'AL', 65218=>'AL', 65219=>'AL', 65220=>'AL', 65221=>'AL', 65222=>'AL', 65223=>'AL', 65224=>'AL', 65225=>'AL', 65226=>'AL', 65227=>'AL', 65228=>'AL', 65229=>'AL', 65230=>'AL', 65231=>'AL', 65232=>'AL', 65233=>'AL', 65234=>'AL', 65235=>'AL', 65236=>'AL', 65237=>'AL', 65238=>'AL', 65239=>'AL', 65240=>'AL', 65241=>'AL', 65242=>'AL', 65243=>'AL', 65244=>'AL', 65245=>'AL', 65246=>'AL', 65247=>'AL', 65248=>'AL', 65249=>'AL', 65250=>'AL', 65251=>'AL', 65252=>'AL', 65253=>'AL', 65254=>'AL', 65255=>'AL', 65256=>'AL', 65257=>'AL', 65258=>'AL', 65259=>'AL', 65260=>'AL', 65261=>'AL', 65262=>'AL', 65263=>'AL', 65264=>'AL', 65265=>'AL', 65266=>'AL', 65267=>'AL', 65268=>'AL', 65269=>'AL', 65270=>'AL', 65271=>'AL', 65272=>'AL', 65273=>'AL', 65274=>'AL', 65275=>'AL', 65276=>'AL', 65279=>'BN', 65281=>'ON', 65282=>'ON', 65283=>'ET', 65284=>'ET', 65285=>'ET', 65286=>'ON', 65287=>'ON', 65288=>'ON', 65289=>'ON', 65290=>'ON', 65291=>'ES', 65292=>'CS', 65293=>'ES', 65294=>'CS', 65295=>'CS', 65296=>'EN', 65297=>'EN', 65298=>'EN', 65299=>'EN', 65300=>'EN', 65301=>'EN', 65302=>'EN', 65303=>'EN', 65304=>'EN', 65305=>'EN', 65306=>'CS', 65307=>'ON', 65308=>'ON', 65309=>'ON', 65310=>'ON', 65311=>'ON', 65312=>'ON', 65313=>'L', 65314=>'L', 65315=>'L', 65316=>'L', 65317=>'L', 65318=>'L', 65319=>'L', 65320=>'L', 65321=>'L', 65322=>'L', 65323=>'L', 65324=>'L', 65325=>'L', 65326=>'L', 65327=>'L', 65328=>'L', 65329=>'L', 65330=>'L', 65331=>'L', 65332=>'L', 65333=>'L', 65334=>'L', 65335=>'L', 65336=>'L', 65337=>'L', 65338=>'L', 65339=>'ON', 65340=>'ON', 65341=>'ON', 65342=>'ON', 65343=>'ON', 65344=>'ON', 65345=>'L', 65346=>'L', 65347=>'L', 65348=>'L', 65349=>'L', 65350=>'L', 65351=>'L', 65352=>'L', 65353=>'L', 65354=>'L', 65355=>'L', 65356=>'L', 65357=>'L', 65358=>'L', 65359=>'L', 65360=>'L', 65361=>'L', 65362=>'L', 65363=>'L', 65364=>'L', 65365=>'L', 65366=>'L', 65367=>'L', 65368=>'L', 65369=>'L', 65370=>'L', 65371=>'ON', 65372=>'ON', 65373=>'ON', 65374=>'ON', 65375=>'ON', 65376=>'ON', 65377=>'ON', 65378=>'ON', 65379=>'ON', 65380=>'ON', 65381=>'ON', 65382=>'L', 65383=>'L', 65384=>'L', 65385=>'L', 65386=>'L', 65387=>'L', 65388=>'L', 65389=>'L', 65390=>'L', 65391=>'L', 65392=>'L', 65393=>'L', 65394=>'L', 65395=>'L', 65396=>'L', 65397=>'L', 65398=>'L', 65399=>'L', 65400=>'L', 65401=>'L', 65402=>'L', 65403=>'L', 65404=>'L', 65405=>'L', 65406=>'L', 65407=>'L', 65408=>'L', 65409=>'L', 65410=>'L', 65411=>'L', 65412=>'L', 65413=>'L', 65414=>'L', 65415=>'L', 65416=>'L', 65417=>'L', 65418=>'L', 65419=>'L', 65420=>'L', 65421=>'L', 65422=>'L', 65423=>'L', 65424=>'L', 65425=>'L', 65426=>'L', 65427=>'L', 65428=>'L', 65429=>'L', 65430=>'L', 65431=>'L', 65432=>'L', 65433=>'L', 65434=>'L', 65435=>'L', 65436=>'L', 65437=>'L', 65438=>'L', 65439=>'L', 65440=>'L', 65441=>'L', 65442=>'L', 65443=>'L', 65444=>'L', 65445=>'L', 65446=>'L', 65447=>'L', 65448=>'L', 65449=>'L', 65450=>'L', 65451=>'L', 65452=>'L', 65453=>'L', 65454=>'L', 65455=>'L', 65456=>'L', 65457=>'L', 65458=>'L', 65459=>'L', 65460=>'L', 65461=>'L', 65462=>'L', 65463=>'L', 65464=>'L', 65465=>'L', 65466=>'L', 65467=>'L', 65468=>'L', 65469=>'L', 65470=>'L', 65474=>'L', 65475=>'L', 65476=>'L', 65477=>'L', 65478=>'L', 65479=>'L', 65482=>'L', 65483=>'L', 65484=>'L', 65485=>'L', 65486=>'L', 65487=>'L', 65490=>'L', 65491=>'L', 65492=>'L', 65493=>'L', 65494=>'L', 65495=>'L', 65498=>'L', 65499=>'L', 65500=>'L', 65504=>'ET', 65505=>'ET', 65506=>'ON', 65507=>'ON', 65508=>'ON', 65509=>'ET', 65510=>'ET', 65512=>'ON', 65513=>'ON', 65514=>'ON', 65515=>'ON', 65516=>'ON', 65517=>'ON', 65518=>'ON', 65529=>'ON', 65530=>'ON', 65531=>'ON', 65532=>'ON', 65533=>'ON', 65536=>'L', 65537=>'L', 65538=>'L', 65539=>'L', 65540=>'L', 65541=>'L', 65542=>'L', 65543=>'L', 65544=>'L', 65545=>'L', 65546=>'L', 65547=>'L', 65549=>'L', 65550=>'L', 65551=>'L', 65552=>'L', 65553=>'L', 65554=>'L', 65555=>'L', 65556=>'L', 65557=>'L', 65558=>'L', 65559=>'L', 65560=>'L', 65561=>'L', 65562=>'L', 65563=>'L', 65564=>'L', 65565=>'L', 65566=>'L', 65567=>'L', 65568=>'L', 65569=>'L', 65570=>'L', 65571=>'L', 65572=>'L', 65573=>'L', 65574=>'L', 65576=>'L', 65577=>'L', 65578=>'L', 65579=>'L', 65580=>'L', 65581=>'L', 65582=>'L', 65583=>'L', 65584=>'L', 65585=>'L', 65586=>'L', 65587=>'L', 65588=>'L', 65589=>'L', 65590=>'L', 65591=>'L', 65592=>'L', 65593=>'L', 65594=>'L', 65596=>'L', 65597=>'L', 65599=>'L', 65600=>'L', 65601=>'L', 65602=>'L', 65603=>'L', 65604=>'L', 65605=>'L', 65606=>'L', 65607=>'L', 65608=>'L', 65609=>'L', 65610=>'L', 65611=>'L', 65612=>'L', 65613=>'L', 65616=>'L', 65617=>'L', 65618=>'L', 65619=>'L', 65620=>'L', 65621=>'L', 65622=>'L', 65623=>'L', 65624=>'L', 65625=>'L', 65626=>'L', 65627=>'L', 65628=>'L', 65629=>'L', 65664=>'L', 65665=>'L', 65666=>'L', 65667=>'L', 65668=>'L', 65669=>'L', 65670=>'L', 65671=>'L', 65672=>'L', 65673=>'L', 65674=>'L', 65675=>'L', 65676=>'L', 65677=>'L', 65678=>'L', 65679=>'L', 65680=>'L', 65681=>'L', 65682=>'L', 65683=>'L', 65684=>'L', 65685=>'L', 65686=>'L', 65687=>'L', 65688=>'L', 65689=>'L', 65690=>'L', 65691=>'L', 65692=>'L', 65693=>'L', 65694=>'L', 65695=>'L', 65696=>'L', 65697=>'L', 65698=>'L', 65699=>'L', 65700=>'L', 65701=>'L', 65702=>'L', 65703=>'L', 65704=>'L', 65705=>'L', 65706=>'L', 65707=>'L', 65708=>'L', 65709=>'L', 65710=>'L', 65711=>'L', 65712=>'L', 65713=>'L', 65714=>'L', 65715=>'L', 65716=>'L', 65717=>'L', 65718=>'L', 65719=>'L', 65720=>'L', 65721=>'L', 65722=>'L', 65723=>'L', 65724=>'L', 65725=>'L', 65726=>'L', 65727=>'L', 65728=>'L', 65729=>'L', 65730=>'L', 65731=>'L', 65732=>'L', 65733=>'L', 65734=>'L', 65735=>'L', 65736=>'L', 65737=>'L', 65738=>'L', 65739=>'L', 65740=>'L', 65741=>'L', 65742=>'L', 65743=>'L', 65744=>'L', 65745=>'L', 65746=>'L', 65747=>'L', 65748=>'L', 65749=>'L', 65750=>'L', 65751=>'L', 65752=>'L', 65753=>'L', 65754=>'L', 65755=>'L', 65756=>'L', 65757=>'L', 65758=>'L', 65759=>'L', 65760=>'L', 65761=>'L', 65762=>'L', 65763=>'L', 65764=>'L', 65765=>'L', 65766=>'L', 65767=>'L', 65768=>'L', 65769=>'L', 65770=>'L', 65771=>'L', 65772=>'L', 65773=>'L', 65774=>'L', 65775=>'L', 65776=>'L', 65777=>'L', 65778=>'L', 65779=>'L', 65780=>'L', 65781=>'L', 65782=>'L', 65783=>'L', 65784=>'L', 65785=>'L', 65786=>'L', 65792=>'L', 65793=>'ON', 65794=>'L', 65799=>'L', 65800=>'L', 65801=>'L', 65802=>'L', 65803=>'L', 65804=>'L', 65805=>'L', 65806=>'L', 65807=>'L', 65808=>'L', 65809=>'L', 65810=>'L', 65811=>'L', 65812=>'L', 65813=>'L', 65814=>'L', 65815=>'L', 65816=>'L', 65817=>'L', 65818=>'L', 65819=>'L', 65820=>'L', 65821=>'L', 65822=>'L', 65823=>'L', 65824=>'L', 65825=>'L', 65826=>'L', 65827=>'L', 65828=>'L', 65829=>'L', 65830=>'L', 65831=>'L', 65832=>'L', 65833=>'L', 65834=>'L', 65835=>'L', 65836=>'L', 65837=>'L', 65838=>'L', 65839=>'L', 65840=>'L', 65841=>'L', 65842=>'L', 65843=>'L', 65847=>'L', 65848=>'L', 65849=>'L', 65850=>'L', 65851=>'L', 65852=>'L', 65853=>'L', 65854=>'L', 65855=>'L', 65856=>'ON', 65857=>'ON', 65858=>'ON', 65859=>'ON', 65860=>'ON', 65861=>'ON', 65862=>'ON', 65863=>'ON', 65864=>'ON', 65865=>'ON', 65866=>'ON', 65867=>'ON', 65868=>'ON', 65869=>'ON', 65870=>'ON', 65871=>'ON', 65872=>'ON', 65873=>'ON', 65874=>'ON', 65875=>'ON', 65876=>'ON', 65877=>'ON', 65878=>'ON', 65879=>'ON', 65880=>'ON', 65881=>'ON', 65882=>'ON', 65883=>'ON', 65884=>'ON', 65885=>'ON', 65886=>'ON', 65887=>'ON', 65888=>'ON', 65889=>'ON', 65890=>'ON', 65891=>'ON', 65892=>'ON', 65893=>'ON', 65894=>'ON', 65895=>'ON', 65896=>'ON', 65897=>'ON', 65898=>'ON', 65899=>'ON', 65900=>'ON', 65901=>'ON', 65902=>'ON', 65903=>'ON', 65904=>'ON', 65905=>'ON', 65906=>'ON', 65907=>'ON', 65908=>'ON', 65909=>'ON', 65910=>'ON', 65911=>'ON', 65912=>'ON', 65913=>'ON', 65914=>'ON', 65915=>'ON', 65916=>'ON', 65917=>'ON', 65918=>'ON', 65919=>'ON', 65920=>'ON', 65921=>'ON', 65922=>'ON', 65923=>'ON', 65924=>'ON', 65925=>'ON', 65926=>'ON', 65927=>'ON', 65928=>'ON', 65929=>'ON', 65930=>'ON', 66304=>'L', 66305=>'L', 66306=>'L', 66307=>'L', 66308=>'L', 66309=>'L', 66310=>'L', 66311=>'L', 66312=>'L', 66313=>'L', 66314=>'L', 66315=>'L', 66316=>'L', 66317=>'L', 66318=>'L', 66319=>'L', 66320=>'L', 66321=>'L', 66322=>'L', 66323=>'L', 66324=>'L', 66325=>'L', 66326=>'L', 66327=>'L', 66328=>'L', 66329=>'L', 66330=>'L', 66331=>'L', 66332=>'L', 66333=>'L', 66334=>'L', 66336=>'L', 66337=>'L', 66338=>'L', 66339=>'L', 66352=>'L', 66353=>'L', 66354=>'L', 66355=>'L', 66356=>'L', 66357=>'L', 66358=>'L', 66359=>'L', 66360=>'L', 66361=>'L', 66362=>'L', 66363=>'L', 66364=>'L', 66365=>'L', 66366=>'L', 66367=>'L', 66368=>'L', 66369=>'L', 66370=>'L', 66371=>'L', 66372=>'L', 66373=>'L', 66374=>'L', 66375=>'L', 66376=>'L', 66377=>'L', 66378=>'L', 66432=>'L', 66433=>'L', 66434=>'L', 66435=>'L', 66436=>'L', 66437=>'L', 66438=>'L', 66439=>'L', 66440=>'L', 66441=>'L', 66442=>'L', 66443=>'L', 66444=>'L', 66445=>'L', 66446=>'L', 66447=>'L', 66448=>'L', 66449=>'L', 66450=>'L', 66451=>'L', 66452=>'L', 66453=>'L', 66454=>'L', 66455=>'L', 66456=>'L', 66457=>'L', 66458=>'L', 66459=>'L', 66460=>'L', 66461=>'L', 66463=>'L', 66464=>'L', 66465=>'L', 66466=>'L', 66467=>'L', 66468=>'L', 66469=>'L', 66470=>'L', 66471=>'L', 66472=>'L', 66473=>'L', 66474=>'L', 66475=>'L', 66476=>'L', 66477=>'L', 66478=>'L', 66479=>'L', 66480=>'L', 66481=>'L', 66482=>'L', 66483=>'L', 66484=>'L', 66485=>'L', 66486=>'L', 66487=>'L', 66488=>'L', 66489=>'L', 66490=>'L', 66491=>'L', 66492=>'L', 66493=>'L', 66494=>'L', 66495=>'L', 66496=>'L', 66497=>'L', 66498=>'L', 66499=>'L', 66504=>'L', 66505=>'L', 66506=>'L', 66507=>'L', 66508=>'L', 66509=>'L', 66510=>'L', 66511=>'L', 66512=>'L', 66513=>'L', 66514=>'L', 66515=>'L', 66516=>'L', 66517=>'L', 66560=>'L', 66561=>'L', 66562=>'L', 66563=>'L', 66564=>'L', 66565=>'L', 66566=>'L', 66567=>'L', 66568=>'L', 66569=>'L', 66570=>'L', 66571=>'L', 66572=>'L', 66573=>'L', 66574=>'L', 66575=>'L', 66576=>'L', 66577=>'L', 66578=>'L', 66579=>'L', 66580=>'L', 66581=>'L', 66582=>'L', 66583=>'L', 66584=>'L', 66585=>'L', 66586=>'L', 66587=>'L', 66588=>'L', 66589=>'L', 66590=>'L', 66591=>'L', 66592=>'L', 66593=>'L', 66594=>'L', 66595=>'L', 66596=>'L', 66597=>'L', 66598=>'L', 66599=>'L', 66600=>'L', 66601=>'L', 66602=>'L', 66603=>'L', 66604=>'L', 66605=>'L', 66606=>'L', 66607=>'L', 66608=>'L', 66609=>'L', 66610=>'L', 66611=>'L', 66612=>'L', 66613=>'L', 66614=>'L', 66615=>'L', 66616=>'L', 66617=>'L', 66618=>'L', 66619=>'L', 66620=>'L', 66621=>'L', 66622=>'L', 66623=>'L', 66624=>'L', 66625=>'L', 66626=>'L', 66627=>'L', 66628=>'L', 66629=>'L', 66630=>'L', 66631=>'L', 66632=>'L', 66633=>'L', 66634=>'L', 66635=>'L', 66636=>'L', 66637=>'L', 66638=>'L', 66639=>'L', 66640=>'L', 66641=>'L', 66642=>'L', 66643=>'L', 66644=>'L', 66645=>'L', 66646=>'L', 66647=>'L', 66648=>'L', 66649=>'L', 66650=>'L', 66651=>'L', 66652=>'L', 66653=>'L', 66654=>'L', 66655=>'L', 66656=>'L', 66657=>'L', 66658=>'L', 66659=>'L', 66660=>'L', 66661=>'L', 66662=>'L', 66663=>'L', 66664=>'L', 66665=>'L', 66666=>'L', 66667=>'L', 66668=>'L', 66669=>'L', 66670=>'L', 66671=>'L', 66672=>'L', 66673=>'L', 66674=>'L', 66675=>'L', 66676=>'L', 66677=>'L', 66678=>'L', 66679=>'L', 66680=>'L', 66681=>'L', 66682=>'L', 66683=>'L', 66684=>'L', 66685=>'L', 66686=>'L', 66687=>'L', 66688=>'L', 66689=>'L', 66690=>'L', 66691=>'L', 66692=>'L', 66693=>'L', 66694=>'L', 66695=>'L', 66696=>'L', 66697=>'L', 66698=>'L', 66699=>'L', 66700=>'L', 66701=>'L', 66702=>'L', 66703=>'L', 66704=>'L', 66705=>'L', 66706=>'L', 66707=>'L', 66708=>'L', 66709=>'L', 66710=>'L', 66711=>'L', 66712=>'L', 66713=>'L', 66714=>'L', 66715=>'L', 66716=>'L', 66717=>'L', 66720=>'L', 66721=>'L', 66722=>'L', 66723=>'L', 66724=>'L', 66725=>'L', 66726=>'L', 66727=>'L', 66728=>'L', 66729=>'L', 67584=>'R', 67585=>'R', 67586=>'R', 67587=>'R', 67588=>'R', 67589=>'R', 67592=>'R', 67594=>'R', 67595=>'R', 67596=>'R', 67597=>'R', 67598=>'R', 67599=>'R', 67600=>'R', 67601=>'R', 67602=>'R', 67603=>'R', 67604=>'R', 67605=>'R', 67606=>'R', 67607=>'R', 67608=>'R', 67609=>'R', 67610=>'R', 67611=>'R', 67612=>'R', 67613=>'R', 67614=>'R', 67615=>'R', 67616=>'R', 67617=>'R', 67618=>'R', 67619=>'R', 67620=>'R', 67621=>'R', 67622=>'R', 67623=>'R', 67624=>'R', 67625=>'R', 67626=>'R', 67627=>'R', 67628=>'R', 67629=>'R', 67630=>'R', 67631=>'R', 67632=>'R', 67633=>'R', 67634=>'R', 67635=>'R', 67636=>'R', 67637=>'R', 67639=>'R', 67640=>'R', 67644=>'R', 67647=>'R', 67840=>'R', 67841=>'R', 67842=>'R', 67843=>'R', 67844=>'R', 67845=>'R', 67846=>'R', 67847=>'R', 67848=>'R', 67849=>'R', 67850=>'R', 67851=>'R', 67852=>'R', 67853=>'R', 67854=>'R', 67855=>'R', 67856=>'R', 67857=>'R', 67858=>'R', 67859=>'R', 67860=>'R', 67861=>'R', 67862=>'R', 67863=>'R', 67864=>'R', 67865=>'R', 67871=>'ON', 68096=>'R', 68097=>'NSM', 68098=>'NSM', 68099=>'NSM', 68101=>'NSM', 68102=>'NSM', 68108=>'NSM', 68109=>'NSM', 68110=>'NSM', 68111=>'NSM', 68112=>'R', 68113=>'R', 68114=>'R', 68115=>'R', 68117=>'R', 68118=>'R', 68119=>'R', 68121=>'R', 68122=>'R', 68123=>'R', 68124=>'R', 68125=>'R', 68126=>'R', 68127=>'R', 68128=>'R', 68129=>'R', 68130=>'R', 68131=>'R', 68132=>'R', 68133=>'R', 68134=>'R', 68135=>'R', 68136=>'R', 68137=>'R', 68138=>'R', 68139=>'R', 68140=>'R', 68141=>'R', 68142=>'R', 68143=>'R', 68144=>'R', 68145=>'R', 68146=>'R', 68147=>'R', 68152=>'NSM', 68153=>'NSM', 68154=>'NSM', 68159=>'NSM', 68160=>'R', 68161=>'R', 68162=>'R', 68163=>'R', 68164=>'R', 68165=>'R', 68166=>'R', 68167=>'R', 68176=>'R', 68177=>'R', 68178=>'R', 68179=>'R', 68180=>'R', 68181=>'R', 68182=>'R', 68183=>'R', 68184=>'R', 73728=>'L', 73729=>'L', 73730=>'L', 73731=>'L', 73732=>'L', 73733=>'L', 73734=>'L', 73735=>'L', 73736=>'L', 73737=>'L', 73738=>'L', 73739=>'L', 73740=>'L', 73741=>'L', 73742=>'L', 73743=>'L', 73744=>'L', 73745=>'L', 73746=>'L', 73747=>'L', 73748=>'L', 73749=>'L', 73750=>'L', 73751=>'L', 73752=>'L', 73753=>'L', 73754=>'L', 73755=>'L', 73756=>'L', 73757=>'L', 73758=>'L', 73759=>'L', 73760=>'L', 73761=>'L', 73762=>'L', 73763=>'L', 73764=>'L', 73765=>'L', 73766=>'L', 73767=>'L', 73768=>'L', 73769=>'L', 73770=>'L', 73771=>'L', 73772=>'L', 73773=>'L', 73774=>'L', 73775=>'L', 73776=>'L', 73777=>'L', 73778=>'L', 73779=>'L', 73780=>'L', 73781=>'L', 73782=>'L', 73783=>'L', 73784=>'L', 73785=>'L', 73786=>'L', 73787=>'L', 73788=>'L', 73789=>'L', 73790=>'L', 73791=>'L', 73792=>'L', 73793=>'L', 73794=>'L', 73795=>'L', 73796=>'L', 73797=>'L', 73798=>'L', 73799=>'L', 73800=>'L', 73801=>'L', 73802=>'L', 73803=>'L', 73804=>'L', 73805=>'L', 73806=>'L', 73807=>'L', 73808=>'L', 73809=>'L', 73810=>'L', 73811=>'L', 73812=>'L', 73813=>'L', 73814=>'L', 73815=>'L', 73816=>'L', 73817=>'L', 73818=>'L', 73819=>'L', 73820=>'L', 73821=>'L', 73822=>'L', 73823=>'L', 73824=>'L', 73825=>'L', 73826=>'L', 73827=>'L', 73828=>'L', 73829=>'L', 73830=>'L', 73831=>'L', 73832=>'L', 73833=>'L', 73834=>'L', 73835=>'L', 73836=>'L', 73837=>'L', 73838=>'L', 73839=>'L', 73840=>'L', 73841=>'L', 73842=>'L', 73843=>'L', 73844=>'L', 73845=>'L', 73846=>'L', 73847=>'L', 73848=>'L', 73849=>'L', 73850=>'L', 73851=>'L', 73852=>'L', 73853=>'L', 73854=>'L', 73855=>'L', 73856=>'L', 73857=>'L', 73858=>'L', 73859=>'L', 73860=>'L', 73861=>'L', 73862=>'L', 73863=>'L', 73864=>'L', 73865=>'L', 73866=>'L', 73867=>'L', 73868=>'L', 73869=>'L', 73870=>'L', 73871=>'L', 73872=>'L', 73873=>'L', 73874=>'L', 73875=>'L', 73876=>'L', 73877=>'L', 73878=>'L', 73879=>'L', 73880=>'L', 73881=>'L', 73882=>'L', 73883=>'L', 73884=>'L', 73885=>'L', 73886=>'L', 73887=>'L', 73888=>'L', 73889=>'L', 73890=>'L', 73891=>'L', 73892=>'L', 73893=>'L', 73894=>'L', 73895=>'L', 73896=>'L', 73897=>'L', 73898=>'L', 73899=>'L', 73900=>'L', 73901=>'L', 73902=>'L', 73903=>'L', 73904=>'L', 73905=>'L', 73906=>'L', 73907=>'L', 73908=>'L', 73909=>'L', 73910=>'L', 73911=>'L', 73912=>'L', 73913=>'L', 73914=>'L', 73915=>'L', 73916=>'L', 73917=>'L', 73918=>'L', 73919=>'L', 73920=>'L', 73921=>'L', 73922=>'L', 73923=>'L', 73924=>'L', 73925=>'L', 73926=>'L', 73927=>'L', 73928=>'L', 73929=>'L', 73930=>'L', 73931=>'L', 73932=>'L', 73933=>'L', 73934=>'L', 73935=>'L', 73936=>'L', 73937=>'L', 73938=>'L', 73939=>'L', 73940=>'L', 73941=>'L', 73942=>'L', 73943=>'L', 73944=>'L', 73945=>'L', 73946=>'L', 73947=>'L', 73948=>'L', 73949=>'L', 73950=>'L', 73951=>'L', 73952=>'L', 73953=>'L', 73954=>'L', 73955=>'L', 73956=>'L', 73957=>'L', 73958=>'L', 73959=>'L', 73960=>'L', 73961=>'L', 73962=>'L', 73963=>'L', 73964=>'L', 73965=>'L', 73966=>'L', 73967=>'L', 73968=>'L', 73969=>'L', 73970=>'L', 73971=>'L', 73972=>'L', 73973=>'L', 73974=>'L', 73975=>'L', 73976=>'L', 73977=>'L', 73978=>'L', 73979=>'L', 73980=>'L', 73981=>'L', 73982=>'L', 73983=>'L', 73984=>'L', 73985=>'L', 73986=>'L', 73987=>'L', 73988=>'L', 73989=>'L', 73990=>'L', 73991=>'L', 73992=>'L', 73993=>'L', 73994=>'L', 73995=>'L', 73996=>'L', 73997=>'L', 73998=>'L', 73999=>'L', 74000=>'L', 74001=>'L', 74002=>'L', 74003=>'L', 74004=>'L', 74005=>'L', 74006=>'L', 74007=>'L', 74008=>'L', 74009=>'L', 74010=>'L', 74011=>'L', 74012=>'L', 74013=>'L', 74014=>'L', 74015=>'L', 74016=>'L', 74017=>'L', 74018=>'L', 74019=>'L', 74020=>'L', 74021=>'L', 74022=>'L', 74023=>'L', 74024=>'L', 74025=>'L', 74026=>'L', 74027=>'L', 74028=>'L', 74029=>'L', 74030=>'L', 74031=>'L', 74032=>'L', 74033=>'L', 74034=>'L', 74035=>'L', 74036=>'L', 74037=>'L', 74038=>'L', 74039=>'L', 74040=>'L', 74041=>'L', 74042=>'L', 74043=>'L', 74044=>'L', 74045=>'L', 74046=>'L', 74047=>'L', 74048=>'L', 74049=>'L', 74050=>'L', 74051=>'L', 74052=>'L', 74053=>'L', 74054=>'L', 74055=>'L', 74056=>'L', 74057=>'L', 74058=>'L', 74059=>'L', 74060=>'L', 74061=>'L', 74062=>'L', 74063=>'L', 74064=>'L', 74065=>'L', 74066=>'L', 74067=>'L', 74068=>'L', 74069=>'L', 74070=>'L', 74071=>'L', 74072=>'L', 74073=>'L', 74074=>'L', 74075=>'L', 74076=>'L', 74077=>'L', 74078=>'L', 74079=>'L', 74080=>'L', 74081=>'L', 74082=>'L', 74083=>'L', 74084=>'L', 74085=>'L', 74086=>'L', 74087=>'L', 74088=>'L', 74089=>'L', 74090=>'L', 74091=>'L', 74092=>'L', 74093=>'L', 74094=>'L', 74095=>'L', 74096=>'L', 74097=>'L', 74098=>'L', 74099=>'L', 74100=>'L', 74101=>'L', 74102=>'L', 74103=>'L', 74104=>'L', 74105=>'L', 74106=>'L', 74107=>'L', 74108=>'L', 74109=>'L', 74110=>'L', 74111=>'L', 74112=>'L', 74113=>'L', 74114=>'L', 74115=>'L', 74116=>'L', 74117=>'L', 74118=>'L', 74119=>'L', 74120=>'L', 74121=>'L', 74122=>'L', 74123=>'L', 74124=>'L', 74125=>'L', 74126=>'L', 74127=>'L', 74128=>'L', 74129=>'L', 74130=>'L', 74131=>'L', 74132=>'L', 74133=>'L', 74134=>'L', 74135=>'L', 74136=>'L', 74137=>'L', 74138=>'L', 74139=>'L', 74140=>'L', 74141=>'L', 74142=>'L', 74143=>'L', 74144=>'L', 74145=>'L', 74146=>'L', 74147=>'L', 74148=>'L', 74149=>'L', 74150=>'L', 74151=>'L', 74152=>'L', 74153=>'L', 74154=>'L', 74155=>'L', 74156=>'L', 74157=>'L', 74158=>'L', 74159=>'L', 74160=>'L', 74161=>'L', 74162=>'L', 74163=>'L', 74164=>'L', 74165=>'L', 74166=>'L', 74167=>'L', 74168=>'L', 74169=>'L', 74170=>'L', 74171=>'L', 74172=>'L', 74173=>'L', 74174=>'L', 74175=>'L', 74176=>'L', 74177=>'L', 74178=>'L', 74179=>'L', 74180=>'L', 74181=>'L', 74182=>'L', 74183=>'L', 74184=>'L', 74185=>'L', 74186=>'L', 74187=>'L', 74188=>'L', 74189=>'L', 74190=>'L', 74191=>'L', 74192=>'L', 74193=>'L', 74194=>'L', 74195=>'L', 74196=>'L', 74197=>'L', 74198=>'L', 74199=>'L', 74200=>'L', 74201=>'L', 74202=>'L', 74203=>'L', 74204=>'L', 74205=>'L', 74206=>'L', 74207=>'L', 74208=>'L', 74209=>'L', 74210=>'L', 74211=>'L', 74212=>'L', 74213=>'L', 74214=>'L', 74215=>'L', 74216=>'L', 74217=>'L', 74218=>'L', 74219=>'L', 74220=>'L', 74221=>'L', 74222=>'L', 74223=>'L', 74224=>'L', 74225=>'L', 74226=>'L', 74227=>'L', 74228=>'L', 74229=>'L', 74230=>'L', 74231=>'L', 74232=>'L', 74233=>'L', 74234=>'L', 74235=>'L', 74236=>'L', 74237=>'L', 74238=>'L', 74239=>'L', 74240=>'L', 74241=>'L', 74242=>'L', 74243=>'L', 74244=>'L', 74245=>'L', 74246=>'L', 74247=>'L', 74248=>'L', 74249=>'L', 74250=>'L', 74251=>'L', 74252=>'L', 74253=>'L', 74254=>'L', 74255=>'L', 74256=>'L', 74257=>'L', 74258=>'L', 74259=>'L', 74260=>'L', 74261=>'L', 74262=>'L', 74263=>'L', 74264=>'L', 74265=>'L', 74266=>'L', 74267=>'L', 74268=>'L', 74269=>'L', 74270=>'L', 74271=>'L', 74272=>'L', 74273=>'L', 74274=>'L', 74275=>'L', 74276=>'L', 74277=>'L', 74278=>'L', 74279=>'L', 74280=>'L', 74281=>'L', 74282=>'L', 74283=>'L', 74284=>'L', 74285=>'L', 74286=>'L', 74287=>'L', 74288=>'L', 74289=>'L', 74290=>'L', 74291=>'L', 74292=>'L', 74293=>'L', 74294=>'L', 74295=>'L', 74296=>'L', 74297=>'L', 74298=>'L', 74299=>'L', 74300=>'L', 74301=>'L', 74302=>'L', 74303=>'L', 74304=>'L', 74305=>'L', 74306=>'L', 74307=>'L', 74308=>'L', 74309=>'L', 74310=>'L', 74311=>'L', 74312=>'L', 74313=>'L', 74314=>'L', 74315=>'L', 74316=>'L', 74317=>'L', 74318=>'L', 74319=>'L', 74320=>'L', 74321=>'L', 74322=>'L', 74323=>'L', 74324=>'L', 74325=>'L', 74326=>'L', 74327=>'L', 74328=>'L', 74329=>'L', 74330=>'L', 74331=>'L', 74332=>'L', 74333=>'L', 74334=>'L', 74335=>'L', 74336=>'L', 74337=>'L', 74338=>'L', 74339=>'L', 74340=>'L', 74341=>'L', 74342=>'L', 74343=>'L', 74344=>'L', 74345=>'L', 74346=>'L', 74347=>'L', 74348=>'L', 74349=>'L', 74350=>'L', 74351=>'L', 74352=>'L', 74353=>'L', 74354=>'L', 74355=>'L', 74356=>'L', 74357=>'L', 74358=>'L', 74359=>'L', 74360=>'L', 74361=>'L', 74362=>'L', 74363=>'L', 74364=>'L', 74365=>'L', 74366=>'L', 74367=>'L', 74368=>'L', 74369=>'L', 74370=>'L', 74371=>'L', 74372=>'L', 74373=>'L', 74374=>'L', 74375=>'L', 74376=>'L', 74377=>'L', 74378=>'L', 74379=>'L', 74380=>'L', 74381=>'L', 74382=>'L', 74383=>'L', 74384=>'L', 74385=>'L', 74386=>'L', 74387=>'L', 74388=>'L', 74389=>'L', 74390=>'L', 74391=>'L', 74392=>'L', 74393=>'L', 74394=>'L', 74395=>'L', 74396=>'L', 74397=>'L', 74398=>'L', 74399=>'L', 74400=>'L', 74401=>'L', 74402=>'L', 74403=>'L', 74404=>'L', 74405=>'L', 74406=>'L', 74407=>'L', 74408=>'L', 74409=>'L', 74410=>'L', 74411=>'L', 74412=>'L', 74413=>'L', 74414=>'L', 74415=>'L', 74416=>'L', 74417=>'L', 74418=>'L', 74419=>'L', 74420=>'L', 74421=>'L', 74422=>'L', 74423=>'L', 74424=>'L', 74425=>'L', 74426=>'L', 74427=>'L', 74428=>'L', 74429=>'L', 74430=>'L', 74431=>'L', 74432=>'L', 74433=>'L', 74434=>'L', 74435=>'L', 74436=>'L', 74437=>'L', 74438=>'L', 74439=>'L', 74440=>'L', 74441=>'L', 74442=>'L', 74443=>'L', 74444=>'L', 74445=>'L', 74446=>'L', 74447=>'L', 74448=>'L', 74449=>'L', 74450=>'L', 74451=>'L', 74452=>'L', 74453=>'L', 74454=>'L', 74455=>'L', 74456=>'L', 74457=>'L', 74458=>'L', 74459=>'L', 74460=>'L', 74461=>'L', 74462=>'L', 74463=>'L', 74464=>'L', 74465=>'L', 74466=>'L', 74467=>'L', 74468=>'L', 74469=>'L', 74470=>'L', 74471=>'L', 74472=>'L', 74473=>'L', 74474=>'L', 74475=>'L', 74476=>'L', 74477=>'L', 74478=>'L', 74479=>'L', 74480=>'L', 74481=>'L', 74482=>'L', 74483=>'L', 74484=>'L', 74485=>'L', 74486=>'L', 74487=>'L', 74488=>'L', 74489=>'L', 74490=>'L', 74491=>'L', 74492=>'L', 74493=>'L', 74494=>'L', 74495=>'L', 74496=>'L', 74497=>'L', 74498=>'L', 74499=>'L', 74500=>'L', 74501=>'L', 74502=>'L', 74503=>'L', 74504=>'L', 74505=>'L', 74506=>'L', 74507=>'L', 74508=>'L', 74509=>'L', 74510=>'L', 74511=>'L', 74512=>'L', 74513=>'L', 74514=>'L', 74515=>'L', 74516=>'L', 74517=>'L', 74518=>'L', 74519=>'L', 74520=>'L', 74521=>'L', 74522=>'L', 74523=>'L', 74524=>'L', 74525=>'L', 74526=>'L', 74527=>'L', 74528=>'L', 74529=>'L', 74530=>'L', 74531=>'L', 74532=>'L', 74533=>'L', 74534=>'L', 74535=>'L', 74536=>'L', 74537=>'L', 74538=>'L', 74539=>'L', 74540=>'L', 74541=>'L', 74542=>'L', 74543=>'L', 74544=>'L', 74545=>'L', 74546=>'L', 74547=>'L', 74548=>'L', 74549=>'L', 74550=>'L', 74551=>'L', 74552=>'L', 74553=>'L', 74554=>'L', 74555=>'L', 74556=>'L', 74557=>'L', 74558=>'L', 74559=>'L', 74560=>'L', 74561=>'L', 74562=>'L', 74563=>'L', 74564=>'L', 74565=>'L', 74566=>'L', 74567=>'L', 74568=>'L', 74569=>'L', 74570=>'L', 74571=>'L', 74572=>'L', 74573=>'L', 74574=>'L', 74575=>'L', 74576=>'L', 74577=>'L', 74578=>'L', 74579=>'L', 74580=>'L', 74581=>'L', 74582=>'L', 74583=>'L', 74584=>'L', 74585=>'L', 74586=>'L', 74587=>'L', 74588=>'L', 74589=>'L', 74590=>'L', 74591=>'L', 74592=>'L', 74593=>'L', 74594=>'L', 74595=>'L', 74596=>'L', 74597=>'L', 74598=>'L', 74599=>'L', 74600=>'L', 74601=>'L', 74602=>'L', 74603=>'L', 74604=>'L', 74605=>'L', 74606=>'L', 74752=>'L', 74753=>'L', 74754=>'L', 74755=>'L', 74756=>'L', 74757=>'L', 74758=>'L', 74759=>'L', 74760=>'L', 74761=>'L', 74762=>'L', 74763=>'L', 74764=>'L', 74765=>'L', 74766=>'L', 74767=>'L', 74768=>'L', 74769=>'L', 74770=>'L', 74771=>'L', 74772=>'L', 74773=>'L', 74774=>'L', 74775=>'L', 74776=>'L', 74777=>'L', 74778=>'L', 74779=>'L', 74780=>'L', 74781=>'L', 74782=>'L', 74783=>'L', 74784=>'L', 74785=>'L', 74786=>'L', 74787=>'L', 74788=>'L', 74789=>'L', 74790=>'L', 74791=>'L', 74792=>'L', 74793=>'L', 74794=>'L', 74795=>'L', 74796=>'L', 74797=>'L', 74798=>'L', 74799=>'L', 74800=>'L', 74801=>'L', 74802=>'L', 74803=>'L', 74804=>'L', 74805=>'L', 74806=>'L', 74807=>'L', 74808=>'L', 74809=>'L', 74810=>'L', 74811=>'L', 74812=>'L', 74813=>'L', 74814=>'L', 74815=>'L', 74816=>'L', 74817=>'L', 74818=>'L', 74819=>'L', 74820=>'L', 74821=>'L', 74822=>'L', 74823=>'L', 74824=>'L', 74825=>'L', 74826=>'L', 74827=>'L', 74828=>'L', 74829=>'L', 74830=>'L', 74831=>'L', 74832=>'L', 74833=>'L', 74834=>'L', 74835=>'L', 74836=>'L', 74837=>'L', 74838=>'L', 74839=>'L', 74840=>'L', 74841=>'L', 74842=>'L', 74843=>'L', 74844=>'L', 74845=>'L', 74846=>'L', 74847=>'L', 74848=>'L', 74849=>'L', 74850=>'L', 74864=>'L', 74865=>'L', 74866=>'L', 74867=>'L', 118784=>'L', 118785=>'L', 118786=>'L', 118787=>'L', 118788=>'L', 118789=>'L', 118790=>'L', 118791=>'L', 118792=>'L', 118793=>'L', 118794=>'L', 118795=>'L', 118796=>'L', 118797=>'L', 118798=>'L', 118799=>'L', 118800=>'L', 118801=>'L', 118802=>'L', 118803=>'L', 118804=>'L', 118805=>'L', 118806=>'L', 118807=>'L', 118808=>'L', 118809=>'L', 118810=>'L', 118811=>'L', 118812=>'L', 118813=>'L', 118814=>'L', 118815=>'L', 118816=>'L', 118817=>'L', 118818=>'L', 118819=>'L', 118820=>'L', 118821=>'L', 118822=>'L', 118823=>'L', 118824=>'L', 118825=>'L', 118826=>'L', 118827=>'L', 118828=>'L', 118829=>'L', 118830=>'L', 118831=>'L', 118832=>'L', 118833=>'L', 118834=>'L', 118835=>'L', 118836=>'L', 118837=>'L', 118838=>'L', 118839=>'L', 118840=>'L', 118841=>'L', 118842=>'L', 118843=>'L', 118844=>'L', 118845=>'L', 118846=>'L', 118847=>'L', 118848=>'L', 118849=>'L', 118850=>'L', 118851=>'L', 118852=>'L', 118853=>'L', 118854=>'L', 118855=>'L', 118856=>'L', 118857=>'L', 118858=>'L', 118859=>'L', 118860=>'L', 118861=>'L', 118862=>'L', 118863=>'L', 118864=>'L', 118865=>'L', 118866=>'L', 118867=>'L', 118868=>'L', 118869=>'L', 118870=>'L', 118871=>'L', 118872=>'L', 118873=>'L', 118874=>'L', 118875=>'L', 118876=>'L', 118877=>'L', 118878=>'L', 118879=>'L', 118880=>'L', 118881=>'L', 118882=>'L', 118883=>'L', 118884=>'L', 118885=>'L', 118886=>'L', 118887=>'L', 118888=>'L', 118889=>'L', 118890=>'L', 118891=>'L', 118892=>'L', 118893=>'L', 118894=>'L', 118895=>'L', 118896=>'L', 118897=>'L', 118898=>'L', 118899=>'L', 118900=>'L', 118901=>'L', 118902=>'L', 118903=>'L', 118904=>'L', 118905=>'L', 118906=>'L', 118907=>'L', 118908=>'L', 118909=>'L', 118910=>'L', 118911=>'L', 118912=>'L', 118913=>'L', 118914=>'L', 118915=>'L', 118916=>'L', 118917=>'L', 118918=>'L', 118919=>'L', 118920=>'L', 118921=>'L', 118922=>'L', 118923=>'L', 118924=>'L', 118925=>'L', 118926=>'L', 118927=>'L', 118928=>'L', 118929=>'L', 118930=>'L', 118931=>'L', 118932=>'L', 118933=>'L', 118934=>'L', 118935=>'L', 118936=>'L', 118937=>'L', 118938=>'L', 118939=>'L', 118940=>'L', 118941=>'L', 118942=>'L', 118943=>'L', 118944=>'L', 118945=>'L', 118946=>'L', 118947=>'L', 118948=>'L', 118949=>'L', 118950=>'L', 118951=>'L', 118952=>'L', 118953=>'L', 118954=>'L', 118955=>'L', 118956=>'L', 118957=>'L', 118958=>'L', 118959=>'L', 118960=>'L', 118961=>'L', 118962=>'L', 118963=>'L', 118964=>'L', 118965=>'L', 118966=>'L', 118967=>'L', 118968=>'L', 118969=>'L', 118970=>'L', 118971=>'L', 118972=>'L', 118973=>'L', 118974=>'L', 118975=>'L', 118976=>'L', 118977=>'L', 118978=>'L', 118979=>'L', 118980=>'L', 118981=>'L', 118982=>'L', 118983=>'L', 118984=>'L', 118985=>'L', 118986=>'L', 118987=>'L', 118988=>'L', 118989=>'L', 118990=>'L', 118991=>'L', 118992=>'L', 118993=>'L', 118994=>'L', 118995=>'L', 118996=>'L', 118997=>'L', 118998=>'L', 118999=>'L', 119000=>'L', 119001=>'L', 119002=>'L', 119003=>'L', 119004=>'L', 119005=>'L', 119006=>'L', 119007=>'L', 119008=>'L', 119009=>'L', 119010=>'L', 119011=>'L', 119012=>'L', 119013=>'L', 119014=>'L', 119015=>'L', 119016=>'L', 119017=>'L', 119018=>'L', 119019=>'L', 119020=>'L', 119021=>'L', 119022=>'L', 119023=>'L', 119024=>'L', 119025=>'L', 119026=>'L', 119027=>'L', 119028=>'L', 119029=>'L', 119040=>'L', 119041=>'L', 119042=>'L', 119043=>'L', 119044=>'L', 119045=>'L', 119046=>'L', 119047=>'L', 119048=>'L', 119049=>'L', 119050=>'L', 119051=>'L', 119052=>'L', 119053=>'L', 119054=>'L', 119055=>'L', 119056=>'L', 119057=>'L', 119058=>'L', 119059=>'L', 119060=>'L', 119061=>'L', 119062=>'L', 119063=>'L', 119064=>'L', 119065=>'L', 119066=>'L', 119067=>'L', 119068=>'L', 119069=>'L', 119070=>'L', 119071=>'L', 119072=>'L', 119073=>'L', 119074=>'L', 119075=>'L', 119076=>'L', 119077=>'L', 119078=>'L', 119082=>'L', 119083=>'L', 119084=>'L', 119085=>'L', 119086=>'L', 119087=>'L', 119088=>'L', 119089=>'L', 119090=>'L', 119091=>'L', 119092=>'L', 119093=>'L', 119094=>'L', 119095=>'L', 119096=>'L', 119097=>'L', 119098=>'L', 119099=>'L', 119100=>'L', 119101=>'L', 119102=>'L', 119103=>'L', 119104=>'L', 119105=>'L', 119106=>'L', 119107=>'L', 119108=>'L', 119109=>'L', 119110=>'L', 119111=>'L', 119112=>'L', 119113=>'L', 119114=>'L', 119115=>'L', 119116=>'L', 119117=>'L', 119118=>'L', 119119=>'L', 119120=>'L', 119121=>'L', 119122=>'L', 119123=>'L', 119124=>'L', 119125=>'L', 119126=>'L', 119127=>'L', 119128=>'L', 119129=>'L', 119130=>'L', 119131=>'L', 119132=>'L', 119133=>'L', 119134=>'L', 119135=>'L', 119136=>'L', 119137=>'L', 119138=>'L', 119139=>'L', 119140=>'L', 119141=>'L', 119142=>'L', 119143=>'NSM', 119144=>'NSM', 119145=>'NSM', 119146=>'L', 119147=>'L', 119148=>'L', 119149=>'L', 119150=>'L', 119151=>'L', 119152=>'L', 119153=>'L', 119154=>'L', 119155=>'BN', 119156=>'BN', 119157=>'BN', 119158=>'BN', 119159=>'BN', 119160=>'BN', 119161=>'BN', 119162=>'BN', 119163=>'NSM', 119164=>'NSM', 119165=>'NSM', 119166=>'NSM', 119167=>'NSM', 119168=>'NSM', 119169=>'NSM', 119170=>'NSM', 119171=>'L', 119172=>'L', 119173=>'NSM', 119174=>'NSM', 119175=>'NSM', 119176=>'NSM', 119177=>'NSM', 119178=>'NSM', 119179=>'NSM', 119180=>'L', 119181=>'L', 119182=>'L', 119183=>'L', 119184=>'L', 119185=>'L', 119186=>'L', 119187=>'L', 119188=>'L', 119189=>'L', 119190=>'L', 119191=>'L', 119192=>'L', 119193=>'L', 119194=>'L', 119195=>'L', 119196=>'L', 119197=>'L', 119198=>'L', 119199=>'L', 119200=>'L', 119201=>'L', 119202=>'L', 119203=>'L', 119204=>'L', 119205=>'L', 119206=>'L', 119207=>'L', 119208=>'L', 119209=>'L', 119210=>'NSM', 119211=>'NSM', 119212=>'NSM', 119213=>'NSM', 119214=>'L', 119215=>'L', 119216=>'L', 119217=>'L', 119218=>'L', 119219=>'L', 119220=>'L', 119221=>'L', 119222=>'L', 119223=>'L', 119224=>'L', 119225=>'L', 119226=>'L', 119227=>'L', 119228=>'L', 119229=>'L', 119230=>'L', 119231=>'L', 119232=>'L', 119233=>'L', 119234=>'L', 119235=>'L', 119236=>'L', 119237=>'L', 119238=>'L', 119239=>'L', 119240=>'L', 119241=>'L', 119242=>'L', 119243=>'L', 119244=>'L', 119245=>'L', 119246=>'L', 119247=>'L', 119248=>'L', 119249=>'L', 119250=>'L', 119251=>'L', 119252=>'L', 119253=>'L', 119254=>'L', 119255=>'L', 119256=>'L', 119257=>'L', 119258=>'L', 119259=>'L', 119260=>'L', 119261=>'L', 119296=>'ON', 119297=>'ON', 119298=>'ON', 119299=>'ON', 119300=>'ON', 119301=>'ON', 119302=>'ON', 119303=>'ON', 119304=>'ON', 119305=>'ON', 119306=>'ON', 119307=>'ON', 119308=>'ON', 119309=>'ON', 119310=>'ON', 119311=>'ON', 119312=>'ON', 119313=>'ON', 119314=>'ON', 119315=>'ON', 119316=>'ON', 119317=>'ON', 119318=>'ON', 119319=>'ON', 119320=>'ON', 119321=>'ON', 119322=>'ON', 119323=>'ON', 119324=>'ON', 119325=>'ON', 119326=>'ON', 119327=>'ON', 119328=>'ON', 119329=>'ON', 119330=>'ON', 119331=>'ON', 119332=>'ON', 119333=>'ON', 119334=>'ON', 119335=>'ON', 119336=>'ON', 119337=>'ON', 119338=>'ON', 119339=>'ON', 119340=>'ON', 119341=>'ON', 119342=>'ON', 119343=>'ON', 119344=>'ON', 119345=>'ON', 119346=>'ON', 119347=>'ON', 119348=>'ON', 119349=>'ON', 119350=>'ON', 119351=>'ON', 119352=>'ON', 119353=>'ON', 119354=>'ON', 119355=>'ON', 119356=>'ON', 119357=>'ON', 119358=>'ON', 119359=>'ON', 119360=>'ON', 119361=>'ON', 119362=>'NSM', 119363=>'NSM', 119364=>'NSM', 119365=>'ON', 119552=>'ON', 119553=>'ON', 119554=>'ON', 119555=>'ON', 119556=>'ON', 119557=>'ON', 119558=>'ON', 119559=>'ON', 119560=>'ON', 119561=>'ON', 119562=>'ON', 119563=>'ON', 119564=>'ON', 119565=>'ON', 119566=>'ON', 119567=>'ON', 119568=>'ON', 119569=>'ON', 119570=>'ON', 119571=>'ON', 119572=>'ON', 119573=>'ON', 119574=>'ON', 119575=>'ON', 119576=>'ON', 119577=>'ON', 119578=>'ON', 119579=>'ON', 119580=>'ON', 119581=>'ON', 119582=>'ON', 119583=>'ON', 119584=>'ON', 119585=>'ON', 119586=>'ON', 119587=>'ON', 119588=>'ON', 119589=>'ON', 119590=>'ON', 119591=>'ON', 119592=>'ON', 119593=>'ON', 119594=>'ON', 119595=>'ON', 119596=>'ON', 119597=>'ON', 119598=>'ON', 119599=>'ON', 119600=>'ON', 119601=>'ON', 119602=>'ON', 119603=>'ON', 119604=>'ON', 119605=>'ON', 119606=>'ON', 119607=>'ON', 119608=>'ON', 119609=>'ON', 119610=>'ON', 119611=>'ON', 119612=>'ON', 119613=>'ON', 119614=>'ON', 119615=>'ON', 119616=>'ON', 119617=>'ON', 119618=>'ON', 119619=>'ON', 119620=>'ON', 119621=>'ON', 119622=>'ON', 119623=>'ON', 119624=>'ON', 119625=>'ON', 119626=>'ON', 119627=>'ON', 119628=>'ON', 119629=>'ON', 119630=>'ON', 119631=>'ON', 119632=>'ON', 119633=>'ON', 119634=>'ON', 119635=>'ON', 119636=>'ON', 119637=>'ON', 119638=>'ON', 119648=>'L', 119649=>'L', 119650=>'L', 119651=>'L', 119652=>'L', 119653=>'L', 119654=>'L', 119655=>'L', 119656=>'L', 119657=>'L', 119658=>'L', 119659=>'L', 119660=>'L', 119661=>'L', 119662=>'L', 119663=>'L', 119664=>'L', 119665=>'L', 119808=>'L', 119809=>'L', 119810=>'L', 119811=>'L', 119812=>'L', 119813=>'L', 119814=>'L', 119815=>'L', 119816=>'L', 119817=>'L', 119818=>'L', 119819=>'L', 119820=>'L', 119821=>'L', 119822=>'L', 119823=>'L', 119824=>'L', 119825=>'L', 119826=>'L', 119827=>'L', 119828=>'L', 119829=>'L', 119830=>'L', 119831=>'L', 119832=>'L', 119833=>'L', 119834=>'L', 119835=>'L', 119836=>'L', 119837=>'L', 119838=>'L', 119839=>'L', 119840=>'L', 119841=>'L', 119842=>'L', 119843=>'L', 119844=>'L', 119845=>'L', 119846=>'L', 119847=>'L', 119848=>'L', 119849=>'L', 119850=>'L', 119851=>'L', 119852=>'L', 119853=>'L', 119854=>'L', 119855=>'L', 119856=>'L', 119857=>'L', 119858=>'L', 119859=>'L', 119860=>'L', 119861=>'L', 119862=>'L', 119863=>'L', 119864=>'L', 119865=>'L', 119866=>'L', 119867=>'L', 119868=>'L', 119869=>'L', 119870=>'L', 119871=>'L', 119872=>'L', 119873=>'L', 119874=>'L', 119875=>'L', 119876=>'L', 119877=>'L', 119878=>'L', 119879=>'L', 119880=>'L', 119881=>'L', 119882=>'L', 119883=>'L', 119884=>'L', 119885=>'L', 119886=>'L', 119887=>'L', 119888=>'L', 119889=>'L', 119890=>'L', 119891=>'L', 119892=>'L', 119894=>'L', 119895=>'L', 119896=>'L', 119897=>'L', 119898=>'L', 119899=>'L', 119900=>'L', 119901=>'L', 119902=>'L', 119903=>'L', 119904=>'L', 119905=>'L', 119906=>'L', 119907=>'L', 119908=>'L', 119909=>'L', 119910=>'L', 119911=>'L', 119912=>'L', 119913=>'L', 119914=>'L', 119915=>'L', 119916=>'L', 119917=>'L', 119918=>'L', 119919=>'L', 119920=>'L', 119921=>'L', 119922=>'L', 119923=>'L', 119924=>'L', 119925=>'L', 119926=>'L', 119927=>'L', 119928=>'L', 119929=>'L', 119930=>'L', 119931=>'L', 119932=>'L', 119933=>'L', 119934=>'L', 119935=>'L', 119936=>'L', 119937=>'L', 119938=>'L', 119939=>'L', 119940=>'L', 119941=>'L', 119942=>'L', 119943=>'L', 119944=>'L', 119945=>'L', 119946=>'L', 119947=>'L', 119948=>'L', 119949=>'L', 119950=>'L', 119951=>'L', 119952=>'L', 119953=>'L', 119954=>'L', 119955=>'L', 119956=>'L', 119957=>'L', 119958=>'L', 119959=>'L', 119960=>'L', 119961=>'L', 119962=>'L', 119963=>'L', 119964=>'L', 119966=>'L', 119967=>'L', 119970=>'L', 119973=>'L', 119974=>'L', 119977=>'L', 119978=>'L', 119979=>'L', 119980=>'L', 119982=>'L', 119983=>'L', 119984=>'L', 119985=>'L', 119986=>'L', 119987=>'L', 119988=>'L', 119989=>'L', 119990=>'L', 119991=>'L', 119992=>'L', 119993=>'L', 119995=>'L', 119997=>'L', 119998=>'L', 119999=>'L', 120000=>'L', 120001=>'L', 120002=>'L', 120003=>'L', 120005=>'L', 120006=>'L', 120007=>'L', 120008=>'L', 120009=>'L', 120010=>'L', 120011=>'L', 120012=>'L', 120013=>'L', 120014=>'L', 120015=>'L', 120016=>'L', 120017=>'L', 120018=>'L', 120019=>'L', 120020=>'L', 120021=>'L', 120022=>'L', 120023=>'L', 120024=>'L', 120025=>'L', 120026=>'L', 120027=>'L', 120028=>'L', 120029=>'L', 120030=>'L', 120031=>'L', 120032=>'L', 120033=>'L', 120034=>'L', 120035=>'L', 120036=>'L', 120037=>'L', 120038=>'L', 120039=>'L', 120040=>'L', 120041=>'L', 120042=>'L', 120043=>'L', 120044=>'L', 120045=>'L', 120046=>'L', 120047=>'L', 120048=>'L', 120049=>'L', 120050=>'L', 120051=>'L', 120052=>'L', 120053=>'L', 120054=>'L', 120055=>'L', 120056=>'L', 120057=>'L', 120058=>'L', 120059=>'L', 120060=>'L', 120061=>'L', 120062=>'L', 120063=>'L', 120064=>'L', 120065=>'L', 120066=>'L', 120067=>'L', 120068=>'L', 120069=>'L', 120071=>'L', 120072=>'L', 120073=>'L', 120074=>'L', 120077=>'L', 120078=>'L', 120079=>'L', 120080=>'L', 120081=>'L', 120082=>'L', 120083=>'L', 120084=>'L', 120086=>'L', 120087=>'L', 120088=>'L', 120089=>'L', 120090=>'L', 120091=>'L', 120092=>'L', 120094=>'L', 120095=>'L', 120096=>'L', 120097=>'L', 120098=>'L', 120099=>'L', 120100=>'L', 120101=>'L', 120102=>'L', 120103=>'L', 120104=>'L', 120105=>'L', 120106=>'L', 120107=>'L', 120108=>'L', 120109=>'L', 120110=>'L', 120111=>'L', 120112=>'L', 120113=>'L', 120114=>'L', 120115=>'L', 120116=>'L', 120117=>'L', 120118=>'L', 120119=>'L', 120120=>'L', 120121=>'L', 120123=>'L', 120124=>'L', 120125=>'L', 120126=>'L', 120128=>'L', 120129=>'L', 120130=>'L', 120131=>'L', 120132=>'L', 120134=>'L', 120138=>'L', 120139=>'L', 120140=>'L', 120141=>'L', 120142=>'L', 120143=>'L', 120144=>'L', 120146=>'L', 120147=>'L', 120148=>'L', 120149=>'L', 120150=>'L', 120151=>'L', 120152=>'L', 120153=>'L', 120154=>'L', 120155=>'L', 120156=>'L', 120157=>'L', 120158=>'L', 120159=>'L', 120160=>'L', 120161=>'L', 120162=>'L', 120163=>'L', 120164=>'L', 120165=>'L', 120166=>'L', 120167=>'L', 120168=>'L', 120169=>'L', 120170=>'L', 120171=>'L', 120172=>'L', 120173=>'L', 120174=>'L', 120175=>'L', 120176=>'L', 120177=>'L', 120178=>'L', 120179=>'L', 120180=>'L', 120181=>'L', 120182=>'L', 120183=>'L', 120184=>'L', 120185=>'L', 120186=>'L', 120187=>'L', 120188=>'L', 120189=>'L', 120190=>'L', 120191=>'L', 120192=>'L', 120193=>'L', 120194=>'L', 120195=>'L', 120196=>'L', 120197=>'L', 120198=>'L', 120199=>'L', 120200=>'L', 120201=>'L', 120202=>'L', 120203=>'L', 120204=>'L', 120205=>'L', 120206=>'L', 120207=>'L', 120208=>'L', 120209=>'L', 120210=>'L', 120211=>'L', 120212=>'L', 120213=>'L', 120214=>'L', 120215=>'L', 120216=>'L', 120217=>'L', 120218=>'L', 120219=>'L', 120220=>'L', 120221=>'L', 120222=>'L', 120223=>'L', 120224=>'L', 120225=>'L', 120226=>'L', 120227=>'L', 120228=>'L', 120229=>'L', 120230=>'L', 120231=>'L', 120232=>'L', 120233=>'L', 120234=>'L', 120235=>'L', 120236=>'L', 120237=>'L', 120238=>'L', 120239=>'L', 120240=>'L', 120241=>'L', 120242=>'L', 120243=>'L', 120244=>'L', 120245=>'L', 120246=>'L', 120247=>'L', 120248=>'L', 120249=>'L', 120250=>'L', 120251=>'L', 120252=>'L', 120253=>'L', 120254=>'L', 120255=>'L', 120256=>'L', 120257=>'L', 120258=>'L', 120259=>'L', 120260=>'L', 120261=>'L', 120262=>'L', 120263=>'L', 120264=>'L', 120265=>'L', 120266=>'L', 120267=>'L', 120268=>'L', 120269=>'L', 120270=>'L', 120271=>'L', 120272=>'L', 120273=>'L', 120274=>'L', 120275=>'L', 120276=>'L', 120277=>'L', 120278=>'L', 120279=>'L', 120280=>'L', 120281=>'L', 120282=>'L', 120283=>'L', 120284=>'L', 120285=>'L', 120286=>'L', 120287=>'L', 120288=>'L', 120289=>'L', 120290=>'L', 120291=>'L', 120292=>'L', 120293=>'L', 120294=>'L', 120295=>'L', 120296=>'L', 120297=>'L', 120298=>'L', 120299=>'L', 120300=>'L', 120301=>'L', 120302=>'L', 120303=>'L', 120304=>'L', 120305=>'L', 120306=>'L', 120307=>'L', 120308=>'L', 120309=>'L', 120310=>'L', 120311=>'L', 120312=>'L', 120313=>'L', 120314=>'L', 120315=>'L', 120316=>'L', 120317=>'L', 120318=>'L', 120319=>'L', 120320=>'L', 120321=>'L', 120322=>'L', 120323=>'L', 120324=>'L', 120325=>'L', 120326=>'L', 120327=>'L', 120328=>'L', 120329=>'L', 120330=>'L', 120331=>'L', 120332=>'L', 120333=>'L', 120334=>'L', 120335=>'L', 120336=>'L', 120337=>'L', 120338=>'L', 120339=>'L', 120340=>'L', 120341=>'L', 120342=>'L', 120343=>'L', 120344=>'L', 120345=>'L', 120346=>'L', 120347=>'L', 120348=>'L', 120349=>'L', 120350=>'L', 120351=>'L', 120352=>'L', 120353=>'L', 120354=>'L', 120355=>'L', 120356=>'L', 120357=>'L', 120358=>'L', 120359=>'L', 120360=>'L', 120361=>'L', 120362=>'L', 120363=>'L', 120364=>'L', 120365=>'L', 120366=>'L', 120367=>'L', 120368=>'L', 120369=>'L', 120370=>'L', 120371=>'L', 120372=>'L', 120373=>'L', 120374=>'L', 120375=>'L', 120376=>'L', 120377=>'L', 120378=>'L', 120379=>'L', 120380=>'L', 120381=>'L', 120382=>'L', 120383=>'L', 120384=>'L', 120385=>'L', 120386=>'L', 120387=>'L', 120388=>'L', 120389=>'L', 120390=>'L', 120391=>'L', 120392=>'L', 120393=>'L', 120394=>'L', 120395=>'L', 120396=>'L', 120397=>'L', 120398=>'L', 120399=>'L', 120400=>'L', 120401=>'L', 120402=>'L', 120403=>'L', 120404=>'L', 120405=>'L', 120406=>'L', 120407=>'L', 120408=>'L', 120409=>'L', 120410=>'L', 120411=>'L', 120412=>'L', 120413=>'L', 120414=>'L', 120415=>'L', 120416=>'L', 120417=>'L', 120418=>'L', 120419=>'L', 120420=>'L', 120421=>'L', 120422=>'L', 120423=>'L', 120424=>'L', 120425=>'L', 120426=>'L', 120427=>'L', 120428=>'L', 120429=>'L', 120430=>'L', 120431=>'L', 120432=>'L', 120433=>'L', 120434=>'L', 120435=>'L', 120436=>'L', 120437=>'L', 120438=>'L', 120439=>'L', 120440=>'L', 120441=>'L', 120442=>'L', 120443=>'L', 120444=>'L', 120445=>'L', 120446=>'L', 120447=>'L', 120448=>'L', 120449=>'L', 120450=>'L', 120451=>'L', 120452=>'L', 120453=>'L', 120454=>'L', 120455=>'L', 120456=>'L', 120457=>'L', 120458=>'L', 120459=>'L', 120460=>'L', 120461=>'L', 120462=>'L', 120463=>'L', 120464=>'L', 120465=>'L', 120466=>'L', 120467=>'L', 120468=>'L', 120469=>'L', 120470=>'L', 120471=>'L', 120472=>'L', 120473=>'L', 120474=>'L', 120475=>'L', 120476=>'L', 120477=>'L', 120478=>'L', 120479=>'L', 120480=>'L', 120481=>'L', 120482=>'L', 120483=>'L', 120484=>'L', 120485=>'L', 120488=>'L', 120489=>'L', 120490=>'L', 120491=>'L', 120492=>'L', 120493=>'L', 120494=>'L', 120495=>'L', 120496=>'L', 120497=>'L', 120498=>'L', 120499=>'L', 120500=>'L', 120501=>'L', 120502=>'L', 120503=>'L', 120504=>'L', 120505=>'L', 120506=>'L', 120507=>'L', 120508=>'L', 120509=>'L', 120510=>'L', 120511=>'L', 120512=>'L', 120513=>'L', 120514=>'L', 120515=>'L', 120516=>'L', 120517=>'L', 120518=>'L', 120519=>'L', 120520=>'L', 120521=>'L', 120522=>'L', 120523=>'L', 120524=>'L', 120525=>'L', 120526=>'L', 120527=>'L', 120528=>'L', 120529=>'L', 120530=>'L', 120531=>'L', 120532=>'L', 120533=>'L', 120534=>'L', 120535=>'L', 120536=>'L', 120537=>'L', 120538=>'L', 120539=>'L', 120540=>'L', 120541=>'L', 120542=>'L', 120543=>'L', 120544=>'L', 120545=>'L', 120546=>'L', 120547=>'L', 120548=>'L', 120549=>'L', 120550=>'L', 120551=>'L', 120552=>'L', 120553=>'L', 120554=>'L', 120555=>'L', 120556=>'L', 120557=>'L', 120558=>'L', 120559=>'L', 120560=>'L', 120561=>'L', 120562=>'L', 120563=>'L', 120564=>'L', 120565=>'L', 120566=>'L', 120567=>'L', 120568=>'L', 120569=>'L', 120570=>'L', 120571=>'L', 120572=>'L', 120573=>'L', 120574=>'L', 120575=>'L', 120576=>'L', 120577=>'L', 120578=>'L', 120579=>'L', 120580=>'L', 120581=>'L', 120582=>'L', 120583=>'L', 120584=>'L', 120585=>'L', 120586=>'L', 120587=>'L', 120588=>'L', 120589=>'L', 120590=>'L', 120591=>'L', 120592=>'L', 120593=>'L', 120594=>'L', 120595=>'L', 120596=>'L', 120597=>'L', 120598=>'L', 120599=>'L', 120600=>'L', 120601=>'L', 120602=>'L', 120603=>'L', 120604=>'L', 120605=>'L', 120606=>'L', 120607=>'L', 120608=>'L', 120609=>'L', 120610=>'L', 120611=>'L', 120612=>'L', 120613=>'L', 120614=>'L', 120615=>'L', 120616=>'L', 120617=>'L', 120618=>'L', 120619=>'L', 120620=>'L', 120621=>'L', 120622=>'L', 120623=>'L', 120624=>'L', 120625=>'L', 120626=>'L', 120627=>'L', 120628=>'L', 120629=>'L', 120630=>'L', 120631=>'L', 120632=>'L', 120633=>'L', 120634=>'L', 120635=>'L', 120636=>'L', 120637=>'L', 120638=>'L', 120639=>'L', 120640=>'L', 120641=>'L', 120642=>'L', 120643=>'L', 120644=>'L', 120645=>'L', 120646=>'L', 120647=>'L', 120648=>'L', 120649=>'L', 120650=>'L', 120651=>'L', 120652=>'L', 120653=>'L', 120654=>'L', 120655=>'L', 120656=>'L', 120657=>'L', 120658=>'L', 120659=>'L', 120660=>'L', 120661=>'L', 120662=>'L', 120663=>'L', 120664=>'L', 120665=>'L', 120666=>'L', 120667=>'L', 120668=>'L', 120669=>'L', 120670=>'L', 120671=>'L', 120672=>'L', 120673=>'L', 120674=>'L', 120675=>'L', 120676=>'L', 120677=>'L', 120678=>'L', 120679=>'L', 120680=>'L', 120681=>'L', 120682=>'L', 120683=>'L', 120684=>'L', 120685=>'L', 120686=>'L', 120687=>'L', 120688=>'L', 120689=>'L', 120690=>'L', 120691=>'L', 120692=>'L', 120693=>'L', 120694=>'L', 120695=>'L', 120696=>'L', 120697=>'L', 120698=>'L', 120699=>'L', 120700=>'L', 120701=>'L', 120702=>'L', 120703=>'L', 120704=>'L', 120705=>'L', 120706=>'L', 120707=>'L', 120708=>'L', 120709=>'L', 120710=>'L', 120711=>'L', 120712=>'L', 120713=>'L', 120714=>'L', 120715=>'L', 120716=>'L', 120717=>'L', 120718=>'L', 120719=>'L', 120720=>'L', 120721=>'L', 120722=>'L', 120723=>'L', 120724=>'L', 120725=>'L', 120726=>'L', 120727=>'L', 120728=>'L', 120729=>'L', 120730=>'L', 120731=>'L', 120732=>'L', 120733=>'L', 120734=>'L', 120735=>'L', 120736=>'L', 120737=>'L', 120738=>'L', 120739=>'L', 120740=>'L', 120741=>'L', 120742=>'L', 120743=>'L', 120744=>'L', 120745=>'L', 120746=>'L', 120747=>'L', 120748=>'L', 120749=>'L', 120750=>'L', 120751=>'L', 120752=>'L', 120753=>'L', 120754=>'L', 120755=>'L', 120756=>'L', 120757=>'L', 120758=>'L', 120759=>'L', 120760=>'L', 120761=>'L', 120762=>'L', 120763=>'L', 120764=>'L', 120765=>'L', 120766=>'L', 120767=>'L', 120768=>'L', 120769=>'L', 120770=>'L', 120771=>'L', 120772=>'L', 120773=>'L', 120774=>'L', 120775=>'L', 120776=>'L', 120777=>'L', 120778=>'L', 120779=>'L', 120782=>'EN', 120783=>'EN', 120784=>'EN', 120785=>'EN', 120786=>'EN', 120787=>'EN', 120788=>'EN', 120789=>'EN', 120790=>'EN', 120791=>'EN', 120792=>'EN', 120793=>'EN', 120794=>'EN', 120795=>'EN', 120796=>'EN', 120797=>'EN', 120798=>'EN', 120799=>'EN', 120800=>'EN', 120801=>'EN', 120802=>'EN', 120803=>'EN', 120804=>'EN', 120805=>'EN', 120806=>'EN', 120807=>'EN', 120808=>'EN', 120809=>'EN', 120810=>'EN', 120811=>'EN', 120812=>'EN', 120813=>'EN', 120814=>'EN', 120815=>'EN', 120816=>'EN', 120817=>'EN', 120818=>'EN', 120819=>'EN', 120820=>'EN', 120821=>'EN', 120822=>'EN', 120823=>'EN', 120824=>'EN', 120825=>'EN', 120826=>'EN', 120827=>'EN', 120828=>'EN', 120829=>'EN', 120830=>'EN', 120831=>'EN', 131072=>'L', 173782=>'L', 194560=>'L', 194561=>'L', 194562=>'L', 194563=>'L', 194564=>'L', 194565=>'L', 194566=>'L', 194567=>'L', 194568=>'L', 194569=>'L', 194570=>'L', 194571=>'L', 194572=>'L', 194573=>'L', 194574=>'L', 194575=>'L', 194576=>'L', 194577=>'L', 194578=>'L', 194579=>'L', 194580=>'L', 194581=>'L', 194582=>'L', 194583=>'L', 194584=>'L', 194585=>'L', 194586=>'L', 194587=>'L', 194588=>'L', 194589=>'L', 194590=>'L', 194591=>'L', 194592=>'L', 194593=>'L', 194594=>'L', 194595=>'L', 194596=>'L', 194597=>'L', 194598=>'L', 194599=>'L', 194600=>'L', 194601=>'L', 194602=>'L', 194603=>'L', 194604=>'L', 194605=>'L', 194606=>'L', 194607=>'L', 194608=>'L', 194609=>'L', 194610=>'L', 194611=>'L', 194612=>'L', 194613=>'L', 194614=>'L', 194615=>'L', 194616=>'L', 194617=>'L', 194618=>'L', 194619=>'L', 194620=>'L', 194621=>'L', 194622=>'L', 194623=>'L', 194624=>'L', 194625=>'L', 194626=>'L', 194627=>'L', 194628=>'L', 194629=>'L', 194630=>'L', 194631=>'L', 194632=>'L', 194633=>'L', 194634=>'L', 194635=>'L', 194636=>'L', 194637=>'L', 194638=>'L', 194639=>'L', 194640=>'L', 194641=>'L', 194642=>'L', 194643=>'L', 194644=>'L', 194645=>'L', 194646=>'L', 194647=>'L', 194648=>'L', 194649=>'L', 194650=>'L', 194651=>'L', 194652=>'L', 194653=>'L', 194654=>'L', 194655=>'L', 194656=>'L', 194657=>'L', 194658=>'L', 194659=>'L', 194660=>'L', 194661=>'L', 194662=>'L', 194663=>'L', 194664=>'L', 194665=>'L', 194666=>'L', 194667=>'L', 194668=>'L', 194669=>'L', 194670=>'L', 194671=>'L', 194672=>'L', 194673=>'L', 194674=>'L', 194675=>'L', 194676=>'L', 194677=>'L', 194678=>'L', 194679=>'L', 194680=>'L', 194681=>'L', 194682=>'L', 194683=>'L', 194684=>'L', 194685=>'L', 194686=>'L', 194687=>'L', 194688=>'L', 194689=>'L', 194690=>'L', 194691=>'L', 194692=>'L', 194693=>'L', 194694=>'L', 194695=>'L', 194696=>'L', 194697=>'L', 194698=>'L', 194699=>'L', 194700=>'L', 194701=>'L', 194702=>'L', 194703=>'L', 194704=>'L', 194705=>'L', 194706=>'L', 194707=>'L', 194708=>'L', 194709=>'L', 194710=>'L', 194711=>'L', 194712=>'L', 194713=>'L', 194714=>'L', 194715=>'L', 194716=>'L', 194717=>'L', 194718=>'L', 194719=>'L', 194720=>'L', 194721=>'L', 194722=>'L', 194723=>'L', 194724=>'L', 194725=>'L', 194726=>'L', 194727=>'L', 194728=>'L', 194729=>'L', 194730=>'L', 194731=>'L', 194732=>'L', 194733=>'L', 194734=>'L', 194735=>'L', 194736=>'L', 194737=>'L', 194738=>'L', 194739=>'L', 194740=>'L', 194741=>'L', 194742=>'L', 194743=>'L', 194744=>'L', 194745=>'L', 194746=>'L', 194747=>'L', 194748=>'L', 194749=>'L', 194750=>'L', 194751=>'L', 194752=>'L', 194753=>'L', 194754=>'L', 194755=>'L', 194756=>'L', 194757=>'L', 194758=>'L', 194759=>'L', 194760=>'L', 194761=>'L', 194762=>'L', 194763=>'L', 194764=>'L', 194765=>'L', 194766=>'L', 194767=>'L', 194768=>'L', 194769=>'L', 194770=>'L', 194771=>'L', 194772=>'L', 194773=>'L', 194774=>'L', 194775=>'L', 194776=>'L', 194777=>'L', 194778=>'L', 194779=>'L', 194780=>'L', 194781=>'L', 194782=>'L', 194783=>'L', 194784=>'L', 194785=>'L', 194786=>'L', 194787=>'L', 194788=>'L', 194789=>'L', 194790=>'L', 194791=>'L', 194792=>'L', 194793=>'L', 194794=>'L', 194795=>'L', 194796=>'L', 194797=>'L', 194798=>'L', 194799=>'L', 194800=>'L', 194801=>'L', 194802=>'L', 194803=>'L', 194804=>'L', 194805=>'L', 194806=>'L', 194807=>'L', 194808=>'L', 194809=>'L', 194810=>'L', 194811=>'L', 194812=>'L', 194813=>'L', 194814=>'L', 194815=>'L', 194816=>'L', 194817=>'L', 194818=>'L', 194819=>'L', 194820=>'L', 194821=>'L', 194822=>'L', 194823=>'L', 194824=>'L', 194825=>'L', 194826=>'L', 194827=>'L', 194828=>'L', 194829=>'L', 194830=>'L', 194831=>'L', 194832=>'L', 194833=>'L', 194834=>'L', 194835=>'L', 194836=>'L', 194837=>'L', 194838=>'L', 194839=>'L', 194840=>'L', 194841=>'L', 194842=>'L', 194843=>'L', 194844=>'L', 194845=>'L', 194846=>'L', 194847=>'L', 194848=>'L', 194849=>'L', 194850=>'L', 194851=>'L', 194852=>'L', 194853=>'L', 194854=>'L', 194855=>'L', 194856=>'L', 194857=>'L', 194858=>'L', 194859=>'L', 194860=>'L', 194861=>'L', 194862=>'L', 194863=>'L', 194864=>'L', 194865=>'L', 194866=>'L', 194867=>'L', 194868=>'L', 194869=>'L', 194870=>'L', 194871=>'L', 194872=>'L', 194873=>'L', 194874=>'L', 194875=>'L', 194876=>'L', 194877=>'L', 194878=>'L', 194879=>'L', 194880=>'L', 194881=>'L', 194882=>'L', 194883=>'L', 194884=>'L', 194885=>'L', 194886=>'L', 194887=>'L', 194888=>'L', 194889=>'L', 194890=>'L', 194891=>'L', 194892=>'L', 194893=>'L', 194894=>'L', 194895=>'L', 194896=>'L', 194897=>'L', 194898=>'L', 194899=>'L', 194900=>'L', 194901=>'L', 194902=>'L', 194903=>'L', 194904=>'L', 194905=>'L', 194906=>'L', 194907=>'L', 194908=>'L', 194909=>'L', 194910=>'L', 194911=>'L', 194912=>'L', 194913=>'L', 194914=>'L', 194915=>'L', 194916=>'L', 194917=>'L', 194918=>'L', 194919=>'L', 194920=>'L', 194921=>'L', 194922=>'L', 194923=>'L', 194924=>'L', 194925=>'L', 194926=>'L', 194927=>'L', 194928=>'L', 194929=>'L', 194930=>'L', 194931=>'L', 194932=>'L', 194933=>'L', 194934=>'L', 194935=>'L', 194936=>'L', 194937=>'L', 194938=>'L', 194939=>'L', 194940=>'L', 194941=>'L', 194942=>'L', 194943=>'L', 194944=>'L', 194945=>'L', 194946=>'L', 194947=>'L', 194948=>'L', 194949=>'L', 194950=>'L', 194951=>'L', 194952=>'L', 194953=>'L', 194954=>'L', 194955=>'L', 194956=>'L', 194957=>'L', 194958=>'L', 194959=>'L', 194960=>'L', 194961=>'L', 194962=>'L', 194963=>'L', 194964=>'L', 194965=>'L', 194966=>'L', 194967=>'L', 194968=>'L', 194969=>'L', 194970=>'L', 194971=>'L', 194972=>'L', 194973=>'L', 194974=>'L', 194975=>'L', 194976=>'L', 194977=>'L', 194978=>'L', 194979=>'L', 194980=>'L', 194981=>'L', 194982=>'L', 194983=>'L', 194984=>'L', 194985=>'L', 194986=>'L', 194987=>'L', 194988=>'L', 194989=>'L', 194990=>'L', 194991=>'L', 194992=>'L', 194993=>'L', 194994=>'L', 194995=>'L', 194996=>'L', 194997=>'L', 194998=>'L', 194999=>'L', 195000=>'L', 195001=>'L', 195002=>'L', 195003=>'L', 195004=>'L', 195005=>'L', 195006=>'L', 195007=>'L', 195008=>'L', 195009=>'L', 195010=>'L', 195011=>'L', 195012=>'L', 195013=>'L', 195014=>'L', 195015=>'L', 195016=>'L', 195017=>'L', 195018=>'L', 195019=>'L', 195020=>'L', 195021=>'L', 195022=>'L', 195023=>'L', 195024=>'L', 195025=>'L', 195026=>'L', 195027=>'L', 195028=>'L', 195029=>'L', 195030=>'L', 195031=>'L', 195032=>'L', 195033=>'L', 195034=>'L', 195035=>'L', 195036=>'L', 195037=>'L', 195038=>'L', 195039=>'L', 195040=>'L', 195041=>'L', 195042=>'L', 195043=>'L', 195044=>'L', 195045=>'L', 195046=>'L', 195047=>'L', 195048=>'L', 195049=>'L', 195050=>'L', 195051=>'L', 195052=>'L', 195053=>'L', 195054=>'L', 195055=>'L', 195056=>'L', 195057=>'L', 195058=>'L', 195059=>'L', 195060=>'L', 195061=>'L', 195062=>'L', 195063=>'L', 195064=>'L', 195065=>'L', 195066=>'L', 195067=>'L', 195068=>'L', 195069=>'L', 195070=>'L', 195071=>'L', 195072=>'L', 195073=>'L', 195074=>'L', 195075=>'L', 195076=>'L', 195077=>'L', 195078=>'L', 195079=>'L', 195080=>'L', 195081=>'L', 195082=>'L', 195083=>'L', 195084=>'L', 195085=>'L', 195086=>'L', 195087=>'L', 195088=>'L', 195089=>'L', 195090=>'L', 195091=>'L', 195092=>'L', 195093=>'L', 195094=>'L', 195095=>'L', 195096=>'L', 195097=>'L', 195098=>'L', 195099=>'L', 195100=>'L', 195101=>'L', 917505=>'BN', 917536=>'BN', 917537=>'BN', 917538=>'BN', 917539=>'BN', 917540=>'BN', 917541=>'BN', 917542=>'BN', 917543=>'BN', 917544=>'BN', 917545=>'BN', 917546=>'BN', 917547=>'BN', 917548=>'BN', 917549=>'BN', 917550=>'BN', 917551=>'BN', 917552=>'BN', 917553=>'BN', 917554=>'BN', 917555=>'BN', 917556=>'BN', 917557=>'BN', 917558=>'BN', 917559=>'BN', 917560=>'BN', 917561=>'BN', 917562=>'BN', 917563=>'BN', 917564=>'BN', 917565=>'BN', 917566=>'BN', 917567=>'BN', 917568=>'BN', 917569=>'BN', 917570=>'BN', 917571=>'BN', 917572=>'BN', 917573=>'BN', 917574=>'BN', 917575=>'BN', 917576=>'BN', 917577=>'BN', 917578=>'BN', 917579=>'BN', 917580=>'BN', 917581=>'BN', 917582=>'BN', 917583=>'BN', 917584=>'BN', 917585=>'BN', 917586=>'BN', 917587=>'BN', 917588=>'BN', 917589=>'BN', 917590=>'BN', 917591=>'BN', 917592=>'BN', 917593=>'BN', 917594=>'BN', 917595=>'BN', 917596=>'BN', 917597=>'BN', 917598=>'BN', 917599=>'BN', 917600=>'BN', 917601=>'BN', 917602=>'BN', 917603=>'BN', 917604=>'BN', 917605=>'BN', 917606=>'BN', 917607=>'BN', 917608=>'BN', 917609=>'BN', 917610=>'BN', 917611=>'BN', 917612=>'BN', 917613=>'BN', 917614=>'BN', 917615=>'BN', 917616=>'BN', 917617=>'BN', 917618=>'BN', 917619=>'BN', 917620=>'BN', 917621=>'BN', 917622=>'BN', 917623=>'BN', 917624=>'BN', 917625=>'BN', 917626=>'BN', 917627=>'BN', 917628=>'BN', 917629=>'BN', 917630=>'BN', 917631=>'BN', 917760=>'NSM', 917761=>'NSM', 917762=>'NSM', 917763=>'NSM', 917764=>'NSM', 917765=>'NSM', 917766=>'NSM', 917767=>'NSM', 917768=>'NSM', 917769=>'NSM', 917770=>'NSM', 917771=>'NSM', 917772=>'NSM', 917773=>'NSM', 917774=>'NSM', 917775=>'NSM', 917776=>'NSM', 917777=>'NSM', 917778=>'NSM', 917779=>'NSM', 917780=>'NSM', 917781=>'NSM', 917782=>'NSM', 917783=>'NSM', 917784=>'NSM', 917785=>'NSM', 917786=>'NSM', 917787=>'NSM', 917788=>'NSM', 917789=>'NSM', 917790=>'NSM', 917791=>'NSM', 917792=>'NSM', 917793=>'NSM', 917794=>'NSM', 917795=>'NSM', 917796=>'NSM', 917797=>'NSM', 917798=>'NSM', 917799=>'NSM', 917800=>'NSM', 917801=>'NSM', 917802=>'NSM', 917803=>'NSM', 917804=>'NSM', 917805=>'NSM', 917806=>'NSM', 917807=>'NSM', 917808=>'NSM', 917809=>'NSM', 917810=>'NSM', 917811=>'NSM', 917812=>'NSM', 917813=>'NSM', 917814=>'NSM', 917815=>'NSM', 917816=>'NSM', 917817=>'NSM', 917818=>'NSM', 917819=>'NSM', 917820=>'NSM', 917821=>'NSM', 917822=>'NSM', 917823=>'NSM', 917824=>'NSM', 917825=>'NSM', 917826=>'NSM', 917827=>'NSM', 917828=>'NSM', 917829=>'NSM', 917830=>'NSM', 917831=>'NSM', 917832=>'NSM', 917833=>'NSM', 917834=>'NSM', 917835=>'NSM', 917836=>'NSM', 917837=>'NSM', 917838=>'NSM', 917839=>'NSM', 917840=>'NSM', 917841=>'NSM', 917842=>'NSM', 917843=>'NSM', 917844=>'NSM', 917845=>'NSM', 917846=>'NSM', 917847=>'NSM', 917848=>'NSM', 917849=>'NSM', 917850=>'NSM', 917851=>'NSM', 917852=>'NSM', 917853=>'NSM', 917854=>'NSM', 917855=>'NSM', 917856=>'NSM', 917857=>'NSM', 917858=>'NSM', 917859=>'NSM', 917860=>'NSM', 917861=>'NSM', 917862=>'NSM', 917863=>'NSM', 917864=>'NSM', 917865=>'NSM', 917866=>'NSM', 917867=>'NSM', 917868=>'NSM', 917869=>'NSM', 917870=>'NSM', 917871=>'NSM', 917872=>'NSM', 917873=>'NSM', 917874=>'NSM', 917875=>'NSM', 917876=>'NSM', 917877=>'NSM', 917878=>'NSM', 917879=>'NSM', 917880=>'NSM', 917881=>'NSM', 917882=>'NSM', 917883=>'NSM', 917884=>'NSM', 917885=>'NSM', 917886=>'NSM', 917887=>'NSM', 917888=>'NSM', 917889=>'NSM', 917890=>'NSM', 917891=>'NSM', 917892=>'NSM', 917893=>'NSM', 917894=>'NSM', 917895=>'NSM', 917896=>'NSM', 917897=>'NSM', 917898=>'NSM', 917899=>'NSM', 917900=>'NSM', 917901=>'NSM', 917902=>'NSM', 917903=>'NSM', 917904=>'NSM', 917905=>'NSM', 917906=>'NSM', 917907=>'NSM', 917908=>'NSM', 917909=>'NSM', 917910=>'NSM', 917911=>'NSM', 917912=>'NSM', 917913=>'NSM', 917914=>'NSM', 917915=>'NSM', 917916=>'NSM', 917917=>'NSM', 917918=>'NSM', 917919=>'NSM', 917920=>'NSM', 917921=>'NSM', 917922=>'NSM', 917923=>'NSM', 917924=>'NSM', 917925=>'NSM', 917926=>'NSM', 917927=>'NSM', 917928=>'NSM', 917929=>'NSM', 917930=>'NSM', 917931=>'NSM', 917932=>'NSM', 917933=>'NSM', 917934=>'NSM', 917935=>'NSM', 917936=>'NSM', 917937=>'NSM', 917938=>'NSM', 917939=>'NSM', 917940=>'NSM', 917941=>'NSM', 917942=>'NSM', 917943=>'NSM', 917944=>'NSM', 917945=>'NSM', 917946=>'NSM', 917947=>'NSM', 917948=>'NSM', 917949=>'NSM', 917950=>'NSM', 917951=>'NSM', 917952=>'NSM', 917953=>'NSM', 917954=>'NSM', 917955=>'NSM', 917956=>'NSM', 917957=>'NSM', 917958=>'NSM', 917959=>'NSM', 917960=>'NSM', 917961=>'NSM', 917962=>'NSM', 917963=>'NSM', 917964=>'NSM', 917965=>'NSM', 917966=>'NSM', 917967=>'NSM', 917968=>'NSM', 917969=>'NSM', 917970=>'NSM', 917971=>'NSM', 917972=>'NSM', 917973=>'NSM', 917974=>'NSM', 917975=>'NSM', 917976=>'NSM', 917977=>'NSM', 917978=>'NSM', 917979=>'NSM', 917980=>'NSM', 917981=>'NSM', 917982=>'NSM', 917983=>'NSM', 917984=>'NSM', 917985=>'NSM', 917986=>'NSM', 917987=>'NSM', 917988=>'NSM', 917989=>'NSM', 917990=>'NSM', 917991=>'NSM', 917992=>'NSM', 917993=>'NSM', 917994=>'NSM', 917995=>'NSM', 917996=>'NSM', 917997=>'NSM', 917998=>'NSM', 917999=>'NSM', 983040=>'L', 1048573=>'L', 1048576=>'L', 1114109=>'L' ); /** * Mirror unicode characters. For information on bidi mirroring, see UAX #9: Bidirectional Algorithm, at http://www.unicode.org/unicode/reports/tr9/ * @public */ public $uni_mirror = array ( 0x0028=>0x0029, 0x0029=>0x0028, 0x003C=>0x003E, 0x003E=>0x003C, 0x005B=>0x005D, 0x005D=>0x005B, 0x007B=>0x007D, 0x007D=>0x007B, 0x00AB=>0x00BB, 0x00BB=>0x00AB, 0x0F3A=>0x0F3B, 0x0F3B=>0x0F3A, 0x0F3C=>0x0F3D, 0x0F3D=>0x0F3C, 0x169B=>0x169C, 0x169C=>0x169B, 0x2018=>0x2019, 0x2019=>0x2018, 0x201C=>0x201D, 0x201D=>0x201C, 0x2039=>0x203A, 0x203A=>0x2039, 0x2045=>0x2046, 0x2046=>0x2045, 0x207D=>0x207E, 0x207E=>0x207D, 0x208D=>0x208E, 0x208E=>0x208D, 0x2208=>0x220B, 0x2209=>0x220C, 0x220A=>0x220D, 0x220B=>0x2208, 0x220C=>0x2209, 0x220D=>0x220A, 0x2215=>0x29F5, 0x223C=>0x223D, 0x223D=>0x223C, 0x2243=>0x22CD, 0x2252=>0x2253, 0x2253=>0x2252, 0x2254=>0x2255, 0x2255=>0x2254, 0x2264=>0x2265, 0x2265=>0x2264, 0x2266=>0x2267, 0x2267=>0x2266, 0x2268=>0x2269, 0x2269=>0x2268, 0x226A=>0x226B, 0x226B=>0x226A, 0x226E=>0x226F, 0x226F=>0x226E, 0x2270=>0x2271, 0x2271=>0x2270, 0x2272=>0x2273, 0x2273=>0x2272, 0x2274=>0x2275, 0x2275=>0x2274, 0x2276=>0x2277, 0x2277=>0x2276, 0x2278=>0x2279, 0x2279=>0x2278, 0x227A=>0x227B, 0x227B=>0x227A, 0x227C=>0x227D, 0x227D=>0x227C, 0x227E=>0x227F, 0x227F=>0x227E, 0x2280=>0x2281, 0x2281=>0x2280, 0x2282=>0x2283, 0x2283=>0x2282, 0x2284=>0x2285, 0x2285=>0x2284, 0x2286=>0x2287, 0x2287=>0x2286, 0x2288=>0x2289, 0x2289=>0x2288, 0x228A=>0x228B, 0x228B=>0x228A, 0x228F=>0x2290, 0x2290=>0x228F, 0x2291=>0x2292, 0x2292=>0x2291, 0x2298=>0x29B8, 0x22A2=>0x22A3, 0x22A3=>0x22A2, 0x22A6=>0x2ADE, 0x22A8=>0x2AE4, 0x22A9=>0x2AE3, 0x22AB=>0x2AE5, 0x22B0=>0x22B1, 0x22B1=>0x22B0, 0x22B2=>0x22B3, 0x22B3=>0x22B2, 0x22B4=>0x22B5, 0x22B5=>0x22B4, 0x22B6=>0x22B7, 0x22B7=>0x22B6, 0x22C9=>0x22CA, 0x22CA=>0x22C9, 0x22CB=>0x22CC, 0x22CC=>0x22CB, 0x22CD=>0x2243, 0x22D0=>0x22D1, 0x22D1=>0x22D0, 0x22D6=>0x22D7, 0x22D7=>0x22D6, 0x22D8=>0x22D9, 0x22D9=>0x22D8, 0x22DA=>0x22DB, 0x22DB=>0x22DA, 0x22DC=>0x22DD, 0x22DD=>0x22DC, 0x22DE=>0x22DF, 0x22DF=>0x22DE, 0x22E0=>0x22E1, 0x22E1=>0x22E0, 0x22E2=>0x22E3, 0x22E3=>0x22E2, 0x22E4=>0x22E5, 0x22E5=>0x22E4, 0x22E6=>0x22E7, 0x22E7=>0x22E6, 0x22E8=>0x22E9, 0x22E9=>0x22E8, 0x22EA=>0x22EB, 0x22EB=>0x22EA, 0x22EC=>0x22ED, 0x22ED=>0x22EC, 0x22F0=>0x22F1, 0x22F1=>0x22F0, 0x22F2=>0x22FA, 0x22F3=>0x22FB, 0x22F4=>0x22FC, 0x22F6=>0x22FD, 0x22F7=>0x22FE, 0x22FA=>0x22F2, 0x22FB=>0x22F3, 0x22FC=>0x22F4, 0x22FD=>0x22F6, 0x22FE=>0x22F7, 0x2308=>0x2309, 0x2309=>0x2308, 0x230A=>0x230B, 0x230B=>0x230A, 0x2329=>0x232A, 0x232A=>0x2329, 0x2768=>0x2769, 0x2769=>0x2768, 0x276A=>0x276B, 0x276B=>0x276A, 0x276C=>0x276D, 0x276D=>0x276C, 0x276E=>0x276F, 0x276F=>0x276E, 0x2770=>0x2771, 0x2771=>0x2770, 0x2772=>0x2773, 0x2773=>0x2772, 0x2774=>0x2775, 0x2775=>0x2774, 0x27C3=>0x27C4, 0x27C4=>0x27C3, 0x27C5=>0x27C6, 0x27C6=>0x27C5, 0x27D5=>0x27D6, 0x27D6=>0x27D5, 0x27DD=>0x27DE, 0x27DE=>0x27DD, 0x27E2=>0x27E3, 0x27E3=>0x27E2, 0x27E4=>0x27E5, 0x27E5=>0x27E4, 0x27E6=>0x27E7, 0x27E7=>0x27E6, 0x27E8=>0x27E9, 0x27E9=>0x27E8, 0x27EA=>0x27EB, 0x27EB=>0x27EA, 0x2983=>0x2984, 0x2984=>0x2983, 0x2985=>0x2986, 0x2986=>0x2985, 0x2987=>0x2988, 0x2988=>0x2987, 0x2989=>0x298A, 0x298A=>0x2989, 0x298B=>0x298C, 0x298C=>0x298B, 0x298D=>0x2990, 0x298E=>0x298F, 0x298F=>0x298E, 0x2990=>0x298D, 0x2991=>0x2992, 0x2992=>0x2991, 0x2993=>0x2994, 0x2994=>0x2993, 0x2995=>0x2996, 0x2996=>0x2995, 0x2997=>0x2998, 0x2998=>0x2997, 0x29B8=>0x2298, 0x29C0=>0x29C1, 0x29C1=>0x29C0, 0x29C4=>0x29C5, 0x29C5=>0x29C4, 0x29CF=>0x29D0, 0x29D0=>0x29CF, 0x29D1=>0x29D2, 0x29D2=>0x29D1, 0x29D4=>0x29D5, 0x29D5=>0x29D4, 0x29D8=>0x29D9, 0x29D9=>0x29D8, 0x29DA=>0x29DB, 0x29DB=>0x29DA, 0x29F5=>0x2215, 0x29F8=>0x29F9, 0x29F9=>0x29F8, 0x29FC=>0x29FD, 0x29FD=>0x29FC, 0x2A2B=>0x2A2C, 0x2A2C=>0x2A2B, 0x2A2D=>0x2A2E, 0x2A2E=>0x2A2D, 0x2A34=>0x2A35, 0x2A35=>0x2A34, 0x2A3C=>0x2A3D, 0x2A3D=>0x2A3C, 0x2A64=>0x2A65, 0x2A65=>0x2A64, 0x2A79=>0x2A7A, 0x2A7A=>0x2A79, 0x2A7D=>0x2A7E, 0x2A7E=>0x2A7D, 0x2A7F=>0x2A80, 0x2A80=>0x2A7F, 0x2A81=>0x2A82, 0x2A82=>0x2A81, 0x2A83=>0x2A84, 0x2A84=>0x2A83, 0x2A8B=>0x2A8C, 0x2A8C=>0x2A8B, 0x2A91=>0x2A92, 0x2A92=>0x2A91, 0x2A93=>0x2A94, 0x2A94=>0x2A93, 0x2A95=>0x2A96, 0x2A96=>0x2A95, 0x2A97=>0x2A98, 0x2A98=>0x2A97, 0x2A99=>0x2A9A, 0x2A9A=>0x2A99, 0x2A9B=>0x2A9C, 0x2A9C=>0x2A9B, 0x2AA1=>0x2AA2, 0x2AA2=>0x2AA1, 0x2AA6=>0x2AA7, 0x2AA7=>0x2AA6, 0x2AA8=>0x2AA9, 0x2AA9=>0x2AA8, 0x2AAA=>0x2AAB, 0x2AAB=>0x2AAA, 0x2AAC=>0x2AAD, 0x2AAD=>0x2AAC, 0x2AAF=>0x2AB0, 0x2AB0=>0x2AAF, 0x2AB3=>0x2AB4, 0x2AB4=>0x2AB3, 0x2ABB=>0x2ABC, 0x2ABC=>0x2ABB, 0x2ABD=>0x2ABE, 0x2ABE=>0x2ABD, 0x2ABF=>0x2AC0, 0x2AC0=>0x2ABF, 0x2AC1=>0x2AC2, 0x2AC2=>0x2AC1, 0x2AC3=>0x2AC4, 0x2AC4=>0x2AC3, 0x2AC5=>0x2AC6, 0x2AC6=>0x2AC5, 0x2ACD=>0x2ACE, 0x2ACE=>0x2ACD, 0x2ACF=>0x2AD0, 0x2AD0=>0x2ACF, 0x2AD1=>0x2AD2, 0x2AD2=>0x2AD1, 0x2AD3=>0x2AD4, 0x2AD4=>0x2AD3, 0x2AD5=>0x2AD6, 0x2AD6=>0x2AD5, 0x2ADE=>0x22A6, 0x2AE3=>0x22A9, 0x2AE4=>0x22A8, 0x2AE5=>0x22AB, 0x2AEC=>0x2AED, 0x2AED=>0x2AEC, 0x2AF7=>0x2AF8, 0x2AF8=>0x2AF7, 0x2AF9=>0x2AFA, 0x2AFA=>0x2AF9, 0x2E02=>0x2E03, 0x2E03=>0x2E02, 0x2E04=>0x2E05, 0x2E05=>0x2E04, 0x2E09=>0x2E0A, 0x2E0A=>0x2E09, 0x2E0C=>0x2E0D, 0x2E0D=>0x2E0C, 0x2E1C=>0x2E1D, 0x2E1D=>0x2E1C, 0x3008=>0x3009, 0x3009=>0x3008, 0x300A=>0x300B, 0x300B=>0x300A, 0x300C=>0x300D, 0x300D=>0x300C, 0x300E=>0x300F, 0x300F=>0x300E, 0x3010=>0x3011, 0x3011=>0x3010, 0x3014=>0x3015, 0x3015=>0x3014, 0x3016=>0x3017, 0x3017=>0x3016, 0x3018=>0x3019, 0x3019=>0x3018, 0x301A=>0x301B, 0x301B=>0x301A, 0x301D=>0x301E, 0x301E=>0x301D, 0xFE59=>0xFE5A, 0xFE5A=>0xFE59, 0xFE5B=>0xFE5C, 0xFE5C=>0xFE5B, 0xFE5D=>0xFE5E, 0xFE5E=>0xFE5D, 0xFE64=>0xFE65, 0xFE65=>0xFE64, 0xFF08=>0xFF09, 0xFF09=>0xFF08, 0xFF1C=>0xFF1E, 0xFF1E=>0xFF1C, 0xFF3B=>0xFF3D, 0xFF3D=>0xFF3B, 0xFF5B=>0xFF5D, 0xFF5D=>0xFF5B, 0xFF5F=>0xFF60, 0xFF60=>0xFF5F, 0xFF62=>0xFF63, 0xFF63=>0xFF62); /** * Arabic shape substitutions: char code => (isolated, final, initial, medial). * @public */ public $uni_arabicsubst = array( 1569=>array(65152), 1570=>array(65153, 65154, 65153, 65154), 1571=>array(65155, 65156, 65155, 65156), 1572=>array(65157, 65158), 1573=>array(65159, 65160, 65159, 65160), 1574=>array(65161, 65162, 65163, 65164), 1575=>array(65165, 65166, 65165, 65166), 1576=>array(65167, 65168, 65169, 65170), 1577=>array(65171, 65172), 1578=>array(65173, 65174, 65175, 65176), 1579=>array(65177, 65178, 65179, 65180), 1580=>array(65181, 65182, 65183, 65184), 1581=>array(65185, 65186, 65187, 65188), 1582=>array(65189, 65190, 65191, 65192), 1583=>array(65193, 65194, 65193, 65194), 1584=>array(65195, 65196, 65195, 65196), 1585=>array(65197, 65198, 65197, 65198), 1586=>array(65199, 65200, 65199, 65200), 1587=>array(65201, 65202, 65203, 65204), 1588=>array(65205, 65206, 65207, 65208), 1589=>array(65209, 65210, 65211, 65212), 1590=>array(65213, 65214, 65215, 65216), 1591=>array(65217, 65218, 65219, 65220), 1592=>array(65221, 65222, 65223, 65224), 1593=>array(65225, 65226, 65227, 65228), 1594=>array(65229, 65230, 65231, 65232), 1601=>array(65233, 65234, 65235, 65236), 1602=>array(65237, 65238, 65239, 65240), 1603=>array(65241, 65242, 65243, 65244), 1604=>array(65245, 65246, 65247, 65248), 1605=>array(65249, 65250, 65251, 65252), 1606=>array(65253, 65254, 65255, 65256), 1607=>array(65257, 65258, 65259, 65260), 1608=>array(65261, 65262, 65261, 65262), 1609=>array(65263, 65264, 64488, 64489), 1610=>array(65265, 65266, 65267, 65268), 1649=>array(64336, 64337), 1655=>array(64477), 1657=>array(64358, 64359, 64360, 64361), 1658=>array(64350, 64351, 64352, 64353), 1659=>array(64338, 64339, 64340, 64341), 1662=>array(64342, 64343, 64344, 64345), 1663=>array(64354, 64355, 64356, 64357), 1664=>array(64346, 64347, 64348, 64349), 1667=>array(64374, 64375, 64376, 64377), 1668=>array(64370, 64371, 64372, 64373), 1670=>array(64378, 64379, 64380, 64381), 1671=>array(64382, 64383, 64384, 64385), 1672=>array(64392, 64393), 1676=>array(64388, 64389), 1677=>array(64386, 64387), 1678=>array(64390, 64391), 1681=>array(64396, 64397), 1688=>array(64394, 64395, 64394, 64395), 1700=>array(64362, 64363, 64364, 64365), 1702=>array(64366, 64367, 64368, 64369), 1705=>array(64398, 64399, 64400, 64401), 1709=>array(64467, 64468, 64469, 64470), 1711=>array(64402, 64403, 64404, 64405), 1713=>array(64410, 64411, 64412, 64413), 1715=>array(64406, 64407, 64408, 64409), 1722=>array(64414, 64415), 1723=>array(64416, 64417, 64418, 64419), 1726=>array(64426, 64427, 64428, 64429), 1728=>array(64420, 64421), 1729=>array(64422, 64423, 64424, 64425), 1733=>array(64480, 64481), 1734=>array(64473, 64474), 1735=>array(64471, 64472), 1736=>array(64475, 64476), 1737=>array(64482, 64483), 1739=>array(64478, 64479), 1740=>array(64508, 64509, 64510, 64511), 1744=>array(64484, 64485, 64486, 64487), 1746=>array(64430, 64431), 1747=>array(64432, 64433) ); /** * Arabic laa letter: (char code => isolated, final, initial, medial). * @public */ public $uni_laa_array = array ( 1570 =>array(65269, 65270, 65269, 65270), 1571 =>array(65271, 65272, 65271, 65272), 1573 =>array(65273, 65274, 65273, 65274), 1575 =>array(65275, 65276, 65275, 65276) ); /** * Array of character substitutions for sequences of two diacritics symbols. * Putting the combining mark and character in the same glyph allows us to avoid the two marks overlapping each other in an illegible manner. * second NSM char code => substitution char * @public */ public $uni_diacritics = array ( 1612=>64606, # Shadda + Dammatan 1613=>64607, # Shadda + Kasratan 1614=>64608, # Shadda + Fatha 1615=>64609, # Shadda + Damma 1616=>64610 # Shadda + Kasra ); /** * Array of character substitutions from UTF-8 Unicode to Latin1. * @public */ public $uni_utf8tolatin = array ( 8364=>128, # Euro1 338=>140, # OE 352=>138, # Scaron 376=>159, # Ydieresis 381=>142, # Zcaron2 8226=>149, # bullet3 710=>136, # circumflex 8224=>134, # dagger 8225=>135, # daggerdbl 8230=>133, # ellipsis 8212=>151, # emdash 8211=>150, # endash 402=>131, # florin 8249=>139, # guilsinglleft 8250=>155, # guilsinglright 339=>156, # oe 8240=>137, # perthousand 8222=>132, # quotedblbase 8220=>147, # quotedblleft 8221=>148, # quotedblright 8216=>145, # quoteleft 8217=>146, # quoteright 8218=>130, # quotesinglbase 353=>154, # scaron 732=>152, # tilde 8482=>153, # trademark 382=>158 # zcaron2 ); } // --- END OF CLASS --- //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/unicode_data.php
PHP
gpl2
227,830
<?php //============================================================+ // File name : 2dbarcodes.php // Version : 1.0.012 // Begin : 2009-04-07 // Last Update : 2011-09-15 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // ------------------------------------------------------------------- // Copyright (C) 2009-2011 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : PHP class to creates array representations for // 2D barcodes to be used with TCPDF. // //============================================================+ /** * @file * PHP class to creates array representations for 2D barcodes to be used with TCPDF. * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.012 */ /** * @class TCPDF2DBarcode * PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org). * @package com.tecnick.tcpdf * @version 1.0.012 * @author Nicola Asuni */ class TCPDF2DBarcode { /** * Array representation of barcode. * @protected */ protected $barcode_array = false; /** * This is the class constructor. * Return an array representations for 2D barcodes:<ul> * <li>$arrcode['code'] code to be printed on text label</li> * <li>$arrcode['num_rows'] required number of rows</li> * <li>$arrcode['num_cols'] required number of columns</li> * <li>$arrcode['bcode'][$r][$c] value of the cell is $r row and $c column (0 = transparent, 1 = black)</li></ul> * @param $code (string) code to print * @param $type (string) type of barcode: <ul><li>DATAMATRIX : Datamatrix (ISO/IEC 16022)</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li><li>QRCODE : QRcode Low error correction</li><li>QRCODE,L : QRcode Low error correction</li><li>QRCODE,M : QRcode Medium error correction</li><li>QRCODE,Q : QRcode Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>TEST : Test matrix</li></ul> */ public function __construct($code, $type) { $this->setBarcode($code, $type); } /** * Return an array representations of barcode. * @return array */ public function getBarcodeArray() { return $this->barcode_array; } /** * Send barcode as SVG image object to the standard output. * @param $w (int) Width of a single rectangle element in user units. * @param $h (int) Height of a single rectangle element in user units. * @param $color (string) Foreground color (in SVG format) for bar elements (background is transparent). * @public */ public function getBarcodeSVG($w=3, $h=3, $color='black') { // send headers $code = $this->getBarcodeSVGcode($w, $h, $color); header('Content-Type: application/svg+xml'); header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1 header('Pragma: public'); header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); header('Content-Disposition: inline; filename="'.md5($code).'.svg";'); //header('Content-Length: '.strlen($code)); echo $code; } /** * Return a SVG string representation of barcode. * @param $w (int) Width of a single rectangle element in user units. * @param $h (int) Height of a single rectangle element in user units. * @param $color (string) Foreground color (in SVG format) for bar elements (background is transparent). * @return string SVG code. * @public */ public function getBarcodeSVGcode($w=3, $h=3, $color='black') { // replace table for special characters $repstr = array("\0" => '', '&' => '&amp;', '<' => '&lt;', '>' => '&gt;'); $svg = '<'.'?'.'xml version="1.0" standalone="no"'.'?'.'>'."\n"; $svg .= '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">'."\n"; $svg .= '<svg width="'.round(($this->barcode_array['num_cols'] * $w), 3).'" height="'.round(($this->barcode_array['num_rows'] * $h), 3).'" version="1.1" xmlns="http://www.w3.org/2000/svg">'."\n"; $svg .= "\t".'<desc>'.strtr($this->barcode_array['code'], $repstr).'</desc>'."\n"; $svg .= "\t".'<g id="elements" fill="'.$color.'" stroke="none">'."\n"; // print barcode elements $y = 0; // for each row for ($r = 0; $r < $this->barcode_array['num_rows']; ++$r) { $x = 0; // for each column for ($c = 0; $c < $this->barcode_array['num_cols']; ++$c) { if ($this->barcode_array['bcode'][$r][$c] == 1) { // draw a single barcode cell $svg .= "\t\t".'<rect x="'.$x.'" y="'.$y.'" width="'.$w.'" height="'.$h.'" />'."\n"; } $x += $w; } $y += $h; } $svg .= "\t".'</g>'."\n"; $svg .= '</svg>'."\n"; return $svg; } /** * Return an HTML representation of barcode. * @param $w (int) Width of a single rectangle element in pixels. * @param $h (int) Height of a single rectangle element in pixels. * @param $color (string) Foreground color for bar elements (background is transparent). * @return string HTML code. * @public */ public function getBarcodeHTML($w=10, $h=10, $color='black') { // replace table for special characters $html = '<div style="font-size:0;position:relative;">'."\n"; // print barcode elements $y = 0; // for each row for ($r = 0; $r < $this->barcode_array['num_rows']; ++$r) { $x = 0; // for each column for ($c = 0; $c < $this->barcode_array['num_cols']; ++$c) { if ($this->barcode_array['bcode'][$r][$c] == 1) { // draw a single barcode cell $html .= '<div style="background-color:'.$color.';width:'.$w.'px;height:'.$h.'px;position:absolute;left:'.$x.'px;top:'.$y.'px;">&nbsp;</div>'."\n"; } $x += $w; } $y += $h; } $html .= '</div>'."\n"; return $html; } /** * Return a PNG image representation of barcode (requires GD or Imagick library). * @param $w (int) Width of a single rectangle element in pixels. * @param $h (int) Height of a single rectangle element in pixels. * @param $color (array) RGB (0-255) foreground color for bar elements (background is transparent). * @return image or false in case of error. * @public */ public function getBarcodePNG($w=3, $h=3, $color=array(0,0,0)) { // calculate image size $width = ($this->barcode_array['num_cols'] * $w); $height = ($this->barcode_array['num_rows'] * $h); if (function_exists('imagecreate')) { // GD library $imagick = false; $png = imagecreate($width, $height); $bgcol = imagecolorallocate($png, 255, 255, 255); imagecolortransparent($png, $bgcol); $fgcol = imagecolorallocate($png, $color[0], $color[1], $color[2]); } elseif (extension_loaded('imagick')) { $imagick = true; $bgcol = new imagickpixel('rgb(255,255,255'); $fgcol = new imagickpixel('rgb('.$color[0].','.$color[1].','.$color[2].')'); $png = new Imagick(); $png->newImage($width, $height, 'none', 'png'); $bar = new imagickdraw(); $bar->setfillcolor($fgcol); } else { return false; } // print barcode elements $y = 0; // for each row for ($r = 0; $r < $this->barcode_array['num_rows']; ++$r) { $x = 0; // for each column for ($c = 0; $c < $this->barcode_array['num_cols']; ++$c) { if ($this->barcode_array['bcode'][$r][$c] == 1) { // draw a single barcode cell if ($imagick) { $bar->rectangle($x, $y, ($x + $w), ($y + $h)); } else { imagefilledrectangle($png, $x, $y, ($x + $w), ($y + $h), $fgcol); } } $x += $w; } $y += $h; } // send headers header('Content-Type: image/png'); header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1 header('Pragma: public'); header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); if ($imagick) { $png->drawimage($bar); echo $png; } else { imagepng($png); imagedestroy($png); } } /** * Set the barcode. * @param $code (string) code to print * @param $type (string) type of barcode: <ul><li>DATAMATRIX : Datamatrix (ISO/IEC 16022)</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li><li>QRCODE : QRcode Low error correction</li><li>QRCODE,L : QRcode Low error correction</li><li>QRCODE,M : QRcode Medium error correction</li><li>QRCODE,Q : QRcode Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>TEST : Test matrix</li></ul> * @return array */ public function setBarcode($code, $type) { $mode = explode(',', $type); $qrtype = strtoupper($mode[0]); switch ($qrtype) { case 'DATAMATRIX': { // DATAMATRIX (ISO/IEC 16022) require_once(dirname(__FILE__).'/datamatrix.php'); $qrcode = new Datamatrix($code); $this->barcode_array = $qrcode->getBarcodeArray(); $this->barcode_array['code'] = $code; break; } case 'PDF417': { // PDF417 (ISO/IEC 15438:2006) require_once(dirname(__FILE__).'/pdf417.php'); if (!isset($mode[1]) OR ($mode[1] === '')) { $aspectratio = 2; // default aspect ratio (width / height) } else { $aspectratio = floatval($mode[1]); } if (!isset($mode[2]) OR ($mode[2] === '')) { $ecl = -1; // default error correction level (auto) } else { $ecl = intval($mode[2]); } // set macro block $macro = array(); if (isset($mode[3]) AND ($mode[3] !== '') AND isset($mode[4]) AND ($mode[4] !== '') AND isset($mode[5]) AND ($mode[5] !== '')) { $macro['segment_total'] = intval($mode[3]); $macro['segment_index'] = intval($mode[4]); $macro['file_id'] = strtr($mode[5], "\xff", ','); for ($i = 0; $i < 7; ++$i) { $o = $i + 6; if (isset($mode[$o]) AND ($mode[$o] !== '')) { // add option $macro['option_'.$i] = strtr($mode[$o], "\xff", ','); } } } $qrcode = new PDF417($code, $ecl, $aspectratio, $macro); $this->barcode_array = $qrcode->getBarcodeArray(); $this->barcode_array['code'] = $code; break; } case 'QRCODE': { // QR-CODE require_once(dirname(__FILE__).'/qrcode.php'); if (!isset($mode[1]) OR (!in_array($mode[1],array('L','M','Q','H')))) { $mode[1] = 'L'; // Ddefault: Low error correction } $qrcode = new QRcode($code, strtoupper($mode[1])); $this->barcode_array = $qrcode->getBarcodeArray(); $this->barcode_array['code'] = $code; break; } case 'RAW': case 'RAW2': { // RAW MODE // remove spaces $code = preg_replace('/[\s]*/si', '', $code); if (strlen($code) < 3) { break; } if ($qrtype == 'RAW') { // comma-separated rows $rows = explode(',', $code); } else { // RAW2 // rows enclosed in square parentheses $code = substr($code, 1, -1); $rows = explode('][', $code); } $this->barcode_array['num_rows'] = count($rows); $this->barcode_array['num_cols'] = strlen($rows[0]); $this->barcode_array['bcode'] = array(); foreach ($rows as $r) { $this->barcode_array['bcode'][] = str_split($r, 1); } $this->barcode_array['code'] = $code; break; } case 'TEST': { // TEST MODE $this->barcode_array['num_rows'] = 5; $this->barcode_array['num_cols'] = 15; $this->barcode_array['bcode'] = array( array(1,1,1,0,1,1,1,0,1,1,1,0,1,1,1), array(0,1,0,0,1,0,0,0,1,0,0,0,0,1,0), array(0,1,0,0,1,1,0,0,1,1,1,0,0,1,0), array(0,1,0,0,1,0,0,0,0,0,1,0,0,1,0), array(0,1,0,0,1,1,1,0,1,1,1,0,0,1,0)); $this->barcode_array['code'] = $code; break; } default: { $this->barcode_array = false; } } } } // end of class //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/2dbarcodes.php
PHP
gpl2
14,009
<?php //============================================================+ // File name : tcpdf_filters.php // Version : 1.0.000 // Begin : 2011-05-23 // Last Update : 2011-06-26 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS. // ------------------------------------------------------------------- // Copyright (C) 2011-2011 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. Additionally, // YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE // GENERATED PDF DOCUMENTS. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the License // along with TCPDF. If not, see // <http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : This is a PHP class for decoding common PDF filters (PDF 32000-2008 - 7.4 Filters). // //============================================================+ /** * @file * This is a PHP class for decoding common PDF filters (PDF 32000-2008 - 7.4 Filters).<br> * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.000 */ /** * @class TCPDF_FILTERS * This is a PHP class for decoding common PDF filters (PDF 32000-2008 - 7.4 Filters).<br> * @package com.tecnick.tcpdf * @brief This is a PHP class for decoding common PDF filters. * @version 1.0.000 * @author Nicola Asuni - info@tecnick.com */ class TCPDF_FILTERS { /** * Define a list of available filter decoders. * @private */ private $available_filters = array('ASCIIHexDecode', 'ASCII85Decode', 'LZWDecode', 'FlateDecode', 'RunLengthDecode'); // ----------------------------------------------------------------------------- /** * Get a list of available decoding filters. * @return (array) Array of available filter decoders. * @public * @since 1.0.000 (2011-05-23) */ public function getAvailableFilters() { return $this->available_filters; } /** * Decode data using the specified filter type. * @param $filter (string) Filter name. * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilter($filter, $data) { switch ($filter) { case 'ASCIIHexDecode': { return $this->decodeFilterASCIIHexDecode($data); break; } case 'ASCII85Decode': { return $this->decodeFilterASCII85Decode($data); break; } case 'LZWDecode': { return $this->decodeFilterLZWDecode($data); break; } case 'FlateDecode': { return $this->decodeFilterFlateDecode($data); break; } case 'RunLengthDecode': { return $this->decodeFilterRunLengthDecode($data); break; } case 'CCITTFaxDecode': { return $this->decodeFilterCCITTFaxDecode($data); break; } case 'JBIG2Decode': { return $this->decodeFilterJBIG2Decode($data); break; } case 'DCTDecode': { return $this->decodeFilterDCTDecode($data); break; } case 'JPXDecode': { return $this->decodeFilterJPXDecode($data); break; } case 'Crypt': { return $this->decodeFilterCrypt($data); break; } default: { return decodeFilterStandard($data); break; } } } // --- FILTERS (PDF 32000-2008 - 7.4 Filters) ------------------------------ /** * Standard * Default decoding filter (leaves data unchanged). * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterStandard($data) { return $data; } /** * ASCIIHexDecode * Decodes data encoded in an ASCII hexadecimal representation, reproducing the original binary data. * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterASCIIHexDecode($data) { // intialize string to return $decoded = ''; // all white-space characters shall be ignored $data = preg_replace('/[\s]/', '', $data); // check for EOD character: GREATER-THAN SIGN (3Eh) $eod = strpos($data, '>'); if ($eod !== false) { // remove EOD and extra data (if any) $data = substr($data, 0, $eod); $eod = true; } // get data length $data_length = strlen($data); if (($data_length % 2) != 0) { // odd number of hexadecimal digits if ($eod) { // EOD shall behave as if a 0 (zero) followed the last digit $data = substr($data, 0, -1).'0'.substr($data, -1); } else { $this->Error('decodeASCIIHex: invalid code'); } } // check for invalid characters if (preg_match('/[^a-fA-F\d]/', $data) > 0) { $this->Error('decodeASCIIHex: invalid code'); } // get one byte of binary data for each pair of ASCII hexadecimal digits $decoded = pack('H*', $data); return $decoded; } /** * ASCII85Decode * Decodes data encoded in an ASCII base-85 representation, reproducing the original binary data. * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterASCII85Decode($data) { // intialize string to return $decoded = ''; // all white-space characters shall be ignored $data = preg_replace('/[\s]/', '', $data); // remove start sequence 2-character sequence <~ (3Ch)(7Eh) if (strpos($data, '<~') !== false) { // remove EOD and extra data (if any) $data = substr($data, 2); } // check for EOD: 2-character sequence ~> (7Eh)(3Eh) $eod = strpos($data, '~>'); if ($eod !== false) { // remove EOD and extra data (if any) $data = substr($data, 0, $eod); } // data length $data_length = strlen($data); // check for invalid characters if (preg_match('/[^\x21-\x75,\x74]/', $data) > 0) { $this->Error('decodeASCII85: invalid code'); } // z sequence $zseq = chr(0).chr(0).chr(0).chr(0); // position inside a group of 4 bytes (0-3) $group_pos = 0; $tuple = 0; $pow85 = array((85*85*85*85), (85*85*85), (85*85), 85, 1); $last_pos = ($data_length - 1); // for each byte for ($i = 0; $i < $data_length; ++$i) { // get char value $char = ord($data[$i]); if ($char == 122) { // 'z' if ($group_pos == 0) { $decoded .= $zseq; } else { $this->Error('decodeASCII85: invalid code'); } } else { // the value represented by a group of 5 characters should never be greater than 2^32 - 1 $tuple += (($char - 33) * $pow85[$group_pos]); if ($group_pos == 4) { $decoded .= chr($tuple >> 24).chr($tuple >> 16).chr($tuple >> 8).chr($tuple); $tuple = 0; $group_pos = 0; } else { ++$group_pos; } } } if ($group_pos > 1) { $tuple += $pow85[($group_pos - 1)]; } // last tuple (if any) switch ($group_pos) { case 4: { $decoded .= chr($tuple >> 24).chr($tuple >> 16).chr($tuple >> 8); break; } case 3: { $decoded .= chr($tuple >> 24).chr($tuple >> 16); break; } case 2: { $decoded .= chr($tuple >> 24); break; } case 1: { $this->Error('decodeASCII85: invalid code'); break; } } return $decoded; } /** * LZWDecode * Decompresses data encoded using the LZW (Lempel-Ziv-Welch) adaptive compression method, reproducing the original text or binary data. * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterLZWDecode($data) { // intialize string to return $decoded = ''; // data length $data_length = strlen($data); // convert string to binary string $bitstring = ''; for ($i = 0; $i < $data_length; ++$i) { $bitstring .= sprintf('%08b', ord($data{$i})); } // get the number of bits $data_length = strlen($bitstring); // initialize code length in bits $bitlen = 9; // initialize dictionary index $dix = 258; // initialize the dictionary (with the first 256 entries). $dictionary = array(); for ($i = 0; $i < 256; ++$i) { $dictionary[$i] = chr($i); } // previous val $prev_index = 0; // while we encounter EOD marker (257), read code_length bits while (($data_length > 0) AND (($index = bindec(substr($bitstring, 0, $bitlen))) != 257)) { // remove read bits from string $bitstring = substr($bitstring, $bitlen); // update number of bits $data_length -= $bitlen; if ($index == 256) { // clear-table marker // reset code length in bits $bitlen = 9; // reset dictionary index $dix = 258; $prev_index = 256; // reset the dictionary (with the first 256 entries). $dictionary = array(); for ($i = 0; $i < 256; ++$i) { $dictionary[$i] = chr($i); } } elseif ($prev_index == 256) { // first entry $decoded .= $dictionary[$index]; $prev_index = $index; } else { // check if index exist in the dictionary if ($index < $dix) { // index exist on dictionary $decoded .= $dictionary[$index]; $dic_val = $dictionary[$prev_index].$dictionary[$index]{0}; // store current index $prev_index = $index; } else { // index do not exist on dictionary $dic_val = $dictionary[$prev_index].$dictionary[$prev_index]{0}; $decoded .= $dic_val; } // update dictionary $dictionary[$dix] = $dic_val; ++$dix; // change bit length by case if ($dix == 2047) { $bitlen = 12; } elseif ($dix == 1023) { $bitlen = 11; } elseif ($dix == 511) { $bitlen = 10; } } } return $decoded; } /** * FlateDecode * Decompresses data encoded using the zlib/deflate compression method, reproducing the original text or binary data. * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterFlateDecode($data) { // intialize string to return $decoded = gzuncompress($data); if ($decoded === false) { $this->Error('decodeFlate: invalid code'); } return $decoded; } /** * RunLengthDecode * Decompresses data encoded using a byte-oriented run-length encoding algorithm. * @param $data (string) Data to decode. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterRunLengthDecode($data) { // intialize string to return $decoded = ''; // data length $data_length = strlen($data); $i = 0; while($i < $data_length) { // get current byte value $byte = ord($data{$i}); if ($byte == 128) { // a length value of 128 denote EOD break; } elseif ($byte < 128) { // if the length byte is in the range 0 to 127 // the following length + 1 (1 to 128) bytes shall be copied literally during decompression $decoded .= substr($data, ($i + 1), ($byte + 1)); // move to next block $i += ($byte + 2); } else { // if length is in the range 129 to 255, // the following single byte shall be copied 257 - length (2 to 128) times during decompression $decoded .= str_repeat($data{($i + 1)}, (257 - $byte)); // move to next block $i += 2; } } return $decoded; } /** * CCITTFaxDecode (NOT IMPLEMETED) * Decompresses data encoded using the CCITT facsimile standard, reproducing the original data (typically monochrome image data at 1 bit per pixel). * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterCCITTFaxDecode($data) { return $data; } /** * JBIG2Decode (NOT IMPLEMETED) * Decompresses data encoded using the JBIG2 standard, reproducing the original monochrome (1 bit per pixel) image data (or an approximation of that data). * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterJBIG2Decode($data) { return $data; } /** * DCTDecode (NOT IMPLEMETED) * Decompresses data encoded using a DCT (discrete cosine transform) technique based on the JPEG standard, reproducing image sample data that approximates the original data. * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterDCTDecode($data) { return $data; } /** * JPXDecode (NOT IMPLEMETED) * Decompresses data encoded using the wavelet-based JPEG2000 standard, reproducing the original image data. * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterJPXDecode($data) { return $data; } /** * Crypt (NOT IMPLEMETED) * Decrypts data encrypted by a security handler, reproducing the data as it was before encryption. * @param $data (string) Data to decode. * @return Decoded data string. * @public * @since 1.0.000 (2011-05-23) */ public function decodeFilterCrypt($data) { return $data; } // --- END FILTERS SECTION ------------------------------------------------- /** * This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. * @param $msg (string) The error message * @public * @since 1.0.000 (2011-05-23) */ public function Error($msg) { // exit program and print error die('<strong>TCPDF_FILTERS ERROR: </strong>'.$msg); } } // END OF TCPDF_FILTERS CLASS //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/tcpdf_filters.php
PHP
gpl2
14,260
<?php //============================================================+ // File name : encodings_maps.php // Version : 1.0.000 // Begin : 2011-10-01 // Last Update : 2011-10-01 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // ------------------------------------------------------------------- // Copyright (C) 2008-2011 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // Description : Unicode data for TCPDF library. // //============================================================+ /** * @file * Font encodings maps class for TCPDF library. * @author Nicola Asuni * @package com.tecnick.tcpdf * @since 5.9.123 (2011-10-01) */ /** * @class TCPDF_ENCODING_MAPS * This is a PHP class containing Font encodings maps class for TCPDF library. * @package com.tecnick.tcpdf * @version 1.0.000 * @author Nicola Asuni - info@tecnick.com */ class TCPDF_ENCODING_MAPS { /** * Array of Encoding Maps. * @public */ public $encmap = array( // encoding map for: cp1251 'cp1251' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'afii10051',129=>'afii10052',130=>'quotesinglbase',131=>'afii10100',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'Euro',137=>'perthousand',138=>'afii10058',139=>'guilsinglleft',140=>'afii10059',141=>'afii10061',142=>'afii10060',143=>'afii10145', 144=>'afii10099',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'.notdef',153=>'trademark',154=>'afii10106',155=>'guilsinglright',156=>'afii10107',157=>'afii10109',158=>'afii10108',159=>'afii10193', 160=>'space',161=>'afii10062',162=>'afii10110',163=>'afii10057',164=>'currency',165=>'afii10050',166=>'brokenbar',167=>'section', 168=>'afii10023',169=>'copyright',170=>'afii10053',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'afii10056', 176=>'degree',177=>'plusminus',178=>'afii10055',179=>'afii10103',180=>'afii10098',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'afii10071',185=>'afii61352',186=>'afii10101',187=>'guillemotright',188=>'afii10105',189=>'afii10054',190=>'afii10102',191=>'afii10104', 192=>'afii10017',193=>'afii10018',194=>'afii10019',195=>'afii10020',196=>'afii10021',197=>'afii10022',198=>'afii10024',199=>'afii10025', 200=>'afii10026',201=>'afii10027',202=>'afii10028',203=>'afii10029',204=>'afii10030',205=>'afii10031',206=>'afii10032',207=>'afii10033', 208=>'afii10034',209=>'afii10035',210=>'afii10036',211=>'afii10037',212=>'afii10038',213=>'afii10039',214=>'afii10040',215=>'afii10041', 216=>'afii10042',217=>'afii10043',218=>'afii10044',219=>'afii10045',220=>'afii10046',221=>'afii10047',222=>'afii10048',223=>'afii10049', 224=>'afii10065',225=>'afii10066',226=>'afii10067',227=>'afii10068',228=>'afii10069',229=>'afii10070',230=>'afii10072',231=>'afii10073', 232=>'afii10074',233=>'afii10075',234=>'afii10076',235=>'afii10077',236=>'afii10078',237=>'afii10079',238=>'afii10080',239=>'afii10081', 240=>'afii10082',241=>'afii10083',242=>'afii10084',243=>'afii10085',244=>'afii10086',245=>'afii10087',246=>'afii10088',247=>'afii10089', 248=>'afii10090',249=>'afii10091',250=>'afii10092',251=>'afii10093',252=>'afii10094',253=>'afii10095',254=>'afii10096',255=>'afii10097'), // encoding map for: iso-8859-4 'iso-8859-4' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'Aogonek',162=>'kgreenlandic',163=>'Rcommaaccent',164=>'currency',165=>'Itilde',166=>'Lcommaaccent',167=>'section', 168=>'dieresis',169=>'Scaron',170=>'Emacron',171=>'Gcommaaccent',172=>'Tbar',173=>'hyphen',174=>'Zcaron',175=>'macron', 176=>'degree',177=>'aogonek',178=>'ogonek',179=>'rcommaaccent',180=>'acute',181=>'itilde',182=>'lcommaaccent',183=>'caron', 184=>'cedilla',185=>'scaron',186=>'emacron',187=>'gcommaaccent',188=>'tbar',189=>'Eng',190=>'zcaron',191=>'eng', 192=>'Amacron',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Iogonek', 200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Edotaccent',205=>'Iacute',206=>'Icircumflex',207=>'Imacron', 208=>'Dcroat',209=>'Ncommaaccent',210=>'Omacron',211=>'Kcommaaccent',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply', 216=>'Oslash',217=>'Uogonek',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Utilde',222=>'Umacron',223=>'germandbls', 224=>'amacron',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'iogonek', 232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'edotaccent',237=>'iacute',238=>'icircumflex',239=>'imacron', 240=>'dcroat',241=>'ncommaaccent',242=>'omacron',243=>'kcommaaccent',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide', 248=>'oslash',249=>'uogonek',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'utilde',254=>'umacron',255=>'dotaccent'), // encoding map for: cp1255 'cp1255' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'circumflex',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'tilde',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'afii57636',165=>'yen',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'multiply',171=>'guillemotleft',172=>'logicalnot',173=>'sfthyphen',174=>'registered',175=>'macron', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'middot', 184=>'cedilla',185=>'onesuperior',186=>'divide',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown', 192=>'afii57799',193=>'afii57801',194=>'afii57800',195=>'afii57802',196=>'afii57793',197=>'afii57794',198=>'afii57795',199=>'afii57798', 200=>'afii57797',201=>'afii57806',202=>'.notdef',203=>'afii57796',204=>'afii57807',205=>'afii57839',206=>'afii57645',207=>'afii57841', 208=>'afii57842',209=>'afii57804',210=>'afii57803',211=>'afii57658',212=>'afii57716',213=>'afii57717',214=>'afii57718',215=>'gereshhebrew', 216=>'gershayimhebrew',217=>'.notdef',218=>'.notdef',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'.notdef', 224=>'afii57664',225=>'afii57665',226=>'afii57666',227=>'afii57667',228=>'afii57668',229=>'afii57669',230=>'afii57670',231=>'afii57671', 232=>'afii57672',233=>'afii57673',234=>'afii57674',235=>'afii57675',236=>'afii57676',237=>'afii57677',238=>'afii57678',239=>'afii57679', 240=>'afii57680',241=>'afii57681',242=>'afii57682',243=>'afii57683',244=>'afii57684',245=>'afii57685',246=>'afii57686',247=>'afii57687', 248=>'afii57688',249=>'afii57689',250=>'afii57690',251=>'.notdef',252=>'.notdef',253=>'afii299',254=>'afii300',255=>'.notdef'), // encoding map for: iso-8859-11 'iso-8859-11' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'kokaithai',162=>'khokhaithai',163=>'khokhuatthai',164=>'khokhwaithai',165=>'khokhonthai',166=>'khorakhangthai',167=>'ngonguthai', 168=>'chochanthai',169=>'chochingthai',170=>'chochangthai',171=>'sosothai',172=>'chochoethai',173=>'yoyingthai',174=>'dochadathai',175=>'topatakthai', 176=>'thothanthai',177=>'thonangmonthothai',178=>'thophuthaothai',179=>'nonenthai',180=>'dodekthai',181=>'totaothai',182=>'thothungthai',183=>'thothahanthai', 184=>'thothongthai',185=>'nonuthai',186=>'bobaimaithai',187=>'poplathai',188=>'phophungthai',189=>'fofathai',190=>'phophanthai',191=>'fofanthai', 192=>'phosamphaothai',193=>'momathai',194=>'yoyakthai',195=>'roruathai',196=>'ruthai',197=>'lolingthai',198=>'luthai',199=>'wowaenthai', 200=>'sosalathai',201=>'sorusithai',202=>'sosuathai',203=>'hohipthai',204=>'lochulathai',205=>'oangthai',206=>'honokhukthai',207=>'paiyannoithai', 208=>'saraathai',209=>'maihanakatthai',210=>'saraaathai',211=>'saraamthai',212=>'saraithai',213=>'saraiithai',214=>'sarauethai',215=>'saraueethai', 216=>'sarauthai',217=>'sarauuthai',218=>'phinthuthai',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'bahtthai', 224=>'saraethai',225=>'saraaethai',226=>'saraothai',227=>'saraaimaimuanthai',228=>'saraaimaimalaithai',229=>'lakkhangyaothai',230=>'maiyamokthai',231=>'maitaikhuthai', 232=>'maiekthai',233=>'maithothai',234=>'maitrithai',235=>'maichattawathai',236=>'thanthakhatthai',237=>'nikhahitthai',238=>'yamakkanthai',239=>'fongmanthai', 240=>'zerothai',241=>'onethai',242=>'twothai',243=>'threethai',244=>'fourthai',245=>'fivethai',246=>'sixthai',247=>'seventhai', 248=>'eightthai',249=>'ninethai',250=>'angkhankhuthai',251=>'khomutthai',252=>'.notdef',253=>'.notdef',254=>'.notdef',255=>'.notdef'), // encoding map for: cp1257 'cp1257' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'.notdef',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'.notdef',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'dieresis',142=>'caron',143=>'cedilla', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'.notdef',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'macron',158=>'ogonek',159=>'.notdef', 160=>'space',161=>'.notdef',162=>'cent',163=>'sterling',164=>'currency',165=>'.notdef',166=>'brokenbar',167=>'section', 168=>'Oslash',169=>'copyright',170=>'Rcommaaccent',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'AE', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'oslash',185=>'onesuperior',186=>'rcommaaccent',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'ae', 192=>'Aogonek',193=>'Iogonek',194=>'Amacron',195=>'Cacute',196=>'Adieresis',197=>'Aring',198=>'Eogonek',199=>'Emacron', 200=>'Ccaron',201=>'Eacute',202=>'Zacute',203=>'Edotaccent',204=>'Gcommaaccent',205=>'Kcommaaccent',206=>'Imacron',207=>'Lcommaaccent', 208=>'Scaron',209=>'Nacute',210=>'Ncommaaccent',211=>'Oacute',212=>'Omacron',213=>'Otilde',214=>'Odieresis',215=>'multiply', 216=>'Uogonek',217=>'Lslash',218=>'Sacute',219=>'Umacron',220=>'Udieresis',221=>'Zdotaccent',222=>'Zcaron',223=>'germandbls', 224=>'aogonek',225=>'iogonek',226=>'amacron',227=>'cacute',228=>'adieresis',229=>'aring',230=>'eogonek',231=>'emacron', 232=>'ccaron',233=>'eacute',234=>'zacute',235=>'edotaccent',236=>'gcommaaccent',237=>'kcommaaccent',238=>'imacron',239=>'lcommaaccent', 240=>'scaron',241=>'nacute',242=>'ncommaaccent',243=>'oacute',244=>'omacron',245=>'otilde',246=>'odieresis',247=>'divide', 248=>'uogonek',249=>'lslash',250=>'sacute',251=>'umacron',252=>'udieresis',253=>'zdotaccent',254=>'zcaron',255=>'dotaccent'), // encoding map for: cp1258 'cp1258' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'circumflex',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'tilde',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'.notdef',159=>'Ydieresis', 160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown', 192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla', 200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'gravecomb',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis', 208=>'Dcroat',209=>'Ntilde',210=>'hookabovecomb',211=>'Oacute',212=>'Ocircumflex',213=>'Ohorn',214=>'Odieresis',215=>'multiply', 216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Uhorn',222=>'tildecomb',223=>'germandbls', 224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla', 232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'acutecomb',237=>'iacute',238=>'icircumflex',239=>'idieresis', 240=>'dcroat',241=>'ntilde',242=>'dotbelowcomb',243=>'oacute',244=>'ocircumflex',245=>'ohorn',246=>'odieresis',247=>'divide', 248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'uhorn',254=>'dong',255=>'ydieresis'), // encoding map for: cp1253 'cp1253' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'.notdef',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'.notdef',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'dieresistonos',162=>'Alphatonos',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'.notdef',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'afii00208', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'tonos',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'Epsilontonos',185=>'Etatonos',186=>'Iotatonos',187=>'guillemotright',188=>'Omicrontonos',189=>'onehalf',190=>'Upsilontonos',191=>'Omegatonos', 192=>'iotadieresistonos',193=>'Alpha',194=>'Beta',195=>'Gamma',196=>'Delta',197=>'Epsilon',198=>'Zeta',199=>'Eta', 200=>'Theta',201=>'Iota',202=>'Kappa',203=>'Lambda',204=>'Mu',205=>'Nu',206=>'Xi',207=>'Omicron', 208=>'Pi',209=>'Rho',210=>'.notdef',211=>'Sigma',212=>'Tau',213=>'Upsilon',214=>'Phi',215=>'Chi', 216=>'Psi',217=>'Omega',218=>'Iotadieresis',219=>'Upsilondieresis',220=>'alphatonos',221=>'epsilontonos',222=>'etatonos',223=>'iotatonos', 224=>'upsilondieresistonos',225=>'alpha',226=>'beta',227=>'gamma',228=>'delta',229=>'epsilon',230=>'zeta',231=>'eta', 232=>'theta',233=>'iota',234=>'kappa',235=>'lambda',236=>'mu',237=>'nu',238=>'xi',239=>'omicron', 240=>'pi',241=>'rho',242=>'sigma1',243=>'sigma',244=>'tau',245=>'upsilon',246=>'phi',247=>'chi', 248=>'psi',249=>'omega',250=>'iotadieresis',251=>'upsilondieresis',252=>'omicrontonos',253=>'upsilontonos',254=>'omegatonos',255=>'.notdef'), // encoding map for: cp874 'cp874' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'ellipsis',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'kokaithai',162=>'khokhaithai',163=>'khokhuatthai',164=>'khokhwaithai',165=>'khokhonthai',166=>'khorakhangthai',167=>'ngonguthai', 168=>'chochanthai',169=>'chochingthai',170=>'chochangthai',171=>'sosothai',172=>'chochoethai',173=>'yoyingthai',174=>'dochadathai',175=>'topatakthai', 176=>'thothanthai',177=>'thonangmonthothai',178=>'thophuthaothai',179=>'nonenthai',180=>'dodekthai',181=>'totaothai',182=>'thothungthai',183=>'thothahanthai', 184=>'thothongthai',185=>'nonuthai',186=>'bobaimaithai',187=>'poplathai',188=>'phophungthai',189=>'fofathai',190=>'phophanthai',191=>'fofanthai', 192=>'phosamphaothai',193=>'momathai',194=>'yoyakthai',195=>'roruathai',196=>'ruthai',197=>'lolingthai',198=>'luthai',199=>'wowaenthai', 200=>'sosalathai',201=>'sorusithai',202=>'sosuathai',203=>'hohipthai',204=>'lochulathai',205=>'oangthai',206=>'honokhukthai',207=>'paiyannoithai', 208=>'saraathai',209=>'maihanakatthai',210=>'saraaathai',211=>'saraamthai',212=>'saraithai',213=>'saraiithai',214=>'sarauethai',215=>'saraueethai', 216=>'sarauthai',217=>'sarauuthai',218=>'phinthuthai',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'bahtthai', 224=>'saraethai',225=>'saraaethai',226=>'saraothai',227=>'saraaimaimuanthai',228=>'saraaimaimalaithai',229=>'lakkhangyaothai',230=>'maiyamokthai',231=>'maitaikhuthai', 232=>'maiekthai',233=>'maithothai',234=>'maitrithai',235=>'maichattawathai',236=>'thanthakhatthai',237=>'nikhahitthai',238=>'yamakkanthai',239=>'fongmanthai', 240=>'zerothai',241=>'onethai',242=>'twothai',243=>'threethai',244=>'fourthai',245=>'fivethai',246=>'sixthai',247=>'seventhai', 248=>'eightthai',249=>'ninethai',250=>'angkhankhuthai',251=>'khomutthai',252=>'.notdef',253=>'.notdef',254=>'.notdef',255=>'.notdef'), // encoding map for: iso-8859-2 'iso-8859-2' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'Aogonek',162=>'breve',163=>'Lslash',164=>'currency',165=>'Lcaron',166=>'Sacute',167=>'section', 168=>'dieresis',169=>'Scaron',170=>'Scedilla',171=>'Tcaron',172=>'Zacute',173=>'hyphen',174=>'Zcaron',175=>'Zdotaccent', 176=>'degree',177=>'aogonek',178=>'ogonek',179=>'lslash',180=>'acute',181=>'lcaron',182=>'sacute',183=>'caron', 184=>'cedilla',185=>'scaron',186=>'scedilla',187=>'tcaron',188=>'zacute',189=>'hungarumlaut',190=>'zcaron',191=>'zdotaccent', 192=>'Racute',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Lacute',198=>'Cacute',199=>'Ccedilla', 200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Ecaron',205=>'Iacute',206=>'Icircumflex',207=>'Dcaron', 208=>'Dcroat',209=>'Nacute',210=>'Ncaron',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'multiply', 216=>'Rcaron',217=>'Uring',218=>'Uacute',219=>'Uhungarumlaut',220=>'Udieresis',221=>'Yacute',222=>'Tcommaaccent',223=>'germandbls', 224=>'racute',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'lacute',230=>'cacute',231=>'ccedilla', 232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'ecaron',237=>'iacute',238=>'icircumflex',239=>'dcaron', 240=>'dcroat',241=>'nacute',242=>'ncaron',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'divide', 248=>'rcaron',249=>'uring',250=>'uacute',251=>'uhungarumlaut',252=>'udieresis',253=>'yacute',254=>'tcommaaccent',255=>'dotaccent'), // encoding map for: cp1250 'cp1250' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'.notdef',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'.notdef',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'Sacute',141=>'Tcaron',142=>'Zcaron',143=>'Zacute', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'.notdef',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'sacute',157=>'tcaron',158=>'zcaron',159=>'zacute', 160=>'space',161=>'caron',162=>'breve',163=>'Lslash',164=>'currency',165=>'Aogonek',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'Scedilla',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'Zdotaccent', 176=>'degree',177=>'plusminus',178=>'ogonek',179=>'lslash',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'cedilla',185=>'aogonek',186=>'scedilla',187=>'guillemotright',188=>'Lcaron',189=>'hungarumlaut',190=>'lcaron',191=>'zdotaccent', 192=>'Racute',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Lacute',198=>'Cacute',199=>'Ccedilla', 200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Ecaron',205=>'Iacute',206=>'Icircumflex',207=>'Dcaron', 208=>'Dcroat',209=>'Nacute',210=>'Ncaron',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'multiply', 216=>'Rcaron',217=>'Uring',218=>'Uacute',219=>'Uhungarumlaut',220=>'Udieresis',221=>'Yacute',222=>'Tcommaaccent',223=>'germandbls', 224=>'racute',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'lacute',230=>'cacute',231=>'ccedilla', 232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'ecaron',237=>'iacute',238=>'icircumflex',239=>'dcaron', 240=>'dcroat',241=>'nacute',242=>'ncaron',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'divide', 248=>'rcaron',249=>'uring',250=>'uacute',251=>'uhungarumlaut',252=>'udieresis',253=>'yacute',254=>'tcommaaccent',255=>'dotaccent'), // encoding map for: iso-8859-7 'iso-8859-7' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'quoteleft',162=>'quoteright',163=>'sterling',164=>'.notdef',165=>'.notdef',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'.notdef',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'.notdef',175=>'afii00208', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'tonos',181=>'dieresistonos',182=>'Alphatonos',183=>'periodcentered', 184=>'Epsilontonos',185=>'Etatonos',186=>'Iotatonos',187=>'guillemotright',188=>'Omicrontonos',189=>'onehalf',190=>'Upsilontonos',191=>'Omegatonos', 192=>'iotadieresistonos',193=>'Alpha',194=>'Beta',195=>'Gamma',196=>'Delta',197=>'Epsilon',198=>'Zeta',199=>'Eta', 200=>'Theta',201=>'Iota',202=>'Kappa',203=>'Lambda',204=>'Mu',205=>'Nu',206=>'Xi',207=>'Omicron', 208=>'Pi',209=>'Rho',210=>'.notdef',211=>'Sigma',212=>'Tau',213=>'Upsilon',214=>'Phi',215=>'Chi', 216=>'Psi',217=>'Omega',218=>'Iotadieresis',219=>'Upsilondieresis',220=>'alphatonos',221=>'epsilontonos',222=>'etatonos',223=>'iotatonos', 224=>'upsilondieresistonos',225=>'alpha',226=>'beta',227=>'gamma',228=>'delta',229=>'epsilon',230=>'zeta',231=>'eta', 232=>'theta',233=>'iota',234=>'kappa',235=>'lambda',236=>'mu',237=>'nu',238=>'xi',239=>'omicron', 240=>'pi',241=>'rho',242=>'sigma1',243=>'sigma',244=>'tau',245=>'upsilon',246=>'phi',247=>'chi', 248=>'psi',249=>'omega',250=>'iotadieresis',251=>'upsilondieresis',252=>'omicrontonos',253=>'upsilontonos',254=>'omegatonos',255=>'.notdef'), // encoding map for: iso-8859-9 'iso-8859-9' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown', 192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla', 200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis', 208=>'Gbreve',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply', 216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Idotaccent',222=>'Scedilla',223=>'germandbls', 224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla', 232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis', 240=>'gbreve',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide', 248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'dotlessi',254=>'scedilla',255=>'ydieresis'), // encoding map for: cp1252 'cp1252' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'circumflex',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'Zcaron',143=>'.notdef', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'tilde',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'zcaron',159=>'Ydieresis', 160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown', 192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla', 200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis', 208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply', 216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls', 224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla', 232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis', 240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide', 248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'), // encoding map for: cp1254 'cp1254' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'circumflex',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'tilde',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'.notdef',159=>'Ydieresis', 160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown', 192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla', 200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis', 208=>'Gbreve',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply', 216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Idotaccent',222=>'Scedilla',223=>'germandbls', 224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla', 232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis', 240=>'gbreve',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide', 248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'dotlessi',254=>'scedilla',255=>'ydieresis'), // encoding map for: cp1254 'cp1254' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl', 136=>'circumflex',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash', 152=>'tilde',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'.notdef',159=>'Ydieresis', 160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown', 192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla', 200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis', 208=>'Gbreve',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply', 216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Idotaccent',222=>'Scedilla',223=>'germandbls', 224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla', 232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis', 240=>'gbreve',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide', 248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'dotlessi',254=>'scedilla',255=>'ydieresis'), // encoding map for: iso-8859-1 'iso-8859-1' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section', 168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown', 192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla', 200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis', 208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply', 216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls', 224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla', 232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis', 240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide', 248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'), // encoding map for: iso-8859-15 'iso-8859-15' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'Euro',165=>'yen',166=>'Scaron',167=>'section', 168=>'scaron',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron', 176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'Zcaron',181=>'mu',182=>'paragraph',183=>'periodcentered', 184=>'zcaron',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'OE',189=>'oe',190=>'Ydieresis',191=>'questiondown', 192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla', 200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis', 208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply', 216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls', 224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla', 232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis', 240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide', 248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'), // encoding map for: iso-8859-5 'iso-8859-5' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'afii10023',162=>'afii10051',163=>'afii10052',164=>'afii10053',165=>'afii10054',166=>'afii10055',167=>'afii10056', 168=>'afii10057',169=>'afii10058',170=>'afii10059',171=>'afii10060',172=>'afii10061',173=>'hyphen',174=>'afii10062',175=>'afii10145', 176=>'afii10017',177=>'afii10018',178=>'afii10019',179=>'afii10020',180=>'afii10021',181=>'afii10022',182=>'afii10024',183=>'afii10025', 184=>'afii10026',185=>'afii10027',186=>'afii10028',187=>'afii10029',188=>'afii10030',189=>'afii10031',190=>'afii10032',191=>'afii10033', 192=>'afii10034',193=>'afii10035',194=>'afii10036',195=>'afii10037',196=>'afii10038',197=>'afii10039',198=>'afii10040',199=>'afii10041', 200=>'afii10042',201=>'afii10043',202=>'afii10044',203=>'afii10045',204=>'afii10046',205=>'afii10047',206=>'afii10048',207=>'afii10049', 208=>'afii10065',209=>'afii10066',210=>'afii10067',211=>'afii10068',212=>'afii10069',213=>'afii10070',214=>'afii10072',215=>'afii10073', 216=>'afii10074',217=>'afii10075',218=>'afii10076',219=>'afii10077',220=>'afii10078',221=>'afii10079',222=>'afii10080',223=>'afii10081', 224=>'afii10082',225=>'afii10083',226=>'afii10084',227=>'afii10085',228=>'afii10086',229=>'afii10087',230=>'afii10088',231=>'afii10089', 232=>'afii10090',233=>'afii10091',234=>'afii10092',235=>'afii10093',236=>'afii10094',237=>'afii10095',238=>'afii10096',239=>'afii10097', 240=>'afii61352',241=>'afii10071',242=>'afii10099',243=>'afii10100',244=>'afii10101',245=>'afii10102',246=>'afii10103',247=>'afii10104', 248=>'afii10105',249=>'afii10106',250=>'afii10107',251=>'afii10108',252=>'afii10109',253=>'section',254=>'afii10110',255=>'afii10193'), // encoding map for: iso-8859-5 'iso-8859-5' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'afii10023',162=>'afii10051',163=>'afii10052',164=>'afii10053',165=>'afii10054',166=>'afii10055',167=>'afii10056', 168=>'afii10057',169=>'afii10058',170=>'afii10059',171=>'afii10060',172=>'afii10061',173=>'hyphen',174=>'afii10062',175=>'afii10145', 176=>'afii10017',177=>'afii10018',178=>'afii10019',179=>'afii10020',180=>'afii10021',181=>'afii10022',182=>'afii10024',183=>'afii10025', 184=>'afii10026',185=>'afii10027',186=>'afii10028',187=>'afii10029',188=>'afii10030',189=>'afii10031',190=>'afii10032',191=>'afii10033', 192=>'afii10034',193=>'afii10035',194=>'afii10036',195=>'afii10037',196=>'afii10038',197=>'afii10039',198=>'afii10040',199=>'afii10041', 200=>'afii10042',201=>'afii10043',202=>'afii10044',203=>'afii10045',204=>'afii10046',205=>'afii10047',206=>'afii10048',207=>'afii10049', 208=>'afii10065',209=>'afii10066',210=>'afii10067',211=>'afii10068',212=>'afii10069',213=>'afii10070',214=>'afii10072',215=>'afii10073', 216=>'afii10074',217=>'afii10075',218=>'afii10076',219=>'afii10077',220=>'afii10078',221=>'afii10079',222=>'afii10080',223=>'afii10081', 224=>'afii10082',225=>'afii10083',226=>'afii10084',227=>'afii10085',228=>'afii10086',229=>'afii10087',230=>'afii10088',231=>'afii10089', 232=>'afii10090',233=>'afii10091',234=>'afii10092',235=>'afii10093',236=>'afii10094',237=>'afii10095',238=>'afii10096',239=>'afii10097', 240=>'afii61352',241=>'afii10071',242=>'afii10099',243=>'afii10100',244=>'afii10101',245=>'afii10102',246=>'afii10103',247=>'afii10104', 248=>'afii10105',249=>'afii10106',250=>'afii10107',251=>'afii10108',252=>'afii10109',253=>'section',254=>'afii10110',255=>'afii10193'), // encoding map for: koi8-r 'koi8-r' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'SF100000',129=>'SF110000',130=>'SF010000',131=>'SF030000',132=>'SF020000',133=>'SF040000',134=>'SF080000',135=>'SF090000', 136=>'SF060000',137=>'SF070000',138=>'SF050000',139=>'upblock',140=>'dnblock',141=>'block',142=>'lfblock',143=>'rtblock', 144=>'ltshade',145=>'shade',146=>'dkshade',147=>'integraltp',148=>'filledbox',149=>'periodcentered',150=>'radical',151=>'approxequal', 152=>'lessequal',153=>'greaterequal',154=>'space',155=>'integralbt',156=>'degree',157=>'twosuperior',158=>'periodcentered',159=>'divide', 160=>'SF430000',161=>'SF240000',162=>'SF510000',163=>'afii10071',164=>'SF520000',165=>'SF390000',166=>'SF220000',167=>'SF210000', 168=>'SF250000',169=>'SF500000',170=>'SF490000',171=>'SF380000',172=>'SF280000',173=>'SF270000',174=>'SF260000',175=>'SF360000', 176=>'SF370000',177=>'SF420000',178=>'SF190000',179=>'afii10023',180=>'SF200000',181=>'SF230000',182=>'SF470000',183=>'SF480000', 184=>'SF410000',185=>'SF450000',186=>'SF460000',187=>'SF400000',188=>'SF540000',189=>'SF530000',190=>'SF440000',191=>'copyright', 192=>'afii10096',193=>'afii10065',194=>'afii10066',195=>'afii10088',196=>'afii10069',197=>'afii10070',198=>'afii10086',199=>'afii10068', 200=>'afii10087',201=>'afii10074',202=>'afii10075',203=>'afii10076',204=>'afii10077',205=>'afii10078',206=>'afii10079',207=>'afii10080', 208=>'afii10081',209=>'afii10097',210=>'afii10082',211=>'afii10083',212=>'afii10084',213=>'afii10085',214=>'afii10072',215=>'afii10067', 216=>'afii10094',217=>'afii10093',218=>'afii10073',219=>'afii10090',220=>'afii10095',221=>'afii10091',222=>'afii10089',223=>'afii10092', 224=>'afii10048',225=>'afii10017',226=>'afii10018',227=>'afii10040',228=>'afii10021',229=>'afii10022',230=>'afii10038',231=>'afii10020', 232=>'afii10039',233=>'afii10026',234=>'afii10027',235=>'afii10028',236=>'afii10029',237=>'afii10030',238=>'afii10031',239=>'afii10032', 240=>'afii10033',241=>'afii10049',242=>'afii10034',243=>'afii10035',244=>'afii10036',245=>'afii10037',246=>'afii10024',247=>'afii10019', 248=>'afii10046',249=>'afii10045',250=>'afii10025',251=>'afii10042',252=>'afii10047',253=>'afii10043',254=>'afii10041',255=>'afii10044'), // encoding map for: koi8-r 'koi8-r' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'SF100000',129=>'SF110000',130=>'SF010000',131=>'SF030000',132=>'SF020000',133=>'SF040000',134=>'SF080000',135=>'SF090000', 136=>'SF060000',137=>'SF070000',138=>'SF050000',139=>'upblock',140=>'dnblock',141=>'block',142=>'lfblock',143=>'rtblock', 144=>'ltshade',145=>'shade',146=>'dkshade',147=>'integraltp',148=>'filledbox',149=>'periodcentered',150=>'radical',151=>'approxequal', 152=>'lessequal',153=>'greaterequal',154=>'space',155=>'integralbt',156=>'degree',157=>'twosuperior',158=>'periodcentered',159=>'divide', 160=>'SF430000',161=>'SF240000',162=>'SF510000',163=>'afii10071',164=>'SF520000',165=>'SF390000',166=>'SF220000',167=>'SF210000', 168=>'SF250000',169=>'SF500000',170=>'SF490000',171=>'SF380000',172=>'SF280000',173=>'SF270000',174=>'SF260000',175=>'SF360000', 176=>'SF370000',177=>'SF420000',178=>'SF190000',179=>'afii10023',180=>'SF200000',181=>'SF230000',182=>'SF470000',183=>'SF480000', 184=>'SF410000',185=>'SF450000',186=>'SF460000',187=>'SF400000',188=>'SF540000',189=>'SF530000',190=>'SF440000',191=>'copyright', 192=>'afii10096',193=>'afii10065',194=>'afii10066',195=>'afii10088',196=>'afii10069',197=>'afii10070',198=>'afii10086',199=>'afii10068', 200=>'afii10087',201=>'afii10074',202=>'afii10075',203=>'afii10076',204=>'afii10077',205=>'afii10078',206=>'afii10079',207=>'afii10080', 208=>'afii10081',209=>'afii10097',210=>'afii10082',211=>'afii10083',212=>'afii10084',213=>'afii10085',214=>'afii10072',215=>'afii10067', 216=>'afii10094',217=>'afii10093',218=>'afii10073',219=>'afii10090',220=>'afii10095',221=>'afii10091',222=>'afii10089',223=>'afii10092', 224=>'afii10048',225=>'afii10017',226=>'afii10018',227=>'afii10040',228=>'afii10021',229=>'afii10022',230=>'afii10038',231=>'afii10020', 232=>'afii10039',233=>'afii10026',234=>'afii10027',235=>'afii10028',236=>'afii10029',237=>'afii10030',238=>'afii10031',239=>'afii10032', 240=>'afii10033',241=>'afii10049',242=>'afii10034',243=>'afii10035',244=>'afii10036',245=>'afii10037',246=>'afii10024',247=>'afii10019', 248=>'afii10046',249=>'afii10045',250=>'afii10025',251=>'afii10042',252=>'afii10047',253=>'afii10043',254=>'afii10041',255=>'afii10044'), // encoding map for: iso-8859-16 'iso-8859-16' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'space',161=>'Aogonek',162=>'aogonek',163=>'Lslash',164=>'Euro',165=>'quotedblbase',166=>'Scaron',167=>'section', 168=>'scaron',169=>'copyright',170=>'Scommaaccent',171=>'guillemotleft',172=>'Zacute',173=>'hyphen',174=>'zacute',175=>'Zdotaccent', 176=>'degree',177=>'plusminus',178=>'Ccaron',179=>'lslash',180=>'Zcaron',181=>'quotedblright',182=>'paragraph',183=>'periodcentered', 184=>'zcaron',185=>'ccaron',186=>'scommaaccent',187=>'guillemotright',188=>'OE',189=>'oe',190=>'Ydieresis',191=>'zdotaccent', 192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Cacute',198=>'AE',199=>'Ccedilla', 200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis', 208=>'Dcroat',209=>'Nacute',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'Sacute', 216=>'Uhungarumlaut',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Eogonek',222=>'Tcommaaccent',223=>'germandbls', 224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'cacute',230=>'ae',231=>'ccedilla', 232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis', 240=>'dcroat',241=>'nacute',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'sacute', 248=>'uhungarumlaut',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'eogonek',254=>'tcommaaccent',255=>'ydieresis'), // encoding map for: koi8-u 'koi8-u' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle', 40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G', 72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O', 80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W', 88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore', 96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g', 104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o', 112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w', 120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef', 128=>'SF100000',129=>'SF110000',130=>'SF010000',131=>'SF030000',132=>'SF020000',133=>'SF040000',134=>'SF080000',135=>'SF090000', 136=>'SF060000',137=>'SF070000',138=>'SF050000',139=>'upblock',140=>'dnblock',141=>'block',142=>'lfblock',143=>'rtblock', 144=>'ltshade',145=>'shade',146=>'dkshade',147=>'integraltp',148=>'filledbox',149=>'bullet',150=>'radical',151=>'approxequal', 152=>'lessequal',153=>'greaterequal',154=>'space',155=>'integralbt',156=>'degree',157=>'twosuperior',158=>'periodcentered',159=>'divide', 160=>'SF430000',161=>'SF240000',162=>'SF510000',163=>'afii10071',164=>'afii10101',165=>'SF390000',166=>'afii10103',167=>'afii10104', 168=>'SF250000',169=>'SF500000',170=>'SF490000',171=>'SF380000',172=>'SF280000',173=>'afii10098',174=>'SF260000',175=>'SF360000', 176=>'SF370000',177=>'SF420000',178=>'SF190000',179=>'afii10023',180=>'afii10053',181=>'SF230000',182=>'afii10055',183=>'afii10056', 184=>'SF410000',185=>'SF450000',186=>'SF460000',187=>'SF400000',188=>'SF540000',189=>'afii10050',190=>'SF440000',191=>'copyright', 192=>'afii10096',193=>'afii10065',194=>'afii10066',195=>'afii10088',196=>'afii10069',197=>'afii10070',198=>'afii10086',199=>'afii10068', 200=>'afii10087',201=>'afii10074',202=>'afii10075',203=>'afii10076',204=>'afii10077',205=>'afii10078',206=>'afii10079',207=>'afii10080', 208=>'afii10081',209=>'afii10097',210=>'afii10082',211=>'afii10083',212=>'afii10084',213=>'afii10085',214=>'afii10072',215=>'afii10067', 216=>'afii10094',217=>'afii10093',218=>'afii10073',219=>'afii10090',220=>'afii10095',221=>'afii10091',222=>'afii10089',223=>'afii10092', 224=>'afii10048',225=>'afii10017',226=>'afii10018',227=>'afii10040',228=>'afii10021',229=>'afii10022',230=>'afii10038',231=>'afii10020', 232=>'afii10039',233=>'afii10026',234=>'afii10027',235=>'afii10028',236=>'afii10029',237=>'afii10030',238=>'afii10031',239=>'afii10032', 240=>'afii10033',241=>'afii10049',242=>'afii10034',243=>'afii10035',244=>'afii10036',245=>'afii10037',246=>'afii10024',247=>'afii10019', 248=>'afii10046',249=>'afii10045',250=>'afii10025',251=>'afii10042',252=>'afii10047',253=>'afii10043',254=>'afii10041',255=>'afii10044'), // encoding map for: symbol 'symbol' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef', 8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef', 16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef', 24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef', 32=>'space',33=>'exclam',34=>'universal',35=>'numbersign',36=>'existential',37=>'percent',38=>'ampersand',39=>'suchthat', 40=>'parenleft',41=>'parenright',42=>'asteriskmath',43=>'plus',44=>'comma',45=>'minus',46=>'period',47=>'slash', 48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven', 56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question', 64=>'congruent',65=>'Alpha',66=>'Beta',67=>'Chi',68=>'Delta',69=>'Epsilon',70=>'Phi',71=>'Gamma', 72=>'Eta',73=>'Iota',74=>'theta1',75=>'Kappa',76=>'Lambda',77=>'Mu',78=>'Nu',79=>'Omicron', 80=>'Pi',81=>'Theta',82=>'Rho',83=>'Sigma',84=>'Tau',85=>'Upsilon',86=>'sigma1',87=>'Omega', 88=>'Xi',89=>'Psi',90=>'Zeta',91=>'bracketleft',92=>'therefore',93=>'bracketright',94=>'perpendicular',95=>'underscore', 96=>'radicalex',97=>'alpha',98=>'beta',99=>'chi',100=>'delta',101=>'epsilon',102=>'phi',103=>'gamma', 104=>'eta',105=>'iota',106=>'phi1',107=>'kappa',108=>'lambda',109=>'mu',110=>'nu',111=>'omicron', 112=>'pi',113=>'theta',114=>'rho',115=>'sigma',116=>'tau',117=>'upsilon',118=>'omega1',119=>'omega', 120=>'xi',121=>'psi',122=>'zeta',123=>'braceleft',124=>'bar',125=>'braceright',126=>'similar',127=>'.notdef', 128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef', 136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef', 144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef', 152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef', 160=>'Euro',161=>'Upsilon1',162=>'minute',163=>'lessequal',164=>'fraction',165=>'infinity',166=>'florin',167=>'club', 168=>'diamond',169=>'heart',170=>'spade',171=>'arrowboth',172=>'arrowleft',173=>'arrowup',174=>'arrowright',175=>'arrowdown', 176=>'degree',177=>'plusminus',178=>'second',179=>'greaterequal',180=>'multiply',181=>'proportional',182=>'partialdiff',183=>'bullet', 184=>'divide',185=>'notequal',186=>'equivalence',187=>'approxequal',188=>'ellipsis',189=>'arrowvertex',190=>'arrowhorizex',191=>'carriagereturn', 192=>'aleph',193=>'Ifraktur',194=>'Rfraktur',195=>'weierstrass',196=>'circlemultiply',197=>'circleplus',198=>'emptyset',199=>'intersection', 200=>'union',201=>'propersuperset',202=>'reflexsuperset',203=>'notsubset',204=>'propersubset',205=>'reflexsubset',206=>'element',207=>'notelement', 208=>'angle',209=>'gradient',210=>'registerserif',211=>'copyrightserif',212=>'trademarkserif',213=>'product',214=>'radical',215=>'dotmath', 216=>'logicalnot',217=>'logicaland',218=>'logicalor',219=>'arrowdblboth',220=>'arrowdblleft',221=>'arrowdblup',222=>'arrowdblright',223=>'arrowdbldown', 224=>'lozenge',225=>'angleleft',226=>'registersans',227=>'copyrightsans',228=>'trademarksans',229=>'summation',230=>'parenlefttp',231=>'parenleftex', 232=>'parenleftbt',233=>'bracketlefttp',234=>'bracketleftex',235=>'bracketleftbt',236=>'bracelefttp',237=>'braceleftmid',238=>'braceleftbt',239=>'braceex', 240=>'.notdef',241=>'angleright',242=>'integral',243=>'integraltp',244=>'integralex',245=>'integralbt',246=>'parenrighttp',247=>'parenrightex', 248=>'parenrightbt',249=>'bracketrighttp',250=>'bracketrightex',251=>'bracketrightbt',252=>'bracerighttp',253=>'bracerightmid',254=>'bracerightbt',255=>'.notdef', 1226=>'registered',1227=>'copyright',1228=>'trademark') ); // end of encoding maps } // --- END OF CLASS --- //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/encodings_maps.php
PHP
gpl2
89,468
<?php //============================================================+ // File name : qrcode.php // Version : 1.0.009 // Begin : 2010-03-22 // Last Update : 2010-12-16 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // ------------------------------------------------------------------- // Copyright (C) 2010-2010 Nicola Asuni - Tecnick.com S.r.l. // // This file is part of TCPDF software library. // // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // TCPDF 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. // // See LICENSE.TXT file for more information. // ------------------------------------------------------------------- // // DESCRIPTION : // // Class to create QR-code arrays for TCPDF class. // QR Code symbol is a 2D barcode that can be scanned by // handy terminals such as a mobile phone with CCD. // The capacity of QR Code is up to 7000 digits or 4000 // characters, and has high robustness. // This class supports QR Code model 2, described in // JIS (Japanese Industrial Standards) X0510:2004 // or ISO/IEC 18004. // Currently the following features are not supported: // ECI and FNC1 mode, Micro QR Code, QR Code model 1, // Structured mode. // // This class is derived from the following projects: // --------------------------------------------------------- // "PHP QR Code encoder" // License: GNU-LGPLv3 // Copyright (C) 2010 by Dominik Dzienia <deltalab at poczta dot fm> // http://phpqrcode.sourceforge.net/ // https://sourceforge.net/projects/phpqrcode/ // // The "PHP QR Code encoder" is based on // "C libqrencode library" (ver. 3.1.1) // License: GNU-LGPL 2.1 // Copyright (C) 2006-2010 by Kentaro Fukuchi // http://megaui.net/fukuchi/works/qrencode/index.en.html // // Reed-Solomon code encoder is written by Phil Karn, KA9Q. // Copyright (C) 2002-2006 Phil Karn, KA9Q // // QR Code is registered trademark of DENSO WAVE INCORPORATED // http://www.denso-wave.com/qrcode/index-e.html // --------------------------------------------------------- //============================================================+ /** * @file * Class to create QR-code arrays for TCPDF class. * QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD. * The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness. * This class supports QR Code model 2, described in JIS (Japanese Industrial Standards) X0510:2004 or ISO/IEC 18004. * Currently the following features are not supported: ECI and FNC1 mode, Micro QR Code, QR Code model 1, Structured mode. * * This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html). * Please read comments on this class source file for full copyright and license information. * * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.009 */ // definitions if (!defined('QRCODEDEFS')) { /** * Indicate that definitions for this class are set */ define('QRCODEDEFS', true); // ----------------------------------------------------- // Encoding modes (characters which can be encoded in QRcode) /** * Encoding mode */ define('QR_MODE_NL', -1); /** * Encoding mode numeric (0-9). 3 characters are encoded to 10bit length. In theory, 7089 characters or less can be stored in a QRcode. */ define('QR_MODE_NM', 0); /** * Encoding mode alphanumeric (0-9A-Z $%*+-./:) 45characters. 2 characters are encoded to 11bit length. In theory, 4296 characters or less can be stored in a QRcode. */ define('QR_MODE_AN', 1); /** * Encoding mode 8bit byte data. In theory, 2953 characters or less can be stored in a QRcode. */ define('QR_MODE_8B', 2); /** * Encoding mode KANJI. A KANJI character (multibyte character) is encoded to 13bit length. In theory, 1817 characters or less can be stored in a QRcode. */ define('QR_MODE_KJ', 3); /** * Encoding mode STRUCTURED (currently unsupported) */ define('QR_MODE_ST', 4); // ----------------------------------------------------- // Levels of error correction. // QRcode has a function of an error correcting for miss reading that white is black. // Error correcting is defined in 4 level as below. /** * Error correction level L : About 7% or less errors can be corrected. */ define('QR_ECLEVEL_L', 0); /** * Error correction level M : About 15% or less errors can be corrected. */ define('QR_ECLEVEL_M', 1); /** * Error correction level Q : About 25% or less errors can be corrected. */ define('QR_ECLEVEL_Q', 2); /** * Error correction level H : About 30% or less errors can be corrected. */ define('QR_ECLEVEL_H', 3); // ----------------------------------------------------- // Version. Size of QRcode is defined as version. // Version is from 1 to 40. // Version 1 is 21*21 matrix. And 4 modules increases whenever 1 version increases. // So version 40 is 177*177 matrix. /** * Maximum QR Code version. */ define('QRSPEC_VERSION_MAX', 40); /** * Maximum matrix size for maximum version (version 40 is 177*177 matrix). */ define('QRSPEC_WIDTH_MAX', 177); // ----------------------------------------------------- /** * Matrix index to get width from $capacity array. */ define('QRCAP_WIDTH', 0); /** * Matrix index to get number of words from $capacity array. */ define('QRCAP_WORDS', 1); /** * Matrix index to get remainder from $capacity array. */ define('QRCAP_REMINDER', 2); /** * Matrix index to get error correction level from $capacity array. */ define('QRCAP_EC', 3); // ----------------------------------------------------- // Structure (currently usupported) /** * Number of header bits for structured mode */ define('STRUCTURE_HEADER_BITS', 20); /** * Max number of symbols for structured mode */ define('MAX_STRUCTURED_SYMBOLS', 16); // ----------------------------------------------------- // Masks /** * Down point base value for case 1 mask pattern (concatenation of same color in a line or a column) */ define('N1', 3); /** * Down point base value for case 2 mask pattern (module block of same color) */ define('N2', 3); /** * Down point base value for case 3 mask pattern (1:1:3:1:1(dark:bright:dark:bright:dark)pattern in a line or a column) */ define('N3', 40); /** * Down point base value for case 4 mask pattern (ration of dark modules in whole) */ define('N4', 10); // ----------------------------------------------------- // Optimization settings /** * if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality code */ define('QR_FIND_BEST_MASK', true); /** * if false, checks all masks available, otherwise value tells count of masks need to be checked, mask id are got randomly */ define('QR_FIND_FROM_RANDOM', 2); /** * when QR_FIND_BEST_MASK === false */ define('QR_DEFAULT_MASK', 2); // ----------------------------------------------------- } // end of definitions // #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# // for compatibility with PHP4 if (!function_exists('str_split')) { /** * Convert a string to an array (needed for PHP4 compatibility) * @param $string (string) The input string. * @param $split_length (int) Maximum length of the chunk. * @return If the optional split_length parameter is specified, the returned array will be broken down into chunks with each being split_length in length, otherwise each chunk will be one character in length. FALSE is returned if split_length is less than 1. If the split_length length exceeds the length of string , the entire string is returned as the first (and only) array element. */ function str_split($string, $split_length=1) { if ((strlen($string) > $split_length) OR (!$split_length)) { do { $c = strlen($string); $parts[] = substr($string, 0, $split_length); $string = substr($string, $split_length); } while ($string !== false); } else { $parts = array($string); } return $parts; } } // ##################################################### /** * @class QRcode * Class to create QR-code arrays for TCPDF class. * QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD. * The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness. * This class supports QR Code model 2, described in JIS (Japanese Industrial Standards) X0510:2004 or ISO/IEC 18004. * Currently the following features are not supported: ECI and FNC1 mode, Micro QR Code, QR Code model 1, Structured mode. * * This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html). * Please read comments on this class source file for full copyright and license information. * * @package com.tecnick.tcpdf * @author Nicola Asuni * @version 1.0.009 */ class QRcode { /** * Barcode array to be returned which is readable by TCPDF. * @protected */ protected $barcode_array = array(); /** * QR code version. Size of QRcode is defined as version. Version is from 1 to 40. Version 1 is 21*21 matrix. And 4 modules increases whenever 1 version increases. So version 40 is 177*177 matrix. * @protected */ protected $version = 0; /** * Levels of error correction. See definitions for possible values. * @protected */ protected $level = QR_ECLEVEL_L; /** * Encoding mode. * @protected */ protected $hint = QR_MODE_8B; /** * Boolean flag, if true the input string will be converted to uppercase. * @protected */ protected $casesensitive = true; /** * Structured QR code (not supported yet). * @protected */ protected $structured = 0; /** * Mask data. * @protected */ protected $data; // FrameFiller /** * Width. * @protected */ protected $width; /** * Frame. * @protected */ protected $frame; /** * X position of bit. * @protected */ protected $x; /** * Y position of bit. * @protected */ protected $y; /** * Direction. * @protected */ protected $dir; /** * Single bit value. * @protected */ protected $bit; // ---- QRrawcode ---- /** * Data code. * @protected */ protected $datacode = array(); /** * Error correction code. * @protected */ protected $ecccode = array(); /** * Blocks. * @protected */ protected $blocks; /** * Reed-Solomon blocks. * @protected */ protected $rsblocks = array(); //of RSblock /** * Counter. * @protected */ protected $count; /** * Data length. * @protected */ protected $dataLength; /** * Error correction length. * @protected */ protected $eccLength; /** * Value b1. * @protected */ protected $b1; // ---- QRmask ---- /** * Run length. * @protected */ protected $runLength = array(); // ---- QRsplit ---- /** * Input data string. * @protected */ protected $dataStr = ''; /** * Input items. * @protected */ protected $items; // Reed-Solomon items /** * Reed-Solomon items. * @protected */ protected $rsitems = array(); /** * Array of frames. * @protected */ protected $frames = array(); /** * Alphabet-numeric convesion table. * @protected */ protected $anTable = array( -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // 36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43, // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1, // -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, // 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, // -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 // ); /** * Array Table of the capacity of symbols. * See Table 1 (pp.13) and Table 12-16 (pp.30-36), JIS X0510:2004. * @protected */ protected $capacity = array( array( 0, 0, 0, array( 0, 0, 0, 0)), // array( 21, 26, 0, array( 7, 10, 13, 17)), // 1 array( 25, 44, 7, array( 10, 16, 22, 28)), // array( 29, 70, 7, array( 15, 26, 36, 44)), // array( 33, 100, 7, array( 20, 36, 52, 64)), // array( 37, 134, 7, array( 26, 48, 72, 88)), // 5 array( 41, 172, 7, array( 36, 64, 96, 112)), // array( 45, 196, 0, array( 40, 72, 108, 130)), // array( 49, 242, 0, array( 48, 88, 132, 156)), // array( 53, 292, 0, array( 60, 110, 160, 192)), // array( 57, 346, 0, array( 72, 130, 192, 224)), // 10 array( 61, 404, 0, array( 80, 150, 224, 264)), // array( 65, 466, 0, array( 96, 176, 260, 308)), // array( 69, 532, 0, array( 104, 198, 288, 352)), // array( 73, 581, 3, array( 120, 216, 320, 384)), // array( 77, 655, 3, array( 132, 240, 360, 432)), // 15 array( 81, 733, 3, array( 144, 280, 408, 480)), // array( 85, 815, 3, array( 168, 308, 448, 532)), // array( 89, 901, 3, array( 180, 338, 504, 588)), // array( 93, 991, 3, array( 196, 364, 546, 650)), // array( 97, 1085, 3, array( 224, 416, 600, 700)), // 20 array(101, 1156, 4, array( 224, 442, 644, 750)), // array(105, 1258, 4, array( 252, 476, 690, 816)), // array(109, 1364, 4, array( 270, 504, 750, 900)), // array(113, 1474, 4, array( 300, 560, 810, 960)), // array(117, 1588, 4, array( 312, 588, 870, 1050)), // 25 array(121, 1706, 4, array( 336, 644, 952, 1110)), // array(125, 1828, 4, array( 360, 700, 1020, 1200)), // array(129, 1921, 3, array( 390, 728, 1050, 1260)), // array(133, 2051, 3, array( 420, 784, 1140, 1350)), // array(137, 2185, 3, array( 450, 812, 1200, 1440)), // 30 array(141, 2323, 3, array( 480, 868, 1290, 1530)), // array(145, 2465, 3, array( 510, 924, 1350, 1620)), // array(149, 2611, 3, array( 540, 980, 1440, 1710)), // array(153, 2761, 3, array( 570, 1036, 1530, 1800)), // array(157, 2876, 0, array( 570, 1064, 1590, 1890)), // 35 array(161, 3034, 0, array( 600, 1120, 1680, 1980)), // array(165, 3196, 0, array( 630, 1204, 1770, 2100)), // array(169, 3362, 0, array( 660, 1260, 1860, 2220)), // array(173, 3532, 0, array( 720, 1316, 1950, 2310)), // array(177, 3706, 0, array( 750, 1372, 2040, 2430)) // 40 ); /** * Array Length indicator. * @protected */ protected $lengthTableBits = array( array(10, 12, 14), array( 9, 11, 13), array( 8, 16, 16), array( 8, 10, 12) ); /** * Array Table of the error correction code (Reed-Solomon block). * See Table 12-16 (pp.30-36), JIS X0510:2004. * @protected */ protected $eccTable = array( array(array( 0, 0), array( 0, 0), array( 0, 0), array( 0, 0)), // array(array( 1, 0), array( 1, 0), array( 1, 0), array( 1, 0)), // 1 array(array( 1, 0), array( 1, 0), array( 1, 0), array( 1, 0)), // array(array( 1, 0), array( 1, 0), array( 2, 0), array( 2, 0)), // array(array( 1, 0), array( 2, 0), array( 2, 0), array( 4, 0)), // array(array( 1, 0), array( 2, 0), array( 2, 2), array( 2, 2)), // 5 array(array( 2, 0), array( 4, 0), array( 4, 0), array( 4, 0)), // array(array( 2, 0), array( 4, 0), array( 2, 4), array( 4, 1)), // array(array( 2, 0), array( 2, 2), array( 4, 2), array( 4, 2)), // array(array( 2, 0), array( 3, 2), array( 4, 4), array( 4, 4)), // array(array( 2, 2), array( 4, 1), array( 6, 2), array( 6, 2)), // 10 array(array( 4, 0), array( 1, 4), array( 4, 4), array( 3, 8)), // array(array( 2, 2), array( 6, 2), array( 4, 6), array( 7, 4)), // array(array( 4, 0), array( 8, 1), array( 8, 4), array(12, 4)), // array(array( 3, 1), array( 4, 5), array(11, 5), array(11, 5)), // array(array( 5, 1), array( 5, 5), array( 5, 7), array(11, 7)), // 15 array(array( 5, 1), array( 7, 3), array(15, 2), array( 3, 13)), // array(array( 1, 5), array(10, 1), array( 1, 15), array( 2, 17)), // array(array( 5, 1), array( 9, 4), array(17, 1), array( 2, 19)), // array(array( 3, 4), array( 3, 11), array(17, 4), array( 9, 16)), // array(array( 3, 5), array( 3, 13), array(15, 5), array(15, 10)), // 20 array(array( 4, 4), array(17, 0), array(17, 6), array(19, 6)), // array(array( 2, 7), array(17, 0), array( 7, 16), array(34, 0)), // array(array( 4, 5), array( 4, 14), array(11, 14), array(16, 14)), // array(array( 6, 4), array( 6, 14), array(11, 16), array(30, 2)), // array(array( 8, 4), array( 8, 13), array( 7, 22), array(22, 13)), // 25 array(array(10, 2), array(19, 4), array(28, 6), array(33, 4)), // array(array( 8, 4), array(22, 3), array( 8, 26), array(12, 28)), // array(array( 3, 10), array( 3, 23), array( 4, 31), array(11, 31)), // array(array( 7, 7), array(21, 7), array( 1, 37), array(19, 26)), // array(array( 5, 10), array(19, 10), array(15, 25), array(23, 25)), // 30 array(array(13, 3), array( 2, 29), array(42, 1), array(23, 28)), // array(array(17, 0), array(10, 23), array(10, 35), array(19, 35)), // array(array(17, 1), array(14, 21), array(29, 19), array(11, 46)), // array(array(13, 6), array(14, 23), array(44, 7), array(59, 1)), // array(array(12, 7), array(12, 26), array(39, 14), array(22, 41)), // 35 array(array( 6, 14), array( 6, 34), array(46, 10), array( 2, 64)), // array(array(17, 4), array(29, 14), array(49, 10), array(24, 46)), // array(array( 4, 18), array(13, 32), array(48, 14), array(42, 32)), // array(array(20, 4), array(40, 7), array(43, 22), array(10, 67)), // array(array(19, 6), array(18, 31), array(34, 34), array(20, 61)) // 40 ); /** * Array Positions of alignment patterns. * This array includes only the second and the third position of the alignment patterns. Rest of them can be calculated from the distance between them. * See Table 1 in Appendix E (pp.71) of JIS X0510:2004. * @protected */ protected $alignmentPattern = array( array( 0, 0), array( 0, 0), array(18, 0), array(22, 0), array(26, 0), array(30, 0), // 1- 5 array(34, 0), array(22, 38), array(24, 42), array(26, 46), array(28, 50), // 6-10 array(30, 54), array(32, 58), array(34, 62), array(26, 46), array(26, 48), // 11-15 array(26, 50), array(30, 54), array(30, 56), array(30, 58), array(34, 62), // 16-20 array(28, 50), array(26, 50), array(30, 54), array(28, 54), array(32, 58), // 21-25 array(30, 58), array(34, 62), array(26, 50), array(30, 54), array(26, 52), // 26-30 array(30, 56), array(34, 60), array(30, 58), array(34, 62), array(30, 54), // 31-35 array(24, 50), array(28, 54), array(32, 58), array(26, 54), array(30, 58) // 35-40 ); /** * Array Version information pattern (BCH coded). * See Table 1 in Appendix D (pp.68) of JIS X0510:2004. * size: [QRSPEC_VERSION_MAX - 6] * @protected */ protected $versionPattern = array( 0x07c94, 0x085bc, 0x09a99, 0x0a4d3, 0x0bbf6, 0x0c762, 0x0d847, 0x0e60d, // 0x0f928, 0x10b78, 0x1145d, 0x12a17, 0x13532, 0x149a6, 0x15683, 0x168c9, // 0x177ec, 0x18ec4, 0x191e1, 0x1afab, 0x1b08e, 0x1cc1a, 0x1d33f, 0x1ed75, // 0x1f250, 0x209d5, 0x216f0, 0x228ba, 0x2379f, 0x24b0b, 0x2542e, 0x26a64, // 0x27541, 0x28c69 ); /** * Array Format information * @protected */ protected $formatInfo = array( array(0x77c4, 0x72f3, 0x7daa, 0x789d, 0x662f, 0x6318, 0x6c41, 0x6976), // array(0x5412, 0x5125, 0x5e7c, 0x5b4b, 0x45f9, 0x40ce, 0x4f97, 0x4aa0), // array(0x355f, 0x3068, 0x3f31, 0x3a06, 0x24b4, 0x2183, 0x2eda, 0x2bed), // array(0x1689, 0x13be, 0x1ce7, 0x19d0, 0x0762, 0x0255, 0x0d0c, 0x083b) // ); // ------------------------------------------------- // ------------------------------------------------- /** * This is the class constructor. * Creates a QRcode object * @param $code (string) code to represent using QRcode * @param $eclevel (string) error level: <ul><li>L : About 7% or less errors can be corrected.</li><li>M : About 15% or less errors can be corrected.</li><li>Q : About 25% or less errors can be corrected.</li><li>H : About 30% or less errors can be corrected.</li></ul> * @public * @since 1.0.000 */ public function __construct($code, $eclevel = 'L') { $barcode_array = array(); if ((is_null($code)) OR ($code == '\0') OR ($code == '')) { return false; } // set error correction level $this->level = array_search($eclevel, array('L', 'M', 'Q', 'H')); if ($this->level === false) { $this->level = QR_ECLEVEL_L; } if (($this->hint != QR_MODE_8B) AND ($this->hint != QR_MODE_KJ)) { return false; } if (($this->version < 0) OR ($this->version > QRSPEC_VERSION_MAX)) { return false; } $this->items = array(); $this->encodeString($code); if (is_null($this->data)) { return false; } $qrTab = $this->binarize($this->data); $size = count($qrTab); $barcode_array['num_rows'] = $size; $barcode_array['num_cols'] = $size; $barcode_array['bcode'] = array(); foreach ($qrTab as $line) { $arrAdd = array(); foreach (str_split($line) as $char) { $arrAdd[] = ($char=='1')?1:0; } $barcode_array['bcode'][] = $arrAdd; } $this->barcode_array = $barcode_array; } /** * Returns a barcode array which is readable by TCPDF * @return array barcode array readable by TCPDF; * @public */ public function getBarcodeArray() { return $this->barcode_array; } /** * Convert the frame in binary form * @param $frame (array) array to binarize * @return array frame in binary form */ protected function binarize($frame) { $len = count($frame); // the frame is square (width = height) foreach ($frame as &$frameLine) { for ($i=0; $i<$len; $i++) { $frameLine[$i] = (ord($frameLine[$i])&1)?'1':'0'; } } return $frame; } /** * Encode the input string to QR code * @param $string (string) input string to encode */ protected function encodeString($string) { $this->dataStr = $string; if (!$this->casesensitive) { $this->toUpper(); } $ret = $this->splitString(); if ($ret < 0) { return NULL; } $this->encodeMask(-1); } /** * Encode mask * @param $mask (int) masking mode */ protected function encodeMask($mask) { $spec = array(0, 0, 0, 0, 0); $this->datacode = $this->getByteStream($this->items); if (is_null($this->datacode)) { return NULL; } $spec = $this->getEccSpec($this->version, $this->level, $spec); $this->b1 = $this->rsBlockNum1($spec); $this->dataLength = $this->rsDataLength($spec); $this->eccLength = $this->rsEccLength($spec); $this->ecccode = array_fill(0, $this->eccLength, 0); $this->blocks = $this->rsBlockNum($spec); $ret = $this->init($spec); if ($ret < 0) { return NULL; } $this->count = 0; $this->width = $this->getWidth($this->version); $this->frame = $this->newFrame($this->version); $this->x = $this->width - 1; $this->y = $this->width - 1; $this->dir = -1; $this->bit = -1; // inteleaved data and ecc codes for ($i=0; $i < ($this->dataLength + $this->eccLength); $i++) { $code = $this->getCode(); $bit = 0x80; for ($j=0; $j<8; $j++) { $addr = $this->getNextPosition(); $this->setFrameAt($addr, 0x02 | (($bit & $code) != 0)); $bit = $bit >> 1; } } // remainder bits $j = $this->getRemainder($this->version); for ($i=0; $i<$j; $i++) { $addr = $this->getNextPosition(); $this->setFrameAt($addr, 0x02); } // masking $this->runLength = array_fill(0, QRSPEC_WIDTH_MAX + 1, 0); if ($mask < 0) { if (QR_FIND_BEST_MASK) { $masked = $this->mask($this->width, $this->frame, $this->level); } else { $masked = $this->makeMask($this->width, $this->frame, (intval(QR_DEFAULT_MASK) % 8), $this->level); } } else { $masked = $this->makeMask($this->width, $this->frame, $mask, $this->level); } if ($masked == NULL) { return NULL; } $this->data = $masked; } // - - - - - - - - - - - - - - - - - - - - - - - - - // FrameFiller /** * Set frame value at specified position * @param $at (array) x,y position * @param $val (int) value of the character to set */ protected function setFrameAt($at, $val) { $this->frame[$at['y']][$at['x']] = chr($val); } /** * Get frame value at specified position * @param $at (array) x,y position * @return value at specified position */ protected function getFrameAt($at) { return ord($this->frame[$at['y']][$at['x']]); } /** * Return the next frame position * @return array of x,y coordinates */ protected function getNextPosition() { do { if ($this->bit == -1) { $this->bit = 0; return array('x'=>$this->x, 'y'=>$this->y); } $x = $this->x; $y = $this->y; $w = $this->width; if ($this->bit == 0) { $x--; $this->bit++; } else { $x++; $y += $this->dir; $this->bit--; } if ($this->dir < 0) { if ($y < 0) { $y = 0; $x -= 2; $this->dir = 1; if ($x == 6) { $x--; $y = 9; } } } else { if ($y == $w) { $y = $w - 1; $x -= 2; $this->dir = -1; if ($x == 6) { $x--; $y -= 8; } } } if (($x < 0) OR ($y < 0)) { return NULL; } $this->x = $x; $this->y = $y; } while(ord($this->frame[$y][$x]) & 0x80); return array('x'=>$x, 'y'=>$y); } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRrawcode /** * Initialize code. * @param $spec (array) array of ECC specification * @return 0 in case of success, -1 in case of error */ protected function init($spec) { $dl = $this->rsDataCodes1($spec); $el = $this->rsEccCodes1($spec); $rs = $this->init_rs(8, 0x11d, 0, 1, $el, 255 - $dl - $el); $blockNo = 0; $dataPos = 0; $eccPos = 0; $endfor = $this->rsBlockNum1($spec); for ($i=0; $i < $endfor; ++$i) { $ecc = array_slice($this->ecccode, $eccPos); $this->rsblocks[$blockNo] = array(); $this->rsblocks[$blockNo]['dataLength'] = $dl; $this->rsblocks[$blockNo]['data'] = array_slice($this->datacode, $dataPos); $this->rsblocks[$blockNo]['eccLength'] = $el; $ecc = $this->encode_rs_char($rs, $this->rsblocks[$blockNo]['data'], $ecc); $this->rsblocks[$blockNo]['ecc'] = $ecc; $this->ecccode = array_merge(array_slice($this->ecccode,0, $eccPos), $ecc); $dataPos += $dl; $eccPos += $el; $blockNo++; } if ($this->rsBlockNum2($spec) == 0) { return 0; } $dl = $this->rsDataCodes2($spec); $el = $this->rsEccCodes2($spec); $rs = $this->init_rs(8, 0x11d, 0, 1, $el, 255 - $dl - $el); if ($rs == NULL) { return -1; } $endfor = $this->rsBlockNum2($spec); for ($i=0; $i < $endfor; ++$i) { $ecc = array_slice($this->ecccode, $eccPos); $this->rsblocks[$blockNo] = array(); $this->rsblocks[$blockNo]['dataLength'] = $dl; $this->rsblocks[$blockNo]['data'] = array_slice($this->datacode, $dataPos); $this->rsblocks[$blockNo]['eccLength'] = $el; $ecc = $this->encode_rs_char($rs, $this->rsblocks[$blockNo]['data'], $ecc); $this->rsblocks[$blockNo]['ecc'] = $ecc; $this->ecccode = array_merge(array_slice($this->ecccode, 0, $eccPos), $ecc); $dataPos += $dl; $eccPos += $el; $blockNo++; } return 0; } /** * Return Reed-Solomon block code. * @return array rsblocks */ protected function getCode() { if ($this->count < $this->dataLength) { $row = $this->count % $this->blocks; $col = $this->count / $this->blocks; if ($col >= $this->rsblocks[0]['dataLength']) { $row += $this->b1; } $ret = $this->rsblocks[$row]['data'][$col]; } elseif ($this->count < $this->dataLength + $this->eccLength) { $row = ($this->count - $this->dataLength) % $this->blocks; $col = ($this->count - $this->dataLength) / $this->blocks; $ret = $this->rsblocks[$row]['ecc'][$col]; } else { return 0; } $this->count++; return $ret; } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRmask /** * Write Format Information on frame and returns the number of black bits * @param $width (int) frame width * @param $frame (array) frame * @param $mask (array) masking mode * @param $level (int) error correction level * @return int blacks */ protected function writeFormatInformation($width, &$frame, $mask, $level) { $blacks = 0; $format = $this->getFormatInfo($mask, $level); for ($i=0; $i<8; ++$i) { if ($format & 1) { $blacks += 2; $v = 0x85; } else { $v = 0x84; } $frame[8][$width - 1 - $i] = chr($v); if ($i < 6) { $frame[$i][8] = chr($v); } else { $frame[$i + 1][8] = chr($v); } $format = $format >> 1; } for ($i=0; $i<7; ++$i) { if ($format & 1) { $blacks += 2; $v = 0x85; } else { $v = 0x84; } $frame[$width - 7 + $i][8] = chr($v); if ($i == 0) { $frame[8][7] = chr($v); } else { $frame[8][6 - $i] = chr($v); } $format = $format >> 1; } return $blacks; } /** * mask0 * @param $x (int) X position * @param $y (int) Y position * @return int mask */ protected function mask0($x, $y) { return ($x + $y) & 1; } /** * mask1 * @param $x (int) X position * @param $y (int) Y position * @return int mask */ protected function mask1($x, $y) { return ($y & 1); } /** * mask2 * @param $x (int) X position * @param $y (int) Y position * @return int mask */ protected function mask2($x, $y) { return ($x % 3); } /** * mask3 * @param $x (int) X position * @param $y (int) Y position * @return int mask */ protected function mask3($x, $y) { return ($x + $y) % 3; } /** * mask4 * @param $x (int) X position * @param $y (int) Y position * @return int mask */ protected function mask4($x, $y) { return (((int)($y / 2)) + ((int)($x / 3))) & 1; } /** * mask5 * @param $x (int) X position * @param $y (int) Y position * @return int mask */ protected function mask5($x, $y) { return (($x * $y) & 1) + ($x * $y) % 3; } /** * mask6 * @param $x (int) X position * @param $y (int) Y position * @return int mask */ protected function mask6($x, $y) { return ((($x * $y) & 1) + ($x * $y) % 3) & 1; } /** * mask7 * @param $x (int) X position * @param $y (int) Y position * @return int mask */ protected function mask7($x, $y) { return ((($x * $y) % 3) + (($x + $y) & 1)) & 1; } /** * Return bitmask * @param $maskNo (int) mask number * @param $width (int) width * @param $frame (array) frame * @return array bitmask */ protected function generateMaskNo($maskNo, $width, $frame) { $bitMask = array_fill(0, $width, array_fill(0, $width, 0)); for ($y=0; $y<$width; ++$y) { for ($x=0; $x<$width; ++$x) { if (ord($frame[$y][$x]) & 0x80) { $bitMask[$y][$x] = 0; } else { $maskFunc = call_user_func(array($this, 'mask'.$maskNo), $x, $y); $bitMask[$y][$x] = ($maskFunc == 0)?1:0; } } } return $bitMask; } /** * makeMaskNo * @param $maskNo (int) * @param $width (int) * @param $s (int) * @param $d (int) * @param $maskGenOnly (boolean) * @return int b */ protected function makeMaskNo($maskNo, $width, $s, &$d, $maskGenOnly=false) { $b = 0; $bitMask = array(); $bitMask = $this->generateMaskNo($maskNo, $width, $s, $d); if ($maskGenOnly) { return; } $d = $s; for ($y=0; $y<$width; ++$y) { for ($x=0; $x<$width; ++$x) { if ($bitMask[$y][$x] == 1) { $d[$y][$x] = chr(ord($s[$y][$x]) ^ ((int)($bitMask[$y][$x]))); } $b += (int)(ord($d[$y][$x]) & 1); } } return $b; } /** * makeMask * @param $width (int) * @param $frame (array) * @param $maskNo (int) * @param $level (int) * @return array mask */ protected function makeMask($width, $frame, $maskNo, $level) { $masked = array_fill(0, $width, str_repeat("\0", $width)); $this->makeMaskNo($maskNo, $width, $frame, $masked); $this->writeFormatInformation($width, $masked, $maskNo, $level); return $masked; } /** * calcN1N3 * @param $length (int) * @return int demerit */ protected function calcN1N3($length) { $demerit = 0; for ($i=0; $i<$length; ++$i) { if ($this->runLength[$i] >= 5) { $demerit += (N1 + ($this->runLength[$i] - 5)); } if ($i & 1) { if (($i >= 3) AND ($i < ($length-2)) AND ($this->runLength[$i] % 3 == 0)) { $fact = (int)($this->runLength[$i] / 3); if (($this->runLength[$i-2] == $fact) AND ($this->runLength[$i-1] == $fact) AND ($this->runLength[$i+1] == $fact) AND ($this->runLength[$i+2] == $fact)) { if (($this->runLength[$i-3] < 0) OR ($this->runLength[$i-3] >= (4 * $fact))) { $demerit += N3; } elseif ((($i+3) >= $length) OR ($this->runLength[$i+3] >= (4 * $fact))) { $demerit += N3; } } } } } return $demerit; } /** * evaluateSymbol * @param $width (int) * @param $frame (array) * @return int demerit */ protected function evaluateSymbol($width, $frame) { $head = 0; $demerit = 0; for ($y=0; $y<$width; ++$y) { $head = 0; $this->runLength[0] = 1; $frameY = $frame[$y]; if ($y > 0) { $frameYM = $frame[$y-1]; } for ($x=0; $x<$width; ++$x) { if (($x > 0) AND ($y > 0)) { $b22 = ord($frameY[$x]) & ord($frameY[$x-1]) & ord($frameYM[$x]) & ord($frameYM[$x-1]); $w22 = ord($frameY[$x]) | ord($frameY[$x-1]) | ord($frameYM[$x]) | ord($frameYM[$x-1]); if (($b22 | ($w22 ^ 1)) & 1) { $demerit += N2; } } if (($x == 0) AND (ord($frameY[$x]) & 1)) { $this->runLength[0] = -1; $head = 1; $this->runLength[$head] = 1; } elseif ($x > 0) { if ((ord($frameY[$x]) ^ ord($frameY[$x-1])) & 1) { $head++; $this->runLength[$head] = 1; } else { $this->runLength[$head]++; } } } $demerit += $this->calcN1N3($head+1); } for ($x=0; $x<$width; ++$x) { $head = 0; $this->runLength[0] = 1; for ($y=0; $y<$width; ++$y) { if (($y == 0) AND (ord($frame[$y][$x]) & 1)) { $this->runLength[0] = -1; $head = 1; $this->runLength[$head] = 1; } elseif ($y > 0) { if ((ord($frame[$y][$x]) ^ ord($frame[$y-1][$x])) & 1) { $head++; $this->runLength[$head] = 1; } else { $this->runLength[$head]++; } } } $demerit += $this->calcN1N3($head+1); } return $demerit; } /** * mask * @param $width (int) * @param $frame (array) * @param $level (int) * @return array best mask */ protected function mask($width, $frame, $level) { $minDemerit = PHP_INT_MAX; $bestMaskNum = 0; $bestMask = array(); $checked_masks = array(0, 1, 2, 3, 4, 5, 6, 7); if (QR_FIND_FROM_RANDOM !== false) { $howManuOut = 8 - (QR_FIND_FROM_RANDOM % 9); for ($i = 0; $i < $howManuOut; ++$i) { $remPos = rand (0, count($checked_masks)-1); unset($checked_masks[$remPos]); $checked_masks = array_values($checked_masks); } } $bestMask = $frame; foreach ($checked_masks as $i) { $mask = array_fill(0, $width, str_repeat("\0", $width)); $demerit = 0; $blacks = 0; $blacks = $this->makeMaskNo($i, $width, $frame, $mask); $blacks += $this->writeFormatInformation($width, $mask, $i, $level); $blacks = (int)(100 * $blacks / ($width * $width)); $demerit = (int)((int)(abs($blacks - 50) / 5) * N4); $demerit += $this->evaluateSymbol($width, $mask); if ($demerit < $minDemerit) { $minDemerit = $demerit; $bestMask = $mask; $bestMaskNum = $i; } } return $bestMask; } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRsplit /** * Return true if the character at specified position is a number * @param $str (string) string * @param $pos (int) characted position * @return boolean true of false */ protected function isdigitat($str, $pos) { if ($pos >= strlen($str)) { return false; } return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9'))); } /** * Return true if the character at specified position is an alphanumeric character * @param $str (string) string * @param $pos (int) characted position * @return boolean true of false */ protected function isalnumat($str, $pos) { if ($pos >= strlen($str)) { return false; } return ($this->lookAnTable(ord($str[$pos])) >= 0); } /** * identifyMode * @param $pos (int) * @return int mode */ protected function identifyMode($pos) { if ($pos >= strlen($this->dataStr)) { return QR_MODE_NL; } $c = $this->dataStr[$pos]; if ($this->isdigitat($this->dataStr, $pos)) { return QR_MODE_NM; } elseif ($this->isalnumat($this->dataStr, $pos)) { return QR_MODE_AN; } elseif ($this->hint == QR_MODE_KJ) { if ($pos+1 < strlen($this->dataStr)) { $d = $this->dataStr[$pos+1]; $word = (ord($c) << 8) | ord($d); if (($word >= 0x8140 && $word <= 0x9ffc) OR ($word >= 0xe040 && $word <= 0xebbf)) { return QR_MODE_KJ; } } } return QR_MODE_8B; } /** * eatNum * @return int run */ protected function eatNum() { $ln = $this->lengthIndicator(QR_MODE_NM, $this->version); $p = 0; while($this->isdigitat($this->dataStr, $p)) { $p++; } $run = $p; $mode = $this->identifyMode($p); if ($mode == QR_MODE_8B) { $dif = $this->estimateBitsModeNum($run) + 4 + $ln + $this->estimateBitsMode8(1) // + 4 + l8 - $this->estimateBitsMode8($run + 1); // - 4 - l8 if ($dif > 0) { return $this->eat8(); } } if ($mode == QR_MODE_AN) { $dif = $this->estimateBitsModeNum($run) + 4 + $ln + $this->estimateBitsModeAn(1) // + 4 + la - $this->estimateBitsModeAn($run + 1);// - 4 - la if ($dif > 0) { return $this->eatAn(); } } $this->items = $this->appendNewInputItem($this->items, QR_MODE_NM, $run, str_split($this->dataStr)); return $run; } /** * eatAn * @return int run */ protected function eatAn() { $la = $this->lengthIndicator(QR_MODE_AN, $this->version); $ln = $this->lengthIndicator(QR_MODE_NM, $this->version); $p =1 ; while($this->isalnumat($this->dataStr, $p)) { if ($this->isdigitat($this->dataStr, $p)) { $q = $p; while($this->isdigitat($this->dataStr, $q)) { $q++; } $dif = $this->estimateBitsModeAn($p) // + 4 + la + $this->estimateBitsModeNum($q - $p) + 4 + $ln - $this->estimateBitsModeAn($q); // - 4 - la if ($dif < 0) { break; } else { $p = $q; } } else { $p++; } } $run = $p; if (!$this->isalnumat($this->dataStr, $p)) { $dif = $this->estimateBitsModeAn($run) + 4 + $la + $this->estimateBitsMode8(1) // + 4 + l8 - $this->estimateBitsMode8($run + 1); // - 4 - l8 if ($dif > 0) { return $this->eat8(); } } $this->items = $this->appendNewInputItem($this->items, QR_MODE_AN, $run, str_split($this->dataStr)); return $run; } /** * eatKanji * @return int run */ protected function eatKanji() { $p = 0; while($this->identifyMode($p) == QR_MODE_KJ) { $p += 2; } $this->items = $this->appendNewInputItem($this->items, QR_MODE_KJ, $p, str_split($this->dataStr)); return $run; } /** * eat8 * @return int run */ protected function eat8() { $la = $this->lengthIndicator(QR_MODE_AN, $this->version); $ln = $this->lengthIndicator(QR_MODE_NM, $this->version); $p = 1; $dataStrLen = strlen($this->dataStr); while($p < $dataStrLen) { $mode = $this->identifyMode($p); if ($mode == QR_MODE_KJ) { break; } if ($mode == QR_MODE_NM) { $q = $p; while($this->isdigitat($this->dataStr, $q)) { $q++; } $dif = $this->estimateBitsMode8($p) // + 4 + l8 + $this->estimateBitsModeNum($q - $p) + 4 + $ln - $this->estimateBitsMode8($q); // - 4 - l8 if ($dif < 0) { break; } else { $p = $q; } } elseif ($mode == QR_MODE_AN) { $q = $p; while($this->isalnumat($this->dataStr, $q)) { $q++; } $dif = $this->estimateBitsMode8($p) // + 4 + l8 + $this->estimateBitsModeAn($q - $p) + 4 + $la - $this->estimateBitsMode8($q); // - 4 - l8 if ($dif < 0) { break; } else { $p = $q; } } else { $p++; } } $run = $p; $this->items = $this->appendNewInputItem($this->items, QR_MODE_8B, $run, str_split($this->dataStr)); return $run; } /** * splitString */ protected function splitString() { while (strlen($this->dataStr) > 0) { if ($this->dataStr == '') { return 0; } $mode = $this->identifyMode(0); switch ($mode) { case QR_MODE_NM: { $length = $this->eatNum(); break; } case QR_MODE_AN: { $length = $this->eatAn(); break; } case QR_MODE_KJ: { if ($hint == QR_MODE_KJ) { $length = $this->eatKanji(); } else { $length = $this->eat8(); } break; } default: { $length = $this->eat8(); break; } } if ($length == 0) { return 0; } if ($length < 0) { return -1; } $this->dataStr = substr($this->dataStr, $length); } } /** * toUpper */ protected function toUpper() { $stringLen = strlen($this->dataStr); $p = 0; while ($p < $stringLen) { $mode = $this->identifyMode(substr($this->dataStr, $p), $this->hint); if ($mode == QR_MODE_KJ) { $p += 2; } else { if ((ord($this->dataStr[$p]) >= ord('a')) AND (ord($this->dataStr[$p]) <= ord('z'))) { $this->dataStr[$p] = chr(ord($this->dataStr[$p]) - 32); } $p++; } } return $this->dataStr; } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRinputItem /** * newInputItem * @param $mode (int) * @param $size (int) * @param $data (array) * @param $bstream (array) * @return array input item */ protected function newInputItem($mode, $size, $data, $bstream=null) { $setData = array_slice($data, 0, $size); if (count($setData) < $size) { $setData = array_merge($setData, array_fill(0, ($size - count($setData)), 0)); } if (!$this->check($mode, $size, $setData)) { return NULL; } $inputitem = array(); $inputitem['mode'] = $mode; $inputitem['size'] = $size; $inputitem['data'] = $setData; $inputitem['bstream'] = $bstream; return $inputitem; } /** * encodeModeNum * @param $inputitem (array) * @param $version (int) * @return array input item */ protected function encodeModeNum($inputitem, $version) { $words = (int)($inputitem['size'] / 3); $inputitem['bstream'] = array(); $val = 0x1; $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, $val); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_NM, $version), $inputitem['size']); for ($i=0; $i < $words; ++$i) { $val = (ord($inputitem['data'][$i*3 ]) - ord('0')) * 100; $val += (ord($inputitem['data'][$i*3+1]) - ord('0')) * 10; $val += (ord($inputitem['data'][$i*3+2]) - ord('0')); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 10, $val); } if ($inputitem['size'] - $words * 3 == 1) { $val = ord($inputitem['data'][$words*3]) - ord('0'); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, $val); } elseif (($inputitem['size'] - ($words * 3)) == 2) { $val = (ord($inputitem['data'][$words*3 ]) - ord('0')) * 10; $val += (ord($inputitem['data'][$words*3+1]) - ord('0')); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 7, $val); } return $inputitem; } /** * encodeModeAn * @param $inputitem (array) * @param $version (int) * @return array input item */ protected function encodeModeAn($inputitem, $version) { $words = (int)($inputitem['size'] / 2); $inputitem['bstream'] = array(); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x02); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_AN, $version), $inputitem['size']); for ($i=0; $i < $words; ++$i) { $val = (int)($this->lookAnTable(ord($inputitem['data'][$i*2])) * 45); $val += (int)($this->lookAnTable(ord($inputitem['data'][($i*2)+1]))); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 11, $val); } if ($inputitem['size'] & 1) { $val = $this->lookAnTable(ord($inputitem['data'][($words * 2)])); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 6, $val); } return $inputitem; } /** * encodeMode8 * @param $inputitem (array) * @param $version (int) * @return array input item */ protected function encodeMode8($inputitem, $version) { $inputitem['bstream'] = array(); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x4); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_8B, $version), $inputitem['size']); for ($i=0; $i < $inputitem['size']; ++$i) { $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 8, ord($inputitem['data'][$i])); } return $inputitem; } /** * encodeModeKanji * @param $inputitem (array) * @param $version (int) * @return array input item */ protected function encodeModeKanji($inputitem, $version) { $inputitem['bstream'] = array(); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x8); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_KJ, $version), (int)($inputitem['size'] / 2)); for ($i=0; $i<$inputitem['size']; $i+=2) { $val = (ord($inputitem['data'][$i]) << 8) | ord($inputitem['data'][$i+1]); if ($val <= 0x9ffc) { $val -= 0x8140; } else { $val -= 0xc140; } $h = ($val >> 8) * 0xc0; $val = ($val & 0xff) + $h; $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 13, $val); } return $inputitem; } /** * encodeModeStructure * @param $inputitem (array) * @return array input item */ protected function encodeModeStructure($inputitem) { $inputitem['bstream'] = array(); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x03); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, ord($inputitem['data'][1]) - 1); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, ord($inputitem['data'][0]) - 1); $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 8, ord($inputitem['data'][2])); return $inputitem; } /** * encodeBitStream * @param $inputitem (array) * @param $version (int) * @return array input item */ protected function encodeBitStream($inputitem, $version) { $inputitem['bstream'] = array(); $words = $this->maximumWords($inputitem['mode'], $version); if ($inputitem['size'] > $words) { $st1 = $this->newInputItem($inputitem['mode'], $words, $inputitem['data']); $st2 = $this->newInputItem($inputitem['mode'], $inputitem['size'] - $words, array_slice($inputitem['data'], $words)); $st1 = $this->encodeBitStream($st1, $version); $st2 = $this->encodeBitStream($st2, $version); $inputitem['bstream'] = array(); $inputitem['bstream'] = $this->appendBitstream($inputitem['bstream'], $st1['bstream']); $inputitem['bstream'] = $this->appendBitstream($inputitem['bstream'], $st2['bstream']); } else { switch($inputitem['mode']) { case QR_MODE_NM: { $inputitem = $this->encodeModeNum($inputitem, $version); break; } case QR_MODE_AN: { $inputitem = $this->encodeModeAn($inputitem, $version); break; } case QR_MODE_8B: { $inputitem = $this->encodeMode8($inputitem, $version); break; } case QR_MODE_KJ: { $inputitem = $this->encodeModeKanji($inputitem, $version); break; } case QR_MODE_ST: { $inputitem = $this->encodeModeStructure($inputitem); break; } default: { break; } } } return $inputitem; } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRinput /** * Append data to an input object. * The data is copied and appended to the input object. * @param $items (arrray) input items * @param $mode (int) encoding mode. * @param $size (int) size of data (byte). * @param $data (array) array of input data. * @return items * */ protected function appendNewInputItem($items, $mode, $size, $data) { $newitem = $this->newInputItem($mode, $size, $data); if (!empty($newitem)) { $items[] = $newitem; } return $items; } /** * insertStructuredAppendHeader * @param $items (array) * @param $size (int) * @param $index (int) * @param $parity (int) * @return array items */ protected function insertStructuredAppendHeader($items, $size, $index, $parity) { if ($size > MAX_STRUCTURED_SYMBOLS) { return -1; } if (($index <= 0) OR ($index > MAX_STRUCTURED_SYMBOLS)) { return -1; } $buf = array($size, $index, $parity); $entry = $this->newInputItem(QR_MODE_ST, 3, buf); array_unshift($items, $entry); return $items; } /** * calcParity * @param $items (array) * @return int parity */ protected function calcParity($items) { $parity = 0; foreach ($items as $item) { if ($item['mode'] != QR_MODE_ST) { for ($i=$item['size']-1; $i>=0; --$i) { $parity ^= $item['data'][$i]; } } } return $parity; } /** * checkModeNum * @param $size (int) * @param $data (array) * @return boolean true or false */ protected function checkModeNum($size, $data) { for ($i=0; $i<$size; ++$i) { if ((ord($data[$i]) < ord('0')) OR (ord($data[$i]) > ord('9'))){ return false; } } return true; } /** * Look up the alphabet-numeric convesion table (see JIS X0510:2004, pp.19). * @param $c (int) character value * @return value */ protected function lookAnTable($c) { return (($c > 127)?-1:$this->anTable[$c]); } /** * checkModeAn * @param $size (int) * @param $data (array) * @return boolean true or false */ protected function checkModeAn($size, $data) { for ($i=0; $i<$size; ++$i) { if ($this->lookAnTable(ord($data[$i])) == -1) { return false; } } return true; } /** * estimateBitsModeNum * @param $size (int) * @return int number of bits */ protected function estimateBitsModeNum($size) { $w = (int)($size / 3); $bits = ($w * 10); switch($size - ($w * 3)) { case 1: { $bits += 4; break; } case 2: { $bits += 7; break; } } return $bits; } /** * estimateBitsModeAn * @param $size (int) * @return int number of bits */ protected function estimateBitsModeAn($size) { $bits = (int)($size * 5.5); // (size / 2 ) * 11 if ($size & 1) { $bits += 6; } return $bits; } /** * estimateBitsMode8 * @param $size (int) * @return int number of bits */ protected function estimateBitsMode8($size) { return (int)($size * 8); } /** * estimateBitsModeKanji * @param $size (int) * @return int number of bits */ protected function estimateBitsModeKanji($size) { return (int)($size * 6.5); // (size / 2 ) * 13 } /** * checkModeKanji * @param $size (int) * @param $data (array) * @return boolean true or false */ protected function checkModeKanji($size, $data) { if ($size & 1) { return false; } for ($i=0; $i<$size; $i+=2) { $val = (ord($data[$i]) << 8) | ord($data[$i+1]); if (($val < 0x8140) OR (($val > 0x9ffc) AND ($val < 0xe040)) OR ($val > 0xebbf)) { return false; } } return true; } /** * Validate the input data. * @param $mode (int) encoding mode. * @param $size (int) size of data (byte). * @param $data (array) data to validate * @return boolean true in case of valid data, false otherwise */ protected function check($mode, $size, $data) { if ($size <= 0) { return false; } switch($mode) { case QR_MODE_NM: { return $this->checkModeNum($size, $data); } case QR_MODE_AN: { return $this->checkModeAn($size, $data); } case QR_MODE_KJ: { return $this->checkModeKanji($size, $data); } case QR_MODE_8B: { return true; } case QR_MODE_ST: { return true; } default: { break; } } return false; } /** * estimateBitStreamSize * @param $items (array) * @param $version (int) * @return int bits */ protected function estimateBitStreamSize($items, $version) { $bits = 0; if ($version == 0) { $version = 1; } foreach ($items as $item) { switch($item['mode']) { case QR_MODE_NM: { $bits = $this->estimateBitsModeNum($item['size']); break; } case QR_MODE_AN: { $bits = $this->estimateBitsModeAn($item['size']); break; } case QR_MODE_8B: { $bits = $this->estimateBitsMode8($item['size']); break; } case QR_MODE_KJ: { $bits = $this->estimateBitsModeKanji($item['size']); break; } case QR_MODE_ST: { return STRUCTURE_HEADER_BITS; } default: { return 0; } } $l = $this->lengthIndicator($item['mode'], $version); $m = 1 << $l; $num = (int)(($item['size'] + $m - 1) / $m); $bits += $num * (4 + $l); } return $bits; } /** * estimateVersion * @param $items (array) * @return int version */ protected function estimateVersion($items) { $version = 0; $prev = 0; do { $prev = $version; $bits = $this->estimateBitStreamSize($items, $prev); $version = $this->getMinimumVersion((int)(($bits + 7) / 8), $this->level); if ($version < 0) { return -1; } } while ($version > $prev); return $version; } /** * lengthOfCode * @param $mode (int) * @param $version (int) * @param $bits (int) * @return int size */ protected function lengthOfCode($mode, $version, $bits) { $payload = $bits - 4 - $this->lengthIndicator($mode, $version); switch($mode) { case QR_MODE_NM: { $chunks = (int)($payload / 10); $remain = $payload - $chunks * 10; $size = $chunks * 3; if ($remain >= 7) { $size += 2; } elseif ($remain >= 4) { $size += 1; } break; } case QR_MODE_AN: { $chunks = (int)($payload / 11); $remain = $payload - $chunks * 11; $size = $chunks * 2; if ($remain >= 6) { ++$size; } break; } case QR_MODE_8B: { $size = (int)($payload / 8); break; } case QR_MODE_KJ: { $size = (int)(($payload / 13) * 2); break; } case QR_MODE_ST: { $size = (int)($payload / 8); break; } default: { $size = 0; break; } } $maxsize = $this->maximumWords($mode, $version); if ($size < 0) { $size = 0; } if ($size > $maxsize) { $size = $maxsize; } return $size; } /** * createBitStream * @param $items (array) * @return array of items and total bits */ protected function createBitStream($items) { $total = 0; foreach ($items as $key => $item) { $items[$key] = $this->encodeBitStream($item, $this->version); $bits = count($items[$key]['bstream']); $total += $bits; } return array($items, $total); } /** * convertData * @param $items (array) * @return array items */ protected function convertData($items) { $ver = $this->estimateVersion($items); if ($ver > $this->version) { $this->version = $ver; } for (;;) { $cbs = $this->createBitStream($items); $items = $cbs[0]; $bits = $cbs[1]; if ($bits < 0) { return -1; } $ver = $this->getMinimumVersion((int)(($bits + 7) / 8), $this->level); if ($ver < 0) { return -1; } elseif ($ver > $this->version) { $this->version = $ver; } else { break; } } return $items; } /** * Append Padding Bit to bitstream * @param $bstream (array) * @return array bitstream */ protected function appendPaddingBit($bstream) { if (is_null($bstream)) { return null; } $bits = count($bstream); $maxwords = $this->getDataLength($this->version, $this->level); $maxbits = $maxwords * 8; if ($maxbits == $bits) { return $bstream; } if ($maxbits - $bits < 5) { return $this->appendNum($bstream, $maxbits - $bits, 0); } $bits += 4; $words = (int)(($bits + 7) / 8); $padding = array(); $padding = $this->appendNum($padding, $words * 8 - $bits + 4, 0); $padlen = $maxwords - $words; if ($padlen > 0) { $padbuf = array(); for ($i=0; $i<$padlen; ++$i) { $padbuf[$i] = ($i&1)?0x11:0xec; } $padding = $this->appendBytes($padding, $padlen, $padbuf); } return $this->appendBitstream($bstream, $padding); } /** * mergeBitStream * @param $items (array) items * @return array bitstream */ protected function mergeBitStream($items) { $items = $this->convertData($items); if (!is_array($items)) { return null; } $bstream = array(); foreach ($items as $item) { $bstream = $this->appendBitstream($bstream, $item['bstream']); } return $bstream; } /** * Returns a stream of bits. * @param $items (int) * @return array padded merged byte stream */ protected function getBitStream($items) { $bstream = $this->mergeBitStream($items); return $this->appendPaddingBit($bstream); } /** * Pack all bit streams padding bits into a byte array. * @param $items (int) * @return array padded merged byte stream */ protected function getByteStream($items) { $bstream = $this->getBitStream($items); return $this->bitstreamToByte($bstream); } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRbitstream /** * Return an array with zeros * @param $setLength (int) array size * @return array */ protected function allocate($setLength) { return array_fill(0, $setLength, 0); } /** * Return new bitstream from number * @param $bits (int) number of bits * @param $num (int) number * @return array bitstream */ protected function newFromNum($bits, $num) { $bstream = $this->allocate($bits); $mask = 1 << ($bits - 1); for ($i=0; $i<$bits; ++$i) { if ($num & $mask) { $bstream[$i] = 1; } else { $bstream[$i] = 0; } $mask = $mask >> 1; } return $bstream; } /** * Return new bitstream from bytes * @param $size (int) size * @param $data (array) bytes * @return array bitstream */ protected function newFromBytes($size, $data) { $bstream = $this->allocate($size * 8); $p=0; for ($i=0; $i<$size; ++$i) { $mask = 0x80; for ($j=0; $j<8; ++$j) { if ($data[$i] & $mask) { $bstream[$p] = 1; } else { $bstream[$p] = 0; } $p++; $mask = $mask >> 1; } } return $bstream; } /** * Append one bitstream to another * @param $bitstream (array) original bitstream * @param $append (array) bitstream to append * @return array bitstream */ protected function appendBitstream($bitstream, $append) { if ((!is_array($append)) OR (count($append) == 0)) { return $bitstream; } if (count($bitstream) == 0) { return $append; } return array_values(array_merge($bitstream, $append)); } /** * Append one bitstream created from number to another * @param $bitstream (array) original bitstream * @param $bits (int) number of bits * @param $num (int) number * @return array bitstream */ protected function appendNum($bitstream, $bits, $num) { if ($bits == 0) { return 0; } $b = $this->newFromNum($bits, $num); return $this->appendBitstream($bitstream, $b); } /** * Append one bitstream created from bytes to another * @param $bitstream (array) original bitstream * @param $size (int) size * @param $data (array) bytes * @return array bitstream */ protected function appendBytes($bitstream, $size, $data) { if ($size == 0) { return 0; } $b = $this->newFromBytes($size, $data); return $this->appendBitstream($bitstream, $b); } /** * Convert bitstream to bytes * @param $bstream (array) original bitstream * @return array of bytes */ protected function bitstreamToByte($bstream) { if (is_null($bstream)) { return null; } $size = count($bstream); if ($size == 0) { return array(); } $data = array_fill(0, (int)(($size + 7) / 8), 0); $bytes = (int)($size / 8); $p = 0; for ($i=0; $i<$bytes; $i++) { $v = 0; for ($j=0; $j<8; $j++) { $v = $v << 1; $v |= $bstream[$p]; $p++; } $data[$i] = $v; } if ($size & 7) { $v = 0; for ($j=0; $j<($size & 7); $j++) { $v = $v << 1; $v |= $bstream[$p]; $p++; } $data[$bytes] = $v; } return $data; } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRspec /** * Replace a value on the array at the specified position * @param $srctab (array) * @param $x (int) X position * @param $y (int) Y position * @param $repl (string) value to replace * @param $replLen (int) length of the repl string * @return array srctab */ protected function qrstrset($srctab, $x, $y, $repl, $replLen=false) { $srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x, ($replLen !== false)?$replLen:strlen($repl)); return $srctab; } /** * Return maximum data code length (bytes) for the version. * @param $version (int) version * @param $level (int) error correction level * @return int maximum size (bytes) */ protected function getDataLength($version, $level) { return $this->capacity[$version][QRCAP_WORDS] - $this->capacity[$version][QRCAP_EC][$level]; } /** * Return maximum error correction code length (bytes) for the version. * @param $version (int) version * @param $level (int) error correction level * @return int ECC size (bytes) */ protected function getECCLength($version, $level){ return $this->capacity[$version][QRCAP_EC][$level]; } /** * Return the width of the symbol for the version. * @param $version (int) version * @return int width */ protected function getWidth($version) { return $this->capacity[$version][QRCAP_WIDTH]; } /** * Return the numer of remainder bits. * @param $version (int) version * @return int number of remainder bits */ protected function getRemainder($version) { return $this->capacity[$version][QRCAP_REMINDER]; } /** * Return a version number that satisfies the input code length. * @param $size (int) input code length (byte) * @param $level (int) error correction level * @return int version number */ protected function getMinimumVersion($size, $level) { for ($i=1; $i <= QRSPEC_VERSION_MAX; ++$i) { $words = $this->capacity[$i][QRCAP_WORDS] - $this->capacity[$i][QRCAP_EC][$level]; if ($words >= $size) { return $i; } } return -1; } /** * Return the size of length indicator for the mode and version. * @param $mode (int) encoding mode * @param $version (int) version * @return int the size of the appropriate length indicator (bits). */ protected function lengthIndicator($mode, $version) { if ($mode == QR_MODE_ST) { return 0; } if ($version <= 9) { $l = 0; } elseif ($version <= 26) { $l = 1; } else { $l = 2; } return $this->lengthTableBits[$mode][$l]; } /** * Return the maximum length for the mode and version. * @param $mode (int) encoding mode * @param $version (int) version * @return int the maximum length (bytes) */ protected function maximumWords($mode, $version) { if ($mode == QR_MODE_ST) { return 3; } if ($version <= 9) { $l = 0; } else if ($version <= 26) { $l = 1; } else { $l = 2; } $bits = $this->lengthTableBits[$mode][$l]; $words = (1 << $bits) - 1; if ($mode == QR_MODE_KJ) { $words *= 2; // the number of bytes is required } return $words; } /** * Return an array of ECC specification. * @param $version (int) version * @param $level (int) error correction level * @param $spec (array) an array of ECC specification contains as following: {# of type1 blocks, # of data code, # of ecc code, # of type2 blocks, # of data code} * @return array spec */ protected function getEccSpec($version, $level, $spec) { if (count($spec) < 5) { $spec = array(0, 0, 0, 0, 0); } $b1 = $this->eccTable[$version][$level][0]; $b2 = $this->eccTable[$version][$level][1]; $data = $this->getDataLength($version, $level); $ecc = $this->getECCLength($version, $level); if ($b2 == 0) { $spec[0] = $b1; $spec[1] = (int)($data / $b1); $spec[2] = (int)($ecc / $b1); $spec[3] = 0; $spec[4] = 0; } else { $spec[0] = $b1; $spec[1] = (int)($data / ($b1 + $b2)); $spec[2] = (int)($ecc / ($b1 + $b2)); $spec[3] = $b2; $spec[4] = $spec[1] + 1; } return $spec; } /** * Put an alignment marker. * @param $frame (array) frame * @param $ox (int) X center coordinate of the pattern * @param $oy (int) Y center coordinate of the pattern * @return array frame */ protected function putAlignmentMarker($frame, $ox, $oy) { $finder = array( "\xa1\xa1\xa1\xa1\xa1", "\xa1\xa0\xa0\xa0\xa1", "\xa1\xa0\xa1\xa0\xa1", "\xa1\xa0\xa0\xa0\xa1", "\xa1\xa1\xa1\xa1\xa1" ); $yStart = $oy - 2; $xStart = $ox - 2; for ($y=0; $y < 5; $y++) { $frame = $this->qrstrset($frame, $xStart, $yStart+$y, $finder[$y]); } return $frame; } /** * Put an alignment pattern. * @param $version (int) version * @param $frame (array) frame * @param $width (int) width * @return array frame */ protected function putAlignmentPattern($version, $frame, $width) { if ($version < 2) { return $frame; } $d = $this->alignmentPattern[$version][1] - $this->alignmentPattern[$version][0]; if ($d < 0) { $w = 2; } else { $w = (int)(($width - $this->alignmentPattern[$version][0]) / $d + 2); } if ($w * $w - 3 == 1) { $x = $this->alignmentPattern[$version][0]; $y = $this->alignmentPattern[$version][0]; $frame = $this->putAlignmentMarker($frame, $x, $y); return $frame; } $cx = $this->alignmentPattern[$version][0]; $wo = $w - 1; for ($x=1; $x < $wo; ++$x) { $frame = $this->putAlignmentMarker($frame, 6, $cx); $frame = $this->putAlignmentMarker($frame, $cx, 6); $cx += $d; } $cy = $this->alignmentPattern[$version][0]; for ($y=0; $y < $wo; ++$y) { $cx = $this->alignmentPattern[$version][0]; for ($x=0; $x < $wo; ++$x) { $frame = $this->putAlignmentMarker($frame, $cx, $cy); $cx += $d; } $cy += $d; } return $frame; } /** * Return BCH encoded version information pattern that is used for the symbol of version 7 or greater. Use lower 18 bits. * @param $version (int) version * @return BCH encoded version information pattern */ protected function getVersionPattern($version) { if (($version < 7) OR ($version > QRSPEC_VERSION_MAX)) { return 0; } return $this->versionPattern[($version - 7)]; } /** * Return BCH encoded format information pattern. * @param $mask (array) * @param $level (int) error correction level * @return BCH encoded format information pattern */ protected function getFormatInfo($mask, $level) { if (($mask < 0) OR ($mask > 7)) { return 0; } if (($level < 0) OR ($level > 3)) { return 0; } return $this->formatInfo[$level][$mask]; } /** * Put a finder pattern. * @param $frame (array) frame * @param $ox (int) X center coordinate of the pattern * @param $oy (int) Y center coordinate of the pattern * @return array frame */ protected function putFinderPattern($frame, $ox, $oy) { $finder = array( "\xc1\xc1\xc1\xc1\xc1\xc1\xc1", "\xc1\xc0\xc0\xc0\xc0\xc0\xc1", "\xc1\xc0\xc1\xc1\xc1\xc0\xc1", "\xc1\xc0\xc1\xc1\xc1\xc0\xc1", "\xc1\xc0\xc1\xc1\xc1\xc0\xc1", "\xc1\xc0\xc0\xc0\xc0\xc0\xc1", "\xc1\xc1\xc1\xc1\xc1\xc1\xc1" ); for ($y=0; $y < 7; $y++) { $frame = $this->qrstrset($frame, $ox, ($oy + $y), $finder[$y]); } return $frame; } /** * Return a copy of initialized frame. * @param $version (int) version * @return Array of unsigned char. */ protected function createFrame($version) { $width = $this->capacity[$version][QRCAP_WIDTH]; $frameLine = str_repeat ("\0", $width); $frame = array_fill(0, $width, $frameLine); // Finder pattern $frame = $this->putFinderPattern($frame, 0, 0); $frame = $this->putFinderPattern($frame, $width - 7, 0); $frame = $this->putFinderPattern($frame, 0, $width - 7); // Separator $yOffset = $width - 7; for ($y=0; $y < 7; ++$y) { $frame[$y][7] = "\xc0"; $frame[$y][$width - 8] = "\xc0"; $frame[$yOffset][7] = "\xc0"; ++$yOffset; } $setPattern = str_repeat("\xc0", 8); $frame = $this->qrstrset($frame, 0, 7, $setPattern); $frame = $this->qrstrset($frame, $width-8, 7, $setPattern); $frame = $this->qrstrset($frame, 0, $width - 8, $setPattern); // Format info $setPattern = str_repeat("\x84", 9); $frame = $this->qrstrset($frame, 0, 8, $setPattern); $frame = $this->qrstrset($frame, $width - 8, 8, $setPattern, 8); $yOffset = $width - 8; for ($y=0; $y < 8; ++$y,++$yOffset) { $frame[$y][8] = "\x84"; $frame[$yOffset][8] = "\x84"; } // Timing pattern $wo = $width - 15; for ($i=1; $i < $wo; ++$i) { $frame[6][7+$i] = chr(0x90 | ($i & 1)); $frame[7+$i][6] = chr(0x90 | ($i & 1)); } // Alignment pattern $frame = $this->putAlignmentPattern($version, $frame, $width); // Version information if ($version >= 7) { $vinf = $this->getVersionPattern($version); $v = $vinf; for ($x=0; $x<6; ++$x) { for ($y=0; $y<3; ++$y) { $frame[($width - 11)+$y][$x] = chr(0x88 | ($v & 1)); $v = $v >> 1; } } $v = $vinf; for ($y=0; $y<6; ++$y) { for ($x=0; $x<3; ++$x) { $frame[$y][$x+($width - 11)] = chr(0x88 | ($v & 1)); $v = $v >> 1; } } } // and a little bit... $frame[$width - 8][8] = "\x81"; return $frame; } /** * Set new frame for the specified version. * @param $version (int) version * @return Array of unsigned char. */ protected function newFrame($version) { if (($version < 1) OR ($version > QRSPEC_VERSION_MAX)) { return NULL; } if (!isset($this->frames[$version])) { $this->frames[$version] = $this->createFrame($version); } if (is_null($this->frames[$version])) { return NULL; } return $this->frames[$version]; } /** * Return block number 0 * @param $spec (array) * @return int value */ protected function rsBlockNum($spec) { return ($spec[0] + $spec[3]); } /** * Return block number 1 * @param $spec (array) * @return int value */ protected function rsBlockNum1($spec) { return $spec[0]; } /** * Return data codes 1 * @param $spec (array) * @return int value */ protected function rsDataCodes1($spec) { return $spec[1]; } /** * Return ecc codes 1 * @param $spec (array) * @return int value */ protected function rsEccCodes1($spec) { return $spec[2]; } /** * Return block number 2 * @param $spec (array) * @return int value */ protected function rsBlockNum2($spec) { return $spec[3]; } /** * Return data codes 2 * @param $spec (array) * @return int value */ protected function rsDataCodes2($spec) { return $spec[4]; } /** * Return ecc codes 2 * @param $spec (array) * @return int value */ protected function rsEccCodes2($spec) { return $spec[2]; } /** * Return data length * @param $spec (array) * @return int value */ protected function rsDataLength($spec) { return ($spec[0] * $spec[1]) + ($spec[3] * $spec[4]); } /** * Return ecc length * @param $spec (array) * @return int value */ protected function rsEccLength($spec) { return ($spec[0] + $spec[3]) * $spec[2]; } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRrs /** * Initialize a Reed-Solomon codec and add it to existing rsitems * @param $symsize (int) symbol size, bits * @param $gfpoly (int) Field generator polynomial coefficients * @param $fcr (int) first root of RS code generator polynomial, index form * @param $prim (int) primitive element to generate polynomial roots * @param $nroots (int) RS code generator polynomial degree (number of roots) * @param $pad (int) padding bytes at front of shortened block * @return array Array of RS values:<ul><li>mm = Bits per symbol;</li><li>nn = Symbols per block;</li><li>alpha_to = log lookup table array;</li><li>index_of = Antilog lookup table array;</li><li>genpoly = Generator polynomial array;</li><li>nroots = Number of generator;</li><li>roots = number of parity symbols;</li><li>fcr = First consecutive root, index form;</li><li>prim = Primitive element, index form;</li><li>iprim = prim-th root of 1, index form;</li><li>pad = Padding bytes in shortened block;</li><li>gfpoly</ul>. */ protected function init_rs($symsize, $gfpoly, $fcr, $prim, $nroots, $pad) { foreach ($this->rsitems as $rs) { if (($rs['pad'] != $pad) OR ($rs['nroots'] != $nroots) OR ($rs['mm'] != $symsize) OR ($rs['gfpoly'] != $gfpoly) OR ($rs['fcr'] != $fcr) OR ($rs['prim'] != $prim)) { continue; } return $rs; } $rs = $this->init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad); array_unshift($this->rsitems, $rs); return $rs; } // - - - - - - - - - - - - - - - - - - - - - - - - - // QRrsItem /** * modnn * @param $rs (array) RS values * @param $x (int) X position * @return int X osition */ protected function modnn($rs, $x) { while ($x >= $rs['nn']) { $x -= $rs['nn']; $x = ($x >> $rs['mm']) + ($x & $rs['nn']); } return $x; } /** * Initialize a Reed-Solomon codec and returns an array of values. * @param $symsize (int) symbol size, bits * @param $gfpoly (int) Field generator polynomial coefficients * @param $fcr (int) first root of RS code generator polynomial, index form * @param $prim (int) primitive element to generate polynomial roots * @param $nroots (int) RS code generator polynomial degree (number of roots) * @param $pad (int) padding bytes at front of shortened block * @return array Array of RS values:<ul><li>mm = Bits per symbol;</li><li>nn = Symbols per block;</li><li>alpha_to = log lookup table array;</li><li>index_of = Antilog lookup table array;</li><li>genpoly = Generator polynomial array;</li><li>nroots = Number of generator;</li><li>roots = number of parity symbols;</li><li>fcr = First consecutive root, index form;</li><li>prim = Primitive element, index form;</li><li>iprim = prim-th root of 1, index form;</li><li>pad = Padding bytes in shortened block;</li><li>gfpoly</ul>. */ protected function init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad) { // Based on Reed solomon encoder by Phil Karn, KA9Q (GNU-LGPLv2) $rs = null; // Check parameter ranges if (($symsize < 0) OR ($symsize > 8)) { return $rs; } if (($fcr < 0) OR ($fcr >= (1<<$symsize))) { return $rs; } if (($prim <= 0) OR ($prim >= (1<<$symsize))) { return $rs; } if (($nroots < 0) OR ($nroots >= (1<<$symsize))) { return $rs; } if (($pad < 0) OR ($pad >= ((1<<$symsize) -1 - $nroots))) { return $rs; } $rs = array(); $rs['mm'] = $symsize; $rs['nn'] = (1 << $symsize) - 1; $rs['pad'] = $pad; $rs['alpha_to'] = array_fill(0, ($rs['nn'] + 1), 0); $rs['index_of'] = array_fill(0, ($rs['nn'] + 1), 0); // PHP style macro replacement ;) $NN =& $rs['nn']; $A0 =& $NN; // Generate Galois field lookup tables $rs['index_of'][0] = $A0; // log(zero) = -inf $rs['alpha_to'][$A0] = 0; // alpha**-inf = 0 $sr = 1; for ($i=0; $i<$rs['nn']; ++$i) { $rs['index_of'][$sr] = $i; $rs['alpha_to'][$i] = $sr; $sr <<= 1; if ($sr & (1 << $symsize)) { $sr ^= $gfpoly; } $sr &= $rs['nn']; } if ($sr != 1) { // field generator polynomial is not primitive! return NULL; } // Form RS code generator polynomial from its roots $rs['genpoly'] = array_fill(0, ($nroots + 1), 0); $rs['fcr'] = $fcr; $rs['prim'] = $prim; $rs['nroots'] = $nroots; $rs['gfpoly'] = $gfpoly; // Find prim-th root of 1, used in decoding for ($iprim=1; ($iprim % $prim) != 0; $iprim += $rs['nn']) { ; // intentional empty-body loop! } $rs['iprim'] = (int)($iprim / $prim); $rs['genpoly'][0] = 1; for ($i = 0,$root=$fcr*$prim; $i < $nroots; $i++, $root += $prim) { $rs['genpoly'][$i+1] = 1; // Multiply rs->genpoly[] by @**(root + x) for ($j = $i; $j > 0; --$j) { if ($rs['genpoly'][$j] != 0) { $rs['genpoly'][$j] = $rs['genpoly'][$j-1] ^ $rs['alpha_to'][$this->modnn($rs, $rs['index_of'][$rs['genpoly'][$j]] + $root)]; } else { $rs['genpoly'][$j] = $rs['genpoly'][$j-1]; } } // rs->genpoly[0] can never be zero $rs['genpoly'][0] = $rs['alpha_to'][$this->modnn($rs, $rs['index_of'][$rs['genpoly'][0]] + $root)]; } // convert rs->genpoly[] to index form for quicker encoding for ($i = 0; $i <= $nroots; ++$i) { $rs['genpoly'][$i] = $rs['index_of'][$rs['genpoly'][$i]]; } return $rs; } /** * Encode a Reed-Solomon codec and returns the parity array * @param $rs (array) RS values * @param $data (array) data * @param $parity (array) parity * @return parity array */ protected function encode_rs_char($rs, $data, $parity) { $MM =& $rs['mm']; // bits per symbol $NN =& $rs['nn']; // the total number of symbols in a RS block $ALPHA_TO =& $rs['alpha_to']; // the address of an array of NN elements to convert Galois field elements in index (log) form to polynomial form $INDEX_OF =& $rs['index_of']; // the address of an array of NN elements to convert Galois field elements in polynomial form to index (log) form $GENPOLY =& $rs['genpoly']; // an array of NROOTS+1 elements containing the generator polynomial in index form $NROOTS =& $rs['nroots']; // the number of roots in the RS code generator polynomial, which is the same as the number of parity symbols in a block $FCR =& $rs['fcr']; // first consecutive root, index form $PRIM =& $rs['prim']; // primitive element, index form $IPRIM =& $rs['iprim']; // prim-th root of 1, index form $PAD =& $rs['pad']; // the number of pad symbols in a block $A0 =& $NN; $parity = array_fill(0, $NROOTS, 0); for ($i=0; $i < ($NN - $NROOTS - $PAD); $i++) { $feedback = $INDEX_OF[$data[$i] ^ $parity[0]]; if ($feedback != $A0) { // feedback term is non-zero // This line is unnecessary when GENPOLY[NROOTS] is unity, as it must // always be for the polynomials constructed by init_rs() $feedback = $this->modnn($rs, $NN - $GENPOLY[$NROOTS] + $feedback); for ($j=1; $j < $NROOTS; ++$j) { $parity[$j] ^= $ALPHA_TO[$this->modnn($rs, $feedback + $GENPOLY[($NROOTS - $j)])]; } } // Shift array_shift($parity); if ($feedback != $A0) { array_push($parity, $ALPHA_TO[$this->modnn($rs, $feedback + $GENPOLY[0])]); } else { array_push($parity, 0); } } return $parity; } } // end QRcode class //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/qrcode.php
PHP
gpl2
80,058
<?php // If you define the constant K_TCPDF_EXTERNAL_CONFIG, the following settings will be ignored. if (!defined('K_TCPDF_EXTERNAL_CONFIG')) { // DOCUMENT_ROOT fix for IIS Webserver if ((!isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) { if(isset($_SERVER['SCRIPT_FILENAME'])) { $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF']))); } elseif(isset($_SERVER['PATH_TRANSLATED'])) { $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF']))); } else { // define here your DOCUMENT_ROOT path if the previous fails $_SERVER['DOCUMENT_ROOT'] = '/var/www'; } } // Automatic calculation for the following K_PATH_MAIN constant $k_path_main = str_replace( '\\', '/', realpath(substr(dirname(__FILE__), 0, 0-strlen('config')))); if (substr($k_path_main, -1) != '/') { $k_path_main .= '/'; } /** * Installation path (/var/www/tcpdf/). * By default it is automatically calculated but you can also set it as a fixed string to improve performances. */ define ('K_PATH_MAIN', $k_path_main); // Automatic calculation for the following K_PATH_URL constant $k_path_url = $k_path_main; // default value for console mode if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) { if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') { $k_path_url = 'https://'; } else { $k_path_url = 'http://'; } $k_path_url .= $_SERVER['HTTP_HOST']; $k_path_url .= str_replace( '\\', '/', substr(K_PATH_MAIN, (strlen($_SERVER['DOCUMENT_ROOT']) - 1))); } /** * URL path to tcpdf installation folder (http://localhost/tcpdf/). * By default it is automatically calculated but you can also set it as a fixed string to improve performances. */ define ('K_PATH_URL', $k_path_url); /** * path for PDF fonts * use K_PATH_MAIN.'fonts/old/' for old non-UTF8 fonts */ define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); /** * cache directory for temporary files (full path) */ define ('K_PATH_CACHE', K_PATH_MAIN.'cache/'); /** * cache directory for temporary files (url path) */ define ('K_PATH_URL_CACHE', K_PATH_URL.'cache/'); /** *images directory */ define ('K_PATH_IMAGES', K_PATH_MAIN.'images/'); /** * blank image */ define ('K_BLANK_IMAGE', K_PATH_IMAGES.'_blank.png'); /** * page format */ // define ('PDF_PAGE_FORMAT', 'A4'); /** * page orientation (P=portrait, L=landscape) */ // define ('PDF_PAGE_ORIENTATION', 'P'); /** * document creator */ // define ('PDF_CREATOR', 'jqGrid'); /** * document author */ // define ('PDF_AUTHOR', 'jqGrid'); /** * document title */ // define ('PDF_TITLE', 'jqGrid Table'); /** * document subject */ // define ('PDF_SUBJECT', 'jqGrid Table'); /** * document keywords */ // define ('PDF_KEYWORDS', 'pdf, table, data'); /** * header title */ // define ('PDF_HEADER_TITLE', 'jqGrid table'); /** * header description string */ // define ('PDF_HEADER_STRING', "by Trirand Inc - www.trirand.net"); /** * image logo */ // define ('PDF_HEADER_LOGO', 'logo.gif'); /** * header logo image width in pdf unit */ // define ('PDF_HEADER_LOGO_WIDTH', 35); /** * Grid header height in pdf unit or 0 */ // define ('PDF_HEADER_GRID_HEIGHT', 6); /** * grid data height row in unit or 0 */ // define ('PDF_DATA_GRID_HEIGHT', 5); // define ('PDF_GRID_HEAD_COLOR', "#dfeffc"); // define ('PDF_GRID_HEAD_TEXT_COLOR', "#2e6e9e"); // define ('PDF_GRID_DRAW_COLOR', "#5c9ccc"); // define ('PDF_GRID_ROW_COLOR', "#ffffff"); // define ('PDF_GRID_ROW_TEXT_COLOR', "#000000"); /** * define alternate rows */ // define ('PDF_ALTERNATE_GRID_ROWS', false); /** * document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch] */ // define ('PDF_UNIT', 'mm'); /** * enable/disable header */ // define ('PDF_HEADER', true); /** * disable/enable footer */ // define ('PDF_FOOTER', true); /** * header margin in pdf unit */ // define ('PDF_MARGIN_HEADER', 5); /** * footer margin in pdf unit */ // define ('PDF_MARGIN_FOOTER', 10); /** * top margin in pdf unit */ // define ('PDF_MARGIN_TOP', 27); /** * bottom margin in pdf unit */ // define ('PDF_MARGIN_BOTTOM', 25); /** * left margin in pdf unit */ // define ('PDF_MARGIN_LEFT', 12); /** * right margin in pdf unit */ // define ('PDF_MARGIN_RIGHT', 12); /** * default main font name */ // define ('PDF_FONT_NAME_MAIN', 'helvetica'); /** * default main font size */ // define ('PDF_FONT_SIZE_MAIN', 10); /** * default data font name */ // define ('PDF_FONT_NAME_DATA', 'helvetica'); /** * default data font size */ // define ('PDF_FONT_SIZE_DATA', 8); /** * default monospaced font name */ // define ('PDF_FONT_MONOSPACED', 'courier'); /** * ratio used to adjust the conversion of pixels to user units */ // define ('PDF_IMAGE_SCALE_RATIO', 1.25); /** * magnification factor for titles */ define('HEAD_MAGNIFICATION', 1.1); /** * height of cell repect font height */ define('K_CELL_HEIGHT_RATIO', 1.25); /** * title magnification respect main font size */ define('K_TITLE_MAGNIFICATION', 1.3); /** * reduction factor for small font */ define('K_SMALL_RATIO', 2/3); /** * set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language */ define('K_THAI_TOPCHARS', true); /** * if true allows to call TCPDF methods using HTML syntax * IMPORTANT: For security reason, disable this feature if you are printing user HTML content. */ define('K_TCPDF_CALLS_IN_HTML', true); } //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/tcpdf_config.php
PHP
gpl2
5,958
<?php //============================================================+ // File name : tcpdf_config.php // Begin : 2004-06-11 // Last Update : 2010-08-19 // // Description : Alternative configuration file for TCPDF. // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * Alternative configuration file for TCPDF. * @author Nicola Asuni * @copyright 2004-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com * @package com.tecnick.tcpdf * @version 4.9.005 * @link http://tcpdf.sourceforge.net * @license http://www.gnu.org/copyleft/lesser.html LGPL * @since 2004-10-27 */ // DOCUMENT_ROOT fix for IIS Webserver if ((!isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) { if(isset($_SERVER['SCRIPT_FILENAME'])) { $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF']))); } elseif(isset($_SERVER['PATH_TRANSLATED'])) { $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF']))); } else { // define here your DOCUMENT_ROOT path if the previous fails $_SERVER['DOCUMENT_ROOT'] = '/var/www'; } } // Automatic calculation for the following K_PATH_MAIN constant $k_path_main = str_replace( '\\', '/', realpath(substr(dirname(__FILE__), 0, 0-strlen('config')))); if (substr($k_path_main, -1) != '/') { $k_path_main .= '/'; } /** * Installation path (/var/www/tcpdf/). * By default it is automatically calculated but you can also set it as a fixed string to improve performances. */ define ('K_PATH_MAIN', $k_path_main); // Automatic calculation for the following K_PATH_URL constant if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) { if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') { $k_path_url = 'https://'; } else { $k_path_url = 'http://'; } $k_path_url .= $_SERVER['HTTP_HOST']; $k_path_url .= str_replace( '\\', '/', substr(K_PATH_MAIN, (strlen($_SERVER['DOCUMENT_ROOT']) - 1))); } /** * URL path to tcpdf installation folder (http://localhost/tcpdf/). * By default it is automatically calculated but you can also set it as a fixed string to improve performances.. */ define ('K_PATH_URL', $k_path_url); /** * path for PDF fonts * use K_PATH_MAIN.'fonts/old/' for old non-UTF8 fonts */ define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); /** * cache directory for temporary files (full path) */ define ('K_PATH_CACHE', K_PATH_MAIN.'cache/'); /** * cache directory for temporary files (url path) */ define ('K_PATH_URL_CACHE', K_PATH_URL.'cache/'); /** *images directory */ define ('K_PATH_IMAGES', K_PATH_MAIN.'images/'); /** * blank image */ define ('K_BLANK_IMAGE', K_PATH_IMAGES.'_blank.png'); /** * page format */ define ('PDF_PAGE_FORMAT', 'A4'); /** * page orientation (P=portrait, L=landscape) */ define ('PDF_PAGE_ORIENTATION', 'P'); /** * document creator */ define ('PDF_CREATOR', 'TCPDF'); /** * document author */ define ('PDF_AUTHOR', 'TCPDF'); /** * header title */ define ('PDF_HEADER_TITLE', 'TCPDF Example'); /** * header description string */ define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); /** * image logo */ define ('PDF_HEADER_LOGO', 'tcpdf_logo.jpg'); /** * header logo image width [mm] */ define ('PDF_HEADER_LOGO_WIDTH', 30); /** * document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch] */ define ('PDF_UNIT', 'mm'); /** * header margin */ define ('PDF_MARGIN_HEADER', 5); /** * footer margin */ define ('PDF_MARGIN_FOOTER', 10); /** * top margin */ define ('PDF_MARGIN_TOP', 27); /** * bottom margin */ define ('PDF_MARGIN_BOTTOM', 25); /** * left margin */ define ('PDF_MARGIN_LEFT', 15); /** * right margin */ define ('PDF_MARGIN_RIGHT', 15); /** * default main font name */ define ('PDF_FONT_NAME_MAIN', 'helvetica'); /** * default main font size */ define ('PDF_FONT_SIZE_MAIN', 10); /** * default data font name */ define ('PDF_FONT_NAME_DATA', 'helvetica'); /** * default data font size */ define ('PDF_FONT_SIZE_DATA', 8); /** * default monospaced font name */ define ('PDF_FONT_MONOSPACED', 'courier'); /** * ratio used to adjust the conversion of pixels to user units */ define ('PDF_IMAGE_SCALE_RATIO', 1.25); /** * magnification factor for titles */ define('HEAD_MAGNIFICATION', 1.1); /** * height of cell repect font height */ define('K_CELL_HEIGHT_RATIO', 1.25); /** * title magnification respect main font size */ define('K_TITLE_MAGNIFICATION', 1.3); /** * reduction factor for small font */ define('K_SMALL_RATIO', 2/3); /** * set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language */ define('K_THAI_TOPCHARS', true); /** * if true allows to call TCPDF methods using HTML syntax * IMPORTANT: For security reason, disable this feature if you are printing user HTML content. */ define('K_TCPDF_CALLS_IN_HTML', true); //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/tcpdf_config_alt.php
PHP
gpl2
5,580
<?php //============================================================+ // File name : yid.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Welsh // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Welsh * @author Nicola Asuni * @since 2004-03-03 */ // Welsh global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'rtl'; $l['a_meta_language'] = 'yi'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'זייַט'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/yid.php
PHP
gpl2
1,200
<?php //============================================================+ // File name : hrv.php // Begin : 2010-10-26 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Croatian // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Croatian * @author Nicola Asuni * @since 2010-10-26 */ // Croatian global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'hr'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'stranica'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/hrv.php
PHP
gpl2
1,207
<?php //============================================================+ // File name : slv.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Slovene // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Slovene * @author Nicola Asuni * @since 2004-03-03 */ // Slovene global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'sl'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'stran'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/slv.php
PHP
gpl2
1,201
<?php //============================================================+ // File name : swe.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Swedish // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Swedish * @author Nicola Asuni * @since 2004-03-03 */ // Swedish global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'sv'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'sida'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/swe.php
PHP
gpl2
1,200
<?php //============================================================+ // File name : hat.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Haitian Creole // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Haitian Creole * @author Nicola Asuni * @since 2004-03-03 */ // Haitian Creole global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'ht'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'paj'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/hat.php
PHP
gpl2
1,220
<?php //============================================================+ // File name : ita.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Italian // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Italian * @author Nicola Asuni * @since 2004-03-03 */ // Italian global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'it'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'pagina'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/ita.php
PHP
gpl2
1,202
<?php //============================================================+ // File name : mlt.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Maltese // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Maltese * @author Nicola Asuni * @since 2004-03-03 */ // Maltese global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'mt'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'paġna'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/mlt.php
PHP
gpl2
1,202
<?php //============================================================+ // File name : por.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Portuguese // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Portuguese * @author Nicola Asuni * @since 2004-03-03 */ // Portuguese global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'pt'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'página'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/por.php
PHP
gpl2
1,212
<?php //============================================================+ // File name : swa.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Swahili // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Swahili * @author Nicola Asuni * @since 2004-03-03 */ // Swahili global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'sw'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'ukurasa'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/swa.php
PHP
gpl2
1,203
<?php //============================================================+ // File name : nob.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Norwegian Bokmål // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Norwegian Bokmål * @author Nicola Asuni * @since 2004-03-03 */ // Norwegian Bokmål global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'nb'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'side'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/nob.php
PHP
gpl2
1,230
<?php //============================================================+ // File name : kor.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Korean // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Korean * @author Nicola Asuni * @since 2004-03-03 */ // Korean global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'ko'; // TRANSLATIONS -------------------------------------- $l['w_page'] = '페이지'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/kor.php
PHP
gpl2
1,202
<?php //============================================================+ // File name : hye.php // Begin : 2010-10-26 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Armenian // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Armenian * @author Nicola Asuni * @since 2010-10-26 */ // Armenian global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'hy'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'էջ'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/hye.php
PHP
gpl2
1,203
<?php //============================================================+ // File name : mkd.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Macedonian // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Macedonian * @author Nicola Asuni * @since 2004-03-03 */ // Macedonian global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'mk'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'страница'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/mkd.php
PHP
gpl2
1,221
<?php //============================================================+ // File name : dan.php // Begin : 2010-10-26 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Danish // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Danish * @author Nicola Asuni * @since 2010-10-26 */ // Danish global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'da'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'side'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/dan.php
PHP
gpl2
1,197
<?php //============================================================+ // File name : urd.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Urdu // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Urdu * @author Nicola Asuni * @since 2004-03-03 */ // Urdu global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'rtl'; $l['a_meta_language'] = 'ur'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'صفحہ'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/urd.php
PHP
gpl2
1,195
<?php //============================================================+ // File name : spa.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Spanish; Castilian // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Spanish; Castilian * @author Nicola Asuni * @since 2004-03-03 */ // Spanish; Castilian global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'es'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'página'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/spa.php
PHP
gpl2
1,236
<?php //============================================================+ // File name : nld.php // Begin : 2010-10-26 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Dutch // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Dutch * @author Nicola Asuni * @since 2010-10-26 */ // Dutch global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'nl'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'pagina'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/nld.php
PHP
gpl2
1,196
<?php //============================================================+ // File name : msa.php // Begin : 2004-03-03 // Last Update : 2010-10-26 // // Description : Language module for TCPDF // (contains translated texts) // Malay // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com s.r.l. // Via Della Pace, 11 // 09044 Quartucciu (CA) // ITALY // www.tecnick.com // info@tecnick.com //============================================================+ /** * TCPDF language file (contains translated texts). * @package com.tecnick.tcpdf * @brief TCPDF language file: Malay * @author Nicola Asuni * @since 2004-03-03 */ // Malay global $l; $l = Array(); // PAGE META DESCRIPTORS -------------------------------------- $l['a_meta_charset'] = 'UTF-8'; $l['a_meta_dir'] = 'ltr'; $l['a_meta_language'] = 'ms'; // TRANSLATIONS -------------------------------------- $l['w_page'] = 'laman'; //============================================================+ // END OF FILE //============================================================+
zzyn125-bench
BigMelon/Backup/jslib_backup/jqSuitePHP_4_3_2_0/php/tcpdf/config/lang/msa.php
PHP
gpl2
1,195