├── .htaccess ├── README.md ├── classes ├── AngryCurl.class.php └── RollingCurl.class.php ├── demo ├── chains_of_requests.php ├── extended_requests.php └── proxy_checker.php ├── example.php └── import ├── proxy_list.txt └── useragent_list.txt /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | SetEnv no-gzip dont-vary 3 | RemoveOutputFilter php 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AngryCurl 2 | - used for parsing information from remote resourse using user-predefined amount of simultaneous connections over proxies-list. 3 | 4 | ## Basic information 5 | 6 | ### Depencies: 7 | 8 | * PHP 5 >= 5.1.0 9 | * RollingCurl 10 | * cURL 11 | 12 | ### Use cases: 13 | 14 | * multi-threaded parsing over proxy 15 | * overcoming simple parsing protection by using User-Agent header and proxy-lists 16 | * proxy list checking 17 | * validating proxies' response 18 | 19 | ### Main features 20 | 21 | * loading proxy-list from file or array 22 | * removing duplicates 23 | * filtering alive proxies 24 | * checking if proxy given response content is correct 25 | * loading useragent-list from file or array 26 | * changing proxy/useragent "on the fly" 27 | * preventing direct connections without any proxy/useragent if such options are set 28 | * multi-thread connections 29 | * callback functions 30 | * working with chains of requests 31 | * web-console mode 32 | * logging 33 | 34 | ## Documentation 35 | 36 | ### Preferred environment configuration 37 | 38 | * PHP as Apache module 39 | * safe_mode Off 40 | * open_basedir is NOT set 41 | * PHP cURL installed 42 | * gzip Off 43 | 44 | ### Basic usage 45 | 46 | ```php 47 | require("RollingCurl.class.php"); 48 | require("AngryCurl.class.php"); 49 | 50 | function my_callback($response, $info, $request) 51 | { 52 | // callback function here 53 | } 54 | 55 | // sending callback function name as param 56 | $AC = new AngryCurl('my_callback'); 57 | // initializing console-style output 58 | $AC->init_console(); 59 | 60 | 61 | // Importing proxy and useragent lists, setting regexp, proxy type and target url for proxy check 62 | // You may also import proxy from an array as simple as $AC->load_proxy_list($proxy array); 63 | $AC->load_proxy_list( 64 | // path to proxy-list file 65 | 'proxy_list.txt', 66 | // optional: number of threads 67 | 200, 68 | // optional: proxy type 69 | 'http', 70 | // optional: target url to check 71 | 'http://google.com', 72 | // optional: target regexp to check 73 | 'title>G[o]{2}gle' 74 | ); 75 | // You may also import useragents from an array as simple as $AC->load_useragent_list($proxy array); 76 | $AC->load_useragent_list('useragent_list.txt'); 77 | 78 | while(/* */) 79 | { 80 | $url = /**/; 81 | // adding URL to queue 82 | $AC->get($url); 83 | 84 | // you may also use 85 | // $AC->post($url, $post_data = null, $headers = null, $options = null); 86 | // $AC->get($url, $headers = null, $options = null); 87 | // $AC->request($url, $method = "GET", $post_data = null, $headers = null, $options = null); 88 | // as well 89 | } 90 | 91 | // setting amount of threads and starting connections 92 | $AC->execute(200); 93 | 94 | // if console_mode is off 95 | //AngryCurl::print_debug(); 96 | 97 | unset($AC); 98 | ``` 99 | 100 | ### cURL options 101 | 102 | You may also pass cURL options for each url before adding to queue like here: 103 | ```php 104 | // Define HTTP headers (CURLOPT_HTTPHEADER) if needed, or just set to NULL 105 | $headers = array('Content-type: text/plain', 'Content-length: 100'); 106 | // Define cURL options (will be passed through curl_setopt_array) if needed, or just set to NULL 107 | $options = array(CURLOPT_HEADER => true, CURLOPT_NOBODY => true); 108 | // Define post-data array to send in case of POST method, or just set to NULL 109 | $post_data = array('param' => 'value'); 110 | 111 | // Add request 112 | $AC->get($url, $headers, $options); 113 | // or 114 | $AC->post($url, $post_data, $headers, $options) ; 115 | // or 116 | $AC->request($url, $method = "GET", $post_data, $headers, $options); 117 | 118 | // ATTENTION: temporary "on-the-fly" proxy/useragents lists are not 119 | // working with AngryCurlRequest. Keep it in mind if you will use code below 120 | // as alternative to written above. 121 | 122 | $request = new AngryCurlRequest($url); 123 | // $url, $method, $post_data, $headers, $options - public properties of AngryCurlRequest 124 | $request->options = array(CURLOPT_HEADER => true, CURLOPT_NOBODY => true); 125 | $AC->add($request); 126 | ``` 127 | 128 | Because this class is kind of extension of RollingCurl class you may use any constructions RollingCurl has. 129 | For other information read here: 130 | http://code.google.com/p/rolling-curl/source/browse/trunk/ 131 | 132 | ## TODO 133 | * chains of requests 134 | * stop on error_limit exceed 135 | * better documentation and examples 136 | 137 | ## Credits 138 | You may join this class discussion here: 139 | http://stupid.su/php-curl_multi/ 140 | Any questions, change requests and other things you may send to my email written in class comments. 141 | 142 | Thank you for reading. 143 | - naive 144 | -------------------------------------------------------------------------------- /classes/AngryCurl.class.php: -------------------------------------------------------------------------------- 1 | 7 | * @link http://stupid.su/php-curl_multi/ 8 | * @licence GPL 9 | * @version 0.4 10 | * 11 | * @todo stop on error_limit exceed 12 | * @todo "on the fly" change AngryCurlRequest fix 13 | * 14 | * @uses RollingCurl 15 | * @uses cURL 16 | * 17 | * @var array $debug_info - debug information 18 | * @var bool $debug_log - Enable/disable debug log 19 | * @var bool $console_mode - Enable/disable loggin information direct to 'user's browser on a fly' 20 | * @var array $array_alive_proxy - alive proxy array needed to transfer data from proxy filtering function in its callback 21 | * @var array $array_proxy - proxy list 22 | * @var array $array_url - url list to parse 23 | * @var array $array_useragent - useragents to change 24 | * @var bool $error_limit - Limit of invalid http responses before die, 0 - unlimited // not implemented yet 25 | * @var bool $array_valid_http_code- Array of valid http response codes, default // not implemented yet 26 | * @var int $n_proxy - proxies amount 27 | * @var int $n_useragent - useragents amount 28 | * @var int $n_url - urls amount 29 | * @var string $proxy_test_url - url address to connect to for testing proxies 30 | * @var string $proxy_valif_regexp - regexp needed to be shure that response hasn`t been modified by proxy 31 | * @var bool $use_proxy_list - Flag that is set in load_proxy_list method 32 | * @var bool $use_useragent_list - Flag that is set in load_useragent_list method 33 | */ 34 | class AngryCurl extends RollingCurl { 35 | public static $debug_info = array(); 36 | public static $debug_log = false; 37 | protected static $console_mode = false; 38 | 39 | 40 | protected static $array_alive_proxy=array(); 41 | protected $array_proxy = array(); 42 | protected $array_url = array(); 43 | protected $array_useragent = array(); 44 | 45 | protected $error_limit = 0; // not implemented yet 46 | protected $array_valid_http_code= array(200); // not implemented yet 47 | 48 | protected $n_proxy = 0; 49 | protected $n_useragent = 0; 50 | protected $n_url = 0; 51 | 52 | protected $proxy_test_url = 'http://google.com'; 53 | protected static $proxy_valid_regexp = ''; 54 | 55 | private $use_proxy_list = false; 56 | private $use_useragent_list = false; 57 | 58 | /** 59 | * AngryCurl constructor 60 | * 61 | * @throws AngryCurlException 62 | * 63 | * @param string $callback Callback function name 64 | * @param bool $debug_log Enable/disable writing log to $debug_info var (false by default to reduce memory consumption) 65 | * 66 | * @return void 67 | */ 68 | function __construct($callback = null, $debug_log = false) 69 | { 70 | self::$debug_log = $debug_log; 71 | 72 | # writing debug 73 | self::add_debug_msg("# Building"); 74 | 75 | # checking if cURL enabled 76 | if(!function_exists('curl_init')) 77 | { 78 | throw new AngryCurlException("(!) cURL is not enabled"); 79 | } 80 | 81 | parent::__construct($callback); 82 | } 83 | 84 | /** 85 | * Initializing console mode 86 | * 87 | * @return void 88 | */ 89 | public function init_console() 90 | { 91 | self::$console_mode = true; 92 | 93 | echo "
";
 94 |         
 95 |         # Internal Server Error fix in case no apache_setenv() function exists
 96 |         if (function_exists('apache_setenv'))
 97 |         {
 98 |             @apache_setenv('no-gzip', 1);
 99 |         }
