| 
<?php
 require_once '../src/Mind.php';
 
 $Mind = new Mind();
 
 // $ip = $Mind->addressGenerator('174.129.25.170', '174.129.25.200');
 // $result = $Mind->getAddressCode($ip);
 // $Mind->print_pre($result);
 
 
 // $ip = $Mind->addressGenerator('174.129.25.170', '174.129.25.200');
 // $result = $Mind->getAddressCode($ip, 403);
 // $Mind->print_pre($result);
 
 
 // $ip = $Mind->addressGenerator('174.129.25.170', '174.129.25.200');
 // $result = $Mind->getAddressCode($ip, array(403));
 // $Mind->print_pre($result);
 
 // $ip = $Mind->addressGenerator('174.129.25.170', '174.129.25.200');
 // $result = $Mind->getAddressCode($ip, array(301,403));
 // $Mind->print_pre($result);
 
 // $result = $Mind->getAddressCode('https://twitter.com/', array(200, 301,403));
 // $Mind->print_pre($result);
 |