%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php class haxe_Int32 { public function __construct(){} static function make($a, $b) { return $a << 16 | $b; } static function ofInt($x) { return $x | 0; } static function clamp($x) { return $x | 0; } static function toInt($x) { if(($x >> 30 & 1) !== _hx_shift_right($x, 31)) { throw new HException("Overflow " . Std::string($x)); } return $x & -1; } static function toNativeInt($x) { return $x; } static function add($a, $b) { return $a + $b | 0; } static function sub($a, $b) { return $a - $b | 0; } static function mul($a, $b) { return $a * ($b & 65535) + ($a * (_hx_shift_right($b, 16)) << 16 | 0) | 0; } static function div($a, $b) { return intval($a / $b); } static function mod($a, $b) { return _hx_mod($a, $b); } static function shl($a, $b) { return $a << $b; } static function shr($a, $b) { return $a >> $b; } static function ushr($a, $b) { return _hx_shift_right($a, $b); } static function hand($a, $b) { return $a & $b; } static function hor($a, $b) { return $a | $b; } static function hxor($a, $b) { return $a ^ $b; } static function neg($a) { return -$a; } static function isNeg($a) { return $a < 0; } static function isZero($a) { return $a === 0; } static function complement($a) { return ~$a; } static function compare($a, $b) { return $a - $b; } static function ucompare($a, $b) { if($a < 0) { return haxe_Int32_0($a, $b); } return haxe_Int32_1($a, $b); } function __toString() { return 'haxe.Int32'; } } function haxe_Int32_0(&$a, &$b) { if($b < 0) { return ~$b - ~$a; } else { return 1; } } function haxe_Int32_1(&$a, &$b) { if($b < 0) { return -1; } else { return $a - $b; } }