100 |         @ini_set('zlib.output_compression', 0);
101 |         @ini_set('implicit_flush', 1);
102 |         for ($i = 0; $i < ob_get_level(); $i++)
103 |             ob_end_flush();
104 |         ob_implicit_flush(1);
105 |         
106 |         # writing debug
107 |         self::add_debug_msg("# Console mode activated");
108 |     }
109 | 
110 |     /**
111 |      * Request execution overload
112 |      *
113 |      * @access public
114 |      *
115 |      * @throws AngryCurlException
116 |      * 
117 |      * @param string $url Request URL
118 |      * @param enum(GET/POST) $method
119 |      * @param array $post_data
120 |      * @param array $headers
121 |      * @param array $options
122 |      * 
123 |      * @return bool
124 |      */
125 |     public function request($url, $method = "GET", $post_data = null, $headers = null, $options = null)
126 |     {
127 |         if($this->n_proxy > 0 && $this->use_proxy_list)
128 |         {
129 |             $options[CURLOPT_PROXY]=$this->array_proxy[ mt_rand(0, $this->n_proxy-1) ];
130 |         //    self::add_debug_msg("Using PROXY({$this->n_proxy}): ".$options[CURLOPT_PROXY]);
131 |         }
132 |         elseif($this->n_proxy < 1 && $this->use_proxy_list)
133 |         {
134 |             throw new AngryCurlException("(!) Option 'use_proxy_list' is set, but no alive proxy available");
135 |         }
136 |         
137 |         if($this->n_useragent > 0 && $this->use_useragent_list)
138 |         {
139 |             $options[CURLOPT_USERAGENT]=$this->array_useragent[ mt_rand(0, $this->n_useragent-1) ];
140 |         //    self::add_debug_msg("Using USERAGENT: ".$options[CURLOPT_USERAGENT]);
141 |         }
142 |         elseif($this->n_useragent < 1 && $this->use_useragent_list)
143 |         {
144 |             throw new AngryCurlException("(!) Option 'use_useragent_list' is set, but no useragents available");
145 |         }
146 | 
147 |         parent::request($url, $method, $post_data, $headers, $options);
148 |         return true;
149 |     }
150 |     
151 |     /**
152 |      * Starting connections function execution overload
153 |      *
154 |      * @access public
155 |      *
156 |      * @throws AngryCurlException
157 |      *
158 |      * @param int $window_size Max number of simultaneous connections
159 |      *
160 |      * @return string|bool
161 |      */
162 |     public function execute($window_size = null)
163 |     {
164 |         # checking $window_size var
165 |         if($window_size == null)
166 |         {
167 |             self::add_debug_msg(" (!) Default threads amount value (5) is used");
168 |         }
169 |         elseif($window_size > 0 && is_int($window_size))
170 |         {
171 |             self::add_debug_msg(" * Threads set to:\t$window_size");
172 |         }
173 |         else
174 |         {
175 |             throw new AngryCurlException(" (!) Wrong threads amount in execute():\t$window_size");
176 |         }
177 |         
178 |         # writing debug
179 |         self::add_debug_msg(" * Starting connections");
180 |         //var_dump($this->__get('requests'));
181 |         
182 |         $time_start = microtime(1);
183 |         $result = parent::execute($window_size);
184 |         $time_end = microtime(1);
185 |         
186 |         # writing debug
187 |         self::add_debug_msg(" * Finished in ".round($time_end-$time_start,2)."s");
188 |         
189 |         return $result;
190 |     }
191 |     
192 |     /**
193 |      * Flushing requests map for re-using purposes
194 |      *
195 |      * @return void
196 |      */
197 |     public function flush_requests()
198 |     {
199 |         $this->__set('requests', array());
200 |     }
201 |     
202 |     /**
203 |      * Useragent list loading method
204 |      *
205 |      * @access public
206 |      * 
207 |      * @param string/array $input Input proxy data, could be an array or filename
208 |      * @return integer Amount of useragents loaded
209 |      */
210 |     public function load_useragent_list($input)
211 |     {
212 |         # writing debug
213 |         self::add_debug_msg("# Start loading useragent list");
214 |         
215 |         # defining proxiess
216 |         if(is_array($input))
217 |         {
218 |             $this->array_useragent = $input;
219 |         }
220 |         else
221 |         {        
222 |             $this->array_useragent = $this->load_from_file($input);
223 |         }
224 |         
225 |         # setting amount
226 |         $this->n_useragent = count($this->array_useragent);
227 |         
228 |         # writing debug
229 |         if($this->n_useragent > 0)
230 |         {
231 |             self::add_debug_msg("# Loaded useragents:\t{$this->n_useragent}");
232 |         }
233 |         else
234 |         {
235 |             throw new AngryCurlException("# (!) No useragents loaded");
236 |         }
237 |         
238 |         # Setting flag to prevent using AngryCurl without useragents
239 |         $this->use_useragent_list = true;
240 |         
241 |         return $this->n_useragent;
242 |     }
243 | 
244 |     /**
245 |      * Proxy list loading and filtering method
246 |      *
247 |      * @access public
248 |      *
249 |      * @throws AngryCurlException
250 |      * 
251 |      * @param string/array $input Input proxy data, could be an array or filename
252 |      * @param integer $window_size Max number of simultaneous connections when testing
253 |      * @param enum(http/socks5) $proxy_type
254 |      * @param string $proxy_test_url URL needed for proxy test requests
255 |      * @param regexp $proxy_valid_regexp Regexp needed to be shure that response hasn`t been modified by proxy
256 |      * 
257 |      * @return bool
258 |      */
259 |     public function load_proxy_list($input, $window_size = 5, $proxy_type = 'http', $proxy_test_url = 'http://google.com', $proxy_valid_regexp = null)
260 |     {
261 |         # writing debug
262 |         self::add_debug_msg("# Start loading proxies");
263 |         
264 |         # defining proxiess
265 |         if(is_array($input))
266 |         {
267 |             $this->array_proxy = $input;
268 |         }
269 |         else
270 |         {
271 |             $this->array_proxy = $this->load_from_file($input);
272 |         }        
273 |         
274 |         # checking $window_size var
275 |         if( intval($window_size) < 1 || !is_int($window_size) )
276 |         {
277 |             throw new AngryCurlException(" (!) Wrong threads amount in load_proxy_list():\t$window_size");
278 |         }
279 | 
280 |         
281 |         # setting proxy type
282 |         if($proxy_type == 'socks5')
283 |         {
284 |             self::add_debug_msg(" * Proxy type set to:\tSOCKS5");
285 |             $this->__set('options', array(CURLOPT_PROXYTYPE => CURLPROXY_SOCKS5));
286 |         }
287 |         else
288 |         {
289 |             self::add_debug_msg(" * Proxy type set to:\tHTTP");
290 |         }
291 |             
292 |         # setting amount
293 |         $this->n_proxy = count($this->array_proxy);
294 |         self::add_debug_msg(" * Loaded proxies:\t{$this->n_proxy}");
295 |         
296 |         # filtering alive proxies
297 |         if($this->n_proxy>0)
298 |         {
299 |             # removing duplicates
300 |             $n_dup = count($this->array_proxy);
301 |             # by array_values bug was fixed in random array indexes using mt_rand in request()
302 |             $this->array_proxy = array_values( array_unique( $this->array_proxy) );
303 |             $n_dup -= count($this->array_proxy);
304 |             
305 |             self::add_debug_msg(" * Removed duplicates:\t{$n_dup}");
306 |             unset($n_dup);
307 |             
308 |             # updating amount
309 |             $this->n_proxy = count($this->array_proxy);
310 |             self::add_debug_msg(" * Unique proxies:\t{$this->n_proxy}");
311 |             
312 |             # setting url for testing proxies
313 |             $this->proxy_test_url = $proxy_test_url;
314 |             self::add_debug_msg(" * Proxy test URL:\t{$this->proxy_test_url}");
315 |             
316 |             # setting regexp for testing proxies
317 |             if( !empty($proxy_valid_regexp) )
318 |             {
319 |                 self::$proxy_valid_regexp = $proxy_valid_regexp;
320 |                 self::add_debug_msg(" * Proxy test RegExp:\t".self::$proxy_valid_regexp);
321 |             }
322 |             
323 |             $this->filter_alive_proxy($window_size); 
324 |         }
325 |         else
326 |         {
327 |             throw new AngryCurlException(" (!) Proxies amount < 0 in load_proxy_list():\t{$this->n_proxy}");
328 |         }
329 |         
330 |         # Setting flag to prevent using AngryCurl without proxies
331 |         $this->use_proxy_list = true;   
332 |     }
333 |     
334 |     /**
335 |      * Filtering proxy array method, choosing alive proxy only
336 |      *
337 |      * @return void
338 |      */
339 |     public static function callback_proxy_check($response, $info, $request)
340 |     {
341 |         static $rid = 0;
342 |         $rid++;
343 |     
344 |         if($info['http_code']!==200)
345 |         {
346 |             self::add_debug_msg("   $rid->\t".$request->options[CURLOPT_PROXY]."\tFAILED\t".$info['http_code']."\t".$info['total_time']."\t".$info['url']);
347 |             return;
348 |         }
349 | 
350 |         if(!empty(self::$proxy_valid_regexp) && !@preg_match('#'.self::$proxy_valid_regexp.'#', $response) )
351 |         {
352 |             self::add_debug_msg("   $rid->\t".$request->options[CURLOPT_PROXY]."\tFAILED\tRegExp match:\t".self::$proxy_valid_regexp."\t".$info['url']);
353 |             return;
354 |         }
355 |             self::add_debug_msg("   $rid->\t".$request->options[CURLOPT_PROXY]."\tOK\t".$info['http_code']."\t".$info['total_time']."\t".$info['url']);
356 |             self::$array_alive_proxy[] = $request->options[CURLOPT_PROXY];
357 |     }
358 |     
359 |     /**
360 |      * Filtering proxy array, choosing alive proxy only
361 |      *
362 |      * @throws AngryCurlException
363 |      *
364 |      * @param integer $window_size Max number of simultaneous connections when testing
365 |      *
366 |      * @return void
367 |      */
368 |     protected function filter_alive_proxy($window_size = 5)
369 |     {
370 |         # writing debug
371 |         self::add_debug_msg("# Start testing proxies");
372 |         
373 |         # checking $window_size var
374 |         if( intval($window_size) < 1 || !is_int($window_size) )
375 |         {
376 |             throw new AngryCurlException(" (!) Wrong threads amount in filter_alive_proxy():\t$window_size");
377 |         }
378 |         
379 |         $buff_callback_func = $this->__get('callback');
380 |         $this->__set('callback',array('AngryCurl', 'callback_proxy_check'));
381 | 
382 |         # adding requests to stack
383 |         foreach($this->array_proxy as $id => $proxy)
384 |         {
385 |             # there won't be any regexp checks, just this :)
386 |             if( strlen($proxy) > 4)
387 |                 $this->request($this->proxy_test_url, $method = "GET", null, null, array(CURLOPT_PROXY => $proxy) );
388 |         }
389 | 
390 |         # run
391 |         $this->execute($window_size);
392 |         
393 |         #flushing requests
394 |         $this->__set('requests', array());
395 | 
396 |         # writing debug
397 |         self::add_debug_msg("# Alive proxies:\t".count(self::$array_alive_proxy)."/".$this->n_proxy);
398 |         
399 |         # updating params
400 |         $this->n_proxy = count(self::$array_alive_proxy);
401 |         $this->array_proxy = self::$array_alive_proxy;
402 |         $this->__set('callback', $buff_callback_func);
403 |     }
404 | 
405 |     /**
406 |      * Loading info from external files
407 |      *
408 |      * @access private
409 |      * @param string $filename
410 |      * @param string $delim
411 |      * @return array
412 |      */
413 |     protected function load_from_file($filename, $delim = "\n")
414 |     {
415 |         $data;
416 |         $fp = @fopen($filename, "r");
417 |         
418 |         if(!$fp)
419 |         {
420 |             self::add_debug_msg("(!) Failed to open file: $filename");
421 |             return array();
422 |         }
423 |         
424 |         $data = @fread($fp, filesize($filename) );
425 |         fclose($fp);
426 |         
427 |         if(strlen($data)<1)
428 |         {
429 |             self::add_debug_msg("(!) Empty file: $filename");
430 |             return array();
431 |         }
432 |         
433 |         $array = explode($delim, $data);
434 |         
435 |         if(is_array($array) && count($array)>0)
436 |         {
437 |             foreach($array as $k => $v)
438 |             {
439 |                 if(strlen( trim($v) ) > 0)
440 |                     $array[$k] = trim($v);
441 |             }
442 |             return $array;
443 |         }
444 |         else
445 |         {
446 |             self::add_debug_msg("(!) Empty data array in file: $filename");
447 |             return array();
448 |         }
449 |     }
450 |     
451 |     /**
452 |      * Printing debug information method
453 |      *
454 |      * @access public
455 |      * @return void
456 |      */
457 |     public static function print_debug()
458 |     {
459 |         echo "
";
460 |         echo htmlspecialchars( implode("\n", self::$debug_info) );
461 |         echo "
"; 462 | } 463 | 464 | /** 465 | * Logging method 466 | * 467 | * @access public 468 | * @param string $msg message 469 | * @return void 470 | */ 471 | public static function add_debug_msg($msg) 472 | { 473 | if(self::$debug_log) 474 | { 475 | self::$debug_info[] = $msg; 476 | } 477 | 478 | if(self::$console_mode) 479 | { 480 | echo htmlspecialchars($msg)."\r\n"; 481 | } 482 | } 483 | 484 | /** 485 | * AngryCurl destructor 486 | * 487 | * @return void 488 | */ 489 | function __destruct() 490 | { 491 | self::add_debug_msg("# Finishing ..."); 492 | parent::__destruct(); 493 | } 494 | } 495 | 496 | /** 497 | * AngryCurl custom exception 498 | */ 499 | class AngryCurlException extends Exception 500 | { 501 | public function __construct($message = "", $code = 0 /*For PHP < 5.3 compatibility omitted: , Exception $previous = null*/) 502 | { 503 | AngryCurl::add_debug_msg($message); 504 | parent::__construct($message, $code); 505 | } 506 | } 507 | 508 | /** 509 | * Class that represent a single curl request 510 | */ 511 | class AngryCurlRequest extends RollingCurlRequest 512 | { 513 | 514 | } 515 | 516 | ?> 517 | -------------------------------------------------------------------------------- /classes/RollingCurl.class.php: -------------------------------------------------------------------------------- 1 | url = $url; 31 | $this->method = $method; 32 | $this->post_data = $post_data; 33 | $this->headers = $headers; 34 | $this->options = $options; 35 | } 36 | 37 | /** 38 | * @return void 39 | */ 40 | public function __destruct() { 41 | unset($this->url, $this->method, $this->post_data, $this->headers, $this->options); 42 | } 43 | } 44 | 45 | /** 46 | * RollingCurl custom exception 47 | */ 48 | class RollingCurlException extends Exception { 49 | } 50 | 51 | /** 52 | * Class that holds a rolling queue of curl requests. 53 | * 54 | * @throws RollingCurlException 55 | */ 56 | class RollingCurl { 57 | /** 58 | * @var int 59 | * 60 | * Window size is the max number of simultaneous connections allowed. 61 | * 62 | * REMEMBER TO RESPECT THE SERVERS: 63 | * Sending too many requests at one time can easily be perceived 64 | * as a DOS attack. Increase this window_size if you are making requests 65 | * to multiple servers or have permission from the receving server admins. 66 | */ 67 | private $window_size = 5; 68 | 69 | /** 70 | * @var float 71 | * 72 | * Timeout is the timeout used for curl_multi_select. 73 | */ 74 | private $timeout = 10; 75 | 76 | /** 77 | * @var string|array 78 | * 79 | * Callback function to be applied to each result. 80 | */ 81 | private $callback; 82 | 83 | /** 84 | * @var array 85 | * 86 | * Set your base options that you want to be used with EVERY request. 87 | */ 88 | protected $options = array( 89 | CURLOPT_SSL_VERIFYPEER => 0, 90 | CURLOPT_RETURNTRANSFER => 1, 91 | CURLOPT_CONNECTTIMEOUT => 30, 92 | CURLOPT_TIMEOUT => 30 93 | ); 94 | 95 | /** 96 | * @var array 97 | */ 98 | private $headers = array(); 99 | 100 | /** 101 | * @var Request[] 102 | * 103 | * The request queue 104 | */ 105 | private $requests = array(); 106 | 107 | /** 108 | * @var RequestMap[] 109 | * 110 | * Maps handles to request indexes 111 | */ 112 | private $requestMap = array(); 113 | 114 | /** 115 | * @param $callback 116 | * Callback function to be applied to each result. 117 | * 118 | * Can be specified as 'my_callback_function' 119 | * or array($object, 'my_callback_method'). 120 | * 121 | * Function should take three parameters: $response, $info, $request. 122 | * $response is response body, $info is additional curl info. 123 | * $request is the original request 124 | * 125 | * @return void 126 | */ 127 | function __construct($callback = null) { 128 | $this->callback = $callback; 129 | } 130 | 131 | /** 132 | * @param string $name 133 | * @return mixed 134 | */ 135 | public function __get($name) { 136 | return (isset($this->{$name})) ? $this->{$name} : null; 137 | } 138 | 139 | /** 140 | * @param string $name 141 | * @param mixed $value 142 | * @return bool 143 | */ 144 | public function __set($name, $value) { 145 | // append the base options & headers 146 | if ($name == "options" || $name == "headers") { 147 | $this->{$name} = $value + $this->{$name}; 148 | } else { 149 | $this->{$name} = $value; 150 | } 151 | return true; 152 | } 153 | 154 | /** 155 | * Add a request to the request queue 156 | * 157 | * @param Request $request 158 | * @return bool 159 | */ 160 | public function add($request) { 161 | $this->requests[] = $request; 162 | return true; 163 | } 164 | 165 | /** 166 | * Create new Request and add it to the request queue 167 | * 168 | * @param string $url 169 | * @param string $method 170 | * @param $post_data 171 | * @param $headers 172 | * @param $options 173 | * @return bool 174 | */ 175 | public function request($url, $method = "GET", $post_data = null, $headers = null, $options = null) { 176 | $this->requests[] = new RollingCurlRequest($url, $method, $post_data, $headers, $options); 177 | return true; 178 | } 179 | 180 | /** 181 | * Perform GET request 182 | * 183 | * @param string $url 184 | * @param $headers 185 | * @param $options 186 | * @return bool 187 | */ 188 | public function get($url, $headers = null, $options = null) { 189 | return $this->request($url, "GET", null, $headers, $options); 190 | } 191 | 192 | /** 193 | * Perform POST request 194 | * 195 | * @param string $url 196 | * @param $post_data 197 | * @param $headers 198 | * @param $options 199 | * @return bool 200 | */ 201 | public function post($url, $post_data = null, $headers = null, $options = null) { 202 | return $this->request($url, "POST", $post_data, $headers, $options); 203 | } 204 | 205 | /** 206 | * Execute processing 207 | * 208 | * @param int $window_size Max number of simultaneous connections 209 | * @return string|bool 210 | */ 211 | public function execute($window_size = null) { 212 | // rolling curl window must always be greater than 1 213 | if (sizeof($this->requests) == 1) { 214 | return $this->single_curl(); 215 | } else { 216 | // start the rolling curl. window_size is the max number of simultaneous connections 217 | return $this->rolling_curl($window_size); 218 | } 219 | } 220 | 221 | /** 222 | * Performs a single curl request 223 | * 224 | * @access private 225 | * @return string 226 | */ 227 | private function single_curl() { 228 | $ch = curl_init(); 229 | $request = array_shift($this->requests); 230 | $options = $this->get_options($request); 231 | curl_setopt_array($ch, $options); 232 | $output = curl_exec($ch); 233 | $info = curl_getinfo($ch); 234 | 235 | // it's not neccesary to set a callback for one-off requests 236 | if ($this->callback) { 237 | $callback = $this->callback; 238 | if (is_callable($this->callback)) { 239 | call_user_func($callback, $output, $info, $request); 240 | } 241 | } 242 | else 243 | return $output; 244 | return true; 245 | } 246 | 247 | /** 248 | * Performs multiple curl requests 249 | * 250 | * @access private 251 | * @throws RollingCurlException 252 | * @param int $window_size Max number of simultaneous connections 253 | * @return bool 254 | */ 255 | private function rolling_curl($window_size = null) { 256 | if ($window_size) 257 | $this->window_size = $window_size; 258 | 259 | // make sure the rolling window isn't greater than the # of urls 260 | if (sizeof($this->requests) < $this->window_size) 261 | $this->window_size = sizeof($this->requests); 262 | 263 | if ($this->window_size < 2) { 264 | throw new RollingCurlException("Window size must be greater than 1"); 265 | } 266 | 267 | $master = curl_multi_init(); 268 | 269 | // start the first batch of requests 270 | for ($i = 0; $i < $this->window_size; $i++) { 271 | $ch = curl_init(); 272 | 273 | $options = $this->get_options($this->requests[$i]); 274 | 275 | curl_setopt_array($ch, $options); 276 | curl_multi_add_handle($master, $ch); 277 | 278 | // Add to our request Maps 279 | $key = (string) $ch; 280 | $this->requestMap[$key] = $i; 281 | } 282 | 283 | do { 284 | while (($execrun = curl_multi_exec($master, $running)) == CURLM_CALL_MULTI_PERFORM) ; 285 | if ($execrun != CURLM_OK) 286 | break; 287 | // a request was just completed -- find out which one 288 | while ($done = curl_multi_info_read($master)) { 289 | 290 | // get the info and content returned on the request 291 | $info = curl_getinfo($done['handle']); 292 | $output = curl_multi_getcontent($done['handle']); 293 | 294 | // send the return values to the callback function. 295 | $callback = $this->callback; 296 | if (is_callable($callback)) { 297 | $key = (string) $done['handle']; 298 | $request = $this->requests[$this->requestMap[$key]]; 299 | unset($this->requestMap[$key]); 300 | call_user_func($callback, $output, $info, $request); 301 | } 302 | 303 | // start a new request (it's important to do this before removing the old one) 304 | if ($i < sizeof($this->requests) && isset($this->requests[$i]) && $i < count($this->requests)) { 305 | $ch = curl_init(); 306 | $options = $this->get_options($this->requests[$i]); 307 | curl_setopt_array($ch, $options); 308 | curl_multi_add_handle($master, $ch); 309 | 310 | // Add to our request Maps 311 | $key = (string) $ch; 312 | $this->requestMap[$key] = $i; 313 | $i++; 314 | } 315 | 316 | // remove the curl handle that just completed 317 | curl_multi_remove_handle($master, $done['handle']); 318 | 319 | } 320 | 321 | // Block for data in / output; error handling is done by curl_multi_exec 322 | if ($running) 323 | curl_multi_select($master, $this->timeout); 324 | 325 | } while ($running); 326 | curl_multi_close($master); 327 | return true; 328 | } 329 | 330 | 331 | /** 332 | * Helper function to set up a new request by setting the appropriate options 333 | * 334 | * @access private 335 | * @param Request $request 336 | * @return array 337 | */ 338 | private function get_options($request) { 339 | // options for this entire curl object 340 | $options = $this->__get('options'); 341 | if (ini_get('safe_mode') == 'Off' || !ini_get('safe_mode')) { 342 | $options[CURLOPT_FOLLOWLOCATION] = 1; 343 | $options[CURLOPT_MAXREDIRS] = 5; 344 | } 345 | $headers = $this->__get('headers'); 346 | 347 | // append custom options for this specific request 348 | if ($request->options) { 349 | $options = $request->options + $options; 350 | } 351 | 352 | // set the request URL 353 | $options[CURLOPT_URL] = $request->url; 354 | 355 | // posting data w/ this request? 356 | if ($request->post_data) { 357 | $options[CURLOPT_POST] = 1; 358 | $options[CURLOPT_POSTFIELDS] = $request->post_data; 359 | } 360 | if ($headers) { 361 | $options[CURLOPT_HEADER] = 0; 362 | $options[CURLOPT_HTTPHEADER] = $headers; 363 | } 364 | 365 | return $options; 366 | } 367 | 368 | /** 369 | * @return void 370 | */ 371 | public function __destruct() { 372 | unset($this->window_size, $this->callback, $this->options, $this->headers, $this->requests); 373 | } 374 | } 375 | -------------------------------------------------------------------------------- /demo/chains_of_requests.php: -------------------------------------------------------------------------------- 1 | init_console(); 18 | 19 | $AC->load_useragent_list( AC_DIR . DIRECTORY_SEPARATOR . 'import' . DIRECTORY_SEPARATOR . 'useragent_list.txt'); 20 | 21 | ?> 22 | 23 | # Adding first 10 requests 24 | 25 | get("http://ya.ru/?$i"); 28 | ?> 29 | 30 | # Starting with number of threads = 10 31 | # After each of first 5 finished request - new one will be added 32 | # They all will proceed to execute immediatly (see callback_function) 33 | 34 | execute(10); 36 | ?> 37 | 38 | # Totally run 15 requests 39 | 40 | # Let's add 2 more 41 | 42 | get('http://ya.ru/?after_finished_1'); 44 | $AC->get('http://ya.ru/?after_finished_2'); 45 | ?> 46 | 47 | # Nothing happend, lets run execute() again 48 | 49 | execute(10); 51 | ?> 52 | 53 | # Previous 15 request + 2 new executed 54 | # Let's flush them and add new requests 55 | 56 | flush_requests(); 58 | 59 | $AC->get('http://ya.ru/?after_flushed_1'); 60 | $AC->get('http://ya.ru/?after_flushed_2'); 61 | $AC->get('http://ya.ru/?after_flushed_3'); 62 | 63 | $AC->execute(10); 64 | ?> 65 | 66 | # We see just 3 new requests 67 | 68 | get("http://ya.ru/?callback$count"); 79 | } 80 | 81 | if($info['http_code']!==200) 82 | { 83 | AngryCurl::add_debug_msg( 84 | "->\t" . 85 | $request->options[CURLOPT_PROXY] . 86 | "\tFAILED\t" . 87 | $info['http_code'] . 88 | "\t" . 89 | $info['total_time'] . 90 | "\t" . 91 | $info['url'] 92 | ); 93 | }else 94 | { 95 | AngryCurl::add_debug_msg( 96 | "->\t" . 97 | $request->options[CURLOPT_PROXY] . 98 | "\tOK\t" . 99 | $info['http_code'] . 100 | "\t" . 101 | $info['total_time'] . 102 | "\t" . 103 | $info['url'] 104 | ); 105 | 106 | } 107 | 108 | return; 109 | } 110 | -------------------------------------------------------------------------------- /demo/extended_requests.php: -------------------------------------------------------------------------------- 1 | init_console(); 18 | 19 | # Importing proxy and useragent lists, setting regexp, proxy type and target url for proxy check 20 | # You may import proxy from an array as simple as $AC->load_proxy_list($proxy array); 21 | $AC->load_proxy_list( 22 | AC_DIR . DIRECTORY_SEPARATOR . 'import' . DIRECTORY_SEPARATOR . 'proxy_list.txt', 23 | # optional: number of threads 24 | 200, 25 | # optional: proxy type 26 | 'http', 27 | # optional: target url to check 28 | 'http://google.com', 29 | # optional: target regexp to check 30 | 'title>G[o]{2}gle' 31 | ); 32 | $AC->load_useragent_list( AC_DIR . DIRECTORY_SEPARATOR . 'import' . DIRECTORY_SEPARATOR . 'useragent_list.txt'); 33 | 34 | /* NOTE: IF USING request() - "on the fly" proxy server changing WILL apply 35 | * 36 | * You may use request(URL, METHOD, POST_DATA, HEADERS, CURL OPTIONS) to create add new requests 37 | * METHOD may be GET or POST 38 | * POST_DATA may be an array of POST-params 39 | * HEADERS may be any HTTP headers 40 | * CURL OPTIONS may be any of supported by CURL 41 | */ 42 | $AC->request('http://ya.ru'); 43 | 44 | /* NOTE: IF USING get() - "on the fly" proxy server changing WILL apply 45 | * 46 | * You may use shorcut get(URL, HEADERS, CURL OPTIONS) to create add new GET requests 47 | * HEADERS may be any HTTP headers 48 | * CURL OPTIONS may be any of supported by CURL 49 | */ 50 | $AC->get('http://ya.ru'); 51 | 52 | /* NOTE: IF USING post() - "on the fly" proxy server changing WILL apply 53 | * 54 | * You may use shorcut post(URL, POST_DATA, HEADERS, CURL OPTIONS) to create add new GET requests 55 | * POST_DATA may be an array of POST-params 56 | * HEADERS may be any HTTP headers 57 | * CURL OPTIONS may be any of supported by CURL 58 | */ 59 | $AC->post('http://ya.ru'); 60 | 61 | /* WARNING: IF USING AngryCurlRequest - no "on the fly" proxy server changing will apply 62 | * 63 | * You may use AngryCurlRequest(URL, METHOD, POST_DATA, HEADERS, CURL OPTIONS) to create add new requests 64 | * METHOD may be GET or POST 65 | * POST_DATA may be an array of POST-params 66 | * HEADERS may be any HTTP headers 67 | * CURL OPTIONS may be any of supported by CURL 68 | * 69 | * Properties are public, they may be passed to constructer on changed after as in example below 70 | */ 71 | $request = new AngryCurlRequest('http://ya.ru'); 72 | $request->options = array(CURLOPT_HEADER => true, CURLOPT_NOBODY => true); 73 | $AC->add($request); 74 | 75 | # Starting with number of threads = 200 76 | $AC->execute(200); 77 | 78 | # You may pring debug information, if console_mode is NOT on ( $AC->init_console(); ) 79 | //AngryCurl::print_debug(); 80 | 81 | # Destroying 82 | unset($AC); 83 | 84 | # Callback function example 85 | function callback_function($response, $info, $request) 86 | { 87 | if($info['http_code']!==200) 88 | { 89 | AngryCurl::add_debug_msg( 90 | "->\t" . 91 | $request->options[CURLOPT_PROXY] . 92 | "\tFAILED\t" . 93 | $info['http_code'] . 94 | "\t" . 95 | $info['total_time'] . 96 | "\t" . 97 | $info['url'] 98 | ); 99 | }else 100 | { 101 | AngryCurl::add_debug_msg( 102 | "->\t" . 103 | $request->options[CURLOPT_PROXY] . 104 | "\tOK\t" . 105 | $info['http_code'] . 106 | "\t" . 107 | $info['total_time'] . 108 | "\t" . 109 | $info['url'] 110 | ); 111 | 112 | } 113 | 114 | return; 115 | } 116 | -------------------------------------------------------------------------------- /demo/proxy_checker.php: -------------------------------------------------------------------------------- 1 | array_proxy); 20 | } 21 | } 22 | 23 | $AC = new ProxyChecker(); 24 | $AC->__set('window_size', 200); 25 | $AC->load_proxy_list( 26 | AC_DIR . DIRECTORY_SEPARATOR . 'import' . DIRECTORY_SEPARATOR . 'proxy_list.txt', 27 | 200, 28 | 'http', 29 | 'http://google.com', 30 | 'title>G[o]{2}gle' 31 | ); 32 | $AC->export_proxy_list(); -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- 1 | init_console(); 18 | 19 | # Importing proxy and useragent lists, setting regexp, proxy type and target url for proxy check 20 | # You may import proxy from an array as simple as $AC->load_proxy_list($proxy array); 21 | $AC->load_proxy_list( 22 | AC_DIR . DIRECTORY_SEPARATOR . 'import' . DIRECTORY_SEPARATOR . 'proxy_list.txt', 23 | # optional: number of threads 24 | 200, 25 | # optional: proxy type 26 | 'http', 27 | # optional: target url to check 28 | 'http://google.com', 29 | # optional: target regexp to check 30 | 'title>G[o]{2}gle' 31 | ); 32 | $AC->load_useragent_list( AC_DIR . DIRECTORY_SEPARATOR . 'import' . DIRECTORY_SEPARATOR . 'useragent_list.txt'); 33 | 34 | # Basic request usage (for extended - see demo folder) 35 | $AC->get('http://ya.ru'); 36 | $AC->get('http://ya.ru'); 37 | $AC->get('http://ya.ru'); 38 | 39 | # Starting with number of threads = 200 40 | $AC->execute(200); 41 | 42 | # You may pring debug information, if console_mode is NOT on ( $AC->init_console(); ) 43 | //AngryCurl::print_debug(); 44 | 45 | # Destroying 46 | unset($AC); 47 | 48 | # Callback function example 49 | function callback_function($response, $info, $request) 50 | { 51 | if($info['http_code']!==200) 52 | { 53 | AngryCurl::add_debug_msg( 54 | "->\t" . 55 | $request->options[CURLOPT_PROXY] . 56 | "\tFAILED\t" . 57 | $info['http_code'] . 58 | "\t" . 59 | $info['total_time'] . 60 | "\t" . 61 | $info['url'] 62 | ); 63 | }else 64 | { 65 | AngryCurl::add_debug_msg( 66 | "->\t" . 67 | $request->options[CURLOPT_PROXY] . 68 | "\tOK\t" . 69 | $info['http_code'] . 70 | "\t" . 71 | $info['total_time'] . 72 | "\t" . 73 | $info['url'] 74 | ); 75 | 76 | } 77 | 78 | return; 79 | } 80 | -------------------------------------------------------------------------------- /import/proxy_list.txt: -------------------------------------------------------------------------------- 1 | 46.4.7.198:3128 2 | 217.219.123.59:3128 3 | 92.39.54.161:8080 4 | 62.0.192.219:80 5 | 77.89.233.54:8080 6 | 41.75.201.146:3128 7 | 213.197.182.78:3128 8 | 186.215.235.68:3128 9 | 78.39.68.145:3128 10 | 85.185.182.1:8080 11 | 189.108.118.194:3128 12 | 187.63.15.61:3128 13 | 187.60.96.7:3128 14 | 118.99.74.5:8080 15 | 189.113.64.122:8080 16 | 196.216.56.18:3128 17 | 72.64.146.136:8080 18 | 186.46.187.43:3128 19 | 186.3.39.130:3128 20 | 190.121.135.178:8080 21 | 202.98.123.126:8080 22 | 203.114.112.101:3128 23 | 67.55.115.76:8080 24 | 187.93.77.235:80 25 | 201.245.64.98:3128 26 | 122.72.0.6:80 27 | 187.93.77.235:3128 28 | 189.3.61.2:3128 29 | 222.77.69.210:3128 30 | 180.137.45.86:8080 31 | 189.80.149.98:3128 32 | 116.66.204.50:8080 33 | 60.28.209.24:3128 34 | 218.92.252.23:8080 35 | 187.111.223.10:8080 36 | 61.185.143.178:8080 37 | 187.6.254.19:3128 38 | 92.39.54.161:80 39 | 210.101.131.231:8080 40 | 88.85.108.16:8080 41 | 59.46.67.108:8080 42 | 221.12.89.189:80 43 | 122.72.33.138:80 44 | 221.229.119.186:80 45 | 119.82.239.50:8080 46 | 219.130.39.9:3128 47 | 221.210.40.150:8080 48 | 119.1.174.28:3128 49 | 186.3.71.155:8080 50 | 203.189.148.102:8080 51 | 123.124.158.227:8080 52 | 201.238.150.239:3128 53 | 174.137.152.60:8080 54 | 118.97.147.182:8080 55 | 62.121.64.19:8080 56 | 186.153.120.42:8080 57 | 219.83.100.204:8080 58 | 222.141.199.150:80 59 | 219.83.100.205:8080 60 | 186.215.231.211:8080 61 | 202.79.19.92:8080 62 | 118.96.94.252:3128 63 | 202.182.172.2:3128 64 | 217.146.208.162:8080 65 | 221.195.42.195:8080 66 | 118.96.153.181:8080 67 | 119.177.15.238:3128 68 | 201.64.254.228:3128 69 | 203.114.105.243:8080 70 | 203.93.104.20:80 71 | 46.232.207.230:8080 72 | 72.64.146.136:3128 73 | 190.9.128.96:80 74 | 110.138.237.116:3128 75 | 200.81.202.163:3128 76 | 78.188.31.151:80 77 | 202.51.113.81:8080 78 | 110.139.13.121:8080 79 | 180.244.208.185:80 80 | 118.96.251.234:8080 81 | 190.249.191.189:8080 82 | 41.221.156.50:3128 83 | 190.151.111.202:8080 84 | 203.190.190.68:8080 85 | 61.160.202.201:8090 86 | 110.139.60.228:8080 87 | 201.25.100.210:8080 88 | 202.181.176.3:80 89 | 201.251.62.137:8080 90 | 110.139.150.155:80 -------------------------------------------------------------------------------- /import/useragent_list.txt: -------------------------------------------------------------------------------- 1 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbBT5/5.14.1.20007) 2 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 463; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) 3 | Opera/9.80 (Windows NT 5.1; U; Edition Next; ru) Presto/2.10.238 Version/12.00 4 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727) 5 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRA 5.7 (build 3797); MRSPUTNIK 2, 4, 0, 463; MRA 5.7 (build 03797); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; HPNTDF; .NET4.0C; .NET4.0E; AskTbPTV2/5.12.2.16749) 6 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 7 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) 8 | Opera/9.80 (J2ME/MIDP; Opera Mini/5.1.22296/26.1424; U; ru) Presto/2.8.119 Version/10.54 9 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E; Tablet PC 2.0) 10 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; MRIE9) 11 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.2.25) Gecko/20111212 AskTbSPC2/3.14.1.20007 Firefox/3.6.25 (.NET CLR 3.5.30729) 12 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; yie9) 13 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2) 14 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/530.5 (KHTML, like Gecko) Chrome/2.0.172.40 Safari/530.5 15 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3) 16 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 3, 0, 104; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) 17 | Mozilla/5.0 (X11; Linux i686; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 18 | Mozilla/5.0 (compatible; discobot/2.0; +http://discoveryengine.com/discobot.html) 19 | Opera/9.80 (Windows NT 5.1; U; MRA 5.10 (build 5196); ru) Presto/2.10.229 Version/11.61 20 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.106 Safari/535.2 YE 21 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 22 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 171; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) 23 | Mozilla/5.0 (Windows; U; Windows NT 5.2; ru; rv:1.9.0.19) Gecko/2010031422 MRA 5.7 (build 03649) Firefox/3.0.19 (.NET CLR 3.5.30729) sputnik 2.5.2.22 24 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 (.NET CLR 3.5.30729) sputnik 2.4.0.46 25 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.22) Gecko/20110902 Firefox/3.6.22 ( .NET CLR 3.5.30729) 26 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Chrome/6.0.472.62 Safari/534.3 27 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 sputnik 2.5.2.32 28 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 29 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MAAU; .NET4.0C) 30 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.9 (build 4876); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 31 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.50 32 | Mozilla/5.0 (Linux; U; Android 3.1; ru-ru; GT-P7500 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 33 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; MRA 5.9 (build 4953); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; MRIE8PACK 2.0.1) 34 | Opera/9.80 (iPhone; Opera Mini/6.5.1.23995/26.1424; U; ru) Presto/2.8.119 Version/10.54 35 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.51.22 (KHTML, like Gecko) Version/5.1.1 Safari/534.51.22 36 | Opera/9.80 (Windows NT 6.1; U; Edition Yx; ru) Presto/2.9.168 Version/11.51 37 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 38 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; 0A3CF; InfoPath.2) 39 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 40 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0) 41 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC) 42 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1) 43 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MAAU; MAAU) 44 | Mozilla/4.79 [en] (Windows NT 5.0; U) 45 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.122 Safari/535.2 YE 46 | Opera/9.80 (Windows NT 5.1; U; IBM EVV/3.0/EAK01AG9/LE; ru) Presto/2.10.229 Version/11.61 47 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 2.0.50727) 48 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3) 49 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.26) Gecko/20120128 MRA 5.6 (build 03402) Firefox/3.6.26 50 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRSPUTNIK 2, 4, 0, 463; .NET CLR 1.1.4322) 51 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.19) Gecko/20110420 Firefox/3.5.19 (.NET CLR 3.5.30729) 52 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Zune 4.7) 53 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 270; MRA 5.7 (build 03757); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.1; .NET4.0C) 54 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; 0X29A) 55 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 56 | Opera/9.80 (Windows NT 5.1; U; Edition Yx 01; ru) Presto/2.10.229 Version/11.60 57 | Mozilla/5.0 (compatible; AhrefsBot/2.0; +http://ahrefs.com/robot/) 58 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.7) Gecko/2009021910 MRA 5.7 (build 03658) Firefox/3.0.7 (.NET CLR 3.5.30729) 59 | Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/20100101 Firefox/5.0 60 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Tablet PC 2.0) 61 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 ( .NET CLR 3.5.30729; .NET4.0E) 62 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; BTRS130435; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1) 63 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 GTB7.1 64 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.2; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 3.0.30729) 65 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322) 66 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.8 (build 4598); .NET CLR 1.1.4322; .NET CLR 2.0.50727) 67 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.11 (KHTML, like Gecko) Chrome/9.0.570.1 Safari/534.11 68 | Opera/9.80 (Windows NT 5.1; U; MRA 5.9 (build 4953); ru) Presto/2.9.168 Version/11.52 69 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727) 70 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET4.0C) 71 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.1.11355/26.1424; U; ru) Presto/2.8.119 Version/10.54 72 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 317; GTB7.2; InfoPath.2; AskTbPTV/5.12.5.17640) 73 | MLBot (www.metadatalabs.com/mlbot) 74 | Opera/9.80 (Windows NT 6.1; U; Edition Campaign 09; ru) Presto/2.9.168 Version/11.51 75 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506) 76 | Opera/9.80 (Windows NT 5.1; U; MRA 5.8 (build 4120); ru) Presto/2.10.229 Version/11.61 77 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 78 | Opera/9.80 (Windows NT 6.1; U; MRA 5.9 (build 4953); en) Presto/2.10.229 Version/11.61 79 | Sosospider+(+http://help.soso.com/webspider.htm) 80 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.19) Gecko/2010031422 MRA 5.3 (build 02560) Firefox/3.0.19 81 | Opera/9.64 (Windows NT 5.1; U; MRA 5.8 (build 4157); ru) Presto/2.1.1 82 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) 83 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; BRI/2; MASE) 84 | Mozilla/5.0 (Windows; U; Win98; ru; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20 85 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB7.2; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; AskTbPTV/5.14.1.20007) 86 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.7 Safari/535.19 87 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10 88 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C) 89 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB7.2; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618) 90 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 91 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; AT&T CSM6.0; SV1; FunWebProducts) 92 | Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0 93 | Opera/9.80 (BlackBerry; Opera Mini/6.5.27548/26.1424; U; ru) Presto/2.8.119 Version/10.54 94 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbFXTV5/5.14.1.20007) 95 | Opera/9.01 (Windows NT 5.1; U; en) 96 | Opera/9.80 (Windows NT 5.0; U; ru) Presto/2.6.30 Version/10.61 97 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Avant Browser; InfoPath.2; .NET4.0C; .NET4.0E) 98 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.1.3) Gecko/20090824 MRA 5.5 (build 02812) Firefox/3.5.3 MRSpy/0.3.11 (.NET CLR 3.5.30729) 99 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB7.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 100 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.3; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 101 | Mozilla/5.0 (compatible; MSIE 9.0 Windows NT 6.1; WOW64; Trident/5.0) 102 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0E; .NET4.0C) 103 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 463; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) 104 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 YE 105 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.9 (build 4953); .NET CLR 1.1.4322; .NET CLR 2.0.50727) 106 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRSPUTNIK 2, 4, 0, 270; MRA 5.8 (build 4598); GTB7.2; AskTbFF/5.11.3.15590; .NET CLR 1.1.4322) 107 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRSPUTNIK 2, 4, 0, 491; InfoPath.1) 108 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MALN; .NET4.0C) 109 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2) 110 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; HPDTDF; .NET4.0C) 111 | Opera/9.64(Windows NT 5.1; U; en) Presto/2.1.1 112 | Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.9.2.23) Gecko/20110921 Ubuntu/10.10 (maverick) Firefox/3.6.23 113 | Opera/9.80 (Windows NT 6.1; U; MRA 5.7 (build 03796); ru) Presto/2.10.229 Version/11.61 114 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.75 Safari/535.7 115 | Opera/10.00 (Windows NT 5.1; U; en) Presto/2.2.0 116 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1) 117 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 317; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) 118 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3; .NET4.0C) 119 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 sputnik 2.5.0.142 120 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 226; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; AskTbFXTV5/5.12.2.16749) 121 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0) 122 | Opera/9.80 (Windows NT 6.1; U; MRA 5.7 (build 03797); ru) Presto/2.2.15 Version/10.01 123 | Mozilla/5.0 (Linux; U; Android 2.2.2; ru-ru; Desire_A8181 Build/FRG83G) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 124 | Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 MRCHROME 125 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8) 126 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IEMB3; .NET CLR 1.1.4322; IEMB3; .NET CLR 2.0.50727) 127 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727) 128 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2) 129 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 sputnik 2.5.2.32 130 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.17) Gecko/20110121 Firefox/3.5.17 (.NET CLR 3.5.30729) 131 | Opera/9.80 (Windows NT 5.1; U; Edition Yx; ru) Presto/2.8.131 Version/11.10 132 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.15 (KHTML, like Gecko) Chrome/10.0.612.1 Safari/534.15 133 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322) 134 | Opera/9.80 (Android; Opera Mini/6.5.27482/27.1169; U; ru) Presto/2.8.119 Version/11.10 135 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 WebMoney Advisor 136 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0; .NET CLR 1.1.4322) 137 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.23) Gecko/20110920 Firefox/3.6.23 138 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 139 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.26) Gecko/20120128 BTRS35926 Firefox/3.6.26 ( .NET CLR 3.5.30729; .NET4.0E) 140 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; AskTbFXTV5/5.14.1.20007) 141 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; Tablet PC 2.0) 142 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MAAR; .NET4.0C) 143 | Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_2 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8H7 Safari/6533.18.5 144 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB7.2; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C) 145 | Opera/9.80 (Windows NT 6.0; U; Edition Yx 01; ru) Presto/2.10.229 Version/11.61 146 | Opera/9.80 (Series 60; Opera Mini/6.1.26266/26.1424; U; ru) Presto/2.8.119 Version/10.54 147 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.1.11320/26.1424; U; ru) Presto/2.8.119 Version/10.54 148 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SlimBrowser) 149 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; EasyBits GO v1.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) 150 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.7 (build 03757); .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 151 | Mozilla/5.0 (compatible; YandexSitelinks; Dyatel; +http://yandex.com/bots) 152 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7 (.NET CLR 3.5.30729) 153 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.12) Gecko/20101026 MRA 5.7 (build 03791) Firefox/3.6.12 sputnik 2.3.0.102 154 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11 155 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0E; InfoPath.2; .NET4.0C; .NET CLR 2.0.50727) 156 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; MS-RTC LM 8; .NET4.0C; .NET4.0E) 157 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 158 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3) 159 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) 160 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.2; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 161 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbHIP/5.13.1.18107) 162 | Opera/9.80 (Windows NT 6.0; U; Edition Yx; ru) Presto/2.10.229 Version/11.60 163 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 164 | Opera/9.80 (Windows NT 6.1; U; MRA 5.7 (build 03755); ru) Presto/2.10.229 Version/11.61 165 | Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) 166 | Opera/8.01 (J2ME/MIDP; Opera Mini/1.2.3214/1724; ru; U; ssr) 167 | Opera/9.80 (Windows NT 6.1; U; MRA 5.7 (build 03797); ru) Presto/2.10.229 Version/11.60 168 | Opera/9.80 (Windows NT 5.0; U; ru) Presto/2.6.30 Version/10.60 169 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRA 5.1 (build 02214)) 170 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 463; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 171 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1) 172 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.7 (build 03797); EasyBits GO v1.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 173 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 174 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 289; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E) 175 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 176 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 491; GTB7.2; InfoPath.2) 177 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.3.25172/26.1424; U; ru) Presto/2.8.119 Version/10.54 178 | Opera/9.80 (Windows NT 6.1; U; MRA 5.9 (build 4876); ru) Presto/2.2.15 Version/10.01 179 | Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.7 Safari/535.19 180 | Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11 181 | Mozilla/5.0 (Windows NT 6.1; rv:11.0) Gecko/20100101 Firefox/11.0 182 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 471; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) 183 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) 184 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 185 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 463; GTB7.2; MRA 5.7 (build 03789); .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705; .NET4.0C; .NET4.0E) 186 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.5; rv:10.0) Gecko/20100101 Firefox/10.0 187 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.106 Safari/535.2 YE 188 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.19) Gecko/2010031422 MRA 5.5 (build 02761) Firefox/3.0.19 (.NET CLR 3.5.30729) sputnik 2.0.1.37 189 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; MALC) 190 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3) 191 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C) 192 | Mozilla/5.0 (X11; U; Linux i686; ru-RU) AppleWebKit/533.3 (KHTML, like Gecko) Qt/4.7.4 Safari/533.3 193 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.8 (KHTML, like Gecko) Chrome/17.0.942.0 Safari/535.8 YE 194 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.18) Gecko/20110319 Firefox/3.5.18 ( .NET CLR 3.5.30729) 195 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 493; .NET CLR 1.1.4322) 196 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; BRI/2) 197 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 484; MRA 5.9 (build 4953); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; MATM) 198 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Pivim Multibar; MRSPUTNIK 2, 4, 0, 270; MRA 5.8 (build 4139); Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;RURU) 199 | Opera/9.23 (Windows NT 5.1; U; ru) 200 | Opera/9.80 (Android 2.3.3; Linux; Opera Mobi/ADR-1110071847; U; ru) Presto/2.9.201 Version/11.50 201 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7 202 | Opera/9.80 (Windows NT 5.1; U; YB/5.0.3; ru) Presto/2.9.168 Version/11.52 203 | Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; ru-ru) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 204 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.1) 205 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 270; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C) 206 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 207 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729) 208 | Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.9.168 Version/11.51 209 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 210 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322) 211 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRSPUTNIK 2, 3, 0, 301; GTB7.2; MRA 5.7 (build 03796); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 212 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 GTB7.1 ( .NET CLR 3.5.30729) 213 | Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_2 like Mac OS X; ru-ru) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8H7 Safari/6533.18.5 214 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; InfoPath.2; .NET4.0C; Media Center PC 6.0) 215 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Hotbar 4.4.6.0; HbTools 4.8.0) 216 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727) 217 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; HPNTDF; .NET4.0C; BRI/2) 218 | Mozilla/5.0 (Linux; U; Android 2.3.4; ru-ru; LG-P970 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 MMS/LG-Android-MMS-V1.0/1.2 219 | Opera/8.01 (Windows NT 5.1) 220 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 493; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 221 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Comodo_Dragon/16.2.1.0 Chrome/16.0.912.75 Safari/535.7 222 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/535.3 (KHTML, like Gecko) Maxthon/3.0 Safari/535.3 223 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; .NET4.0C) 224 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 460; GTB7.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 225 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; .NET4.0C) 226 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; .NET CLR 3.5.21022; .NET CLR 3.5.30729) 227 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0) 228 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04324.17; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 229 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) 230 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.75 Safari/535.7 231 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; AskTbBLPV5/5.13.1.18107; .NET4.0C; InfoPath.2) 232 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.13) Gecko/2009073022 Firefox/3.0.13 233 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; WOW64; Trident/5.0) 234 | User-Agent Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.3) Gecko/2008092417 AdCentriaIM/1.7 Firefox/3.0.3 235 | Opera/9.80 (Windows NT 6.0; U; IBM EVV/3.0/EAK01AG9/LE; Edition Next; ru) Presto/2.10.238 Version/12.00 236 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 237 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 9.0 238 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6 sputnik 2.5.2.20 239 | Opera/9.80 (Windows NT 5.1; U; Edition Ukraine Local; en) Presto/2.10.229 Version/11.61 240 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1) 241 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0) 242 | Opera/9.80 (Windows NT 6.1; U; MRA 5.7 (build 03757); ru) Presto/2.10.229 Version/11.61 243 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.218 Safari/535.1 YE 244 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 245 | Mozilla/5.0 (Linux; U; Android 2.3.4; ru-ru; HTC Sensation 4G Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 246 | Mozilla/4.0 (compatible; MSIE 4.01; Digital AlphaServer 1000A 4/233; Windows NT; Powered By 64-Bit Alpha Processor) 247 | Baiduspider+(+http://www.baidu.com/search/spider.htm) 248 | Mozilla/5.0 (Linux; U; Android 2.3.3; ru-ru; GT-S5830 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 249 | Opera/9.80 (Windows NT 6.1; U; MRA 5.7 (build 03686); ru) Presto/2.10.229 Version/11.61 250 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.120 Safari/535.2 251 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 (.NET CLR 3.5.30729) sputnik 2.3.0.94 252 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Maxthon; .NET CLR 1.1.4322) 253 | Acoon v4.10.1 (www.acoon.de) 254 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; AskTbFXTV5/5.14.1.20007) 255 | Googlebot-Image/1.0 256 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727) 257 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1) 258 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; GTB7.2; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; .NET4.0C) 259 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.3.25181/26.1424; U; ru) Presto/2.8.119 Version/10.54 260 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3) 261 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 490; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 262 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 2, 0, 94; MRA 5.6 (build 03278); InfoPath.1; .NET CLR 2.0.50727) 263 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.78 Safari/532.5 264 | Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.0) Opera 7.02 Bork-edition [en] 265 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.2.10) Gecko/20100916 Firefox/3.6.10 266 | Opera/9.80 (Windows NT 6.2; U; YB/3.5.1; ru) Presto/2.6.30 Version/10.63 267 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) 268 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; .NET4.0C; .NET4.0E) 269 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6 270 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C) 271 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 386; MRA 5.8 (build 4664); InfoPath.2; 360SE) 272 | Opera/9.80 (Windows NT 5.1; U; MRA 5.7 (build 03658); MRSPUTNIK OW 2, 3, 0, 216; ru) Presto/2.6.31 Version/10.70 273 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C) 274 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 275 | Mozilla/5.0 (Windows NT 6.0; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0 276 | Opera/9.80 (Windows NT 6.1; U; MRA 5.9 (build 4953); ru) Presto/2.7.62 Version/11.01 277 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; InfoPath.1) 278 | Opera/9.80 (Windows NT 5.1; U; MRSPUTNIK OW 2, 3, 0, 228; ru) Presto/2.10.229 Version/11.61 279 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.8 (build 4598); .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1) 280 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Creative AutoUpdate v1.40.01) 281 | User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 YE 282 | Mozilla/5.0 (Windows NT 6.1; rv:12.0a2) Gecko/20120203 Firefox/12.0a2 283 | Mozilla/5.0 (Linux; U; Android 4.0.3; ru-ru; Transformer Prime TF201 Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 284 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 1.1.4322) 285 | Opera/9.80 (Windows NT 5.0; U; ru) Presto/2.10.229 Version/11.61 286 | Opera/9.80 (X11; Linux i686; U; en) Presto/2.7.62 Version/11.00 287 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; DigExt; (R1 1.5); MSN 9.0;MSN 9.1; MSNbVZ02; MSNmen-us; MSNcOTH) 288 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 270; RadioClicker LITE; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) 289 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 MRA 5.7 (build 03797) Firefox/3.6.26 GTB7.1 290 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 463; MRA 5.8 (build 4156); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; HPNTDF; .NET4.0C) 291 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 YE 292 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) Chrome/4.0.221.7 Safari/532.2 293 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.8.131 Version/11.11 294 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; .NET4.0C; .NET4.0E) 295 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 (.NET CLR 3.5.30729) 296 | Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.11) ASUS-P526/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 297 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 298 | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) 299 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.2.14320/26.1424; U; ru) Presto/2.8.119 Version/10.54 300 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; MRSPUTNIK 2, 4, 0, 493; MRA 5.9 (build 4953); .NET CLR 1.1.4322; InfoPath.1) 301 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRA 5.9 (build 4953); MRSPUTNIK 2, 4, 0, 493; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; AskTB5.5) 302 | Mozilla/5.0 (Windows NT 5.1; rv:5.0.1) Gecko/20100101 Firefox/5.0.1 303 | Opera/9.80 (Windows NT 5.1; U; Distribution 00; ru) Presto/2.10.229 Version/11.61 304 | AportCatalogRobot/2.0 305 | Microsoft-WebDAV-MiniRedir/6.0.6002 306 | amaya/9.52 libwww/5.4.0 307 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 484; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3) 308 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3 309 | Opera/9.64 (Windows NT 5.1; U; ru) Presto/2.1.1 310 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 226; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MAAU; InfoPath.2; .NET CLR 1.1.4322; .NET4.0C) 311 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 YB/4.3.0 312 | Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; HTC_Sensation_Z710e; ru-ru) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 313 | Mozilla/5.0 (Linux; U; Android 2.2.2; ru-ru; HTC Desire Build/FRG83G) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 314 | Mozilla/5.0 (Linux; U; Linux Ventana; ru-ru; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/8.0 Safari/534.13 315 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 316 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.2.14881/26.1424; U; en) Presto/2.8.119 Version/10.54 317 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRSPUTNIK 2, 4, 0, 368; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 318 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 MRA 5.7 (build 03797) Firefox/3.6.26 sputnik 2.5.0.142 319 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;RURU; MAXTHON 2.0) 320 | Zend_Http_Client 321 | Mozilla/5.0 (X11; U; Linux x86_64; C) AppleWebKit/533.3 (KHTML, like Gecko) Qt/4.7.0 Safari/533.3 322 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1 323 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.6 (build 03402); .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; CMDTDF; .NET4.0C; .NET4.0E) 324 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 325 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8) 326 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.70 Safari/533.4 327 | HTC_Touch_Diamond2_T5353 Opera/9.7 (Windows NT 5.1; U; ru) 328 | Opera/9.80 (Windows NT 5.1; U; MRA 5.8 (build 4157); ru) Presto/2.10.229 Version/11.61 329 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 330 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322) 331 | Mozilla/5.0 (compatible; AhrefsBot/2.0; +http://ahrefs.com/robot/),gzip(gfe) (via docs.google.com/viewer) 332 | MAUI_WAP_Browser 333 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; RadioClicker LITE; RadioClicker http://radioclicker.com; .NET CLR 2.0.50727) 334 | Mozilla/4.0 (compatible; MSIE 6.0; Update a; AOL 6.0; Windows 98) 335 | Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 336 | Opera/9.80 (Windows Mobile; WCE; Opera Mobi/WMD-50430; U; ru) Presto/2.4.13 Version/10.00 337 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.2; MRSPUTNIK 2, 4, 0, 463; MRA 5.7 (build 03773); SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C) 338 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MRSPUTNIK 2, 3, 0, 218; MRA 5.6 (build 03403); GTB7.2; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618) 339 | Opera/9.80 (Windows NT 5.1; U; IBM EVV/3.0/EAK01AG9/LE; MRA 5.8 (build 4664); ru) Presto/2.10.229 Version/11.61 340 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.6.30 Version/10.62 341 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; MRA 4.6 (build 01425); .NET CLR 1.1.4322; .NET CLR 2.0.50727) 342 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.3) 343 | Opera/9.80 (Windows NT 5.1; U; MRA 5.9 (build 4947); ru) Presto/2.10.229 Version/11.61 344 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.1.249.1059 Safari/532.5 345 | Mozilla/5.0 (en-us) AppleWebKit/534.14 (KHTML, like Gecko; Google Wireless Transcoder) Chrome/9.0.597 Safari/534.14 346 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 347 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; AskTbPTV/5.14.1.20007) 348 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.6.30 Version/10.61 349 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 350 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; MRA 5.2 (build 02415); BTRS122153; MRSPUTNIK 2, 0, 1, 31 SW; RadioClicker LITE; RadioClicker http://radioclicker.com; MRSPUTNIK 2, 0, 1, 31 HW; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C) 351 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2 YE 352 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Avant Browser [avantbrowser.com]; Hotbar 4.4.5.0) 353 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322) 354 | Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Ubuntu/10.04 Chromium/15.0.874.106 Chrome/15.0.874.106 Safari/535.2 355 | Opera/9.80 (Windows NT 5.1; U; MRA 5.9 (build 4953); ru) Presto/2.9.168 Version/11.51 356 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 357 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; MRSPUTNIK 2, 3, 0, 301; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 358 | Opera/9.80 (Windows NT 6.1; U; Edition Indonesian Local; en) Presto/2.10.229 Version/11.61 359 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 360 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.2.20457/26.1424; U; ru) Presto/2.8.119 Version/10.54 361 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 501; MRA 5.7 (build 03797); Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 362 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; MRA 5.8 (build 4598); MRSPUTNIK 2, 4, 0, 329; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3) 363 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MRSPUTNIK 2, 4, 0, 491; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 3.0.30729) 364 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0) 365 | Opera/9.80 (Windows NT 5.1; U; MRA 5.7 (build 03757); ru) Presto/2.9.168 Version/11.51 366 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.19) Gecko/2010031422 Firefox/3.0.19 ( .NET CLR 3.5.30729) 367 | Mozilla/5.0 (Windows NT 6.0; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0 368 | Opera/9.80 (Windows NT 5.1; U; MRA 5.3 (build 02552); ru) Presto/2.10.229 Version/11.61 369 | Opera/9.80 (Windows NT 6.1; U; MRA 5.7 (build 03790); ru) Presto/2.10.229 Version/11.61 370 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 484; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0; BRI/2; MASE) 371 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 ( .NET CLR 3.5.30729; .NET4.0E) sputnik 2.5.0.142 372 | Mozilla/5.0 (Windows NT 5.2; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 373 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 374 | Opera/9.51 (Windows NT 5.1; U; ru) 375 | Opera/9.63 (Windows NT 5.1; U; MRA 5.10 (build 5196); ru) Presto/2.1.1 376 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Comcast Install 1.0) 377 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 378 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 379 | Opera/9.80 (Windows NT 6.1; U; Edition NCSD1; ru) Presto/2.10.229 Version/11.61 380 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.642.0 Safari/534.16 381 | Opera/9.53 (Windows NT 5.1; U; ru) 382 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.3) 383 | Opera/9.80 (Windows NT 5.1; U; ; MRSPUTNIK OW 2, 3, 0, 244; MRA 5.8 (build 4664); ru) Presto/2.10.229 Version/11.61 384 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/530.0 (KHTML, like Gecko) Chrome/2.0.160.0 Safari/530.0 385 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Chrome/0.4.154.25 Safari/525.19 386 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 387 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0) 388 | Opera/9.62 (Windows NT 5.1; U; ru) Presto/2.1.1 389 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2 WebMoney Advisor 390 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 484; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; Tablet PC 2.0) 391 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRA 5.7 (build 3755); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Tablet PC 2.0) 392 | Jakarta Commons-HttpClient/3.1 393 | Mozilla/5.0 (Linux; U; Android 2.3.5; ru-ru; HTC_IncredibleS_S710e Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 394 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRSPUTNIK 2, 4, 0, 329; MRA 5.8 (build 4598); .NET CLR 1.1.4322; .NET CLR 2.0.50727) 395 | Mozilla/5.0 (Linux; U; Android 3.2; ru-ru; A500 Build/HTJ85B) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 396 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2) 397 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.0 (build 02094); .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; Maxthon 2.0) 398 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461) 399 | Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413 400 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 401 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.12 Safari/535.11 YE 402 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 403 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 404 | Mozilla/4.0 (compatible- MSIE 6.0- Windows NT 5.1- SV1- .NET CLR 1.1.4322 405 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 454; GTB7.2; .NET CLR 1.1.4322; InfoPath.2) 406 | Opera/9.80 (X11; Linux zbov; U; ru) Presto/2.9.201 Version/11.50 407 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; MS-RTC LM 8) 408 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 270; MRA 5.7 (build 03797)) 409 | Opera/9.80 (Windows NT 5.1; U; MRA 5.8 (build 4156); ru) Presto/2.10.229 Version/11.61 410 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/532.4 (KHTML, like Gecko) Chrome/4.0.237.0 Safari/532.4 411 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 3, 0, 104) 412 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.1; MS-RTC LM 8) 413 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729) 414 | DLE_Spider.exe 415 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) 416 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 417 | Mozilla/5.0 (Windows NT 6.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 418 | Opera/9.80 (Windows NT 6.0; U; MRA 5.9 (build 4953); ru) Presto/2.9.168 Version/11.51 419 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.55 Safari/533.4 420 | Opera/9.80 (J2ME/MIDP; Opera Mini/6.24093/26.1424; U; ru) Presto/2.8.119 Version/10.54 421 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MRSPUTNIK 2, 4, 0, 405; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618) 422 | Mozilla/5.0 (Linux; U; Android 2.3.6; ru-ru; GT-I9001 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 423 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MyIE2; Maxthon) 424 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 425 | Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; ru-ru) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.21.1 426 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MALN; InfoPath.2; .NET4.0C) 427 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.4pre) Gecko/20090903 SeaMonkey/2.0b2 428 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.2) Gecko/20090729 AdCentriaIM/1.7 Firefox/3.5.2 WebMoney Advisor MRA 5.5 (build 02842); 429 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30) 430 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3; .NET4.0C; .NET4.0E) 431 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 MRA 5.7 (build 03796) Firefox/3.6.26 sputnik 2.5.0.148 432 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; CMDTDF; .NET4.0C) 433 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.16) Gecko/20110319 MRA 5.7 (build 03686) Firefox/3.6.16 ( .NET CLR 3.5.30729; .NET4.0E) 434 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 432; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0) 435 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 226; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) 436 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.5 (build 02842); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; InfoPath.2) 437 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.1) 438 | Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.2; Windows NT 5.1; SV1; .NET CLR 1.1.4322) 439 | Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; 240x320) 440 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022) 441 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; EasyBits GO v1.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) 442 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BRI/2) 443 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729) 444 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.3; .NET CLR 1.1.4322; .NET CLR 3.0.04506.03) 445 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 446 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 447 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 501; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; AskTbPTV/5.14.1.20007) 448 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 449 | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) 450 | Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.9.2.20) Gecko/20110805 Ubuntu/10.10 (maverick) Firefox/3.6.20 451 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 368; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0; BRI/2; MASE) 452 | Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95_8GB/15.0.015; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413 453 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.3 (KHTML, like Gecko) Maxthon/3.3.3.1000 Chrome/16.0.883.0 Safari/535.3 454 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/5.0.342.9 Safari/533.2 455 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0; .NET CLR 1.0.2914) 456 | Opera/9.80 (Windows NT 6.1; U; uk) Presto/2.10.229 Version/11.61 457 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.0.19) Gecko/2010031422 Firefox/3.0.19 458 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 (.NET CLR 3.5.30729) sputnik 2.3.0.101 459 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.3; .NET4.0C; .NET4.0E; Creative AutoUpdate v1.40.01) 460 | Mozilla/5.0 (Linux; U; Android 2.2; ru-ru; Desire_A8181 Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 461 | Mozilla/5.0 (compatible; WBSearchBot/1.1; +http://www.warebay.com/bot.html) 462 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.21 Safari/532.0 463 | libwww-perl/5.833 464 | Opera/9.80 (X11; Linux i686; U; ru) Presto/2.8.131 Version/11.10 465 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322) 466 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.76 Safari/535.7 YI 467 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MRA 5.6 (build 03278); MRA 5.6 (build 03278); InfoPath.1) 468 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 454; GTB7.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 469 | Mozilla/4.0 (compatible; MSIE 5.5; Windows 95) 470 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.29 Safari/535.1 471 | Opera/9.80 (Windows NT 5.1; U; MRA 5.10 (build 5217); ru) Presto/2.10.229 Version/11.61 472 | Opera/9.80 (Windows NT 5.1; U; MRA 5.10 (build 5196); ru) Presto/2.10.229 Version/11.60 473 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729) 474 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 MRA 5.4 (build 02647) Firefox/3.6.26 (.NET CLR 3.5.30729) 475 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) 476 | Mozilla/6.0 (compatible; MSIE 7.0a1; Windows NT 5.2; SV1) 477 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 478 | Mozilla/5.0 (compatible; YandexImageResizer/2.0; +http://yandex.com/bots) 479 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.1.249.1036 Safari/532.5 480 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 317; GTB7.2; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727) 481 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) 482 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/5.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) 483 | Mozilla/4.0 (compatible; ICS) 484 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; MRA 5.9 (build 4953); MRSPUTNIK 2, 4, 0, 484; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Tablet PC 2.0) 485 | Opera/9.80 (J2ME/MIDP; Opera Mini/6.1.25403/26.1424; U; ru) Presto/2.8.119 Version/10.54 486 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 270; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET4.0C) 487 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0.1) Gecko/20100101 Firefox/5.0.1 488 | Opera/9.80 (Android 3.2.1; Linux; Opera Tablet/ADR-1111101157; U; ru) Presto/2.9.201 Version/11.50 489 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2) 490 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 484; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; BRI/2; MASM; .NET4.0C; My Toolbar) 491 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.9 (build 4876); .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 492 | XBUONFKKXFCZ (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 493 | Mozilla/5.0 (compatible; YandexAntivirus/2.0; +http://yandex.com/bots) 494 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2 495 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C) 496 | Mozilla/5.0 (Linux; U; Android 2.2.1; ru-ru; A43 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 497 | Mozilla/5.0 (Linux; U; Android 2.2; ru-ru; GT-P1000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 498 | Opera/9.80 (Windows NT 5.1; U; MRA 5.5 (build 02842); ru) Presto/2.10.229 Version/11.61 499 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MATM) 500 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; MAAU) 501 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 270; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 502 | Mozilla/5.0 (Windows NT 6.0; rv:8.0) Gecko/20100101 Firefox/8.0 503 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/534.52.7 (KHTML, like Gecko) 504 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 505 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1 506 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) 507 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1;) 508 | Opera/9.80 (Series 60; Opera Mini/6.5.27324/26.1424; U; ru) Presto/2.8.119 Version/10.54 509 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/5.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET4.0C) 510 | Mozilla/5.0 (Windows NT 6.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2 511 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; BTRS122288; .NET CLR 2.0.50727; .NET4.0C; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 512 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0) 513 | Opera/9.80 (Windows NT 5.1; U; MRA 5.10 (build 5218); ru) Presto/2.10.229 Version/11.60 514 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322) 515 | Opera/9.80 (Windows NT 6.1; U; Edition Yx; ru) Presto/2.10.229 Version/11.60 516 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729) 517 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; InfoPath.1; .NET CLR 2.0.50727) 518 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727) 519 | Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20100101 Firefox/10.0 520 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 521 | Opera/9.80 (Series 60; Opera Mini/6.5.27310/26.1424; U; ru) Presto/2.8.119 Version/10.54 522 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; MRSPUTNIK 2, 4, 0, 463; GTB7.2; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; InfoPath.3) 523 | Opera/9.00 (Windows NT 5.1; U; en) 524 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618) 525 | Opera/9.80 (Windows NT 5.1; U; MRA 5.8 (build 4133); ru) Presto/2.10.229 Version/11.61 526 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRSPUTNIK 2, 4, 0, 270; GTB7.2; MRA 5.7 (build 03757); .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 527 | Mozilla/5.0 (Linux; U; Android 3.2.1; ru-ru; A500 Build/HTK55D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 528 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 491; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BRI/2) 529 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 491; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; EasyBits GO v1.0; InfoPath.2) 530 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 454; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 531 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MALN) 532 | Opera/7.60 (Windows NT 5.2; U) [en] (IBM EVV/3.0/EAK01AG9/LE) 533 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.2.16320/26.1424; U; ru) Presto/2.8.119 Version/10.54 534 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 1, 0, 4 SW; MRA 5.5 (build 02830); .NET CLR 1.1.4322) 535 | Mozilla/5.0 (compatible; aiHitBot/1.0; +http://www.aihit.com/) 536 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; MRSPUTNIK 2, 4, 0, 484; MRA 5.9 (build 4953); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; ver:2.05571) 537 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 4.0.20506) YB/4.2.0 538 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.2; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.1; .NET CLR 3.0.30618; .NET4.0C) 539 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.9 (build 4953); .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 540 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) 541 | Opera/9.80 (Windows NT 5.1; U; MRA 5.10 (build 5196); ru) Presto/2.5.24 Version/10.53 542 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.6.35 Version/10.70 543 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; MRSPUTNIK 2, 4, 0, 493; .NET CLR 1.1.4322; .NET4.0C) 544 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727) 545 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; BTRS130414; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 546 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MALC) 547 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322; AskTbBA2/5.14.1.20007) 548 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 270; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; HPNTDF; .NET4.0C) 549 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; .NET CLR 1.1.4322; yplus 4.4.02b) 550 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1) 551 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.1) Gecko/20090624 MRA 5.7 (build 03796) Firefox/3.5 sputnik 2.5.2.20 552 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2) 553 | Opera/9.80 (Windows NT 6.1; U; Edition Ukraine Local; ru) Presto/2.10.229 Version/11.61 554 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 555 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Maxthon; MRA 5.9 (build 4953); .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbORJ/5.13.1.18107) 556 | Mozilla/5.0 (Linux; U; Android 2.3.4; ru-ru; HTC EVO 3D X515m Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 557 | Opera/9.80 (Windows NT 5.1; U; Distribution 00; ru) Presto/2.10.229 Version/11.60 558 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; MyIE2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; RadioClicker 8.10) 559 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) 560 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2) 561 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 465; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.1) 562 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E) 563 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 197; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.1) 564 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbSPC2/5.13.2.19379) 565 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; MRA 5.9 (build 4953); .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 566 | Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 567 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 491; GTB7.2; MRA 5.9 (build 4953); .NET CLR 1.1.4322; InfoPath.1) 568 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0) Gecko/20100101 Firefox/6.0 569 | Mozilla/4.0 (compatible; MSIE 5.0; Windows 2000) Opera 6.0 [en] 570 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 368; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E) 571 | Opera/9.80 (Windows NT 5.1; U; MRA 5.8 (build 4664); ru) Presto/2.10.229 Version/11.61 572 | Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.3 (KHTML, like Gecko) Maxthon/3.3.3.1000 Chrome/16.0.883.0 Safari/535.3 573 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.13) Gecko/20101203 AskTbCLM/3.14.1.20007 Firefox/3.6.13 sputnik 2.5.2.22 574 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; RadioClicker LITE; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; YB/IE.4.2.3.970) 575 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; HPNTDF; .NET4.0C) 576 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; ImageShack Toolbar 4.3.5) 577 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; InfoPath.1; .NET4.0C; .NET CLR 3.5.30729; .NET4.0E) 578 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Chrome/1.0.154.59 Safari/525.19 579 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.25) Gecko/20111212 Firefox/3.6.25 ( .NET CLR 3.5.30729) 580 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2 YE 581 | Googlebot/2.1 (+http://www.google.com/bot.html) 582 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; Tablet PC 2.0; MAXTHON 2.0) 583 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 584 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.23) Gecko/20110920 Firefox/3.6.23 585 | Opera/9.80 (X11; Linux zbov; U; es-ES) Presto/2.9.201 Version/11.50 586 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6; MRSPUTNIK 2, 4, 0, 463; InfoPath.1) 587 | Opera/9.80 (Windows NT 6.1; U; MRA 5.9 (build 4953); ru) Presto/2.10.229 Version/11.60 588 | Opera/9.80 (S60; SymbOS; Opera Mobi/SYB-1111151949; U; ru) Presto/2.9.201 Version/11.50 589 | Opera/9.80 (J2ME/MIDP; Opera Mini/5.18635/26.1424; U; ru) Presto/2.8.119 Version/10.54 590 | Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0 [en] 591 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; CMDTDF; InfoPath.1; InfoPath.3) 592 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 501; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 593 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.106 Safari/535.2 YE 594 | Opera/9.80 (Android 2.3.3; Linux; Opera Mobi/ADR-1111101157; U; ru) Presto/2.9.201 Version/11.50 595 | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) (via docs.google.com/viewer) 596 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 597 | Opera/9.80 (S60; SymbOS; Opera Mobi/751; U; ru) Presto/2.5.28 Version/10.1 598 | Mozilla/5.0 (Linux; U; Android 2.0.6_b1; ru-ru Build/ECLAIR) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 599 | Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 WebMoney Advisor 600 | Opera/9.80 (Windows NT 6.1; U; YB/3.5.1; ru) Presto/2.6.30 Version/10.63 601 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 602 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ) AppleWebKit/534.12 (KHTML, like Gecko) Maxthon/3.0 Safari/534.12 603 | Yeti/1.0 (NHN Corp.; http://help.naver.com/robots/) 604 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.19) Gecko/2010031422 Firefox/3.0.19 (.NET CLR 3.5.30729) 605 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.2) 606 | LinkWalker/2.0 607 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MRA 4.3 (build 01218); .NET CLR 1.1.4322) 608 | Opera/9.80 (Windows NT 6.1; U; Edition Yx; ru) Presto/2.8.131 Version/11.11 609 | msnbot/2.0b (+http://search.msn.com/msnbot.htm)._ 610 | Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20100101 Firefox/6.0 611 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.26) Gecko/20120128 MRA 5.6 (build 03278) Firefox/3.6.26 612 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 463; GTB7.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 613 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.25) Gecko/20111212 MRA 5.6 (build 03392) Firefox/3.6.25 sputnik 2.1.0.18 614 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 (.NET CLR 3.5.30729) sputnik 2.4.0.48 615 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727) 616 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) 617 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Chrome/6.0.472.53 Safari/534.3 618 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022) 619 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; EasyBits GO v1.0; GameXN GO v1.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) 620 | Opera/9.80 (Windows NT 5.1; U; Edition Yandex; ru) Presto/2.10.229 Version/11.61 621 | Opera/9.80 (Android 2.3.3; Linux; Opera Mobi/ADR-1202011015; U; ru) Presto/2.9.201 Version/11.50 622 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727) 623 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 CometBird/9.0.1 624 | Opera/9.80 (Windows NT 5.1; U; MRA 5.7 (build 03757); MRSPUTNIK OW 2, 3, 0, 289; ru) Presto/2.10.229 Version/11.61 625 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2) Gecko/20100115 MRA 5.7 (build 3757) Firefox/3.6 626 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; BTRS122159; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2) 627 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; EasyBits GO v1.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) 628 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; MATM) 629 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 sputnik 2.5.2.14 630 | Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95/31.0.017; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413 631 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 ( .NET CLR 3.5.30729) 632 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 432; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 633 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10 sputnik 2.5.0.148 634 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 386; MRA 5.6 (build 03399); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;RURU) 635 | Mozilla/5.0 (Windows NT 6.1; rv:5.0.1) Gecko/20100101 Firefox/5.0.1 636 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.19) Gecko/2010031422 MRA 5.7 (build 03757) Firefox/3.0.19 (.NET CLR 3.5.30729) 637 | Opera/9.80 (Windows NT 6.1; U; Distribution 00; ru) Presto/2.10.229 Version/11.60 638 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.75 Safari/535.7 CoolNovo/2.0.0.9 639 | Mozilla/5.0 (X11; U; Linux x86_64; ru; rv:1.9.2.15) Gecko/20110303 Ubuntu/10.04 (lucid) Firefox/3.6.15 640 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 sputnik 2.5.2.22 641 | Mozilla/5.0 (Windows NT 6.1; rv:7.0) Gecko/20100101 Firefox/7.0 642 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3) 643 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18 644 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; BRI/2) 645 | Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots) 646 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ) AppleWebKit/533.9 (KHTML, like Gecko) Maxthon/3.0 Safari/533.9 647 | Opera/9.80 (J2ME/MIDP; Opera Mini/5.1.24009/26.1424; U; ru) Presto/2.8.119 Version/10.54 648 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 649 | Mozilla/5.0 (Linux; U; Android 1.5; ru-ru; GT-I5700 Build/CUPCAKE) AppleWebKit/528.5+ (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1 650 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRSPUTNIK 2, 4, 0, 386; MRA 5.6 (build 03402); EasyBits GO v1.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; InfoPath.1; .NET4.0C) 651 | Opera/9.80 (Windows NT 5.1; U; MRA 5.7 (build 03791); ru) Presto/2.10.229 Version/11.61 652 | Opera/9.80 (Windows NT 5.1; U; MRA 5.8 (build 4157); ru) Presto/2.9.168 Version/11.51 653 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.6.30 Version/10.63 654 | Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.9.2.18) Gecko/20110613 SUSE/3.6.18-0.2.1 Firefox/3.6.18 655 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 3, 0, 305; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 656 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 (.NET CLR 3.5.30729) 657 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Iron/5.0.381.0 Chrome/5.0.381 Safari/533.4 658 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.24) Gecko/20111103 MRA 5.5 (build 02842) Firefox/3.6.24 (.NET CLR 3.5.30729) sputnik unknown 659 | FlaxCrawler/1.0 660 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.122 Safari/535.2 YE 661 | Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.20 (KHTML, like Gecko) Chrome/11.0.672.2 Safari/534.20 662 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 sputnik 2.5.2.8 663 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MS Internet Explorer; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 664 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; MRSPUTNIK 2, 4, 0, 502; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) 665 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; BOIE9;RURU) 666 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.9 (build 4933); .NET4.0C; .NET4.0E; .NET CLR 2.0.50727) 667 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 368; .NET CLR 1.1.4322; .NET CLR 2.0.50727) 668 | Opera/9.80 (Windows NT 6.1; U; MRA 5.9 (build 4848); ru) Presto/2.10.229 Version/11.61 669 | Opera/9.80 (Windows NT 6.0; U; ru) Presto/2.10.229 Version/11.60 670 | Mozilla/5.0 (Linux; U; Android 3.2; ru-ru; GT-P7500 Build/HTJ85B) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 671 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; CMNTDF; InfoPath.1; .NET4.0C; AskTbSTC/5.9.1.14019) 672 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 673 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.19) Gecko/2010031422 Firefox/3.0.19 sputnik 2.5.2.22 674 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2) 675 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.25) Gecko/20111212 MRA 5.7 (build 03797) Firefox/3.6.25 sputnik 2.1.0.18 676 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729) 677 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.20 (KHTML, like Gecko) Chrome/19.0.1031.0 Safari/535.20 678 | Opera/9.80 (Windows Mobile; Opera Mini/5.1.21594/26.1424; U; ru) Presto/2.8.119 Version/10.54 679 | Mozilla/5.0 (Windows NT 6.0; rv:2.0) Gecko/20100101 Firefox/4.0 680 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.2) 681 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 (.NET CLR 3.5.30729) 682 | Opera/9.80 (Series 60; Opera Mini/5.1.22783/26.1424; U; uk) Presto/2.8.119 Version/10.54 683 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 ( .NET CLR 3.5.30729; .NET4.0C) sputnik 2.5.2.22 684 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.120 Safari/535.2 685 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 AskTbNRO2/3.14.1.20007 Firefox/3.6.26 686 | Opera/9.80 (Windows NT 5.1; U; en) Presto/2.9.168 Version/11.52 687 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRSPUTNIK 2, 4, 0, 463; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022) 688 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Iron/16.0.950.0 Chrome/16.0.950.0 Safari/535.7 689 | Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Ubuntu/11.10 Chromium/15.0.874.106 Chrome/15.0.874.106 Safari/535.2 690 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; alconnet; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322) 691 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; InfoPath.1; msn OptimizedIE8;RURU) 692 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322) 693 | Opera/9.80 (J2ME/MIDP; Opera Mini/4.4.26916/26.1424; U; ru) Presto/2.8.119 Version/10.54 694 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.20 (KHTML, like Gecko) Chrome/19.0.1031.0 Safari/535.20 695 | Opera/9.80 (Windows NT 5.1; U; MRA 5.7 (build 03773); ru) Presto/2.7.62 Version/11.00 696 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.2) 697 | Mozilla/5.0 (Linux; U; Android 2.2.1; ru-ru; HTC_IncredibleS_S710e Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 698 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 MRA 5.5 (build 02842) AskTbFXTV5/3.14.1.20007 Firefox/3.6.26 699 | Mozilla/5.0 (Windows NT 5.1; U; en) Opera 8.00 700 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C) 701 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MyIE2; Deepnet Explorer) 702 | Opera/9.80 (Windows NT 5.1; U; MRA 5.4 (build 02647); ru) Presto/2.10.229 Version/11.61 703 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6) 704 | Mozilla/0.6 Beta (Windows) 705 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; InfoPath.1) 706 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.2; MRSPUTNIK 2, 0, 1, 31 SW; MRSPUTNIK 2, 0, 1, 31 SW; .NET CLR 2.0.50727; InfoPath.1) 707 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1) 708 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 5.10 (build 5218); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 709 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 421; InfoPath.1) 710 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.5 (build 02842); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 711 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322) 712 | Opera/9.80 (Windows NT 6.1; U; IBM EVV/3.0/EAK01AG9/LE; ru) Presto/2.9.168 Version/11.52 713 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.2; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C) 714 | Mozilla/5.0 (Windows; U; Windows NT 5.0; ru; rv:1.9.2.25) Gecko/20111212 Firefox/3.6.25 715 | Mozilla/5.0 (Linux; U; Android 2.3.5; ru-ru; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 716 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E) 717 | Mozilla/5.0 (Windows; U; Windows NT 6.0; ru; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729) 718 | Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; HTC_Flyer_P510e; ru-ru) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 719 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; App/9.05606) 720 | Opera/9.80 (Windows NT 5.1; U; MRSPUTNIK OW 2, 3, 0, 289; ru) Presto/2.8.131 Version/11.11 721 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 722 | Acoon v4.9.5 (www.acoon.de) 723 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.24) Gecko/20111103 Firefox/3.6.24 sputnik 2.5.2.22 724 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 MRA 5.6 (build 03399) Firefox/3.6.26 ( .NET CLR 3.5.30729) 725 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MASM; InfoPath.2) 726 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E) 727 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.25) Gecko/20111212 Firefox/3.6.25 (.NET CLR 3.5.30729) 728 | Opera/9.61 (Windows NT 5.1; U; ru) Presto/2.1.1 729 | SonyEricssonU5i/R2EA; Mozilla/5.0 (SymbianOS/9.4; U; Series60/5.0 Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/525 (KHTML, like Gecko) Version/3.0 Safari/525 730 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 731 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1) 732 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7 733 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; CMDTDF; .NET4.0C; .NET4.0E) 734 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 735 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; MRSPUTNIK 2, 3, 0, 301; MRA 5.7 (build 03790)) 736 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; Tablet PC 2.0; .NET4.0E; MALC) 737 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET4.0C; .NET4.0E; InfoPath.2) 738 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 5.7 (build 03639); .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E) 739 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4325; .NET CLR 2.0.40607; .NET CLR 3.0.04506.648) 740 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; BOIE9;RURU) 741 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7 742 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 743 | Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90) 744 | Opera/9.80 (Windows NT 5.1; U; MRA 5.10 (build 5218); ru) Presto/2.10.229 Version/11.61 745 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.9.168 Version/11.51 746 | Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; ru-ru) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 747 | Mozilla/5.0 (compatible; YandexDirect/3.0; +http://yandex.com/bots) 748 | Opera/9.80 (Series 60; Opera Mini/6.1.25380/26.1424; U; ru) Presto/2.8.119 Version/10.54 749 | Mozilla/4.0 (compatible; Powermarks/3.5; Windows 95/98/2000/NT) 750 | Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt) 751 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.25) Gecko/20111212 Firefox/3.6.25 752 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; BOIE9;RURU) 753 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.9.168 Version/11.50 754 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 755 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts) 756 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2 757 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/534.51.22 (KHTML, like Gecko) Version/5.1.1 Safari/534.51.22 758 | Opera/9.80 (Windows NT 6.1; U; MRA 5.8 (build 4157); ru) Presto/2.10.229 Version/11.61 759 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.5.22 Version/10.51 760 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30 761 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2) Gecko/20100115 Firefox/3.6 762 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 763 | Opera/9.80 (Windows NT 5.1; U; MRA 5.9 (build 4953); ru) Presto/2.10.229 Version/11.60 764 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E) 765 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) 766 | Opera/8.01 (J2ME/MIDP; Opera Mini/3.1.10423/1724; ru; U; ssr) 767 | Opera/9.80 (Windows NT 6.1; U; Edition Campaign 09; ru) Presto/2.10.229 Version/11.61 768 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 769 | Mozilla/5.0 (Windows; U; Windows NT 5.0; ru; rv:1.9.0.19) Gecko/2010031422 Firefox/3.0.19 770 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.2.15 Version/10.10 771 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) 772 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRSPUTNIK 2, 4, 0, 484; MRA 5.9 (build 4953)) 773 | Opera/9.80 (Windows NT 6.1; U; Distribution 00; ru) Presto/2.10.229 Version/11.61 774 | Mozilla/5.0 (iPad; U; CPU OS 4_3_2 like Mac OS X; ru-ru) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8H7 Safari/6533.18.5 775 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; InfoPath.2) 776 | Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20100101 Firefox/8.0 777 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) 778 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618) 779 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 780 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FREE; .NET CLR 1.1.4322) 781 | Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots) 782 | Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20100101 Firefox/5.0 783 | Opera/9.80 (Windows NT 6.1; U; MRA 5.9 (build 4953); ru) Presto/2.9.168 Version/11.52 784 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) 785 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MAAU; .NET4.0C) 786 | Mozilla/5.0 (Linux; U; Android 2.3.5; ru-ru; HTC_DesireHD_A9191 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 787 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 788 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Nichrome/self/12 789 | Opera/7.54 (Windows NT 5.1; U) [pl] 790 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7 (.NET CLR 3.5.30729) 791 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 792 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ) AppleWebKit/534.12 (KHTML, like Gecko) Maxthon/3.0 Safari/534.12 793 | Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) 794 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2; .NET4.0C; .NET4.0E) 795 | Mozilla/5.0 (Ubuntu; X11; Linux x86_64; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 796 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7 (.NET CLR 3.5.30729) 797 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3) 798 | Mozilla/1.22 (compatible; MSIE 2.0; Windows 95) 799 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 800 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 801 | Mozilla/3.6 (compatible; MSIE 7.0; Windows NT 6.1; en-US; rv:1.9.2.16) Gecko/20110319 MRA 5.6 (build 03278) Firefox/3.6.16 802 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 803 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) 804 | Opera/9.80 (Windows NT 5.1; U; MRA 5.7 (build 03797); ru) Presto/2.10.229 Version/11.61 805 | Mozilla/5.0 (compatible; Nigma.ru/3.0; crawler@nigma.ru) 806 | Mozilla/5.0 (Windows NT 5.1; U; en) Opera 8.01 807 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.6.30 Version/10.63 808 | Opera/9.00 (Windows NT 4.0; U; en) 809 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20100101 Firefox/9.0 810 | Mozilla/4.0 (compatible; MSIE 6.0; Windows ME) Opera 7.11 [en] 811 | Opera/9.80 (Windows NT 5.1; U; YB/3.5.1; ru) Presto/2.6.30 Version/10.63 812 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; InfoPath.2; .NET4.0E) 813 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; x64; SV1; .NET CLR 2.0.50727) 814 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.187 Safari/535.1 815 | Mozilla/4.0 (compatible; MSIE 6.0; AOL 9.0; Windows NT 5.1) 816 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1) 817 | Mozilla/0.91 Beta (Windows) 818 | Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 YE 819 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP06) 820 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 821 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; SLCC1; .NET CLR 1.1.4322; .NET CLR 2.0.40607; .NET CLR 3.0.04506.648) 822 | Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 823 | Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; ru-ru) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 824 | Opera/9.80 (Windows NT 6.1; U; en) Presto/2.10.229 Version/11.61 825 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.8.131 Version/11.10 826 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.40607) 827 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.11 (KHTML, like Gecko) Comodo_Dragon/17.1.0.0 Chrome/17.0.963.38 Safari/535.11 828 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 829 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.00 830 | Mozilla/5.0 (Windows NT 6.1; rv:8.0.1) Gecko/20100101 Firefox/8.0.1,gzip(gfe) (via docs.google.com/viewer) 831 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461) 832 | Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0 ; .NET CLR 2.0.50215; SL Commerce Client v1.0; Tablet PC 2.0 833 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2 834 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.17) Gecko/20110420 Firefox/3.6.17 835 | Mozilla/4.0 (compatible; MSIE 5.0; Windows 3.1) 836 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 837 | Opera/9.80 (J2ME/MIDP; Opera Mini/5.1.21214/26.1424; U; ru) Presto/2.8.119 Version/10.54 838 | Opera/9.80 (Windows NT 5.1; U; MRA 5.7 (build 03790); ru) Presto/2.10.229 Version/11.61 839 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 840 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 (.NET CLR 3.5.30729) 841 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0 842 | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.84 Safari/534.13 843 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; AskTbUT2V5/5.14.1.20007) 844 | Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 845 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MAAU) 846 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2 YE 847 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0 848 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 MRCHROME 849 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:10.0) Gecko/20100101 Firefox/10.0 850 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.16) Gecko/20110319 Firefox/3.6.16 851 | Opera/9.80 (Windows NT 6.0; U; Edition Yx; ru) Presto/2.10.229 Version/11.61 852 | Opera/9.80 (Windows NT 5.1; U; en) Presto/2.10.229 Version/11.61 853 | Mozilla/5.0 (Windows NT 5.1; rv:9.0) Gecko/20100101 Firefox/9.0 854 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.9.168 Version/11.52 855 | Yandex/1.01.001 (compatible; Win16; ShopChecker); http://market.yandex.ru; support@market.yandex.ru 856 | Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 857 | Opera/9.80 (Windows NT 5.1; U; MRA 5.7 (build 03796); ru) Presto/2.10.229 Version/11.61 858 | Opera/9.80 (Windows NT 5.1; U; Edition Ukraine Local; ru) Presto/2.10.229 Version/11.61 859 | Mozilla/5.0 (Windows NT 6.0; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 860 | Opera/9.80 (Windows NT 5.1; U; Edition Yx; ru) Presto/2.9.168 Version/11.50 861 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.75 Safari/535.7 862 | Mozilla/4.0 (compatible; MSIE 5.0; Windows 95) Opera 6.01 [en] 863 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 864 | Download Master 865 | Mozilla/5.0 (Linux; U; Android 2.3.3; ru-ru; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 866 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.76 Safari/535.7 YI 867 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT) ::ELNSB50::000061100320025802a00111000000000507000900000000 868 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727) 869 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 870 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 871 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11 872 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) 873 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; XMPP Tiscali Communicator v.10.0.2; .NET CLR 2.0.50727) 874 | Opera/7.11 (Windows NT 5.1; U) [en] 875 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1) 876 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727) 877 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11 878 | Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:10.0) Gecko/20100101 Firefox/10.0 879 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1 880 | Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/6.0 881 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 882 | Mozilla/4.0 (compatible; MSIE 6.0; Windows XP) 883 | Mozilla/5.0 (Linux; U; Android 3.2; ru-ru; A501 Build/HTJ85B) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 884 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7 885 | Opera/9.80 (Series 60; Opera Mini/6.5.27354/26.1424; U; ru) Presto/2.8.119 Version/10.54 886 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TheFreeDictionary.com; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727) 887 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Opera 7.54 [en] 888 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:11.0) Gecko/20100101 Firefox/11.0 889 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0.2) Gecko/20100101 Firefox/6.0.2 890 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506) 891 | Mozilla/4.7 (compatible; OffByOne; Windows 2000) Webster Pro V3.4 892 | DoCoMo/2.0 N905i(c100;TB;W24H16) (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) 893 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) 894 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.25) Gecko/20111212 Firefox/3.6.25 895 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3) 896 | Mozilla/1.22 (compatible; MSIE 2.0d; Windows NT) 897 | Mozilla/5.0 (Windows NT 6.1; rv:6.0.1) Gecko/20100101 Firefox/6.0.1 898 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322) Babya Discoverer 8.0: 899 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727) 900 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.2.15 Version/10.00 901 | Opera/9.80 (Windows NT 5.1; U; Edition Yx; ru) Presto/2.10.229 Version/11.60 902 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.8.131 Version/11.11 903 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7 904 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 YB/5.0.3 905 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C) 906 | Mail.RU/2.0 907 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.01 908 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) 909 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.9.168 Version/11.51 910 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) 911 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.7.62 Version/11.00 912 | Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0 913 | Mozilla/5.0 (Windows NT 5.1; rv:2.0) Gecko/20100101 Firefox/4.0 914 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM) 915 | Mozilla/5.0 (compatible; MJ12bot/v1.4.2; http://www.majestic12.co.uk/bot.php?+) 916 | Mozilla/4.0 (compatible; MSIE 5.5; Windows 95; BCD2000) 917 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.9.168 Version/11.50 918 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 919 | Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 920 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.53.11 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10 921 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.8.131 Version/11.10 922 | Yandex/1.01.001 (compatible; Win16; I) 923 | Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; ru-ru) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 924 | Opera/9.80 (Windows NT 6.1; U; MRA 5.7 (build 03797); ru) Presto/2.10.229 Version/11.61 925 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 YE 926 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7 927 | Mozilla/5.0 (Windows NT 6.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1 928 | Opera/9.80 (J2ME/MIDP; Opera Mini/6.5.26955/26.1424; U; ru) Presto/2.8.119 Version/10.54 929 | Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0; T312461) 930 | Opera/9.80 (Windows NT 5.1; U; Edition Yx 01; ru) Presto/2.10.229 Version/11.61 931 | Opera/9.80 (J2ME/MIDP; Opera Mini/6.1.25378/26.1424; U; ru) Presto/2.8.119 Version/10.54 932 | Mozilla/5.0 (compatible; Ezooms/1.0; ezooms.bot@gmail.com) 933 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0.1) Gecko/20100101 Firefox/8.0.1 934 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.75 Safari/535.7 935 | Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1,gzip(gfe) (via docs.google.com/viewer) 936 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1) 937 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.7.62 Version/11.01 938 | Opera/9.80 (Android; Opera Mini/6.5.27452/26.1424; U; ru) Presto/2.8.119 Version/10.54 939 | HuaweiSymantecSpider/1.0+DSE-support@huaweisymantec.com+(compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR ; http://www.huaweisymantec.com/en/IRL/spider) 940 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0) 941 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 942 | HTC MAX 4G Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC)/7.6.1.82/31/400 943 | Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20100101 Firefox/8.0 944 | Opera/9.80 (Series 60; Opera Mini/6.5.27309/26.1424; U; ru) Presto/2.8.119 Version/10.54 945 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) 946 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) 947 | Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 948 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 MRCHROME 949 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar; (R1 1.5)) 950 | Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; ru-ru) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 951 | Opera/9.80 (Windows NT 6.1; U; Edition Yx 01; ru) Presto/2.10.229 Version/11.61 952 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 953 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) 954 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1) 955 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322) 956 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 957 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.9.168 Version/11.52 958 | Opera/9.80 (Windows NT 6.1; U; Edition Next; ru) Presto/2.10.238 Version/12.00 959 | Mozilla/5.0 (Windows NT 6.1; rv:8.0.1) Gecko/20100101 Firefox/8.0.1 960 | msnbot-media/1.1 (+http://search.msn.com/msnbot.htm) 961 | Opera/9.80 (Windows NT 6.0; U; ru) Presto/2.10.229 Version/11.61 962 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11 963 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 MRCHROME 964 | Mozilla/5.0 (Windows NT 6.0; rv:10.0) Gecko/20100101 Firefox/10.0 965 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.2.15 Version/10.10 966 | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) 967 | Mozilla/5.0 (Windows NT 5.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1 968 | Mozilla/5.0 (compatible; YandexBlogs/0.99; robot; B; +http://yandex.com/bots) 1 readers 969 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0) 970 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 YE 971 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0) 972 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 YE 973 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) 974 | Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 975 | Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2 976 | Opera/9.80 (Windows NT 6.1; U; Edition Yx; ru) Presto/2.10.229 Version/11.61 977 | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 978 | Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.26) Gecko/20120128 Firefox/3.6.26 979 | Mozilla/5.0 (compatible; MJ12bot/v1.4.1; http://www.majestic12.co.uk/bot.php?+) 980 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.10.229 Version/11.60 981 | Opera/9.80 (Windows NT 6.1; U; MRA 5.9 (build 4953); ru) Presto/2.10.229 Version/11.61 982 | Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html) 983 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.10.229 Version/11.60 984 | Opera/9.80 (Windows NT 5.1; U; MRA 5.9 (build 4953); ru) Presto/2.10.229 Version/11.61 985 | Opera/9.80 (Windows NT 5.1; U; Edition Yx; ru) Presto/2.10.229 Version/11.61 986 | Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 987 | Mozilla/5.0 (Windows NT 5.1; rv:8.0.1) Gecko/20100101 Firefox/8.0.1 988 | Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 989 | Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 990 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 991 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0 992 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) 993 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.51 (KHTML, like Gecko; Google Web Preview) Chrome/12.0.742 Safari/534.51 994 | Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) 995 | Mozilla/5.0 (Windows NT 6.1; rv:10.0) Gecko/20100101 Firefox/10.0 996 | Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) 997 | Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1 998 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 999 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 1000 | Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.10.229 Version/11.61 1001 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) 1002 | Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.10.229 Version/11.61 1003 | Mozilla/5.0 (Windows NT 5.1; rv:10.0) Gecko/20100101 Firefox/10.0 1004 | Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 --------------------------------------------------------------------------------