js/src/tests/js1_5/Regress/regress-89443.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 /*
michael@0 7 * Date: 2001-07-12
michael@0 8 *
michael@0 9 * SUMMARY: Regression test for bug 89443
michael@0 10 * See http://bugzilla.mozilla.org/show_bug.cgi?id=89443
michael@0 11 *
michael@0 12 * Just seeing if this script will compile without stack overflow.
michael@0 13 */
michael@0 14 //-----------------------------------------------------------------------------
michael@0 15 var BUGNUMBER = 89443;
michael@0 16 var summary = 'Testing this script will compile without stack overflow';
michael@0 17
michael@0 18 printBugNumber(BUGNUMBER);
michael@0 19 printStatus (summary);
michael@0 20
michael@0 21
michael@0 22 // I don't know what these functions are supposed to be; use dummies -
michael@0 23 function isPlainHostName()
michael@0 24 {
michael@0 25 }
michael@0 26
michael@0 27 function dnsDomainIs()
michael@0 28 {
michael@0 29 }
michael@0 30
michael@0 31 // Here's the big function -
michael@0 32 function FindProxyForURL(url, host)
michael@0 33 {
michael@0 34
michael@0 35 if (isPlainHostName(host)
michael@0 36 || dnsDomainIs(host, ".hennepin.lib.mn.us")
michael@0 37 || dnsDomainIs(host, ".hclib.org")
michael@0 38 )
michael@0 39 return "DIRECT";
michael@0 40 else if (isPlainHostName(host)
michael@0 41
michael@0 42 // subscription database access
michael@0 43
michael@0 44 || dnsDomainIs(host, ".asahi.com")
michael@0 45 || dnsDomainIs(host, ".2facts.com")
michael@0 46 || dnsDomainIs(host, ".oclc.org")
michael@0 47 || dnsDomainIs(host, ".collegesource.com")
michael@0 48 || dnsDomainIs(host, ".cq.com")
michael@0 49 || dnsDomainIs(host, ".grolier.com")
michael@0 50 || dnsDomainIs(host, ".groveart.com")
michael@0 51 || dnsDomainIs(host, ".groveopera.com")
michael@0 52 || dnsDomainIs(host, ".fsonline.com")
michael@0 53 || dnsDomainIs(host, ".carl.org")
michael@0 54 || dnsDomainIs(host, ".newslibrary.com")
michael@0 55 || dnsDomainIs(host, ".pioneerplanet.com")
michael@0 56 || dnsDomainIs(host, ".startribune.com")
michael@0 57 || dnsDomainIs(host, ".poemfinder.com")
michael@0 58 || dnsDomainIs(host, ".umi.com")
michael@0 59 || dnsDomainIs(host, ".referenceusa.com")
michael@0 60 || dnsDomainIs(host, ".sirs.com")
michael@0 61 || dnsDomainIs(host, ".krmediastream.com")
michael@0 62 || dnsDomainIs(host, ".gale.com")
michael@0 63 || dnsDomainIs(host, ".galenet.com")
michael@0 64 || dnsDomainIs(host, ".galegroup.com")
michael@0 65 || dnsDomainIs(host, ".facts.com")
michael@0 66 || dnsDomainIs(host, ".eb.com")
michael@0 67 || dnsDomainIs(host, ".worldbookonline.com")
michael@0 68 || dnsDomainIs(host, ".galegroup.com")
michael@0 69 || dnsDomainIs(host, ".accessscience.com")
michael@0 70 || dnsDomainIs(host, ".booksinprint.com")
michael@0 71 || dnsDomainIs(host, ".infolearning.com")
michael@0 72 || dnsDomainIs(host, ".standardpoor.com")
michael@0 73
michael@0 74 // image servers
michael@0 75 || dnsDomainIs(host, ".akamaitech.net")
michael@0 76 || dnsDomainIs(host, ".akamai.net")
michael@0 77 || dnsDomainIs(host, ".yimg.com")
michael@0 78 || dnsDomainIs(host, ".imgis.com")
michael@0 79 || dnsDomainIs(host, ".ibsys.com")
michael@0 80
michael@0 81 // KidsClick-linked kids search engines
michael@0 82 || dnsDomainIs(host, ".edview.com")
michael@0 83 || dnsDomainIs(host, ".searchopolis.com")
michael@0 84 || dnsDomainIs(host, ".onekey.com")
michael@0 85 || dnsDomainIs(host, ".askjeeves.com")
michael@0 86
michael@0 87 // Non-subscription Reference Tools URLs from the RecWebSites DBData table
michael@0 88 || dnsDomainIs(host, "www.cnn.com")
michael@0 89 || dnsDomainIs(host, "www.emulateme.com")
michael@0 90 || dnsDomainIs(host, "terraserver.microsoft.com")
michael@0 91 || dnsDomainIs(host, "www.theodora.com")
michael@0 92 || dnsDomainIs(host, "www.3datlas.com")
michael@0 93 || dnsDomainIs(host, "www.infoplease.com")
michael@0 94 || dnsDomainIs(host, "www.switchboard.com")
michael@0 95 || dnsDomainIs(host, "www.bartleby.com")
michael@0 96 || dnsDomainIs(host, "www.mn-politics.com")
michael@0 97 || dnsDomainIs(host, "www.thesaurus.com")
michael@0 98 || dnsDomainIs(host, "www.usnews.com")
michael@0 99 || dnsDomainIs(host, "www.petersons.com")
michael@0 100 || dnsDomainIs(host, "www.collegenet.com")
michael@0 101 || dnsDomainIs(host, "www.m-w.com")
michael@0 102 || dnsDomainIs(host, "clever.net")
michael@0 103 || dnsDomainIs(host, "maps.expedia.com")
michael@0 104 || dnsDomainIs(host, "www.CollegeEdge.com")
michael@0 105 || dnsDomainIs(host, "www.homeworkcentral.com")
michael@0 106 || dnsDomainIs(host, "www.studyweb.com")
michael@0 107 || dnsDomainIs(host, "www.mnpro.com")
michael@0 108
michael@0 109 // custom URLs for local and other access
michael@0 110 || dnsDomainIs(host, ".dsdukes.com")
michael@0 111 || dnsDomainIs(host, ".spsaints.com")
michael@0 112 || dnsDomainIs(host, ".mnzoo.com")
michael@0 113 || dnsDomainIs(host, ".realaudio.com")
michael@0 114 || dnsDomainIs(host, ".co.hennepin.mn.us")
michael@0 115 || dnsDomainIs(host, ".gov")
michael@0 116 || dnsDomainIs(host, ".org")
michael@0 117 || dnsDomainIs(host, ".edu")
michael@0 118 || dnsDomainIs(host, ".fox29.com")
michael@0 119 || dnsDomainIs(host, ".wcco.com")
michael@0 120 || dnsDomainIs(host, ".kstp.com")
michael@0 121 || dnsDomainIs(host, ".kmsp.com")
michael@0 122 || dnsDomainIs(host, ".kare11.com")
michael@0 123 || dnsDomainIs(host, ".macromedia.com")
michael@0 124 || dnsDomainIs(host, ".shockwave.com")
michael@0 125 || dnsDomainIs(host, ".wwf.com")
michael@0 126 || dnsDomainIs(host, ".wwfsuperstars.com")
michael@0 127 || dnsDomainIs(host, ".summerslam.com")
michael@0 128 || dnsDomainIs(host, ".yahooligans.com")
michael@0 129 || dnsDomainIs(host, ".mhoob.com")
michael@0 130 || dnsDomainIs(host, "www.hmonginternet.com")
michael@0 131 || dnsDomainIs(host, "www.hmongonline.com")
michael@0 132 || dnsDomainIs(host, ".yahoo.com")
michael@0 133 || dnsDomainIs(host, ".pokemon.com")
michael@0 134 || dnsDomainIs(host, ".bet.com")
michael@0 135 || dnsDomainIs(host, ".smallworld.com")
michael@0 136 || dnsDomainIs(host, ".cartoonnetwork.com")
michael@0 137 || dnsDomainIs(host, ".carmensandiego.com")
michael@0 138 || dnsDomainIs(host, ".disney.com")
michael@0 139 || dnsDomainIs(host, ".powerpuffgirls.com")
michael@0 140 || dnsDomainIs(host, ".aol.com")
michael@0 141
michael@0 142 // Smithsonian
michael@0 143 || dnsDomainIs(host, "160.111.100.190")
michael@0 144
michael@0 145 // Hotmail
michael@0 146 || dnsDomainIs(host, ".passport.com")
michael@0 147 || dnsDomainIs(host, ".hotmail.com")
michael@0 148 || dnsDomainIs(host, "216.33.236.24")
michael@0 149 || dnsDomainIs(host, "216.32.182.251")
michael@0 150 || dnsDomainIs(host, ".hotmail.msn.com")
michael@0 151
michael@0 152 // K12 schools
michael@0 153 || dnsDomainIs(host, ".k12.al.us")
michael@0 154 || dnsDomainIs(host, ".k12.ak.us")
michael@0 155 || dnsDomainIs(host, ".k12.ar.us")
michael@0 156 || dnsDomainIs(host, ".k12.az.us")
michael@0 157 || dnsDomainIs(host, ".k12.ca.us")
michael@0 158 || dnsDomainIs(host, ".k12.co.us")
michael@0 159 || dnsDomainIs(host, ".k12.ct.us")
michael@0 160 || dnsDomainIs(host, ".k12.dc.us")
michael@0 161 || dnsDomainIs(host, ".k12.de.us")
michael@0 162 || dnsDomainIs(host, ".k12.fl.us")
michael@0 163 || dnsDomainIs(host, ".k12.ga.us")
michael@0 164 || dnsDomainIs(host, ".k12.hi.us")
michael@0 165 || dnsDomainIs(host, ".k12.id.us")
michael@0 166 || dnsDomainIs(host, ".k12.il.us")
michael@0 167 || dnsDomainIs(host, ".k12.in.us")
michael@0 168 || dnsDomainIs(host, ".k12.ia.us")
michael@0 169 || dnsDomainIs(host, ".k12.ks.us")
michael@0 170 || dnsDomainIs(host, ".k12.ky.us")
michael@0 171 || dnsDomainIs(host, ".k12.la.us")
michael@0 172 || dnsDomainIs(host, ".k12.me.us")
michael@0 173 || dnsDomainIs(host, ".k12.md.us")
michael@0 174 || dnsDomainIs(host, ".k12.ma.us")
michael@0 175 || dnsDomainIs(host, ".k12.mi.us")
michael@0 176 || dnsDomainIs(host, ".k12.mn.us")
michael@0 177 || dnsDomainIs(host, ".k12.ms.us")
michael@0 178 || dnsDomainIs(host, ".k12.mo.us")
michael@0 179 || dnsDomainIs(host, ".k12.mt.us")
michael@0 180 || dnsDomainIs(host, ".k12.ne.us")
michael@0 181 || dnsDomainIs(host, ".k12.nv.us")
michael@0 182 || dnsDomainIs(host, ".k12.nh.us")
michael@0 183 || dnsDomainIs(host, ".k12.nj.us")
michael@0 184 || dnsDomainIs(host, ".k12.nm.us")
michael@0 185 || dnsDomainIs(host, ".k12.ny.us")
michael@0 186 || dnsDomainIs(host, ".k12.nc.us")
michael@0 187 || dnsDomainIs(host, ".k12.nd.us")
michael@0 188 || dnsDomainIs(host, ".k12.oh.us")
michael@0 189 || dnsDomainIs(host, ".k12.ok.us")
michael@0 190 || dnsDomainIs(host, ".k12.or.us")
michael@0 191 || dnsDomainIs(host, ".k12.pa.us")
michael@0 192 || dnsDomainIs(host, ".k12.ri.us")
michael@0 193 || dnsDomainIs(host, ".k12.sc.us")
michael@0 194 || dnsDomainIs(host, ".k12.sd.us")
michael@0 195 || dnsDomainIs(host, ".k12.tn.us")
michael@0 196 || dnsDomainIs(host, ".k12.tx.us")
michael@0 197 || dnsDomainIs(host, ".k12.ut.us")
michael@0 198 || dnsDomainIs(host, ".k12.vt.us")
michael@0 199 || dnsDomainIs(host, ".k12.va.us")
michael@0 200 || dnsDomainIs(host, ".k12.wa.us")
michael@0 201 || dnsDomainIs(host, ".k12.wv.us")
michael@0 202 || dnsDomainIs(host, ".k12.wi.us")
michael@0 203 || dnsDomainIs(host, ".k12.wy.us")
michael@0 204
michael@0 205 // U.S. Libraries
michael@0 206 || dnsDomainIs(host, ".lib.al.us")
michael@0 207 || dnsDomainIs(host, ".lib.ak.us")
michael@0 208 || dnsDomainIs(host, ".lib.ar.us")
michael@0 209 || dnsDomainIs(host, ".lib.az.us")
michael@0 210 || dnsDomainIs(host, ".lib.ca.us")
michael@0 211 || dnsDomainIs(host, ".lib.co.us")
michael@0 212 || dnsDomainIs(host, ".lib.ct.us")
michael@0 213 || dnsDomainIs(host, ".lib.dc.us")
michael@0 214 || dnsDomainIs(host, ".lib.de.us")
michael@0 215 || dnsDomainIs(host, ".lib.fl.us")
michael@0 216 || dnsDomainIs(host, ".lib.ga.us")
michael@0 217 || dnsDomainIs(host, ".lib.hi.us")
michael@0 218 || dnsDomainIs(host, ".lib.id.us")
michael@0 219 || dnsDomainIs(host, ".lib.il.us")
michael@0 220 || dnsDomainIs(host, ".lib.in.us")
michael@0 221 || dnsDomainIs(host, ".lib.ia.us")
michael@0 222 || dnsDomainIs(host, ".lib.ks.us")
michael@0 223 || dnsDomainIs(host, ".lib.ky.us")
michael@0 224 || dnsDomainIs(host, ".lib.la.us")
michael@0 225 || dnsDomainIs(host, ".lib.me.us")
michael@0 226 || dnsDomainIs(host, ".lib.md.us")
michael@0 227 || dnsDomainIs(host, ".lib.ma.us")
michael@0 228 || dnsDomainIs(host, ".lib.mi.us")
michael@0 229 || dnsDomainIs(host, ".lib.mn.us")
michael@0 230 || dnsDomainIs(host, ".lib.ms.us")
michael@0 231 || dnsDomainIs(host, ".lib.mo.us")
michael@0 232 || dnsDomainIs(host, ".lib.mt.us")
michael@0 233 || dnsDomainIs(host, ".lib.ne.us")
michael@0 234 || dnsDomainIs(host, ".lib.nv.us")
michael@0 235 || dnsDomainIs(host, ".lib.nh.us")
michael@0 236 || dnsDomainIs(host, ".lib.nj.us")
michael@0 237 || dnsDomainIs(host, ".lib.nm.us")
michael@0 238 || dnsDomainIs(host, ".lib.ny.us")
michael@0 239 || dnsDomainIs(host, ".lib.nc.us")
michael@0 240 || dnsDomainIs(host, ".lib.nd.us")
michael@0 241 || dnsDomainIs(host, ".lib.oh.us")
michael@0 242 || dnsDomainIs(host, ".lib.ok.us")
michael@0 243 || dnsDomainIs(host, ".lib.or.us")
michael@0 244 || dnsDomainIs(host, ".lib.pa.us")
michael@0 245 || dnsDomainIs(host, ".lib.ri.us")
michael@0 246 || dnsDomainIs(host, ".lib.sc.us")
michael@0 247 || dnsDomainIs(host, ".lib.sd.us")
michael@0 248 || dnsDomainIs(host, ".lib.tn.us")
michael@0 249 || dnsDomainIs(host, ".lib.tx.us")
michael@0 250 || dnsDomainIs(host, ".lib.ut.us")
michael@0 251 || dnsDomainIs(host, ".lib.vt.us")
michael@0 252 || dnsDomainIs(host, ".lib.va.us")
michael@0 253 || dnsDomainIs(host, ".lib.wa.us")
michael@0 254 || dnsDomainIs(host, ".lib.wv.us")
michael@0 255 || dnsDomainIs(host, ".lib.wi.us")
michael@0 256 || dnsDomainIs(host, ".lib.wy.us")
michael@0 257
michael@0 258 // U.S. Cities
michael@0 259 || dnsDomainIs(host, ".ci.al.us")
michael@0 260 || dnsDomainIs(host, ".ci.ak.us")
michael@0 261 || dnsDomainIs(host, ".ci.ar.us")
michael@0 262 || dnsDomainIs(host, ".ci.az.us")
michael@0 263 || dnsDomainIs(host, ".ci.ca.us")
michael@0 264 || dnsDomainIs(host, ".ci.co.us")
michael@0 265 || dnsDomainIs(host, ".ci.ct.us")
michael@0 266 || dnsDomainIs(host, ".ci.dc.us")
michael@0 267 || dnsDomainIs(host, ".ci.de.us")
michael@0 268 || dnsDomainIs(host, ".ci.fl.us")
michael@0 269 || dnsDomainIs(host, ".ci.ga.us")
michael@0 270 || dnsDomainIs(host, ".ci.hi.us")
michael@0 271 || dnsDomainIs(host, ".ci.id.us")
michael@0 272 || dnsDomainIs(host, ".ci.il.us")
michael@0 273 || dnsDomainIs(host, ".ci.in.us")
michael@0 274 || dnsDomainIs(host, ".ci.ia.us")
michael@0 275 || dnsDomainIs(host, ".ci.ks.us")
michael@0 276 || dnsDomainIs(host, ".ci.ky.us")
michael@0 277 || dnsDomainIs(host, ".ci.la.us")
michael@0 278 || dnsDomainIs(host, ".ci.me.us")
michael@0 279 || dnsDomainIs(host, ".ci.md.us")
michael@0 280 || dnsDomainIs(host, ".ci.ma.us")
michael@0 281 || dnsDomainIs(host, ".ci.mi.us")
michael@0 282 || dnsDomainIs(host, ".ci.mn.us")
michael@0 283 || dnsDomainIs(host, ".ci.ms.us")
michael@0 284 || dnsDomainIs(host, ".ci.mo.us")
michael@0 285 || dnsDomainIs(host, ".ci.mt.us")
michael@0 286 || dnsDomainIs(host, ".ci.ne.us")
michael@0 287 || dnsDomainIs(host, ".ci.nv.us")
michael@0 288 || dnsDomainIs(host, ".ci.nh.us")
michael@0 289 || dnsDomainIs(host, ".ci.nj.us")
michael@0 290 || dnsDomainIs(host, ".ci.nm.us")
michael@0 291 || dnsDomainIs(host, ".ci.ny.us")
michael@0 292 || dnsDomainIs(host, ".ci.nc.us")
michael@0 293 || dnsDomainIs(host, ".ci.nd.us")
michael@0 294 || dnsDomainIs(host, ".ci.oh.us")
michael@0 295 || dnsDomainIs(host, ".ci.ok.us")
michael@0 296 || dnsDomainIs(host, ".ci.or.us")
michael@0 297 || dnsDomainIs(host, ".ci.pa.us")
michael@0 298 || dnsDomainIs(host, ".ci.ri.us")
michael@0 299 || dnsDomainIs(host, ".ci.sc.us")
michael@0 300 || dnsDomainIs(host, ".ci.sd.us")
michael@0 301 || dnsDomainIs(host, ".ci.tn.us")
michael@0 302 || dnsDomainIs(host, ".ci.tx.us")
michael@0 303 || dnsDomainIs(host, ".ci.ut.us")
michael@0 304 || dnsDomainIs(host, ".ci.vt.us")
michael@0 305 || dnsDomainIs(host, ".ci.va.us")
michael@0 306 || dnsDomainIs(host, ".ci.wa.us")
michael@0 307 || dnsDomainIs(host, ".ci.wv.us")
michael@0 308 || dnsDomainIs(host, ".ci.wi.us")
michael@0 309 || dnsDomainIs(host, ".ci.wy.us")
michael@0 310
michael@0 311 // U.S. Counties
michael@0 312 || dnsDomainIs(host, ".co.al.us")
michael@0 313 || dnsDomainIs(host, ".co.ak.us")
michael@0 314 || dnsDomainIs(host, ".co.ar.us")
michael@0 315 || dnsDomainIs(host, ".co.az.us")
michael@0 316 || dnsDomainIs(host, ".co.ca.us")
michael@0 317 || dnsDomainIs(host, ".co.co.us")
michael@0 318 || dnsDomainIs(host, ".co.ct.us")
michael@0 319 || dnsDomainIs(host, ".co.dc.us")
michael@0 320 || dnsDomainIs(host, ".co.de.us")
michael@0 321 || dnsDomainIs(host, ".co.fl.us")
michael@0 322 || dnsDomainIs(host, ".co.ga.us")
michael@0 323 || dnsDomainIs(host, ".co.hi.us")
michael@0 324 || dnsDomainIs(host, ".co.id.us")
michael@0 325 || dnsDomainIs(host, ".co.il.us")
michael@0 326 || dnsDomainIs(host, ".co.in.us")
michael@0 327 || dnsDomainIs(host, ".co.ia.us")
michael@0 328 || dnsDomainIs(host, ".co.ks.us")
michael@0 329 || dnsDomainIs(host, ".co.ky.us")
michael@0 330 || dnsDomainIs(host, ".co.la.us")
michael@0 331 || dnsDomainIs(host, ".co.me.us")
michael@0 332 || dnsDomainIs(host, ".co.md.us")
michael@0 333 || dnsDomainIs(host, ".co.ma.us")
michael@0 334 || dnsDomainIs(host, ".co.mi.us")
michael@0 335 || dnsDomainIs(host, ".co.mn.us")
michael@0 336 || dnsDomainIs(host, ".co.ms.us")
michael@0 337 || dnsDomainIs(host, ".co.mo.us")
michael@0 338 || dnsDomainIs(host, ".co.mt.us")
michael@0 339 || dnsDomainIs(host, ".co.ne.us")
michael@0 340 || dnsDomainIs(host, ".co.nv.us")
michael@0 341 || dnsDomainIs(host, ".co.nh.us")
michael@0 342 || dnsDomainIs(host, ".co.nj.us")
michael@0 343 || dnsDomainIs(host, ".co.nm.us")
michael@0 344 || dnsDomainIs(host, ".co.ny.us")
michael@0 345 || dnsDomainIs(host, ".co.nc.us")
michael@0 346 || dnsDomainIs(host, ".co.nd.us")
michael@0 347 || dnsDomainIs(host, ".co.oh.us")
michael@0 348 || dnsDomainIs(host, ".co.ok.us")
michael@0 349 || dnsDomainIs(host, ".co.or.us")
michael@0 350 || dnsDomainIs(host, ".co.pa.us")
michael@0 351 || dnsDomainIs(host, ".co.ri.us")
michael@0 352 || dnsDomainIs(host, ".co.sc.us")
michael@0 353 || dnsDomainIs(host, ".co.sd.us")
michael@0 354 || dnsDomainIs(host, ".co.tn.us")
michael@0 355 || dnsDomainIs(host, ".co.tx.us")
michael@0 356 || dnsDomainIs(host, ".co.ut.us")
michael@0 357 || dnsDomainIs(host, ".co.vt.us")
michael@0 358 || dnsDomainIs(host, ".co.va.us")
michael@0 359 || dnsDomainIs(host, ".co.wa.us")
michael@0 360 || dnsDomainIs(host, ".co.wv.us")
michael@0 361 || dnsDomainIs(host, ".co.wi.us")
michael@0 362 || dnsDomainIs(host, ".co.wy.us")
michael@0 363
michael@0 364 // U.S. States
michael@0 365 || dnsDomainIs(host, ".state.al.us")
michael@0 366 || dnsDomainIs(host, ".state.ak.us")
michael@0 367 || dnsDomainIs(host, ".state.ar.us")
michael@0 368 || dnsDomainIs(host, ".state.az.us")
michael@0 369 || dnsDomainIs(host, ".state.ca.us")
michael@0 370 || dnsDomainIs(host, ".state.co.us")
michael@0 371 || dnsDomainIs(host, ".state.ct.us")
michael@0 372 || dnsDomainIs(host, ".state.dc.us")
michael@0 373 || dnsDomainIs(host, ".state.de.us")
michael@0 374 || dnsDomainIs(host, ".state.fl.us")
michael@0 375 || dnsDomainIs(host, ".state.ga.us")
michael@0 376 || dnsDomainIs(host, ".state.hi.us")
michael@0 377 || dnsDomainIs(host, ".state.id.us")
michael@0 378 || dnsDomainIs(host, ".state.il.us")
michael@0 379 || dnsDomainIs(host, ".state.in.us")
michael@0 380 || dnsDomainIs(host, ".state.ia.us")
michael@0 381 || dnsDomainIs(host, ".state.ks.us")
michael@0 382 || dnsDomainIs(host, ".state.ky.us")
michael@0 383 || dnsDomainIs(host, ".state.la.us")
michael@0 384 || dnsDomainIs(host, ".state.me.us")
michael@0 385 || dnsDomainIs(host, ".state.md.us")
michael@0 386 || dnsDomainIs(host, ".state.ma.us")
michael@0 387 || dnsDomainIs(host, ".state.mi.us")
michael@0 388 || dnsDomainIs(host, ".state.mn.us")
michael@0 389 || dnsDomainIs(host, ".state.ms.us")
michael@0 390 || dnsDomainIs(host, ".state.mo.us")
michael@0 391 || dnsDomainIs(host, ".state.mt.us")
michael@0 392 || dnsDomainIs(host, ".state.ne.us")
michael@0 393 || dnsDomainIs(host, ".state.nv.us")
michael@0 394 || dnsDomainIs(host, ".state.nh.us")
michael@0 395 || dnsDomainIs(host, ".state.nj.us")
michael@0 396 || dnsDomainIs(host, ".state.nm.us")
michael@0 397 || dnsDomainIs(host, ".state.ny.us")
michael@0 398 || dnsDomainIs(host, ".state.nc.us")
michael@0 399 || dnsDomainIs(host, ".state.nd.us")
michael@0 400 || dnsDomainIs(host, ".state.oh.us")
michael@0 401 || dnsDomainIs(host, ".state.ok.us")
michael@0 402 || dnsDomainIs(host, ".state.or.us")
michael@0 403 || dnsDomainIs(host, ".state.pa.us")
michael@0 404 || dnsDomainIs(host, ".state.ri.us")
michael@0 405 || dnsDomainIs(host, ".state.sc.us")
michael@0 406 || dnsDomainIs(host, ".state.sd.us")
michael@0 407 || dnsDomainIs(host, ".state.tn.us")
michael@0 408 || dnsDomainIs(host, ".state.tx.us")
michael@0 409 || dnsDomainIs(host, ".state.ut.us")
michael@0 410 || dnsDomainIs(host, ".state.vt.us")
michael@0 411 || dnsDomainIs(host, ".state.va.us")
michael@0 412 || dnsDomainIs(host, ".state.wa.us")
michael@0 413 || dnsDomainIs(host, ".state.wv.us")
michael@0 414 || dnsDomainIs(host, ".state.wi.us")
michael@0 415 || dnsDomainIs(host, ".state.wy.us")
michael@0 416
michael@0 417 // KidsClick URLs
michael@0 418
michael@0 419 || dnsDomainIs(host, "12.16.163.163")
michael@0 420 || dnsDomainIs(host, "128.59.173.136")
michael@0 421 || dnsDomainIs(host, "165.112.78.61")
michael@0 422 || dnsDomainIs(host, "216.55.23.140")
michael@0 423 || dnsDomainIs(host, "63.111.53.150")
michael@0 424 || dnsDomainIs(host, "64.94.206.8")
michael@0 425
michael@0 426 || dnsDomainIs(host, "abc.go.com")
michael@0 427 || dnsDomainIs(host, "acmepet.petsmart.com")
michael@0 428 || dnsDomainIs(host, "adver-net.com")
michael@0 429 || dnsDomainIs(host, "aint-it-cool-news.com")
michael@0 430 || dnsDomainIs(host, "akidsheart.com")
michael@0 431 || dnsDomainIs(host, "alabanza.com")
michael@0 432 || dnsDomainIs(host, "allerdays.com")
michael@0 433 || dnsDomainIs(host, "allgame.com")
michael@0 434 || dnsDomainIs(host, "allowancenet.com")
michael@0 435 || dnsDomainIs(host, "amish-heartland.com")
michael@0 436 || dnsDomainIs(host, "ancienthistory.about.com")
michael@0 437 || dnsDomainIs(host, "animals.about.com")
michael@0 438 || dnsDomainIs(host, "antenna.nl")
michael@0 439 || dnsDomainIs(host, "arcweb.sos.state.or.us")
michael@0 440 || dnsDomainIs(host, "artistmummer.homestead.com")
michael@0 441 || dnsDomainIs(host, "artists.vh1.com")
michael@0 442 || dnsDomainIs(host, "arts.lausd.k12.ca.us")
michael@0 443 || dnsDomainIs(host, "asiatravel.com")
michael@0 444 || dnsDomainIs(host, "asterius.com")
michael@0 445 || dnsDomainIs(host, "atlas.gc.ca")
michael@0 446 || dnsDomainIs(host, "atschool.eduweb.co.uk")
michael@0 447 || dnsDomainIs(host, "ayya.pd.net")
michael@0 448 || dnsDomainIs(host, "babelfish.altavista.com")
michael@0 449 || dnsDomainIs(host, "babylon5.warnerbros.com")
michael@0 450 || dnsDomainIs(host, "banzai.neosoft.com")
michael@0 451 || dnsDomainIs(host, "barneyonline.com")
michael@0 452 || dnsDomainIs(host, "baroque-music.com")
michael@0 453 || dnsDomainIs(host, "barsoom.msss.com")
michael@0 454 || dnsDomainIs(host, "baseball-almanac.com")
michael@0 455 || dnsDomainIs(host, "bcadventure.com")
michael@0 456 || dnsDomainIs(host, "beadiecritters.hosting4less.com")
michael@0 457 || dnsDomainIs(host, "beverlyscrafts.com")
michael@0 458 || dnsDomainIs(host, "biology.about.com")
michael@0 459 || dnsDomainIs(host, "birding.about.com")
michael@0 460 || dnsDomainIs(host, "boatsafe.com")
michael@0 461 || dnsDomainIs(host, "bombpop.com")
michael@0 462 || dnsDomainIs(host, "boulter.com")
michael@0 463 || dnsDomainIs(host, "bright-ideas-software.com")
michael@0 464 || dnsDomainIs(host, "buckman.pps.k12.or.us")
michael@0 465 || dnsDomainIs(host, "buffalobills.com")
michael@0 466 || dnsDomainIs(host, "bvsd.k12.co.us")
michael@0 467 || dnsDomainIs(host, "cagle.slate.msn.com")
michael@0 468 || dnsDomainIs(host, "calc.entisoft.com")
michael@0 469 || dnsDomainIs(host, "canada.gc.ca")
michael@0 470 || dnsDomainIs(host, "candleandsoap.about.com")
michael@0 471 || dnsDomainIs(host, "caselaw.lp.findlaw.com")
michael@0 472 || dnsDomainIs(host, "catalog.com")
michael@0 473 || dnsDomainIs(host, "catalog.socialstudies.com")
michael@0 474 || dnsDomainIs(host, "cavern.com")
michael@0 475 || dnsDomainIs(host, "cbs.sportsline.com")
michael@0 476 || dnsDomainIs(host, "cc.matsuyama-u.ac.jp")
michael@0 477 || dnsDomainIs(host, "celt.net")
michael@0 478 || dnsDomainIs(host, "cgfa.kelloggcreek.com")
michael@0 479 || dnsDomainIs(host, "channel4000.com")
michael@0 480 || dnsDomainIs(host, "chess.delorie.com")
michael@0 481 || dnsDomainIs(host, "chess.liveonthenet.com")
michael@0 482 || dnsDomainIs(host, "childfun.com")
michael@0 483 || dnsDomainIs(host, "christmas.com")
michael@0 484 || dnsDomainIs(host, "citystar.com")
michael@0 485 || dnsDomainIs(host, "claim.goldrush.com")
michael@0 486 || dnsDomainIs(host, "clairerosemaryjane.com")
michael@0 487 || dnsDomainIs(host, "clevermedia.com")
michael@0 488 || dnsDomainIs(host, "cobblestonepub.com")
michael@0 489 || dnsDomainIs(host, "codebrkr.infopages.net")
michael@0 490 || dnsDomainIs(host, "colitz.com")
michael@0 491 || dnsDomainIs(host, "collections.ic.gc.ca")
michael@0 492 || dnsDomainIs(host, "coloquio.com")
michael@0 493 || dnsDomainIs(host, "come.to")
michael@0 494 || dnsDomainIs(host, "coombs.anu.edu.au")
michael@0 495 || dnsDomainIs(host, "crafterscommunity.com")
michael@0 496 || dnsDomainIs(host, "craftsforkids.about.com")
michael@0 497 || dnsDomainIs(host, "creativity.net")
michael@0 498 || dnsDomainIs(host, "cslewis.drzeus.net")
michael@0 499 || dnsDomainIs(host, "cust.idl.com.au")
michael@0 500 || dnsDomainIs(host, "cvs.anu.edu.au")
michael@0 501 || dnsDomainIs(host, "cybersleuth-kids.com")
michael@0 502 || dnsDomainIs(host, "cybertown.com")
michael@0 503 || dnsDomainIs(host, "darkfish.com")
michael@0 504 || dnsDomainIs(host, "datadragon.com")
michael@0 505 || dnsDomainIs(host, "davesite.com")
michael@0 506 || dnsDomainIs(host, "dbertens.www.cistron.nl")
michael@0 507 || dnsDomainIs(host, "detnews.com")
michael@0 508 || dnsDomainIs(host, "dhr.dos.state.fl.us")
michael@0 509 || dnsDomainIs(host, "dialspace.dial.pipex.com")
michael@0 510 || dnsDomainIs(host, "dictionaries.travlang.com")
michael@0 511 || dnsDomainIs(host, "disney.go.com")
michael@0 512 || dnsDomainIs(host, "disneyland.disney.go.com")
michael@0 513 || dnsDomainIs(host, "district.gresham.k12.or.us")
michael@0 514 || dnsDomainIs(host, "dmarie.com")
michael@0 515 || dnsDomainIs(host, "dreamwater.com")
michael@0 516 || dnsDomainIs(host, "duke.fuse.net")
michael@0 517 || dnsDomainIs(host, "earlyamerica.com")
michael@0 518 || dnsDomainIs(host, "earthsky.com")
michael@0 519 || dnsDomainIs(host, "easyweb.easynet.co.uk")
michael@0 520 || dnsDomainIs(host, "ecards1.bansheeweb.com")
michael@0 521 || dnsDomainIs(host, "edugreen.teri.res.in")
michael@0 522 || dnsDomainIs(host, "edwardlear.tripod.com")
michael@0 523 || dnsDomainIs(host, "eelink.net")
michael@0 524 || dnsDomainIs(host, "elizabethsings.com")
michael@0 525 || dnsDomainIs(host, "enature.com")
michael@0 526 || dnsDomainIs(host, "encarta.msn.com")
michael@0 527 || dnsDomainIs(host, "endangeredspecie.com")
michael@0 528 || dnsDomainIs(host, "enterprise.america.com")
michael@0 529 || dnsDomainIs(host, "ericae.net")
michael@0 530 || dnsDomainIs(host, "esl.about.com")
michael@0 531 || dnsDomainIs(host, "eveander.com")
michael@0 532 || dnsDomainIs(host, "exn.ca")
michael@0 533 || dnsDomainIs(host, "fallscam.niagara.com")
michael@0 534 || dnsDomainIs(host, "family.go.com")
michael@0 535 || dnsDomainIs(host, "family2.go.com")
michael@0 536 || dnsDomainIs(host, "familyeducation.com")
michael@0 537 || dnsDomainIs(host, "finditquick.com")
michael@0 538 || dnsDomainIs(host, "fln-bma.yazigi.com.br")
michael@0 539 || dnsDomainIs(host, "fln-con.yazigi.com.br")
michael@0 540 || dnsDomainIs(host, "food.epicurious.com")
michael@0 541 || dnsDomainIs(host, "forums.sympatico.ca")
michael@0 542 || dnsDomainIs(host, "fotw.vexillum.com")
michael@0 543 || dnsDomainIs(host, "fox.nstn.ca")
michael@0 544 || dnsDomainIs(host, "framingham.com")
michael@0 545 || dnsDomainIs(host, "freevote.com")
michael@0 546 || dnsDomainIs(host, "freeweb.pdq.net")
michael@0 547 || dnsDomainIs(host, "games.yahoo.com")
michael@0 548 || dnsDomainIs(host, "gardening.sierrahome.com")
michael@0 549 || dnsDomainIs(host, "gardenofpraise.com")
michael@0 550 || dnsDomainIs(host, "gcclearn.gcc.cc.va.us")
michael@0 551 || dnsDomainIs(host, "genealogytoday.com")
michael@0 552 || dnsDomainIs(host, "genesis.ne.mediaone.net")
michael@0 553 || dnsDomainIs(host, "geniefind.com")
michael@0 554 || dnsDomainIs(host, "geography.about.com")
michael@0 555 || dnsDomainIs(host, "gf.state.wy.us")
michael@0 556 || dnsDomainIs(host, "gi.grolier.com")
michael@0 557 || dnsDomainIs(host, "golf.com")
michael@0 558 || dnsDomainIs(host, "greatseal.com")
michael@0 559 || dnsDomainIs(host, "guardians.net")
michael@0 560 || dnsDomainIs(host, "hamlet.hypermart.net")
michael@0 561 || dnsDomainIs(host, "happypuppy.com")
michael@0 562 || dnsDomainIs(host, "harcourt.fsc.follett.com")
michael@0 563 || dnsDomainIs(host, "haringkids.com")
michael@0 564 || dnsDomainIs(host, "harrietmaysavitz.com")
michael@0 565 || dnsDomainIs(host, "harrypotter.warnerbros.com")
michael@0 566 || dnsDomainIs(host, "hca.gilead.org.il")
michael@0 567 || dnsDomainIs(host, "header.future.easyspace.com")
michael@0 568 || dnsDomainIs(host, "historymedren.about.com")
michael@0 569 || dnsDomainIs(host, "home.att.net")
michael@0 570 || dnsDomainIs(host, "home.austin.rr.com")
michael@0 571 || dnsDomainIs(host, "home.capu.net")
michael@0 572 || dnsDomainIs(host, "home.cfl.rr.com")
michael@0 573 || dnsDomainIs(host, "home.clara.net")
michael@0 574 || dnsDomainIs(host, "home.clear.net.nz")
michael@0 575 || dnsDomainIs(host, "home.earthlink.net")
michael@0 576 || dnsDomainIs(host, "home.eznet.net")
michael@0 577 || dnsDomainIs(host, "home.flash.net")
michael@0 578 || dnsDomainIs(host, "home.hiwaay.net")
michael@0 579 || dnsDomainIs(host, "home.hkstar.com")
michael@0 580 || dnsDomainIs(host, "home.ici.net")
michael@0 581 || dnsDomainIs(host, "home.inreach.com")
michael@0 582 || dnsDomainIs(host, "home.interlynx.net")
michael@0 583 || dnsDomainIs(host, "home.istar.ca")
michael@0 584 || dnsDomainIs(host, "home.mira.net")
michael@0 585 || dnsDomainIs(host, "home.nycap.rr.com")
michael@0 586 || dnsDomainIs(host, "home.online.no")
michael@0 587 || dnsDomainIs(host, "home.pb.net")
michael@0 588 || dnsDomainIs(host, "home2.pacific.net.sg")
michael@0 589 || dnsDomainIs(host, "homearts.com")
michael@0 590 || dnsDomainIs(host, "homepage.mac.com")
michael@0 591 || dnsDomainIs(host, "hometown.aol.com")
michael@0 592 || dnsDomainIs(host, "homiliesbyemail.com")
michael@0 593 || dnsDomainIs(host, "hotei.fix.co.jp")
michael@0 594 || dnsDomainIs(host, "hotwired.lycos.com")
michael@0 595 || dnsDomainIs(host, "hp.vector.co.jp")
michael@0 596 || dnsDomainIs(host, "hum.amu.edu.pl")
michael@0 597 || dnsDomainIs(host, "i-cias.com")
michael@0 598 || dnsDomainIs(host, "icatapults.freeservers.com")
michael@0 599 || dnsDomainIs(host, "ind.cioe.com")
michael@0 600 || dnsDomainIs(host, "info.ex.ac.uk")
michael@0 601 || dnsDomainIs(host, "infocan.gc.ca")
michael@0 602 || dnsDomainIs(host, "infoservice.gc.ca")
michael@0 603 || dnsDomainIs(host, "interoz.com")
michael@0 604 || dnsDomainIs(host, "ireland.iol.ie")
michael@0 605 || dnsDomainIs(host, "is.dal.ca")
michael@0 606 || dnsDomainIs(host, "itss.raytheon.com")
michael@0 607 || dnsDomainIs(host, "iul.com")
michael@0 608 || dnsDomainIs(host, "jameswhitcombriley.com")
michael@0 609 || dnsDomainIs(host, "jellieszone.com")
michael@0 610 || dnsDomainIs(host, "jordan.sportsline.com")
michael@0 611 || dnsDomainIs(host, "judyanddavid.com")
michael@0 612 || dnsDomainIs(host, "jurai.murdoch.edu.au")
michael@0 613 || dnsDomainIs(host, "just.about.com")
michael@0 614 || dnsDomainIs(host, "kayleigh.tierranet.com")
michael@0 615 || dnsDomainIs(host, "kcwingwalker.tripod.com")
michael@0 616 || dnsDomainIs(host, "kidexchange.about.com")
michael@0 617 || dnsDomainIs(host, "kids-world.colgatepalmolive.com")
michael@0 618 || dnsDomainIs(host, "kids.mysterynet.com")
michael@0 619 || dnsDomainIs(host, "kids.ot.com")
michael@0 620 || dnsDomainIs(host, "kidsartscrafts.about.com")
michael@0 621 || dnsDomainIs(host, "kidsastronomy.about.com")
michael@0 622 || dnsDomainIs(host, "kidscience.about.com")
michael@0 623 || dnsDomainIs(host, "kidscience.miningco.com")
michael@0 624 || dnsDomainIs(host, "kidscollecting.about.com")
michael@0 625 || dnsDomainIs(host, "kidsfun.co.uk")
michael@0 626 || dnsDomainIs(host, "kidsinternet.about.com")
michael@0 627 || dnsDomainIs(host, "kidslangarts.about.com")
michael@0 628 || dnsDomainIs(host, "kidspenpals.about.com")
michael@0 629 || dnsDomainIs(host, "kitecast.com")
michael@0 630 || dnsDomainIs(host, "knight.city.ba.k12.md.us")
michael@0 631 || dnsDomainIs(host, "kodak.com")
michael@0 632 || dnsDomainIs(host, "kwanzaa4kids.homestead.com")
michael@0 633 || dnsDomainIs(host, "lagos.africaonline.com")
michael@0 634 || dnsDomainIs(host, "lancearmstrong.com")
michael@0 635 || dnsDomainIs(host, "landru.i-link-2.net")
michael@0 636 || dnsDomainIs(host, "lang.nagoya-u.ac.jp")
michael@0 637 || dnsDomainIs(host, "lascala.milano.it")
michael@0 638 || dnsDomainIs(host, "latinoculture.about.com")
michael@0 639 || dnsDomainIs(host, "litcal.yasuda-u.ac.jp")
michael@0 640 || dnsDomainIs(host, "littlebit.com")
michael@0 641 || dnsDomainIs(host, "live.edventures.com")
michael@0 642 || dnsDomainIs(host, "look.net")
michael@0 643 || dnsDomainIs(host, "lycoskids.infoplease.com")
michael@0 644 || dnsDomainIs(host, "lynx.uio.no")
michael@0 645 || dnsDomainIs(host, "macdict.dict.mq.edu.au")
michael@0 646 || dnsDomainIs(host, "maori.culture.co.nz")
michael@0 647 || dnsDomainIs(host, "marktwain.about.com")
michael@0 648 || dnsDomainIs(host, "marktwain.miningco.com")
michael@0 649 || dnsDomainIs(host, "mars2030.net")
michael@0 650 || dnsDomainIs(host, "martin.parasitology.mcgill.ca")
michael@0 651 || dnsDomainIs(host, "martinlutherking.8m.com")
michael@0 652 || dnsDomainIs(host, "mastercollector.com")
michael@0 653 || dnsDomainIs(host, "mathcentral.uregina.ca")
michael@0 654 || dnsDomainIs(host, "members.aol.com")
michael@0 655 || dnsDomainIs(host, "members.carol.net")
michael@0 656 || dnsDomainIs(host, "members.cland.net")
michael@0 657 || dnsDomainIs(host, "members.cruzio.com")
michael@0 658 || dnsDomainIs(host, "members.easyspace.com")
michael@0 659 || dnsDomainIs(host, "members.eisa.net.au")
michael@0 660 || dnsDomainIs(host, "members.home.net")
michael@0 661 || dnsDomainIs(host, "members.iinet.net.au")
michael@0 662 || dnsDomainIs(host, "members.nbci.com")
michael@0 663 || dnsDomainIs(host, "members.ozemail.com.au")
michael@0 664 || dnsDomainIs(host, "members.surfsouth.com")
michael@0 665 || dnsDomainIs(host, "members.theglobe.com")
michael@0 666 || dnsDomainIs(host, "members.tripod.com")
michael@0 667 || dnsDomainIs(host, "mexplaza.udg.mx")
michael@0 668 || dnsDomainIs(host, "mgfx.com")
michael@0 669 || dnsDomainIs(host, "microimg.com")
michael@0 670 || dnsDomainIs(host, "midusa.net")
michael@0 671 || dnsDomainIs(host, "mildan.com")
michael@0 672 || dnsDomainIs(host, "millennianet.com")
michael@0 673 || dnsDomainIs(host, "mindbreakers.e-fun.nu")
michael@0 674 || dnsDomainIs(host, "missjanet.xs4all.nl")
michael@0 675 || dnsDomainIs(host, "mistral.culture.fr")
michael@0 676 || dnsDomainIs(host, "mobileation.com")
michael@0 677 || dnsDomainIs(host, "mrshowbiz.go.com")
michael@0 678 || dnsDomainIs(host, "ms.simplenet.com")
michael@0 679 || dnsDomainIs(host, "museum.gov.ns.ca")
michael@0 680 || dnsDomainIs(host, "music.excite.com")
michael@0 681 || dnsDomainIs(host, "musicfinder.yahoo.com")
michael@0 682 || dnsDomainIs(host, "my.freeway.net")
michael@0 683 || dnsDomainIs(host, "mytrains.com")
michael@0 684 || dnsDomainIs(host, "nativeauthors.com")
michael@0 685 || dnsDomainIs(host, "nba.com")
michael@0 686 || dnsDomainIs(host, "nch.ari.net")
michael@0 687 || dnsDomainIs(host, "neonpeach.tripod.com")
michael@0 688 || dnsDomainIs(host, "net.indra.com")
michael@0 689 || dnsDomainIs(host, "ngeorgia.com")
michael@0 690 || dnsDomainIs(host, "ngp.ngpc.state.ne.us")
michael@0 691 || dnsDomainIs(host, "nhd.heinle.com")
michael@0 692 || dnsDomainIs(host, "nick.com")
michael@0 693 || dnsDomainIs(host, "normandy.eb.com")
michael@0 694 || dnsDomainIs(host, "northshore.shore.net")
michael@0 695 || dnsDomainIs(host, "now2000.com")
michael@0 696 || dnsDomainIs(host, "npc.nunavut.ca")
michael@0 697 || dnsDomainIs(host, "ns2.carib-link.net")
michael@0 698 || dnsDomainIs(host, "ntl.sympatico.ca")
michael@0 699 || dnsDomainIs(host, "oceanographer.navy.mil")
michael@0 700 || dnsDomainIs(host, "oddens.geog.uu.nl")
michael@0 701 || dnsDomainIs(host, "officialcitysites.com")
michael@0 702 || dnsDomainIs(host, "oneida-nation.net")
michael@0 703 || dnsDomainIs(host, "onlinegeorgia.com")
michael@0 704 || dnsDomainIs(host, "originator_2.tripod.com")
michael@0 705 || dnsDomainIs(host, "ortech-engr.com")
michael@0 706 || dnsDomainIs(host, "osage.voorhees.k12.nj.us")
michael@0 707 || dnsDomainIs(host, "osiris.sund.ac.uk")
michael@0 708 || dnsDomainIs(host, "ourworld.compuserve.com")
michael@0 709 || dnsDomainIs(host, "outdoorphoto.com")
michael@0 710 || dnsDomainIs(host, "pages.map.com")
michael@0 711 || dnsDomainIs(host, "pages.prodigy.com")
michael@0 712 || dnsDomainIs(host, "pages.prodigy.net")
michael@0 713 || dnsDomainIs(host, "pages.tca.net")
michael@0 714 || dnsDomainIs(host, "parcsafari.qc.ca")
michael@0 715 || dnsDomainIs(host, "parenthoodweb.com")
michael@0 716 || dnsDomainIs(host, "pathfinder.com")
michael@0 717 || dnsDomainIs(host, "people.clarityconnect.com")
michael@0 718 || dnsDomainIs(host, "people.enternet.com.au")
michael@0 719 || dnsDomainIs(host, "people.ne.mediaone.net")
michael@0 720 || dnsDomainIs(host, "phonics.jazzles.com")
michael@0 721 || dnsDomainIs(host, "pibburns.com")
michael@0 722 || dnsDomainIs(host, "pilgrims.net")
michael@0 723 || dnsDomainIs(host, "pinenet.com")
michael@0 724 || dnsDomainIs(host, "place.scholastic.com")
michael@0 725 || dnsDomainIs(host, "playground.kodak.com")
michael@0 726 || dnsDomainIs(host, "politicalgraveyard.com")
michael@0 727 || dnsDomainIs(host, "polk.ga.net")
michael@0 728 || dnsDomainIs(host, "pompstory.home.mindspring.com")
michael@0 729 || dnsDomainIs(host, "popularmechanics.com")
michael@0 730 || dnsDomainIs(host, "projects.edtech.sandi.net")
michael@0 731 || dnsDomainIs(host, "psyche.usno.navy.mil")
michael@0 732 || dnsDomainIs(host, "pubweb.parc.xerox.com")
michael@0 733 || dnsDomainIs(host, "puzzlemaker.school.discovery.com")
michael@0 734 || dnsDomainIs(host, "quest.classroom.com")
michael@0 735 || dnsDomainIs(host, "quilting.about.com")
michael@0 736 || dnsDomainIs(host, "rabbitmoon.home.mindspring.com")
michael@0 737 || dnsDomainIs(host, "radio.cbc.ca")
michael@0 738 || dnsDomainIs(host, "rats2u.com")
michael@0 739 || dnsDomainIs(host, "rbcm1.rbcm.gov.bc.ca")
michael@0 740 || dnsDomainIs(host, "readplay.com")
michael@0 741 || dnsDomainIs(host, "recipes4children.homestead.com")
michael@0 742 || dnsDomainIs(host, "redsox.com")
michael@0 743 || dnsDomainIs(host, "renaissance.district96.k12.il.us")
michael@0 744 || dnsDomainIs(host, "rhyme.lycos.com")
michael@0 745 || dnsDomainIs(host, "rhythmweb.com")
michael@0 746 || dnsDomainIs(host, "riverresource.com")
michael@0 747 || dnsDomainIs(host, "rockhoundingar.com")
michael@0 748 || dnsDomainIs(host, "rockies.mlb.com")
michael@0 749 || dnsDomainIs(host, "rosecity.net")
michael@0 750 || dnsDomainIs(host, "rr-vs.informatik.uni-ulm.de")
michael@0 751 || dnsDomainIs(host, "rubens.anu.edu.au")
michael@0 752 || dnsDomainIs(host, "rummelplatz.uni-mannheim.de")
michael@0 753 || dnsDomainIs(host, "sandbox.xerox.com")
michael@0 754 || dnsDomainIs(host, "sarah.fredart.com")
michael@0 755 || dnsDomainIs(host, "schmidel.com")
michael@0 756 || dnsDomainIs(host, "scholastic.com")
michael@0 757 || dnsDomainIs(host, "school.discovery.com")
michael@0 758 || dnsDomainIs(host, "schoolcentral.com")
michael@0 759 || dnsDomainIs(host, "seattletimes.nwsource.com")
michael@0 760 || dnsDomainIs(host, "sericulum.com")
michael@0 761 || dnsDomainIs(host, "sf.airforce.com")
michael@0 762 || dnsDomainIs(host, "shop.usps.com")
michael@0 763 || dnsDomainIs(host, "showcase.netins.net")
michael@0 764 || dnsDomainIs(host, "sikids.com")
michael@0 765 || dnsDomainIs(host, "sites.huji.ac.il")
michael@0 766 || dnsDomainIs(host, "sjliving.com")
michael@0 767 || dnsDomainIs(host, "skullduggery.com")
michael@0 768 || dnsDomainIs(host, "skyways.lib.ks.us")
michael@0 769 || dnsDomainIs(host, "snowdaymovie.nick.com")
michael@0 770 || dnsDomainIs(host, "sosa21.hypermart.net")
michael@0 771 || dnsDomainIs(host, "soundamerica.com")
michael@0 772 || dnsDomainIs(host, "spaceboy.nasda.go.jp")
michael@0 773 || dnsDomainIs(host, "sports.nfl.com")
michael@0 774 || dnsDomainIs(host, "sportsillustrated.cnn.com")
michael@0 775 || dnsDomainIs(host, "starwars.hasbro.com")
michael@0 776 || dnsDomainIs(host, "statelibrary.dcr.state.nc.us")
michael@0 777 || dnsDomainIs(host, "streetplay.com")
michael@0 778 || dnsDomainIs(host, "sts.gsc.nrcan.gc.ca")
michael@0 779 || dnsDomainIs(host, "sunniebunniezz.com")
michael@0 780 || dnsDomainIs(host, "sunsite.nus.edu.sg")
michael@0 781 || dnsDomainIs(host, "sunsite.sut.ac.jp")
michael@0 782 || dnsDomainIs(host, "superm.bart.nl")
michael@0 783 || dnsDomainIs(host, "surf.to")
michael@0 784 || dnsDomainIs(host, "svinet2.fs.fed.us")
michael@0 785 || dnsDomainIs(host, "swiminfo.com")
michael@0 786 || dnsDomainIs(host, "tabletennis.about.com")
michael@0 787 || dnsDomainIs(host, "teacher.scholastic.com")
michael@0 788 || dnsDomainIs(host, "theforce.net")
michael@0 789 || dnsDomainIs(host, "thejessicas.homestead.com")
michael@0 790 || dnsDomainIs(host, "themes.editthispage.com")
michael@0 791 || dnsDomainIs(host, "theory.uwinnipeg.ca")
michael@0 792 || dnsDomainIs(host, "theshadowlands.net")
michael@0 793 || dnsDomainIs(host, "thinks.com")
michael@0 794 || dnsDomainIs(host, "thryomanes.tripod.com")
michael@0 795 || dnsDomainIs(host, "time_zone.tripod.com")
michael@0 796 || dnsDomainIs(host, "titania.cobuild.collins.co.uk")
michael@0 797 || dnsDomainIs(host, "torre.duomo.pisa.it")
michael@0 798 || dnsDomainIs(host, "touregypt.net")
michael@0 799 || dnsDomainIs(host, "toycollecting.about.com")
michael@0 800 || dnsDomainIs(host, "trace.ntu.ac.uk")
michael@0 801 || dnsDomainIs(host, "travelwithkids.about.com")
michael@0 802 || dnsDomainIs(host, "tukids.tucows.com")
michael@0 803 || dnsDomainIs(host, "tv.yahoo.com")
michael@0 804 || dnsDomainIs(host, "tycho.usno.navy.mil")
michael@0 805 || dnsDomainIs(host, "ubl.artistdirect.com")
michael@0 806 || dnsDomainIs(host, "uk-pages.net")
michael@0 807 || dnsDomainIs(host, "ukraine.uazone.net")
michael@0 808 || dnsDomainIs(host, "unmuseum.mus.pa.us")
michael@0 809 || dnsDomainIs(host, "us.imdb.com")
michael@0 810 || dnsDomainIs(host, "userpage.chemie.fu-berlin.de")
michael@0 811 || dnsDomainIs(host, "userpage.fu-berlin.de")
michael@0 812 || dnsDomainIs(host, "userpages.aug.com")
michael@0 813 || dnsDomainIs(host, "users.aol.com")
michael@0 814 || dnsDomainIs(host, "users.bigpond.net.au")
michael@0 815 || dnsDomainIs(host, "users.breathemail.net")
michael@0 816 || dnsDomainIs(host, "users.erols.com")
michael@0 817 || dnsDomainIs(host, "users.imag.net")
michael@0 818 || dnsDomainIs(host, "users.inetw.net")
michael@0 819 || dnsDomainIs(host, "users.massed.net")
michael@0 820 || dnsDomainIs(host, "users.skynet.be")
michael@0 821 || dnsDomainIs(host, "users.uniserve.com")
michael@0 822 || dnsDomainIs(host, "venus.spaceports.com")
michael@0 823 || dnsDomainIs(host, "vgstrategies.about.com")
michael@0 824 || dnsDomainIs(host, "victorian.fortunecity.com")
michael@0 825 || dnsDomainIs(host, "vilenski.com")
michael@0 826 || dnsDomainIs(host, "village.infoweb.ne.jp")
michael@0 827 || dnsDomainIs(host, "virtual.finland.fi")
michael@0 828 || dnsDomainIs(host, "vrml.fornax.hu")
michael@0 829 || dnsDomainIs(host, "vvv.com")
michael@0 830 || dnsDomainIs(host, "w1.xrefer.com")
michael@0 831 || dnsDomainIs(host, "w3.one.net")
michael@0 832 || dnsDomainIs(host, "w3.rz-berlin.mpg.de")
michael@0 833 || dnsDomainIs(host, "w3.trib.com")
michael@0 834 || dnsDomainIs(host, "wallofsound.go.com")
michael@0 835 || dnsDomainIs(host, "web.aimnet.com")
michael@0 836 || dnsDomainIs(host, "web.ccsd.k12.wy.us")
michael@0 837 || dnsDomainIs(host, "web.cs.ualberta.ca")
michael@0 838 || dnsDomainIs(host, "web.idirect.com")
michael@0 839 || dnsDomainIs(host, "web.kyoto-inet.or.jp")
michael@0 840 || dnsDomainIs(host, "web.macam98.ac.il")
michael@0 841 || dnsDomainIs(host, "web.massvacation.com")
michael@0 842 || dnsDomainIs(host, "web.one.net.au")
michael@0 843 || dnsDomainIs(host, "web.qx.net")
michael@0 844 || dnsDomainIs(host, "web.uvic.ca")
michael@0 845 || dnsDomainIs(host, "web2.airmail.net")
michael@0 846 || dnsDomainIs(host, "webcoast.com")
michael@0 847 || dnsDomainIs(host, "webgames.kalisto.com")
michael@0 848 || dnsDomainIs(host, "webhome.idirect.com")
michael@0 849 || dnsDomainIs(host, "webpages.homestead.com")
michael@0 850 || dnsDomainIs(host, "webrum.uni-mannheim.de")
michael@0 851 || dnsDomainIs(host, "webusers.anet-stl.com")
michael@0 852 || dnsDomainIs(host, "welcome.to")
michael@0 853 || dnsDomainIs(host, "wgntv.com")
michael@0 854 || dnsDomainIs(host, "whales.magna.com.au")
michael@0 855 || dnsDomainIs(host, "wildheart.com")
michael@0 856 || dnsDomainIs(host, "wilstar.net")
michael@0 857 || dnsDomainIs(host, "winter-wonderland.com")
michael@0 858 || dnsDomainIs(host, "women.com")
michael@0 859 || dnsDomainIs(host, "woodrow.mpls.frb.fed.us")
michael@0 860 || dnsDomainIs(host, "wordzap.com")
michael@0 861 || dnsDomainIs(host, "worldkids.net")
michael@0 862 || dnsDomainIs(host, "worldwideguide.net")
michael@0 863 || dnsDomainIs(host, "ww3.bay.k12.fl.us")
michael@0 864 || dnsDomainIs(host, "ww3.sportsline.com")
michael@0 865 || dnsDomainIs(host, "www-groups.dcs.st-and.ac.uk")
michael@0 866 || dnsDomainIs(host, "www-public.rz.uni-duesseldorf.de")
michael@0 867 || dnsDomainIs(host, "www.1stkids.com")
michael@0 868 || dnsDomainIs(host, "www.2020tech.com")
michael@0 869 || dnsDomainIs(host, "www.21stcenturytoys.com")
michael@0 870 || dnsDomainIs(host, "www.4adventure.com")
michael@0 871 || dnsDomainIs(host, "www.50states.com")
michael@0 872 || dnsDomainIs(host, "www.800padutch.com")
michael@0 873 || dnsDomainIs(host, "www.88.com")
michael@0 874 || dnsDomainIs(host, "www.a-better.com")
michael@0 875 || dnsDomainIs(host, "www.aaa.com.au")
michael@0 876 || dnsDomainIs(host, "www.aacca.com")
michael@0 877 || dnsDomainIs(host, "www.aalbc.com")
michael@0 878 || dnsDomainIs(host, "www.aardman.com")
michael@0 879 || dnsDomainIs(host, "www.aardvarkelectric.com")
michael@0 880 || dnsDomainIs(host, "www.aawc.com")
michael@0 881 || dnsDomainIs(host, "www.ababmx.com")
michael@0 882 || dnsDomainIs(host, "www.abbeville.com")
michael@0 883 || dnsDomainIs(host, "www.abc.net.au")
michael@0 884 || dnsDomainIs(host, "www.abcb.com")
michael@0 885 || dnsDomainIs(host, "www.abctooncenter.com")
michael@0 886 || dnsDomainIs(host, "www.about.ch")
michael@0 887 || dnsDomainIs(host, "www.accessart.org.uk")
michael@0 888 || dnsDomainIs(host, "www.accu.or.jp")
michael@0 889 || dnsDomainIs(host, "www.accuweather.com")
michael@0 890 || dnsDomainIs(host, "www.achuka.co.uk")
michael@0 891 || dnsDomainIs(host, "www.acmecity.com")
michael@0 892 || dnsDomainIs(host, "www.acorn-group.com")
michael@0 893 || dnsDomainIs(host, "www.acs.ucalgary.ca")
michael@0 894 || dnsDomainIs(host, "www.actden.com")
michael@0 895 || dnsDomainIs(host, "www.actionplanet.com")
michael@0 896 || dnsDomainIs(host, "www.activityvillage.co.uk")
michael@0 897 || dnsDomainIs(host, "www.actwin.com")
michael@0 898 || dnsDomainIs(host, "www.adequate.com")
michael@0 899 || dnsDomainIs(host, "www.adidas.com")
michael@0 900 || dnsDomainIs(host, "www.advent-calendars.com")
michael@0 901 || dnsDomainIs(host, "www.aegis.com")
michael@0 902 || dnsDomainIs(host, "www.af.mil")
michael@0 903 || dnsDomainIs(host, "www.africaindex.africainfo.no")
michael@0 904 || dnsDomainIs(host, "www.africam.com")
michael@0 905 || dnsDomainIs(host, "www.africancrafts.com")
michael@0 906 || dnsDomainIs(host, "www.aggressive.com")
michael@0 907 || dnsDomainIs(host, "www.aghines.com")
michael@0 908 || dnsDomainIs(host, "www.agirlsworld.com")
michael@0 909 || dnsDomainIs(host, "www.agora.stm.it")
michael@0 910 || dnsDomainIs(host, "www.agriculture.com")
michael@0 911 || dnsDomainIs(host, "www.aikidofaq.com")
michael@0 912 || dnsDomainIs(host, "www.ajkids.com")
michael@0 913 || dnsDomainIs(host, "www.akfkoala.gil.com.au")
michael@0 914 || dnsDomainIs(host, "www.akhlah.com")
michael@0 915 || dnsDomainIs(host, "www.alabamainfo.com")
michael@0 916 || dnsDomainIs(host, "www.aland.fi")
michael@0 917 || dnsDomainIs(host, "www.albion.com")
michael@0 918 || dnsDomainIs(host, "www.alcoholismhelp.com")
michael@0 919 || dnsDomainIs(host, "www.alcottweb.com")
michael@0 920 || dnsDomainIs(host, "www.alfanet.it")
michael@0 921 || dnsDomainIs(host, "www.alfy.com")
michael@0 922 || dnsDomainIs(host, "www.algebra-online.com")
michael@0 923 || dnsDomainIs(host, "www.alienexplorer.com")
michael@0 924 || dnsDomainIs(host, "www.aliensatschool.com")
michael@0 925 || dnsDomainIs(host, "www.all-links.com")
michael@0 926 || dnsDomainIs(host, "www.alldetroit.com")
michael@0 927 || dnsDomainIs(host, "www.allexperts.com")
michael@0 928 || dnsDomainIs(host, "www.allmixedup.com")
michael@0 929 || dnsDomainIs(host, "www.allmusic.com")
michael@0 930 || dnsDomainIs(host, "www.almanac.com")
michael@0 931 || dnsDomainIs(host, "www.almaz.com")
michael@0 932 || dnsDomainIs(host, "www.almondseed.com")
michael@0 933 || dnsDomainIs(host, "www.aloha.com")
michael@0 934 || dnsDomainIs(host, "www.aloha.net")
michael@0 935 || dnsDomainIs(host, "www.altonweb.com")
michael@0 936 || dnsDomainIs(host, "www.alyeska-pipe.com")
michael@0 937 || dnsDomainIs(host, "www.am-wood.com")
michael@0 938 || dnsDomainIs(host, "www.amazingadventure.com")
michael@0 939 || dnsDomainIs(host, "www.amazon.com")
michael@0 940 || dnsDomainIs(host, "www.americancheerleader.com")
michael@0 941 || dnsDomainIs(host, "www.americancowboy.com")
michael@0 942 || dnsDomainIs(host, "www.americangirl.com")
michael@0 943 || dnsDomainIs(host, "www.americanparknetwork.com")
michael@0 944 || dnsDomainIs(host, "www.americansouthwest.net")
michael@0 945 || dnsDomainIs(host, "www.americanwest.com")
michael@0 946 || dnsDomainIs(host, "www.ameritech.net")
michael@0 947 || dnsDomainIs(host, "www.amtexpo.com")
michael@0 948 || dnsDomainIs(host, "www.anbg.gov.au")
michael@0 949 || dnsDomainIs(host, "www.anc.org.za")
michael@0 950 || dnsDomainIs(host, "www.ancientegypt.co.uk")
michael@0 951 || dnsDomainIs(host, "www.angelfire.com")
michael@0 952 || dnsDomainIs(host, "www.angelsbaseball.com")
michael@0 953 || dnsDomainIs(host, "www.anholt.co.uk")
michael@0 954 || dnsDomainIs(host, "www.animabets.com")
michael@0 955 || dnsDomainIs(host, "www.animalnetwork.com")
michael@0 956 || dnsDomainIs(host, "www.animalpicturesarchive.com")
michael@0 957 || dnsDomainIs(host, "www.anime-genesis.com")
michael@0 958 || dnsDomainIs(host, "www.annefrank.com")
michael@0 959 || dnsDomainIs(host, "www.annefrank.nl")
michael@0 960 || dnsDomainIs(host, "www.annie75.com")
michael@0 961 || dnsDomainIs(host, "www.antbee.com")
michael@0 962 || dnsDomainIs(host, "www.antiquetools.com")
michael@0 963 || dnsDomainIs(host, "www.antiquetoy.com")
michael@0 964 || dnsDomainIs(host, "www.anzsbeg.org.au")
michael@0 965 || dnsDomainIs(host, "www.aol.com")
michael@0 966 || dnsDomainIs(host, "www.aone.com")
michael@0 967 || dnsDomainIs(host, "www.aphids.com")
michael@0 968 || dnsDomainIs(host, "www.apl.com")
michael@0 969 || dnsDomainIs(host, "www.aplusmath.com")
michael@0 970 || dnsDomainIs(host, "www.applebookshop.co.uk")
michael@0 971 || dnsDomainIs(host, "www.appropriatesoftware.com")
michael@0 972 || dnsDomainIs(host, "www.appukids.com")
michael@0 973 || dnsDomainIs(host, "www.april-joy.com")
michael@0 974 || dnsDomainIs(host, "www.arab.net")
michael@0 975 || dnsDomainIs(host, "www.aracnet.com")
michael@0 976 || dnsDomainIs(host, "www.arborday.com")
michael@0 977 || dnsDomainIs(host, "www.arcadevillage.com")
michael@0 978 || dnsDomainIs(host, "www.archiecomics.com")
michael@0 979 || dnsDomainIs(host, "www.archives.state.al.us")
michael@0 980 || dnsDomainIs(host, "www.arctic.ca")
michael@0 981 || dnsDomainIs(host, "www.ardenjohnson.com")
michael@0 982 || dnsDomainIs(host, "www.aristotle.net")
michael@0 983 || dnsDomainIs(host, "www.arizhwys.com")
michael@0 984 || dnsDomainIs(host, "www.arizonaguide.com")
michael@0 985 || dnsDomainIs(host, "www.arlingtoncemetery.com")
michael@0 986 || dnsDomainIs(host, "www.armory.com")
michael@0 987 || dnsDomainIs(host, "www.armwrestling.com")
michael@0 988 || dnsDomainIs(host, "www.arnprior.com")
michael@0 989 || dnsDomainIs(host, "www.artabunga.com")
michael@0 990 || dnsDomainIs(host, "www.artcarte.com")
michael@0 991 || dnsDomainIs(host, "www.artchive.com")
michael@0 992 || dnsDomainIs(host, "www.artcontest.com")
michael@0 993 || dnsDomainIs(host, "www.artcyclopedia.com")
michael@0 994 || dnsDomainIs(host, "www.artisandevelopers.com")
michael@0 995 || dnsDomainIs(host, "www.artlex.com")
michael@0 996 || dnsDomainIs(host, "www.artsandkids.com")
michael@0 997 || dnsDomainIs(host, "www.artyastro.com")
michael@0 998 || dnsDomainIs(host, "www.arwhead.com")
michael@0 999 || dnsDomainIs(host, "www.asahi-net.or.jp")
michael@0 1000 || dnsDomainIs(host, "www.asap.unimelb.edu.au")
michael@0 1001 || dnsDomainIs(host, "www.ascpl.lib.oh.us")
michael@0 1002 || dnsDomainIs(host, "www.asia-art.net")
michael@0 1003 || dnsDomainIs(host, "www.asiabigtime.com")
michael@0 1004 || dnsDomainIs(host, "www.asianart.com")
michael@0 1005 || dnsDomainIs(host, "www.asiatour.com")
michael@0 1006 || dnsDomainIs(host, "www.asiaweek.com")
michael@0 1007 || dnsDomainIs(host, "www.askanexpert.com")
michael@0 1008 || dnsDomainIs(host, "www.askbasil.com")
michael@0 1009 || dnsDomainIs(host, "www.assa.org.au")
michael@0 1010 || dnsDomainIs(host, "www.ast.cam.ac.uk")
michael@0 1011 || dnsDomainIs(host, "www.astronomy.com")
michael@0 1012 || dnsDomainIs(host, "www.astros.com")
michael@0 1013 || dnsDomainIs(host, "www.atek.com")
michael@0 1014 || dnsDomainIs(host, "www.athlete.com")
michael@0 1015 || dnsDomainIs(host, "www.athropolis.com")
michael@0 1016 || dnsDomainIs(host, "www.atkielski.com")
michael@0 1017 || dnsDomainIs(host, "www.atlantabraves.com")
michael@0 1018 || dnsDomainIs(host, "www.atlantafalcons.com")
michael@0 1019 || dnsDomainIs(host, "www.atlantathrashers.com")
michael@0 1020 || dnsDomainIs(host, "www.atlanticus.com")
michael@0 1021 || dnsDomainIs(host, "www.atm.ch.cam.ac.uk")
michael@0 1022 || dnsDomainIs(host, "www.atom.co.jp")
michael@0 1023 || dnsDomainIs(host, "www.atomicarchive.com")
michael@0 1024 || dnsDomainIs(host, "www.att.com")
michael@0 1025 || dnsDomainIs(host, "www.audreywood.com")
michael@0 1026 || dnsDomainIs(host, "www.auntannie.com")
michael@0 1027 || dnsDomainIs(host, "www.auntie.com")
michael@0 1028 || dnsDomainIs(host, "www.avi-writer.com")
michael@0 1029 || dnsDomainIs(host, "www.awesomeclipartforkids.com")
michael@0 1030 || dnsDomainIs(host, "www.awhitehorse.com")
michael@0 1031 || dnsDomainIs(host, "www.axess.com")
michael@0 1032 || dnsDomainIs(host, "www.ayles.com")
michael@0 1033 || dnsDomainIs(host, "www.ayn.ca")
michael@0 1034 || dnsDomainIs(host, "www.azcardinals.com")
michael@0 1035 || dnsDomainIs(host, "www.azdiamondbacks.com")
michael@0 1036 || dnsDomainIs(host, "www.azsolarcenter.com")
michael@0 1037 || dnsDomainIs(host, "www.azstarnet.com")
michael@0 1038 || dnsDomainIs(host, "www.aztecafoods.com")
michael@0 1039 || dnsDomainIs(host, "www.b-witched.com")
michael@0 1040 || dnsDomainIs(host, "www.baberuthmuseum.com")
michael@0 1041 || dnsDomainIs(host, "www.backstreetboys.com")
michael@0 1042 || dnsDomainIs(host, "www.bagheera.com")
michael@0 1043 || dnsDomainIs(host, "www.bahamas.com")
michael@0 1044 || dnsDomainIs(host, "www.baileykids.com")
michael@0 1045 || dnsDomainIs(host, "www.baldeagleinfo.com")
michael@0 1046 || dnsDomainIs(host, "www.balloonhq.com")
michael@0 1047 || dnsDomainIs(host, "www.balloonzone.com")
michael@0 1048 || dnsDomainIs(host, "www.ballparks.com")
michael@0 1049 || dnsDomainIs(host, "www.balmoralsoftware.com")
michael@0 1050 || dnsDomainIs(host, "www.banja.com")
michael@0 1051 || dnsDomainIs(host, "www.banph.com")
michael@0 1052 || dnsDomainIs(host, "www.barbie.com")
michael@0 1053 || dnsDomainIs(host, "www.barkingbuddies.com")
michael@0 1054 || dnsDomainIs(host, "www.barnsdle.demon.co.uk")
michael@0 1055 || dnsDomainIs(host, "www.barrysclipart.com")
michael@0 1056 || dnsDomainIs(host, "www.bartleby.com")
michael@0 1057 || dnsDomainIs(host, "www.baseplate.com")
michael@0 1058 || dnsDomainIs(host, "www.batman-superman.com")
michael@0 1059 || dnsDomainIs(host, "www.batmanbeyond.com")
michael@0 1060 || dnsDomainIs(host, "www.bbc.co.uk")
michael@0 1061 || dnsDomainIs(host, "www.bbhighway.com")
michael@0 1062 || dnsDomainIs(host, "www.bboy.com")
michael@0 1063 || dnsDomainIs(host, "www.bcit.tec.nj.us")
michael@0 1064 || dnsDomainIs(host, "www.bconnex.net")
michael@0 1065 || dnsDomainIs(host, "www.bcpl.net")
michael@0 1066 || dnsDomainIs(host, "www.beach-net.com")
michael@0 1067 || dnsDomainIs(host, "www.beachboys.com")
michael@0 1068 || dnsDomainIs(host, "www.beakman.com")
michael@0 1069 || dnsDomainIs(host, "www.beano.co.uk")
michael@0 1070 || dnsDomainIs(host, "www.beans.demon.co.uk")
michael@0 1071 || dnsDomainIs(host, "www.beartime.com")
michael@0 1072 || dnsDomainIs(host, "www.bearyspecial.co.uk")
michael@0 1073 || dnsDomainIs(host, "www.bedtime.com")
michael@0 1074 || dnsDomainIs(host, "www.beingme.com")
michael@0 1075 || dnsDomainIs(host, "www.belizeexplorer.com")
michael@0 1076 || dnsDomainIs(host, "www.bell-labs.com")
michael@0 1077 || dnsDomainIs(host, "www.bemorecreative.com")
michael@0 1078 || dnsDomainIs(host, "www.bengals.com")
michael@0 1079 || dnsDomainIs(host, "www.benjerry.com")
michael@0 1080 || dnsDomainIs(host, "www.bennygoodsport.com")
michael@0 1081 || dnsDomainIs(host, "www.berenstainbears.com")
michael@0 1082 || dnsDomainIs(host, "www.beringia.com")
michael@0 1083 || dnsDomainIs(host, "www.beritsbest.com")
michael@0 1084 || dnsDomainIs(host, "www.berksweb.com")
michael@0 1085 || dnsDomainIs(host, "www.best.com")
michael@0 1086 || dnsDomainIs(host, "www.betsybyars.com")
michael@0 1087 || dnsDomainIs(host, "www.bfro.net")
michael@0 1088 || dnsDomainIs(host, "www.bgmm.com")
michael@0 1089 || dnsDomainIs(host, "www.bibliography.com")
michael@0 1090 || dnsDomainIs(host, "www.bigblue.com.au")
michael@0 1091 || dnsDomainIs(host, "www.bigchalk.com")
michael@0 1092 || dnsDomainIs(host, "www.bigidea.com")
michael@0 1093 || dnsDomainIs(host, "www.bigtop.com")
michael@0 1094 || dnsDomainIs(host, "www.bikecrawler.com")
michael@0 1095 || dnsDomainIs(host, "www.billboard.com")
michael@0 1096 || dnsDomainIs(host, "www.billybear4kids.com")
michael@0 1097 || dnsDomainIs(host, "www.biography.com")
michael@0 1098 || dnsDomainIs(host, "www.birdnature.com")
michael@0 1099 || dnsDomainIs(host, "www.birdsnways.com")
michael@0 1100 || dnsDomainIs(host, "www.birdtimes.com")
michael@0 1101 || dnsDomainIs(host, "www.birminghamzoo.com")
michael@0 1102 || dnsDomainIs(host, "www.birthdaypartyideas.com")
michael@0 1103 || dnsDomainIs(host, "www.bis.arachsys.com")
michael@0 1104 || dnsDomainIs(host, "www.bkgm.com")
michael@0 1105 || dnsDomainIs(host, "www.blackbaseball.com")
michael@0 1106 || dnsDomainIs(host, "www.blackbeardthepirate.com")
michael@0 1107 || dnsDomainIs(host, "www.blackbeltmag.com")
michael@0 1108 || dnsDomainIs(host, "www.blackfacts.com")
michael@0 1109 || dnsDomainIs(host, "www.blackfeetnation.com")
michael@0 1110 || dnsDomainIs(host, "www.blackhills-info.com")
michael@0 1111 || dnsDomainIs(host, "www.blackholegang.com")
michael@0 1112 || dnsDomainIs(host, "www.blaque.net")
michael@0 1113 || dnsDomainIs(host, "www.blarg.net")
michael@0 1114 || dnsDomainIs(host, "www.blasternaut.com")
michael@0 1115 || dnsDomainIs(host, "www.blizzard.com")
michael@0 1116 || dnsDomainIs(host, "www.blocksite.com")
michael@0 1117 || dnsDomainIs(host, "www.bluejackets.com")
michael@0 1118 || dnsDomainIs(host, "www.bluejays.ca")
michael@0 1119 || dnsDomainIs(host, "www.bluemountain.com")
michael@0 1120 || dnsDomainIs(host, "www.blupete.com")
michael@0 1121 || dnsDomainIs(host, "www.blyton.co.uk")
michael@0 1122 || dnsDomainIs(host, "www.boatnerd.com")
michael@0 1123 || dnsDomainIs(host, "www.boatsafe.com")
michael@0 1124 || dnsDomainIs(host, "www.bonus.com")
michael@0 1125 || dnsDomainIs(host, "www.boowakwala.com")
michael@0 1126 || dnsDomainIs(host, "www.bostonbruins.com")
michael@0 1127 || dnsDomainIs(host, "www.braceface.com")
michael@0 1128 || dnsDomainIs(host, "www.bracesinfo.com")
michael@0 1129 || dnsDomainIs(host, "www.bradkent.com")
michael@0 1130 || dnsDomainIs(host, "www.brainium.com")
michael@0 1131 || dnsDomainIs(host, "www.brainmania.com")
michael@0 1132 || dnsDomainIs(host, "www.brainpop.com")
michael@0 1133 || dnsDomainIs(host, "www.bridalcave.com")
michael@0 1134 || dnsDomainIs(host, "www.brightmoments.com")
michael@0 1135 || dnsDomainIs(host, "www.britannia.com")
michael@0 1136 || dnsDomainIs(host, "www.britannica.com")
michael@0 1137 || dnsDomainIs(host, "www.british-museum.ac.uk")
michael@0 1138 || dnsDomainIs(host, "www.brookes.ac.uk")
michael@0 1139 || dnsDomainIs(host, "www.brookfieldreader.com")
michael@0 1140 || dnsDomainIs(host, "www.btinternet.com")
michael@0 1141 || dnsDomainIs(host, "www.bubbledome.co.nz")
michael@0 1142 || dnsDomainIs(host, "www.buccaneers.com")
michael@0 1143 || dnsDomainIs(host, "www.buffy.com")
michael@0 1144 || dnsDomainIs(host, "www.bullying.co.uk")
michael@0 1145 || dnsDomainIs(host, "www.bumply.com")
michael@0 1146 || dnsDomainIs(host, "www.bungi.com")
michael@0 1147 || dnsDomainIs(host, "www.burlco.lib.nj.us")
michael@0 1148 || dnsDomainIs(host, "www.burlingamepezmuseum.com")
michael@0 1149 || dnsDomainIs(host, "www.bus.ualberta.ca")
michael@0 1150 || dnsDomainIs(host, "www.busprod.com")
michael@0 1151 || dnsDomainIs(host, "www.butlerart.com")
michael@0 1152 || dnsDomainIs(host, "www.butterflies.com")
michael@0 1153 || dnsDomainIs(host, "www.butterflyfarm.co.cr")
michael@0 1154 || dnsDomainIs(host, "www.bway.net")
michael@0 1155 || dnsDomainIs(host, "www.bydonovan.com")
michael@0 1156 || dnsDomainIs(host, "www.ca-mall.com")
michael@0 1157 || dnsDomainIs(host, "www.cabinessence.com")
michael@0 1158 || dnsDomainIs(host, "www.cablecarmuseum.com")
michael@0 1159 || dnsDomainIs(host, "www.cadbury.co.uk")
michael@0 1160 || dnsDomainIs(host, "www.calendarzone.com")
michael@0 1161 || dnsDomainIs(host, "www.calgaryflames.com")
michael@0 1162 || dnsDomainIs(host, "www.californiamissions.com")
michael@0 1163 || dnsDomainIs(host, "www.camalott.com")
michael@0 1164 || dnsDomainIs(host, "www.camelotintl.com")
michael@0 1165 || dnsDomainIs(host, "www.campbellsoup.com")
michael@0 1166 || dnsDomainIs(host, "www.camvista.com")
michael@0 1167 || dnsDomainIs(host, "www.canadiens.com")
michael@0 1168 || dnsDomainIs(host, "www.canals.state.ny.us")
michael@0 1169 || dnsDomainIs(host, "www.candlelightstories.com")
michael@0 1170 || dnsDomainIs(host, "www.candles-museum.com")
michael@0 1171 || dnsDomainIs(host, "www.candystand.com")
michael@0 1172 || dnsDomainIs(host, "www.caneshockey.com")
michael@0 1173 || dnsDomainIs(host, "www.canismajor.com")
michael@0 1174 || dnsDomainIs(host, "www.canucks.com")
michael@0 1175 || dnsDomainIs(host, "www.capecod.net")
michael@0 1176 || dnsDomainIs(host, "www.capital.net")
michael@0 1177 || dnsDomainIs(host, "www.capstonestudio.com")
michael@0 1178 || dnsDomainIs(host, "www.cardblvd.com")
michael@0 1179 || dnsDomainIs(host, "www.caro.net")
michael@0 1180 || dnsDomainIs(host, "www.carolhurst.com")
michael@0 1181 || dnsDomainIs(host, "www.carr.lib.md.us")
michael@0 1182 || dnsDomainIs(host, "www.cartooncorner.com")
michael@0 1183 || dnsDomainIs(host, "www.cartooncritters.com")
michael@0 1184 || dnsDomainIs(host, "www.cartoonnetwork.com")
michael@0 1185 || dnsDomainIs(host, "www.carvingpatterns.com")
michael@0 1186 || dnsDomainIs(host, "www.cashuniversity.com")
michael@0 1187 || dnsDomainIs(host, "www.castles-of-britain.com")
michael@0 1188 || dnsDomainIs(host, "www.castlewales.com")
michael@0 1189 || dnsDomainIs(host, "www.catholic-forum.com")
michael@0 1190 || dnsDomainIs(host, "www.catholic.net")
michael@0 1191 || dnsDomainIs(host, "www.cattle.guelph.on.ca")
michael@0 1192 || dnsDomainIs(host, "www.cavedive.com")
michael@0 1193 || dnsDomainIs(host, "www.caveofthewinds.com")
michael@0 1194 || dnsDomainIs(host, "www.cbc4kids.ca")
michael@0 1195 || dnsDomainIs(host, "www.ccer.ggl.ruu.nl")
michael@0 1196 || dnsDomainIs(host, "www.ccnet.com")
michael@0 1197 || dnsDomainIs(host, "www.celineonline.com")
michael@0 1198 || dnsDomainIs(host, "www.cellsalive.com")
michael@0 1199 || dnsDomainIs(host, "www.centuryinshoes.com")
michael@0 1200 || dnsDomainIs(host, "www.cfl.ca")
michael@0 1201 || dnsDomainIs(host, "www.channel4.com")
michael@0 1202 || dnsDomainIs(host, "www.channel8.net")
michael@0 1203 || dnsDomainIs(host, "www.chanukah99.com")
michael@0 1204 || dnsDomainIs(host, "www.charged.com")
michael@0 1205 || dnsDomainIs(host, "www.chargers.com")
michael@0 1206 || dnsDomainIs(host, "www.charlotte.com")
michael@0 1207 || dnsDomainIs(host, "www.chaseday.com")
michael@0 1208 || dnsDomainIs(host, "www.chateauversailles.fr")
michael@0 1209 || dnsDomainIs(host, "www.cheatcc.com")
michael@0 1210 || dnsDomainIs(host, "www.cheerleading.net")
michael@0 1211 || dnsDomainIs(host, "www.cheese.com")
michael@0 1212 || dnsDomainIs(host, "www.chem4kids.com")
michael@0 1213 || dnsDomainIs(host, "www.chemicool.com")
michael@0 1214 || dnsDomainIs(host, "www.cherbearsden.com")
michael@0 1215 || dnsDomainIs(host, "www.chesskids.com")
michael@0 1216 || dnsDomainIs(host, "www.chessvariants.com")
michael@0 1217 || dnsDomainIs(host, "www.cheungswingchun.com")
michael@0 1218 || dnsDomainIs(host, "www.chevroncars.com")
michael@0 1219 || dnsDomainIs(host, "www.chibi.simplenet.com")
michael@0 1220 || dnsDomainIs(host, "www.chicagobears.com")
michael@0 1221 || dnsDomainIs(host, "www.chicagoblackhawks.com")
michael@0 1222 || dnsDomainIs(host, "www.chickasaw.net")
michael@0 1223 || dnsDomainIs(host, "www.childrensmusic.co.uk")
michael@0 1224 || dnsDomainIs(host, "www.childrenssoftware.com")
michael@0 1225 || dnsDomainIs(host, "www.childrenstory.com")
michael@0 1226 || dnsDomainIs(host, "www.childrenwithdiabetes.com")
michael@0 1227 || dnsDomainIs(host, "www.chinapage.com")
michael@0 1228 || dnsDomainIs(host, "www.chinatoday.com")
michael@0 1229 || dnsDomainIs(host, "www.chinavista.com")
michael@0 1230 || dnsDomainIs(host, "www.chinnet.net")
michael@0 1231 || dnsDomainIs(host, "www.chiquita.com")
michael@0 1232 || dnsDomainIs(host, "www.chisox.com")
michael@0 1233 || dnsDomainIs(host, "www.chivalry.com")
michael@0 1234 || dnsDomainIs(host, "www.christiananswers.net")
michael@0 1235 || dnsDomainIs(host, "www.christianity.com")
michael@0 1236 || dnsDomainIs(host, "www.christmas.com")
michael@0 1237 || dnsDomainIs(host, "www.christmas98.com")
michael@0 1238 || dnsDomainIs(host, "www.chron.com")
michael@0 1239 || dnsDomainIs(host, "www.chronique.com")
michael@0 1240 || dnsDomainIs(host, "www.chuckecheese.com")
michael@0 1241 || dnsDomainIs(host, "www.chucklebait.com")
michael@0 1242 || dnsDomainIs(host, "www.chunkymonkey.com")
michael@0 1243 || dnsDomainIs(host, "www.ci.chi.il.us")
michael@0 1244 || dnsDomainIs(host, "www.ci.nyc.ny.us")
michael@0 1245 || dnsDomainIs(host, "www.ci.phoenix.az.us")
michael@0 1246 || dnsDomainIs(host, "www.ci.san-diego.ca.us")
michael@0 1247 || dnsDomainIs(host, "www.cibc.com")
michael@0 1248 || dnsDomainIs(host, "www.ciderpresspottery.com")
michael@0 1249 || dnsDomainIs(host, "www.cincinnatireds.com")
michael@0 1250 || dnsDomainIs(host, "www.circusparade.com")
michael@0 1251 || dnsDomainIs(host, "www.circusweb.com")
michael@0 1252 || dnsDomainIs(host, "www.cirquedusoleil.com")
michael@0 1253 || dnsDomainIs(host, "www.cit.state.vt.us")
michael@0 1254 || dnsDomainIs(host, "www.citycastles.com")
michael@0 1255 || dnsDomainIs(host, "www.cityu.edu.hk")
michael@0 1256 || dnsDomainIs(host, "www.civicmind.com")
michael@0 1257 || dnsDomainIs(host, "www.civil-war.net")
michael@0 1258 || dnsDomainIs(host, "www.civilization.ca")
michael@0 1259 || dnsDomainIs(host, "www.cl.cam.ac.uk")
michael@0 1260 || dnsDomainIs(host, "www.clantongang.com")
michael@0 1261 || dnsDomainIs(host, "www.clark.net")
michael@0 1262 || dnsDomainIs(host, "www.classicgaming.com")
michael@0 1263 || dnsDomainIs(host, "www.claus.com")
michael@0 1264 || dnsDomainIs(host, "www.clayz.com")
michael@0 1265 || dnsDomainIs(host, "www.clearcf.uvic.ca")
michael@0 1266 || dnsDomainIs(host, "www.clearlight.com")
michael@0 1267 || dnsDomainIs(host, "www.clemusart.com")
michael@0 1268 || dnsDomainIs(host, "www.clevelandbrowns.com")
michael@0 1269 || dnsDomainIs(host, "www.clipartcastle.com")
michael@0 1270 || dnsDomainIs(host, "www.clubi.ie")
michael@0 1271 || dnsDomainIs(host, "www.cnn.com")
michael@0 1272 || dnsDomainIs(host, "www.co.henrico.va.us")
michael@0 1273 || dnsDomainIs(host, "www.coax.net")
michael@0 1274 || dnsDomainIs(host, "www.cocacola.com")
michael@0 1275 || dnsDomainIs(host, "www.cocori.com")
michael@0 1276 || dnsDomainIs(host, "www.codesmiths.com")
michael@0 1277 || dnsDomainIs(host, "www.codetalk.fed.us")
michael@0 1278 || dnsDomainIs(host, "www.coin-gallery.com")
michael@0 1279 || dnsDomainIs(host, "www.colinthompson.com")
michael@0 1280 || dnsDomainIs(host, "www.collectoronline.com")
michael@0 1281 || dnsDomainIs(host, "www.colonialhall.com")
michael@0 1282 || dnsDomainIs(host, "www.coloradoavalanche.com")
michael@0 1283 || dnsDomainIs(host, "www.coloradorockies.com")
michael@0 1284 || dnsDomainIs(host, "www.colormathpink.com")
michael@0 1285 || dnsDomainIs(host, "www.colts.com")
michael@0 1286 || dnsDomainIs(host, "www.comet.net")
michael@0 1287 || dnsDomainIs(host, "www.cometsystems.com")
michael@0 1288 || dnsDomainIs(host, "www.comicbookresources.com")
michael@0 1289 || dnsDomainIs(host, "www.comicspage.com")
michael@0 1290 || dnsDomainIs(host, "www.compassnet.com")
michael@0 1291 || dnsDomainIs(host, "www.compleatbellairs.com")
michael@0 1292 || dnsDomainIs(host, "www.comptons.com")
michael@0 1293 || dnsDomainIs(host, "www.concentric.net")
michael@0 1294 || dnsDomainIs(host, "www.congogorillaforest.com")
michael@0 1295 || dnsDomainIs(host, "www.conjuror.com")
michael@0 1296 || dnsDomainIs(host, "www.conk.com")
michael@0 1297 || dnsDomainIs(host, "www.conservation.state.mo.us")
michael@0 1298 || dnsDomainIs(host, "www.contracostatimes.com")
michael@0 1299 || dnsDomainIs(host, "www.control.chalmers.se")
michael@0 1300 || dnsDomainIs(host, "www.cookierecipe.com")
michael@0 1301 || dnsDomainIs(host, "www.cooljapanesetoys.com")
michael@0 1302 || dnsDomainIs(host, "www.cooper.com")
michael@0 1303 || dnsDomainIs(host, "www.corpcomm.net")
michael@0 1304 || dnsDomainIs(host, "www.corrietenboom.com")
michael@0 1305 || dnsDomainIs(host, "www.corynet.com")
michael@0 1306 || dnsDomainIs(host, "www.corypaints.com")
michael@0 1307 || dnsDomainIs(host, "www.cosmosmith.com")
michael@0 1308 || dnsDomainIs(host, "www.countdown2000.com")
michael@0 1309 || dnsDomainIs(host, "www.cowboy.net")
michael@0 1310 || dnsDomainIs(host, "www.cowboypal.com")
michael@0 1311 || dnsDomainIs(host, "www.cowcreek.com")
michael@0 1312 || dnsDomainIs(host, "www.cowgirl.net")
michael@0 1313 || dnsDomainIs(host, "www.cowgirls.com")
michael@0 1314 || dnsDomainIs(host, "www.cp.duluth.mn.us")
michael@0 1315 || dnsDomainIs(host, "www.cpsweb.com")
michael@0 1316 || dnsDomainIs(host, "www.craftideas.com")
michael@0 1317 || dnsDomainIs(host, "www.craniamania.com")
michael@0 1318 || dnsDomainIs(host, "www.crater.lake.national-park.com")
michael@0 1319 || dnsDomainIs(host, "www.crayoncrawler.com")
michael@0 1320 || dnsDomainIs(host, "www.crazybone.com")
michael@0 1321 || dnsDomainIs(host, "www.crazybones.com")
michael@0 1322 || dnsDomainIs(host, "www.crd.ge.com")
michael@0 1323 || dnsDomainIs(host, "www.create4kids.com")
michael@0 1324 || dnsDomainIs(host, "www.creativemusic.com")
michael@0 1325 || dnsDomainIs(host, "www.crocodilian.com")
michael@0 1326 || dnsDomainIs(host, "www.crop.cri.nz")
michael@0 1327 || dnsDomainIs(host, "www.cruzio.com")
michael@0 1328 || dnsDomainIs(host, "www.crwflags.com")
michael@0 1329 || dnsDomainIs(host, "www.cryptograph.com")
michael@0 1330 || dnsDomainIs(host, "www.cryst.bbk.ac.uk")
michael@0 1331 || dnsDomainIs(host, "www.cs.bilkent.edu.tr")
michael@0 1332 || dnsDomainIs(host, "www.cs.man.ac.uk")
michael@0 1333 || dnsDomainIs(host, "www.cs.sfu.ca")
michael@0 1334 || dnsDomainIs(host, "www.cs.ubc.ca")
michael@0 1335 || dnsDomainIs(host, "www.csd.uu.se")
michael@0 1336 || dnsDomainIs(host, "www.csmonitor.com")
michael@0 1337 || dnsDomainIs(host, "www.csse.monash.edu.au")
michael@0 1338 || dnsDomainIs(host, "www.cstone.net")
michael@0 1339 || dnsDomainIs(host, "www.csu.edu.au")
michael@0 1340 || dnsDomainIs(host, "www.cubs.com")
michael@0 1341 || dnsDomainIs(host, "www.culture.fr")
michael@0 1342 || dnsDomainIs(host, "www.cultures.com")
michael@0 1343 || dnsDomainIs(host, "www.curtis-collection.com")
michael@0 1344 || dnsDomainIs(host, "www.cut-the-knot.com")
michael@0 1345 || dnsDomainIs(host, "www.cws-scf.ec.gc.ca")
michael@0 1346 || dnsDomainIs(host, "www.cyber-dyne.com")
michael@0 1347 || dnsDomainIs(host, "www.cyberbee.com")
michael@0 1348 || dnsDomainIs(host, "www.cyberbee.net")
michael@0 1349 || dnsDomainIs(host, "www.cybercom.net")
michael@0 1350 || dnsDomainIs(host, "www.cybercomm.net")
michael@0 1351 || dnsDomainIs(host, "www.cybercomm.nl")
michael@0 1352 || dnsDomainIs(host, "www.cybercorp.co.nz")
michael@0 1353 || dnsDomainIs(host, "www.cybercs.com")
michael@0 1354 || dnsDomainIs(host, "www.cybergoal.com")
michael@0 1355 || dnsDomainIs(host, "www.cyberkids.com")
michael@0 1356 || dnsDomainIs(host, "www.cyberspaceag.com")
michael@0 1357 || dnsDomainIs(host, "www.cyberteens.com")
michael@0 1358 || dnsDomainIs(host, "www.cybertours.com")
michael@0 1359 || dnsDomainIs(host, "www.cybiko.com")
michael@0 1360 || dnsDomainIs(host, "www.czweb.com")
michael@0 1361 || dnsDomainIs(host, "www.d91.k12.id.us")
michael@0 1362 || dnsDomainIs(host, "www.dailygrammar.com")
michael@0 1363 || dnsDomainIs(host, "www.dakidz.com")
michael@0 1364 || dnsDomainIs(host, "www.dalejarrettonline.com")
michael@0 1365 || dnsDomainIs(host, "www.dallascowboys.com")
michael@0 1366 || dnsDomainIs(host, "www.dallasdogndisc.com")
michael@0 1367 || dnsDomainIs(host, "www.dallasstars.com")
michael@0 1368 || dnsDomainIs(host, "www.damnyankees.com")
michael@0 1369 || dnsDomainIs(host, "www.danceart.com")
michael@0 1370 || dnsDomainIs(host, "www.daniellesplace.com")
michael@0 1371 || dnsDomainIs(host, "www.dare-america.com")
michael@0 1372 || dnsDomainIs(host, "www.darkfish.com")
michael@0 1373 || dnsDomainIs(host, "www.darsbydesign.com")
michael@0 1374 || dnsDomainIs(host, "www.datadragon.com")
michael@0 1375 || dnsDomainIs(host, "www.davidreilly.com")
michael@0 1376 || dnsDomainIs(host, "www.dccomics.com")
michael@0 1377 || dnsDomainIs(host, "www.dcn.davis.ca.us")
michael@0 1378 || dnsDomainIs(host, "www.deepseaworld.com")
michael@0 1379 || dnsDomainIs(host, "www.delawaretribeofindians.nsn.us")
michael@0 1380 || dnsDomainIs(host, "www.demon.co.uk")
michael@0 1381 || dnsDomainIs(host, "www.denverbroncos.com")
michael@0 1382 || dnsDomainIs(host, "www.denverpost.com")
michael@0 1383 || dnsDomainIs(host, "www.dep.state.pa.us")
michael@0 1384 || dnsDomainIs(host, "www.desert-fairy.com")
michael@0 1385 || dnsDomainIs(host, "www.desert-storm.com")
michael@0 1386 || dnsDomainIs(host, "www.desertusa.com")
michael@0 1387 || dnsDomainIs(host, "www.designltd.com")
michael@0 1388 || dnsDomainIs(host, "www.designsbykat.com")
michael@0 1389 || dnsDomainIs(host, "www.detnews.com")
michael@0 1390 || dnsDomainIs(host, "www.detroitlions.com")
michael@0 1391 || dnsDomainIs(host, "www.detroitredwings.com")
michael@0 1392 || dnsDomainIs(host, "www.detroittigers.com")
michael@0 1393 || dnsDomainIs(host, "www.deutsches-museum.de")
michael@0 1394 || dnsDomainIs(host, "www.devilray.com")
michael@0 1395 || dnsDomainIs(host, "www.dhorse.com")
michael@0 1396 || dnsDomainIs(host, "www.diana-ross.co.uk")
michael@0 1397 || dnsDomainIs(host, "www.dianarossandthesupremes.net")
michael@0 1398 || dnsDomainIs(host, "www.diaryproject.com")
michael@0 1399 || dnsDomainIs(host, "www.dickbutkus.com")
michael@0 1400 || dnsDomainIs(host, "www.dickshovel.com")
michael@0 1401 || dnsDomainIs(host, "www.dictionary.com")
michael@0 1402 || dnsDomainIs(host, "www.didyouknow.com")
michael@0 1403 || dnsDomainIs(host, "www.diegorivera.com")
michael@0 1404 || dnsDomainIs(host, "www.digitalcentury.com")
michael@0 1405 || dnsDomainIs(host, "www.digitaldog.com")
michael@0 1406 || dnsDomainIs(host, "www.digiweb.com")
michael@0 1407 || dnsDomainIs(host, "www.dimdima.com")
michael@0 1408 || dnsDomainIs(host, "www.dinodon.com")
michael@0 1409 || dnsDomainIs(host, "www.dinosauria.com")
michael@0 1410 || dnsDomainIs(host, "www.discovereso.com")
michael@0 1411 || dnsDomainIs(host, "www.discovergalapagos.com")
michael@0 1412 || dnsDomainIs(host, "www.discovergames.com")
michael@0 1413 || dnsDomainIs(host, "www.discoveringarchaeology.com")
michael@0 1414 || dnsDomainIs(host, "www.discoveringmontana.com")
michael@0 1415 || dnsDomainIs(host, "www.discoverlearning.com")
michael@0 1416 || dnsDomainIs(host, "www.discovery.com")
michael@0 1417 || dnsDomainIs(host, "www.disknet.com")
michael@0 1418 || dnsDomainIs(host, "www.disney.go.com")
michael@0 1419 || dnsDomainIs(host, "www.distinguishedwomen.com")
michael@0 1420 || dnsDomainIs(host, "www.dkonline.com")
michael@0 1421 || dnsDomainIs(host, "www.dltk-kids.com")
michael@0 1422 || dnsDomainIs(host, "www.dmgi.com")
michael@0 1423 || dnsDomainIs(host, "www.dnr.state.md.us")
michael@0 1424 || dnsDomainIs(host, "www.dnr.state.mi.us")
michael@0 1425 || dnsDomainIs(host, "www.dnr.state.wi.us")
michael@0 1426 || dnsDomainIs(host, "www.dodgers.com")
michael@0 1427 || dnsDomainIs(host, "www.dodoland.com")
michael@0 1428 || dnsDomainIs(host, "www.dog-play.com")
michael@0 1429 || dnsDomainIs(host, "www.dogbreedinfo.com")
michael@0 1430 || dnsDomainIs(host, "www.doginfomat.com")
michael@0 1431 || dnsDomainIs(host, "www.dole5aday.com")
michael@0 1432 || dnsDomainIs(host, "www.dollart.com")
michael@0 1433 || dnsDomainIs(host, "www.dolliedish.com")
michael@0 1434 || dnsDomainIs(host, "www.dome2000.co.uk")
michael@0 1435 || dnsDomainIs(host, "www.domtar.com")
michael@0 1436 || dnsDomainIs(host, "www.donegal.k12.pa.us")
michael@0 1437 || dnsDomainIs(host, "www.dorneypark.com")
michael@0 1438 || dnsDomainIs(host, "www.dorothyhinshawpatent.com")
michael@0 1439 || dnsDomainIs(host, "www.dougweb.com")
michael@0 1440 || dnsDomainIs(host, "www.dps.state.ak.us")
michael@0 1441 || dnsDomainIs(host, "www.draw3d.com")
michael@0 1442 || dnsDomainIs(host, "www.dreamgate.com")
michael@0 1443 || dnsDomainIs(host, "www.dreamkitty.com")
michael@0 1444 || dnsDomainIs(host, "www.dreamscape.com")
michael@0 1445 || dnsDomainIs(host, "www.dreamtime.net.au")
michael@0 1446 || dnsDomainIs(host, "www.drpeppermuseum.com")
michael@0 1447 || dnsDomainIs(host, "www.drscience.com")
michael@0 1448 || dnsDomainIs(host, "www.drseward.com")
michael@0 1449 || dnsDomainIs(host, "www.drtoy.com")
michael@0 1450 || dnsDomainIs(host, "www.dse.nl")
michael@0 1451 || dnsDomainIs(host, "www.dtic.mil")
michael@0 1452 || dnsDomainIs(host, "www.duracell.com")
michael@0 1453 || dnsDomainIs(host, "www.dustbunny.com")
michael@0 1454 || dnsDomainIs(host, "www.dynanet.com")
michael@0 1455 || dnsDomainIs(host, "www.eagerreaders.com")
michael@0 1456 || dnsDomainIs(host, "www.eaglekids.com")
michael@0 1457 || dnsDomainIs(host, "www.earthcalendar.net")
michael@0 1458 || dnsDomainIs(host, "www.earthday.net")
michael@0 1459 || dnsDomainIs(host, "www.earthdog.com")
michael@0 1460 || dnsDomainIs(host, "www.earthwatch.com")
michael@0 1461 || dnsDomainIs(host, "www.ease.com")
michael@0 1462 || dnsDomainIs(host, "www.eastasia.ws")
michael@0 1463 || dnsDomainIs(host, "www.easytype.com")
michael@0 1464 || dnsDomainIs(host, "www.eblewis.com")
michael@0 1465 || dnsDomainIs(host, "www.ebs.hw.ac.uk")
michael@0 1466 || dnsDomainIs(host, "www.eclipse.net")
michael@0 1467 || dnsDomainIs(host, "www.eco-pros.com")
michael@0 1468 || dnsDomainIs(host, "www.edbydesign.com")
michael@0 1469 || dnsDomainIs(host, "www.eddytheeco-dog.com")
michael@0 1470 || dnsDomainIs(host, "www.edgate.com")
michael@0 1471 || dnsDomainIs(host, "www.edmontonoilers.com")
michael@0 1472 || dnsDomainIs(host, "www.edu-source.com")
michael@0 1473 || dnsDomainIs(host, "www.edu.gov.on.ca")
michael@0 1474 || dnsDomainIs(host, "www.edu4kids.com")
michael@0 1475 || dnsDomainIs(host, "www.educ.uvic.ca")
michael@0 1476 || dnsDomainIs(host, "www.educate.org.uk")
michael@0 1477 || dnsDomainIs(host, "www.education-world.com")
michael@0 1478 || dnsDomainIs(host, "www.edunet.com")
michael@0 1479 || dnsDomainIs(host, "www.eduplace.com")
michael@0 1480 || dnsDomainIs(host, "www.edupuppy.com")
michael@0 1481 || dnsDomainIs(host, "www.eduweb.com")
michael@0 1482 || dnsDomainIs(host, "www.ee.ryerson.ca")
michael@0 1483 || dnsDomainIs(host, "www.ee.surrey.ac.uk")
michael@0 1484 || dnsDomainIs(host, "www.eeggs.com")
michael@0 1485 || dnsDomainIs(host, "www.efes.com")
michael@0 1486 || dnsDomainIs(host, "www.egalvao.com")
michael@0 1487 || dnsDomainIs(host, "www.egypt.com")
michael@0 1488 || dnsDomainIs(host, "www.egyptology.com")
michael@0 1489 || dnsDomainIs(host, "www.ehobbies.com")
michael@0 1490 || dnsDomainIs(host, "www.ehow.com")
michael@0 1491 || dnsDomainIs(host, "www.eia.brad.ac.uk")
michael@0 1492 || dnsDomainIs(host, "www.elbalero.gob.mx")
michael@0 1493 || dnsDomainIs(host, "www.eliki.com")
michael@0 1494 || dnsDomainIs(host, "www.elnino.com")
michael@0 1495 || dnsDomainIs(host, "www.elok.com")
michael@0 1496 || dnsDomainIs(host, "www.emf.net")
michael@0 1497 || dnsDomainIs(host, "www.emsphone.com")
michael@0 1498 || dnsDomainIs(host, "www.emulateme.com")
michael@0 1499 || dnsDomainIs(host, "www.en.com")
michael@0 1500 || dnsDomainIs(host, "www.enature.com")
michael@0 1501 || dnsDomainIs(host, "www.enchantedlearning.com")
michael@0 1502 || dnsDomainIs(host, "www.encyclopedia.com")
michael@0 1503 || dnsDomainIs(host, "www.endex.com")
michael@0 1504 || dnsDomainIs(host, "www.enjoyillinois.com")
michael@0 1505 || dnsDomainIs(host, "www.enn.com")
michael@0 1506 || dnsDomainIs(host, "www.enriqueig.com")
michael@0 1507 || dnsDomainIs(host, "www.enteract.com")
michael@0 1508 || dnsDomainIs(host, "www.epals.com")
michael@0 1509 || dnsDomainIs(host, "www.equine-world.co.uk")
michael@0 1510 || dnsDomainIs(host, "www.eric-carle.com")
michael@0 1511 || dnsDomainIs(host, "www.ericlindros.net")
michael@0 1512 || dnsDomainIs(host, "www.escape.com")
michael@0 1513 || dnsDomainIs(host, "www.eskimo.com")
michael@0 1514 || dnsDomainIs(host, "www.essentialsofmusic.com")
michael@0 1515 || dnsDomainIs(host, "www.etch-a-sketch.com")
michael@0 1516 || dnsDomainIs(host, "www.ethanallen.together.com")
michael@0 1517 || dnsDomainIs(host, "www.etoys.com")
michael@0 1518 || dnsDomainIs(host, "www.eurekascience.com")
michael@0 1519 || dnsDomainIs(host, "www.euronet.nl")
michael@0 1520 || dnsDomainIs(host, "www.everyrule.com")
michael@0 1521 || dnsDomainIs(host, "www.ex.ac.uk")
michael@0 1522 || dnsDomainIs(host, "www.excite.com")
michael@0 1523 || dnsDomainIs(host, "www.execpc.com")
michael@0 1524 || dnsDomainIs(host, "www.execulink.com")
michael@0 1525 || dnsDomainIs(host, "www.exn.net")
michael@0 1526 || dnsDomainIs(host, "www.expa.hvu.nl")
michael@0 1527 || dnsDomainIs(host, "www.expage.com")
michael@0 1528 || dnsDomainIs(host, "www.explode.to")
michael@0 1529 || dnsDomainIs(host, "www.explorescience.com")
michael@0 1530 || dnsDomainIs(host, "www.explorezone.com")
michael@0 1531 || dnsDomainIs(host, "www.extremescience.com")
michael@0 1532 || dnsDomainIs(host, "www.eyelid.co.uk")
michael@0 1533 || dnsDomainIs(host, "www.eyeneer.com")
michael@0 1534 || dnsDomainIs(host, "www.eyesofachild.com")
michael@0 1535 || dnsDomainIs(host, "www.eyesofglory.com")
michael@0 1536 || dnsDomainIs(host, "www.ezschool.com")
michael@0 1537 || dnsDomainIs(host, "www.f1-live.com")
michael@0 1538 || dnsDomainIs(host, "www.fables.co.uk")
michael@0 1539 || dnsDomainIs(host, "www.factmonster.com")
michael@0 1540 || dnsDomainIs(host, "www.fairygodmother.com")
michael@0 1541 || dnsDomainIs(host, "www.familybuzz.com")
michael@0 1542 || dnsDomainIs(host, "www.familygames.com")
michael@0 1543 || dnsDomainIs(host, "www.familygardening.com")
michael@0 1544 || dnsDomainIs(host, "www.familyinternet.com")
michael@0 1545 || dnsDomainIs(host, "www.familymoney.com")
michael@0 1546 || dnsDomainIs(host, "www.familyplay.com")
michael@0 1547 || dnsDomainIs(host, "www.famousbirthdays.com")
michael@0 1548 || dnsDomainIs(host, "www.fandom.com")
michael@0 1549 || dnsDomainIs(host, "www.fansites.com")
michael@0 1550 || dnsDomainIs(host, "www.faoschwarz.com")
michael@0 1551 || dnsDomainIs(host, "www.fbe.unsw.edu.au")
michael@0 1552 || dnsDomainIs(host, "www.fcps.k12.va.us")
michael@0 1553 || dnsDomainIs(host, "www.fellersartsfactory.com")
michael@0 1554 || dnsDomainIs(host, "www.ferrari.it")
michael@0 1555 || dnsDomainIs(host, "www.fertnel.com")
michael@0 1556 || dnsDomainIs(host, "www.fh-konstanz.de")
michael@0 1557 || dnsDomainIs(host, "www.fhw.gr")
michael@0 1558 || dnsDomainIs(host, "www.fibblesnork.com")
michael@0 1559 || dnsDomainIs(host, "www.fidnet.com")
michael@0 1560 || dnsDomainIs(host, "www.fieldhockey.com")
michael@0 1561 || dnsDomainIs(host, "www.fieldhockeytraining.com")
michael@0 1562 || dnsDomainIs(host, "www.fieler.com")
michael@0 1563 || dnsDomainIs(host, "www.finalfour.net")
michael@0 1564 || dnsDomainIs(host, "www.finifter.com")
michael@0 1565 || dnsDomainIs(host, "www.fireworks-safety.com")
michael@0 1566 || dnsDomainIs(host, "www.firstcut.com")
michael@0 1567 || dnsDomainIs(host, "www.firstnations.com")
michael@0 1568 || dnsDomainIs(host, "www.fishbc.com")
michael@0 1569 || dnsDomainIs(host, "www.fisher-price.com")
michael@0 1570 || dnsDomainIs(host, "www.fisheyeview.com")
michael@0 1571 || dnsDomainIs(host, "www.fishgeeks.com")
michael@0 1572 || dnsDomainIs(host, "www.fishindex.com")
michael@0 1573 || dnsDomainIs(host, "www.fitzgeraldstudio.com")
michael@0 1574 || dnsDomainIs(host, "www.flags.net")
michael@0 1575 || dnsDomainIs(host, "www.flail.com")
michael@0 1576 || dnsDomainIs(host, "www.flamarlins.com")
michael@0 1577 || dnsDomainIs(host, "www.flausa.com")
michael@0 1578 || dnsDomainIs(host, "www.floodlight-findings.com")
michael@0 1579 || dnsDomainIs(host, "www.floridahistory.com")
michael@0 1580 || dnsDomainIs(host, "www.floridapanthers.com")
michael@0 1581 || dnsDomainIs(host, "www.fng.fi")
michael@0 1582 || dnsDomainIs(host, "www.foodsci.uoguelph.ca")
michael@0 1583 || dnsDomainIs(host, "www.foremost.com")
michael@0 1584 || dnsDomainIs(host, "www.fortress.am")
michael@0 1585 || dnsDomainIs(host, "www.fortunecity.com")
michael@0 1586 || dnsDomainIs(host, "www.fosterclub.com")
michael@0 1587 || dnsDomainIs(host, "www.foundus.com")
michael@0 1588 || dnsDomainIs(host, "www.fourmilab.ch")
michael@0 1589 || dnsDomainIs(host, "www.fox.com")
michael@0 1590 || dnsDomainIs(host, "www.foxfamilychannel.com")
michael@0 1591 || dnsDomainIs(host, "www.foxhome.com")
michael@0 1592 || dnsDomainIs(host, "www.foxkids.com")
michael@0 1593 || dnsDomainIs(host, "www.franceway.com")
michael@0 1594 || dnsDomainIs(host, "www.fred.net")
michael@0 1595 || dnsDomainIs(host, "www.fredpenner.com")
michael@0 1596 || dnsDomainIs(host, "www.freedomknot.com")
michael@0 1597 || dnsDomainIs(host, "www.freejigsawpuzzles.com")
michael@0 1598 || dnsDomainIs(host, "www.freenet.edmonton.ab.ca")
michael@0 1599 || dnsDomainIs(host, "www.frii.com")
michael@0 1600 || dnsDomainIs(host, "www.frisbee.com")
michael@0 1601 || dnsDomainIs(host, "www.fritolay.com")
michael@0 1602 || dnsDomainIs(host, "www.frogsonice.com")
michael@0 1603 || dnsDomainIs(host, "www.frontiernet.net")
michael@0 1604 || dnsDomainIs(host, "www.fs.fed.us")
michael@0 1605 || dnsDomainIs(host, "www.funattic.com")
michael@0 1606 || dnsDomainIs(host, ".funbrain.com")
michael@0 1607 || dnsDomainIs(host, "www.fundango.com")
michael@0 1608 || dnsDomainIs(host, "www.funisland.com")
michael@0 1609 || dnsDomainIs(host, "www.funkandwagnalls.com")
michael@0 1610 || dnsDomainIs(host, "www.funorama.com")
michael@0 1611 || dnsDomainIs(host, "www.funschool.com")
michael@0 1612 || dnsDomainIs(host, "www.funster.com")
michael@0 1613 || dnsDomainIs(host, "www.furby.com")
michael@0 1614 || dnsDomainIs(host, "www.fusion.org.uk")
michael@0 1615 || dnsDomainIs(host, "www.futcher.com")
michael@0 1616 || dnsDomainIs(host, "www.futurescan.com")
michael@0 1617 || dnsDomainIs(host, "www.fyi.net")
michael@0 1618 || dnsDomainIs(host, "www.gailgibbons.com")
michael@0 1619 || dnsDomainIs(host, "www.galegroup.com")
michael@0 1620 || dnsDomainIs(host, "www.gambia.com")
michael@0 1621 || dnsDomainIs(host, "www.gamecabinet.com")
michael@0 1622 || dnsDomainIs(host, "www.gamecenter.com")
michael@0 1623 || dnsDomainIs(host, "www.gamefaqs.com")
michael@0 1624 || dnsDomainIs(host, "www.garfield.com")
michael@0 1625 || dnsDomainIs(host, "www.garyharbo.com")
michael@0 1626 || dnsDomainIs(host, "www.gatefish.com")
michael@0 1627 || dnsDomainIs(host, "www.gateway-va.com")
michael@0 1628 || dnsDomainIs(host, "www.gazillionaire.com")
michael@0 1629 || dnsDomainIs(host, "www.gearhead.com")
michael@0 1630 || dnsDomainIs(host, "www.genesplicing.com")
michael@0 1631 || dnsDomainIs(host, "www.genhomepage.com")
michael@0 1632 || dnsDomainIs(host, "www.geobop.com")
michael@0 1633 || dnsDomainIs(host, "www.geocities.com")
michael@0 1634 || dnsDomainIs(host, "www.geographia.com")
michael@0 1635 || dnsDomainIs(host, "www.georgeworld.com")
michael@0 1636 || dnsDomainIs(host, "www.georgian.net")
michael@0 1637 || dnsDomainIs(host, "www.german-way.com")
michael@0 1638 || dnsDomainIs(host, "www.germanfortravellers.com")
michael@0 1639 || dnsDomainIs(host, "www.germantown.k12.il.us")
michael@0 1640 || dnsDomainIs(host, "www.germany-tourism.de")
michael@0 1641 || dnsDomainIs(host, "www.getmusic.com")
michael@0 1642 || dnsDomainIs(host, "www.gettysburg.com")
michael@0 1643 || dnsDomainIs(host, "www.ghirardellisq.com")
michael@0 1644 || dnsDomainIs(host, "www.ghosttowngallery.com")
michael@0 1645 || dnsDomainIs(host, "www.ghosttownsusa.com")
michael@0 1646 || dnsDomainIs(host, "www.giants.com")
michael@0 1647 || dnsDomainIs(host, "www.gibraltar.gi")
michael@0 1648 || dnsDomainIs(host, "www.gigglepoetry.com")
michael@0 1649 || dnsDomainIs(host, "www.gilchriststudios.com")
michael@0 1650 || dnsDomainIs(host, "www.gillslap.freeserve.co.uk")
michael@0 1651 || dnsDomainIs(host, "www.gilmer.net")
michael@0 1652 || dnsDomainIs(host, "www.gio.gov.tw")
michael@0 1653 || dnsDomainIs(host, "www.girltech.com")
michael@0 1654 || dnsDomainIs(host, "www.girlzone.com")
michael@0 1655 || dnsDomainIs(host, "www.globalgang.org.uk")
michael@0 1656 || dnsDomainIs(host, "www.globalindex.com")
michael@0 1657 || dnsDomainIs(host, "www.globalinfo.com")
michael@0 1658 || dnsDomainIs(host, "www.gloriafan.com")
michael@0 1659 || dnsDomainIs(host, "www.gms.ocps.k12.fl.us")
michael@0 1660 || dnsDomainIs(host, "www.go-go-diggity.com")
michael@0 1661 || dnsDomainIs(host, "www.goals.com")
michael@0 1662 || dnsDomainIs(host, "www.godiva.com")
michael@0 1663 || dnsDomainIs(host, "www.golden-retriever.com")
michael@0 1664 || dnsDomainIs(host, "www.goldenbooks.com")
michael@0 1665 || dnsDomainIs(host, "www.goldeneggs.com.au")
michael@0 1666 || dnsDomainIs(host, "www.golfonline.com")
michael@0 1667 || dnsDomainIs(host, "www.goobo.com")
michael@0 1668 || dnsDomainIs(host, "www.goodearthgraphics.com")
michael@0 1669 || dnsDomainIs(host, "www.goodyear.com")
michael@0 1670 || dnsDomainIs(host, "www.gopbi.com")
michael@0 1671 || dnsDomainIs(host, "www.gorge.net")
michael@0 1672 || dnsDomainIs(host, "www.gorp.com")
michael@0 1673 || dnsDomainIs(host, "www.got-milk.com")
michael@0 1674 || dnsDomainIs(host, "www.gov.ab.ca")
michael@0 1675 || dnsDomainIs(host, "www.gov.nb.ca")
michael@0 1676 || dnsDomainIs(host, "www.grammarbook.com")
michael@0 1677 || dnsDomainIs(host, "www.grammarlady.com")
michael@0 1678 || dnsDomainIs(host, "www.grandparents-day.com")
michael@0 1679 || dnsDomainIs(host, "www.granthill.com")
michael@0 1680 || dnsDomainIs(host, "www.grayweb.com")
michael@0 1681 || dnsDomainIs(host, "www.greatbuildings.com")
michael@0 1682 || dnsDomainIs(host, "www.greatkids.com")
michael@0 1683 || dnsDomainIs(host, "www.greatscience.com")
michael@0 1684 || dnsDomainIs(host, "www.greeceny.com")
michael@0 1685 || dnsDomainIs(host, "www.greenkeepers.com")
michael@0 1686 || dnsDomainIs(host, "www.greylabyrinth.com")
michael@0 1687 || dnsDomainIs(host, "www.grimmy.com")
michael@0 1688 || dnsDomainIs(host, "www.gsrg.nmh.ac.uk")
michael@0 1689 || dnsDomainIs(host, "www.gti.net")
michael@0 1690 || dnsDomainIs(host, "www.guinnessworldrecords.com")
michael@0 1691 || dnsDomainIs(host, "www.guitar.net")
michael@0 1692 || dnsDomainIs(host, "www.guitarplaying.com")
michael@0 1693 || dnsDomainIs(host, "www.gumbyworld.com")
michael@0 1694 || dnsDomainIs(host, "www.gurlwurld.com")
michael@0 1695 || dnsDomainIs(host, "www.gwi.net")
michael@0 1696 || dnsDomainIs(host, "www.gymn-forum.com")
michael@0 1697 || dnsDomainIs(host, "www.gzkidzone.com")
michael@0 1698 || dnsDomainIs(host, "www.haemibalgassi.com")
michael@0 1699 || dnsDomainIs(host, "www.hairstylist.com")
michael@0 1700 || dnsDomainIs(host, "www.halcyon.com")
michael@0 1701 || dnsDomainIs(host, "www.halifax.cbc.ca")
michael@0 1702 || dnsDomainIs(host, "www.halloween-online.com")
michael@0 1703 || dnsDomainIs(host, "www.halloweenkids.com")
michael@0 1704 || dnsDomainIs(host, "www.halloweenmagazine.com")
michael@0 1705 || dnsDomainIs(host, "www.hamill.co.uk")
michael@0 1706 || dnsDomainIs(host, "www.hamsterdance2.com")
michael@0 1707 || dnsDomainIs(host, "www.hamsters.co.uk")
michael@0 1708 || dnsDomainIs(host, "www.hamstertours.com")
michael@0 1709 || dnsDomainIs(host, "www.handsonmath.com")
michael@0 1710 || dnsDomainIs(host, "www.handspeak.com")
michael@0 1711 || dnsDomainIs(host, "www.hansonline.com")
michael@0 1712 || dnsDomainIs(host, "www.happychild.org.uk")
michael@0 1713 || dnsDomainIs(host, "www.happyfamilies.com")
michael@0 1714 || dnsDomainIs(host, "www.happytoy.com")
michael@0 1715 || dnsDomainIs(host, "www.harley-davidson.com")
michael@0 1716 || dnsDomainIs(host, "www.harmonicalessons.com")
michael@0 1717 || dnsDomainIs(host, "www.harperchildrens.com")
michael@0 1718 || dnsDomainIs(host, "www.harvey.com")
michael@0 1719 || dnsDomainIs(host, "www.hasbro-interactive.com")
michael@0 1720 || dnsDomainIs(host, "www.haynet.net")
michael@0 1721 || dnsDomainIs(host, "www.hbc.com")
michael@0 1722 || dnsDomainIs(host, "www.hblewis.com")
michael@0 1723 || dnsDomainIs(host, "www.hbook.com")
michael@0 1724 || dnsDomainIs(host, "www.he.net")
michael@0 1725 || dnsDomainIs(host, "www.headbone.com")
michael@0 1726 || dnsDomainIs(host, "www.healthatoz.com")
michael@0 1727 || dnsDomainIs(host, "www.healthypet.com")
michael@0 1728 || dnsDomainIs(host, "www.heartfoundation.com.au")
michael@0 1729 || dnsDomainIs(host, "www.heatersworld.com")
michael@0 1730 || dnsDomainIs(host, "www.her-online.com")
michael@0 1731 || dnsDomainIs(host, "www.heroesofhistory.com")
michael@0 1732 || dnsDomainIs(host, "www.hersheypa.com")
michael@0 1733 || dnsDomainIs(host, "www.hersheys.com")
michael@0 1734 || dnsDomainIs(host, "www.hevanet.com")
michael@0 1735 || dnsDomainIs(host, "www.heynetwork.com")
michael@0 1736 || dnsDomainIs(host, "www.hgo.com")
michael@0 1737 || dnsDomainIs(host, "www.hhof.com")
michael@0 1738 || dnsDomainIs(host, "www.hideandseekpuppies.com")
michael@0 1739 || dnsDomainIs(host, "www.hifusion.com")
michael@0 1740 || dnsDomainIs(host, "www.highbridgepress.com")
michael@0 1741 || dnsDomainIs(host, "www.his.com")
michael@0 1742 || dnsDomainIs(host, "www.history.navy.mil")
michael@0 1743 || dnsDomainIs(host, "www.historychannel.com")
michael@0 1744 || dnsDomainIs(host, "www.historyhouse.com")
michael@0 1745 || dnsDomainIs(host, "www.historyplace.com")
michael@0 1746 || dnsDomainIs(host, "www.hisurf.com")
michael@0 1747 || dnsDomainIs(host, "www.hiyah.com")
michael@0 1748 || dnsDomainIs(host, "www.hmnet.com")
michael@0 1749 || dnsDomainIs(host, "www.hoboes.com")
michael@0 1750 || dnsDomainIs(host, "www.hockeydb.com")
michael@0 1751 || dnsDomainIs(host, "www.hohnerusa.com")
michael@0 1752 || dnsDomainIs(host, "www.holidaychannel.com")
michael@0 1753 || dnsDomainIs(host, "www.holidayfestival.com")
michael@0 1754 || dnsDomainIs(host, "www.holidays.net")
michael@0 1755 || dnsDomainIs(host, "www.hollywood.com")
michael@0 1756 || dnsDomainIs(host, "www.holoworld.com")
michael@0 1757 || dnsDomainIs(host, "www.homepagers.com")
michael@0 1758 || dnsDomainIs(host, "www.homeschoolzone.com")
michael@0 1759 || dnsDomainIs(host, "www.homestead.com")
michael@0 1760 || dnsDomainIs(host, "www.homeworkspot.com")
michael@0 1761 || dnsDomainIs(host, "www.hompro.com")
michael@0 1762 || dnsDomainIs(host, "www.honey.com")
michael@0 1763 || dnsDomainIs(host, "www.hooked.net")
michael@0 1764 || dnsDomainIs(host, "www.hoophall.com")
michael@0 1765 || dnsDomainIs(host, "www.hooverdam.com")
michael@0 1766 || dnsDomainIs(host, "www.hopepaul.com")
michael@0 1767 || dnsDomainIs(host, "www.horse-country.com")
michael@0 1768 || dnsDomainIs(host, "www.horsechat.com")
michael@0 1769 || dnsDomainIs(host, "www.horsefun.com")
michael@0 1770 || dnsDomainIs(host, "www.horus.ics.org.eg")
michael@0 1771 || dnsDomainIs(host, "www.hotbraille.com")
michael@0 1772 || dnsDomainIs(host, "www.hotwheels.com")
michael@0 1773 || dnsDomainIs(host, "www.howstuffworks.com")
michael@0 1774 || dnsDomainIs(host, "www.hpdigitalbookclub.com")
michael@0 1775 || dnsDomainIs(host, "www.hpj.com")
michael@0 1776 || dnsDomainIs(host, "www.hpl.hp.com")
michael@0 1777 || dnsDomainIs(host, "www.hpl.lib.tx.us")
michael@0 1778 || dnsDomainIs(host, "www.hpnetwork.f2s.com")
michael@0 1779 || dnsDomainIs(host, "www.hsswp.com")
michael@0 1780 || dnsDomainIs(host, "www.hsx.com")
michael@0 1781 || dnsDomainIs(host, "www.humboldt1.com")
michael@0 1782 || dnsDomainIs(host, "www.humongous.com")
michael@0 1783 || dnsDomainIs(host, "www.humph3.freeserve.co.uk")
michael@0 1784 || dnsDomainIs(host, "www.humphreybear.com ")
michael@0 1785 || dnsDomainIs(host, "www.hurricanehunters.com")
michael@0 1786 || dnsDomainIs(host, "www.hyperhistory.com")
michael@0 1787 || dnsDomainIs(host, "www.i2k.com")
michael@0 1788 || dnsDomainIs(host, "www.ibhof.com")
michael@0 1789 || dnsDomainIs(host, "www.ibiscom.com")
michael@0 1790 || dnsDomainIs(host, "www.ibm.com")
michael@0 1791 || dnsDomainIs(host, "www.icangarden.com")
michael@0 1792 || dnsDomainIs(host, "www.icecreamusa.com")
michael@0 1793 || dnsDomainIs(host, "www.icn.co.uk")
michael@0 1794 || dnsDomainIs(host, "www.icomm.ca")
michael@0 1795 || dnsDomainIs(host, "www.idfishnhunt.com")
michael@0 1796 || dnsDomainIs(host, "www.iditarod.com")
michael@0 1797 || dnsDomainIs(host, "www.iei.net")
michael@0 1798 || dnsDomainIs(host, "www.iemily.com")
michael@0 1799 || dnsDomainIs(host, "www.iir.com")
michael@0 1800 || dnsDomainIs(host, "www.ika.com")
michael@0 1801 || dnsDomainIs(host, "www.ikoala.com")
michael@0 1802 || dnsDomainIs(host, "www.iln.net")
michael@0 1803 || dnsDomainIs(host, "www.imagine5.com")
michael@0 1804 || dnsDomainIs(host, "www.imes.boj.or.jp")
michael@0 1805 || dnsDomainIs(host, "www.inch.com")
michael@0 1806 || dnsDomainIs(host, "www.incwell.com")
michael@0 1807 || dnsDomainIs(host, "www.indian-river.fl.us")
michael@0 1808 || dnsDomainIs(host, "www.indians.com")
michael@0 1809 || dnsDomainIs(host, "www.indo.com")
michael@0 1810 || dnsDomainIs(host, "www.indyracingleague.com")
michael@0 1811 || dnsDomainIs(host, "www.indyzoo.com")
michael@0 1812 || dnsDomainIs(host, "www.info-canada.com")
michael@0 1813 || dnsDomainIs(host, "www.infomagic.net")
michael@0 1814 || dnsDomainIs(host, "www.infoplease.com")
michael@0 1815 || dnsDomainIs(host, "www.infoporium.com")
michael@0 1816 || dnsDomainIs(host, "www.infostuff.com")
michael@0 1817 || dnsDomainIs(host, "www.inhandmuseum.com")
michael@0 1818 || dnsDomainIs(host, "www.inil.com")
michael@0 1819 || dnsDomainIs(host, "www.inkspot.com")
michael@0 1820 || dnsDomainIs(host, "www.inkyfingers.com")
michael@0 1821 || dnsDomainIs(host, "www.innerauto.com")
michael@0 1822 || dnsDomainIs(host, "www.innerbody.com")
michael@0 1823 || dnsDomainIs(host, "www.inqpub.com")
michael@0 1824 || dnsDomainIs(host, "www.insecta-inspecta.com")
michael@0 1825 || dnsDomainIs(host, "www.insectclopedia.com")
michael@0 1826 || dnsDomainIs(host, "www.inside-mexico.com")
michael@0 1827 || dnsDomainIs(host, "www.insiders.com")
michael@0 1828 || dnsDomainIs(host, "www.insteam.com")
michael@0 1829 || dnsDomainIs(host, "www.intel.com")
michael@0 1830 || dnsDomainIs(host, "www.intellicast.com")
michael@0 1831 || dnsDomainIs(host, "www.interads.co.uk")
michael@0 1832 || dnsDomainIs(host, "www.intercot.com")
michael@0 1833 || dnsDomainIs(host, "www.intergraffix.com")
michael@0 1834 || dnsDomainIs(host, "www.interknowledge.com")
michael@0 1835 || dnsDomainIs(host, "www.interlog.com")
michael@0 1836 || dnsDomainIs(host, "www.internet4kids.com")
michael@0 1837 || dnsDomainIs(host, "www.intersurf.com")
michael@0 1838 || dnsDomainIs(host, "www.inthe80s.com")
michael@0 1839 || dnsDomainIs(host, "www.inventorsmuseum.com")
michael@0 1840 || dnsDomainIs(host, "www.inwap.com")
michael@0 1841 || dnsDomainIs(host, "www.ioa.com")
michael@0 1842 || dnsDomainIs(host, "www.ionet.net")
michael@0 1843 || dnsDomainIs(host, "www.iowacity.com")
michael@0 1844 || dnsDomainIs(host, "www.ireland-now.com")
michael@0 1845 || dnsDomainIs(host, "www.ireland.com")
michael@0 1846 || dnsDomainIs(host, "www.irelandseye.com")
michael@0 1847 || dnsDomainIs(host, "www.irlgov.ie")
michael@0 1848 || dnsDomainIs(host, "www.isd.net")
michael@0 1849 || dnsDomainIs(host, "www.islandnet.com")
michael@0 1850 || dnsDomainIs(host, "www.isomedia.com")
michael@0 1851 || dnsDomainIs(host, "www.itftennis.com")
michael@0 1852 || dnsDomainIs(host, "www.itpi.dpi.state.nc.us")
michael@0 1853 || dnsDomainIs(host, "www.itskwanzaatime.com")
michael@0 1854 || dnsDomainIs(host, "www.itss.raytheon.com")
michael@0 1855 || dnsDomainIs(host, "www.iuma.com")
michael@0 1856 || dnsDomainIs(host, "www.iwaynet.net")
michael@0 1857 || dnsDomainIs(host, "www.iwc.com")
michael@0 1858 || dnsDomainIs(host, "www.iwight.gov.uk")
michael@0 1859 || dnsDomainIs(host, "www.ixpres.com")
michael@0 1860 || dnsDomainIs(host, "www.j.b.allen.btinternet.co.uk")
michael@0 1861 || dnsDomainIs(host, "www.jabuti.com")
michael@0 1862 || dnsDomainIs(host, "www.jackinthebox.com")
michael@0 1863 || dnsDomainIs(host, "www.jaffebros.com")
michael@0 1864 || dnsDomainIs(host, "www.jaguars.com")
michael@0 1865 || dnsDomainIs(host, "www.jamaica-gleaner.com")
michael@0 1866 || dnsDomainIs(host, "www.jamm.com")
michael@0 1867 || dnsDomainIs(host, "www.janbrett.com")
michael@0 1868 || dnsDomainIs(host, "www.janetstevens.com")
michael@0 1869 || dnsDomainIs(host, "www.japan-guide.com")
michael@0 1870 || dnsDomainIs(host, "www.jargon.net")
michael@0 1871 || dnsDomainIs(host, "www.javelinamx.com")
michael@0 1872 || dnsDomainIs(host, "www.jayjay.com")
michael@0 1873 || dnsDomainIs(host, "www.jazclass.aust.com")
michael@0 1874 || dnsDomainIs(host, "www.jedinet.com")
michael@0 1875 || dnsDomainIs(host, "www.jenniferlopez.com")
michael@0 1876 || dnsDomainIs(host, "www.jlpanagopoulos.com")
michael@0 1877 || dnsDomainIs(host, "www.jmarshall.com")
michael@0 1878 || dnsDomainIs(host, "www.jmccall.demon.co.uk")
michael@0 1879 || dnsDomainIs(host, "www.jmts.com")
michael@0 1880 || dnsDomainIs(host, "www.joesherlock.com")
michael@0 1881 || dnsDomainIs(host, "www.jorvik-viking-centre.co.uk")
michael@0 1882 || dnsDomainIs(host, "www.joycecarolthomas.com")
michael@0 1883 || dnsDomainIs(host, "www.joycone.com")
michael@0 1884 || dnsDomainIs(host, "www.joyrides.com")
michael@0 1885 || dnsDomainIs(host, "www.jps.net")
michael@0 1886 || dnsDomainIs(host, "www.jspub.com")
michael@0 1887 || dnsDomainIs(host, "www.judaica.com")
michael@0 1888 || dnsDomainIs(host, "www.judyblume.com")
michael@0 1889 || dnsDomainIs(host, "www.julen.net")
michael@0 1890 || dnsDomainIs(host, "www.june29.com")
michael@0 1891 || dnsDomainIs(host, "www.juneteenth.com")
michael@0 1892 || dnsDomainIs(host, "www.justuskidz.com")
michael@0 1893 || dnsDomainIs(host, "www.justwomen.com")
michael@0 1894 || dnsDomainIs(host, "www.jwindow.net")
michael@0 1895 || dnsDomainIs(host, "www.k9web.com")
michael@0 1896 || dnsDomainIs(host, "www.kaercher.de")
michael@0 1897 || dnsDomainIs(host, "www.kaleidoscapes.com")
michael@0 1898 || dnsDomainIs(host, "www.kapili.com")
michael@0 1899 || dnsDomainIs(host, "www.kcchiefs.com")
michael@0 1900 || dnsDomainIs(host, "www.kcpl.lib.mo.us")
michael@0 1901 || dnsDomainIs(host, "www.kcroyals.com")
michael@0 1902 || dnsDomainIs(host, "www.kcsd.k12.pa.us")
michael@0 1903 || dnsDomainIs(host, "www.kdu.com")
michael@0 1904 || dnsDomainIs(host, "www.kelloggs.com")
michael@0 1905 || dnsDomainIs(host, "www.kentuckyfriedchicken.com")
michael@0 1906 || dnsDomainIs(host, "www.kenyaweb.com")
michael@0 1907 || dnsDomainIs(host, "www.keypals.com")
michael@0 1908 || dnsDomainIs(host, "www.kfn.com")
michael@0 1909 || dnsDomainIs(host, "www.kid-at-art.com")
michael@0 1910 || dnsDomainIs(host, "www.kid-channel.com")
michael@0 1911 || dnsDomainIs(host, "www.kidallergy.com")
michael@0 1912 || dnsDomainIs(host, "www.kidbibs.com")
michael@0 1913 || dnsDomainIs(host, "www.kidcomics.com")
michael@0 1914 || dnsDomainIs(host, "www.kiddesafety.com")
michael@0 1915 || dnsDomainIs(host, "www.kiddiecampus.com")
michael@0 1916 || dnsDomainIs(host, "www.kididdles.com")
michael@0 1917 || dnsDomainIs(host, "www.kidnews.com")
michael@0 1918 || dnsDomainIs(host, "www.kidocracy.com")
michael@0 1919 || dnsDomainIs(host, "www.kidport.com")
michael@0 1920 || dnsDomainIs(host, "www.kids-channel.co.uk")
michael@0 1921 || dnsDomainIs(host, "www.kids-drawings.com")
michael@0 1922 || dnsDomainIs(host, "www.kids-in-mind.com")
michael@0 1923 || dnsDomainIs(host, "www.kids4peace.com")
michael@0 1924 || dnsDomainIs(host, "www.kidsandcomputers.com")
michael@0 1925 || dnsDomainIs(host, "www.kidsart.co.uk")
michael@0 1926 || dnsDomainIs(host, "www.kidsastronomy.com")
michael@0 1927 || dnsDomainIs(host, "www.kidsbank.com")
michael@0 1928 || dnsDomainIs(host, "www.kidsbookshelf.com")
michael@0 1929 || dnsDomainIs(host, "www.kidsclick.com")
michael@0 1930 || dnsDomainIs(host, "www.kidscom.com")
michael@0 1931 || dnsDomainIs(host, "www.kidscook.com")
michael@0 1932 || dnsDomainIs(host, "www.kidsdoctor.com")
michael@0 1933 || dnsDomainIs(host, "www.kidsdomain.com")
michael@0 1934 || dnsDomainIs(host, "www.kidsfarm.com")
michael@0 1935 || dnsDomainIs(host, "www.kidsfreeware.com")
michael@0 1936 || dnsDomainIs(host, "www.kidsfun.tv")
michael@0 1937 || dnsDomainIs(host, "www.kidsgolf.com")
michael@0 1938 || dnsDomainIs(host, "www.kidsgowild.com")
michael@0 1939 || dnsDomainIs(host, "www.kidsjokes.com")
michael@0 1940 || dnsDomainIs(host, "www.kidsloveamystery.com")
michael@0 1941 || dnsDomainIs(host, "www.kidsmoneycents.com")
michael@0 1942 || dnsDomainIs(host, "www.kidsnewsroom.com")
michael@0 1943 || dnsDomainIs(host, "www.kidsource.com")
michael@0 1944 || dnsDomainIs(host, "www.kidsparties.com")
michael@0 1945 || dnsDomainIs(host, "www.kidsplaytown.com")
michael@0 1946 || dnsDomainIs(host, "www.kidsreads.com")
michael@0 1947 || dnsDomainIs(host, "www.kidsreport.com")
michael@0 1948 || dnsDomainIs(host, "www.kidsrunning.com")
michael@0 1949 || dnsDomainIs(host, "www.kidstamps.com")
michael@0 1950 || dnsDomainIs(host, "www.kidsvideogames.com")
michael@0 1951 || dnsDomainIs(host, "www.kidsway.com")
michael@0 1952 || dnsDomainIs(host, "www.kidswithcancer.com")
michael@0 1953 || dnsDomainIs(host, "www.kidszone.ourfamily.com")
michael@0 1954 || dnsDomainIs(host, "www.kidzup.com")
michael@0 1955 || dnsDomainIs(host, "www.kinderart.com")
michael@0 1956 || dnsDomainIs(host, "www.kineticcity.com")
michael@0 1957 || dnsDomainIs(host, "www.kings.k12.ca.us")
michael@0 1958 || dnsDomainIs(host, "www.kiplinger.com")
michael@0 1959 || dnsDomainIs(host, "www.kiwirecovery.org.nz")
michael@0 1960 || dnsDomainIs(host, "www.klipsan.com")
michael@0 1961 || dnsDomainIs(host, "www.klutz.com")
michael@0 1962 || dnsDomainIs(host, "www.kn.pacbell.com")
michael@0 1963 || dnsDomainIs(host, "www.knex.com")
michael@0 1964 || dnsDomainIs(host, "www.knowledgeadventure.com")
michael@0 1965 || dnsDomainIs(host, "www.knto.or.kr")
michael@0 1966 || dnsDomainIs(host, "www.kodak.com")
michael@0 1967 || dnsDomainIs(host, "www.konica.co.jp")
michael@0 1968 || dnsDomainIs(host, "www.kraftfoods.com")
michael@0 1969 || dnsDomainIs(host, "www.kudzukids.com")
michael@0 1970 || dnsDomainIs(host, "www.kulichki.com")
michael@0 1971 || dnsDomainIs(host, "www.kuttu.com")
michael@0 1972 || dnsDomainIs(host, "www.kv5.com")
michael@0 1973 || dnsDomainIs(host, "www.kyes-world.com")
michael@0 1974 || dnsDomainIs(host, "www.kyohaku.go.jp")
michael@0 1975 || dnsDomainIs(host, "www.kyrene.k12.az.us")
michael@0 1976 || dnsDomainIs(host, "www.kz")
michael@0 1977 || dnsDomainIs(host, "www.la-hq.org.uk")
michael@0 1978 || dnsDomainIs(host, "www.labs.net")
michael@0 1979 || dnsDomainIs(host, "www.labyrinth.net.au")
michael@0 1980 || dnsDomainIs(host, "www.laffinthedark.com")
michael@0 1981 || dnsDomainIs(host, "www.lakhota.com")
michael@0 1982 || dnsDomainIs(host, "www.lakings.com")
michael@0 1983 || dnsDomainIs(host, "www.lam.mus.ca.us")
michael@0 1984 || dnsDomainIs(host, "www.lampstras.k12.pa.us")
michael@0 1985 || dnsDomainIs(host, "www.lams.losalamos.k12.nm.us")
michael@0 1986 || dnsDomainIs(host, "www.landofcadbury.ca")
michael@0 1987 || dnsDomainIs(host, "www.larry-boy.com")
michael@0 1988 || dnsDomainIs(host, "www.lasersite.com")
michael@0 1989 || dnsDomainIs(host, "www.last-word.com")
michael@0 1990 || dnsDomainIs(host, "www.latimes.com")
michael@0 1991 || dnsDomainIs(host, "www.laughon.com")
michael@0 1992 || dnsDomainIs(host, "www.laurasmidiheaven.com")
michael@0 1993 || dnsDomainIs(host, "www.lausd.k12.ca.us")
michael@0 1994 || dnsDomainIs(host, "www.learn2.com")
michael@0 1995 || dnsDomainIs(host, "www.learn2type.com")
michael@0 1996 || dnsDomainIs(host, "www.learnfree-hobbies.com")
michael@0 1997 || dnsDomainIs(host, "www.learningkingdom.com")
michael@0 1998 || dnsDomainIs(host, "www.learningplanet.com")
michael@0 1999 || dnsDomainIs(host, "www.leftjustified.com")
michael@0 2000 || dnsDomainIs(host, "www.legalpadjr.com")
michael@0 2001 || dnsDomainIs(host, "www.legendarysurfers.com")
michael@0 2002 || dnsDomainIs(host, "www.legends.dm.net")
michael@0 2003 || dnsDomainIs(host, "www.legis.state.wi.us")
michael@0 2004 || dnsDomainIs(host, "www.legis.state.wv.us")
michael@0 2005 || dnsDomainIs(host, "www.lego.com")
michael@0 2006 || dnsDomainIs(host, "www.leje.com")
michael@0 2007 || dnsDomainIs(host, "www.leonardodicaprio.com")
michael@0 2008 || dnsDomainIs(host, "www.lessonplanspage.com")
michael@0 2009 || dnsDomainIs(host, "www.letour.fr")
michael@0 2010 || dnsDomainIs(host, "www.levins.com")
michael@0 2011 || dnsDomainIs(host, "www.levistrauss.com")
michael@0 2012 || dnsDomainIs(host, "www.libertystatepark.com")
michael@0 2013 || dnsDomainIs(host, "www.libraryspot.com")
michael@0 2014 || dnsDomainIs(host, "www.lifelong.com")
michael@0 2015 || dnsDomainIs(host, "www.lighthouse.cc")
michael@0 2016 || dnsDomainIs(host, "www.lightlink.com")
michael@0 2017 || dnsDomainIs(host, "www.lightspan.com")
michael@0 2018 || dnsDomainIs(host, "www.lil-fingers.com")
michael@0 2019 || dnsDomainIs(host, "www.linc.or.jp")
michael@0 2020 || dnsDomainIs(host, "www.lindsaysbackyard.com")
michael@0 2021 || dnsDomainIs(host, "www.lindtchocolate.com")
michael@0 2022 || dnsDomainIs(host, "www.lineone.net")
michael@0 2023 || dnsDomainIs(host, "www.lionel.com")
michael@0 2024 || dnsDomainIs(host, "www.lisafrank.com")
michael@0 2025 || dnsDomainIs(host, "www.lissaexplains.com")
michael@0 2026 || dnsDomainIs(host, "www.literacycenter.net")
michael@0 2027 || dnsDomainIs(host, "www.littleartist.com")
michael@0 2028 || dnsDomainIs(host, "www.littlechiles.com")
michael@0 2029 || dnsDomainIs(host, "www.littlecritter.com")
michael@0 2030 || dnsDomainIs(host, "www.littlecrowtoys.com")
michael@0 2031 || dnsDomainIs(host, "www.littlehousebooks.com")
michael@0 2032 || dnsDomainIs(host, "www.littlejason.com")
michael@0 2033 || dnsDomainIs(host, "www.littleplanettimes.com")
michael@0 2034 || dnsDomainIs(host, "www.liveandlearn.com")
michael@0 2035 || dnsDomainIs(host, "www.loadstar.prometeus.net")
michael@0 2036 || dnsDomainIs(host, "www.localaccess.com")
michael@0 2037 || dnsDomainIs(host, "www.lochness.co.uk")
michael@0 2038 || dnsDomainIs(host, "www.lochness.scotland.net")
michael@0 2039 || dnsDomainIs(host, "www.logos.it")
michael@0 2040 || dnsDomainIs(host, "www.lonelyplanet.com")
michael@0 2041 || dnsDomainIs(host, "www.looklearnanddo.com")
michael@0 2042 || dnsDomainIs(host, "www.loosejocks.com")
michael@0 2043 || dnsDomainIs(host, "www.lost-worlds.com")
michael@0 2044 || dnsDomainIs(host, "www.love-story.com")
michael@0 2045 || dnsDomainIs(host, "www.lpga.com")
michael@0 2046 || dnsDomainIs(host, "www.lsjunction.com")
michael@0 2047 || dnsDomainIs(host, "www.lucasarts.com")
michael@0 2048 || dnsDomainIs(host, "www.lucent.com")
michael@0 2049 || dnsDomainIs(host, "www.lucie.com")
michael@0 2050 || dnsDomainIs(host, "www.lunaland.co.za")
michael@0 2051 || dnsDomainIs(host, "www.luth.se")
michael@0 2052 || dnsDomainIs(host, "www.lyricalworks.com")
michael@0 2053 || dnsDomainIs(host, "www.infoporium.com")
michael@0 2054 || dnsDomainIs(host, "www.infostuff.com")
michael@0 2055 || dnsDomainIs(host, "www.inhandmuseum.com")
michael@0 2056 || dnsDomainIs(host, "www.inil.com")
michael@0 2057 || dnsDomainIs(host, "www.inkspot.com")
michael@0 2058 || dnsDomainIs(host, "www.inkyfingers.com")
michael@0 2059 || dnsDomainIs(host, "www.innerauto.com")
michael@0 2060 || dnsDomainIs(host, "www.innerbody.com")
michael@0 2061 || dnsDomainIs(host, "www.inqpub.com")
michael@0 2062 || dnsDomainIs(host, "www.insecta-inspecta.com")
michael@0 2063 || dnsDomainIs(host, "www.insectclopedia.com")
michael@0 2064 || dnsDomainIs(host, "www.inside-mexico.com")
michael@0 2065 || dnsDomainIs(host, "www.insiders.com")
michael@0 2066 || dnsDomainIs(host, "www.insteam.com")
michael@0 2067 || dnsDomainIs(host, "www.intel.com")
michael@0 2068 || dnsDomainIs(host, "www.intellicast.com")
michael@0 2069 || dnsDomainIs(host, "www.interads.co.uk")
michael@0 2070 || dnsDomainIs(host, "www.intercot.com")
michael@0 2071 || dnsDomainIs(host, "www.intergraffix.com")
michael@0 2072 || dnsDomainIs(host, "www.interknowledge.com")
michael@0 2073 || dnsDomainIs(host, "www.interlog.com")
michael@0 2074 || dnsDomainIs(host, "www.internet4kids.com")
michael@0 2075 || dnsDomainIs(host, "www.intersurf.com")
michael@0 2076 || dnsDomainIs(host, "www.inthe80s.com")
michael@0 2077 || dnsDomainIs(host, "www.inventorsmuseum.com")
michael@0 2078 || dnsDomainIs(host, "www.inwap.com")
michael@0 2079 || dnsDomainIs(host, "www.ioa.com")
michael@0 2080 || dnsDomainIs(host, "www.ionet.net")
michael@0 2081 || dnsDomainIs(host, "www.iowacity.com")
michael@0 2082 || dnsDomainIs(host, "www.ireland-now.com")
michael@0 2083 || dnsDomainIs(host, "www.ireland.com")
michael@0 2084 || dnsDomainIs(host, "www.irelandseye.com")
michael@0 2085 || dnsDomainIs(host, "www.irlgov.ie")
michael@0 2086 || dnsDomainIs(host, "www.isd.net")
michael@0 2087 || dnsDomainIs(host, "www.islandnet.com")
michael@0 2088 || dnsDomainIs(host, "www.isomedia.com")
michael@0 2089 || dnsDomainIs(host, "www.itftennis.com")
michael@0 2090 || dnsDomainIs(host, "www.itpi.dpi.state.nc.us")
michael@0 2091 || dnsDomainIs(host, "www.itskwanzaatime.com")
michael@0 2092 || dnsDomainIs(host, "www.itss.raytheon.com")
michael@0 2093 || dnsDomainIs(host, "www.iuma.com")
michael@0 2094 || dnsDomainIs(host, "www.iwaynet.net")
michael@0 2095 || dnsDomainIs(host, "www.iwc.com")
michael@0 2096 || dnsDomainIs(host, "www.iwight.gov.uk")
michael@0 2097 || dnsDomainIs(host, "www.ixpres.com")
michael@0 2098 || dnsDomainIs(host, "www.j.b.allen.btinternet.co.uk")
michael@0 2099 || dnsDomainIs(host, "www.jabuti.com")
michael@0 2100 || dnsDomainIs(host, "www.jackinthebox.com")
michael@0 2101 || dnsDomainIs(host, "www.jaffebros.com")
michael@0 2102 || dnsDomainIs(host, "www.jaguars.com")
michael@0 2103 || dnsDomainIs(host, "www.jamaica-gleaner.com")
michael@0 2104 || dnsDomainIs(host, "www.jamm.com")
michael@0 2105 || dnsDomainIs(host, "www.janbrett.com")
michael@0 2106 || dnsDomainIs(host, "www.janetstevens.com")
michael@0 2107 || dnsDomainIs(host, "www.japan-guide.com")
michael@0 2108 || dnsDomainIs(host, "www.jargon.net")
michael@0 2109 || dnsDomainIs(host, "www.javelinamx.com")
michael@0 2110 || dnsDomainIs(host, "www.jayjay.com")
michael@0 2111 || dnsDomainIs(host, "www.jazclass.aust.com")
michael@0 2112
michael@0 2113 )
michael@0 2114 return "PROXY proxy.hclib.org:80";
michael@0 2115 else
michael@0 2116 return "PROXY 172.16.100.20:8080";
michael@0 2117 }
michael@0 2118
michael@0 2119 reportCompare('No Crash', 'No Crash', '');

mercurial