Th3-822

[rapidleech][d] openload_co

Apr 21st, 2016
932
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 17.11 KB | None | 0 0
  1. <?php
  2.  
  3. if (!defined('RAPIDLEECH')) {
  4.     require_once('index.html');
  5.     exit;
  6. }
  7.  
  8. class openload_co extends DownloadClass {
  9.     private $page, $cookie = array(), $elink, $pA, $DLRegexp = '@https?://\w+\.(?:openload\.co|oloadcdn\.net)/dl/[^\t\r\n\'\"<>\?]+@i';
  10.     private $ignoreApiDLCaptcha = false;
  11.     public function Download($link) {
  12.         if (!preg_match('@https?://openload\.co/f/([\w-]+)@i', str_ireplace(array('://www.openload.co', '/embed/'), array('://openload.co', '/f/'), $link), $fid)) html_error('Invalid link?.');
  13.         $this->link = $GLOBALS['Referer'] = str_ireplace('http://', 'https://', $fid[0]);
  14.         $this->elink = str_ireplace('/f/', '/embed/', $this->link);
  15.         $this->fid = $fid[1];
  16.  
  17.         if (empty($_POST['step'])) $this->testLink();
  18.         else if ($_POST['step'] == '1') return $this->ApiDLPost();
  19.         else if ($_POST['step'] == '42') return $this->processAnswer();
  20.  
  21.         $this->pA = (empty($_REQUEST['premium_user']) || empty($_REQUEST['premium_pass']) ? false : true);
  22.         if (($_REQUEST['premium_acc'] == 'on' && ($this->pA || (!empty($GLOBALS['premium_acc']['openload_co']['user']) && !empty($GLOBALS['premium_acc']['openload_co']['pass']))))) {
  23.             $user = ($this->pA ? $_REQUEST['premium_user'] : $GLOBALS['premium_acc']['openload_co']['user']);
  24.             $pass = ($this->pA ? $_REQUEST['premium_pass'] : $GLOBALS['premium_acc']['openload_co']['pass']);
  25.             if ($this->pA && !empty($_POST['pA_encrypted'])) {
  26.                 $user = decrypt(urldecode($user));
  27.                 $pass = decrypt(urldecode($pass));
  28.                 unset($_POST['pA_encrypted']);
  29.             }
  30.             return $this->Login($user, $pass);
  31.         } else return $this->AnonDL();
  32.     }
  33.  
  34.     private function testLink() {
  35.         $this->page = $this->GetPage($this->link, $this->cookie);
  36.         $this->cookie = GetCookiesArr($this->page, $this->cookie);
  37.         if (stripos($this->page, 'We can\'t find the file you are looking for.') !== false) {
  38.             $this->page = $this->GetPage($this->elink, $this->cookie);
  39.             is_present($this->page, 'We can\'t find the file you are looking for.', 'File Not Found.');
  40.             $this->cookie = GetCookiesArr($this->page, $this->cookie);
  41.         }
  42.     }
  43.  
  44.     private function processAnswer() {
  45.         if (empty($_POST['streamurl'])) return html_error('Decoded Download-Link Empty');
  46.         else if (($DL = $this->testStreamToken($_POST['streamurl']))) return $this->RedirectDownload($DL, urldecode(parse_url($DL, PHP_URL_PATH)));
  47.         return html_error('Decoded Download-Link Invalid or Not Found');
  48.     }
  49.  
  50.     private function AnonDL() {
  51.         // ApiDL
  52.         try {
  53.             return $this->tryApiDL();
  54.         } catch (Exception $e) {
  55.             $this->changeMesg(sprintf('<br /><b>Anon_ApiDL Failed: "%s"</b>', htmlspecialchars($e->getMessage(), ENT_QUOTES)), true);
  56.         }
  57.         // WebDL
  58.         return $this->WebDL();
  59.     }
  60.  
  61.     private function tryApiDL($login = 0, $key = 0) {
  62.         $query = array('file' => $this->fid);
  63.         if (!empty($login) && !empty($key)) {
  64.             $query['login'] = $login;
  65.             $query['key'] = $key;
  66.         }
  67.         $ticket = $this->ApiReq('file/dlticket', $query);
  68.         if (empty($ticket['ticket'])) throw new Exception('Token not Found');
  69.         if (!empty($ticket['wait_time']) && $ticket['wait_time'] > 0) $this->CountDown($ticket['wait_time']);
  70.         if (!empty($ticket['captcha_url'])) {
  71.             // Got CAPTCHA
  72.             if ($this->ignoreApiDLCaptcha) throw new Exception('ignoreApiDLCaptcha is true');
  73.             $data = $this->DefaultParamArr($this->link);
  74.             $data['step'] = '1';
  75.             $data['ticket'] = $ticket['ticket'];
  76.             list($headers, $imgBody) = explode("\r\n\r\n", $this->GetPage($ticket['captcha_url']), 2);
  77.             if (substr($headers, 9, 3) != '200') throw new Exception('Error downloading captcha img');
  78.             $mimetype = (preg_match('@image/[\w+]+@', $headers, $mimetype) ? $mimetype[0] : 'image/png');
  79.             return $this->EnterCaptcha("data:$mimetype;base64," . base64_encode($imgBody), $data);
  80.         }
  81.         // Download
  82.         unset($query['login'], $query['key']);
  83.         $query['ticket'] = $ticket['ticket'];
  84.         $DL = $this->ApiReq('file/dl', $query);
  85.         if (empty($DL['url'])) throw new Exception('Download Link not Found');
  86.         return $this->RedirectDownload($DL['url'], 'T8_ol_adl');
  87.     }
  88.  
  89.     private function ApiDLPost() {
  90.         if (empty($_POST['ticket'])) html_error('ApiDLPost: Ticket not Found.');
  91.         if (empty($_POST['captcha'])) html_error('You didn\'t enter the image verification code.');
  92.         try {
  93.             $DL = $this->ApiReq('file/dl', array('file' => $this->fid, 'ticket' => $_POST['ticket'], 'captcha_response' => $_POST['captcha']));
  94.         } catch (Exception $e) {
  95.             html_error(sprintf('ApiDLPost Error: "%s"</b>', htmlspecialchars($e->getMessage(), ENT_QUOTES)));
  96.         }
  97.         if (empty($DL['url'])) html_error('ApiDLPost: Download Link not Found.');
  98.         return $this->RedirectDownload($DL['url'], 'T8_ol_adl_c');
  99.     }
  100.  
  101.     private function getAAScript($page) {
  102.         if (preg_match_all('@゚ω゚ノ.+?\(\'_\'\);@i', $page, $scripts)) {
  103.             foreach ($scripts[0] as $script) {
  104.                 $script = (new AADecoder)->decode($script);
  105.                 if (stripos($script, 'String.fromCharCode') !== false && stripos($script, '#streamurl') !== false) {
  106.                     return $script;
  107.                 }
  108.             }
  109.         }
  110.         return false;
  111.     }
  112.  
  113.     private function testStreamToken($token) {
  114.         if (!preg_match($this->DLRegexp, $token, $DL)) {
  115.             if (!preg_match("@{$this->fid}~\d{10}~(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)~[\w\-]{8}(?:\?|$)@", $token)) return false;
  116.             $page = $this->GetPage("https://openload.co/stream/$token?mime=true");
  117.             if (!preg_match($this->DLRegexp, $page, $DL)) return html_error('Stream Download-Link Not Found.');
  118.             if ($this->fid != 'KDA_8nZ2av4' && strpos($DL[0], '/KDA_8nZ2av4/x.mp4') !== false) return false; // :P
  119.         }
  120.         return $DL[0];
  121.     }
  122.  
  123.     private function WebDL() {
  124.         if (!($script = $this->getAAScript($this->page))) html_error('Obsfuscated JS Not Found.');
  125.         # if (preg_match('@var\s+secondsdl\s*=\s*(\d+)\s*;@', $this->page, $cD) && $cD[1] > 0) $this->CountDown($cD[1]);
  126.         $data = $this->DefaultParamArr($this->link);
  127.         $data['step'] = '42';
  128.         $data['streamurl'] = '';
  129.         $T8 = '';
  130.         if (preg_match_all('@\$[\s\t]*\([\s\t]*[\"\']#([a-z][\w\.\-]*)[\"\'][\s\t]*\)@i', $script, $ids) && count($ids[0]) > 1) {
  131.             foreach (array_unique($ids[1]) as $id) {
  132.                 if ($id == 'streamurl') continue;
  133.                 if (!preg_match("@<([a-z][a-z\d]*)\s*(?:\w+\s*=\s*[\"\'][^\"\'<>]*[\"\']\s*)*(?:\s*id\s*=[\"\']{$id}[\"\']\s*)(?:\w+\s*=\s*[\"\'][^\"\'<>]*[\"\']\s*)*(?:\s*>([!-~]+)</\\1>|(/)?\s*>)@i", $this->page, $tag)) break; // If it doesn't found the tag the decode will fail, im not sure if break or continue...
  134.                 $T8 .= (!empty($tag[2]) ? $tag[0] : (empty($tag[3]) ? $tag[0].'</'.$tag[1].'>' : $tag[0]));
  135.             }
  136.         }
  137.         $script = preg_replace('@\.text\(\s*(?!\))@', '.val(', str_replace('streamurl', 'T8_streamurl', $script));
  138.         echo "\n<div style='display:none;'>$T8</div>\n<form name='ol_dcode' action='{$_SERVER['SCRIPT_NAME']}' method='POST'><br />\n";
  139.         foreach ($data as $name => $input) echo "<input type='hidden' name='$name' id='T8_$name' value='" . htmlspecialchars($input, ENT_QUOTES) . "' />\n";
  140.         echo "</form>\n<span id='T8_emsg' class='htmlerror' style='text-align:center;display:none;'></span>\n<noscript><span class='htmlerror'><b>Sorry, this code needs JavaScript enabled to work.</b></span></noscript>\n<script type='text/javascript'>/* <![CDATA[ Th3-822 */\n\tvar T8 = true;\n\ttry {\n{$script}\n\t} catch(e) {\n\t\t$('#T8_emsg').html('<b>Cannot decode link: ['+e.name+'] '+e.message+'</b>').show();\n\t\tT8 = false;\n\t}\n\tif (T8) window.setTimeout(\"$('form[name=ol_dcode]').submit();\", 500); // 500 µs to make sure that the value was decoded and added.\n/* ]]> */</script>\n\n</body>\n</html>";
  141.         exit;
  142.     }
  143.  
  144.     private function Login($user, $pass) {
  145.         $isApiLogin = (strpos($user, '@') === false ? true : false);
  146.  
  147.         // ApiDL
  148.         if ($isApiLogin || (!$this->pA && !empty($GLOBALS['premium_acc']['openload_co']['apiuser']) && !empty($GLOBALS['premium_acc']['openload_co']['apipass']))) {
  149.             try {
  150.                 if ($isApiLogin) return $this->tryApiDL($user, $pass);
  151.                 else return $this->tryApiDL($GLOBALS['premium_acc']['openload_co']['apiuser'], $GLOBALS['premium_acc']['openload_co']['apipass']);
  152.             } catch (Exception $e) {
  153.                 if ($this->pA) html_error('Login_ApiDL Failed: ' . htmlspecialchars($e->getMessage(), ENT_QUOTES));
  154.                 else $this->changeMesg(sprintf('<br /><b>Login_ApiDL Failed: "%s"</b>', htmlspecialchars($e->getMessage(), ENT_QUOTES)), true);
  155.             }
  156.         }
  157.  
  158.         // Login
  159.         if (!preg_match('@<meta name="csrf-token" content="([\w+/=]+)"@i', $this->page, $token)) {
  160.             $page = $this->GetPage('https://openload.co/login', $this->cookie);
  161.             $this->cookie = GetCookiesArr($page, $this->cookie);
  162.             if (!preg_match('@<meta name="csrf-token" content="([\w+/=]+)"@i', $page, $token)) html_error('Login CSRF Token not Found.');
  163.         }
  164.         $post = array('_csrf' => $token[1]);
  165.         $post['LoginForm%5Bemail%5D'] = urlencode($user);
  166.         $post['LoginForm%5Bpassword%5D'] = urlencode($pass);
  167.         $post['LoginForm%5BrememberMe%5D'] = 1;
  168.  
  169.         $page = $this->GetPage('https://openload.co/login', $this->cookie, $post);
  170.         is_present($page, 'Incorrect username or password.', 'Login Error: Wrong Email/Password.');
  171.         $this->cookie = GetCookiesArr($page, $this->cookie);
  172.         if (empty($this->cookie['_identity'])) html_error('Login Error: Cookie "_identity" not Found.');
  173.  
  174.         // Update $this->page
  175.         $this->testLink();
  176.         // WebDL
  177.         return $this->WebDL();
  178.     }
  179.  
  180.     private function is_present($lpage, $mystr, $strerror = '') {
  181.         if (stripos($lpage, $mystr) !== false) throw new Exception(!empty($strerror) ? $strerror : $mystr);
  182.     }
  183.  
  184.     private function ApiReq($path, $query = array()) {
  185.         if (!is_array($query)) $query = array();
  186.  
  187.         $query = !empty($query) ? '?'.http_build_query($query, '', '&') : '';
  188.         $page = $this->GetPage("https://api.openload.co/1/$path$query", 0, 0, 'https://openload.co/');
  189.         $reply = $this->json2array($page, "ApiReq($path) Error");
  190.  
  191.         switch ($reply['status']) {
  192.             case 200: break;
  193.             case 404: case 451: return html_error("[ApiReq($path)] File Deleted or Not Found.");
  194.             case 509: throw new Exception(stripos($reply['msg'], 'bandwidth usage too high (peak hours)') !== false ? 'BW Usage Too High' : 'BW Limit Reached');
  195.             case 403:
  196.                 $this->is_present($reply['msg'], 'Authentication failed', 'Incorrect API Login');
  197.                 $this->is_present($reply['msg'], 'Captcha not solved correctly', 'Incorrect CAPTCHA Answer');
  198.                 $this->is_present($reply['msg'], 'the owner of this file doesn\'t allow API', 'API Download Disabled for This File');
  199.             default: throw new Exception("[ApiReq($path) Error {$reply['status']}] " . htmlspecialchars($reply['msg'], ENT_QUOTES));
  200.         }
  201.  
  202.         return $reply['result'];
  203.     }
  204. }
  205.  
  206. /**
  207.  * Class AADecoder
  208.  * @author Andrey Izman <[email protected]>
  209.  * @link https://github.com/mervick/php-aaencoder
  210.  * @license MIT
  211.  */
  212.  
  213. /*
  214. The MIT License (MIT)
  215.  
  216. Copyright (c) 2015 Andrey Izman <[email protected]>
  217.  
  218. Permission is hereby granted, free of charge, to any person obtaining a copy
  219. of this software and associated documentation files (the "Software"), to deal
  220. in the Software without restriction, including without limitation the rights
  221. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  222. copies of the Software, and to permit persons to whom the Software is
  223. furnished to do so, subject to the following conditions:
  224.  
  225. The above copyright notice and this permission notice shall be included in all
  226. copies or substantial portions of the Software.
  227.  
  228. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  229. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  230. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  231. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  232. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  233. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  234. SOFTWARE.
  235. */
  236.  
  237. /**
  238.  * Class AADecoder
  239.  */
  240. class AADecoder
  241. {
  242.     const BEGIN_CODE = "゚ω゚ノ=/`m´)ノ~┻━┻/['_'];o=(゚ー゚)=_=3;c=(゚Θ゚)=(゚ー゚)-(゚ー゚);(゚Д゚)=(゚Θ゚)=(o^_^o)/(o^_^o);(゚Д゚)={゚Θ゚:'_',゚ω゚ノ:((゚ω゚ノ==3)+'_')[゚Θ゚],゚ー゚ノ:(゚ω゚ノ+'_')[o^_^o-(゚Θ゚)],゚Д゚ノ:((゚ー゚==3)+'_')[゚ー゚]};(゚Д゚)[゚Θ゚]=((゚ω゚ノ==3)+'_')[c^_^o];(゚Д゚)['c']=((゚Д゚)+'_')[(゚ー゚)+(゚ー゚)-(゚Θ゚)];(゚Д゚)['o']=((゚Д゚)+'_')[゚Θ゚];(゚o゚)=(゚Д゚)['c']+(゚Д゚)['o']+(゚ω゚ノ+'_')[゚Θ゚]+((゚ω゚ノ==3)+'_')[゚ー゚]+((゚Д゚)+'_')[(゚ー゚)+(゚ー゚)]+((゚ー゚==3)+'_')[゚Θ゚]+((゚ー゚==3)+'_')[(゚ー゚)-(゚Θ゚)]+(゚Д゚)['c']+((゚Д゚)+'_')[(゚ー゚)+(゚ー゚)]+(゚Д゚)['o']+((゚ー゚==3)+'_')[゚Θ゚];(゚Д゚)['_']=(o^_^o)[゚o゚][゚o゚];(゚ε゚)=((゚ー゚==3)+'_')[゚Θ゚]+(゚Д゚).゚Д゚ノ+((゚Д゚)+'_')[(゚ー゚)+(゚ー゚)]+((゚ー゚==3)+'_')[o^_^o-゚Θ゚]+((゚ー゚==3)+'_')[゚Θ゚]+(゚ω゚ノ+'_')[゚Θ゚];(゚ー゚)+=(゚Θ゚);(゚Д゚)[゚ε゚]='\\\\';(゚Д゚).゚Θ゚ノ=(゚Д゚+゚ー゚)[o^_^o-(゚Θ゚)];(o゚ー゚o)=(゚ω゚ノ+'_')[c^_^o];(゚Д゚)[゚o゚]='\\\"';(゚Д゚)['_']((゚Д゚)['_'](゚ε゚+(゚Д゚)[゚o゚]+";
  243.  
  244.     const END_CODE = "(゚Д゚)[゚o゚])(゚Θ゚))('_');";
  245.  
  246.  
  247.     /**
  248.      * Decode encoded-as-aaencode JavaScript code.
  249.      * @param string $js
  250.      * @return string
  251.      */
  252.     public static function decode($js)
  253.     {
  254.         if (self::hasAAEncoded($js, $start, $next, $encoded)) {
  255.             $decoded = self::deobfuscate($encoded);
  256.             if (substr(rtrim($decoded), -1) !== ';') {
  257.                 $decoded .= ';';
  258.             }
  259.             return mb_substr($js, 0, $start, 'UTF-8') . $decoded . self::decode(mb_substr($js, $next, null, 'UTF-8'));
  260.         }
  261.         return $js;
  262.     }
  263.  
  264.     /**
  265.      * @param string $js
  266.      * @return string
  267.      */
  268.     protected static function deobfuscate($js)
  269.     {
  270.         $bytes = array(
  271.             9 => '((゚ー゚)+(゚ー゚)+(゚Θ゚))',
  272.             6 => '((o^_^o)+(o^_^o))',
  273.             2 => '((o^_^o)-(゚Θ゚))',
  274.             7 => '((゚ー゚)+(o^_^o))',
  275.             5 => '((゚ー゚)+(゚Θ゚))',
  276.             8 => '((゚ー゚)+(゚ー゚))',
  277.             10 => '(゚Д゚).゚ω゚ノ',
  278.             11 => '(゚Д゚).゚Θ゚ノ',
  279.             12 => '(゚Д゚)[\'c\']',
  280.             13 => '(゚Д゚).゚ー゚ノ',
  281.             14 => '(゚Д゚).゚Д゚ノ',
  282.             15 => '(゚Д゚)[゚Θ゚]',
  283.             3 => '(o^_^o)',
  284.             0 => '(c^_^o)',
  285.             4 => '(゚ー゚)',
  286.             1 => '(゚Θ゚)',
  287.         );
  288.         $native = array(
  289.             '-~' => '1+',
  290.             '!' => '1',
  291.             '[]' => '0',
  292.         );
  293.         $native = array(
  294.             array_keys($native),
  295.             array_values($native),
  296.         );
  297.         $chars = array();
  298.         $hex = '(o゚ー゚o)+';
  299.         $hexLen = mb_strlen($hex, 'UTF-8');
  300.         $calc = function($expr) {
  301.             return eval("return $expr;");
  302.         };
  303.         $convert = function ($block, $func) use ($bytes, $calc) {
  304.             while (preg_match('/\([0-9\-\+\*\/]+\)/', $block)) {
  305.                 $block = preg_replace_callback('/\([0-9\-\+\*\/]+\)/', function($matches) use ($calc) {
  306.                     return $calc($matches[0]);
  307.                 }, $block);
  308.             }
  309.             $split = array();
  310.             foreach (explode('+', trim($block, '+')) as $num) {
  311.                 if ($num === '') continue;
  312.                 $split[] = $func(intval(trim($num)));
  313.             }
  314.             return implode('', $split);
  315.         };
  316.         foreach ($bytes as $byte => $search) {
  317.             $js = implode($byte, mb_split(preg_quote($search), $js));
  318.         }
  319.         foreach (mb_split(preg_quote('(゚Д゚)[゚ε゚]+'), $js) as $block) {
  320.             $block = trim(trim(str_replace($native[0], $native[1], $block), '+'));
  321.             if ($block === '') continue;
  322.             if (mb_substr($block, 0, $hexLen, 'UTF-8') === $hex) {
  323.                 $code = hexdec($convert(mb_substr($block, $hexLen, null, 'UTF-8'), 'dechex'));
  324.             }
  325.             else {
  326.                 $code = octdec($convert($block, 'decoct'));
  327.             }
  328.             $chars[] = mb_convert_encoding('&#' . intval($code) . ';', 'UTF-8', 'HTML-ENTITIES');
  329.         }
  330.         return implode('', $chars);
  331.     }
  332.  
  333.     /**
  334.      * Detect aaencoded JavaScript code.
  335.      * @param string $js
  336.      * @param null|int $start
  337.      * @param null|int $next
  338.      * @param null|string $encoded
  339.      * @return bool
  340.      */
  341.     public static function hasAAEncoded($js, &$start=null, &$next=null, &$encoded=null)
  342.     {
  343.         $find = function($haystack, $needle, $offset=0) {
  344.             $matches = array();
  345.             for ($i = 0; $i < 6 && $offset !== false; $i ++) {
  346.                 if (($offset = mb_strpos($haystack, $needle, $offset, 'UTF-8')) !== false) {
  347.                     $matches[$i] = $offset;
  348.                     $offset ++;
  349.                 }
  350.             }
  351.             return count($matches) >= 6 ? array($matches[4], $matches[5]) : false;
  352.         };
  353.         $start = -1;
  354.         while (($start = mb_strpos($js, '゚ω゚ノ', $start + 1, 'UTF-8')) !== false) {
  355.             $clear = preg_replace('/\/\*.+?\*\//', '', preg_replace('/[\x03-\x20]/', '', $code = mb_substr($js, $start, null, 'UTF-8')));
  356.             $len = mb_strlen(self::BEGIN_CODE, 'UTF-8');
  357.             if (mb_substr($clear, 0, $len, 'UTF-8') === self::BEGIN_CODE &&
  358.                 mb_strpos($clear, self::END_CODE, $len, 'UTF-8') &&
  359.                 ($matches = $find($js, '゚o゚', $start))
  360.             ) {
  361.                 list($beginAt, $endAt) = $matches;
  362.                 $beginAt = mb_strpos($js, '+', $beginAt, 'UTF-8');
  363.                 $endAt = mb_strrpos($js, '(', - mb_strlen($js, 'UTF-8') + $endAt, 'UTF-8');
  364.                 $next = mb_strpos($js, ';', $endAt + 1, 'UTF-8') + 1;
  365.                 $encoded = preg_replace('/[\x03-\x20]/', '', mb_substr($js, $beginAt, $endAt - $beginAt, 'UTF-8'));
  366.                 return true;
  367.             }
  368.         }
  369.         return false;
  370.     }
  371. }
  372.  
  373. //[21-04-2016]  Written by Th3-822. (Using mervick's AADecoder class)
  374. //[25-11-2016]  Rewritten Decoding Functions. - Th3-822
  375.  
  376. ?>
Add Comment
Please, Sign In to add comment