api.qrcode.php 55 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342
  1. <?php
  2. /****************************************************************************\
  3. qrcode.php - Generate QR Codes. MIT license.
  4. Copyright for portions of this project are held by Kreative Software, 2016-2018.
  5. All other copyright for the project are held by Donald Becker, 2019
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. DEALINGS IN THE SOFTWARE.
  21. https://github.com/psyon/php-qrcode
  22. \****************************************************************************/
  23. class QRCode {
  24. /**
  25. * Data to render
  26. *
  27. * @var mixed
  28. */
  29. private $data;
  30. /**
  31. * QR Rendering options:
  32. *
  33. s - Symbology (type of QR code). One of:
  34. qr
  35. qr-l
  36. qr-m
  37. qr-q
  38. qr-h
  39. d - Data. Encode in Shift-JIS for kanji mode.
  40. w - Width of image. Overrides sf or sx.
  41. h - Height of image. Overrides sf or sy.
  42. sf - Scale factor. Default is 4.
  43. sx - Horizontal scale factor. Overrides sf.
  44. sy - Vertical scale factor. Overrides sf.
  45. p - Padding. Default is 0.
  46. pv - Top and bottom padding. Default is value of p.
  47. ph - Left and right padding. Default is value of p.
  48. pt - Top padding. Default is value of pv.
  49. pl - Left padding. Default is value of ph.
  50. pr - Right padding. Default is value of ph.
  51. pb - Bottom padding. Default is value of pv.
  52. bc - Background color in #RRGGBB format.
  53. fc - Foreground color in #RRGGBB format.
  54. md - Module density. A number between 0 and 1. Default is 1.
  55. wq - Width of quiet area units. Default is 1. Use 0 to suppress quiet area.
  56. wm - Width of narrow modules and spaces. Default is 1.
  57. *
  58. * @var array
  59. */
  60. private $options;
  61. public function __construct($data, $options = array()) {
  62. $defaults = array(
  63. 's' => 'qrl'
  64. );
  65. if (!is_array($options)) $options = array();
  66. $this->data = $data;
  67. $this->options = array_merge($defaults, $options);
  68. }
  69. /**
  70. * Outputs the generated QR code image.
  71. *
  72. * This method renders the QR code image and sends it as a response with the appropriate content type header.
  73. *
  74. * @return void
  75. */
  76. public function output_image() {
  77. $image = $this->render_image();
  78. header('Content-Type: image/png');
  79. imagepng($image);
  80. imagedestroy($image);
  81. }
  82. /**
  83. * Renders and returns an image based on the encoded data and options.
  84. *
  85. * @return resource|false The rendered image resource or false if an error occurred.
  86. */
  87. public function render_image() {
  88. list($code, $widths, $width, $height, $x, $y, $w, $h) = $this->encode_and_calculate_size($this->data, $this->options);
  89. $image = imagecreatetruecolor($width, $height);
  90. imagesavealpha($image, true);
  91. $bgcolor = (isset($this->options['bc']) ? $this->options['bc'] : 'FFFFFF');
  92. $bgcolor = $this->allocate_color($image, $bgcolor);
  93. imagefill($image, 0, 0, $bgcolor);
  94. $fgcolor = (isset($this->options['fc']) ? $this->options['fc'] : '000000');
  95. $fgcolor = $this->allocate_color($image, $fgcolor);
  96. $colors = array($bgcolor, $fgcolor);
  97. $density = (isset($this->options['md']) ? (float)$this->options['md'] : 1);
  98. list($width, $height) = $this->calculate_size($code, $widths);
  99. if ($width && $height) {
  100. $scale = min($w / $width, $h / $height);
  101. $scale = (($scale > 1) ? floor($scale) : 1);
  102. $x = floor($x + ($w - $width * $scale) / 2);
  103. $y = floor($y + ($h - $height * $scale) / 2);
  104. } else {
  105. $scale = 1;
  106. $x = floor($x + $w / 2);
  107. $y = floor($y + $h / 2);
  108. }
  109. $x += $code['q'][3] * $widths[0] * $scale;
  110. $y += $code['q'][0] * $widths[0] * $scale;
  111. $wh = $widths[1] * $scale;
  112. foreach ($code['b'] as $by => $row) {
  113. $y1 = $y + $by * $wh;
  114. foreach ($row as $bx => $color) {
  115. $x1 = $x + $bx * $wh;
  116. $mc = $colors[$color ? 1 : 0];
  117. $rx = floor($x1 + (1 - $density) * $wh / 2);
  118. $ry = floor($y1 + (1 - $density) * $wh / 2);
  119. $rw = ceil($wh * $density);
  120. $rh = ceil($wh * $density);
  121. imagefilledrectangle($image, $rx, $ry, $rx + $rw - 1, $ry + $rh - 1, $mc);
  122. }
  123. }
  124. return $image;
  125. }
  126. /* - - - - INTERNAL FUNCTIONS - - - - */
  127. private function encode_and_calculate_size($data, $options) {
  128. $code = $this->dispatch_encode($data, $options);
  129. $widths = array(
  130. (isset($options['wq']) ? (int)$options['wq'] : 1),
  131. (isset($options['wm']) ? (int)$options['wm'] : 1),
  132. );
  133. $size = $this->calculate_size($code, $widths);
  134. $dscale = 4;
  135. $scale = (isset($options['sf']) ? (float)$options['sf'] : $dscale);
  136. $scalex = (isset($options['sx']) ? (float)$options['sx'] : $scale);
  137. $scaley = (isset($options['sy']) ? (float)$options['sy'] : $scale);
  138. $dpadding = 0;
  139. $padding = (isset($options['p']) ? (int)$options['p'] : $dpadding);
  140. $vert = (isset($options['pv']) ? (int)$options['pv'] : $padding);
  141. $horiz = (isset($options['ph']) ? (int)$options['ph'] : $padding);
  142. $top = (isset($options['pt']) ? (int)$options['pt'] : $vert);
  143. $left = (isset($options['pl']) ? (int)$options['pl'] : $horiz);
  144. $right = (isset($options['pr']) ? (int)$options['pr'] : $horiz);
  145. $bottom = (isset($options['pb']) ? (int)$options['pb'] : $vert);
  146. $dwidth = ceil($size[0] * $scalex) + $left + $right;
  147. $dheight = ceil($size[1] * $scaley) + $top + $bottom;
  148. $iwidth = (isset($options['w']) ? (int)$options['w'] : $dwidth);
  149. $iheight = (isset($options['h']) ? (int)$options['h'] : $dheight);
  150. $swidth = $iwidth - $left - $right;
  151. $sheight = $iheight - $top - $bottom;
  152. return array($code, $widths, $iwidth, $iheight, $left, $top, $swidth, $sheight);
  153. }
  154. private function allocate_color($image, $color) {
  155. $color = preg_replace('/[^0-9A-Fa-f]/', '', $color);
  156. $r = hexdec(substr($color, 0, 2));
  157. $g = hexdec(substr($color, 2, 2));
  158. $b = hexdec(substr($color, 4, 2));
  159. return imagecolorallocate($image, $r, $g, $b);
  160. }
  161. /* - - - - DISPATCH - - - - */
  162. private function dispatch_encode($data, $options) {
  163. switch (strtolower(preg_replace('/[^A-Za-z0-9]/', '', $options['s']))) {
  164. case 'qrl':
  165. return $this->qr_encode($data, 0);
  166. case 'qrm':
  167. return $this->qr_encode($data, 1);
  168. case 'qrq':
  169. return $this->qr_encode($data, 2);
  170. case 'qrh':
  171. return $this->qr_encode($data, 3);
  172. default:
  173. return $this->qr_encode($data, 0);
  174. }
  175. return null;
  176. }
  177. /* - - - - MATRIX BARCODE RENDERER - - - - */
  178. private function calculate_size($code, $widths) {
  179. $width = (
  180. $code['q'][3] * $widths[0] +
  181. $code['s'][0] * $widths[1] +
  182. $code['q'][1] * $widths[0]
  183. );
  184. $height = (
  185. $code['q'][0] * $widths[0] +
  186. $code['s'][1] * $widths[1] +
  187. $code['q'][2] * $widths[0]
  188. );
  189. return array($width, $height);
  190. }
  191. /* - - - - QR ENCODER - - - - */
  192. private function qr_encode($data, $ecl) {
  193. list($mode, $vers, $ec, $data) = $this->qr_encode_data($data, $ecl);
  194. $data = $this->qr_encode_ec($data, $ec, $vers);
  195. list($size, $mtx) = $this->qr_create_matrix($vers, $data);
  196. list($mask, $mtx) = $this->qr_apply_best_mask($mtx, $size);
  197. $mtx = $this->qr_finalize_matrix($mtx, $size, $ecl, $mask, $vers);
  198. return array(
  199. 'q' => array(4, 4, 4, 4),
  200. 's' => array($size, $size),
  201. 'b' => $mtx
  202. );
  203. }
  204. private function qr_encode_data($data, $ecl) {
  205. $mode = $this->qr_detect_mode($data);
  206. $version = $this->qr_detect_version($data, $mode, $ecl);
  207. $version_group = (($version < 10) ? 0 : (($version < 27) ? 1 : 2));
  208. $ec_params = $this->qr_ec_params[($version - 1) * 4 + $ecl];
  209. /* Don't cut off mid-character if exceeding capacity. */
  210. $max_chars = $this->qr_capacity[$version - 1][$ecl][$mode];
  211. if ($mode == 3) $max_chars <<= 1;
  212. $data = substr($data, 0, $max_chars);
  213. /* Convert from character level to bit level. */
  214. switch ($mode) {
  215. case 0:
  216. $code = $this->qr_encode_numeric($data, $version_group);
  217. break;
  218. case 1:
  219. $code = $this->qr_encode_alphanumeric($data, $version_group);
  220. break;
  221. case 2:
  222. $code = $this->qr_encode_binary($data, $version_group);
  223. break;
  224. case 3:
  225. $code = $this->qr_encode_kanji($data, $version_group);
  226. break;
  227. }
  228. for ($i = 0; $i < 4; $i++) $code[] = 0;
  229. while (count($code) % 8) $code[] = 0;
  230. /* Convert from bit level to byte level. */
  231. $data = array();
  232. for ($i = 0, $n = count($code); $i < $n; $i += 8) {
  233. $byte = 0;
  234. if ($code[$i + 0]) $byte |= 0x80;
  235. if ($code[$i + 1]) $byte |= 0x40;
  236. if ($code[$i + 2]) $byte |= 0x20;
  237. if ($code[$i + 3]) $byte |= 0x10;
  238. if ($code[$i + 4]) $byte |= 0x08;
  239. if ($code[$i + 5]) $byte |= 0x04;
  240. if ($code[$i + 6]) $byte |= 0x02;
  241. if ($code[$i + 7]) $byte |= 0x01;
  242. $data[] = $byte;
  243. }
  244. for ($i = count($data), $a = 1, $n = $ec_params[0]; $i < $n; $i++, $a ^= 1) {
  245. $data[] = $a ? 236 : 17;
  246. }
  247. /* Return. */
  248. return array($mode, $version, $ec_params, $data);
  249. }
  250. private function qr_detect_mode($data) {
  251. $numeric = '/^[0-9]*$/';
  252. $alphanumeric = '/^[0-9A-Z .\/:$%*+-]*$/';
  253. $kanji = '/^([\x81-\x9F\xE0-\xEA][\x40-\xFC]|[\xEB][\x40-\xBF])*$/';
  254. if (preg_match($numeric, $data)) return 0;
  255. if (preg_match($alphanumeric, $data)) return 1;
  256. if (preg_match($kanji, $data)) return 3;
  257. return 2;
  258. }
  259. private function qr_detect_version($data, $mode, $ecl) {
  260. $length = strlen($data);
  261. if ($mode == 3) $length >>= 1;
  262. for ($v = 0; $v < 40; $v++) {
  263. if ($length <= $this->qr_capacity[$v][$ecl][$mode]) {
  264. return $v + 1;
  265. }
  266. }
  267. return 40;
  268. }
  269. private function qr_encode_numeric($data, $version_group) {
  270. $code = array(0, 0, 0, 1);
  271. $length = strlen($data);
  272. switch ($version_group) {
  273. case 2: /* 27 - 40 */
  274. $code[] = $length & 0x2000;
  275. $code[] = $length & 0x1000;
  276. case 1: /* 10 - 26 */
  277. $code[] = $length & 0x0800;
  278. $code[] = $length & 0x0400;
  279. case 0: /* 1 - 9 */
  280. $code[] = $length & 0x0200;
  281. $code[] = $length & 0x0100;
  282. $code[] = $length & 0x0080;
  283. $code[] = $length & 0x0040;
  284. $code[] = $length & 0x0020;
  285. $code[] = $length & 0x0010;
  286. $code[] = $length & 0x0008;
  287. $code[] = $length & 0x0004;
  288. $code[] = $length & 0x0002;
  289. $code[] = $length & 0x0001;
  290. }
  291. for ($i = 0; $i < $length; $i += 3) {
  292. $group = substr($data, $i, 3);
  293. switch (strlen($group)) {
  294. case 3:
  295. $code[] = $group & 0x200;
  296. $code[] = $group & 0x100;
  297. $code[] = $group & 0x080;
  298. case 2:
  299. $code[] = $group & 0x040;
  300. $code[] = $group & 0x020;
  301. $code[] = $group & 0x010;
  302. case 1:
  303. $code[] = $group & 0x008;
  304. $code[] = $group & 0x004;
  305. $code[] = $group & 0x002;
  306. $code[] = $group & 0x001;
  307. }
  308. }
  309. return $code;
  310. }
  311. private function qr_encode_alphanumeric($data, $version_group) {
  312. $alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:';
  313. $code = array(0, 0, 1, 0);
  314. $length = strlen($data);
  315. switch ($version_group) {
  316. case 2: /* 27 - 40 */
  317. $code[] = $length & 0x1000;
  318. $code[] = $length & 0x0800;
  319. case 1: /* 10 - 26 */
  320. $code[] = $length & 0x0400;
  321. $code[] = $length & 0x0200;
  322. case 0: /* 1 - 9 */
  323. $code[] = $length & 0x0100;
  324. $code[] = $length & 0x0080;
  325. $code[] = $length & 0x0040;
  326. $code[] = $length & 0x0020;
  327. $code[] = $length & 0x0010;
  328. $code[] = $length & 0x0008;
  329. $code[] = $length & 0x0004;
  330. $code[] = $length & 0x0002;
  331. $code[] = $length & 0x0001;
  332. }
  333. for ($i = 0; $i < $length; $i += 2) {
  334. $group = substr($data, $i, 2);
  335. if (strlen($group) > 1) {
  336. $c1 = strpos($alphabet, substr($group, 0, 1));
  337. $c2 = strpos($alphabet, substr($group, 1, 1));
  338. $ch = $c1 * 45 + $c2;
  339. $code[] = $ch & 0x400;
  340. $code[] = $ch & 0x200;
  341. $code[] = $ch & 0x100;
  342. $code[] = $ch & 0x080;
  343. $code[] = $ch & 0x040;
  344. $code[] = $ch & 0x020;
  345. $code[] = $ch & 0x010;
  346. $code[] = $ch & 0x008;
  347. $code[] = $ch & 0x004;
  348. $code[] = $ch & 0x002;
  349. $code[] = $ch & 0x001;
  350. } else {
  351. $ch = strpos($alphabet, $group);
  352. $code[] = $ch & 0x020;
  353. $code[] = $ch & 0x010;
  354. $code[] = $ch & 0x008;
  355. $code[] = $ch & 0x004;
  356. $code[] = $ch & 0x002;
  357. $code[] = $ch & 0x001;
  358. }
  359. }
  360. return $code;
  361. }
  362. private function qr_encode_binary($data, $version_group) {
  363. $code = array(0, 1, 0, 0);
  364. $length = strlen($data);
  365. switch ($version_group) {
  366. case 2: /* 27 - 40 */
  367. case 1: /* 10 - 26 */
  368. $code[] = $length & 0x8000;
  369. $code[] = $length & 0x4000;
  370. $code[] = $length & 0x2000;
  371. $code[] = $length & 0x1000;
  372. $code[] = $length & 0x0800;
  373. $code[] = $length & 0x0400;
  374. $code[] = $length & 0x0200;
  375. $code[] = $length & 0x0100;
  376. case 0: /* 1 - 9 */
  377. $code[] = $length & 0x0080;
  378. $code[] = $length & 0x0040;
  379. $code[] = $length & 0x0020;
  380. $code[] = $length & 0x0010;
  381. $code[] = $length & 0x0008;
  382. $code[] = $length & 0x0004;
  383. $code[] = $length & 0x0002;
  384. $code[] = $length & 0x0001;
  385. }
  386. for ($i = 0; $i < $length; $i++) {
  387. $ch = ord(substr($data, $i, 1));
  388. $code[] = $ch & 0x80;
  389. $code[] = $ch & 0x40;
  390. $code[] = $ch & 0x20;
  391. $code[] = $ch & 0x10;
  392. $code[] = $ch & 0x08;
  393. $code[] = $ch & 0x04;
  394. $code[] = $ch & 0x02;
  395. $code[] = $ch & 0x01;
  396. }
  397. return $code;
  398. }
  399. private function qr_encode_kanji($data, $version_group) {
  400. $code = array(1, 0, 0, 0);
  401. $length = strlen($data);
  402. switch ($version_group) {
  403. case 2: /* 27 - 40 */
  404. $code[] = $length & 0x1000;
  405. $code[] = $length & 0x0800;
  406. case 1: /* 10 - 26 */
  407. $code[] = $length & 0x0400;
  408. $code[] = $length & 0x0200;
  409. case 0: /* 1 - 9 */
  410. $code[] = $length & 0x0100;
  411. $code[] = $length & 0x0080;
  412. $code[] = $length & 0x0040;
  413. $code[] = $length & 0x0020;
  414. $code[] = $length & 0x0010;
  415. $code[] = $length & 0x0008;
  416. $code[] = $length & 0x0004;
  417. $code[] = $length & 0x0002;
  418. }
  419. for ($i = 0; $i < $length; $i += 2) {
  420. $group = substr($data, $i, 2);
  421. $c1 = ord(substr($group, 0, 1));
  422. $c2 = ord(substr($group, 1, 1));
  423. if ($c1 >= 0x81 && $c1 <= 0x9F && $c2 >= 0x40 && $c2 <= 0xFC) {
  424. $ch = ($c1 - 0x81) * 0xC0 + ($c2 - 0x40);
  425. } else if (
  426. ($c1 >= 0xE0 && $c1 <= 0xEA && $c2 >= 0x40 && $c2 <= 0xFC) ||
  427. ($c1 == 0xEB && $c2 >= 0x40 && $c2 <= 0xBF)
  428. ) {
  429. $ch = ($c1 - 0xC1) * 0xC0 + ($c2 - 0x40);
  430. } else {
  431. $ch = 0;
  432. }
  433. $code[] = $ch & 0x1000;
  434. $code[] = $ch & 0x0800;
  435. $code[] = $ch & 0x0400;
  436. $code[] = $ch & 0x0200;
  437. $code[] = $ch & 0x0100;
  438. $code[] = $ch & 0x0080;
  439. $code[] = $ch & 0x0040;
  440. $code[] = $ch & 0x0020;
  441. $code[] = $ch & 0x0010;
  442. $code[] = $ch & 0x0008;
  443. $code[] = $ch & 0x0004;
  444. $code[] = $ch & 0x0002;
  445. $code[] = $ch & 0x0001;
  446. }
  447. return $code;
  448. }
  449. private function qr_encode_ec($data, $ec_params, $version) {
  450. $blocks = $this->qr_ec_split($data, $ec_params);
  451. $ec_blocks = array();
  452. for ($i = 0, $n = count($blocks); $i < $n; $i++) {
  453. $ec_blocks[] = $this->qr_ec_divide($blocks[$i], $ec_params);
  454. }
  455. $data = $this->qr_ec_interleave($blocks);
  456. $ec_data = $this->qr_ec_interleave($ec_blocks);
  457. $code = array();
  458. foreach ($data as $ch) {
  459. $code[] = $ch & 0x80;
  460. $code[] = $ch & 0x40;
  461. $code[] = $ch & 0x20;
  462. $code[] = $ch & 0x10;
  463. $code[] = $ch & 0x08;
  464. $code[] = $ch & 0x04;
  465. $code[] = $ch & 0x02;
  466. $code[] = $ch & 0x01;
  467. }
  468. foreach ($ec_data as $ch) {
  469. $code[] = $ch & 0x80;
  470. $code[] = $ch & 0x40;
  471. $code[] = $ch & 0x20;
  472. $code[] = $ch & 0x10;
  473. $code[] = $ch & 0x08;
  474. $code[] = $ch & 0x04;
  475. $code[] = $ch & 0x02;
  476. $code[] = $ch & 0x01;
  477. }
  478. for ($n = $this->qr_remainder_bits[$version - 1]; $n > 0; $n--) {
  479. $code[] = 0;
  480. }
  481. return $code;
  482. }
  483. private function qr_ec_split($data, $ec_params) {
  484. $blocks = array();
  485. $offset = 0;
  486. for ($i = $ec_params[2], $length = $ec_params[3]; $i > 0; $i--) {
  487. $blocks[] = array_slice($data, $offset, $length);
  488. $offset += $length;
  489. }
  490. for ($i = $ec_params[4], $length = $ec_params[5]; $i > 0; $i--) {
  491. $blocks[] = array_slice($data, $offset, $length);
  492. $offset += $length;
  493. }
  494. return $blocks;
  495. }
  496. private function qr_ec_divide($data, $ec_params) {
  497. $num_data = count($data);
  498. $num_error = $ec_params[1];
  499. $generator = $this->qr_ec_polynomials[$num_error];
  500. $message = $data;
  501. for ($i = 0; $i < $num_error; $i++) {
  502. $message[] = 0;
  503. }
  504. for ($i = 0; $i < $num_data; $i++) {
  505. if ($message[$i]) {
  506. $leadterm = $this->qr_log[$message[$i]];
  507. for ($j = 0; $j <= $num_error; $j++) {
  508. $term = ($generator[$j] + $leadterm) % 255;
  509. $message[$i + $j] ^= $this->qr_exp[$term];
  510. }
  511. }
  512. }
  513. return array_slice($message, $num_data, $num_error);
  514. }
  515. private function qr_ec_interleave($blocks) {
  516. $data = array();
  517. $num_blocks = count($blocks);
  518. for ($offset = 0; true; $offset++) {
  519. $break = true;
  520. for ($i = 0; $i < $num_blocks; $i++) {
  521. if (isset($blocks[$i][$offset])) {
  522. $data[] = $blocks[$i][$offset];
  523. $break = false;
  524. }
  525. }
  526. if ($break) break;
  527. }
  528. return $data;
  529. }
  530. private function qr_create_matrix($version, $data) {
  531. $size = $version * 4 + 17;
  532. $matrix = array();
  533. for ($i = 0; $i < $size; $i++) {
  534. $row = array();
  535. for ($j = 0; $j < $size; $j++) {
  536. $row[] = 0;
  537. }
  538. $matrix[] = $row;
  539. }
  540. /* Finder patterns. */
  541. for ($i = 0; $i < 8; $i++) {
  542. for ($j = 0; $j < 8; $j++) {
  543. $m = (($i == 7 || $j == 7) ? 2 : (($i == 0 || $j == 0 || $i == 6 || $j == 6) ? 3 : (($i == 1 || $j == 1 || $i == 5 || $j == 5) ? 2 : 3)));
  544. $matrix[$i][$j] = $m;
  545. $matrix[$size - $i - 1][$j] = $m;
  546. $matrix[$i][$size - $j - 1] = $m;
  547. }
  548. }
  549. /* Alignment patterns. */
  550. if ($version >= 2) {
  551. $alignment = $this->qr_alignment_patterns[$version - 2];
  552. foreach ($alignment as $i) {
  553. foreach ($alignment as $j) {
  554. if (!$matrix[$i][$j]) {
  555. for ($ii = -2; $ii <= 2; $ii++) {
  556. for ($jj = -2; $jj <= 2; $jj++) {
  557. $m = (max(abs($ii), abs($jj)) & 1) ^ 3;
  558. $matrix[$i + $ii][$j + $jj] = $m;
  559. }
  560. }
  561. }
  562. }
  563. }
  564. }
  565. /* Timing patterns. */
  566. for ($i = $size - 9; $i >= 8; $i--) {
  567. $matrix[$i][6] = ($i & 1) ^ 3;
  568. $matrix[6][$i] = ($i & 1) ^ 3;
  569. }
  570. /* Dark module. Such an ominous name for such an innocuous thing. */
  571. $matrix[$size - 8][8] = 3;
  572. /* Format information area. */
  573. for ($i = 0; $i <= 8; $i++) {
  574. if (!$matrix[$i][8]) $matrix[$i][8] = 1;
  575. if (!$matrix[8][$i]) $matrix[8][$i] = 1;
  576. if ($i && !$matrix[$size - $i][8]) $matrix[$size - $i][8] = 1;
  577. if ($i && !$matrix[8][$size - $i]) $matrix[8][$size - $i] = 1;
  578. }
  579. /* Version information area. */
  580. if ($version >= 7) {
  581. for ($i = 9; $i < 12; $i++) {
  582. for ($j = 0; $j < 6; $j++) {
  583. $matrix[$size - $i][$j] = 1;
  584. $matrix[$j][$size - $i] = 1;
  585. }
  586. }
  587. }
  588. /* Data. */
  589. $col = $size - 1;
  590. $row = $size - 1;
  591. $dir = -1;
  592. $offset = 0;
  593. $length = count($data);
  594. while ($col > 0 && $offset < $length) {
  595. if (!$matrix[$row][$col]) {
  596. $matrix[$row][$col] = $data[$offset] ? 5 : 4;
  597. $offset++;
  598. }
  599. if (!$matrix[$row][$col - 1]) {
  600. $matrix[$row][$col - 1] = $data[$offset] ? 5 : 4;
  601. $offset++;
  602. }
  603. $row += $dir;
  604. if ($row < 0 || $row >= $size) {
  605. $dir = -$dir;
  606. $row += $dir;
  607. $col -= 2;
  608. if ($col == 6) $col--;
  609. }
  610. }
  611. return array($size, $matrix);
  612. }
  613. private function qr_apply_best_mask($matrix, $size) {
  614. $best_mask = 0;
  615. $best_matrix = $this->qr_apply_mask($matrix, $size, $best_mask);
  616. $best_penalty = $this->qr_penalty($best_matrix, $size);
  617. for ($test_mask = 1; $test_mask < 8; $test_mask++) {
  618. $test_matrix = $this->qr_apply_mask($matrix, $size, $test_mask);
  619. $test_penalty = $this->qr_penalty($test_matrix, $size);
  620. if ($test_penalty < $best_penalty) {
  621. $best_mask = $test_mask;
  622. $best_matrix = $test_matrix;
  623. $best_penalty = $test_penalty;
  624. }
  625. }
  626. return array($best_mask, $best_matrix);
  627. }
  628. private function qr_apply_mask($matrix, $size, $mask) {
  629. for ($i = 0; $i < $size; $i++) {
  630. for ($j = 0; $j < $size; $j++) {
  631. if ($matrix[$i][$j] >= 4) {
  632. if ($this->qr_mask($mask, $i, $j)) {
  633. $matrix[$i][$j] ^= 1;
  634. }
  635. }
  636. }
  637. }
  638. return $matrix;
  639. }
  640. private function qr_mask($mask, $r, $c) {
  641. switch ($mask) {
  642. case 0:
  643. return !(($r + $c) % 2);
  644. case 1:
  645. return !(($r) % 2);
  646. case 2:
  647. return !(($c) % 3);
  648. case 3:
  649. return !(($r + $c) % 3);
  650. case 4:
  651. return !((floor(($r) / 2) + floor(($c) / 3)) % 2);
  652. case 5:
  653. return !(((($r * $c) % 2) + (($r * $c) % 3)));
  654. case 6:
  655. return !(((($r * $c) % 2) + (($r * $c) % 3)) % 2);
  656. case 7:
  657. return !(((($r + $c) % 2) + (($r * $c) % 3)) % 2);
  658. }
  659. }
  660. private function qr_penalty(&$matrix, $size) {
  661. $score = $this->qr_penalty_1($matrix, $size);
  662. $score += $this->qr_penalty_2($matrix, $size);
  663. $score += $this->qr_penalty_3($matrix, $size);
  664. $score += $this->qr_penalty_4($matrix, $size);
  665. return $score;
  666. }
  667. private function qr_penalty_1(&$matrix, $size) {
  668. $score = 0;
  669. for ($i = 0; $i < $size; $i++) {
  670. $rowvalue = 0;
  671. $rowcount = 0;
  672. $colvalue = 0;
  673. $colcount = 0;
  674. for ($j = 0; $j < $size; $j++) {
  675. $rv = ($matrix[$i][$j] == 5 || $matrix[$i][$j] == 3) ? 1 : 0;
  676. $cv = ($matrix[$j][$i] == 5 || $matrix[$j][$i] == 3) ? 1 : 0;
  677. if ($rv == $rowvalue) {
  678. $rowcount++;
  679. } else {
  680. if ($rowcount >= 5) $score += $rowcount - 2;
  681. $rowvalue = $rv;
  682. $rowcount = 1;
  683. }
  684. if ($cv == $colvalue) {
  685. $colcount++;
  686. } else {
  687. if ($colcount >= 5) $score += $colcount - 2;
  688. $colvalue = $cv;
  689. $colcount = 1;
  690. }
  691. }
  692. if ($rowcount >= 5) $score += $rowcount - 2;
  693. if ($colcount >= 5) $score += $colcount - 2;
  694. }
  695. return $score;
  696. }
  697. private function qr_penalty_2(&$matrix, $size) {
  698. $score = 0;
  699. for ($i = 1; $i < $size; $i++) {
  700. for ($j = 1; $j < $size; $j++) {
  701. $v1 = $matrix[$i - 1][$j - 1];
  702. $v2 = $matrix[$i - 1][$j];
  703. $v3 = $matrix[$i][$j - 1];
  704. $v4 = $matrix[$i][$j];
  705. $v1 = ($v1 == 5 || $v1 == 3) ? 1 : 0;
  706. $v2 = ($v2 == 5 || $v2 == 3) ? 1 : 0;
  707. $v3 = ($v3 == 5 || $v3 == 3) ? 1 : 0;
  708. $v4 = ($v4 == 5 || $v4 == 3) ? 1 : 0;
  709. if ($v1 == $v2 && $v2 == $v3 && $v3 == $v4) $score += 3;
  710. }
  711. }
  712. return $score;
  713. }
  714. private function qr_penalty_3(&$matrix, $size) {
  715. $score = 0;
  716. for ($i = 0; $i < $size; $i++) {
  717. $rowvalue = 0;
  718. $colvalue = 0;
  719. for ($j = 0; $j < 11; $j++) {
  720. $rv = ($matrix[$i][$j] == 5 || $matrix[$i][$j] == 3) ? 1 : 0;
  721. $cv = ($matrix[$j][$i] == 5 || $matrix[$j][$i] == 3) ? 1 : 0;
  722. $rowvalue = (($rowvalue << 1) & 0x7FF) | $rv;
  723. $colvalue = (($colvalue << 1) & 0x7FF) | $cv;
  724. }
  725. if ($rowvalue == 0x5D0 || $rowvalue == 0x5D) $score += 40;
  726. if ($colvalue == 0x5D0 || $colvalue == 0x5D) $score += 40;
  727. for ($j = 11; $j < $size; $j++) {
  728. $rv = ($matrix[$i][$j] == 5 || $matrix[$i][$j] == 3) ? 1 : 0;
  729. $cv = ($matrix[$j][$i] == 5 || $matrix[$j][$i] == 3) ? 1 : 0;
  730. $rowvalue = (($rowvalue << 1) & 0x7FF) | $rv;
  731. $colvalue = (($colvalue << 1) & 0x7FF) | $cv;
  732. if ($rowvalue == 0x5D0 || $rowvalue == 0x5D) $score += 40;
  733. if ($colvalue == 0x5D0 || $colvalue == 0x5D) $score += 40;
  734. }
  735. }
  736. return $score;
  737. }
  738. private function qr_penalty_4(&$matrix, $size) {
  739. $dark = 0;
  740. for ($i = 0; $i < $size; $i++) {
  741. for ($j = 0; $j < $size; $j++) {
  742. if ($matrix[$i][$j] == 5 || $matrix[$i][$j] == 3) {
  743. $dark++;
  744. }
  745. }
  746. }
  747. $dark *= 20;
  748. $dark /= $size * $size;
  749. $a = abs(floor($dark) - 10);
  750. $b = abs(ceil($dark) - 10);
  751. return min($a, $b) * 10;
  752. }
  753. private function qr_finalize_matrix($matrix, $size, $ecl, $mask, $version) {
  754. /* Format Info */
  755. $format = $this->qr_format_info[$ecl * 8 + $mask];
  756. $matrix[8][0] = $format[0];
  757. $matrix[8][1] = $format[1];
  758. $matrix[8][2] = $format[2];
  759. $matrix[8][3] = $format[3];
  760. $matrix[8][4] = $format[4];
  761. $matrix[8][5] = $format[5];
  762. $matrix[8][7] = $format[6];
  763. $matrix[8][8] = $format[7];
  764. $matrix[7][8] = $format[8];
  765. $matrix[5][8] = $format[9];
  766. $matrix[4][8] = $format[10];
  767. $matrix[3][8] = $format[11];
  768. $matrix[2][8] = $format[12];
  769. $matrix[1][8] = $format[13];
  770. $matrix[0][8] = $format[14];
  771. $matrix[$size - 1][8] = $format[0];
  772. $matrix[$size - 2][8] = $format[1];
  773. $matrix[$size - 3][8] = $format[2];
  774. $matrix[$size - 4][8] = $format[3];
  775. $matrix[$size - 5][8] = $format[4];
  776. $matrix[$size - 6][8] = $format[5];
  777. $matrix[$size - 7][8] = $format[6];
  778. $matrix[8][$size - 8] = $format[7];
  779. $matrix[8][$size - 7] = $format[8];
  780. $matrix[8][$size - 6] = $format[9];
  781. $matrix[8][$size - 5] = $format[10];
  782. $matrix[8][$size - 4] = $format[11];
  783. $matrix[8][$size - 3] = $format[12];
  784. $matrix[8][$size - 2] = $format[13];
  785. $matrix[8][$size - 1] = $format[14];
  786. /* Version Info */
  787. if ($version >= 7) {
  788. $version = $this->qr_version_info[$version - 7];
  789. for ($i = 0; $i < 18; $i++) {
  790. $r = $size - 9 - ($i % 3);
  791. $c = 5 - floor($i / 3);
  792. $matrix[$r][$c] = $version[$i];
  793. $matrix[$c][$r] = $version[$i];
  794. }
  795. }
  796. /* Patterns & Data */
  797. for ($i = 0; $i < $size; $i++) {
  798. for ($j = 0; $j < $size; $j++) {
  799. $matrix[$i][$j] &= 1;
  800. }
  801. }
  802. return $matrix;
  803. }
  804. /* maximum encodable characters = $qr_capacity [ (version - 1) ] */
  805. /* [ (0 for L, 1 for M, 2 for Q, 3 for H) ] */
  806. /* [ (0 for numeric, 1 for alpha, 2 for binary, 3 for kanji) ] */
  807. private $qr_capacity = array(
  808. array(array(41, 25, 17, 10), array(34, 20, 14, 8), array(27, 16, 11, 7), array(17, 10, 7, 4)),
  809. array(array(77, 47, 32, 20), array(63, 38, 26, 16), array(48, 29, 20, 12), array(34, 20, 14, 8)),
  810. array(array(127, 77, 53, 32), array(101, 61, 42, 26), array(77, 47, 32, 20), array(58, 35, 24, 15)),
  811. array(array(187, 114, 78, 48), array(149, 90, 62, 38), array(111, 67, 46, 28), array(82, 50, 34, 21)),
  812. array(array(255, 154, 106, 65), array(202, 122, 84, 52), array(144, 87, 60, 37), array(106, 64, 44, 27)),
  813. array(array(322, 195, 134, 82), array(255, 154, 106, 65), array(178, 108, 74, 45), array(139, 84, 58, 36)),
  814. array(array(370, 224, 154, 95), array(293, 178, 122, 75), array(207, 125, 86, 53), array(154, 93, 64, 39)),
  815. array(array(461, 279, 192, 118), array(365, 221, 152, 93), array(259, 157, 108, 66), array(202, 122, 84, 52)),
  816. array(array(552, 335, 230, 141), array(432, 262, 180, 111), array(312, 189, 130, 80), array(235, 143, 98, 60)),
  817. array(array(652, 395, 271, 167), array(513, 311, 213, 131), array(364, 221, 151, 93), array(288, 174, 119, 74)),
  818. array(array(772, 468, 321, 198), array(604, 366, 251, 155), array(427, 259, 177, 109), array(331, 200, 137, 85)),
  819. array(array(883, 535, 367, 226), array(691, 419, 287, 177), array(489, 296, 203, 125), array(374, 227, 155, 96)),
  820. array(array(1022, 619, 425, 262), array(796, 483, 331, 204), array(580, 352, 241, 149), array(427, 259, 177, 109)),
  821. array(array(1101, 667, 458, 282), array(871, 528, 362, 223), array(621, 376, 258, 159), array(468, 283, 194, 120)),
  822. array(array(1250, 758, 520, 320), array(991, 600, 412, 254), array(703, 426, 292, 180), array(530, 321, 220, 136)),
  823. array(array(1408, 854, 586, 361), array(1082, 656, 450, 277), array(775, 470, 322, 198), array(602, 365, 250, 154)),
  824. array(array(1548, 938, 644, 397), array(1212, 734, 504, 310), array(876, 531, 364, 224), array(674, 408, 280, 173)),
  825. array(array(1725, 1046, 718, 442), array(1346, 816, 560, 345), array(948, 574, 394, 243), array(746, 452, 310, 191)),
  826. array(array(1903, 1153, 792, 488), array(1500, 909, 624, 384), array(1063, 644, 442, 272), array(813, 493, 338, 208)),
  827. array(array(2061, 1249, 858, 528), array(1600, 970, 666, 410), array(1159, 702, 482, 297), array(919, 557, 382, 235)),
  828. array(array(2232, 1352, 929, 572), array(1708, 1035, 711, 438), array(1224, 742, 509, 314), array(969, 587, 403, 248)),
  829. array(array(2409, 1460, 1003, 618), array(1872, 1134, 779, 480), array(1358, 823, 565, 348), array(1056, 640, 439, 270)),
  830. array(array(2620, 1588, 1091, 672), array(2059, 1248, 857, 528), array(1468, 890, 611, 376), array(1108, 672, 461, 284)),
  831. array(array(2812, 1704, 1171, 721), array(2188, 1326, 911, 561), array(1588, 963, 661, 407), array(1228, 744, 511, 315)),
  832. array(array(3057, 1853, 1273, 784), array(2395, 1451, 997, 614), array(1718, 1041, 715, 440), array(1286, 779, 535, 330)),
  833. array(array(3283, 1990, 1367, 842), array(2544, 1542, 1059, 652), array(1804, 1094, 751, 462), array(1425, 864, 593, 365)),
  834. array(array(3517, 2132, 1465, 902), array(2701, 1637, 1125, 692), array(1933, 1172, 805, 496), array(1501, 910, 625, 385)),
  835. array(array(3669, 2223, 1528, 940), array(2857, 1732, 1190, 732), array(2085, 1263, 868, 534), array(1581, 958, 658, 405)),
  836. array(array(3909, 2369, 1628, 1002), array(3035, 1839, 1264, 778), array(2181, 1322, 908, 559), array(1677, 1016, 698, 430)),
  837. array(array(4158, 2520, 1732, 1066), array(3289, 1994, 1370, 843), array(2358, 1429, 982, 604), array(1782, 1080, 742, 457)),
  838. array(array(4417, 2677, 1840, 1132), array(3486, 2113, 1452, 894), array(2473, 1499, 1030, 634), array(1897, 1150, 790, 486)),
  839. array(array(4686, 2840, 1952, 1201), array(3693, 2238, 1538, 947), array(2670, 1618, 1112, 684), array(2022, 1226, 842, 518)),
  840. array(array(4965, 3009, 2068, 1273), array(3909, 2369, 1628, 1002), array(2805, 1700, 1168, 719), array(2157, 1307, 898, 553)),
  841. array(array(5253, 3183, 2188, 1347), array(4134, 2506, 1722, 1060), array(2949, 1787, 1228, 756), array(2301, 1394, 958, 590)),
  842. array(array(5529, 3351, 2303, 1417), array(4343, 2632, 1809, 1113), array(3081, 1867, 1283, 790), array(2361, 1431, 983, 605)),
  843. array(array(5836, 3537, 2431, 1496), array(4588, 2780, 1911, 1176), array(3244, 1966, 1351, 832), array(2524, 1530, 1051, 647)),
  844. array(array(6153, 3729, 2563, 1577), array(4775, 2894, 1989, 1224), array(3417, 2071, 1423, 876), array(2625, 1591, 1093, 673)),
  845. array(array(6479, 3927, 2699, 1661), array(5039, 3054, 2099, 1292), array(3599, 2181, 1499, 923), array(2735, 1658, 1139, 701)),
  846. array(array(6743, 4087, 2809, 1729), array(5313, 3220, 2213, 1362), array(3791, 2298, 1579, 972), array(2927, 1774, 1219, 750)),
  847. array(array(7089, 4296, 2953, 1817), array(5596, 3391, 2331, 1435), array(3993, 2420, 1663, 1024), array(3057, 1852, 1273, 784)),
  848. );
  849. /* $qr_ec_params[ */
  850. /* 4 * (version - 1) + (0 for L, 1 for M, 2 for Q, 3 for H) */
  851. /* ] = array( */
  852. /* total number of data codewords, */
  853. /* number of error correction codewords per block, */
  854. /* number of blocks in first group, */
  855. /* number of data codewords per block in first group, */
  856. /* number of blocks in second group, */
  857. /* number of data codewords per block in second group */
  858. /* ); */
  859. private $qr_ec_params = array(
  860. array(19, 7, 1, 19, 0, 0),
  861. array(16, 10, 1, 16, 0, 0),
  862. array(13, 13, 1, 13, 0, 0),
  863. array(9, 17, 1, 9, 0, 0),
  864. array(34, 10, 1, 34, 0, 0),
  865. array(28, 16, 1, 28, 0, 0),
  866. array(22, 22, 1, 22, 0, 0),
  867. array(16, 28, 1, 16, 0, 0),
  868. array(55, 15, 1, 55, 0, 0),
  869. array(44, 26, 1, 44, 0, 0),
  870. array(34, 18, 2, 17, 0, 0),
  871. array(26, 22, 2, 13, 0, 0),
  872. array(80, 20, 1, 80, 0, 0),
  873. array(64, 18, 2, 32, 0, 0),
  874. array(48, 26, 2, 24, 0, 0),
  875. array(36, 16, 4, 9, 0, 0),
  876. array(108, 26, 1, 108, 0, 0),
  877. array(86, 24, 2, 43, 0, 0),
  878. array(62, 18, 2, 15, 2, 16),
  879. array(46, 22, 2, 11, 2, 12),
  880. array(136, 18, 2, 68, 0, 0),
  881. array(108, 16, 4, 27, 0, 0),
  882. array(76, 24, 4, 19, 0, 0),
  883. array(60, 28, 4, 15, 0, 0),
  884. array(156, 20, 2, 78, 0, 0),
  885. array(124, 18, 4, 31, 0, 0),
  886. array(88, 18, 2, 14, 4, 15),
  887. array(66, 26, 4, 13, 1, 14),
  888. array(194, 24, 2, 97, 0, 0),
  889. array(154, 22, 2, 38, 2, 39),
  890. array(110, 22, 4, 18, 2, 19),
  891. array(86, 26, 4, 14, 2, 15),
  892. array(232, 30, 2, 116, 0, 0),
  893. array(182, 22, 3, 36, 2, 37),
  894. array(132, 20, 4, 16, 4, 17),
  895. array(100, 24, 4, 12, 4, 13),
  896. array(274, 18, 2, 68, 2, 69),
  897. array(216, 26, 4, 43, 1, 44),
  898. array(154, 24, 6, 19, 2, 20),
  899. array(122, 28, 6, 15, 2, 16),
  900. array(324, 20, 4, 81, 0, 0),
  901. array(254, 30, 1, 50, 4, 51),
  902. array(180, 28, 4, 22, 4, 23),
  903. array(140, 24, 3, 12, 8, 13),
  904. array(370, 24, 2, 92, 2, 93),
  905. array(290, 22, 6, 36, 2, 37),
  906. array(206, 26, 4, 20, 6, 21),
  907. array(158, 28, 7, 14, 4, 15),
  908. array(428, 26, 4, 107, 0, 0),
  909. array(334, 22, 8, 37, 1, 38),
  910. array(244, 24, 8, 20, 4, 21),
  911. array(180, 22, 12, 11, 4, 12),
  912. array(461, 30, 3, 115, 1, 116),
  913. array(365, 24, 4, 40, 5, 41),
  914. array(261, 20, 11, 16, 5, 17),
  915. array(197, 24, 11, 12, 5, 13),
  916. array(523, 22, 5, 87, 1, 88),
  917. array(415, 24, 5, 41, 5, 42),
  918. array(295, 30, 5, 24, 7, 25),
  919. array(223, 24, 11, 12, 7, 13),
  920. array(589, 24, 5, 98, 1, 99),
  921. array(453, 28, 7, 45, 3, 46),
  922. array(325, 24, 15, 19, 2, 20),
  923. array(253, 30, 3, 15, 13, 16),
  924. array(647, 28, 1, 107, 5, 108),
  925. array(507, 28, 10, 46, 1, 47),
  926. array(367, 28, 1, 22, 15, 23),
  927. array(283, 28, 2, 14, 17, 15),
  928. array(721, 30, 5, 120, 1, 121),
  929. array(563, 26, 9, 43, 4, 44),
  930. array(397, 28, 17, 22, 1, 23),
  931. array(313, 28, 2, 14, 19, 15),
  932. array(795, 28, 3, 113, 4, 114),
  933. array(627, 26, 3, 44, 11, 45),
  934. array(445, 26, 17, 21, 4, 22),
  935. array(341, 26, 9, 13, 16, 14),
  936. array(861, 28, 3, 107, 5, 108),
  937. array(669, 26, 3, 41, 13, 42),
  938. array(485, 30, 15, 24, 5, 25),
  939. array(385, 28, 15, 15, 10, 16),
  940. array(932, 28, 4, 116, 4, 117),
  941. array(714, 26, 17, 42, 0, 0),
  942. array(512, 28, 17, 22, 6, 23),
  943. array(406, 30, 19, 16, 6, 17),
  944. array(1006, 28, 2, 111, 7, 112),
  945. array(782, 28, 17, 46, 0, 0),
  946. array(568, 30, 7, 24, 16, 25),
  947. array(442, 24, 34, 13, 0, 0),
  948. array(1094, 30, 4, 121, 5, 122),
  949. array(860, 28, 4, 47, 14, 48),
  950. array(614, 30, 11, 24, 14, 25),
  951. array(464, 30, 16, 15, 14, 16),
  952. array(1174, 30, 6, 117, 4, 118),
  953. array(914, 28, 6, 45, 14, 46),
  954. array(664, 30, 11, 24, 16, 25),
  955. array(514, 30, 30, 16, 2, 17),
  956. array(1276, 26, 8, 106, 4, 107),
  957. array(1000, 28, 8, 47, 13, 48),
  958. array(718, 30, 7, 24, 22, 25),
  959. array(538, 30, 22, 15, 13, 16),
  960. array(1370, 28, 10, 114, 2, 115),
  961. array(1062, 28, 19, 46, 4, 47),
  962. array(754, 28, 28, 22, 6, 23),
  963. array(596, 30, 33, 16, 4, 17),
  964. array(1468, 30, 8, 122, 4, 123),
  965. array(1128, 28, 22, 45, 3, 46),
  966. array(808, 30, 8, 23, 26, 24),
  967. array(628, 30, 12, 15, 28, 16),
  968. array(1531, 30, 3, 117, 10, 118),
  969. array(1193, 28, 3, 45, 23, 46),
  970. array(871, 30, 4, 24, 31, 25),
  971. array(661, 30, 11, 15, 31, 16),
  972. array(1631, 30, 7, 116, 7, 117),
  973. array(1267, 28, 21, 45, 7, 46),
  974. array(911, 30, 1, 23, 37, 24),
  975. array(701, 30, 19, 15, 26, 16),
  976. array(1735, 30, 5, 115, 10, 116),
  977. array(1373, 28, 19, 47, 10, 48),
  978. array(985, 30, 15, 24, 25, 25),
  979. array(745, 30, 23, 15, 25, 16),
  980. array(1843, 30, 13, 115, 3, 116),
  981. array(1455, 28, 2, 46, 29, 47),
  982. array(1033, 30, 42, 24, 1, 25),
  983. array(793, 30, 23, 15, 28, 16),
  984. array(1955, 30, 17, 115, 0, 0),
  985. array(1541, 28, 10, 46, 23, 47),
  986. array(1115, 30, 10, 24, 35, 25),
  987. array(845, 30, 19, 15, 35, 16),
  988. array(2071, 30, 17, 115, 1, 116),
  989. array(1631, 28, 14, 46, 21, 47),
  990. array(1171, 30, 29, 24, 19, 25),
  991. array(901, 30, 11, 15, 46, 16),
  992. array(2191, 30, 13, 115, 6, 116),
  993. array(1725, 28, 14, 46, 23, 47),
  994. array(1231, 30, 44, 24, 7, 25),
  995. array(961, 30, 59, 16, 1, 17),
  996. array(2306, 30, 12, 121, 7, 122),
  997. array(1812, 28, 12, 47, 26, 48),
  998. array(1286, 30, 39, 24, 14, 25),
  999. array(986, 30, 22, 15, 41, 16),
  1000. array(2434, 30, 6, 121, 14, 122),
  1001. array(1914, 28, 6, 47, 34, 48),
  1002. array(1354, 30, 46, 24, 10, 25),
  1003. array(1054, 30, 2, 15, 64, 16),
  1004. array(2566, 30, 17, 122, 4, 123),
  1005. array(1992, 28, 29, 46, 14, 47),
  1006. array(1426, 30, 49, 24, 10, 25),
  1007. array(1096, 30, 24, 15, 46, 16),
  1008. array(2702, 30, 4, 122, 18, 123),
  1009. array(2102, 28, 13, 46, 32, 47),
  1010. array(1502, 30, 48, 24, 14, 25),
  1011. array(1142, 30, 42, 15, 32, 16),
  1012. array(2812, 30, 20, 117, 4, 118),
  1013. array(2216, 28, 40, 47, 7, 48),
  1014. array(1582, 30, 43, 24, 22, 25),
  1015. array(1222, 30, 10, 15, 67, 16),
  1016. array(2956, 30, 19, 118, 6, 119),
  1017. array(2334, 28, 18, 47, 31, 48),
  1018. array(1666, 30, 34, 24, 34, 25),
  1019. array(1276, 30, 20, 15, 61, 16),
  1020. );
  1021. private $qr_ec_polynomials = array(
  1022. 7 => array(
  1023. 0, 87, 229, 146, 149, 238, 102, 21
  1024. ),
  1025. 10 => array(
  1026. 0, 251, 67, 46, 61, 118, 70, 64, 94, 32, 45
  1027. ),
  1028. 13 => array(
  1029. 0, 74, 152, 176, 100, 86, 100,
  1030. 106, 104, 130, 218, 206, 140, 78
  1031. ),
  1032. 15 => array(
  1033. 0, 8, 183, 61, 91, 202, 37, 51,
  1034. 58, 58, 237, 140, 124, 5, 99, 105
  1035. ),
  1036. 16 => array(
  1037. 0, 120, 104, 107, 109, 102, 161, 76, 3,
  1038. 91, 191, 147, 169, 182, 194, 225, 120
  1039. ),
  1040. 17 => array(
  1041. 0, 43, 139, 206, 78, 43, 239, 123, 206,
  1042. 214, 147, 24, 99, 150, 39, 243, 163, 136
  1043. ),
  1044. 18 => array(
  1045. 0, 215, 234, 158, 94, 184, 97, 118, 170, 79,
  1046. 187, 152, 148, 252, 179, 5, 98, 96, 153
  1047. ),
  1048. 20 => array(
  1049. 0, 17, 60, 79, 50, 61, 163, 26, 187, 202, 180,
  1050. 221, 225, 83, 239, 156, 164, 212, 212, 188, 190
  1051. ),
  1052. 22 => array(
  1053. 0, 210, 171, 247, 242, 93, 230, 14, 109, 221, 53, 200,
  1054. 74, 8, 172, 98, 80, 219, 134, 160, 105, 165, 231
  1055. ),
  1056. 24 => array(
  1057. 0, 229, 121, 135, 48, 211, 117, 251, 126, 159, 180, 169,
  1058. 152, 192, 226, 228, 218, 111, 0, 117, 232, 87, 96, 227, 21
  1059. ),
  1060. 26 => array(
  1061. 0, 173, 125, 158, 2, 103, 182, 118, 17,
  1062. 145, 201, 111, 28, 165, 53, 161, 21, 245,
  1063. 142, 13, 102, 48, 227, 153, 145, 218, 70
  1064. ),
  1065. 28 => array(
  1066. 0, 168, 223, 200, 104, 224, 234, 108, 180,
  1067. 110, 190, 195, 147, 205, 27, 232, 201, 21, 43,
  1068. 245, 87, 42, 195, 212, 119, 242, 37, 9, 123
  1069. ),
  1070. 30 => array(
  1071. 0, 41, 173, 145, 152, 216, 31, 179, 182, 50, 48,
  1072. 110, 86, 239, 96, 222, 125, 42, 173, 226, 193,
  1073. 224, 130, 156, 37, 251, 216, 238, 40, 192, 180
  1074. ),
  1075. );
  1076. private $qr_log = array(
  1077. 0, 0, 1, 25, 2, 50, 26, 198,
  1078. 3, 223, 51, 238, 27, 104, 199, 75,
  1079. 4, 100, 224, 14, 52, 141, 239, 129,
  1080. 28, 193, 105, 248, 200, 8, 76, 113,
  1081. 5, 138, 101, 47, 225, 36, 15, 33,
  1082. 53, 147, 142, 218, 240, 18, 130, 69,
  1083. 29, 181, 194, 125, 106, 39, 249, 185,
  1084. 201, 154, 9, 120, 77, 228, 114, 166,
  1085. 6, 191, 139, 98, 102, 221, 48, 253,
  1086. 226, 152, 37, 179, 16, 145, 34, 136,
  1087. 54, 208, 148, 206, 143, 150, 219, 189,
  1088. 241, 210, 19, 92, 131, 56, 70, 64,
  1089. 30, 66, 182, 163, 195, 72, 126, 110,
  1090. 107, 58, 40, 84, 250, 133, 186, 61,
  1091. 202, 94, 155, 159, 10, 21, 121, 43,
  1092. 78, 212, 229, 172, 115, 243, 167, 87,
  1093. 7, 112, 192, 247, 140, 128, 99, 13,
  1094. 103, 74, 222, 237, 49, 197, 254, 24,
  1095. 227, 165, 153, 119, 38, 184, 180, 124,
  1096. 17, 68, 146, 217, 35, 32, 137, 46,
  1097. 55, 63, 209, 91, 149, 188, 207, 205,
  1098. 144, 135, 151, 178, 220, 252, 190, 97,
  1099. 242, 86, 211, 171, 20, 42, 93, 158,
  1100. 132, 60, 57, 83, 71, 109, 65, 162,
  1101. 31, 45, 67, 216, 183, 123, 164, 118,
  1102. 196, 23, 73, 236, 127, 12, 111, 246,
  1103. 108, 161, 59, 82, 41, 157, 85, 170,
  1104. 251, 96, 134, 177, 187, 204, 62, 90,
  1105. 203, 89, 95, 176, 156, 169, 160, 81,
  1106. 11, 245, 22, 235, 122, 117, 44, 215,
  1107. 79, 174, 213, 233, 230, 231, 173, 232,
  1108. 116, 214, 244, 234, 168, 80, 88, 175,
  1109. );
  1110. private $qr_exp = array(
  1111. 1, 2, 4, 8, 16, 32, 64, 128,
  1112. 29, 58, 116, 232, 205, 135, 19, 38,
  1113. 76, 152, 45, 90, 180, 117, 234, 201,
  1114. 143, 3, 6, 12, 24, 48, 96, 192,
  1115. 157, 39, 78, 156, 37, 74, 148, 53,
  1116. 106, 212, 181, 119, 238, 193, 159, 35,
  1117. 70, 140, 5, 10, 20, 40, 80, 160,
  1118. 93, 186, 105, 210, 185, 111, 222, 161,
  1119. 95, 190, 97, 194, 153, 47, 94, 188,
  1120. 101, 202, 137, 15, 30, 60, 120, 240,
  1121. 253, 231, 211, 187, 107, 214, 177, 127,
  1122. 254, 225, 223, 163, 91, 182, 113, 226,
  1123. 217, 175, 67, 134, 17, 34, 68, 136,
  1124. 13, 26, 52, 104, 208, 189, 103, 206,
  1125. 129, 31, 62, 124, 248, 237, 199, 147,
  1126. 59, 118, 236, 197, 151, 51, 102, 204,
  1127. 133, 23, 46, 92, 184, 109, 218, 169,
  1128. 79, 158, 33, 66, 132, 21, 42, 84,
  1129. 168, 77, 154, 41, 82, 164, 85, 170,
  1130. 73, 146, 57, 114, 228, 213, 183, 115,
  1131. 230, 209, 191, 99, 198, 145, 63, 126,
  1132. 252, 229, 215, 179, 123, 246, 241, 255,
  1133. 227, 219, 171, 75, 150, 49, 98, 196,
  1134. 149, 55, 110, 220, 165, 87, 174, 65,
  1135. 130, 25, 50, 100, 200, 141, 7, 14,
  1136. 28, 56, 112, 224, 221, 167, 83, 166,
  1137. 81, 162, 89, 178, 121, 242, 249, 239,
  1138. 195, 155, 43, 86, 172, 69, 138, 9,
  1139. 18, 36, 72, 144, 61, 122, 244, 245,
  1140. 247, 243, 251, 235, 203, 139, 11, 22,
  1141. 44, 88, 176, 125, 250, 233, 207, 131,
  1142. 27, 54, 108, 216, 173, 71, 142, 1,
  1143. );
  1144. private $qr_remainder_bits = array(
  1145. 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3,
  1146. 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0,
  1147. );
  1148. private $qr_alignment_patterns = array(
  1149. array(6, 18),
  1150. array(6, 22),
  1151. array(6, 26),
  1152. array(6, 30),
  1153. array(6, 34),
  1154. array(6, 22, 38),
  1155. array(6, 24, 42),
  1156. array(6, 26, 46),
  1157. array(6, 28, 50),
  1158. array(6, 30, 54),
  1159. array(6, 32, 58),
  1160. array(6, 34, 62),
  1161. array(6, 26, 46, 66),
  1162. array(6, 26, 48, 70),
  1163. array(6, 26, 50, 74),
  1164. array(6, 30, 54, 78),
  1165. array(6, 30, 56, 82),
  1166. array(6, 30, 58, 86),
  1167. array(6, 34, 62, 90),
  1168. array(6, 28, 50, 72, 94),
  1169. array(6, 26, 50, 74, 98),
  1170. array(6, 30, 54, 78, 102),
  1171. array(6, 28, 54, 80, 106),
  1172. array(6, 32, 58, 84, 110),
  1173. array(6, 30, 58, 86, 114),
  1174. array(6, 34, 62, 90, 118),
  1175. array(6, 26, 50, 74, 98, 122),
  1176. array(6, 30, 54, 78, 102, 126),
  1177. array(6, 26, 52, 78, 104, 130),
  1178. array(6, 30, 56, 82, 108, 134),
  1179. array(6, 34, 60, 86, 112, 138),
  1180. array(6, 30, 58, 86, 114, 142),
  1181. array(6, 34, 62, 90, 118, 146),
  1182. array(6, 30, 54, 78, 102, 126, 150),
  1183. array(6, 24, 50, 76, 102, 128, 154),
  1184. array(6, 28, 54, 80, 106, 132, 158),
  1185. array(6, 32, 58, 84, 110, 136, 162),
  1186. array(6, 26, 54, 82, 110, 138, 166),
  1187. array(6, 30, 58, 86, 114, 142, 170),
  1188. );
  1189. /* format info string = $qr_format_info[ */
  1190. /* (0 for L, 8 for M, 16 for Q, 24 for H) + mask */
  1191. /* ]; */
  1192. private $qr_format_info = array(
  1193. array(1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0),
  1194. array(1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1),
  1195. array(1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0),
  1196. array(1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1),
  1197. array(1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1),
  1198. array(1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0),
  1199. array(1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1),
  1200. array(1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0),
  1201. array(1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0),
  1202. array(1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1),
  1203. array(1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0),
  1204. array(1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1),
  1205. array(1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1),
  1206. array(1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0),
  1207. array(1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1),
  1208. array(1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0),
  1209. array(0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1),
  1210. array(0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0),
  1211. array(0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1),
  1212. array(0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0),
  1213. array(0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0),
  1214. array(0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1),
  1215. array(0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0),
  1216. array(0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1),
  1217. array(0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1),
  1218. array(0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0),
  1219. array(0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1),
  1220. array(0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0),
  1221. array(0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0),
  1222. array(0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1),
  1223. array(0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0),
  1224. array(0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1),
  1225. );
  1226. /* version info string = $qr_version_info[ (version - 7) ] */
  1227. private $qr_version_info = array(
  1228. array(0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0),
  1229. array(0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0),
  1230. array(0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1),
  1231. array(0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1),
  1232. array(0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0),
  1233. array(0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0),
  1234. array(0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1),
  1235. array(0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1),
  1236. array(0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0),
  1237. array(0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0),
  1238. array(0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1),
  1239. array(0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1),
  1240. array(0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0),
  1241. array(0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0),
  1242. array(0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1),
  1243. array(0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1),
  1244. array(0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0),
  1245. array(0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0),
  1246. array(0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1),
  1247. array(0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1),
  1248. array(0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0),
  1249. array(0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0),
  1250. array(0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1),
  1251. array(0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1),
  1252. array(0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0),
  1253. array(1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1),
  1254. array(1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0),
  1255. array(1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0),
  1256. array(1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1),
  1257. array(1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1),
  1258. array(1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0),
  1259. array(1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0),
  1260. array(1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1),
  1261. array(1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1),
  1262. );
  1263. }