├── .github └── workflows │ ├── lib │ └── yaml_to_json.py │ ├── pull_request.yml │ └── test.yml ├── README.md └── resources ├── referer-tests.json └── referers.yml /.github/workflows/lib/yaml_to_json.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import yaml 3 | import json 4 | 5 | with open(sys.argv[1], 'r') as input: 6 | yml = yaml.safe_load(input) 7 | 8 | with open(sys.argv[2], 'w') as output: 9 | json.dump(yml, output) -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- 1 | name: pulL_request 2 | 3 | on: 4 | pull_request: 5 | push: 6 | branches: 7 | - master 8 | 9 | jobs: 10 | test: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | - name: Convert yaml to json 15 | run: python .github/workflows/lib/yaml_to_json.py resources/referers.yml referers.json 16 | - name: Check 17 | run: cat referers.json 18 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: test 2 | 3 | on: 4 | push: 5 | tags: 6 | - test* 7 | 8 | permissions: 9 | contents: write 10 | 11 | jobs: 12 | release: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v4 16 | with: 17 | ref: referer-json 18 | - name: Get datetime 19 | id: datetime 20 | run: echo "datetime=$(date "+%Y-%m-%d-%H%M%S")" >> "$GITHUB_ENV" 21 | - name: Convert yaml to json 22 | run: python .github/workflows/lib/yaml_to_json.py resources/referers.yml resources/referers-$datetime.json 23 | - name: Prepare latest json 24 | run: cp resources/referers-$datetime.json resources/referers-latest.json 25 | - name: Commit and push new json files 26 | run: | 27 | git config --local user.email "github-actions[bot]@users.noreply.github.com" 28 | git config --local user.name "github-actions[bot]" 29 | git add resources/referers-$datetime.json resources/referers-latest.json 30 | git commit -m "Add referers-$datetime.json" 31 | git push 32 | - name: Print test referer json URLs 33 | run: | 34 | echo https://raw.githubusercontent.com/snowplow-referer-parser/referer-parser/refs/heads/referer-json/resources/referers-$datetime.json 35 | echo https://raw.githubusercontent.com/snowplow-referer-parser/referer-parser/refs/heads/referer-json/resources/referers-latest.json 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # referer-parser 2 | 3 | referer-parser is a database for extracting marketing attribution data (such as search terms) from referer URLs, inspired by the [ua-parser][ua-parser] project (an equivalent library for user agent parsing). 4 | 5 | The referer-parser project also contains multiple libraries for working with the referer-parser database in different languages. 6 | 7 | referer-parser is a core component of [Snowplow][snowplow], the open-source web-scale analytics platform powered by Hadoop and Redshift. 8 | 9 | _Note that we always use the original HTTP misspelling of 'referer' (and thus 'referal') in this project - never 'referrer'._ 10 | 11 | ## Database 12 | 13 | The database is available in YAML and JSON format. 14 | 15 | The latest database is always available on this URL: 16 | 17 | https://s3-eu-west-1.amazonaws.com/snowplow-hosted-assets/third-party/referer-parser/referers-latest.yaml 18 | https://s3-eu-west-1.amazonaws.com/snowplow-hosted-assets/third-party/referer-parser/referers-latest.json 19 | 20 | The database is updated every day. Each new version of the database is also uploaded with a timestamp: 21 | 22 | https://s3-eu-west-1.amazonaws.com/snowplow-hosted-assets/third-party/referer-parser/referers-YYYYMMDD.yaml 23 | https://s3-eu-west-1.amazonaws.com/snowplow-hosted-assets/third-party/referer-parser/referers-YYYYMMDD.json 24 | 25 | Example: 26 | 27 | https://s3-eu-west-1.amazonaws.com/snowplow-hosted-assets/third-party/referer-parser/referers-20200331.yaml 28 | https://s3-eu-west-1.amazonaws.com/snowplow-hosted-assets/third-party/referer-parser/referers-20200331.json 29 | 30 | ## Language-specific repositories 31 | 32 | - Scala: https://github.com/snowplow-referer-parser/scala-referer-parser 33 | - Java: https://github.com/snowplow-referer-parser/java-referer-parser 34 | - Ruby: https://github.com/snowplow-referer-parser/ruby-referer-parser 35 | - Python: https://github.com/snowplow-referer-parser/python-referer-parser 36 | - NodeJS: https://github.com/snowplow-referer-parser/nodejs-referer-parser 37 | - .NET: https://github.com/snowplow-referer-parser/dotnet-referer-parser 38 | - PHP: https://github.com/snowplow-referer-parser/php-referer-parser 39 | - Golang: https://github.com/snowplow-referer-parser/golang-referer-parser 40 | - Erlang: https://github.com/silviucpp/refererparser 41 | 42 | ## referers.yml 43 | 44 | referer-parser identifies whether a URL is a known referer or not by checking it against the [`referers.yml`][referers-yml] file; the intention is that this YAML file is reusable as-is by every language-specific implementation of referer-parser. 45 | 46 | The file is broken out into sections for the different mediums that we support: 47 | 48 | * `unknown` for when we know the source, but not the medium 49 | * `email` for webmail providers 50 | * `social` for social media services 51 | * `search` for search engines 52 | 53 | Then within each section, we list each known provider (aka `source`) by name, and then which domains each provider uses. For search engines, we also list the parameters used in the search engine URL to identify the search `term`. For example: 54 | 55 | ```yaml 56 | Google: # Name of search engine referer 57 | parameters: 58 | - 'q' # First parameter used by Google 59 | - 'p' # Alternative parameter used by Google 60 | domains: 61 | - google.co.uk # One domain used by Google 62 | - google.com # Another domain used by Google 63 | - ... 64 | ``` 65 | 66 | The number of referers and the domains they use is constantly growing - we need to keep `referers.yml` up-to-date, and hope that the community will help! 67 | 68 | ## Contributing 69 | 70 | We welcome contributions to referer-parser: 71 | 72 | 1. **New search engines and other referers** - if you notice a search engine, social network or other site missing from `referers.yml`, please fork the repo, add the missing entry and submit a pull request 73 | 2. **Ports of referer-parser to other languages** - we welcome ports of referer-parser to new programming languages (e.g. Lua, Go, Haskell, C) 74 | 3. **Bug fixes, feature requests etc** - much appreciated! 75 | 76 | **Please sign the [Snowplow CLA][cla] before making pull requests.** 77 | 78 | ## Support 79 | 80 | General support for `referer-parser` is handled by Snowplow Analytics team on [discourse][discourse]. 81 | 82 | ## Copyright and license 83 | 84 | `referers.yml` is based on [Piwik's][piwik] [`SearchEngines.php`][piwik-search-engines] and [`Socials.php`][piwik-socials], copyright 2012 Matthieu Aubry and available under the [GNU General Public License v3][gpl-license]. 85 | 86 | [ua-parser]: https://github.com/tobie/ua-parser 87 | 88 | [snowplow]: https://github.com/snowplow/snowplow 89 | 90 | [discourse]: https://discourse.snowplow.io 91 | 92 | [piwik]: http://piwik.org 93 | [piwik-search-engines]: https://github.com/piwik/piwik/blob/master/core/DataFiles/SearchEngines.php 94 | [piwik-socials]: https://github.com/piwik/piwik/blob/master/core/DataFiles/Socials.php 95 | 96 | [referers-yml]: https://github.com/snowplow/referer-parser/blob/master/resources/referers.yml 97 | 98 | [talk-to-us]: https://github.com/snowplow/snowplow/wiki/Talk-to-us 99 | 100 | [gpl-license]: http://www.gnu.org/licenses/gpl-3.0.html 101 | [cla]: https://github.com/snowplow/snowplow/wiki/CLA 102 | -------------------------------------------------------------------------------- /resources/referer-tests.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "spec": "Google Images search", 4 | "uri": "http://www.google.fr/imgres?q=Ogham+the+celtic+oracle&hl=fr&safe=off&client=firefox-a&hs=ZDu&sa=X&rls=org.mozilla:fr-FR:unofficial&tbm=isch&prmd=imvnsa&tbnid=HUVaj-o88ZRdYM:&imgrefurl=http://www.psychicbazaar.com/oracles/101-ogham-the-celtic-oracle-set.html&docid=DY5_pPFMliYUQM&imgurl=http://mdm.pbzstatic.com/oracles/ogham-the-celtic-oracle-set/montage.png&w=734&h=250&ei=GPdWUIePCOqK0AWp3oCQBA&zoom=1&iact=hc&vpx=129&vpy=276&dur=827&hovh=131&hovw=385&tx=204&ty=71&sig=104115776612919232039&page=1&tbnh=69&tbnw=202&start=0&ndsp=26&ved=1t:429,r:13,s:0,i:114&biw=1272&bih=826", 5 | "medium": "search", 6 | "source": "Google Images", 7 | "term": "Ogham the celtic oracle", 8 | "known": true 9 | }, 10 | { 11 | "spec": "Yahoo! Images search", 12 | "uri": "http://it.images.search.yahoo.com/images/view;_ylt=A0PDodgQmGBQpn4AWQgdDQx.;_ylu=X3oDMTBlMTQ4cGxyBHNlYwNzcgRzbGsDaW1n?back=http%3A%2F%2Fit.images.search.yahoo.com%2Fsearch%2Fimages%3Fp%3DEarth%2BMagic%2BOracle%2BCards%26fr%3Dmcafee%26fr2%3Dpiv-web%26tab%3Dorganic%26ri%3D5&w=1064&h=1551&imgurl=mdm.pbzstatic.com%2Foracles%2Fearth-magic-oracle-cards%2Fcard-1.png&rurl=http%3A%2F%2Fwww.psychicbazaar.com%2Foracles%2F143-earth-magic-oracle-cards.html&size=2.8+KB&name=Earth+Magic+Oracle+Cards+-+Psychic+Bazaar&p=Earth+Magic+Oracle+Cards&oid=f0a5ad5c4211efe1c07515f56cf5a78e&fr2=piv-web&fr=mcafee&tt=Earth%2BMagic%2BOracle%2BCards%2B-%2BPsychic%2BBazaar&b=0&ni=90&no=5&ts=&tab=organic&sigr=126n355ib&sigb=13hbudmkc&sigi=11ta8f0gd&.crumb=IZBOU1c0UHU", 13 | "medium": "search", 14 | "source": "Yahoo! Images", 15 | "term": "Earth Magic Oracle Cards", 16 | "known": true 17 | }, 18 | { 19 | "spec": "Powered by Google", 20 | "uri": "http://isearch.avg.com/pages/images.aspx?q=tarot+card+change&sap=dsp&lang=en&mid=209215200c4147d1a9d6d1565005540b-b0d4f81a8999f5981f04537c5ec8468fd5234593&cid=%7B50F9298B-C111-4C7E-9740-363BF0015949%7D&v=12.1.0.21&ds=AVG&d=7%2F23%2F2012+10%3A31%3A08+PM&pr=fr&sba=06oENya4ZG1YS6vOLJwpLiFdjG91ICt2YE59W2p5ENc2c4w8KvJb5xbvjkj3ceMjnyTSpZq-e6pj7GQUylIQtuK4psJU60wZuI-8PbjX-OqtdX3eIcxbMoxg3qnIasP0ww2fuID1B-p2qJln8vBHxWztkpxeixjZPSppHnrb9fEcx62a9DOR0pZ-V-Kjhd-85bIL0QG5qi1OuA4M1eOP4i_NzJQVRXPQDmXb-CpIcruc2h5FE92Tc8QMUtNiTEWBbX-QiCoXlgbHLpJo5Jlq-zcOisOHNWU2RSHYJnK7IUe_SH6iQ.%2CYT0zO2s9MTA7aD1mNjZmZDBjMjVmZDAxMGU4&snd=hdr&tc=test1", 21 | "medium": "search", 22 | "source": "Google", 23 | "term": "tarot card change", 24 | "known": true 25 | }, 26 | { 27 | "spec": "Google search #1", 28 | "uri": "http://www.google.com/search", 29 | "medium": "search", 30 | "source": "Google", 31 | "term": null, 32 | "known": true 33 | }, 34 | { 35 | "spec": "Google search #2", 36 | "uri": "http://www.google.com/search?q=gateway+oracle+cards+denise+linn&hl=en&client=safari", 37 | "medium": "search", 38 | "source": "Google", 39 | "term": "gateway oracle cards denise linn", 40 | "known": true 41 | }, 42 | { 43 | "spec": "Yahoo! search", 44 | "uri": "http://es.search.yahoo.com/search;_ylt=A7x9QbwbZXxQ9EMAPCKT.Qt.?p=BIEDERMEIER+FORTUNE+TELLING+CARDS&ei=utf-8&type=685749&fr=chr-greentree_gc&xargs=0&pstart=1&b=11", 45 | "medium": "search", 46 | "source": "Yahoo!", 47 | "term": "BIEDERMEIER FORTUNE TELLING CARDS", 48 | "known": true 49 | }, 50 | { 51 | "spec": "PriceRunner search", 52 | "uri": "http://www.pricerunner.co.uk/search?displayNoHitsMessage=1&q=wild+wisdom+of+the+faery+oracle", 53 | "medium": "search", 54 | "source": "PriceRunner", 55 | "term": "wild wisdom of the faery oracle", 56 | "known": true 57 | }, 58 | { 59 | "spec": "Bing Images search", 60 | "uri": "http://www.bing.com/images/search?q=psychic+oracle+cards&view=detail&id=D268EDDEA8D3BF20AF887E62AF41E8518FE96F08", 61 | "medium": "search", 62 | "source": "Bing Images", 63 | "term": "psychic oracle cards", 64 | "known": true 65 | }, 66 | { 67 | "spec": "IXquick search", 68 | "uri": "https://s3-us3.ixquick.com/do/search", 69 | "medium": "search", 70 | "source": "IXquick", 71 | "term": null, 72 | "known": true 73 | }, 74 | { 75 | "spec": "AOL search", 76 | "uri": "http://aolsearch.aol.co.uk/aol/search?s_chn=hp&enabled_terms=&s_it=aoluk-homePage50&q=pendulums", 77 | "medium": "search", 78 | "source": "AOL", 79 | "term": "pendulums", 80 | "known": true 81 | }, 82 | { 83 | "spec": "AOL search.com", 84 | "uri": "http://www.aolsearch.com/search?s_pt=hp&s_gl=NL&query=voorbeeld+cv+competenties&invocationType=tb50hpcnnbie7-nl-nl", 85 | "medium": "search", 86 | "source": "AOL", 87 | "term": "voorbeeld cv competenties", 88 | "known": true 89 | }, 90 | { 91 | "spec": "Ask search", 92 | "uri": "http://uk.search-results.com/web?qsrc=1&o=1921&l=dis&q=pendulums&dm=ctry&atb=sysid%3D406%3Aappid%3D113%3Auid%3D8f40f651e7b608b5%3Auc%3D1346336505%3Aqu%3Dpendulums%3Asrc%3Dcrt%3Ao%3D1921&locale=en_GB", 93 | "medium": "search", 94 | "source": "Ask", 95 | "term": "pendulums", 96 | "known": true 97 | }, 98 | { 99 | "spec": "Mail.ru search", 100 | "uri": "http://go.mail.ru/search?q=Gothic%20Tarot%20Cards&where=any&num=10&rch=e&sf=20", 101 | "medium": "search", 102 | "source": "Mail.ru", 103 | "term": "Gothic Tarot Cards", 104 | "known": true 105 | }, 106 | { 107 | "spec": "Yandex search", 108 | "uri": "http://images.yandex.ru/yandsearch?text=Blue%20Angel%20Oracle%20Blue%20Angel%20Oracle&noreask=1&pos=16&rpt=simage&lr=45&img_url=http%3A%2F%2Fmdm.pbzstatic.com%2Foracles%2Fblue-angel-oracle%2Fbox-small.png", 109 | "medium": "search", 110 | "source": "Yandex Images", 111 | "term": "Blue Angel Oracle Blue Angel Oracle", 112 | "known": true 113 | }, 114 | { 115 | "spec": "Ask toolbar search", 116 | "uri": "http://search.tb.ask.com/search/GGmain.jhtml?cb=AYY&pg=GGmain&p2=%5EAYY%5Exdm071%5EYYA%5Eid&n=77fdaa55&qid=c2678d9147654034bb8b16daa7bfb48c&ss=sub&st=hp&ptb=F9FC6C22-EAE6-4D1E-8126-A70119B6E02F&si=flvrunner&tpr=hst&searchfor=CARA+MEMASAK+CUMI+CUMI&ots=1219016089614", 117 | "medium": "search", 118 | "source": "Ask Toolbar", 119 | "term": "CARA MEMASAK CUMI CUMI", 120 | "known": true 121 | }, 122 | { 123 | "spec": "Ask toolbar search #2", 124 | "uri": "http://search.tb.ask.com/search/GGmain.jhtml?&st=hp&p2=%5EZU%5Exdm458%5EYYA%5Eus&n=77fda1bd&ptb=F0B68CA5-4791-4376-BFCC-5F0100329FB6&si=CMKg9-nX07oCFSjZQgodcikACQ&tpr=hpsbsug&searchfor=test", 125 | "medium": "search", 126 | "source": "Ask Toolbar", 127 | "term": "test", 128 | "known": true 129 | }, 130 | { 131 | "spec": "Voila search", 132 | "uri": "http://search.ke.voila.fr/?module=voila&bhv=web_fr&kw=test", 133 | "medium": "search", 134 | "source": "Voila", 135 | "term": "test", 136 | "known": true 137 | }, 138 | { 139 | "spec": "Dale search", 140 | "uri": "http://www.dalesearch.com/?q=+lego.nl+%2Fclub&s=web&as=0&rlz=0&babsrc=HP_ss", 141 | "medium": "search", 142 | "source": "Dalesearch", 143 | "term": " lego.nl /club", 144 | "known": true 145 | }, 146 | { 147 | "spec": "Twitter redirect", 148 | "uri": "http://t.co/chrgFZDb", 149 | "medium": "social", 150 | "source": "Twitter", 151 | "term": null, 152 | "known": true 153 | }, 154 | { 155 | "spec": "Facebook social", 156 | "uri": "http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.psychicbazaar.com&h=yAQHZtXxS&s=1", 157 | "medium": "social", 158 | "source": "Facebook", 159 | "term": null, 160 | "known": true 161 | }, 162 | { 163 | "spec": "Facebook mobile", 164 | "uri": "http://m.facebook.com/l.php?u=http%3A%2F%2Fwww.psychicbazaar.com%2Fblog%2F2012%2F09%2Fpsychic-bazaar-reviews-tarot-foundations-31-days-to-read-tarot-with-confidence%2F&h=kAQGXKbf9&s=1", 165 | "medium": "social", 166 | "source": "Facebook", 167 | "term": null, 168 | "known": true 169 | }, 170 | { 171 | "spec": "Odnoklassniki", 172 | "uri": "http://www.odnoklassniki.ru/dk?cmd=logExternal&st._aid=Conversations_Openlink&st.name=externalLinkRedirect&st.link=http%3A%2F%2Fwww.psychicbazaar.com%2Foracles%2F187-blue-angel-oracle.html", 173 | "medium": "social", 174 | "source": "Odnoklassniki", 175 | "term": null, 176 | "known": true 177 | }, 178 | { 179 | "spec": "Tumblr social #1", 180 | "uri": "http://www.tumblr.com/dashboard", 181 | "medium": "social", 182 | "source": "Tumblr", 183 | "term": null, 184 | "known": true 185 | }, 186 | { 187 | "spec": "Tumblr w subdomain", 188 | "uri": "http://psychicbazaar.tumblr.com/", 189 | "medium": "social", 190 | "source": "Tumblr", 191 | "term": null, 192 | "known": true 193 | }, 194 | { 195 | "spec": "Bluewin", 196 | "uri": "https://rich-v01.bluewin.ch/cp/applink/mail/LoadMessageContent", 197 | "medium": "email", 198 | "source": "Bluewin.ch", 199 | "term": null, 200 | "known": true 201 | }, 202 | { 203 | "spec": "GMX", 204 | "uri": "https://deref-gmx.net/mail/client/I_fLA6cRr54/dereferrer/", 205 | "medium": "email", 206 | "source": "GMX", 207 | "term": null, 208 | "known": true 209 | }, 210 | { 211 | "spec": "Web.de", 212 | "uri": "https://deref-web.de/mail/client/a6iXDy6UMao/dereferrer/", 213 | "medium": "email", 214 | "source": "Web.de", 215 | "term": null, 216 | "known": true 217 | }, 218 | { 219 | "spec": "Yahoo! Mail", 220 | "uri": "http://36ohk6dgmcd1n-c.c.yom.mail.yahoo.net/om/api/1.0/openmail.app.invoke/36ohk6dgmcd1n/11/1.0.35/us/en-US/view.html/0", 221 | "medium": "email", 222 | "source": "Yahoo! Mail", 223 | "term": null, 224 | "known": true 225 | }, 226 | { 227 | "spec": "Outlook.com mail", 228 | "uri": "http://co106w.col106.mail.live.com/default.aspx?rru=inbox", 229 | "medium": "email", 230 | "source": "Outlook.com", 231 | "term": null, 232 | "known": true 233 | }, 234 | { 235 | "spec": "Orange Webmail", 236 | "uri": "http://webmail1m.orange.fr/webmail/fr_FR/read.html?FOLDER=SF_INBOX&IDMSG=8594&check=&SORTBY=31", 237 | "medium": "email", 238 | "source": "Orange Webmail", 239 | "term": null, 240 | "known": true 241 | }, 242 | { 243 | "spec": "Internal HTTP", 244 | "uri": "http://www.snowplowanalytics.com/about/team", 245 | "medium": "internal", 246 | "source": null, 247 | "term": null, 248 | "known": false 249 | }, 250 | { 251 | "spec": "Internal HTTPS", 252 | "uri": "https://www.snowplowanalytics.com/account/profile", 253 | "medium": "internal", 254 | "source": null, 255 | "term": null, 256 | "known": false 257 | }, 258 | { 259 | "spec": "Internal subdomain HTTP", 260 | "uri": "http://www.subdomain1.snowplowanalytics.com/account/profile", 261 | "medium": "internal", 262 | "source": null, 263 | "term": null, 264 | "known": false 265 | }, 266 | { 267 | "spec": "Internal subdomain HTTPS", 268 | "uri": "http://www.subdomain2.snowplowanalytics.com/account/profile", 269 | "medium": "internal", 270 | "source": null, 271 | "term": null, 272 | "known": false 273 | } 274 | ] 275 | -------------------------------------------------------------------------------- /resources/referers.yml: -------------------------------------------------------------------------------- 1 | # ####################################################################################################### 2 | # 3 | # ALL SUPPORTED REFERERS 4 | # 5 | # Broken down into: 6 | # 7 | # 1. Medium-unknown providers 8 | # 2. Email providers 9 | # 3. Social providers 10 | # 4. Search providers 11 | # 5. Paid media 12 | 13 | 14 | # ####################################################################################################### 15 | # 16 | # MEDIUM-UNKNOWN PROVIDERS 17 | # 18 | # We know the source, but not the medium. 19 | # This section is useful for reducing false positives in the other sections 20 | 21 | unknown: 22 | 23 | Google: 24 | domains: 25 | - support.google.com 26 | - developers.google.com 27 | - maps.google.com 28 | - accounts.google.com 29 | - drive.google.com 30 | - sites.google.com 31 | - groups.google.com 32 | - groups.google.co.uk 33 | 34 | Yahoo!: 35 | domains: 36 | - finance.yahoo.com 37 | - news.yahoo.com 38 | - eurosport.yahoo.com 39 | - sports.yahoo.com 40 | - astrology.yahoo.com 41 | - travel.yahoo.com 42 | - answers.yahoo.com 43 | - screen.yahoo.com 44 | - weather.yahoo.com 45 | - messenger.yahoo.com 46 | - games.yahoo.com 47 | - shopping.yahoo.net 48 | - movies.yahoo.com 49 | - cars.yahoo.com 50 | - lifestyle.yahoo.com 51 | - omg.yahoo.com 52 | - match.yahoo.net 53 | 54 | Yandex Maps: 55 | parameters: 56 | - text 57 | domains: 58 | - maps.yandex.ru 59 | - maps.yandex.ua 60 | - maps.yandex.com 61 | - maps.yandex.by 62 | - n.maps.yandex.ru 63 | 64 | # ####################################################################################################### 65 | # 66 | # EMAIL PROVIDERS 67 | 68 | email: 69 | 70 | 126 Mail: 71 | domains: 72 | - mail.126.com 73 | 74 | 163 Mail: 75 | domains: 76 | - mail.163.com 77 | 78 | 1und1: 79 | domains: 80 | - deref-1und1-02.de 81 | 82 | 2degrees: 83 | domains: 84 | - webmail.2degreesbroadband.co.nz 85 | 86 | Adam Internet: 87 | domains: 88 | - webmail.adam.com.au 89 | 90 | AOL Mail: 91 | domains: 92 | - mail.aol.com 93 | - com.aol.mobile.aolapp # AOL for Android app 94 | 95 | Beeline: 96 | domains: 97 | - post.ru 98 | 99 | Bigpond: 100 | domains: 101 | - webmail.bigpond.com 102 | - webmail2.bigpond.com 103 | - email.telstra.com 104 | - basic.messaging.bigpond.com 105 | 106 | Bluewin: 107 | domains: 108 | - rich-v01.bluewin.ch 109 | - rich-v02.bluewin.ch 110 | - email.bluewin.ch 111 | 112 | Commander: 113 | domains: 114 | - webmail.commander.net.au 115 | 116 | Daum Mail: 117 | domains: 118 | - mail2.daum.net 119 | - mail.daum.net 120 | 121 | Dodo: 122 | domains: 123 | - webmail.dodo.com.au 124 | 125 | E1.ru: 126 | domains: 127 | - mail.e1.ru 128 | 129 | earthlink: 130 | domains: 131 | - com.earthlink.myearthlink # myEarthLink for Android app 132 | 133 | Freenet: 134 | domains: 135 | - webmail.freenet.de 136 | 137 | Gmail: 138 | domains: 139 | - mail.google.com 140 | - com.google.android.gm # Gmail for Android app 141 | - inbox.google.com 142 | 143 | GMX: 144 | domains: 145 | - deref-gmx.de 146 | - deref-gmx.at 147 | - deref-gmx.ch 148 | - deref-gmx.fr 149 | - deref-gmx.es 150 | - deref-gmx.it 151 | - deref-gmx.com 152 | - deref-gmx.net 153 | - deref-gmx.co.uk 154 | - lightmailer.gmx.de 155 | - lightmailer.gmx.at 156 | - lightmailer.gmx.ch 157 | - lightmailer.gmx.fr 158 | - lightmailer.gmx.es 159 | - lightmailer.gmx.it 160 | - lightmailer.gmx.com 161 | - lightmailer.gmx.net 162 | - lightmailer.gmx.co.uk 163 | - lightmailer-bs.gmx.net 164 | - lightmailer-bap.gmx.net 165 | 166 | iiNet: 167 | domains: 168 | - webmail.iinet.net.au 169 | - mail.iinet.net.au 170 | 171 | Ionos: 172 | domains: 173 | - email.ionos.de 174 | - email.ionos.es 175 | - email.ionos.fr 176 | - email.ionos.it 177 | - email.ionos.ca 178 | - email.ionos.mx 179 | - email.ionos.com 180 | - email.ionos.co.uk 181 | - mailbusiness.ionos.de 182 | - mailbusiness.ionos.es 183 | - mailbusiness.ionos.fr 184 | - mailbusiness.ionos.it 185 | - mailbusiness.ionos.ca 186 | - mailbusiness.ionos.mx 187 | - mailbusiness.ionos.com 188 | - mailbusiness.ionos.co.uk 189 | 190 | Inbox.com: 191 | domains: 192 | - inbox.com 193 | 194 | Infomaniak: 195 | domains: 196 | - mail.infomaniak.com 197 | 198 | iPrimus: 199 | domains: 200 | - webmail.iprimus.com.au 201 | 202 | Mail.ru: 203 | domains: 204 | - e.mail.ru 205 | - touch.mail.ru 206 | 207 | Mail.com: 208 | domains: 209 | - deref-mail.com 210 | - 3c-lxa.mail.com 211 | - lightmailer.mail.com 212 | 213 | Mailchimp: 214 | domains: 215 | - com.mailchimp.mailchimp # Mailchimp app for Android 216 | 217 | Mastermail: 218 | domains: 219 | - mastermail.ru 220 | - m.mastermail.ru 221 | 222 | Mynet Mail: 223 | domains: 224 | - mail.mynet.com 225 | 226 | Naver Mail: 227 | domains: 228 | - mail.naver.com 229 | 230 | Netspace: 231 | domains: 232 | - webmail.netspace.net.au 233 | 234 | Optus Zoo: 235 | domains: 236 | - webmail.optuszoo.com.au 237 | - webmail.optusnet.com.au 238 | 239 | Orange Webmail: 240 | domains: 241 | - orange.fr/webmail 242 | - mail01.orange.fr 243 | - mail02.orange.fr 244 | - wmail.orange.fr 245 | - messageriepro3.orange.fr 246 | - messagerie.orange.fr 247 | 248 | Outlook.com: 249 | domains: 250 | - mail.live.com 251 | - outlook.live.com 252 | - com.microsoft.office.outlook # Outlook for Android app 253 | 254 | Proton: 255 | domains: 256 | - mail.proton.me 257 | 258 | QIP: 259 | domains: 260 | - mail.qip.ru 261 | 262 | QQ Mail: 263 | domains: 264 | - mail.qq.com 265 | - exmail.qq.com 266 | 267 | Rambler: 268 | domains: 269 | - mail.rambler.ru 270 | 271 | Seznam Mail: 272 | domains: 273 | - email.seznam.cz 274 | 275 | Sibmail: 276 | domains: 277 | - sibmail.com 278 | 279 | T-online: 280 | domains: 281 | - email.t-online.de 282 | 283 | TIM: 284 | domains: 285 | - webmail.tim.it 286 | 287 | Ukr.net: 288 | domains: 289 | - mail.ukr.net 290 | 291 | UPC: 292 | domains: 293 | - upcmail.hispeed.ch 294 | 295 | Virgin: 296 | domains: 297 | - webmail.virginbroadband.com.au 298 | 299 | Vodafone: 300 | domains: 301 | - webmail.vodafone.co.nz 302 | - mail.vodafone.de 303 | 304 | Westnet: 305 | domains: 306 | - webmail.westnet.com.au 307 | 308 | Web.de: 309 | domains: 310 | - deref-web.de 311 | - 3c.web.de 312 | - 3c-bap.web.de 313 | - lightmailer-bap.web.de 314 | - lightmailer-bs.web.de 315 | 316 | Yandex: 317 | domains: 318 | - mail.yandex.ru 319 | - mail.yandex.com 320 | - mail.yandex.kz 321 | - mail.yandex.ua 322 | - mail.yandex.by 323 | 324 | Yahoo! Mail: 325 | domains: 326 | - mail.yahoo.net 327 | - mail.yahoo.com 328 | - mail.yahoo.co.uk 329 | - mail.yahoo.co.jp 330 | - com.yahoo.mobile.client.android.mail # Yahoo Mail for Android app 331 | 332 | Zoho: 333 | domains: 334 | - mail.zoho.com 335 | 336 | # ####################################################################################################### 337 | # 338 | # SOCIAL PROVIDERS 339 | 340 | social: 341 | 342 | Facebook: 343 | domains: 344 | - facebook.com 345 | - fb.me 346 | - m.facebook.com 347 | - l.facebook.com 348 | - lm.facebook.com 349 | - com.facebook.katana # Facebook for Android app 350 | 351 | Qzone: 352 | domains: 353 | - qzone.qq.com 354 | 355 | Habbo: 356 | domains: 357 | - habbo.com 358 | 359 | Twitter: 360 | domains: 361 | - twitter.com 362 | - t.co 363 | - com.twitter.android # Twitter for Android app 364 | 365 | Lnk.Bio: 366 | domains: 367 | - lnk.bio # Supercharge your link in bio on Instagram, TikTok, YouTube 368 | 369 | Instagram: 370 | domains: 371 | - instagram.com 372 | - l.instagram.com 373 | - com.instagram.android # Instagram for Android app 374 | 375 | Threads: 376 | domains: 377 | - threads.net 378 | - l.threads.net 379 | - com.instagram.barcelona # Threads for Android app 380 | 381 | Youtube: 382 | domains: 383 | - youtube.com 384 | - youtu.be 385 | 386 | Vimeo: 387 | domains: 388 | - vimeo.com 389 | 390 | Renren: 391 | domains: 392 | - renren.com 393 | 394 | Windows Live Spaces: 395 | domains: 396 | - login.live.com 397 | 398 | LinkedIn: 399 | domains: 400 | - com.linkedin.android # LinkedIn for Android app 401 | - linkedin.com 402 | - lnkd.in 403 | 404 | Bebo: 405 | domains: 406 | - bebo.com 407 | 408 | Vkontakte: 409 | domains: 410 | - m.vk.com 411 | - vk.com 412 | - away.vk.com 413 | - vkontakte.ru 414 | 415 | Tagged: 416 | domains: 417 | - login.tagged.com 418 | 419 | Orkut: 420 | domains: 421 | - orkut.com 422 | 423 | Myspace: 424 | domains: 425 | - myspace.com 426 | 427 | Friendster: 428 | domains: 429 | - friendster.com 430 | 431 | Badoo: 432 | domains: 433 | - badoo.com 434 | 435 | hi5: 436 | domains: 437 | - hi5.com 438 | 439 | Netlog: 440 | domains: 441 | - netlog.com 442 | 443 | Flixster: 444 | domains: 445 | - flixster.com 446 | 447 | MyLife: 448 | domains: 449 | - mylife.ru 450 | 451 | Paper.li: 452 | domains: 453 | - paper.li 454 | 455 | Classmates: 456 | domains: 457 | - classmates.com 458 | 459 | GitHub: 460 | domains: 461 | - github.com 462 | 463 | Google+: 464 | domains: 465 | - url.google.com 466 | - plus.google.com 467 | 468 | Douban: 469 | domains: 470 | - douban.com 471 | 472 | Odnoklassniki: 473 | domains: 474 | - odnoklassniki.ru 475 | - ok.ru 476 | 477 | Viadeo: 478 | domains: 479 | - viadeo.com 480 | 481 | Flickr: 482 | domains: 483 | - flickr.com 484 | 485 | WeeWorld: 486 | domains: 487 | - weeworld.com 488 | 489 | Last.fm: 490 | domains: 491 | - lastfm.ru 492 | 493 | MyHeritage: 494 | domains: 495 | - myheritage.com 496 | 497 | Xanga: 498 | domains: 499 | - xanga.com 500 | 501 | Mixi: 502 | domains: 503 | - mixi.jp 504 | 505 | Cyworld: 506 | domains: 507 | - global.cyworld.com 508 | 509 | Gaia Online: 510 | domains: 511 | - gaiaonline.com 512 | 513 | Skyrock: 514 | domains: 515 | - skyrock.com 516 | 517 | BlackPlanet: 518 | domains: 519 | - blackplanet.com 520 | 521 | myYearbook: 522 | domains: 523 | - myyearbook.com 524 | 525 | Fotolog: 526 | domains: 527 | - fotolog.com 528 | 529 | Friends Reunited: 530 | domains: 531 | - friendsreunited.com 532 | 533 | LiveJournal: 534 | domains: 535 | - livejournal.ru 536 | 537 | StudiVZ: 538 | domains: 539 | - studivz.net 540 | 541 | StackOverflow: 542 | domains: 543 | - stackoverflow.com 544 | 545 | Sonico.com: 546 | domains: 547 | - sonico.com 548 | 549 | Pinterest: 550 | domains: 551 | - pinterest.ca 552 | - pinterest.cl 553 | - pinterest.co.kr 554 | - pinterest.com 555 | - pinterest.com.au 556 | - pinterest.co.uk 557 | - pinterest.de 558 | - pinterest.dk 559 | - pinterest.es 560 | - pinterest.fr 561 | - pinterest.jp 562 | - pinterest.nz 563 | - pinterest.pt 564 | - pinterest.se 565 | - pinterest.at 566 | - pinterest.ch 567 | - pinterest.com.mx 568 | - pinterest.ie 569 | - pinterest.it 570 | - pinterest.ph 571 | - pinterest.ru 572 | - com.pinterest 573 | 574 | Plaxo: 575 | domains: 576 | - plaxo.com 577 | 578 | Geni: 579 | domains: 580 | - geni.com 581 | 582 | Tuenti: 583 | domains: 584 | - tuenti.com 585 | 586 | XING: 587 | domains: 588 | - xing.com 589 | 590 | Taringa!: 591 | domains: 592 | - taringa.net 593 | 594 | TikTok: 595 | domains: 596 | - tiktok.com 597 | 598 | Tumblr: 599 | domains: 600 | - tumblr.com 601 | - t.umblr.com 602 | 603 | Nasza-klasa.pl: 604 | domains: 605 | - nk.pl 606 | 607 | StumbleUpon: 608 | domains: 609 | - stumbleupon.com 610 | 611 | SourceForge: 612 | domains: 613 | - sourceforge.net 614 | 615 | Hyves: 616 | domains: 617 | - hyves.nl 618 | 619 | WAYN: 620 | domains: 621 | - wayn.com 622 | 623 | Buzznet: 624 | domains: 625 | - buzznet.com 626 | 627 | Multiply: 628 | domains: 629 | - multiply.com 630 | 631 | Foursquare: 632 | domains: 633 | - foursquare.com 634 | 635 | vKruguDruzei.ru: 636 | domains: 637 | - vkrugudruzei.ru 638 | 639 | Mail.ru: 640 | domains: 641 | - my.mail.ru 642 | 643 | MoiKrug.ru: 644 | domains: 645 | - moikrug.ru 646 | 647 | Reddit: 648 | domains: 649 | - reddit.com 650 | - io.syncapps.lemmy_sync 651 | - com.laurencedawson.reddit_sync 652 | - com.laurencedawson.reddit_sync.pro 653 | 654 | Tildes: 655 | domains: 656 | - tildes.net 657 | - com.talklittle.android.tildes # Three Cheers for Tildes for Android app 658 | 659 | Hacker News: 660 | domains: 661 | - news.ycombinator.com 662 | - io.github.hidroh.materialistic # Materialistic for Android app 663 | 664 | Identi.ca: 665 | domains: 666 | - identi.ca 667 | 668 | Weibo: 669 | domains: 670 | - weibo.com 671 | - t.cn 672 | 673 | Delicious: 674 | domains: 675 | - delicious.com 676 | 677 | Pocket: 678 | domains: 679 | - getpocket.com 680 | 681 | ITU Sozluk: 682 | domains: 683 | - itusozluk.com 684 | 685 | Instela: 686 | domains: 687 | - instela.com 688 | 689 | Eksi Sozluk: 690 | domains: 691 | - Sozluk.com 692 | - sourtimes.org 693 | 694 | Uludag Sozluk: 695 | domains: 696 | - uludagsozluk.com 697 | - ulusozluk.com 698 | 699 | Inci Sozluk: 700 | domains: 701 | - inci.sozlukspot.com 702 | - incisozluk.com 703 | - incisozluk.cc 704 | 705 | Hocam.com: 706 | domains: 707 | - hocam.com 708 | 709 | Donanimhaber: 710 | domains: 711 | - donanimhaber.com 712 | 713 | Disqus: 714 | domains: 715 | - redirect.disqus.com 716 | - disq.us 717 | - disqus.com 718 | 719 | Quora: 720 | domains: 721 | - quora.com 722 | 723 | Skype: 724 | domains: 725 | - web.skype.com 726 | 727 | Slack: 728 | domains: 729 | - app.slack.com 730 | - com.slack # Slack for Android app 731 | 732 | Snapchat: 733 | domains: 734 | - com.snapchat.android # Snapchat for Android app 735 | - snapchat.com 736 | 737 | Telegram: 738 | domains: 739 | - web.telegram.org 740 | - org.telegram.messenger # Telegram for Android app 741 | - org.telegram.messenger.web # Telegram for Android app (direct APK) 742 | - org.aka.messenger # aka for Android app 743 | - org.telegram.biftogram # BGram for Android app 744 | - org.telegram.plus # Plus Messenger for Android app 745 | 746 | WhatsApp: 747 | domains: 748 | - web.whatsapp.com 749 | - com.whatsapp 750 | 751 | Whirlpool: 752 | domains: 753 | - forums.whirlpool.net.au 754 | 755 | Workplace: 756 | domains: 757 | - l.workplace.com 758 | - lm.workplace.com 759 | 760 | 761 | # ####################################################################################################### 762 | # 763 | # SEARCH PROVIDERS 764 | 765 | search: 766 | 767 | 1.cz: 768 | parameters: 769 | - q 770 | domains: 771 | - 1.cz 772 | 773 | # 123people TODO 774 | 775 | 1&1: 776 | parameters: 777 | - q 778 | domains: 779 | - search.1and1.com 780 | 781 | 1und1: 782 | parameters: 783 | - q 784 | domains: 785 | - suche.1und1.de 786 | 787 | 2gis: 788 | domains: 789 | - 2gis.ru 790 | - www.2gis.ru 791 | - link.2gis.ru 792 | - www.link.2gis.ru 793 | 794 | 360.cn: 795 | parameters: 796 | - q 797 | domains: 798 | - so.360.cn 799 | - www.so.com 800 | 801 | Abacho: 802 | parameters: 803 | - q 804 | domains: 805 | - www.abacho.de 806 | - www.abacho.com 807 | - www.abacho.co.uk 808 | - www.se.abacho.com 809 | - www.tr.abacho.com 810 | - www.abacho.at 811 | - www.abacho.fr 812 | - www.abacho.es 813 | - www.abacho.ch 814 | - www.abacho.it 815 | 816 | ABCsøk: 817 | parameters: 818 | - q 819 | domains: 820 | - abcsolk.no 821 | - verden.abcsok.no 822 | 823 | Acoon: 824 | parameters: 825 | - begriff 826 | domains: 827 | - www.acoon.de 828 | 829 | Alexa: 830 | parameters: 831 | - q 832 | domains: 833 | - alexa.com 834 | - search.toolbars.alexa.com 835 | 836 | Alice Adsl: 837 | parameters: 838 | - q 839 | domains: 840 | - rechercher.aliceadsl.fr 841 | 842 | AllTheWeb: 843 | parameters: 844 | - q 845 | domains: 846 | - www.alltheweb.com 847 | 848 | all.by: 849 | parameters: 850 | - query 851 | domains: 852 | - all.by 853 | 854 | Altavista: 855 | parameters: 856 | - q 857 | domains: 858 | - www.altavista.com 859 | - search.altavista.com 860 | - listings.altavista.com 861 | - altavista.de 862 | - altavista.fr 863 | - be-nl.altavista.com 864 | - be-fr.altavista.com 865 | 866 | Amazon: 867 | parameters: 868 | - keywords 869 | domains: 870 | - amazon.com 871 | - www.amazon.com 872 | 873 | AOL: 874 | parameters: 875 | - q 876 | - query 877 | domains: 878 | - search.aol.com 879 | - search.aol.it 880 | - aolsearch.aol.com 881 | - aolsearch.com 882 | - www.aolrecherche.aol.fr 883 | - www.aolrecherches.aol.fr 884 | - www.aolimages.aol.fr 885 | - aim.search.aol.com 886 | - www.recherche.aol.fr 887 | - recherche.aol.fr 888 | - find.web.aol.com 889 | - recherche.aol.ca 890 | - aolsearch.aol.co.uk 891 | - search.aol.co.uk 892 | - aolrecherche.aol.fr 893 | - sucheaol.aol.de 894 | - suche.aol.de 895 | - suche.aolsvc.de 896 | - aolbusqueda.aol.com.mx 897 | - alicesuche.aol.de 898 | - alicesuchet.aol.de 899 | - suchet2.aol.de 900 | - search.hp.my.aol.com.au 901 | - search.hp.my.aol.de 902 | - search.hp.my.aol.it 903 | - search-intl.netscape.com 904 | 905 | Apollo Latvia: 906 | parameters: 907 | - q 908 | domains: 909 | - apollo.lv/portal/search/ 910 | 911 | APOLL07: 912 | parameters: 913 | - query 914 | domains: 915 | - apollo7.de 916 | 917 | Apontador: 918 | parameters: 919 | - q 920 | domains: 921 | - apontador.com.br 922 | - www.apontador.com.br 923 | 924 | Aport: 925 | parameters: 926 | - r 927 | domains: 928 | - sm.aport.ru 929 | 930 | arama: 931 | parameters: 932 | - q 933 | domains: 934 | - arama.com 935 | 936 | Arcor: 937 | parameters: 938 | - Keywords 939 | domains: 940 | - www.arcor.de 941 | 942 | Arianna: 943 | parameters: 944 | - query 945 | domains: 946 | - arianna.libero.it 947 | - www.arianna.com 948 | 949 | Ask: 950 | parameters: 951 | - q 952 | domains: 953 | - ask.com 954 | - www.ask.com 955 | - web.ask.com 956 | - int.ask.com 957 | - mws.ask.com 958 | - uk.ask.com 959 | - images.ask.com 960 | - ask.reference.com 961 | - www.askkids.com 962 | - iwon.ask.com 963 | - www.ask.co.uk 964 | - www.qbyrd.com 965 | - search-results.com 966 | - uk.search-results.com 967 | - www.search-results.com 968 | - int.search-results.com 969 | 970 | Ask Toolbar: 971 | parameters: 972 | - searchfor 973 | domains: 974 | - search.tb.ask.com 975 | 976 | Atlas: 977 | parameters: 978 | - q 979 | domains: 980 | - searchatlas.centrum.cz 981 | 982 | Austronaut: 983 | parameters: 984 | - q 985 | domains: 986 | - www2.austronaut.at 987 | - www1.astronaut.at 988 | 989 | Babylon: 990 | parameters: 991 | - q 992 | domains: 993 | - search.babylon.com 994 | - searchassist.babylon.com 995 | 996 | Baidu: 997 | parameters: 998 | - wd 999 | - word 1000 | - kw 1001 | - k 1002 | domains: 1003 | - www.baidu.com 1004 | - www1.baidu.com 1005 | - zhidao.baidu.com 1006 | - tieba.baidu.com 1007 | - news.baidu.com 1008 | - web.gougou.com 1009 | - m.baidu.com 1010 | 1011 | Biglobe: 1012 | parameters: 1013 | - q 1014 | domains: 1015 | - cgi.search.biglobe.ne.jp 1016 | 1017 | Bing: 1018 | parameters: 1019 | - q 1020 | - Q 1021 | domains: 1022 | - bing.com 1023 | - www.bing.com 1024 | - msnbc.msn.com 1025 | - dizionario.it.msn.com 1026 | - cc.bingj.com 1027 | - m.bing.com 1028 | 1029 | Bing Images: 1030 | parameters: 1031 | - q 1032 | - Q 1033 | domains: 1034 | - bing.com/images/search 1035 | - www.bing.com/images/search 1036 | 1037 | blekko: 1038 | parameters: 1039 | - q 1040 | domains: 1041 | - blekko.com 1042 | 1043 | Blogdigger: 1044 | parameters: 1045 | - q 1046 | domains: 1047 | - www.blogdigger.com 1048 | 1049 | Blogpulse: 1050 | parameters: 1051 | - query 1052 | domains: 1053 | - www.blogpulse.com 1054 | 1055 | Bluewin: 1056 | parameters: 1057 | - searchTerm 1058 | domains: 1059 | - search.bluewin.ch 1060 | 1061 | Brave: 1062 | parameters: 1063 | - q 1064 | domains: 1065 | - search.brave.com 1066 | 1067 | British Telecommunications: 1068 | parameters: 1069 | - p 1070 | domains: 1071 | - search.bt.com 1072 | 1073 | canoe.ca: 1074 | parameters: 1075 | - q 1076 | domains: 1077 | - web.canoe.ca 1078 | 1079 | Centrum: 1080 | parameters: 1081 | - q 1082 | domains: 1083 | - serach.centrum.cz 1084 | - morfeo.centrum.cz 1085 | 1086 | Certified-Toolbar: 1087 | parameters: 1088 | - q 1089 | domains: 1090 | - search.certified-toolbar.com 1091 | 1092 | Charter: 1093 | parameters: 1094 | - q 1095 | domains: 1096 | - www.charter.net 1097 | 1098 | Clix: 1099 | parameters: 1100 | - question 1101 | domains: 1102 | - pesquisa.clix.pt 1103 | 1104 | Coccoc: 1105 | parameters: 1106 | - q 1107 | domains: 1108 | - coccoc.com 1109 | 1110 | Conduit: 1111 | parameters: 1112 | - q 1113 | domains: 1114 | - search.conduit.com 1115 | 1116 | Comcast: 1117 | parameters: 1118 | - q 1119 | domains: 1120 | - serach.comcast.net 1121 | 1122 | Crawler: 1123 | parameters: 1124 | - q 1125 | domains: 1126 | - www.crawler.com 1127 | 1128 | Compuserve: 1129 | parameters: 1130 | - query 1131 | domains: 1132 | - websearch.cs.com 1133 | 1134 | Cuil: 1135 | parameters: 1136 | - q 1137 | domains: 1138 | - www.cuil.com 1139 | 1140 | Daemon search: 1141 | parameters: 1142 | - q 1143 | domains: 1144 | - daemon-search.com 1145 | - my.daemon-search.com 1146 | 1147 | Dalesearch: 1148 | parameters: 1149 | - q 1150 | domains: 1151 | - www.dalesearch.com 1152 | 1153 | DasOertliche: 1154 | parameters: 1155 | - kw 1156 | domains: 1157 | - www.dasoertliche.de 1158 | 1159 | DasTelefonbuch: 1160 | parameters: 1161 | - kw 1162 | domains: 1163 | - www1.dastelefonbuch.de 1164 | 1165 | Daum: 1166 | parameters: 1167 | - q 1168 | domains: 1169 | - search.daum.net 1170 | 1171 | Delfi latvia: 1172 | parameters: 1173 | - q 1174 | domains: 1175 | - smart.delfi.lv 1176 | 1177 | Delfi: 1178 | parameters: 1179 | - q 1180 | domains: 1181 | - otsing.delfi.ee 1182 | 1183 | Digg: 1184 | parameters: 1185 | - s 1186 | domains: 1187 | - digg.com 1188 | 1189 | dmoz: 1190 | parameters: 1191 | - q 1192 | domains: 1193 | - dmoz.org 1194 | - editors.dmoz.org 1195 | 1196 | Dodo: 1197 | parameters: 1198 | - q 1199 | domains: 1200 | - google.dodo.com.au 1201 | 1202 | DuckDuckGo: 1203 | parameters: 1204 | - q 1205 | domains: 1206 | - duckduckgo.com 1207 | 1208 | earthlink: 1209 | parameters: 1210 | - q 1211 | domains: 1212 | - search.earthlink.net 1213 | 1214 | Ecosia: 1215 | parameters: 1216 | - q 1217 | domains: 1218 | - ecosia.org 1219 | 1220 | Eniro: 1221 | parameters: 1222 | - q 1223 | - search_word 1224 | domains: 1225 | - www.eniro.se 1226 | 1227 | Eurip: 1228 | parameters: 1229 | - q 1230 | domains: 1231 | - www.eurip.com 1232 | 1233 | Euroseek: 1234 | parameters: 1235 | - string 1236 | domains: 1237 | - www.euroseek.com 1238 | 1239 | Everyclick: 1240 | parameters: 1241 | - keyword 1242 | domains: 1243 | - www.everyclick.com 1244 | 1245 | Excite: 1246 | parameters: 1247 | - q 1248 | - search 1249 | domains: 1250 | - search.excite.it 1251 | - search.excite.fr 1252 | - search.excite.de 1253 | - search.excite.co.uk 1254 | - serach.excite.es 1255 | - search.excite.nl 1256 | - msxml.excite.com 1257 | - www.excite.co.jp 1258 | 1259 | Exalead: 1260 | parameters: 1261 | - q 1262 | domains: 1263 | - www.exalead.fr 1264 | - www.exalead.com 1265 | 1266 | eo: 1267 | parameters: 1268 | - x_query 1269 | domains: 1270 | - eo.st 1271 | 1272 | Fast Browser Search: 1273 | parameters: 1274 | - q 1275 | domains: 1276 | - www.fastbrowsersearch.com 1277 | 1278 | Francite: 1279 | parameters: 1280 | - name 1281 | domains: 1282 | - recherche.francite.com 1283 | 1284 | Finderoo: 1285 | parameters: 1286 | - q 1287 | domains: 1288 | - www.finderoo.com 1289 | 1290 | Findwide: 1291 | parameters: 1292 | - k 1293 | domains: 1294 | - search.findwide.com 1295 | 1296 | Fireball: 1297 | parameters: 1298 | - q 1299 | domains: 1300 | - www.fireball.de 1301 | 1302 | Firstfind: 1303 | parameters: 1304 | - qry 1305 | domains: 1306 | - www.firstsfind.com 1307 | 1308 | Fixsuche: 1309 | parameters: 1310 | - q 1311 | domains: 1312 | - www.fixsuche.de 1313 | 1314 | Flix: 1315 | parameters: 1316 | - keyword 1317 | domains: 1318 | - www.flix.de 1319 | 1320 | Forestle: 1321 | parameters: 1322 | - q 1323 | domains: 1324 | - forestle.org 1325 | - www.forestle.org 1326 | - forestle.mobi 1327 | 1328 | Free: 1329 | parameters: 1330 | - q 1331 | domains: 1332 | - search.free.fr 1333 | - search1-2.free.fr 1334 | - search1-1.free.fr 1335 | 1336 | Freecause: 1337 | parameters: 1338 | - p 1339 | domains: 1340 | - search.freecause.com 1341 | 1342 | Freenet: 1343 | parameters: 1344 | - query 1345 | - Keywords 1346 | domains: 1347 | - suche.freenet.de 1348 | 1349 | Freshweather: 1350 | parameters: 1351 | - q 1352 | domains: 1353 | - www.fresh-weather.com 1354 | 1355 | FriendFeed: 1356 | parameters: 1357 | - q 1358 | domains: 1359 | - friendfeed.com 1360 | 1361 | GAIS: 1362 | parameters: 1363 | - q 1364 | domains: 1365 | - gais.cs.ccu.edu.tw 1366 | 1367 | Geona: 1368 | parameters: 1369 | - q 1370 | domains: 1371 | - geona.net 1372 | 1373 | Genieo: 1374 | parameters: 1375 | - q 1376 | domains: 1377 | - search.genieo.com 1378 | 1379 | Gigablast: 1380 | parameters: 1381 | - q 1382 | domains: 1383 | - www.gigablast.com 1384 | - dir.gigablast.com 1385 | 1386 | Globososo: 1387 | parameters: 1388 | - q 1389 | domains: 1390 | - searches.globososo.com 1391 | - search.globososo.com 1392 | 1393 | GMX: 1394 | parameters: 1395 | - su 1396 | domains: 1397 | - suche.gmx.net 1398 | 1399 | Gnadenmeer: 1400 | parameters: 1401 | - keyword 1402 | domains: 1403 | - www.gnadenmeer.de 1404 | 1405 | Gomeo: 1406 | parameters: 1407 | - Keywords 1408 | domains: 1409 | - www.gomeo.com 1410 | 1411 | goo: 1412 | parameters: 1413 | - MT 1414 | domains: 1415 | - search.goo.ne.jp 1416 | - ocnsearch.goo.ne.jp 1417 | 1418 | Google: 1419 | parameters: 1420 | - q 1421 | - query # For www.cnn.com (powered by Google) 1422 | - Keywords # For gooofullsearch.com (powered by Google) 1423 | domains: 1424 | - www.google.com 1425 | - www.google.ac 1426 | - www.google.ad 1427 | - www.google.com.af 1428 | - www.google.com.ag 1429 | - www.google.com.ai 1430 | - www.google.am 1431 | - www.google.it.ao 1432 | - www.google.com.ar 1433 | - www.google.as 1434 | - www.google.at 1435 | - www.google.com.au 1436 | - www.google.az 1437 | - www.google.ba 1438 | - www.google.com.bd 1439 | - www.google.be 1440 | - www.google.bf 1441 | - www.google.bg 1442 | - www.google.com.bh 1443 | - www.google.bi 1444 | - www.google.bj 1445 | - www.google.com.bn 1446 | - www.google.com.bo 1447 | - www.google.com.br 1448 | - www.google.bs 1449 | - www.google.co.bw 1450 | - www.google.com.by 1451 | - www.google.by 1452 | - www.google.com.bz 1453 | - www.google.ca 1454 | - www.google.com.kh 1455 | - www.google.cc 1456 | - www.google.cd 1457 | - www.google.cf 1458 | - www.google.cat 1459 | - www.google.cg 1460 | - www.google.ch 1461 | - www.google.ci 1462 | - www.google.co.ck 1463 | - www.google.cl 1464 | - www.google.cm 1465 | - www.google.cn 1466 | - www.google.com.co 1467 | - www.google.co.cr 1468 | - www.google.com.cu 1469 | - www.google.cv 1470 | - www.google.com.cy 1471 | - www.google.cz 1472 | - www.google.de 1473 | - www.google.dj 1474 | - www.google.dk 1475 | - www.google.dm 1476 | - www.google.com.do 1477 | - www.google.dz 1478 | - www.google.com.ec 1479 | - www.google.ee 1480 | - www.google.com.eg 1481 | - www.google.es 1482 | - www.google.com.et 1483 | - www.google.fi 1484 | - www.google.com.fj 1485 | - www.google.fm 1486 | - www.google.fr 1487 | - www.google.ga 1488 | - www.google.gd 1489 | - www.google.ge 1490 | - www.google.gf 1491 | - www.google.gg 1492 | - www.google.com.gh 1493 | - www.google.com.gi 1494 | - www.google.gl 1495 | - www.google.gm 1496 | - www.google.gp 1497 | - www.google.gr 1498 | - www.google.com.gt 1499 | - www.google.gy 1500 | - www.google.com.hk 1501 | - www.google.hn 1502 | - www.google.hr 1503 | - www.google.ht 1504 | - www.google.hu 1505 | - www.google.co.id 1506 | - www.google.iq 1507 | - www.google.ie 1508 | - www.google.co.il 1509 | - www.google.im 1510 | - www.google.co.in 1511 | - www.google.io 1512 | - www.google.is 1513 | - www.google.it 1514 | - www.google.je 1515 | - www.google.com.jm 1516 | - www.google.jo 1517 | - www.google.co.jp 1518 | - www.google.co.ke 1519 | - www.google.ki 1520 | - www.google.kg 1521 | - www.google.co.kr 1522 | - www.google.com.kw 1523 | - www.google.kz 1524 | - www.google.la 1525 | - www.google.com.lb 1526 | - www.google.com.lc 1527 | - www.google.li 1528 | - www.google.lk 1529 | - www.google.co.ls 1530 | - www.google.lt 1531 | - www.google.lu 1532 | - www.google.lv 1533 | - www.google.com.ly 1534 | - www.google.co.ma 1535 | - www.google.md 1536 | - www.google.me 1537 | - www.google.mg 1538 | - www.google.mk 1539 | - www.google.ml 1540 | - www.google.mn 1541 | - www.google.ms 1542 | - www.google.com.mt 1543 | - www.google.mu 1544 | - www.google.mv 1545 | - www.google.mw 1546 | - www.google.com.mx 1547 | - www.google.com.my 1548 | - www.google.co.mz 1549 | - www.google.com.na 1550 | - www.google.ne 1551 | - www.google.com.nf 1552 | - www.google.com.ng 1553 | - www.google.com.ni 1554 | - www.google.nl 1555 | - www.google.no 1556 | - www.google.com.np 1557 | - www.google.nr 1558 | - www.google.nu 1559 | - www.google.co.nz 1560 | - www.google.com.om 1561 | - www.google.com.pa 1562 | - www.google.com.pe 1563 | - www.google.com.ph 1564 | - www.google.com.pk 1565 | - www.google.pl 1566 | - www.google.pn 1567 | - www.google.com.pr 1568 | - www.google.ps 1569 | - www.google.pt 1570 | - www.google.com.py 1571 | - www.google.com.qa 1572 | - www.google.ro 1573 | - www.google.rs 1574 | - www.google.ru 1575 | - www.google.rw 1576 | - www.google.com.sa 1577 | - www.google.com.sb 1578 | - www.google.sc 1579 | - www.google.se 1580 | - www.google.com.sg 1581 | - www.google.sh 1582 | - www.google.si 1583 | - www.google.sk 1584 | - www.google.com.sl 1585 | - www.google.sn 1586 | - www.google.sm 1587 | - www.google.so 1588 | - www.google.st 1589 | - www.google.com.sv 1590 | - www.google.td 1591 | - www.google.tg 1592 | - www.google.co.th 1593 | - www.google.com.tj 1594 | - www.google.tk 1595 | - www.google.tl 1596 | - www.google.tm 1597 | - www.google.to 1598 | - www.google.com.tn 1599 | - www.google.tn 1600 | - www.google.com.tr 1601 | - www.google.tt 1602 | - www.google.com.tw 1603 | - www.google.co.tz 1604 | - www.google.com.ua 1605 | - www.google.co.ug 1606 | - www.google.ae 1607 | - www.google.co.uk 1608 | - www.google.us 1609 | - www.google.com.uy 1610 | - www.google.co.uz 1611 | - www.google.com.vc 1612 | - www.google.co.ve 1613 | - www.google.vg 1614 | - www.google.co.vi 1615 | - www.google.com.vn 1616 | - www.google.vu 1617 | - www.google.ws 1618 | - www.google.co.za 1619 | - www.google.co.zm 1620 | - www.google.co.zw 1621 | - google.com 1622 | - google.ac 1623 | - google.ad 1624 | - google.com.af 1625 | - google.com.ag 1626 | - google.com.ai 1627 | - google.am 1628 | - google.it.ao 1629 | - google.com.ar 1630 | - google.as 1631 | - google.at 1632 | - google.com.au 1633 | - google.az 1634 | - google.ba 1635 | - google.com.bd 1636 | - google.be 1637 | - google.bf 1638 | - google.bg 1639 | - google.com.bh 1640 | - google.bi 1641 | - google.bj 1642 | - google.com.bn 1643 | - google.com.bo 1644 | - google.com.br 1645 | - google.bs 1646 | - google.co.bw 1647 | - google.com.by 1648 | - google.by 1649 | - google.com.bz 1650 | - google.ca 1651 | - google.com.kh 1652 | - google.cc 1653 | - google.cd 1654 | - google.cf 1655 | - google.cat 1656 | - google.cg 1657 | - google.ch 1658 | - google.ci 1659 | - google.co.ck 1660 | - google.cl 1661 | - google.cm 1662 | - google.cn 1663 | - google.com.co 1664 | - google.co.cr 1665 | - google.com.cu 1666 | - google.cv 1667 | - google.com.cy 1668 | - google.cz 1669 | - google.de 1670 | - google.dj 1671 | - google.dk 1672 | - google.dm 1673 | - google.com.do 1674 | - google.dz 1675 | - google.com.ec 1676 | - google.ee 1677 | - google.com.eg 1678 | - google.es 1679 | - google.com.et 1680 | - google.fi 1681 | - google.com.fj 1682 | - google.fm 1683 | - google.fr 1684 | - google.ga 1685 | - google.gd 1686 | - google.ge 1687 | - google.gf 1688 | - google.gg 1689 | - google.com.gh 1690 | - google.com.gi 1691 | - google.gl 1692 | - google.gm 1693 | - google.gp 1694 | - google.gr 1695 | - google.com.gt 1696 | - google.gy 1697 | - google.com.hk 1698 | - google.hn 1699 | - google.hr 1700 | - google.ht 1701 | - google.hu 1702 | - google.co.id 1703 | - google.iq 1704 | - google.ie 1705 | - google.co.il 1706 | - google.im 1707 | - google.co.in 1708 | - google.io 1709 | - google.is 1710 | - google.it 1711 | - google.je 1712 | - google.com.jm 1713 | - google.jo 1714 | - google.co.jp 1715 | - google.co.ke 1716 | - google.ki 1717 | - google.kg 1718 | - google.co.kr 1719 | - google.com.kw 1720 | - google.kz 1721 | - google.la 1722 | - google.com.lb 1723 | - google.com.lc 1724 | - google.li 1725 | - google.lk 1726 | - google.co.ls 1727 | - google.lt 1728 | - google.lu 1729 | - google.lv 1730 | - google.com.ly 1731 | - google.co.ma 1732 | - google.md 1733 | - google.me 1734 | - google.mg 1735 | - google.mk 1736 | - google.ml 1737 | - google.mn 1738 | - google.ms 1739 | - google.com.mt 1740 | - google.mu 1741 | - google.mv 1742 | - google.mw 1743 | - google.com.mx 1744 | - google.com.my 1745 | - google.co.mz 1746 | - google.com.na 1747 | - google.ne 1748 | - google.com.nf 1749 | - google.com.ng 1750 | - google.com.ni 1751 | - google.nl 1752 | - google.no 1753 | - google.com.np 1754 | - google.nr 1755 | - google.nu 1756 | - google.co.nz 1757 | - google.com.om 1758 | - google.com.pa 1759 | - google.com.pe 1760 | - google.com.ph 1761 | - google.com.pk 1762 | - google.pl 1763 | - google.pn 1764 | - google.com.pr 1765 | - google.ps 1766 | - google.pt 1767 | - google.com.py 1768 | - google.com.qa 1769 | - google.ro 1770 | - google.rs 1771 | - google.ru 1772 | - google.rw 1773 | - google.com.sa 1774 | - google.com.sb 1775 | - google.sc 1776 | - google.se 1777 | - google.com.sg 1778 | - google.sh 1779 | - google.si 1780 | - google.sk 1781 | - google.com.sl 1782 | - google.sn 1783 | - google.sm 1784 | - google.so 1785 | - google.st 1786 | - google.com.sv 1787 | - google.td 1788 | - google.tg 1789 | - google.co.th 1790 | - google.com.tj 1791 | - google.tk 1792 | - google.tl 1793 | - google.tm 1794 | - google.to 1795 | - google.com.tn 1796 | - google.com.tr 1797 | - google.tt 1798 | - google.com.tw 1799 | - google.co.tz 1800 | - google.com.ua 1801 | - google.co.ug 1802 | - google.ae 1803 | - google.co.uk 1804 | - google.us 1805 | - google.com.uy 1806 | - google.co.uz 1807 | - google.com.vc 1808 | - google.co.ve 1809 | - google.vg 1810 | - google.co.vi 1811 | - google.com.vn 1812 | - google.vu 1813 | - google.ws 1814 | - google.co.za 1815 | - google.co.zm 1816 | - google.co.zw 1817 | - google.tn 1818 | # powered by Google 1819 | - search.avg.com 1820 | - isearch.avg.com 1821 | - www.cnn.com 1822 | - darkoogle.com 1823 | - search.darkoogle.com 1824 | - search.foxtab.com 1825 | - www.gooofullsearch.com 1826 | - search.hiyo.com 1827 | - search.incredimail.com 1828 | - search1.incredimail.com 1829 | - search2.incredimail.com 1830 | - search3.incredimail.com 1831 | - search4.incredimail.com 1832 | - search.incredibar.com 1833 | - search.sweetim.com 1834 | - www.fastweb.it 1835 | - search.juno.com 1836 | - find.tdc.dk 1837 | - searchresults.verizon.com 1838 | - search.walla.co.il 1839 | - search.alot.com 1840 | # Google Earch 1841 | - www.googleearth.de 1842 | - www.googleearth.fr 1843 | # Google Cache 1844 | - webcache.googleusercontent.com 1845 | # Google SSL 1846 | - encrypted.google.com 1847 | # Syndicated search 1848 | - googlesyndicatedsearch.com 1849 | - com.google.android.googlequicksearchbox # Google for Android app 1850 | 1851 | Google Blogsearch: 1852 | parameters: 1853 | - q 1854 | domains: 1855 | - blogsearch.google.ac 1856 | - blogsearch.google.ad 1857 | - blogsearch.google.ae 1858 | - blogsearch.google.am 1859 | - blogsearch.google.as 1860 | - blogsearch.google.at 1861 | - blogsearch.google.az 1862 | - blogsearch.google.ba 1863 | - blogsearch.google.be 1864 | - blogsearch.google.bf 1865 | - blogsearch.google.bg 1866 | - blogsearch.google.bi 1867 | - blogsearch.google.bj 1868 | - blogsearch.google.bs 1869 | - blogsearch.google.by 1870 | - blogsearch.google.ca 1871 | - blogsearch.google.cat 1872 | - blogsearch.google.cc 1873 | - blogsearch.google.cd 1874 | - blogsearch.google.cf 1875 | - blogsearch.google.cg 1876 | - blogsearch.google.ch 1877 | - blogsearch.google.ci 1878 | - blogsearch.google.cl 1879 | - blogsearch.google.cm 1880 | - blogsearch.google.cn 1881 | - blogsearch.google.co.bw 1882 | - blogsearch.google.co.ck 1883 | - blogsearch.google.co.cr 1884 | - blogsearch.google.co.id 1885 | - blogsearch.google.co.il 1886 | - blogsearch.google.co.in 1887 | - blogsearch.google.co.jp 1888 | - blogsearch.google.co.ke 1889 | - blogsearch.google.co.kr 1890 | - blogsearch.google.co.ls 1891 | - blogsearch.google.co.ma 1892 | - blogsearch.google.co.mz 1893 | - blogsearch.google.co.nz 1894 | - blogsearch.google.co.th 1895 | - blogsearch.google.co.tz 1896 | - blogsearch.google.co.ug 1897 | - blogsearch.google.co.uk 1898 | - blogsearch.google.co.uz 1899 | - blogsearch.google.co.ve 1900 | - blogsearch.google.co.vi 1901 | - blogsearch.google.co.za 1902 | - blogsearch.google.co.zm 1903 | - blogsearch.google.co.zw 1904 | - blogsearch.google.com 1905 | - blogsearch.google.com.af 1906 | - blogsearch.google.com.ag 1907 | - blogsearch.google.com.ai 1908 | - blogsearch.google.com.ar 1909 | - blogsearch.google.com.au 1910 | - blogsearch.google.com.bd 1911 | - blogsearch.google.com.bh 1912 | - blogsearch.google.com.bn 1913 | - blogsearch.google.com.bo 1914 | - blogsearch.google.com.br 1915 | - blogsearch.google.com.by 1916 | - blogsearch.google.com.bz 1917 | - blogsearch.google.com.co 1918 | - blogsearch.google.com.cu 1919 | - blogsearch.google.com.cy 1920 | - blogsearch.google.com.do 1921 | - blogsearch.google.com.ec 1922 | - blogsearch.google.com.eg 1923 | - blogsearch.google.com.et 1924 | - blogsearch.google.com.fj 1925 | - blogsearch.google.com.gh 1926 | - blogsearch.google.com.gi 1927 | - blogsearch.google.com.gt 1928 | - blogsearch.google.com.hk 1929 | - blogsearch.google.com.jm 1930 | - blogsearch.google.com.kh 1931 | - blogsearch.google.com.kw 1932 | - blogsearch.google.com.lb 1933 | - blogsearch.google.com.lc 1934 | - blogsearch.google.com.ly 1935 | - blogsearch.google.com.mt 1936 | - blogsearch.google.com.mx 1937 | - blogsearch.google.com.my 1938 | - blogsearch.google.com.na 1939 | - blogsearch.google.com.nf 1940 | - blogsearch.google.com.ng 1941 | - blogsearch.google.com.ni 1942 | - blogsearch.google.com.np 1943 | - blogsearch.google.com.om 1944 | - blogsearch.google.com.pa 1945 | - blogsearch.google.com.pe 1946 | - blogsearch.google.com.ph 1947 | - blogsearch.google.com.pk 1948 | - blogsearch.google.com.pr 1949 | - blogsearch.google.com.py 1950 | - blogsearch.google.com.qa 1951 | - blogsearch.google.com.sa 1952 | - blogsearch.google.com.sb 1953 | - blogsearch.google.com.sg 1954 | - blogsearch.google.com.sl 1955 | - blogsearch.google.com.sv 1956 | - blogsearch.google.com.tj 1957 | - blogsearch.google.com.tn 1958 | - blogsearch.google.com.tr 1959 | - blogsearch.google.com.tw 1960 | - blogsearch.google.com.ua 1961 | - blogsearch.google.com.uy 1962 | - blogsearch.google.com.vc 1963 | - blogsearch.google.com.vn 1964 | - blogsearch.google.cv 1965 | - blogsearch.google.cz 1966 | - blogsearch.google.de 1967 | - blogsearch.google.dj 1968 | - blogsearch.google.dk 1969 | - blogsearch.google.dm 1970 | - blogsearch.google.dz 1971 | - blogsearch.google.ee 1972 | - blogsearch.google.es 1973 | - blogsearch.google.fi 1974 | - blogsearch.google.fm 1975 | - blogsearch.google.fr 1976 | - blogsearch.google.ga 1977 | - blogsearch.google.gd 1978 | - blogsearch.google.ge 1979 | - blogsearch.google.gf 1980 | - blogsearch.google.gg 1981 | - blogsearch.google.gl 1982 | - blogsearch.google.gm 1983 | - blogsearch.google.gp 1984 | - blogsearch.google.gr 1985 | - blogsearch.google.gy 1986 | - blogsearch.google.hn 1987 | - blogsearch.google.hr 1988 | - blogsearch.google.ht 1989 | - blogsearch.google.hu 1990 | - blogsearch.google.ie 1991 | - blogsearch.google.im 1992 | - blogsearch.google.io 1993 | - blogsearch.google.iq 1994 | - blogsearch.google.is 1995 | - blogsearch.google.it 1996 | - blogsearch.google.it.ao 1997 | - blogsearch.google.je 1998 | - blogsearch.google.jo 1999 | - blogsearch.google.kg 2000 | - blogsearch.google.ki 2001 | - blogsearch.google.kz 2002 | - blogsearch.google.la 2003 | - blogsearch.google.li 2004 | - blogsearch.google.lk 2005 | - blogsearch.google.lt 2006 | - blogsearch.google.lu 2007 | - blogsearch.google.lv 2008 | - blogsearch.google.md 2009 | - blogsearch.google.me 2010 | - blogsearch.google.mg 2011 | - blogsearch.google.mk 2012 | - blogsearch.google.ml 2013 | - blogsearch.google.mn 2014 | - blogsearch.google.ms 2015 | - blogsearch.google.mu 2016 | - blogsearch.google.mv 2017 | - blogsearch.google.mw 2018 | - blogsearch.google.ne 2019 | - blogsearch.google.nl 2020 | - blogsearch.google.no 2021 | - blogsearch.google.nr 2022 | - blogsearch.google.nu 2023 | - blogsearch.google.pl 2024 | - blogsearch.google.pn 2025 | - blogsearch.google.ps 2026 | - blogsearch.google.pt 2027 | - blogsearch.google.ro 2028 | - blogsearch.google.rs 2029 | - blogsearch.google.ru 2030 | - blogsearch.google.rw 2031 | - blogsearch.google.sc 2032 | - blogsearch.google.se 2033 | - blogsearch.google.sh 2034 | - blogsearch.google.si 2035 | - blogsearch.google.sk 2036 | - blogsearch.google.sm 2037 | - blogsearch.google.sn 2038 | - blogsearch.google.so 2039 | - blogsearch.google.st 2040 | - blogsearch.google.td 2041 | - blogsearch.google.tg 2042 | - blogsearch.google.tk 2043 | - blogsearch.google.tl 2044 | - blogsearch.google.tm 2045 | - blogsearch.google.to 2046 | - blogsearch.google.tt 2047 | - blogsearch.google.us 2048 | - blogsearch.google.vg 2049 | - blogsearch.google.vu 2050 | - blogsearch.google.ws 2051 | 2052 | Google Images: 2053 | parameters: 2054 | - q 2055 | domains: 2056 | - google.ac/imgres 2057 | - google.ad/imgres 2058 | - google.ae/imgres 2059 | - google.am/imgres 2060 | - google.as/imgres 2061 | - google.at/imgres 2062 | - google.az/imgres 2063 | - google.ba/imgres 2064 | - google.be/imgres 2065 | - google.bf/imgres 2066 | - google.bg/imgres 2067 | - google.bi/imgres 2068 | - google.bj/imgres 2069 | - google.bs/imgres 2070 | - google.by/imgres 2071 | - google.ca/imgres 2072 | - google.cat/imgres 2073 | - google.cc/imgres 2074 | - google.cd/imgres 2075 | - google.cf/imgres 2076 | - google.cg/imgres 2077 | - google.ch/imgres 2078 | - google.ci/imgres 2079 | - google.cl/imgres 2080 | - google.cm/imgres 2081 | - google.cn/imgres 2082 | - google.co.bw/imgres 2083 | - google.co.ck/imgres 2084 | - google.co.cr/imgres 2085 | - google.co.id/imgres 2086 | - google.co.il/imgres 2087 | - google.co.in/imgres 2088 | - google.co.jp/imgres 2089 | - google.co.ke/imgres 2090 | - google.co.kr/imgres 2091 | - google.co.ls/imgres 2092 | - google.co.ma/imgres 2093 | - google.co.mz/imgres 2094 | - google.co.nz/imgres 2095 | - google.co.th/imgres 2096 | - google.co.tz/imgres 2097 | - google.co.ug/imgres 2098 | - google.co.uk/imgres 2099 | - google.co.uz/imgres 2100 | - google.co.ve/imgres 2101 | - google.co.vi/imgres 2102 | - google.co.za/imgres 2103 | - google.co.zm/imgres 2104 | - google.co.zw/imgres 2105 | - google.com/imgres 2106 | - google.com.af/imgres 2107 | - google.com.ag/imgres 2108 | - google.com.ai/imgres 2109 | - google.com.ar/imgres 2110 | - google.com.au/imgres 2111 | - google.com.bd/imgres 2112 | - google.com.bh/imgres 2113 | - google.com.bn/imgres 2114 | - google.com.bo/imgres 2115 | - google.com.br/imgres 2116 | - google.com.by/imgres 2117 | - google.com.bz/imgres 2118 | - google.com.co/imgres 2119 | - google.com.cu/imgres 2120 | - google.com.cy/imgres 2121 | - google.com.do/imgres 2122 | - google.com.ec/imgres 2123 | - google.com.eg/imgres 2124 | - google.com.et/imgres 2125 | - google.com.fj/imgres 2126 | - google.com.gh/imgres 2127 | - google.com.gi/imgres 2128 | - google.com.gt/imgres 2129 | - google.com.hk/imgres 2130 | - google.com.jm/imgres 2131 | - google.com.kh/imgres 2132 | - google.com.kw/imgres 2133 | - google.com.lb/imgres 2134 | - google.com.lc/imgres 2135 | - google.com.ly/imgres 2136 | - google.com.mt/imgres 2137 | - google.com.mx/imgres 2138 | - google.com.my/imgres 2139 | - google.com.na/imgres 2140 | - google.com.nf/imgres 2141 | - google.com.ng/imgres 2142 | - google.com.ni/imgres 2143 | - google.com.np/imgres 2144 | - google.com.om/imgres 2145 | - google.com.pa/imgres 2146 | - google.com.pe/imgres 2147 | - google.com.ph/imgres 2148 | - google.com.pk/imgres 2149 | - google.com.pr/imgres 2150 | - google.com.py/imgres 2151 | - google.com.qa/imgres 2152 | - google.com.sa/imgres 2153 | - google.com.sb/imgres 2154 | - google.com.sg/imgres 2155 | - google.com.sl/imgres 2156 | - google.com.sv/imgres 2157 | - google.com.tj/imgres 2158 | - google.com.tn/imgres 2159 | - google.com.tr/imgres 2160 | - google.com.tw/imgres 2161 | - google.com.ua/imgres 2162 | - google.com.uy/imgres 2163 | - google.com.vc/imgres 2164 | - google.com.vn/imgres 2165 | - google.cv/imgres 2166 | - google.cz/imgres 2167 | - google.de/imgres 2168 | - google.dj/imgres 2169 | - google.dk/imgres 2170 | - google.dm/imgres 2171 | - google.dz/imgres 2172 | - google.ee/imgres 2173 | - google.es/imgres 2174 | - google.fi/imgres 2175 | - google.fm/imgres 2176 | - google.fr/imgres 2177 | - google.ga/imgres 2178 | - google.gd/imgres 2179 | - google.ge/imgres 2180 | - google.gf/imgres 2181 | - google.gg/imgres 2182 | - google.gl/imgres 2183 | - google.gm/imgres 2184 | - google.gp/imgres 2185 | - google.gr/imgres 2186 | - google.gy/imgres 2187 | - google.hn/imgres 2188 | - google.hr/imgres 2189 | - google.ht/imgres 2190 | - google.hu/imgres 2191 | - google.ie/imgres 2192 | - google.im/imgres 2193 | - google.io/imgres 2194 | - google.iq/imgres 2195 | - google.is/imgres 2196 | - google.it/imgres 2197 | - google.it.ao/imgres 2198 | - google.je/imgres 2199 | - google.jo/imgres 2200 | - google.kg/imgres 2201 | - google.ki/imgres 2202 | - google.kz/imgres 2203 | - google.la/imgres 2204 | - google.li/imgres 2205 | - google.lk/imgres 2206 | - google.lt/imgres 2207 | - google.lu/imgres 2208 | - google.lv/imgres 2209 | - google.md/imgres 2210 | - google.me/imgres 2211 | - google.mg/imgres 2212 | - google.mk/imgres 2213 | - google.ml/imgres 2214 | - google.mn/imgres 2215 | - google.ms/imgres 2216 | - google.mu/imgres 2217 | - google.mv/imgres 2218 | - google.mw/imgres 2219 | - google.ne/imgres 2220 | - google.nl/imgres 2221 | - google.no/imgres 2222 | - google.nr/imgres 2223 | - google.nu/imgres 2224 | - google.pl/imgres 2225 | - google.pn/imgres 2226 | - google.ps/imgres 2227 | - google.pt/imgres 2228 | - google.ro/imgres 2229 | - google.rs/imgres 2230 | - google.ru/imgres 2231 | - google.rw/imgres 2232 | - google.sc/imgres 2233 | - google.se/imgres 2234 | - google.sh/imgres 2235 | - google.si/imgres 2236 | - google.sk/imgres 2237 | - google.sm/imgres 2238 | - google.sn/imgres 2239 | - google.so/imgres 2240 | - google.st/imgres 2241 | - google.td/imgres 2242 | - google.tg/imgres 2243 | - google.tk/imgres 2244 | - google.tl/imgres 2245 | - google.tm/imgres 2246 | - google.to/imgres 2247 | - google.tt/imgres 2248 | - google.us/imgres 2249 | - google.vg/imgres 2250 | - google.vu/imgres 2251 | - images.google.ws 2252 | - images.google.ac 2253 | - images.google.ad 2254 | - images.google.ae 2255 | - images.google.am 2256 | - images.google.as 2257 | - images.google.at 2258 | - images.google.az 2259 | - images.google.ba 2260 | - images.google.be 2261 | - images.google.bf 2262 | - images.google.bg 2263 | - images.google.bi 2264 | - images.google.bj 2265 | - images.google.bs 2266 | - images.google.by 2267 | - images.google.ca 2268 | - images.google.cat 2269 | - images.google.cc 2270 | - images.google.cd 2271 | - images.google.cf 2272 | - images.google.cg 2273 | - images.google.ch 2274 | - images.google.ci 2275 | - images.google.cl 2276 | - images.google.cm 2277 | - images.google.cn 2278 | - images.google.co.bw 2279 | - images.google.co.ck 2280 | - images.google.co.cr 2281 | - images.google.co.id 2282 | - images.google.co.il 2283 | - images.google.co.in 2284 | - images.google.co.jp 2285 | - images.google.co.ke 2286 | - images.google.co.kr 2287 | - images.google.co.ls 2288 | - images.google.co.ma 2289 | - images.google.co.mz 2290 | - images.google.co.nz 2291 | - images.google.co.th 2292 | - images.google.co.tz 2293 | - images.google.co.ug 2294 | - images.google.co.uk 2295 | - images.google.co.uz 2296 | - images.google.co.ve 2297 | - images.google.co.vi 2298 | - images.google.co.za 2299 | - images.google.co.zm 2300 | - images.google.co.zw 2301 | - images.google.com 2302 | - images.google.com.af 2303 | - images.google.com.ag 2304 | - images.google.com.ai 2305 | - images.google.com.ar 2306 | - images.google.com.au 2307 | - images.google.com.bd 2308 | - images.google.com.bh 2309 | - images.google.com.bn 2310 | - images.google.com.bo 2311 | - images.google.com.br 2312 | - images.google.com.by 2313 | - images.google.com.bz 2314 | - images.google.com.co 2315 | - images.google.com.cu 2316 | - images.google.com.cy 2317 | - images.google.com.do 2318 | - images.google.com.ec 2319 | - images.google.com.eg 2320 | - images.google.com.et 2321 | - images.google.com.fj 2322 | - images.google.com.gh 2323 | - images.google.com.gi 2324 | - images.google.com.gt 2325 | - images.google.com.hk 2326 | - images.google.com.jm 2327 | - images.google.com.kh 2328 | - images.google.com.kw 2329 | - images.google.com.lb 2330 | - images.google.com.lc 2331 | - images.google.com.ly 2332 | - images.google.com.mt 2333 | - images.google.com.mx 2334 | - images.google.com.my 2335 | - images.google.com.na 2336 | - images.google.com.nf 2337 | - images.google.com.ng 2338 | - images.google.com.ni 2339 | - images.google.com.np 2340 | - images.google.com.om 2341 | - images.google.com.pa 2342 | - images.google.com.pe 2343 | - images.google.com.ph 2344 | - images.google.com.pk 2345 | - images.google.com.pr 2346 | - images.google.com.py 2347 | - images.google.com.qa 2348 | - images.google.com.sa 2349 | - images.google.com.sb 2350 | - images.google.com.sg 2351 | - images.google.com.sl 2352 | - images.google.com.sv 2353 | - images.google.com.tj 2354 | - images.google.com.tn 2355 | - images.google.com.tr 2356 | - images.google.com.tw 2357 | - images.google.com.ua 2358 | - images.google.com.uy 2359 | - images.google.com.vc 2360 | - images.google.com.vn 2361 | - images.google.cv 2362 | - images.google.cz 2363 | - images.google.de 2364 | - images.google.dj 2365 | - images.google.dk 2366 | - images.google.dm 2367 | - images.google.dz 2368 | - images.google.ee 2369 | - images.google.es 2370 | - images.google.fi 2371 | - images.google.fm 2372 | - images.google.fr 2373 | - images.google.ga 2374 | - images.google.gd 2375 | - images.google.ge 2376 | - images.google.gf 2377 | - images.google.gg 2378 | - images.google.gl 2379 | - images.google.gm 2380 | - images.google.gp 2381 | - images.google.gr 2382 | - images.google.gy 2383 | - images.google.hn 2384 | - images.google.hr 2385 | - images.google.ht 2386 | - images.google.hu 2387 | - images.google.ie 2388 | - images.google.im 2389 | - images.google.io 2390 | - images.google.iq 2391 | - images.google.is 2392 | - images.google.it 2393 | - images.google.it.ao 2394 | - images.google.je 2395 | - images.google.jo 2396 | - images.google.kg 2397 | - images.google.ki 2398 | - images.google.kz 2399 | - images.google.la 2400 | - images.google.li 2401 | - images.google.lk 2402 | - images.google.lt 2403 | - images.google.lu 2404 | - images.google.lv 2405 | - images.google.md 2406 | - images.google.me 2407 | - images.google.mg 2408 | - images.google.mk 2409 | - images.google.ml 2410 | - images.google.mn 2411 | - images.google.ms 2412 | - images.google.mu 2413 | - images.google.mv 2414 | - images.google.mw 2415 | - images.google.ne 2416 | - images.google.nl 2417 | - images.google.no 2418 | - images.google.nr 2419 | - images.google.nu 2420 | - images.google.pl 2421 | - images.google.pn 2422 | - images.google.ps 2423 | - images.google.pt 2424 | - images.google.ro 2425 | - images.google.rs 2426 | - images.google.ru 2427 | - images.google.rw 2428 | - images.google.sc 2429 | - images.google.se 2430 | - images.google.sh 2431 | - images.google.si 2432 | - images.google.sk 2433 | - images.google.sm 2434 | - images.google.sn 2435 | - images.google.so 2436 | - images.google.st 2437 | - images.google.td 2438 | - images.google.tg 2439 | - images.google.tk 2440 | - images.google.tl 2441 | - images.google.tm 2442 | - images.google.to 2443 | - images.google.tt 2444 | - images.google.us 2445 | - images.google.vg 2446 | - images.google.vu 2447 | 2448 | Google News: 2449 | parameters: 2450 | - q 2451 | domains: 2452 | - news.google.ac 2453 | - news.google.ad 2454 | - news.google.ae 2455 | - news.google.am 2456 | - news.google.as 2457 | - news.google.at 2458 | - news.google.az 2459 | - news.google.ba 2460 | - news.google.be 2461 | - news.google.bf 2462 | - news.google.bg 2463 | - news.google.bi 2464 | - news.google.bj 2465 | - news.google.bs 2466 | - news.google.by 2467 | - news.google.ca 2468 | - news.google.cat 2469 | - news.google.cc 2470 | - news.google.cd 2471 | - news.google.cf 2472 | - news.google.cg 2473 | - news.google.ch 2474 | - news.google.ci 2475 | - news.google.cl 2476 | - news.google.cm 2477 | - news.google.cn 2478 | - news.google.co.bw 2479 | - news.google.co.ck 2480 | - news.google.co.cr 2481 | - news.google.co.id 2482 | - news.google.co.il 2483 | - news.google.co.in 2484 | - news.google.co.jp 2485 | - news.google.co.ke 2486 | - news.google.co.kr 2487 | - news.google.co.ls 2488 | - news.google.co.ma 2489 | - news.google.co.mz 2490 | - news.google.co.nz 2491 | - news.google.co.th 2492 | - news.google.co.tz 2493 | - news.google.co.ug 2494 | - news.google.co.uk 2495 | - news.google.co.uz 2496 | - news.google.co.ve 2497 | - news.google.co.vi 2498 | - news.google.co.za 2499 | - news.google.co.zm 2500 | - news.google.co.zw 2501 | - news.google.com 2502 | - news.google.com.af 2503 | - news.google.com.ag 2504 | - news.google.com.ai 2505 | - news.google.com.ar 2506 | - news.google.com.au 2507 | - news.google.com.bd 2508 | - news.google.com.bh 2509 | - news.google.com.bn 2510 | - news.google.com.bo 2511 | - news.google.com.br 2512 | - news.google.com.by 2513 | - news.google.com.bz 2514 | - news.google.com.co 2515 | - news.google.com.cu 2516 | - news.google.com.cy 2517 | - news.google.com.do 2518 | - news.google.com.ec 2519 | - news.google.com.eg 2520 | - news.google.com.et 2521 | - news.google.com.fj 2522 | - news.google.com.gh 2523 | - news.google.com.gi 2524 | - news.google.com.gt 2525 | - news.google.com.hk 2526 | - news.google.com.jm 2527 | - news.google.com.kh 2528 | - news.google.com.kw 2529 | - news.google.com.lb 2530 | - news.google.com.lc 2531 | - news.google.com.ly 2532 | - news.google.com.mt 2533 | - news.google.com.mx 2534 | - news.google.com.my 2535 | - news.google.com.na 2536 | - news.google.com.nf 2537 | - news.google.com.ng 2538 | - news.google.com.ni 2539 | - news.google.com.np 2540 | - news.google.com.om 2541 | - news.google.com.pa 2542 | - news.google.com.pe 2543 | - news.google.com.ph 2544 | - news.google.com.pk 2545 | - news.google.com.pr 2546 | - news.google.com.py 2547 | - news.google.com.qa 2548 | - news.google.com.sa 2549 | - news.google.com.sb 2550 | - news.google.com.sg 2551 | - news.google.com.sl 2552 | - news.google.com.sv 2553 | - news.google.com.tj 2554 | - news.google.com.tn 2555 | - news.google.com.tr 2556 | - news.google.com.tw 2557 | - news.google.com.ua 2558 | - news.google.com.uy 2559 | - news.google.com.vc 2560 | - news.google.com.vn 2561 | - news.google.cv 2562 | - news.google.cz 2563 | - news.google.de 2564 | - news.google.dj 2565 | - news.google.dk 2566 | - news.google.dm 2567 | - news.google.dz 2568 | - news.google.ee 2569 | - news.google.es 2570 | - news.google.fi 2571 | - news.google.fm 2572 | - news.google.fr 2573 | - news.google.ga 2574 | - news.google.gd 2575 | - news.google.ge 2576 | - news.google.gf 2577 | - news.google.gg 2578 | - news.google.gl 2579 | - news.google.gm 2580 | - news.google.gp 2581 | - news.google.gr 2582 | - news.google.gy 2583 | - news.google.hn 2584 | - news.google.hr 2585 | - news.google.ht 2586 | - news.google.hu 2587 | - news.google.ie 2588 | - news.google.im 2589 | - news.google.io 2590 | - news.google.iq 2591 | - news.google.is 2592 | - news.google.it 2593 | - news.google.it.ao 2594 | - news.google.je 2595 | - news.google.jo 2596 | - news.google.kg 2597 | - news.google.ki 2598 | - news.google.kz 2599 | - news.google.la 2600 | - news.google.li 2601 | - news.google.lk 2602 | - news.google.lt 2603 | - news.google.lu 2604 | - news.google.lv 2605 | - news.google.md 2606 | - news.google.me 2607 | - news.google.mg 2608 | - news.google.mk 2609 | - news.google.ml 2610 | - news.google.mn 2611 | - news.google.ms 2612 | - news.google.mu 2613 | - news.google.mv 2614 | - news.google.mw 2615 | - news.google.ne 2616 | - news.google.nl 2617 | - news.google.no 2618 | - news.google.nr 2619 | - news.google.nu 2620 | - news.google.pl 2621 | - news.google.pn 2622 | - news.google.ps 2623 | - news.google.pt 2624 | - news.google.ro 2625 | - news.google.rs 2626 | - news.google.ru 2627 | - news.google.rw 2628 | - news.google.sc 2629 | - news.google.se 2630 | - news.google.sh 2631 | - news.google.si 2632 | - news.google.sk 2633 | - news.google.sm 2634 | - news.google.sn 2635 | - news.google.so 2636 | - news.google.st 2637 | - news.google.td 2638 | - news.google.tg 2639 | - news.google.tk 2640 | - news.google.tl 2641 | - news.google.tm 2642 | - news.google.to 2643 | - news.google.tt 2644 | - news.google.us 2645 | - news.google.vg 2646 | - news.google.vu 2647 | - news.google.ws 2648 | 2649 | Google Product Search: 2650 | parameters: 2651 | - q 2652 | domains: 2653 | - google.ac/products 2654 | - google.ad/products 2655 | - google.ae/products 2656 | - google.am/products 2657 | - google.as/products 2658 | - google.at/products 2659 | - google.az/products 2660 | - google.ba/products 2661 | - google.be/products 2662 | - google.bf/products 2663 | - google.bg/products 2664 | - google.bi/products 2665 | - google.bj/products 2666 | - google.bs/products 2667 | - google.by/products 2668 | - google.ca/products 2669 | - google.cat/products 2670 | - google.cc/products 2671 | - google.cd/products 2672 | - google.cf/products 2673 | - google.cg/products 2674 | - google.ch/products 2675 | - google.ci/products 2676 | - google.cl/products 2677 | - google.cm/products 2678 | - google.cn/products 2679 | - google.co.bw/products 2680 | - google.co.ck/products 2681 | - google.co.cr/products 2682 | - google.co.id/products 2683 | - google.co.il/products 2684 | - google.co.in/products 2685 | - google.co.jp/products 2686 | - google.co.ke/products 2687 | - google.co.kr/products 2688 | - google.co.ls/products 2689 | - google.co.ma/products 2690 | - google.co.mz/products 2691 | - google.co.nz/products 2692 | - google.co.th/products 2693 | - google.co.tz/products 2694 | - google.co.ug/products 2695 | - google.co.uk/products 2696 | - google.co.uz/products 2697 | - google.co.ve/products 2698 | - google.co.vi/products 2699 | - google.co.za/products 2700 | - google.co.zm/products 2701 | - google.co.zw/products 2702 | - google.com/products 2703 | - google.com.af/products 2704 | - google.com.ag/products 2705 | - google.com.ai/products 2706 | - google.com.ar/products 2707 | - google.com.au/products 2708 | - google.com.bd/products 2709 | - google.com.bh/products 2710 | - google.com.bn/products 2711 | - google.com.bo/products 2712 | - google.com.br/products 2713 | - google.com.by/products 2714 | - google.com.bz/products 2715 | - google.com.co/products 2716 | - google.com.cu/products 2717 | - google.com.cy/products 2718 | - google.com.do/products 2719 | - google.com.ec/products 2720 | - google.com.eg/products 2721 | - google.com.et/products 2722 | - google.com.fj/products 2723 | - google.com.gh/products 2724 | - google.com.gi/products 2725 | - google.com.gt/products 2726 | - google.com.hk/products 2727 | - google.com.jm/products 2728 | - google.com.kh/products 2729 | - google.com.kw/products 2730 | - google.com.lb/products 2731 | - google.com.lc/products 2732 | - google.com.ly/products 2733 | - google.com.mt/products 2734 | - google.com.mx/products 2735 | - google.com.my/products 2736 | - google.com.na/products 2737 | - google.com.nf/products 2738 | - google.com.ng/products 2739 | - google.com.ni/products 2740 | - google.com.np/products 2741 | - google.com.om/products 2742 | - google.com.pa/products 2743 | - google.com.pe/products 2744 | - google.com.ph/products 2745 | - google.com.pk/products 2746 | - google.com.pr/products 2747 | - google.com.py/products 2748 | - google.com.qa/products 2749 | - google.com.sa/products 2750 | - google.com.sb/products 2751 | - google.com.sg/products 2752 | - google.com.sl/products 2753 | - google.com.sv/products 2754 | - google.com.tj/products 2755 | - google.com.tn/products 2756 | - google.com.tr/products 2757 | - google.com.tw/products 2758 | - google.com.ua/products 2759 | - google.com.uy/products 2760 | - google.com.vc/products 2761 | - google.com.vn/products 2762 | - google.cv/products 2763 | - google.cz/products 2764 | - google.de/products 2765 | - google.dj/products 2766 | - google.dk/products 2767 | - google.dm/products 2768 | - google.dz/products 2769 | - google.ee/products 2770 | - google.es/products 2771 | - google.fi/products 2772 | - google.fm/products 2773 | - google.fr/products 2774 | - google.ga/products 2775 | - google.gd/products 2776 | - google.ge/products 2777 | - google.gf/products 2778 | - google.gg/products 2779 | - google.gl/products 2780 | - google.gm/products 2781 | - google.gp/products 2782 | - google.gr/products 2783 | - google.gy/products 2784 | - google.hn/products 2785 | - google.hr/products 2786 | - google.ht/products 2787 | - google.hu/products 2788 | - google.ie/products 2789 | - google.im/products 2790 | - google.io/products 2791 | - google.iq/products 2792 | - google.is/products 2793 | - google.it/products 2794 | - google.it.ao/products 2795 | - google.je/products 2796 | - google.jo/products 2797 | - google.kg/products 2798 | - google.ki/products 2799 | - google.kz/products 2800 | - google.la/products 2801 | - google.li/products 2802 | - google.lk/products 2803 | - google.lt/products 2804 | - google.lu/products 2805 | - google.lv/products 2806 | - google.md/products 2807 | - google.me/products 2808 | - google.mg/products 2809 | - google.mk/products 2810 | - google.ml/products 2811 | - google.mn/products 2812 | - google.ms/products 2813 | - google.mu/products 2814 | - google.mv/products 2815 | - google.mw/products 2816 | - google.ne/products 2817 | - google.nl/products 2818 | - google.no/products 2819 | - google.nr/products 2820 | - google.nu/products 2821 | - google.pl/products 2822 | - google.pn/products 2823 | - google.ps/products 2824 | - google.pt/products 2825 | - google.ro/products 2826 | - google.rs/products 2827 | - google.ru/products 2828 | - google.rw/products 2829 | - google.sc/products 2830 | - google.se/products 2831 | - google.sh/products 2832 | - google.si/products 2833 | - google.sk/products 2834 | - google.sm/products 2835 | - google.sn/products 2836 | - google.so/products 2837 | - google.st/products 2838 | - google.td/products 2839 | - google.tg/products 2840 | - google.tk/products 2841 | - google.tl/products 2842 | - google.tm/products 2843 | - google.to/products 2844 | - google.tt/products 2845 | - google.us/products 2846 | - google.vg/products 2847 | - google.vu/products 2848 | - google.ws/products 2849 | - www.google.ac/products 2850 | - www.google.ad/products 2851 | - www.google.ae/products 2852 | - www.google.am/products 2853 | - www.google.as/products 2854 | - www.google.at/products 2855 | - www.google.az/products 2856 | - www.google.ba/products 2857 | - www.google.be/products 2858 | - www.google.bf/products 2859 | - www.google.bg/products 2860 | - www.google.bi/products 2861 | - www.google.bj/products 2862 | - www.google.bs/products 2863 | - www.google.by/products 2864 | - www.google.ca/products 2865 | - www.google.cat/products 2866 | - www.google.cc/products 2867 | - www.google.cd/products 2868 | - www.google.cf/products 2869 | - www.google.cg/products 2870 | - www.google.ch/products 2871 | - www.google.ci/products 2872 | - www.google.cl/products 2873 | - www.google.cm/products 2874 | - www.google.cn/products 2875 | - www.google.co.bw/products 2876 | - www.google.co.ck/products 2877 | - www.google.co.cr/products 2878 | - www.google.co.id/products 2879 | - www.google.co.il/products 2880 | - www.google.co.in/products 2881 | - www.google.co.jp/products 2882 | - www.google.co.ke/products 2883 | - www.google.co.kr/products 2884 | - www.google.co.ls/products 2885 | - www.google.co.ma/products 2886 | - www.google.co.mz/products 2887 | - www.google.co.nz/products 2888 | - www.google.co.th/products 2889 | - www.google.co.tz/products 2890 | - www.google.co.ug/products 2891 | - www.google.co.uk/products 2892 | - www.google.co.uz/products 2893 | - www.google.co.ve/products 2894 | - www.google.co.vi/products 2895 | - www.google.co.za/products 2896 | - www.google.co.zm/products 2897 | - www.google.co.zw/products 2898 | - www.google.com/products 2899 | - www.google.com.af/products 2900 | - www.google.com.ag/products 2901 | - www.google.com.ai/products 2902 | - www.google.com.ar/products 2903 | - www.google.com.au/products 2904 | - www.google.com.bd/products 2905 | - www.google.com.bh/products 2906 | - www.google.com.bn/products 2907 | - www.google.com.bo/products 2908 | - www.google.com.br/products 2909 | - www.google.com.by/products 2910 | - www.google.com.bz/products 2911 | - www.google.com.co/products 2912 | - www.google.com.cu/products 2913 | - www.google.com.cy/products 2914 | - www.google.com.do/products 2915 | - www.google.com.ec/products 2916 | - www.google.com.eg/products 2917 | - www.google.com.et/products 2918 | - www.google.com.fj/products 2919 | - www.google.com.gh/products 2920 | - www.google.com.gi/products 2921 | - www.google.com.gt/products 2922 | - www.google.com.hk/products 2923 | - www.google.com.jm/products 2924 | - www.google.com.kh/products 2925 | - www.google.com.kw/products 2926 | - www.google.com.lb/products 2927 | - www.google.com.lc/products 2928 | - www.google.com.ly/products 2929 | - www.google.com.mt/products 2930 | - www.google.com.mx/products 2931 | - www.google.com.my/products 2932 | - www.google.com.na/products 2933 | - www.google.com.nf/products 2934 | - www.google.com.ng/products 2935 | - www.google.com.ni/products 2936 | - www.google.com.np/products 2937 | - www.google.com.om/products 2938 | - www.google.com.pa/products 2939 | - www.google.com.pe/products 2940 | - www.google.com.ph/products 2941 | - www.google.com.pk/products 2942 | - www.google.com.pr/products 2943 | - www.google.com.py/products 2944 | - www.google.com.qa/products 2945 | - www.google.com.sa/products 2946 | - www.google.com.sb/products 2947 | - www.google.com.sg/products 2948 | - www.google.com.sl/products 2949 | - www.google.com.sv/products 2950 | - www.google.com.tj/products 2951 | - www.google.com.tn/products 2952 | - www.google.com.tr/products 2953 | - www.google.com.tw/products 2954 | - www.google.com.ua/products 2955 | - www.google.com.uy/products 2956 | - www.google.com.vc/products 2957 | - www.google.com.vn/products 2958 | - www.google.cv/products 2959 | - www.google.cz/products 2960 | - www.google.de/products 2961 | - www.google.dj/products 2962 | - www.google.dk/products 2963 | - www.google.dm/products 2964 | - www.google.dz/products 2965 | - www.google.ee/products 2966 | - www.google.es/products 2967 | - www.google.fi/products 2968 | - www.google.fm/products 2969 | - www.google.fr/products 2970 | - www.google.ga/products 2971 | - www.google.gd/products 2972 | - www.google.ge/products 2973 | - www.google.gf/products 2974 | - www.google.gg/products 2975 | - www.google.gl/products 2976 | - www.google.gm/products 2977 | - www.google.gp/products 2978 | - www.google.gr/products 2979 | - www.google.gy/products 2980 | - www.google.hn/products 2981 | - www.google.hr/products 2982 | - www.google.ht/products 2983 | - www.google.hu/products 2984 | - www.google.ie/products 2985 | - www.google.im/products 2986 | - www.google.io/products 2987 | - www.google.iq/products 2988 | - www.google.is/products 2989 | - www.google.it/products 2990 | - www.google.it.ao/products 2991 | - www.google.je/products 2992 | - www.google.jo/products 2993 | - www.google.kg/products 2994 | - www.google.ki/products 2995 | - www.google.kz/products 2996 | - www.google.la/products 2997 | - www.google.li/products 2998 | - www.google.lk/products 2999 | - www.google.lt/products 3000 | - www.google.lu/products 3001 | - www.google.lv/products 3002 | - www.google.md/products 3003 | - www.google.me/products 3004 | - www.google.mg/products 3005 | - www.google.mk/products 3006 | - www.google.ml/products 3007 | - www.google.mn/products 3008 | - www.google.ms/products 3009 | - www.google.mu/products 3010 | - www.google.mv/products 3011 | - www.google.mw/products 3012 | - www.google.ne/products 3013 | - www.google.nl/products 3014 | - www.google.no/products 3015 | - www.google.nr/products 3016 | - www.google.nu/products 3017 | - www.google.pl/products 3018 | - www.google.pn/products 3019 | - www.google.ps/products 3020 | - www.google.pt/products 3021 | - www.google.ro/products 3022 | - www.google.rs/products 3023 | - www.google.ru/products 3024 | - www.google.rw/products 3025 | - www.google.sc/products 3026 | - www.google.se/products 3027 | - www.google.sh/products 3028 | - www.google.si/products 3029 | - www.google.sk/products 3030 | - www.google.sm/products 3031 | - www.google.sn/products 3032 | - www.google.so/products 3033 | - www.google.st/products 3034 | - www.google.td/products 3035 | - www.google.tg/products 3036 | - www.google.tk/products 3037 | - www.google.tl/products 3038 | - www.google.tm/products 3039 | - www.google.to/products 3040 | - www.google.tt/products 3041 | - www.google.us/products 3042 | - www.google.vg/products 3043 | - www.google.vu/products 3044 | - www.google.ws/products 3045 | 3046 | Google Video: 3047 | parameters: 3048 | - q 3049 | domains: 3050 | - video.google.com 3051 | 3052 | Goyellow.de: 3053 | parameters: 3054 | - MDN 3055 | domains: 3056 | - www.goyellow.de 3057 | 3058 | Gule Sider: 3059 | parameters: 3060 | - q 3061 | domains: 3062 | - www.gulesider.no 3063 | 3064 | HighBeam: 3065 | parameters: 3066 | - q 3067 | domains: 3068 | - www.highbeam.com 3069 | 3070 | Hit-Parade: 3071 | parameters: 3072 | - p7 3073 | domains: 3074 | - req.-hit-parade.com 3075 | - class.hit-parade.com 3076 | - www.hit-parade.com 3077 | 3078 | Holmes: 3079 | parameters: 3080 | - q 3081 | domains: 3082 | - holmes.ge 3083 | 3084 | Hooseek.com: 3085 | parameters: 3086 | - recherche 3087 | domains: 3088 | - www.hooseek.com 3089 | 3090 | Hotbot: 3091 | parameters: 3092 | - query 3093 | domains: 3094 | - www.hotbot.com 3095 | 3096 | Icerockeet: 3097 | parameters: 3098 | - q 3099 | domains: 3100 | - blogs.icerocket.com 3101 | 3102 | ICQ: 3103 | parameters: 3104 | - q 3105 | domains: 3106 | - www.icq.com 3107 | - search.icq.com 3108 | 3109 | Ilse: 3110 | parameters: 3111 | - search_for 3112 | domains: 3113 | - www.ilse.nl 3114 | 3115 | Inbox.com: 3116 | parameters: 3117 | - q 3118 | domains: 3119 | - inbox.com/search/ 3120 | 3121 | Indeed: 3122 | domains: 3123 | - de.indeed.com 3124 | - at.indeed.com 3125 | - fr.indeed.com 3126 | - it.indeed.com 3127 | - ch.indeed.com 3128 | - au.indeed.com 3129 | 3130 | InfoSpace: 3131 | parameters: 3132 | - q 3133 | - s 3134 | domains: 3135 | - infospace.com 3136 | - dogpile.com 3137 | - www.dogpile.com 3138 | - metacrawler.com 3139 | - webfetch.com 3140 | - webcrawler.com 3141 | - search.kiwee.com 3142 | # powered by InfoSpace 3143 | - isearch.babylon.com 3144 | - start.facemoods.com 3145 | - search.magnetic.com 3146 | - search.searchcompletion.com 3147 | - clusty.com 3148 | 3149 | Flyingbird: 3150 | parameters: 3151 | - q 3152 | domains: 3153 | - inspsearch.com 3154 | - viview.inspsearch.com 3155 | 3156 | Interia: 3157 | parameters: 3158 | - q 3159 | domains: 3160 | - www.google.interia.pl 3161 | 3162 | I-play: 3163 | parameters: 3164 | - q 3165 | domains: 3166 | - start.iplay.com 3167 | 3168 | I.ua: 3169 | parameters: 3170 | - q 3171 | domains: 3172 | - search.i.ua 3173 | 3174 | IXquick: 3175 | parameters: 3176 | - query 3177 | domains: 3178 | - ixquick.com 3179 | - www.eu.ixquick.com 3180 | - ixquick.de 3181 | - www.ixquick.de 3182 | - us.ixquick.com 3183 | - s1.us.ixquick.com 3184 | - s2.us.ixquick.com 3185 | - s3.us.ixquick.com 3186 | - s4.us.ixquick.com 3187 | - s5.us.ixquick.com 3188 | - eu.ixquick.com 3189 | - s8-eu.ixquick.com 3190 | - s1-eu.ixquick.de 3191 | 3192 | Jyxo: 3193 | parameters: 3194 | - q 3195 | domains: 3196 | - jyxo.1188.cz 3197 | 3198 | Jungle Spider: 3199 | parameters: 3200 | - q 3201 | domains: 3202 | - www.jungle-spider.de 3203 | 3204 | Jungle Key: 3205 | parameters: 3206 | - query 3207 | domains: 3208 | - junglekey.com 3209 | - junglekey.fr 3210 | 3211 | Kataweb: 3212 | parameters: 3213 | - q 3214 | domains: 3215 | - www.kataweb.it 3216 | 3217 | Kvasir: 3218 | parameters: 3219 | - q 3220 | domains: 3221 | - www.kvasir.no 3222 | 3223 | kununu: 3224 | parameters: 3225 | - q 3226 | domains: 3227 | - kununu.com 3228 | 3229 | Latne: 3230 | parameters: 3231 | - q 3232 | domains: 3233 | - www.latne.lv 3234 | 3235 | La Toile Du Quebec Via Google: 3236 | parameters: 3237 | - q 3238 | domains: 3239 | - www.toile.com 3240 | - web.toile.com 3241 | 3242 | Lilo: 3243 | parameters: 3244 | - q 3245 | domains: 3246 | - search.lilo.org 3247 | 3248 | Liveinternet: 3249 | parameters: 3250 | - q 3251 | domains: 3252 | - liveinternet.ru 3253 | 3254 | Looksmart: 3255 | parameters: 3256 | - key 3257 | domains: 3258 | - www.looksmart.com 3259 | 3260 | Lo.st: 3261 | parameters: 3262 | - x_query 3263 | domains: 3264 | - lo.st 3265 | 3266 | Lycos: 3267 | parameters: 3268 | - query 3269 | domains: 3270 | - search.lycos.com 3271 | - www.lycos.com 3272 | - lycos.com 3273 | 3274 | maailm: 3275 | parameters: 3276 | - tekst 3277 | domains: 3278 | - www.maailm.com 3279 | 3280 | Mail.ru: 3281 | parameters: 3282 | - q 3283 | domains: 3284 | - mail.ru 3285 | - m.mail.ru 3286 | - go.mail.ru 3287 | 3288 | Mamma: 3289 | parameters: 3290 | - query 3291 | domains: 3292 | - www.mamma.com 3293 | - mamma75.mamma.com 3294 | 3295 | Marktplaats: 3296 | parameters: 3297 | - query 3298 | domains: 3299 | - www.marktplaats.nl 3300 | 3301 | Maxwebsearch: 3302 | parameters: 3303 | - query 3304 | domains: 3305 | - maxwebsearch.com 3306 | 3307 | Meta.ua: 3308 | parameters: 3309 | - q 3310 | domains: 3311 | - meta.ua 3312 | 3313 | MetaCrawler.de: 3314 | parameters: 3315 | - qry 3316 | domains: 3317 | - s1.metacrawler.de 3318 | - s2.metacrawler.de 3319 | - s3.metacrawler.de 3320 | 3321 | Metager: 3322 | parameters: 3323 | - eingabe 3324 | domains: 3325 | - meta.rrzn.uni-hannover.de 3326 | - www.metager.de 3327 | 3328 | Metager2: 3329 | parameters: 3330 | - q 3331 | domains: 3332 | - metager2.de 3333 | 3334 | Meinestadt: 3335 | parameters: 3336 | - words 3337 | domains: 3338 | - www.meinestadt.de 3339 | 3340 | Mister Wong: 3341 | parameters: 3342 | - Keywords 3343 | domains: 3344 | - www.mister-wong.com 3345 | - www.mister-wong.de 3346 | 3347 | Monster: 3348 | parameters: 3349 | - q 3350 | domains: 3351 | - www.monster.be 3352 | - www.monster.cz 3353 | - www.monster.de 3354 | - www.monster.fi 3355 | - www.monster.fr 3356 | - www.monster.ie 3357 | - www.monster.it 3358 | - www.monster.lu 3359 | - www.monster.ch 3360 | - www.monster.co.uk 3361 | 3362 | Monstercrawler: 3363 | parameters: 3364 | - qry 3365 | domains: 3366 | - www.monstercrawler.com 3367 | 3368 | Mozbot: 3369 | parameters: 3370 | - q 3371 | domains: 3372 | - www.mozbot.fr 3373 | - www.mozbot.co.uk 3374 | - www.mozbot.com 3375 | 3376 | El Mundo: 3377 | parameters: 3378 | - q 3379 | domains: 3380 | - ariadna.elmundo.es 3381 | 3382 | MySearch: 3383 | parameters: 3384 | - searchfor 3385 | - searchFor 3386 | domains: 3387 | - mysearch.com 3388 | - www.mysearch.com 3389 | - ms114.mysearch.com 3390 | - ms146.mysearch.com 3391 | - kf.mysearch.myway.com 3392 | - ki.mysearch.myway.com 3393 | - search.myway.com 3394 | - search.mywebsearch.com 3395 | 3396 | Najdi: 3397 | parameters: 3398 | - q 3399 | domains: 3400 | - www.najdi.si 3401 | 3402 | Nate: 3403 | parameters: 3404 | - q 3405 | domains: 3406 | - search.nate.com 3407 | 3408 | Naver: 3409 | parameters: 3410 | - query 3411 | domains: 3412 | - search.naver.com 3413 | 3414 | Naver Images: 3415 | parameters: 3416 | - query 3417 | domains: 3418 | - image.search.naver.com 3419 | - imagesearch.naver.com 3420 | 3421 | Needtofind: 3422 | parameters: 3423 | - searchfor 3424 | domains: 3425 | - ko.search.need2find.com 3426 | 3427 | Neti: 3428 | parameters: 3429 | - query 3430 | domains: 3431 | - www.neti.ee 3432 | 3433 | Nifty: 3434 | parameters: 3435 | - q 3436 | domains: 3437 | - search.nifty.com 3438 | 3439 | Nigma: 3440 | parameters: 3441 | - s 3442 | domains: 3443 | - nigma.ru 3444 | 3445 | Onet: 3446 | parameters: 3447 | - qt 3448 | domains: 3449 | - szukaj.onet.pl 3450 | 3451 | Online.no: 3452 | parameters: 3453 | - q 3454 | domains: 3455 | - online.no 3456 | 3457 | Opplysningen 1881: 3458 | parameters: 3459 | - Query 3460 | domains: 3461 | - www.1881.no 3462 | 3463 | Orange: 3464 | parameters: 3465 | - q 3466 | - kw 3467 | domains: 3468 | - busca.orange.es 3469 | - search.orange.co.uk 3470 | - lemoteur.orange.fr 3471 | 3472 | Paperball: 3473 | parameters: 3474 | - q 3475 | domains: 3476 | - www.paperball.de 3477 | 3478 | PeoplePC: 3479 | parameters: 3480 | - q 3481 | domains: 3482 | - search.peoplepc.com 3483 | 3484 | Picsearch: 3485 | parameters: 3486 | - q 3487 | domains: 3488 | - www.picsearch.com 3489 | 3490 | Plazoo: 3491 | parameters: 3492 | - q 3493 | domains: 3494 | - www.plazoo.com 3495 | 3496 | Poisk.ru: 3497 | parameters: 3498 | - q 3499 | domains: 3500 | - poisk.ru 3501 | 3502 | PriceRunner: 3503 | parameters: 3504 | - q 3505 | domains: 3506 | - www.pricerunner.co.uk 3507 | 3508 | qip: 3509 | parameters: 3510 | - query 3511 | domains: 3512 | - search.qip.ru 3513 | 3514 | Qualigo: 3515 | parameters: 3516 | - q 3517 | domains: 3518 | - www.qualigo.at 3519 | - www.qualigo.ch 3520 | - www.qualigo.de 3521 | - www.qualigo.nl 3522 | 3523 | Qwant: 3524 | parameters: 3525 | - q 3526 | domains: 3527 | - www.qwant.com 3528 | - lite.qwant.com 3529 | 3530 | Rakuten: 3531 | parameters: 3532 | - qt 3533 | domains: 3534 | - websearch.rakuten.co.jp 3535 | 3536 | Rambler: 3537 | parameters: 3538 | - query 3539 | - words 3540 | domains: 3541 | - nova.rambler.ru 3542 | 3543 | RPMFind: 3544 | parameters: 3545 | - query 3546 | domains: 3547 | - rpmfind.net 3548 | - fr2.rpmfind.net 3549 | 3550 | Road Runner Search: 3551 | parameters: 3552 | - q 3553 | domains: 3554 | - search.rr.com 3555 | 3556 | Sapo: 3557 | parameters: 3558 | - q 3559 | domains: 3560 | - pesquisa.sapo.pt 3561 | 3562 | # Add Scour.com 3563 | 3564 | Search This: 3565 | parameters: 3566 | - q 3567 | domains: 3568 | - www.searchthis.com 3569 | 3570 | Search.com: 3571 | parameters: 3572 | - q 3573 | domains: 3574 | - www.search.com 3575 | 3576 | Search.ch: 3577 | parameters: 3578 | - q 3579 | domains: 3580 | - www.search.ch 3581 | 3582 | Searchalot: 3583 | parameters: 3584 | - q 3585 | domains: 3586 | - searchalot.com 3587 | 3588 | SearchCanvas: 3589 | parameters: 3590 | - q 3591 | domains: 3592 | - www.searchcanvas.com 3593 | 3594 | Searchy: 3595 | parameters: 3596 | - q 3597 | domains: 3598 | - www.searchy.co.uk 3599 | 3600 | # Add setooz.com 3601 | 3602 | Seznam: 3603 | parameters: 3604 | - q 3605 | domains: 3606 | - search.seznam.cz 3607 | 3608 | Sharelook: 3609 | parameters: 3610 | - keyword 3611 | domains: 3612 | - www.sharelook.fr 3613 | 3614 | Skynet: 3615 | parameters: 3616 | - q 3617 | domains: 3618 | - www.skynet.be 3619 | 3620 | The Smart Search: 3621 | parameters: 3622 | - q 3623 | domains: 3624 | - thesmartsearch.net 3625 | - www.thesmartsearch.net 3626 | 3627 | Sogou: 3628 | parameters: 3629 | - query 3630 | - w 3631 | domains: 3632 | - www.sougou.com 3633 | - www.soso.com 3634 | 3635 | Softonic: 3636 | parameters: 3637 | - q 3638 | domains: 3639 | - search.softonic.com 3640 | 3641 | SoSoDesk: 3642 | parameters: 3643 | - q 3644 | domains: 3645 | - sosodesktop.com 3646 | - search.sosodesktop.com 3647 | 3648 | Shenma: 3649 | parameters: 3650 | - q 3651 | domains: 3652 | - so.m.sm.cn 3653 | - yz.m.sm.cn 3654 | - m.sm.cn 3655 | - quark.sm.cn 3656 | - m.sp.sm.cn 3657 | - m.yz2.sm.cn 3658 | - m.yz.sm.cn 3659 | 3660 | Snapdo: 3661 | parameters: 3662 | - q 3663 | domains: 3664 | - search.snapdo.com 3665 | 3666 | Startpagina: 3667 | parameters: 3668 | - q 3669 | domains: 3670 | - startgoogle.startpagina.nl 3671 | 3672 | Startsiden: 3673 | parameters: 3674 | - q 3675 | domains: 3676 | - www.startsiden.no 3677 | 3678 | StepStone: 3679 | domains: 3680 | - www.stepstone.de 3681 | - www.stepstone.at 3682 | - www.stepstone.be 3683 | - www.stepstone.fr 3684 | - www.stepstone.nl 3685 | - www.stepstone.dk 3686 | - www.stepstone.se 3687 | 3688 | suche.info: 3689 | parameters: 3690 | - q 3691 | domains: 3692 | - suche.info 3693 | 3694 | Suchmaschine.com: 3695 | parameters: 3696 | - suchstr 3697 | domains: 3698 | - www.suchmaschine.com 3699 | 3700 | Suchnase: 3701 | parameters: 3702 | - q 3703 | domains: 3704 | - www.suchnase.de 3705 | 3706 | TalkTalk: 3707 | parameters: 3708 | - query 3709 | domains: 3710 | - www.talktalk.co.uk 3711 | 3712 | Technorati: 3713 | parameters: 3714 | - q 3715 | domains: 3716 | - technorati.com 3717 | 3718 | Telstra: 3719 | parameters: 3720 | - find 3721 | domains: 3722 | - search.media.telstra.com.au 3723 | 3724 | Teoma: 3725 | parameters: 3726 | - q 3727 | domains: 3728 | - www.teoma.com 3729 | 3730 | Terra: 3731 | parameters: 3732 | - query 3733 | domains: 3734 | - buscador.terra.es 3735 | - buscador.terra.cl 3736 | - buscador.terra.com.br 3737 | 3738 | Tiscali: 3739 | parameters: 3740 | - q 3741 | - key 3742 | domains: 3743 | - search.tiscali.it 3744 | - search-dyn.tiscali.it 3745 | - hledani.tiscali.cz 3746 | 3747 | Tixuma: 3748 | parameters: 3749 | - sc 3750 | domains: 3751 | - www.tixuma.de 3752 | 3753 | T-Online: 3754 | parameters: 3755 | - q 3756 | domains: 3757 | - suche.t-online.de 3758 | - brisbane.t-online.de 3759 | - navigationshilfe.t-online.de 3760 | 3761 | Toolbarhome: 3762 | parameters: 3763 | - q 3764 | domains: 3765 | - www.toolbarhome.com 3766 | - vshare.toolbarhome.com 3767 | 3768 | Trouvez.com: 3769 | parameters: 3770 | - query 3771 | domains: 3772 | - www.trouvez.com 3773 | 3774 | TrovaRapido: 3775 | parameters: 3776 | - q 3777 | domains: 3778 | - www.trovarapido.com 3779 | 3780 | Trusted-Search: 3781 | parameters: 3782 | - w 3783 | domains: 3784 | - www.trusted--search.com 3785 | 3786 | Tut.by: 3787 | parameters: 3788 | - query 3789 | domains: 3790 | - search.tut.by 3791 | 3792 | Twingly: 3793 | parameters: 3794 | - q 3795 | domains: 3796 | - www.twingly.com 3797 | 3798 | UKR.net: 3799 | parameters: 3800 | - q 3801 | domains: 3802 | - search.ukr.net 3803 | 3804 | uol.com.br: 3805 | parameters: 3806 | - q 3807 | domains: 3808 | - busca.uol.com.br 3809 | 3810 | URL.ORGanizier: 3811 | parameters: 3812 | - q 3813 | domains: 3814 | - www.url.org 3815 | 3816 | Vinden: 3817 | parameters: 3818 | - q 3819 | domains: 3820 | - www.vinden.nl 3821 | 3822 | Vindex: 3823 | parameters: 3824 | - search_for 3825 | domains: 3826 | - www.vindex.nl 3827 | - search.vindex.nl 3828 | 3829 | Virgilio: 3830 | parameters: 3831 | - qs 3832 | domains: 3833 | - ricerca.virgilio.it 3834 | - ricercaimmagini.virgilio.it 3835 | - ricercavideo.virgilio.it 3836 | - ricercanews.virgilio.it 3837 | - mobile.virgilio.it 3838 | 3839 | Voila: 3840 | parameters: 3841 | - rdata 3842 | - kw 3843 | domains: 3844 | - search.ke.voila.fr 3845 | - www.lemoteur.fr 3846 | 3847 | Volny: 3848 | parameters: 3849 | - search 3850 | domains: 3851 | - web.volny.cz 3852 | 3853 | Walhello : 3854 | parameters: 3855 | - key 3856 | domains: 3857 | - www.walhello.info 3858 | - www.walhello.com 3859 | - www.walhello.de 3860 | - www.walhello.nl 3861 | 3862 | Web.de: 3863 | parameters: 3864 | - su 3865 | domains: 3866 | - suche.web.de 3867 | 3868 | Web.nl: 3869 | parameters: 3870 | - zoekwoord 3871 | domains: 3872 | - www.web.nl 3873 | 3874 | Weborama: 3875 | parameters: 3876 | - QUERY 3877 | domains: 3878 | - www.weborama.com 3879 | 3880 | WebSearch: 3881 | parameters: 3882 | - qkw 3883 | - q 3884 | domains: 3885 | - www.websearch.com 3886 | 3887 | Winamp: 3888 | parameters: 3889 | - q 3890 | domains: 3891 | - search.winamp.com 3892 | 3893 | Witch: 3894 | parameters: 3895 | - search 3896 | domains: 3897 | - www.witch.de 3898 | 3899 | Wirtualna Polska: 3900 | parameters: 3901 | - szukaj 3902 | domains: 3903 | - szukaj.wp.pl 3904 | 3905 | WWW: 3906 | parameters: 3907 | - query 3908 | domains: 3909 | - search.www.ee 3910 | 3911 | X-recherche: 3912 | parameters: 3913 | - MOTS 3914 | domains: 3915 | - www.x-recherche.com 3916 | 3917 | Yahoo!: 3918 | parameters: 3919 | - p 3920 | - q 3921 | domains: 3922 | - search.yahoo.com 3923 | - yahoo.com 3924 | - ar.search.yahoo.com 3925 | - ar.yahoo.com 3926 | - au.search.yahoo.com 3927 | - au.yahoo.com 3928 | - br.search.yahoo.com 3929 | - br.yahoo.com 3930 | - ca.search.yahoo.com 3931 | - ca.yahoo.com 3932 | - cade.searchde.yahoo.com 3933 | - cade.yahoo.com 3934 | - chinese.searchinese.yahoo.com 3935 | - chinese.yahoo.com 3936 | - cn.search.yahoo.com 3937 | - cn.yahoo.com 3938 | - de.search.yahoo.com 3939 | - de.yahoo.com 3940 | - dk.search.yahoo.com 3941 | - dk.yahoo.com 3942 | - es.search.yahoo.com 3943 | - es.yahoo.com 3944 | - espanol.searchpanol.yahoo.com 3945 | - espanol.yahoo.com 3946 | - fr.search.yahoo.com 3947 | - fr.yahoo.com 3948 | - hk.search.yahoo.com 3949 | - hk.yahoo.com 3950 | - ie.search.yahoo.com 3951 | - ie.yahoo.com 3952 | - in.search.yahoo.com 3953 | - in.yahoo.com 3954 | - it.search.yahoo.com 3955 | - it.yahoo.com 3956 | - kr.search.yahoo.com 3957 | - kr.yahoo.com 3958 | - mx.search.yahoo.com 3959 | - mx.yahoo.com 3960 | - no.search.yahoo.com 3961 | - no.yahoo.com 3962 | - nz.search.yahoo.com 3963 | - nz.yahoo.com 3964 | - one.cn.yahoo.com 3965 | - one.searchn.yahoo.com 3966 | - qc.search.yahoo.com 3967 | - qc.yahoo.com 3968 | - ru.search.yahoo.com 3969 | - ru.yahoo.com 3970 | - se.search.yahoo.com 3971 | - se.yahoo.com 3972 | - search.searcharch.yahoo.com 3973 | - tw.search.yahoo.com 3974 | - tw.yahoo.com 3975 | - uk.search.yahoo.com 3976 | - uk.yahoo.com 3977 | - us.search.yahoo.com 3978 | - us.yahoo.com 3979 | - www.yahoo.co.jp 3980 | - search.yahoo.co.jp 3981 | # powered by Yahoo 3982 | - www.cercato.it 3983 | - search.offerbox.com 3984 | - ys.mirostart.com 3985 | 3986 | Yahoo! Images: 3987 | parameters: 3988 | - p 3989 | - q 3990 | domains: 3991 | - image.yahoo.cn 3992 | - images.search.yahoo.com 3993 | 3994 | Yam: 3995 | parameters: 3996 | - k 3997 | domains: 3998 | - search.yam.com 3999 | 4000 | Yandex: 4001 | parameters: 4002 | - text 4003 | domains: 4004 | - yandex.ru 4005 | - yandex.ua 4006 | - yandex.com 4007 | - yandex.by 4008 | - www.yandex.ru 4009 | - www.yandex.ua 4010 | - www.yandex.com 4011 | - www.yandex.by 4012 | - clck.yandex.ru 4013 | - clck.yandex.ua 4014 | - clck.yandex.com 4015 | - clck.yandex.by 4016 | 4017 | Yandex Images: 4018 | parameters: 4019 | - text 4020 | domains: 4021 | - images.yandex.ru 4022 | - images.yandex.ua 4023 | - images.yandex.com 4024 | - images.yandex.by 4025 | 4026 | Yasni: 4027 | parameters: 4028 | - query 4029 | domains: 4030 | - www.yasni.de 4031 | - www.yasni.com 4032 | - www.yasni.co.uk 4033 | - www.yasni.ch 4034 | - www.yasni.at 4035 | 4036 | Yatedo: 4037 | parameters: 4038 | - q 4039 | domains: 4040 | - www.yatedo.com 4041 | - www.yatedo.fr 4042 | 4043 | # Add Yellowmap: 4044 | 4045 | Yippy: 4046 | parameters: 4047 | - q 4048 | - query 4049 | domains: 4050 | - search.yippy.com 4051 | 4052 | YouGoo: 4053 | parameters: 4054 | - q 4055 | domains: 4056 | - www.yougoo.fr 4057 | 4058 | Zapmeta: 4059 | parameters: 4060 | - q 4061 | - query 4062 | domains: 4063 | - www.zapmeta.com 4064 | - www.zapmeta.nl 4065 | - www.zapmeta.de 4066 | - uk.zapmeta.com 4067 | 4068 | Zoek: 4069 | parameters: 4070 | - q 4071 | domains: 4072 | - www3.zoek.nl 4073 | 4074 | Zhongsou: 4075 | parameters: 4076 | - w 4077 | domains: 4078 | - p.zhongsou.com 4079 | 4080 | Zoeken: 4081 | parameters: 4082 | - q 4083 | domains: 4084 | - www.zoeken.nl 4085 | 4086 | Zoohoo: 4087 | parameters: 4088 | - q 4089 | domains: 4090 | - zoohoo.cz 4091 | 4092 | 4093 | 4094 | # ####################################################################################################### 4095 | # 4096 | # PAID MEDIA 4097 | 4098 | paid: 4099 | 4100 | Acuity Ads: 4101 | domains: 4102 | - acuityplatform.com 4103 | 4104 | Adform: 4105 | domains: 4106 | - adform.net 4107 | 4108 | ADFOX: 4109 | domains: 4110 | - adfox.ru 4111 | - www.adfox.ru 4112 | - ads.adfox.ru 4113 | - www.ads.adfox.ru 4114 | 4115 | Adition: 4116 | domains: 4117 | - adition.com 4118 | 4119 | AdNET: 4120 | domains: 4121 | - adnet.de 4122 | 4123 | AdRoll: 4124 | domains: 4125 | - adroll.com 4126 | 4127 | AdSpirit: 4128 | domains: 4129 | - adspirit.de 4130 | - rtbcity.com 4131 | - plusperformance.com 4132 | 4133 | AppNexus: 4134 | domains: 4135 | - ib.adnxs.com 4136 | - adnxs.com 4137 | - 247realmedia.com 4138 | 4139 | AudienceScience: 4140 | domains: 4141 | - wunderloop.net 4142 | 4143 | BidSwitch: 4144 | domains: 4145 | - bidswitch.net 4146 | 4147 | Casale Media: 4148 | domains: 4149 | - casalemedia.com 4150 | 4151 | Criteo: 4152 | domains: 4153 | - cas.jp.as.criteo.com 4154 | - cas.criteo.com 4155 | 4156 | Doubleclick: 4157 | domains: 4158 | - ad.doubleclick.net 4159 | - ad-apac.doubleclick.net 4160 | - s0.2mdn.net 4161 | - s1.2mdn.net 4162 | - dp.g.doubleclick.net 4163 | - pubads.g.doubleclick.net 4164 | 4165 | Eyeota: 4166 | domains: 4167 | - eyeota.net 4168 | 4169 | Flashtalking: 4170 | domains: 4171 | - flashtalking.com 4172 | - servedby.flashtalking.com 4173 | 4174 | Fluct: 4175 | domains: 4176 | - adingo.jp 4177 | 4178 | Google: 4179 | domains: 4180 | - www.googleadservices.com 4181 | - partner.googleadservices.com 4182 | - googleads.g.doubleclick.net 4183 | - tdsf.doubleclick.net 4184 | - tpc.googlesyndication.com 4185 | - safeframe.googlesyndication.com 4186 | - googleadservices.com 4187 | - imasdk.googleapis.com 4188 | - www.adsensecustomsearchads.com 4189 | - syndicatedsearch.goog 4190 | - pagead2.googlesyndication.com 4191 | 4192 | LifeStreet: 4193 | domains: 4194 | - lfstmedia.com 4195 | 4196 | LowerMyBills: 4197 | parameters: 4198 | - leadid 4199 | domains: 4200 | - lowermybills.com 4201 | 4202 | Jivox: 4203 | domains: 4204 | - jivox.com 4205 | 4206 | MicroAd: 4207 | domains: 4208 | - microad.jp 4209 | 4210 | Mixpo: 4211 | domains: 4212 | - mixpo.com 4213 | 4214 | Mozo: 4215 | domains: 4216 | - mozo.com.au 4217 | - a.mozo.com.au 4218 | 4219 | Neustar AdAdvisor: 4220 | domains: 4221 | - adadvisor.net 4222 | 4223 | ONE by AOL: 4224 | domains: 4225 | - nexage.com 4226 | 4227 | OpenX: 4228 | domains: 4229 | - us-ads.openx.net 4230 | - openx.net 4231 | - servedbyopenx.com 4232 | - openxenterprise.com 4233 | 4234 | Outbrain: 4235 | domains: 4236 | - paid.outbrain.com 4237 | 4238 | Plista: 4239 | domains: 4240 | - farm.plista.com 4241 | 4242 | Price.ru: 4243 | domains: 4244 | - price.ru 4245 | - v.price.ru 4246 | 4247 | PubMatic: 4248 | domains: 4249 | - sshowads.pubmatic.com 4250 | 4251 | Rubicon Project: 4252 | domains: 4253 | - optimized-by.rubiconproject.com 4254 | 4255 | Sizmek: 4256 | domains: 4257 | - bs.serving-sys.com 4258 | 4259 | Sociomantic Labs: 4260 | domains: 4261 | - sociomantic.com 4262 | 4263 | Sonobi: 4264 | domains: 4265 | - sonobi.com 4266 | 4267 | Sovrn: 4268 | domains: 4269 | - lijit.com 4270 | 4271 | SteelHouse: 4272 | domains: 4273 | - steelhousemedia.com 4274 | 4275 | StickyADS.tv: 4276 | domains: 4277 | - stickyadstv.com 4278 | - sfx.stickyadstv.com 4279 | 4280 | Taboola: 4281 | domains: 4282 | - trc.taboola.com 4283 | - api.taboola.com 4284 | - taboola.com 4285 | 4286 | Torg.Mail.ru: 4287 | domains: 4288 | - torg.mail.ru 4289 | 4290 | Tribal Fusion: 4291 | domains: 4292 | - cdnx.tribalfusion.com 4293 | 4294 | White Pages: 4295 | domains: 4296 | - www.whitepages.com.au 4297 | - mobile.whitepages.com.au 4298 | 4299 | Yandex.Direct: 4300 | domains: 4301 | - an.yandex.ru 4302 | - yabs.yandex.ru 4303 | - yabs.yandex.ua 4304 | - yabs.yandex.com 4305 | - yabs.yandex.by 4306 | 4307 | Yandex.Market: 4308 | domains: 4309 | - market.yandex.ru 4310 | - m.market.yandex.ru 4311 | 4312 | Yieldmo: 4313 | domains: 4314 | - yieldmo.com 4315 | 4316 | ZEDO: 4317 | domains: 4318 | - zedo.com 4319 | - z1.zedo.com 4320 | --------------------------------------------------------------------------------