%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 sys_io_File { public function __construct(){} static function getContent($path) { return file_get_contents($path); } static function getBytes($path) { return haxe_io_Bytes::ofString(sys_io_File::getContent($path)); } static function saveContent($path, $content) { file_put_contents($path, $content); } static function saveBytes($path, $bytes) { $f = sys_io_File::write($path, null); $f->write($bytes); $f->close(); } static function read($path, $binary = null) { if($binary === null) { $binary = true; } return new sys_io_FileInput(fopen($path, (($binary) ? "rb" : "r"))); } static function write($path, $binary = null) { if($binary === null) { $binary = true; } return new sys_io_FileOutput(fopen($path, (($binary) ? "wb" : "w"))); } static function append($path, $binary = null) { if($binary === null) { $binary = true; } return new sys_io_FileOutput(fopen($path, (($binary) ? "ab" : "a"))); } static function copy($src, $dst) { copy($src, $dst); } function __toString() { return 'sys.io.File'; } }