File Coverage

blib/lib/IO/Socket/SSL/PublicSuffix.pm
Criterion Covered Total %
statement 114 163 69.9
branch 58 92 63.0
condition 4 10 40.0
subroutine 12 16 75.0
pod 4 5 80.0
total 192 286 67.1


line stmt bran cond sub pod time code
1              
2 83     83   222169 use strict;
  83         177  
  83         2714  
3 83     83   434 use warnings;
  83         192  
  83         3205  
4             package IO::Socket::SSL::PublicSuffix;
5 83     83   435 use Carp;
  83         158  
  83         5202  
6              
7             # for updates
8 83     83   536 use constant URL => 'http://publicsuffix.org/list/effective_tld_names.dat';
  83         173  
  83         40779  
9              
10             =head1 NAME
11              
12             IO::Socket::SSL::PublicSuffix - provide access to Mozilla's list of effective TLD names
13              
14             =head1 SYNOPSIS
15              
16             # use builtin default
17             use IO::Socket::SSL::PublicSuffix;
18             $ps = IO::Socket::SSL::PublicSuffix->default;
19              
20             # load from string
21             $ps = IO::Socket::SSL::PublicSuffix->from_string("*.uk\n*");
22              
23             # load from file or file handle
24             $ps = IO::Socket::SSL::PublicSuffix->from_file($filename);
25             $ps = IO::Socket::SSL::PublicSuffix->from_file(\*STDIN);
26              
27              
28             # --- string in -> string out
29             # $rest -> whatever.host
30             # $tld -> co.uk
31             my ($rest,$tld) = $ps->public_suffix('whatever.host.co.uk');
32             my $tld = $ps->public_suffix('whatever.host.co.uk');
33              
34             # $root_domain -> host.co.uk
35             my $root_domain = $ps->public_suffix('whatever.host.co.uk', 1);
36              
37             # --- array in -> array out
38             # $rest -> [qw(whatever host)]
39             # $tld -> [qw(co uk)]
40             my ($rest,$tld) = $ps->public_suffix([qw(whatever host co uk)]);
41              
42             ----
43              
44             # To update this file with the current list:
45             perl -MIO::Socket::SSL::PublicSuffix -e 'IO::Socket::SSL::PublicSuffix::update_self_from_url()'
46              
47              
48              
49             =head1 DESCRIPTION
50              
51             This module uses the list of effective top level domain names from the mozilla
52             project to determine the public top level domain for a given hostname.
53              
54             =head2 Method
55              
56             =over 4
57              
58             =item class->default(%args)
59              
60             Returns object with builtin default.
61             C can be given in C<%args> to specify the minimal suffix, default
62             is 1.
63              
64             =item class->from_string(string,%args)
65              
66             Returns object with configuration from string.
67             See method C for C<%args>.
68              
69             =item class->from_file( file name| file handle, %args )
70              
71             Returns object with configuration from file or file handle.
72             See method C for C<%args>.
73              
74             =item $self->public_suffix( $host|\@host, [ $add ] )
75              
76             In array context the function returns the non-tld part and the tld part of the
77             given hostname, in scalar context only the tld part.
78             It adds C<$add> parts of the non-tld part to the tld, e.g. with C<$add=1> it
79             will return the root domain.
80              
81             If there were no explicit matches against the public suffix configuration it
82             will fall back to a suffix of length 1.
83              
84             The function accepts a string or an array-ref (e.g. host split by C<.>). In the
85             first case it will return string(s), in the latter case array-ref(s).
86              
87             International hostnames or labels can be in ASCII (IDNA form starting with
88             C) or unicode. In the latter case an IDNA handling library needs to be
89             available. L is preferred, but L, L are
90             still supported.
91              
92             =item ($self|class)->can_idn
93              
94             Returns true if IDN support is available.
95              
96             =back
97              
98             =head1 FILES
99              
100             http://publicsuffix.org/list/effective_tld_names.dat
101              
102             =head1 SEE ALSO
103              
104             Domain::PublicSuffix, Mozilla::PublicSuffix
105              
106             =head1 BUGS
107              
108             Q: Why yet another module, we already have L and
109             L.
110             A: Because the public suffix data change more often than these modules do,
111             IO::Socket::SSL needs this list and it is more easy this way to keep it
112             up-to-date.
113              
114              
115             =head1 AUTHOR
116              
117             Steffen Ullrich
118              
119             =cut
120              
121              
122             BEGIN {
123 83 100   83   346 if ( eval {
    50          
    50          
124 83         36406 require URI::_idna;
125 81 50       289063 defined &URI::_idna::encode && defined &URI::_idna::decode
126             }) {
127 81         299 *idn_to_ascii = \&URI::_idna::encode;
128 81         183 *idn_to_unicode = \&URI::_idna::decode;
129 81     0   400420 *can_idn = sub { 1 };
  0         0  
130 2         217 } elsif ( eval { require Net::IDN::Encode } ) {
131 0         0 *idn_to_ascii = \&Net::IDN::Encode::domain_to_ascii;
132 0         0 *idn_to_unicode = \&Net::IDN::Encode::domain_to_unicode;
133 0         0 *can_idn = sub { 1 };
  0         0  
134 2         208 } elsif ( eval { require Net::LibIDN; require Encode } ) {
  0         0  
135             # Net::LibIDN does not use utf-8 flag and expects raw data
136             *idn_to_ascii = sub {
137 0         0 Net::LibIDN::idn_to_ascii(Encode::encode('utf-8',$_[0]),'utf-8');
138             },
139             *idn_to_unicode = sub {
140 0         0 Encode::decode('utf-8',Net::LibIDN::idn_to_unicode($_[0],'utf-8'));
141             },
142 0         0 *can_idn = sub { 1 };
  0         0  
143             } else {
144 2     0   210 *idn_to_ascii = sub { croak "idn_to_ascii(@_) - no IDNA library installed" };
  0         0  
145 2     0   8 *idn_to_unicode = sub { croak "idn_to_unicode(@_) - no IDNA library installed" };
  0         0  
146 2         10380 *can_idn = sub { 0 };
  0         0  
147             }
148             }
149              
150             {
151             my %default;
152             sub default {
153 59     59 1 1114 my (undef,%args) = @_;
154 59         186 my $min_suffix = delete $args{min_suffix};
155 59 100       255 $min_suffix = 1 if ! defined $min_suffix;
156 59 50       178 %args and die "unknown args: ".join(" ",sort keys %args);
157 59   66     553 return $default{$min_suffix} ||= shift->from_string(_default_data(),
158             min_suffix => $min_suffix);
159             }
160             }
161              
162             sub from_string {
163 13     13 1 2309 my $class = shift;
164 13         29 my $data = shift;
165 13     10   1111 open( my $fh,'<', \$data );
  10         6038  
  10         97  
  10         98  
166 13         12330 return $class->from_file($fh,@_);
167             }
168              
169             sub from_file {
170 13     13 1 190 my ($class,$file,%args) = @_;
171 13         55 my $min_suffix = delete $args{min_suffix};
172 13 100       65 $min_suffix = 1 if ! defined $min_suffix;
173 13 50       56 %args and die "unknown args: ".join(" ",sort keys %args);
174              
175 13         32 my $fh;
176 13 50       58 if ( ref($file)) {
    0          
177 13         78 $fh = $file
178             } elsif ( ! open($fh,'<',$file)) {
179 0         0 die "failed to open $file: $!";
180             }
181 13         45 my %tree;
182 13         117 local $/ = "\n";
183 13         98 while ( my $line = <$fh>) {
184 106356         206853 $line =~s{//.*}{};
185 106356         301240 $line =~s{\s+$}{};
186 106356 100       274218 $line eq '' and next;
187 73676         107981 my $p = \%tree;
188 73676 50       179369 $line = idn_to_ascii($line) if $line !~m{\A[\x00-\x7f]*\Z};
189 73676         125708 my $not = $line =~s{^!}{};
190 73676         146305 my @path = split(m{\.},$line);
191 73676         120789 for(reverse @path) {
192 152459   100     490393 $p = $p->{$_} ||= {}
193             }
194 73676 100       289673 $p->{'\0'} = $not ? -1:1;
195             }
196 13         537 return bless {
197             tree => \%tree,
198             min_suffix => $min_suffix
199             },$class;
200             }
201              
202              
203             sub public_suffix {
204 286     286 1 114445 my ($self,$name,$add) = @_;
205 286         470 my $want; # [a]rray, [s]tring, [u]nicode-string
206 286 100       669 if ( ref($name)) {
207 59         177 $want = 'a';
208 59         254 $name = [ @$name ]; # don't change input
209             } else {
210 227 100       533 return if ! defined $name;
211 224 100       1146 if ( $name !~m{\A[\x00-\x7f]*\Z} ) {
212 2         10 $name = idn_to_ascii($name);
213 2         921 $want = 'u';
214             } else {
215 222         418 $want = 's';
216             }
217 224         482 $name = lc($name);
218 224         404 $name =~s{\.$}{};
219 224         1269 $name = [ $name =~m{([^.]+)}g ];
220             }
221 283 100       786 @$name or return;
222 277         1014 $_ = lc($_) for(@$name);
223              
224 277         520 my (%wild,%host,%xcept,@stack,$choices);
225 277         546 my $p = $self->{tree};
226 277         742 for( my $i=0; $i<@$name; $i++ ) {
227 600         995 $choices = [];
228 600 100       1827 if ( my $px = $p->{ $name->[$#$name-$i] } ) {
229             # name match, continue with next path element
230 322         620 push @$choices,$px;
231 322 100       794 if ( my $end = $px->{'\0'} ) {
232 248 100       817 ( $end>0 ? \%host : \%xcept )->{$i+1} = $end;
233             }
234             }
235 600 100       1383 if ( my $px = $p->{'*'} ) {
236             # wildcard match, continue with next path element
237 80         151 push @$choices,$px;
238 80 50       168 if ( my $end = $px->{'\0'} ) {
239 80 50       245 ( $end>0 ? \%wild : \%xcept )->{$i+1} = $end;
240             }
241             }
242              
243              
244             next_choice:
245 628 100       1257 if ( @$choices ) {
246 389         592 $p = shift(@$choices);
247 389 100       835 push @stack, [ $choices, $i ] if @$choices;
248 389         937 next; # go deeper
249             }
250              
251             # backtrack
252 239 100       600 @stack or last;
253 28         42 ($choices,$i) = @{ pop(@stack) };
  28         65  
254 28         112 goto next_choice;
255             }
256              
257             #warn Dumper([\%wild,\%host,\%xcept]); use Data::Dumper;
258              
259              
260             # remove all exceptions from wildcards
261 277 100       633 delete @wild{ keys %xcept } if %xcept;
262             # get longest match
263 102         364 my ($len) = sort { $b <=> $a } (
264 277         1178 keys(%wild), keys(%host), map { $_-1 } keys(%xcept));
  14         116  
265             # if we have no matches use a minimum of min_suffix
266 277 100       731 $len = $self->{min_suffix} if ! defined $len;
267 277 100       662 $len += $add if $add;
268 277         398 my $suffix;
269 277 100       654 if ( $len < @$name ) {
    50          
270 202         647 $suffix = [ splice( @$name, -$len, $len ) ];
271             } elsif ( $len > 0 ) {
272 75         128 $suffix = $name;
273 75         130 $name = []
274             } else {
275 0         0 $suffix = []
276             }
277              
278 277 100       714 if ( $want ne 'a' ) {
279 221         538 $suffix = join('.',@$suffix);
280 221         494 $name = join('.',@$name);
281 221 100       524 if ( $want eq 'u' ) {
282 2         17 $suffix = idn_to_unicode($suffix);
283 2         951 $name = idn_to_unicode($name);
284             }
285             }
286              
287 277 100       1796 return wantarray ? ($name,$suffix):$suffix;
288             }
289              
290              
291             {
292             my $data;
293             sub _default_data {
294 10 50   10   52 if ( ! defined $data ) {
295 10         64 $data = _builtin_data();
296 10 50       2699 $data =~s{^// ===END ICANN DOMAINS.*}{}ms
297             or die "cannot find END ICANN DOMAINS";
298             }
299 10         2208 return $data;
300             }
301             }
302              
303             sub update_self_from_url {
304 0   0 0 0 0 my $url = shift || URL();
305 0         0 my $dst = __FILE__;
306 0 0       0 -w $dst or die "cannot write $dst";
307 0 0       0 open( my $fh,'<',$dst ) or die "open $dst: $!";
308 0         0 my $code = '';
309 0         0 local $/ = "\n";
310 0         0 while (<$fh>) {
311 0         0 $code .= $_;
312 0 0       0 m{<<\'END_BUILTIN_DATA\'} and last;
313             }
314 0         0 my $tail;
315 0         0 while (<$fh>) {
316 0 0       0 m{\AEND_BUILTIN_DATA\r?\n} or next;
317 0         0 $tail = $_;
318 0         0 last;
319             }
320 0         0 $tail .= do { local $/; <$fh> };
  0         0  
  0         0  
321 0         0 close($fh);
322              
323 0         0 require LWP::UserAgent;
324 0 0       0 my $resp = LWP::UserAgent->new->get($url)
325             or die "no response from $url";
326 0 0       0 die "no success url=$url code=".$resp->code." ".$resp->message
327             if ! $resp->is_success;
328 0         0 my $content = $resp->decoded_content;
329 0         0 while ( $content =~m{(.*\n)}g ) {
330 0         0 my $line = $1;
331 0 0 0     0 if ( $line =~m{\S} && $line !~m{\A\s*//} ) {
332 0         0 $line =~s{//.*}{};
333 0         0 $line =~s{\s+$}{};
334 0 0       0 $line eq '' and next;
335 0 0       0 if ( $line !~m{\A[\x00-\x7f]+\Z} ) {
336 0         0 $line = idn_to_ascii($line);
337             }
338 0         0 $code .= "$line\n";
339             } else {
340 0         0 $code .= "$line";
341             }
342             }
343              
344 0 0       0 open( $fh,'>:utf8',$dst ) or die "open $dst: $!";
345 0         0 print $fh $code.$tail;
346             }
347              
348 10     10   98 sub _builtin_data { return <<'END_BUILTIN_DATA' }
349             // This Source Code Form is subject to the terms of the Mozilla Public
350             // License, v. 2.0. If a copy of the MPL was not distributed with this
351             // file, You can obtain one at https://mozilla.org/MPL/2.0/.
352              
353             // Please pull this list from, and only from https://publicsuffix.org/list/public_suffix_list.dat,
354             // rather than any other VCS sites. Pulling from any other URL is not guaranteed to be supported.
355              
356             // Instructions on pulling and using this list can be found at https://publicsuffix.org/list/.
357              
358             // ===BEGIN ICANN DOMAINS===
359              
360             // ac : http://nic.ac/rules.htm
361             ac
362             com.ac
363             edu.ac
364             gov.ac
365             net.ac
366             mil.ac
367             org.ac
368              
369             // ad : https://en.wikipedia.org/wiki/.ad
370             ad
371             nom.ad
372              
373             // ae : https://tdra.gov.ae/en/aeda/ae-policies
374             ae
375             co.ae
376             net.ae
377             org.ae
378             sch.ae
379             ac.ae
380             gov.ae
381             mil.ae
382              
383             // aero : see https://www.information.aero/index.php?id=66
384             aero
385             accident-investigation.aero
386             accident-prevention.aero
387             aerobatic.aero
388             aeroclub.aero
389             aerodrome.aero
390             agents.aero
391             aircraft.aero
392             airline.aero
393             airport.aero
394             air-surveillance.aero
395             airtraffic.aero
396             air-traffic-control.aero
397             ambulance.aero
398             amusement.aero
399             association.aero
400             author.aero
401             ballooning.aero
402             broker.aero
403             caa.aero
404             cargo.aero
405             catering.aero
406             certification.aero
407             championship.aero
408             charter.aero
409             civilaviation.aero
410             club.aero
411             conference.aero
412             consultant.aero
413             consulting.aero
414             control.aero
415             council.aero
416             crew.aero
417             design.aero
418             dgca.aero
419             educator.aero
420             emergency.aero
421             engine.aero
422             engineer.aero
423             entertainment.aero
424             equipment.aero
425             exchange.aero
426             express.aero
427             federation.aero
428             flight.aero
429             fuel.aero
430             gliding.aero
431             government.aero
432             groundhandling.aero
433             group.aero
434             hanggliding.aero
435             homebuilt.aero
436             insurance.aero
437             journal.aero
438             journalist.aero
439             leasing.aero
440             logistics.aero
441             magazine.aero
442             maintenance.aero
443             media.aero
444             microlight.aero
445             modelling.aero
446             navigation.aero
447             parachuting.aero
448             paragliding.aero
449             passenger-association.aero
450             pilot.aero
451             press.aero
452             production.aero
453             recreation.aero
454             repbody.aero
455             res.aero
456             research.aero
457             rotorcraft.aero
458             safety.aero
459             scientist.aero
460             services.aero
461             show.aero
462             skydiving.aero
463             software.aero
464             student.aero
465             trader.aero
466             trading.aero
467             trainer.aero
468             union.aero
469             workinggroup.aero
470             works.aero
471              
472             // af : http://www.nic.af/help.jsp
473             af
474             gov.af
475             com.af
476             org.af
477             net.af
478             edu.af
479              
480             // ag : http://www.nic.ag/prices.htm
481             ag
482             com.ag
483             org.ag
484             net.ag
485             co.ag
486             nom.ag
487              
488             // ai : http://nic.com.ai/
489             ai
490             off.ai
491             com.ai
492             net.ai
493             org.ai
494              
495             // al : http://www.ert.gov.al/ert_alb/faq_det.html?Id=31
496             al
497             com.al
498             edu.al
499             gov.al
500             mil.al
501             net.al
502             org.al
503              
504             // am : https://www.amnic.net/policy/en/Policy_EN.pdf
505             am
506             co.am
507             com.am
508             commune.am
509             net.am
510             org.am
511              
512             // ao : https://en.wikipedia.org/wiki/.ao
513             // http://www.dns.ao/REGISTR.DOC
514             ao
515             ed.ao
516             gv.ao
517             og.ao
518             co.ao
519             pb.ao
520             it.ao
521              
522             // aq : https://en.wikipedia.org/wiki/.aq
523             aq
524              
525             // ar : https://nic.ar/es/nic-argentina/normativa
526             ar
527             bet.ar
528             com.ar
529             coop.ar
530             edu.ar
531             gob.ar
532             gov.ar
533             int.ar
534             mil.ar
535             musica.ar
536             mutual.ar
537             net.ar
538             org.ar
539             senasa.ar
540             tur.ar
541              
542             // arpa : https://en.wikipedia.org/wiki/.arpa
543             // Confirmed by registry 2008-06-18
544             arpa
545             e164.arpa
546             in-addr.arpa
547             ip6.arpa
548             iris.arpa
549             uri.arpa
550             urn.arpa
551              
552             // as : https://en.wikipedia.org/wiki/.as
553             as
554             gov.as
555              
556             // asia : https://en.wikipedia.org/wiki/.asia
557             asia
558              
559             // at : https://en.wikipedia.org/wiki/.at
560             // Confirmed by registry 2008-06-17
561             at
562             ac.at
563             co.at
564             gv.at
565             or.at
566             sth.ac.at
567              
568             // au : https://en.wikipedia.org/wiki/.au
569             // http://www.auda.org.au/
570             au
571             // 2LDs
572             com.au
573             net.au
574             org.au
575             edu.au
576             gov.au
577             asn.au
578             id.au
579             // Historic 2LDs (closed to new registration, but sites still exist)
580             info.au
581             conf.au
582             oz.au
583             // CGDNs - http://www.cgdn.org.au/
584             act.au
585             nsw.au
586             nt.au
587             qld.au
588             sa.au
589             tas.au
590             vic.au
591             wa.au
592             // 3LDs
593             act.edu.au
594             catholic.edu.au
595             // eq.edu.au - Removed at the request of the Queensland Department of Education
596             nsw.edu.au
597             nt.edu.au
598             qld.edu.au
599             sa.edu.au
600             tas.edu.au
601             vic.edu.au
602             wa.edu.au
603             // act.gov.au Bug 984824 - Removed at request of Greg Tankard
604             // nsw.gov.au Bug 547985 - Removed at request of
605             // nt.gov.au Bug 940478 - Removed at request of Greg Connors
606             qld.gov.au
607             sa.gov.au
608             tas.gov.au
609             vic.gov.au
610             wa.gov.au
611             // 4LDs
612             // education.tas.edu.au - Removed at the request of the Department of Education Tasmania
613             schools.nsw.edu.au
614              
615             // aw : https://en.wikipedia.org/wiki/.aw
616             aw
617             com.aw
618              
619             // ax : https://en.wikipedia.org/wiki/.ax
620             ax
621              
622             // az : https://en.wikipedia.org/wiki/.az
623             az
624             com.az
625             net.az
626             int.az
627             gov.az
628             org.az
629             edu.az
630             info.az
631             pp.az
632             mil.az
633             name.az
634             pro.az
635             biz.az
636              
637             // ba : http://nic.ba/users_data/files/pravilnik_o_registraciji.pdf
638             ba
639             com.ba
640             edu.ba
641             gov.ba
642             mil.ba
643             net.ba
644             org.ba
645              
646             // bb : https://en.wikipedia.org/wiki/.bb
647             bb
648             biz.bb
649             co.bb
650             com.bb
651             edu.bb
652             gov.bb
653             info.bb
654             net.bb
655             org.bb
656             store.bb
657             tv.bb
658              
659             // bd : https://en.wikipedia.org/wiki/.bd
660             *.bd
661              
662             // be : https://en.wikipedia.org/wiki/.be
663             // Confirmed by registry 2008-06-08
664             be
665             ac.be
666              
667             // bf : https://en.wikipedia.org/wiki/.bf
668             bf
669             gov.bf
670              
671             // bg : https://en.wikipedia.org/wiki/.bg
672             // https://www.register.bg/user/static/rules/en/index.html
673             bg
674             a.bg
675             b.bg
676             c.bg
677             d.bg
678             e.bg
679             f.bg
680             g.bg
681             h.bg
682             i.bg
683             j.bg
684             k.bg
685             l.bg
686             m.bg
687             n.bg
688             o.bg
689             p.bg
690             q.bg
691             r.bg
692             s.bg
693             t.bg
694             u.bg
695             v.bg
696             w.bg
697             x.bg
698             y.bg
699             z.bg
700             0.bg
701             1.bg
702             2.bg
703             3.bg
704             4.bg
705             5.bg
706             6.bg
707             7.bg
708             8.bg
709             9.bg
710              
711             // bh : https://en.wikipedia.org/wiki/.bh
712             bh
713             com.bh
714             edu.bh
715             net.bh
716             org.bh
717             gov.bh
718              
719             // bi : https://en.wikipedia.org/wiki/.bi
720             // http://whois.nic.bi/
721             bi
722             co.bi
723             com.bi
724             edu.bi
725             or.bi
726             org.bi
727              
728             // biz : https://en.wikipedia.org/wiki/.biz
729             biz
730              
731             // bj : https://en.wikipedia.org/wiki/.bj
732             bj
733             asso.bj
734             barreau.bj
735             gouv.bj
736              
737             // bm : http://www.bermudanic.bm/dnr-text.txt
738             bm
739             com.bm
740             edu.bm
741             gov.bm
742             net.bm
743             org.bm
744              
745             // bn : http://www.bnnic.bn/faqs
746             bn
747             com.bn
748             edu.bn
749             gov.bn
750             net.bn
751             org.bn
752              
753             // bo : https://nic.bo/delegacion2015.php#h-1.10
754             bo
755             com.bo
756             edu.bo
757             gob.bo
758             int.bo
759             org.bo
760             net.bo
761             mil.bo
762             tv.bo
763             web.bo
764             // Social Domains
765             academia.bo
766             agro.bo
767             arte.bo
768             blog.bo
769             bolivia.bo
770             ciencia.bo
771             cooperativa.bo
772             democracia.bo
773             deporte.bo
774             ecologia.bo
775             economia.bo
776             empresa.bo
777             indigena.bo
778             industria.bo
779             info.bo
780             medicina.bo
781             movimiento.bo
782             musica.bo
783             natural.bo
784             nombre.bo
785             noticias.bo
786             patria.bo
787             politica.bo
788             profesional.bo
789             plurinacional.bo
790             pueblo.bo
791             revista.bo
792             salud.bo
793             tecnologia.bo
794             tksat.bo
795             transporte.bo
796             wiki.bo
797              
798             // br : http://registro.br/dominio/categoria.html
799             // Submitted by registry
800             br
801             9guacu.br
802             abc.br
803             adm.br
804             adv.br
805             agr.br
806             aju.br
807             am.br
808             anani.br
809             aparecida.br
810             app.br
811             arq.br
812             art.br
813             ato.br
814             b.br
815             barueri.br
816             belem.br
817             bhz.br
818             bib.br
819             bio.br
820             blog.br
821             bmd.br
822             boavista.br
823             bsb.br
824             campinagrande.br
825             campinas.br
826             caxias.br
827             cim.br
828             cng.br
829             cnt.br
830             com.br
831             contagem.br
832             coop.br
833             coz.br
834             cri.br
835             cuiaba.br
836             curitiba.br
837             def.br
838             des.br
839             det.br
840             dev.br
841             ecn.br
842             eco.br
843             edu.br
844             emp.br
845             enf.br
846             eng.br
847             esp.br
848             etc.br
849             eti.br
850             far.br
851             feira.br
852             flog.br
853             floripa.br
854             fm.br
855             fnd.br
856             fortal.br
857             fot.br
858             foz.br
859             fst.br
860             g12.br
861             geo.br
862             ggf.br
863             goiania.br
864             gov.br
865             // gov.br 26 states + df https://en.wikipedia.org/wiki/States_of_Brazil
866             ac.gov.br
867             al.gov.br
868             am.gov.br
869             ap.gov.br
870             ba.gov.br
871             ce.gov.br
872             df.gov.br
873             es.gov.br
874             go.gov.br
875             ma.gov.br
876             mg.gov.br
877             ms.gov.br
878             mt.gov.br
879             pa.gov.br
880             pb.gov.br
881             pe.gov.br
882             pi.gov.br
883             pr.gov.br
884             rj.gov.br
885             rn.gov.br
886             ro.gov.br
887             rr.gov.br
888             rs.gov.br
889             sc.gov.br
890             se.gov.br
891             sp.gov.br
892             to.gov.br
893             gru.br
894             imb.br
895             ind.br
896             inf.br
897             jab.br
898             jampa.br
899             jdf.br
900             joinville.br
901             jor.br
902             jus.br
903             leg.br
904             lel.br
905             log.br
906             londrina.br
907             macapa.br
908             maceio.br
909             manaus.br
910             maringa.br
911             mat.br
912             med.br
913             mil.br
914             morena.br
915             mp.br
916             mus.br
917             natal.br
918             net.br
919             niteroi.br
920             *.nom.br
921             not.br
922             ntr.br
923             odo.br
924             ong.br
925             org.br
926             osasco.br
927             palmas.br
928             poa.br
929             ppg.br
930             pro.br
931             psc.br
932             psi.br
933             pvh.br
934             qsl.br
935             radio.br
936             rec.br
937             recife.br
938             rep.br
939             ribeirao.br
940             rio.br
941             riobranco.br
942             riopreto.br
943             salvador.br
944             sampa.br
945             santamaria.br
946             santoandre.br
947             saobernardo.br
948             saogonca.br
949             seg.br
950             sjc.br
951             slg.br
952             slz.br
953             sorocaba.br
954             srv.br
955             taxi.br
956             tc.br
957             tec.br
958             teo.br
959             the.br
960             tmp.br
961             trd.br
962             tur.br
963             tv.br
964             udi.br
965             vet.br
966             vix.br
967             vlog.br
968             wiki.br
969             zlg.br
970              
971             // bs : http://www.nic.bs/rules.html
972             bs
973             com.bs
974             net.bs
975             org.bs
976             edu.bs
977             gov.bs
978              
979             // bt : https://en.wikipedia.org/wiki/.bt
980             bt
981             com.bt
982             edu.bt
983             gov.bt
984             net.bt
985             org.bt
986              
987             // bv : No registrations at this time.
988             // Submitted by registry
989             bv
990              
991             // bw : https://en.wikipedia.org/wiki/.bw
992             // http://www.gobin.info/domainname/bw.doc
993             // list of other 2nd level tlds ?
994             bw
995             co.bw
996             org.bw
997              
998             // by : https://en.wikipedia.org/wiki/.by
999             // http://tld.by/rules_2006_en.html
1000             // list of other 2nd level tlds ?
1001             by
1002             gov.by
1003             mil.by
1004             // Official information does not indicate that com.by is a reserved
1005             // second-level domain, but it's being used as one (see www.google.com.by and
1006             // www.yahoo.com.by, for example), so we list it here for safety's sake.
1007             com.by
1008              
1009             // http://hoster.by/
1010             of.by
1011              
1012             // bz : https://en.wikipedia.org/wiki/.bz
1013             // http://www.belizenic.bz/
1014             bz
1015             com.bz
1016             net.bz
1017             org.bz
1018             edu.bz
1019             gov.bz
1020              
1021             // ca : https://en.wikipedia.org/wiki/.ca
1022             ca
1023             // ca geographical names
1024             ab.ca
1025             bc.ca
1026             mb.ca
1027             nb.ca
1028             nf.ca
1029             nl.ca
1030             ns.ca
1031             nt.ca
1032             nu.ca
1033             on.ca
1034             pe.ca
1035             qc.ca
1036             sk.ca
1037             yk.ca
1038             // gc.ca: https://en.wikipedia.org/wiki/.gc.ca
1039             // see also: http://registry.gc.ca/en/SubdomainFAQ
1040             gc.ca
1041              
1042             // cat : https://en.wikipedia.org/wiki/.cat
1043             cat
1044              
1045             // cc : https://en.wikipedia.org/wiki/.cc
1046             cc
1047              
1048             // cd : https://en.wikipedia.org/wiki/.cd
1049             // see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1
1050             cd
1051             gov.cd
1052              
1053             // cf : https://en.wikipedia.org/wiki/.cf
1054             cf
1055              
1056             // cg : https://en.wikipedia.org/wiki/.cg
1057             cg
1058              
1059             // ch : https://en.wikipedia.org/wiki/.ch
1060             ch
1061              
1062             // ci : https://en.wikipedia.org/wiki/.ci
1063             // http://www.nic.ci/index.php?page=charte
1064             ci
1065             org.ci
1066             or.ci
1067             com.ci
1068             co.ci
1069             edu.ci
1070             ed.ci
1071             ac.ci
1072             net.ci
1073             go.ci
1074             asso.ci
1075             xn--aroport-bya.ci
1076             int.ci
1077             presse.ci
1078             md.ci
1079             gouv.ci
1080              
1081             // ck : https://en.wikipedia.org/wiki/.ck
1082             *.ck
1083             !www.ck
1084              
1085             // cl : https://www.nic.cl
1086             // Confirmed by .CL registry
1087             cl
1088             co.cl
1089             gob.cl
1090             gov.cl
1091             mil.cl
1092              
1093             // cm : https://en.wikipedia.org/wiki/.cm plus bug 981927
1094             cm
1095             co.cm
1096             com.cm
1097             gov.cm
1098             net.cm
1099              
1100             // cn : https://en.wikipedia.org/wiki/.cn
1101             // Submitted by registry
1102             cn
1103             ac.cn
1104             com.cn
1105             edu.cn
1106             gov.cn
1107             net.cn
1108             org.cn
1109             mil.cn
1110             xn--55qx5d.cn
1111             xn--io0a7i.cn
1112             xn--od0alg.cn
1113             // cn geographic names
1114             ah.cn
1115             bj.cn
1116             cq.cn
1117             fj.cn
1118             gd.cn
1119             gs.cn
1120             gz.cn
1121             gx.cn
1122             ha.cn
1123             hb.cn
1124             he.cn
1125             hi.cn
1126             hl.cn
1127             hn.cn
1128             jl.cn
1129             js.cn
1130             jx.cn
1131             ln.cn
1132             nm.cn
1133             nx.cn
1134             qh.cn
1135             sc.cn
1136             sd.cn
1137             sh.cn
1138             sn.cn
1139             sx.cn
1140             tj.cn
1141             xj.cn
1142             xz.cn
1143             yn.cn
1144             zj.cn
1145             hk.cn
1146             mo.cn
1147             tw.cn
1148              
1149             // co : https://en.wikipedia.org/wiki/.co
1150             // Submitted by registry
1151             co
1152             arts.co
1153             com.co
1154             edu.co
1155             firm.co
1156             gov.co
1157             info.co
1158             int.co
1159             mil.co
1160             net.co
1161             nom.co
1162             org.co
1163             rec.co
1164             web.co
1165              
1166             // com : https://en.wikipedia.org/wiki/.com
1167             com
1168              
1169             // coop : https://en.wikipedia.org/wiki/.coop
1170             coop
1171              
1172             // cr : http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do
1173             cr
1174             ac.cr
1175             co.cr
1176             ed.cr
1177             fi.cr
1178             go.cr
1179             or.cr
1180             sa.cr
1181              
1182             // cu : https://en.wikipedia.org/wiki/.cu
1183             cu
1184             com.cu
1185             edu.cu
1186             org.cu
1187             net.cu
1188             gov.cu
1189             inf.cu
1190              
1191             // cv : https://en.wikipedia.org/wiki/.cv
1192             // cv : http://www.dns.cv/tldcv_portal/do?com=DS;5446457100;111;+PAGE(4000018)+K-CAT-CODIGO(RDOM)+RCNT(100); <- registration rules
1193             cv
1194             com.cv
1195             edu.cv
1196             int.cv
1197             nome.cv
1198             org.cv
1199              
1200             // cw : http://www.una.cw/cw_registry/
1201             // Confirmed by registry 2013-03-26
1202             cw
1203             com.cw
1204             edu.cw
1205             net.cw
1206             org.cw
1207              
1208             // cx : https://en.wikipedia.org/wiki/.cx
1209             // list of other 2nd level tlds ?
1210             cx
1211             gov.cx
1212              
1213             // cy : http://www.nic.cy/
1214             // Submitted by registry Panayiotou Fotia
1215             // namespace policies URL https://www.nic.cy/portal//sites/default/files/symfonia_gia_eggrafi.pdf
1216             cy
1217             ac.cy
1218             biz.cy
1219             com.cy
1220             ekloges.cy
1221             gov.cy
1222             ltd.cy
1223             mil.cy
1224             net.cy
1225             org.cy
1226             press.cy
1227             pro.cy
1228             tm.cy
1229              
1230             // cz : https://en.wikipedia.org/wiki/.cz
1231             cz
1232              
1233             // de : https://en.wikipedia.org/wiki/.de
1234             // Confirmed by registry (with technical
1235             // reservations) 2008-07-01
1236             de
1237              
1238             // dj : https://en.wikipedia.org/wiki/.dj
1239             dj
1240              
1241             // dk : https://en.wikipedia.org/wiki/.dk
1242             // Confirmed by registry 2008-06-17
1243             dk
1244              
1245             // dm : https://en.wikipedia.org/wiki/.dm
1246             dm
1247             com.dm
1248             net.dm
1249             org.dm
1250             edu.dm
1251             gov.dm
1252              
1253             // do : https://en.wikipedia.org/wiki/.do
1254             do
1255             art.do
1256             com.do
1257             edu.do
1258             gob.do
1259             gov.do
1260             mil.do
1261             net.do
1262             org.do
1263             sld.do
1264             web.do
1265              
1266             // dz : http://www.nic.dz/images/pdf_nic/charte.pdf
1267             dz
1268             art.dz
1269             asso.dz
1270             com.dz
1271             edu.dz
1272             gov.dz
1273             org.dz
1274             net.dz
1275             pol.dz
1276             soc.dz
1277             tm.dz
1278              
1279             // ec : http://www.nic.ec/reg/paso1.asp
1280             // Submitted by registry
1281             ec
1282             com.ec
1283             info.ec
1284             net.ec
1285             fin.ec
1286             k12.ec
1287             med.ec
1288             pro.ec
1289             org.ec
1290             edu.ec
1291             gov.ec
1292             gob.ec
1293             mil.ec
1294              
1295             // edu : https://en.wikipedia.org/wiki/.edu
1296             edu
1297              
1298             // ee : http://www.eenet.ee/EENet/dom_reeglid.html#lisa_B
1299             ee
1300             edu.ee
1301             gov.ee
1302             riik.ee
1303             lib.ee
1304             med.ee
1305             com.ee
1306             pri.ee
1307             aip.ee
1308             org.ee
1309             fie.ee
1310              
1311             // eg : https://en.wikipedia.org/wiki/.eg
1312             eg
1313             com.eg
1314             edu.eg
1315             eun.eg
1316             gov.eg
1317             mil.eg
1318             name.eg
1319             net.eg
1320             org.eg
1321             sci.eg
1322              
1323             // er : https://en.wikipedia.org/wiki/.er
1324             *.er
1325              
1326             // es : https://www.nic.es/site_ingles/ingles/dominios/index.html
1327             es
1328             com.es
1329             nom.es
1330             org.es
1331             gob.es
1332             edu.es
1333              
1334             // et : https://en.wikipedia.org/wiki/.et
1335             et
1336             com.et
1337             gov.et
1338             org.et
1339             edu.et
1340             biz.et
1341             name.et
1342             info.et
1343             net.et
1344              
1345             // eu : https://en.wikipedia.org/wiki/.eu
1346             eu
1347              
1348             // fi : https://en.wikipedia.org/wiki/.fi
1349             fi
1350             // aland.fi : https://en.wikipedia.org/wiki/.ax
1351             // This domain is being phased out in favor of .ax. As there are still many
1352             // domains under aland.fi, we still keep it on the list until aland.fi is
1353             // completely removed.
1354             // TODO: Check for updates (expected to be phased out around Q1/2009)
1355             aland.fi
1356              
1357             // fj : http://domains.fj/
1358             // Submitted by registry 2020-02-11
1359             fj
1360             ac.fj
1361             biz.fj
1362             com.fj
1363             gov.fj
1364             info.fj
1365             mil.fj
1366             name.fj
1367             net.fj
1368             org.fj
1369             pro.fj
1370              
1371             // fk : https://en.wikipedia.org/wiki/.fk
1372             *.fk
1373              
1374             // fm : https://en.wikipedia.org/wiki/.fm
1375             com.fm
1376             edu.fm
1377             net.fm
1378             org.fm
1379             fm
1380              
1381             // fo : https://en.wikipedia.org/wiki/.fo
1382             fo
1383              
1384             // fr : http://www.afnic.fr/
1385             // domaines descriptifs : https://www.afnic.fr/medias/documents/Cadre_legal/Afnic_Naming_Policy_12122016_VEN.pdf
1386             fr
1387             asso.fr
1388             com.fr
1389             gouv.fr
1390             nom.fr
1391             prd.fr
1392             tm.fr
1393             // domaines sectoriels : https://www.afnic.fr/en/products-and-services/the-fr-tld/sector-based-fr-domains-4.html
1394             aeroport.fr
1395             avocat.fr
1396             avoues.fr
1397             cci.fr
1398             chambagri.fr
1399             chirurgiens-dentistes.fr
1400             experts-comptables.fr
1401             geometre-expert.fr
1402             greta.fr
1403             huissier-justice.fr
1404             medecin.fr
1405             notaires.fr
1406             pharmacien.fr
1407             port.fr
1408             veterinaire.fr
1409              
1410             // ga : https://en.wikipedia.org/wiki/.ga
1411             ga
1412              
1413             // gb : This registry is effectively dormant
1414             // Submitted by registry
1415             gb
1416              
1417             // gd : https://en.wikipedia.org/wiki/.gd
1418             edu.gd
1419             gov.gd
1420             gd
1421              
1422             // ge : http://www.nic.net.ge/policy_en.pdf
1423             ge
1424             com.ge
1425             edu.ge
1426             gov.ge
1427             org.ge
1428             mil.ge
1429             net.ge
1430             pvt.ge
1431              
1432             // gf : https://en.wikipedia.org/wiki/.gf
1433             gf
1434              
1435             // gg : http://www.channelisles.net/register-domains/
1436             // Confirmed by registry 2013-11-28
1437             gg
1438             co.gg
1439             net.gg
1440             org.gg
1441              
1442             // gh : https://en.wikipedia.org/wiki/.gh
1443             // see also: http://www.nic.gh/reg_now.php
1444             // Although domains directly at second level are not possible at the moment,
1445             // they have been possible for some time and may come back.
1446             gh
1447             com.gh
1448             edu.gh
1449             gov.gh
1450             org.gh
1451             mil.gh
1452              
1453             // gi : http://www.nic.gi/rules.html
1454             gi
1455             com.gi
1456             ltd.gi
1457             gov.gi
1458             mod.gi
1459             edu.gi
1460             org.gi
1461              
1462             // gl : https://en.wikipedia.org/wiki/.gl
1463             // http://nic.gl
1464             gl
1465             co.gl
1466             com.gl
1467             edu.gl
1468             net.gl
1469             org.gl
1470              
1471             // gm : http://www.nic.gm/htmlpages%5Cgm-policy.htm
1472             gm
1473              
1474             // gn : http://psg.com/dns/gn/gn.txt
1475             // Submitted by registry
1476             gn
1477             ac.gn
1478             com.gn
1479             edu.gn
1480             gov.gn
1481             org.gn
1482             net.gn
1483              
1484             // gov : https://en.wikipedia.org/wiki/.gov
1485             gov
1486              
1487             // gp : http://www.nic.gp/index.php?lang=en
1488             gp
1489             com.gp
1490             net.gp
1491             mobi.gp
1492             edu.gp
1493             org.gp
1494             asso.gp
1495              
1496             // gq : https://en.wikipedia.org/wiki/.gq
1497             gq
1498              
1499             // gr : https://grweb.ics.forth.gr/english/1617-B-2005.html
1500             // Submitted by registry
1501             gr
1502             com.gr
1503             edu.gr
1504             net.gr
1505             org.gr
1506             gov.gr
1507              
1508             // gs : https://en.wikipedia.org/wiki/.gs
1509             gs
1510              
1511             // gt : https://www.gt/sitio/registration_policy.php?lang=en
1512             gt
1513             com.gt
1514             edu.gt
1515             gob.gt
1516             ind.gt
1517             mil.gt
1518             net.gt
1519             org.gt
1520              
1521             // gu : http://gadao.gov.gu/register.html
1522             // University of Guam : https://www.uog.edu
1523             // Submitted by uognoc@triton.uog.edu
1524             gu
1525             com.gu
1526             edu.gu
1527             gov.gu
1528             guam.gu
1529             info.gu
1530             net.gu
1531             org.gu
1532             web.gu
1533              
1534             // gw : https://en.wikipedia.org/wiki/.gw
1535             // gw : https://nic.gw/regras/
1536             gw
1537              
1538             // gy : https://en.wikipedia.org/wiki/.gy
1539             // http://registry.gy/
1540             gy
1541             co.gy
1542             com.gy
1543             edu.gy
1544             gov.gy
1545             net.gy
1546             org.gy
1547              
1548             // hk : https://www.hkirc.hk
1549             // Submitted by registry
1550             hk
1551             com.hk
1552             edu.hk
1553             gov.hk
1554             idv.hk
1555             net.hk
1556             org.hk
1557             xn--55qx5d.hk
1558             xn--wcvs22d.hk
1559             xn--lcvr32d.hk
1560             xn--mxtq1m.hk
1561             xn--gmqw5a.hk
1562             xn--ciqpn.hk
1563             xn--gmq050i.hk
1564             xn--zf0avx.hk
1565             xn--io0a7i.hk
1566             xn--mk0axi.hk
1567             xn--od0alg.hk
1568             xn--od0aq3b.hk
1569             xn--tn0ag.hk
1570             xn--uc0atv.hk
1571             xn--uc0ay4a.hk
1572              
1573             // hm : https://en.wikipedia.org/wiki/.hm
1574             hm
1575              
1576             // hn : http://www.nic.hn/politicas/ps02,,05.html
1577             hn
1578             com.hn
1579             edu.hn
1580             org.hn
1581             net.hn
1582             mil.hn
1583             gob.hn
1584              
1585             // hr : http://www.dns.hr/documents/pdf/HRTLD-regulations.pdf
1586             hr
1587             iz.hr
1588             from.hr
1589             name.hr
1590             com.hr
1591              
1592             // ht : http://www.nic.ht/info/charte.cfm
1593             ht
1594             com.ht
1595             shop.ht
1596             firm.ht
1597             info.ht
1598             adult.ht
1599             net.ht
1600             pro.ht
1601             org.ht
1602             med.ht
1603             art.ht
1604             coop.ht
1605             pol.ht
1606             asso.ht
1607             edu.ht
1608             rel.ht
1609             gouv.ht
1610             perso.ht
1611              
1612             // hu : http://www.domain.hu/domain/English/sld.html
1613             // Confirmed by registry 2008-06-12
1614             hu
1615             co.hu
1616             info.hu
1617             org.hu
1618             priv.hu
1619             sport.hu
1620             tm.hu
1621             2000.hu
1622             agrar.hu
1623             bolt.hu
1624             casino.hu
1625             city.hu
1626             erotica.hu
1627             erotika.hu
1628             film.hu
1629             forum.hu
1630             games.hu
1631             hotel.hu
1632             ingatlan.hu
1633             jogasz.hu
1634             konyvelo.hu
1635             lakas.hu
1636             media.hu
1637             news.hu
1638             reklam.hu
1639             sex.hu
1640             shop.hu
1641             suli.hu
1642             szex.hu
1643             tozsde.hu
1644             utazas.hu
1645             video.hu
1646              
1647             // id : https://pandi.id/en/domain/registration-requirements/
1648             id
1649             ac.id
1650             biz.id
1651             co.id
1652             desa.id
1653             go.id
1654             mil.id
1655             my.id
1656             net.id
1657             or.id
1658             ponpes.id
1659             sch.id
1660             web.id
1661              
1662             // ie : https://en.wikipedia.org/wiki/.ie
1663             ie
1664             gov.ie
1665              
1666             // il : http://www.isoc.org.il/domains/
1667             // see also: https://en.isoc.org.il/il-cctld/registration-rules
1668             // ISOC-IL (operated by .il Registry)
1669             il
1670             ac.il
1671             co.il
1672             gov.il
1673             idf.il
1674             k12.il
1675             muni.il
1676             net.il
1677             org.il
1678             // xn--4dbrk0ce ("Israel", Hebrew) : IL
1679             xn--4dbrk0ce
1680             // xn--4dbgdty6c.xn--4dbrk0ce.
1681             xn--4dbgdty6c.xn--4dbrk0ce
1682             // xn--5dbhl8d.xn--4dbrk0ce.
1683             xn--5dbhl8d.xn--4dbrk0ce
1684             // xn--8dbq2a.xn--4dbrk0ce.
1685             xn--8dbq2a.xn--4dbrk0ce
1686             // xn--hebda8b.xn--4dbrk0ce.
1687             xn--hebda8b.xn--4dbrk0ce
1688              
1689             // im : https://www.nic.im/
1690             // Submitted by registry
1691             im
1692             ac.im
1693             co.im
1694             com.im
1695             ltd.co.im
1696             net.im
1697             org.im
1698             plc.co.im
1699             tt.im
1700             tv.im
1701              
1702             // in : https://en.wikipedia.org/wiki/.in
1703             // see also: https://registry.in/policies
1704             // Please note, that nic.in is not an official eTLD, but used by most
1705             // government institutions.
1706             in
1707             5g.in
1708             6g.in
1709             ac.in
1710             ai.in
1711             am.in
1712             bihar.in
1713             biz.in
1714             business.in
1715             ca.in
1716             cn.in
1717             co.in
1718             com.in
1719             coop.in
1720             cs.in
1721             delhi.in
1722             dr.in
1723             edu.in
1724             er.in
1725             firm.in
1726             gen.in
1727             gov.in
1728             gujarat.in
1729             ind.in
1730             info.in
1731             int.in
1732             internet.in
1733             io.in
1734             me.in
1735             mil.in
1736             net.in
1737             nic.in
1738             org.in
1739             pg.in
1740             post.in
1741             pro.in
1742             res.in
1743             travel.in
1744             tv.in
1745             uk.in
1746             up.in
1747             us.in
1748              
1749             // info : https://en.wikipedia.org/wiki/.info
1750             info
1751              
1752             // int : https://en.wikipedia.org/wiki/.int
1753             // Confirmed by registry 2008-06-18
1754             int
1755             eu.int
1756              
1757             // io : http://www.nic.io/rules.htm
1758             // list of other 2nd level tlds ?
1759             io
1760             com.io
1761              
1762             // iq : http://www.cmc.iq/english/iq/iqregister1.htm
1763             iq
1764             gov.iq
1765             edu.iq
1766             mil.iq
1767             com.iq
1768             org.iq
1769             net.iq
1770              
1771             // ir : http://www.nic.ir/Terms_and_Conditions_ir,_Appendix_1_Domain_Rules
1772             // Also see http://www.nic.ir/Internationalized_Domain_Names
1773             // Two .ir entries added at request of , 2010-04-16
1774             ir
1775             ac.ir
1776             co.ir
1777             gov.ir
1778             id.ir
1779             net.ir
1780             org.ir
1781             sch.ir
1782             // xn--mgba3a4f16a.ir (.ir, Persian YEH)
1783             xn--mgba3a4f16a.ir
1784             // xn--mgba3a4fra.ir (.ir, Arabic YEH)
1785             xn--mgba3a4fra.ir
1786              
1787             // is : http://www.isnic.is/domain/rules.php
1788             // Confirmed by registry 2008-12-06
1789             is
1790             net.is
1791             com.is
1792             edu.is
1793             gov.is
1794             org.is
1795             int.is
1796              
1797             // it : https://en.wikipedia.org/wiki/.it
1798             it
1799             gov.it
1800             edu.it
1801             // Reserved geo-names (regions and provinces):
1802             // https://www.nic.it/sites/default/files/archivio/docs/Regulation_assignation_v7.1.pdf
1803             // Regions
1804             abr.it
1805             abruzzo.it
1806             aosta-valley.it
1807             aostavalley.it
1808             bas.it
1809             basilicata.it
1810             cal.it
1811             calabria.it
1812             cam.it
1813             campania.it
1814             emilia-romagna.it
1815             emiliaromagna.it
1816             emr.it
1817             friuli-v-giulia.it
1818             friuli-ve-giulia.it
1819             friuli-vegiulia.it
1820             friuli-venezia-giulia.it
1821             friuli-veneziagiulia.it
1822             friuli-vgiulia.it
1823             friuliv-giulia.it
1824             friulive-giulia.it
1825             friulivegiulia.it
1826             friulivenezia-giulia.it
1827             friuliveneziagiulia.it
1828             friulivgiulia.it
1829             fvg.it
1830             laz.it
1831             lazio.it
1832             lig.it
1833             liguria.it
1834             lom.it
1835             lombardia.it
1836             lombardy.it
1837             lucania.it
1838             mar.it
1839             marche.it
1840             mol.it
1841             molise.it
1842             piedmont.it
1843             piemonte.it
1844             pmn.it
1845             pug.it
1846             puglia.it
1847             sar.it
1848             sardegna.it
1849             sardinia.it
1850             sic.it
1851             sicilia.it
1852             sicily.it
1853             taa.it
1854             tos.it
1855             toscana.it
1856             trentin-sud-tirol.it
1857             xn--trentin-sd-tirol-rzb.it
1858             trentin-sudtirol.it
1859             xn--trentin-sdtirol-7vb.it
1860             trentin-sued-tirol.it
1861             trentin-suedtirol.it
1862             trentino-a-adige.it
1863             trentino-aadige.it
1864             trentino-alto-adige.it
1865             trentino-altoadige.it
1866             trentino-s-tirol.it
1867             trentino-stirol.it
1868             trentino-sud-tirol.it
1869             xn--trentino-sd-tirol-c3b.it
1870             trentino-sudtirol.it
1871             xn--trentino-sdtirol-szb.it
1872             trentino-sued-tirol.it
1873             trentino-suedtirol.it
1874             trentino.it
1875             trentinoa-adige.it
1876             trentinoaadige.it
1877             trentinoalto-adige.it
1878             trentinoaltoadige.it
1879             trentinos-tirol.it
1880             trentinostirol.it
1881             trentinosud-tirol.it
1882             xn--trentinosd-tirol-rzb.it
1883             trentinosudtirol.it
1884             xn--trentinosdtirol-7vb.it
1885             trentinosued-tirol.it
1886             trentinosuedtirol.it
1887             trentinsud-tirol.it
1888             xn--trentinsd-tirol-6vb.it
1889             trentinsudtirol.it
1890             xn--trentinsdtirol-nsb.it
1891             trentinsued-tirol.it
1892             trentinsuedtirol.it
1893             tuscany.it
1894             umb.it
1895             umbria.it
1896             val-d-aosta.it
1897             val-daosta.it
1898             vald-aosta.it
1899             valdaosta.it
1900             valle-aosta.it
1901             valle-d-aosta.it
1902             valle-daosta.it
1903             valleaosta.it
1904             valled-aosta.it
1905             valledaosta.it
1906             vallee-aoste.it
1907             xn--valle-aoste-ebb.it
1908             vallee-d-aoste.it
1909             xn--valle-d-aoste-ehb.it
1910             valleeaoste.it
1911             xn--valleaoste-e7a.it
1912             valleedaoste.it
1913             xn--valledaoste-ebb.it
1914             vao.it
1915             vda.it
1916             ven.it
1917             veneto.it
1918             // Provinces
1919             ag.it
1920             agrigento.it
1921             al.it
1922             alessandria.it
1923             alto-adige.it
1924             altoadige.it
1925             an.it
1926             ancona.it
1927             andria-barletta-trani.it
1928             andria-trani-barletta.it
1929             andriabarlettatrani.it
1930             andriatranibarletta.it
1931             ao.it
1932             aosta.it
1933             aoste.it
1934             ap.it
1935             aq.it
1936             aquila.it
1937             ar.it
1938             arezzo.it
1939             ascoli-piceno.it
1940             ascolipiceno.it
1941             asti.it
1942             at.it
1943             av.it
1944             avellino.it
1945             ba.it
1946             balsan-sudtirol.it
1947             xn--balsan-sdtirol-nsb.it
1948             balsan-suedtirol.it
1949             balsan.it
1950             bari.it
1951             barletta-trani-andria.it
1952             barlettatraniandria.it
1953             belluno.it
1954             benevento.it
1955             bergamo.it
1956             bg.it
1957             bi.it
1958             biella.it
1959             bl.it
1960             bn.it
1961             bo.it
1962             bologna.it
1963             bolzano-altoadige.it
1964             bolzano.it
1965             bozen-sudtirol.it
1966             xn--bozen-sdtirol-2ob.it
1967             bozen-suedtirol.it
1968             bozen.it
1969             br.it
1970             brescia.it
1971             brindisi.it
1972             bs.it
1973             bt.it
1974             bulsan-sudtirol.it
1975             xn--bulsan-sdtirol-nsb.it
1976             bulsan-suedtirol.it
1977             bulsan.it
1978             bz.it
1979             ca.it
1980             cagliari.it
1981             caltanissetta.it
1982             campidano-medio.it
1983             campidanomedio.it
1984             campobasso.it
1985             carbonia-iglesias.it
1986             carboniaiglesias.it
1987             carrara-massa.it
1988             carraramassa.it
1989             caserta.it
1990             catania.it
1991             catanzaro.it
1992             cb.it
1993             ce.it
1994             cesena-forli.it
1995             xn--cesena-forl-mcb.it
1996             cesenaforli.it
1997             xn--cesenaforl-i8a.it
1998             ch.it
1999             chieti.it
2000             ci.it
2001             cl.it
2002             cn.it
2003             co.it
2004             como.it
2005             cosenza.it
2006             cr.it
2007             cremona.it
2008             crotone.it
2009             cs.it
2010             ct.it
2011             cuneo.it
2012             cz.it
2013             dell-ogliastra.it
2014             dellogliastra.it
2015             en.it
2016             enna.it
2017             fc.it
2018             fe.it
2019             fermo.it
2020             ferrara.it
2021             fg.it
2022             fi.it
2023             firenze.it
2024             florence.it
2025             fm.it
2026             foggia.it
2027             forli-cesena.it
2028             xn--forl-cesena-fcb.it
2029             forlicesena.it
2030             xn--forlcesena-c8a.it
2031             fr.it
2032             frosinone.it
2033             ge.it
2034             genoa.it
2035             genova.it
2036             go.it
2037             gorizia.it
2038             gr.it
2039             grosseto.it
2040             iglesias-carbonia.it
2041             iglesiascarbonia.it
2042             im.it
2043             imperia.it
2044             is.it
2045             isernia.it
2046             kr.it
2047             la-spezia.it
2048             laquila.it
2049             laspezia.it
2050             latina.it
2051             lc.it
2052             le.it
2053             lecce.it
2054             lecco.it
2055             li.it
2056             livorno.it
2057             lo.it
2058             lodi.it
2059             lt.it
2060             lu.it
2061             lucca.it
2062             macerata.it
2063             mantova.it
2064             massa-carrara.it
2065             massacarrara.it
2066             matera.it
2067             mb.it
2068             mc.it
2069             me.it
2070             medio-campidano.it
2071             mediocampidano.it
2072             messina.it
2073             mi.it
2074             milan.it
2075             milano.it
2076             mn.it
2077             mo.it
2078             modena.it
2079             monza-brianza.it
2080             monza-e-della-brianza.it
2081             monza.it
2082             monzabrianza.it
2083             monzaebrianza.it
2084             monzaedellabrianza.it
2085             ms.it
2086             mt.it
2087             na.it
2088             naples.it
2089             napoli.it
2090             no.it
2091             novara.it
2092             nu.it
2093             nuoro.it
2094             og.it
2095             ogliastra.it
2096             olbia-tempio.it
2097             olbiatempio.it
2098             or.it
2099             oristano.it
2100             ot.it
2101             pa.it
2102             padova.it
2103             padua.it
2104             palermo.it
2105             parma.it
2106             pavia.it
2107             pc.it
2108             pd.it
2109             pe.it
2110             perugia.it
2111             pesaro-urbino.it
2112             pesarourbino.it
2113             pescara.it
2114             pg.it
2115             pi.it
2116             piacenza.it
2117             pisa.it
2118             pistoia.it
2119             pn.it
2120             po.it
2121             pordenone.it
2122             potenza.it
2123             pr.it
2124             prato.it
2125             pt.it
2126             pu.it
2127             pv.it
2128             pz.it
2129             ra.it
2130             ragusa.it
2131             ravenna.it
2132             rc.it
2133             re.it
2134             reggio-calabria.it
2135             reggio-emilia.it
2136             reggiocalabria.it
2137             reggioemilia.it
2138             rg.it
2139             ri.it
2140             rieti.it
2141             rimini.it
2142             rm.it
2143             rn.it
2144             ro.it
2145             roma.it
2146             rome.it
2147             rovigo.it
2148             sa.it
2149             salerno.it
2150             sassari.it
2151             savona.it
2152             si.it
2153             siena.it
2154             siracusa.it
2155             so.it
2156             sondrio.it
2157             sp.it
2158             sr.it
2159             ss.it
2160             suedtirol.it
2161             xn--sdtirol-n2a.it
2162             sv.it
2163             ta.it
2164             taranto.it
2165             te.it
2166             tempio-olbia.it
2167             tempioolbia.it
2168             teramo.it
2169             terni.it
2170             tn.it
2171             to.it
2172             torino.it
2173             tp.it
2174             tr.it
2175             trani-andria-barletta.it
2176             trani-barletta-andria.it
2177             traniandriabarletta.it
2178             tranibarlettaandria.it
2179             trapani.it
2180             trento.it
2181             treviso.it
2182             trieste.it
2183             ts.it
2184             turin.it
2185             tv.it
2186             ud.it
2187             udine.it
2188             urbino-pesaro.it
2189             urbinopesaro.it
2190             va.it
2191             varese.it
2192             vb.it
2193             vc.it
2194             ve.it
2195             venezia.it
2196             venice.it
2197             verbania.it
2198             vercelli.it
2199             verona.it
2200             vi.it
2201             vibo-valentia.it
2202             vibovalentia.it
2203             vicenza.it
2204             viterbo.it
2205             vr.it
2206             vs.it
2207             vt.it
2208             vv.it
2209              
2210             // je : http://www.channelisles.net/register-domains/
2211             // Confirmed by registry 2013-11-28
2212             je
2213             co.je
2214             net.je
2215             org.je
2216              
2217             // jm : http://www.com.jm/register.html
2218             *.jm
2219              
2220             // jo : http://www.dns.jo/Registration_policy.aspx
2221             jo
2222             com.jo
2223             org.jo
2224             net.jo
2225             edu.jo
2226             sch.jo
2227             gov.jo
2228             mil.jo
2229             name.jo
2230              
2231             // jobs : https://en.wikipedia.org/wiki/.jobs
2232             jobs
2233              
2234             // jp : https://en.wikipedia.org/wiki/.jp
2235             // http://jprs.co.jp/en/jpdomain.html
2236             // Submitted by registry
2237             jp
2238             // jp organizational type names
2239             ac.jp
2240             ad.jp
2241             co.jp
2242             ed.jp
2243             go.jp
2244             gr.jp
2245             lg.jp
2246             ne.jp
2247             or.jp
2248             // jp prefecture type names
2249             aichi.jp
2250             akita.jp
2251             aomori.jp
2252             chiba.jp
2253             ehime.jp
2254             fukui.jp
2255             fukuoka.jp
2256             fukushima.jp
2257             gifu.jp
2258             gunma.jp
2259             hiroshima.jp
2260             hokkaido.jp
2261             hyogo.jp
2262             ibaraki.jp
2263             ishikawa.jp
2264             iwate.jp
2265             kagawa.jp
2266             kagoshima.jp
2267             kanagawa.jp
2268             kochi.jp
2269             kumamoto.jp
2270             kyoto.jp
2271             mie.jp
2272             miyagi.jp
2273             miyazaki.jp
2274             nagano.jp
2275             nagasaki.jp
2276             nara.jp
2277             niigata.jp
2278             oita.jp
2279             okayama.jp
2280             okinawa.jp
2281             osaka.jp
2282             saga.jp
2283             saitama.jp
2284             shiga.jp
2285             shimane.jp
2286             shizuoka.jp
2287             tochigi.jp
2288             tokushima.jp
2289             tokyo.jp
2290             tottori.jp
2291             toyama.jp
2292             wakayama.jp
2293             yamagata.jp
2294             yamaguchi.jp
2295             yamanashi.jp
2296             xn--4pvxs.jp
2297             xn--vgu402c.jp
2298             xn--c3s14m.jp
2299             xn--f6qx53a.jp
2300             xn--8pvr4u.jp
2301             xn--uist22h.jp
2302             xn--djrs72d6uy.jp
2303             xn--mkru45i.jp
2304             xn--0trq7p7nn.jp
2305             xn--8ltr62k.jp
2306             xn--2m4a15e.jp
2307             xn--efvn9s.jp
2308             xn--32vp30h.jp
2309             xn--4it797k.jp
2310             xn--1lqs71d.jp
2311             xn--5rtp49c.jp
2312             xn--5js045d.jp
2313             xn--ehqz56n.jp
2314             xn--1lqs03n.jp
2315             xn--qqqt11m.jp
2316             xn--kbrq7o.jp
2317             xn--pssu33l.jp
2318             xn--ntsq17g.jp
2319             xn--uisz3g.jp
2320             xn--6btw5a.jp
2321             xn--1ctwo.jp
2322             xn--6orx2r.jp
2323             xn--rht61e.jp
2324             xn--rht27z.jp
2325             xn--djty4k.jp
2326             xn--nit225k.jp
2327             xn--rht3d.jp
2328             xn--klty5x.jp
2329             xn--kltx9a.jp
2330             xn--kltp7d.jp
2331             xn--uuwu58a.jp
2332             xn--zbx025d.jp
2333             xn--ntso0iqx3a.jp
2334             xn--elqq16h.jp
2335             xn--4it168d.jp
2336             xn--klt787d.jp
2337             xn--rny31h.jp
2338             xn--7t0a264c.jp
2339             xn--5rtq34k.jp
2340             xn--k7yn95e.jp
2341             xn--tor131o.jp
2342             xn--d5qv7z876c.jp
2343             // jp geographic type names
2344             // http://jprs.jp/doc/rule/saisoku-1.html
2345             *.kawasaki.jp
2346             *.kitakyushu.jp
2347             *.kobe.jp
2348             *.nagoya.jp
2349             *.sapporo.jp
2350             *.sendai.jp
2351             *.yokohama.jp
2352             !city.kawasaki.jp
2353             !city.kitakyushu.jp
2354             !city.kobe.jp
2355             !city.nagoya.jp
2356             !city.sapporo.jp
2357             !city.sendai.jp
2358             !city.yokohama.jp
2359             // 4th level registration
2360             aisai.aichi.jp
2361             ama.aichi.jp
2362             anjo.aichi.jp
2363             asuke.aichi.jp
2364             chiryu.aichi.jp
2365             chita.aichi.jp
2366             fuso.aichi.jp
2367             gamagori.aichi.jp
2368             handa.aichi.jp
2369             hazu.aichi.jp
2370             hekinan.aichi.jp
2371             higashiura.aichi.jp
2372             ichinomiya.aichi.jp
2373             inazawa.aichi.jp
2374             inuyama.aichi.jp
2375             isshiki.aichi.jp
2376             iwakura.aichi.jp
2377             kanie.aichi.jp
2378             kariya.aichi.jp
2379             kasugai.aichi.jp
2380             kira.aichi.jp
2381             kiyosu.aichi.jp
2382             komaki.aichi.jp
2383             konan.aichi.jp
2384             kota.aichi.jp
2385             mihama.aichi.jp
2386             miyoshi.aichi.jp
2387             nishio.aichi.jp
2388             nisshin.aichi.jp
2389             obu.aichi.jp
2390             oguchi.aichi.jp
2391             oharu.aichi.jp
2392             okazaki.aichi.jp
2393             owariasahi.aichi.jp
2394             seto.aichi.jp
2395             shikatsu.aichi.jp
2396             shinshiro.aichi.jp
2397             shitara.aichi.jp
2398             tahara.aichi.jp
2399             takahama.aichi.jp
2400             tobishima.aichi.jp
2401             toei.aichi.jp
2402             togo.aichi.jp
2403             tokai.aichi.jp
2404             tokoname.aichi.jp
2405             toyoake.aichi.jp
2406             toyohashi.aichi.jp
2407             toyokawa.aichi.jp
2408             toyone.aichi.jp
2409             toyota.aichi.jp
2410             tsushima.aichi.jp
2411             yatomi.aichi.jp
2412             akita.akita.jp
2413             daisen.akita.jp
2414             fujisato.akita.jp
2415             gojome.akita.jp
2416             hachirogata.akita.jp
2417             happou.akita.jp
2418             higashinaruse.akita.jp
2419             honjo.akita.jp
2420             honjyo.akita.jp
2421             ikawa.akita.jp
2422             kamikoani.akita.jp
2423             kamioka.akita.jp
2424             katagami.akita.jp
2425             kazuno.akita.jp
2426             kitaakita.akita.jp
2427             kosaka.akita.jp
2428             kyowa.akita.jp
2429             misato.akita.jp
2430             mitane.akita.jp
2431             moriyoshi.akita.jp
2432             nikaho.akita.jp
2433             noshiro.akita.jp
2434             odate.akita.jp
2435             oga.akita.jp
2436             ogata.akita.jp
2437             semboku.akita.jp
2438             yokote.akita.jp
2439             yurihonjo.akita.jp
2440             aomori.aomori.jp
2441             gonohe.aomori.jp
2442             hachinohe.aomori.jp
2443             hashikami.aomori.jp
2444             hiranai.aomori.jp
2445             hirosaki.aomori.jp
2446             itayanagi.aomori.jp
2447             kuroishi.aomori.jp
2448             misawa.aomori.jp
2449             mutsu.aomori.jp
2450             nakadomari.aomori.jp
2451             noheji.aomori.jp
2452             oirase.aomori.jp
2453             owani.aomori.jp
2454             rokunohe.aomori.jp
2455             sannohe.aomori.jp
2456             shichinohe.aomori.jp
2457             shingo.aomori.jp
2458             takko.aomori.jp
2459             towada.aomori.jp
2460             tsugaru.aomori.jp
2461             tsuruta.aomori.jp
2462             abiko.chiba.jp
2463             asahi.chiba.jp
2464             chonan.chiba.jp
2465             chosei.chiba.jp
2466             choshi.chiba.jp
2467             chuo.chiba.jp
2468             funabashi.chiba.jp
2469             futtsu.chiba.jp
2470             hanamigawa.chiba.jp
2471             ichihara.chiba.jp
2472             ichikawa.chiba.jp
2473             ichinomiya.chiba.jp
2474             inzai.chiba.jp
2475             isumi.chiba.jp
2476             kamagaya.chiba.jp
2477             kamogawa.chiba.jp
2478             kashiwa.chiba.jp
2479             katori.chiba.jp
2480             katsuura.chiba.jp
2481             kimitsu.chiba.jp
2482             kisarazu.chiba.jp
2483             kozaki.chiba.jp
2484             kujukuri.chiba.jp
2485             kyonan.chiba.jp
2486             matsudo.chiba.jp
2487             midori.chiba.jp
2488             mihama.chiba.jp
2489             minamiboso.chiba.jp
2490             mobara.chiba.jp
2491             mutsuzawa.chiba.jp
2492             nagara.chiba.jp
2493             nagareyama.chiba.jp
2494             narashino.chiba.jp
2495             narita.chiba.jp
2496             noda.chiba.jp
2497             oamishirasato.chiba.jp
2498             omigawa.chiba.jp
2499             onjuku.chiba.jp
2500             otaki.chiba.jp
2501             sakae.chiba.jp
2502             sakura.chiba.jp
2503             shimofusa.chiba.jp
2504             shirako.chiba.jp
2505             shiroi.chiba.jp
2506             shisui.chiba.jp
2507             sodegaura.chiba.jp
2508             sosa.chiba.jp
2509             tako.chiba.jp
2510             tateyama.chiba.jp
2511             togane.chiba.jp
2512             tohnosho.chiba.jp
2513             tomisato.chiba.jp
2514             urayasu.chiba.jp
2515             yachimata.chiba.jp
2516             yachiyo.chiba.jp
2517             yokaichiba.chiba.jp
2518             yokoshibahikari.chiba.jp
2519             yotsukaido.chiba.jp
2520             ainan.ehime.jp
2521             honai.ehime.jp
2522             ikata.ehime.jp
2523             imabari.ehime.jp
2524             iyo.ehime.jp
2525             kamijima.ehime.jp
2526             kihoku.ehime.jp
2527             kumakogen.ehime.jp
2528             masaki.ehime.jp
2529             matsuno.ehime.jp
2530             matsuyama.ehime.jp
2531             namikata.ehime.jp
2532             niihama.ehime.jp
2533             ozu.ehime.jp
2534             saijo.ehime.jp
2535             seiyo.ehime.jp
2536             shikokuchuo.ehime.jp
2537             tobe.ehime.jp
2538             toon.ehime.jp
2539             uchiko.ehime.jp
2540             uwajima.ehime.jp
2541             yawatahama.ehime.jp
2542             echizen.fukui.jp
2543             eiheiji.fukui.jp
2544             fukui.fukui.jp
2545             ikeda.fukui.jp
2546             katsuyama.fukui.jp
2547             mihama.fukui.jp
2548             minamiechizen.fukui.jp
2549             obama.fukui.jp
2550             ohi.fukui.jp
2551             ono.fukui.jp
2552             sabae.fukui.jp
2553             sakai.fukui.jp
2554             takahama.fukui.jp
2555             tsuruga.fukui.jp
2556             wakasa.fukui.jp
2557             ashiya.fukuoka.jp
2558             buzen.fukuoka.jp
2559             chikugo.fukuoka.jp
2560             chikuho.fukuoka.jp
2561             chikujo.fukuoka.jp
2562             chikushino.fukuoka.jp
2563             chikuzen.fukuoka.jp
2564             chuo.fukuoka.jp
2565             dazaifu.fukuoka.jp
2566             fukuchi.fukuoka.jp
2567             hakata.fukuoka.jp
2568             higashi.fukuoka.jp
2569             hirokawa.fukuoka.jp
2570             hisayama.fukuoka.jp
2571             iizuka.fukuoka.jp
2572             inatsuki.fukuoka.jp
2573             kaho.fukuoka.jp
2574             kasuga.fukuoka.jp
2575             kasuya.fukuoka.jp
2576             kawara.fukuoka.jp
2577             keisen.fukuoka.jp
2578             koga.fukuoka.jp
2579             kurate.fukuoka.jp
2580             kurogi.fukuoka.jp
2581             kurume.fukuoka.jp
2582             minami.fukuoka.jp
2583             miyako.fukuoka.jp
2584             miyama.fukuoka.jp
2585             miyawaka.fukuoka.jp
2586             mizumaki.fukuoka.jp
2587             munakata.fukuoka.jp
2588             nakagawa.fukuoka.jp
2589             nakama.fukuoka.jp
2590             nishi.fukuoka.jp
2591             nogata.fukuoka.jp
2592             ogori.fukuoka.jp
2593             okagaki.fukuoka.jp
2594             okawa.fukuoka.jp
2595             oki.fukuoka.jp
2596             omuta.fukuoka.jp
2597             onga.fukuoka.jp
2598             onojo.fukuoka.jp
2599             oto.fukuoka.jp
2600             saigawa.fukuoka.jp
2601             sasaguri.fukuoka.jp
2602             shingu.fukuoka.jp
2603             shinyoshitomi.fukuoka.jp
2604             shonai.fukuoka.jp
2605             soeda.fukuoka.jp
2606             sue.fukuoka.jp
2607             tachiarai.fukuoka.jp
2608             tagawa.fukuoka.jp
2609             takata.fukuoka.jp
2610             toho.fukuoka.jp
2611             toyotsu.fukuoka.jp
2612             tsuiki.fukuoka.jp
2613             ukiha.fukuoka.jp
2614             umi.fukuoka.jp
2615             usui.fukuoka.jp
2616             yamada.fukuoka.jp
2617             yame.fukuoka.jp
2618             yanagawa.fukuoka.jp
2619             yukuhashi.fukuoka.jp
2620             aizubange.fukushima.jp
2621             aizumisato.fukushima.jp
2622             aizuwakamatsu.fukushima.jp
2623             asakawa.fukushima.jp
2624             bandai.fukushima.jp
2625             date.fukushima.jp
2626             fukushima.fukushima.jp
2627             furudono.fukushima.jp
2628             futaba.fukushima.jp
2629             hanawa.fukushima.jp
2630             higashi.fukushima.jp
2631             hirata.fukushima.jp
2632             hirono.fukushima.jp
2633             iitate.fukushima.jp
2634             inawashiro.fukushima.jp
2635             ishikawa.fukushima.jp
2636             iwaki.fukushima.jp
2637             izumizaki.fukushima.jp
2638             kagamiishi.fukushima.jp
2639             kaneyama.fukushima.jp
2640             kawamata.fukushima.jp
2641             kitakata.fukushima.jp
2642             kitashiobara.fukushima.jp
2643             koori.fukushima.jp
2644             koriyama.fukushima.jp
2645             kunimi.fukushima.jp
2646             miharu.fukushima.jp
2647             mishima.fukushima.jp
2648             namie.fukushima.jp
2649             nango.fukushima.jp
2650             nishiaizu.fukushima.jp
2651             nishigo.fukushima.jp
2652             okuma.fukushima.jp
2653             omotego.fukushima.jp
2654             ono.fukushima.jp
2655             otama.fukushima.jp
2656             samegawa.fukushima.jp
2657             shimogo.fukushima.jp
2658             shirakawa.fukushima.jp
2659             showa.fukushima.jp
2660             soma.fukushima.jp
2661             sukagawa.fukushima.jp
2662             taishin.fukushima.jp
2663             tamakawa.fukushima.jp
2664             tanagura.fukushima.jp
2665             tenei.fukushima.jp
2666             yabuki.fukushima.jp
2667             yamato.fukushima.jp
2668             yamatsuri.fukushima.jp
2669             yanaizu.fukushima.jp
2670             yugawa.fukushima.jp
2671             anpachi.gifu.jp
2672             ena.gifu.jp
2673             gifu.gifu.jp
2674             ginan.gifu.jp
2675             godo.gifu.jp
2676             gujo.gifu.jp
2677             hashima.gifu.jp
2678             hichiso.gifu.jp
2679             hida.gifu.jp
2680             higashishirakawa.gifu.jp
2681             ibigawa.gifu.jp
2682             ikeda.gifu.jp
2683             kakamigahara.gifu.jp
2684             kani.gifu.jp
2685             kasahara.gifu.jp
2686             kasamatsu.gifu.jp
2687             kawaue.gifu.jp
2688             kitagata.gifu.jp
2689             mino.gifu.jp
2690             minokamo.gifu.jp
2691             mitake.gifu.jp
2692             mizunami.gifu.jp
2693             motosu.gifu.jp
2694             nakatsugawa.gifu.jp
2695             ogaki.gifu.jp
2696             sakahogi.gifu.jp
2697             seki.gifu.jp
2698             sekigahara.gifu.jp
2699             shirakawa.gifu.jp
2700             tajimi.gifu.jp
2701             takayama.gifu.jp
2702             tarui.gifu.jp
2703             toki.gifu.jp
2704             tomika.gifu.jp
2705             wanouchi.gifu.jp
2706             yamagata.gifu.jp
2707             yaotsu.gifu.jp
2708             yoro.gifu.jp
2709             annaka.gunma.jp
2710             chiyoda.gunma.jp
2711             fujioka.gunma.jp
2712             higashiagatsuma.gunma.jp
2713             isesaki.gunma.jp
2714             itakura.gunma.jp
2715             kanna.gunma.jp
2716             kanra.gunma.jp
2717             katashina.gunma.jp
2718             kawaba.gunma.jp
2719             kiryu.gunma.jp
2720             kusatsu.gunma.jp
2721             maebashi.gunma.jp
2722             meiwa.gunma.jp
2723             midori.gunma.jp
2724             minakami.gunma.jp
2725             naganohara.gunma.jp
2726             nakanojo.gunma.jp
2727             nanmoku.gunma.jp
2728             numata.gunma.jp
2729             oizumi.gunma.jp
2730             ora.gunma.jp
2731             ota.gunma.jp
2732             shibukawa.gunma.jp
2733             shimonita.gunma.jp
2734             shinto.gunma.jp
2735             showa.gunma.jp
2736             takasaki.gunma.jp
2737             takayama.gunma.jp
2738             tamamura.gunma.jp
2739             tatebayashi.gunma.jp
2740             tomioka.gunma.jp
2741             tsukiyono.gunma.jp
2742             tsumagoi.gunma.jp
2743             ueno.gunma.jp
2744             yoshioka.gunma.jp
2745             asaminami.hiroshima.jp
2746             daiwa.hiroshima.jp
2747             etajima.hiroshima.jp
2748             fuchu.hiroshima.jp
2749             fukuyama.hiroshima.jp
2750             hatsukaichi.hiroshima.jp
2751             higashihiroshima.hiroshima.jp
2752             hongo.hiroshima.jp
2753             jinsekikogen.hiroshima.jp
2754             kaita.hiroshima.jp
2755             kui.hiroshima.jp
2756             kumano.hiroshima.jp
2757             kure.hiroshima.jp
2758             mihara.hiroshima.jp
2759             miyoshi.hiroshima.jp
2760             naka.hiroshima.jp
2761             onomichi.hiroshima.jp
2762             osakikamijima.hiroshima.jp
2763             otake.hiroshima.jp
2764             saka.hiroshima.jp
2765             sera.hiroshima.jp
2766             seranishi.hiroshima.jp
2767             shinichi.hiroshima.jp
2768             shobara.hiroshima.jp
2769             takehara.hiroshima.jp
2770             abashiri.hokkaido.jp
2771             abira.hokkaido.jp
2772             aibetsu.hokkaido.jp
2773             akabira.hokkaido.jp
2774             akkeshi.hokkaido.jp
2775             asahikawa.hokkaido.jp
2776             ashibetsu.hokkaido.jp
2777             ashoro.hokkaido.jp
2778             assabu.hokkaido.jp
2779             atsuma.hokkaido.jp
2780             bibai.hokkaido.jp
2781             biei.hokkaido.jp
2782             bifuka.hokkaido.jp
2783             bihoro.hokkaido.jp
2784             biratori.hokkaido.jp
2785             chippubetsu.hokkaido.jp
2786             chitose.hokkaido.jp
2787             date.hokkaido.jp
2788             ebetsu.hokkaido.jp
2789             embetsu.hokkaido.jp
2790             eniwa.hokkaido.jp
2791             erimo.hokkaido.jp
2792             esan.hokkaido.jp
2793             esashi.hokkaido.jp
2794             fukagawa.hokkaido.jp
2795             fukushima.hokkaido.jp
2796             furano.hokkaido.jp
2797             furubira.hokkaido.jp
2798             haboro.hokkaido.jp
2799             hakodate.hokkaido.jp
2800             hamatonbetsu.hokkaido.jp
2801             hidaka.hokkaido.jp
2802             higashikagura.hokkaido.jp
2803             higashikawa.hokkaido.jp
2804             hiroo.hokkaido.jp
2805             hokuryu.hokkaido.jp
2806             hokuto.hokkaido.jp
2807             honbetsu.hokkaido.jp
2808             horokanai.hokkaido.jp
2809             horonobe.hokkaido.jp
2810             ikeda.hokkaido.jp
2811             imakane.hokkaido.jp
2812             ishikari.hokkaido.jp
2813             iwamizawa.hokkaido.jp
2814             iwanai.hokkaido.jp
2815             kamifurano.hokkaido.jp
2816             kamikawa.hokkaido.jp
2817             kamishihoro.hokkaido.jp
2818             kamisunagawa.hokkaido.jp
2819             kamoenai.hokkaido.jp
2820             kayabe.hokkaido.jp
2821             kembuchi.hokkaido.jp
2822             kikonai.hokkaido.jp
2823             kimobetsu.hokkaido.jp
2824             kitahiroshima.hokkaido.jp
2825             kitami.hokkaido.jp
2826             kiyosato.hokkaido.jp
2827             koshimizu.hokkaido.jp
2828             kunneppu.hokkaido.jp
2829             kuriyama.hokkaido.jp
2830             kuromatsunai.hokkaido.jp
2831             kushiro.hokkaido.jp
2832             kutchan.hokkaido.jp
2833             kyowa.hokkaido.jp
2834             mashike.hokkaido.jp
2835             matsumae.hokkaido.jp
2836             mikasa.hokkaido.jp
2837             minamifurano.hokkaido.jp
2838             mombetsu.hokkaido.jp
2839             moseushi.hokkaido.jp
2840             mukawa.hokkaido.jp
2841             muroran.hokkaido.jp
2842             naie.hokkaido.jp
2843             nakagawa.hokkaido.jp
2844             nakasatsunai.hokkaido.jp
2845             nakatombetsu.hokkaido.jp
2846             nanae.hokkaido.jp
2847             nanporo.hokkaido.jp
2848             nayoro.hokkaido.jp
2849             nemuro.hokkaido.jp
2850             niikappu.hokkaido.jp
2851             niki.hokkaido.jp
2852             nishiokoppe.hokkaido.jp
2853             noboribetsu.hokkaido.jp
2854             numata.hokkaido.jp
2855             obihiro.hokkaido.jp
2856             obira.hokkaido.jp
2857             oketo.hokkaido.jp
2858             okoppe.hokkaido.jp
2859             otaru.hokkaido.jp
2860             otobe.hokkaido.jp
2861             otofuke.hokkaido.jp
2862             otoineppu.hokkaido.jp
2863             oumu.hokkaido.jp
2864             ozora.hokkaido.jp
2865             pippu.hokkaido.jp
2866             rankoshi.hokkaido.jp
2867             rebun.hokkaido.jp
2868             rikubetsu.hokkaido.jp
2869             rishiri.hokkaido.jp
2870             rishirifuji.hokkaido.jp
2871             saroma.hokkaido.jp
2872             sarufutsu.hokkaido.jp
2873             shakotan.hokkaido.jp
2874             shari.hokkaido.jp
2875             shibecha.hokkaido.jp
2876             shibetsu.hokkaido.jp
2877             shikabe.hokkaido.jp
2878             shikaoi.hokkaido.jp
2879             shimamaki.hokkaido.jp
2880             shimizu.hokkaido.jp
2881             shimokawa.hokkaido.jp
2882             shinshinotsu.hokkaido.jp
2883             shintoku.hokkaido.jp
2884             shiranuka.hokkaido.jp
2885             shiraoi.hokkaido.jp
2886             shiriuchi.hokkaido.jp
2887             sobetsu.hokkaido.jp
2888             sunagawa.hokkaido.jp
2889             taiki.hokkaido.jp
2890             takasu.hokkaido.jp
2891             takikawa.hokkaido.jp
2892             takinoue.hokkaido.jp
2893             teshikaga.hokkaido.jp
2894             tobetsu.hokkaido.jp
2895             tohma.hokkaido.jp
2896             tomakomai.hokkaido.jp
2897             tomari.hokkaido.jp
2898             toya.hokkaido.jp
2899             toyako.hokkaido.jp
2900             toyotomi.hokkaido.jp
2901             toyoura.hokkaido.jp
2902             tsubetsu.hokkaido.jp
2903             tsukigata.hokkaido.jp
2904             urakawa.hokkaido.jp
2905             urausu.hokkaido.jp
2906             uryu.hokkaido.jp
2907             utashinai.hokkaido.jp
2908             wakkanai.hokkaido.jp
2909             wassamu.hokkaido.jp
2910             yakumo.hokkaido.jp
2911             yoichi.hokkaido.jp
2912             aioi.hyogo.jp
2913             akashi.hyogo.jp
2914             ako.hyogo.jp
2915             amagasaki.hyogo.jp
2916             aogaki.hyogo.jp
2917             asago.hyogo.jp
2918             ashiya.hyogo.jp
2919             awaji.hyogo.jp
2920             fukusaki.hyogo.jp
2921             goshiki.hyogo.jp
2922             harima.hyogo.jp
2923             himeji.hyogo.jp
2924             ichikawa.hyogo.jp
2925             inagawa.hyogo.jp
2926             itami.hyogo.jp
2927             kakogawa.hyogo.jp
2928             kamigori.hyogo.jp
2929             kamikawa.hyogo.jp
2930             kasai.hyogo.jp
2931             kasuga.hyogo.jp
2932             kawanishi.hyogo.jp
2933             miki.hyogo.jp
2934             minamiawaji.hyogo.jp
2935             nishinomiya.hyogo.jp
2936             nishiwaki.hyogo.jp
2937             ono.hyogo.jp
2938             sanda.hyogo.jp
2939             sannan.hyogo.jp
2940             sasayama.hyogo.jp
2941             sayo.hyogo.jp
2942             shingu.hyogo.jp
2943             shinonsen.hyogo.jp
2944             shiso.hyogo.jp
2945             sumoto.hyogo.jp
2946             taishi.hyogo.jp
2947             taka.hyogo.jp
2948             takarazuka.hyogo.jp
2949             takasago.hyogo.jp
2950             takino.hyogo.jp
2951             tamba.hyogo.jp
2952             tatsuno.hyogo.jp
2953             toyooka.hyogo.jp
2954             yabu.hyogo.jp
2955             yashiro.hyogo.jp
2956             yoka.hyogo.jp
2957             yokawa.hyogo.jp
2958             ami.ibaraki.jp
2959             asahi.ibaraki.jp
2960             bando.ibaraki.jp
2961             chikusei.ibaraki.jp
2962             daigo.ibaraki.jp
2963             fujishiro.ibaraki.jp
2964             hitachi.ibaraki.jp
2965             hitachinaka.ibaraki.jp
2966             hitachiomiya.ibaraki.jp
2967             hitachiota.ibaraki.jp
2968             ibaraki.ibaraki.jp
2969             ina.ibaraki.jp
2970             inashiki.ibaraki.jp
2971             itako.ibaraki.jp
2972             iwama.ibaraki.jp
2973             joso.ibaraki.jp
2974             kamisu.ibaraki.jp
2975             kasama.ibaraki.jp
2976             kashima.ibaraki.jp
2977             kasumigaura.ibaraki.jp
2978             koga.ibaraki.jp
2979             miho.ibaraki.jp
2980             mito.ibaraki.jp
2981             moriya.ibaraki.jp
2982             naka.ibaraki.jp
2983             namegata.ibaraki.jp
2984             oarai.ibaraki.jp
2985             ogawa.ibaraki.jp
2986             omitama.ibaraki.jp
2987             ryugasaki.ibaraki.jp
2988             sakai.ibaraki.jp
2989             sakuragawa.ibaraki.jp
2990             shimodate.ibaraki.jp
2991             shimotsuma.ibaraki.jp
2992             shirosato.ibaraki.jp
2993             sowa.ibaraki.jp
2994             suifu.ibaraki.jp
2995             takahagi.ibaraki.jp
2996             tamatsukuri.ibaraki.jp
2997             tokai.ibaraki.jp
2998             tomobe.ibaraki.jp
2999             tone.ibaraki.jp
3000             toride.ibaraki.jp
3001             tsuchiura.ibaraki.jp
3002             tsukuba.ibaraki.jp
3003             uchihara.ibaraki.jp
3004             ushiku.ibaraki.jp
3005             yachiyo.ibaraki.jp
3006             yamagata.ibaraki.jp
3007             yawara.ibaraki.jp
3008             yuki.ibaraki.jp
3009             anamizu.ishikawa.jp
3010             hakui.ishikawa.jp
3011             hakusan.ishikawa.jp
3012             kaga.ishikawa.jp
3013             kahoku.ishikawa.jp
3014             kanazawa.ishikawa.jp
3015             kawakita.ishikawa.jp
3016             komatsu.ishikawa.jp
3017             nakanoto.ishikawa.jp
3018             nanao.ishikawa.jp
3019             nomi.ishikawa.jp
3020             nonoichi.ishikawa.jp
3021             noto.ishikawa.jp
3022             shika.ishikawa.jp
3023             suzu.ishikawa.jp
3024             tsubata.ishikawa.jp
3025             tsurugi.ishikawa.jp
3026             uchinada.ishikawa.jp
3027             wajima.ishikawa.jp
3028             fudai.iwate.jp
3029             fujisawa.iwate.jp
3030             hanamaki.iwate.jp
3031             hiraizumi.iwate.jp
3032             hirono.iwate.jp
3033             ichinohe.iwate.jp
3034             ichinoseki.iwate.jp
3035             iwaizumi.iwate.jp
3036             iwate.iwate.jp
3037             joboji.iwate.jp
3038             kamaishi.iwate.jp
3039             kanegasaki.iwate.jp
3040             karumai.iwate.jp
3041             kawai.iwate.jp
3042             kitakami.iwate.jp
3043             kuji.iwate.jp
3044             kunohe.iwate.jp
3045             kuzumaki.iwate.jp
3046             miyako.iwate.jp
3047             mizusawa.iwate.jp
3048             morioka.iwate.jp
3049             ninohe.iwate.jp
3050             noda.iwate.jp
3051             ofunato.iwate.jp
3052             oshu.iwate.jp
3053             otsuchi.iwate.jp
3054             rikuzentakata.iwate.jp
3055             shiwa.iwate.jp
3056             shizukuishi.iwate.jp
3057             sumita.iwate.jp
3058             tanohata.iwate.jp
3059             tono.iwate.jp
3060             yahaba.iwate.jp
3061             yamada.iwate.jp
3062             ayagawa.kagawa.jp
3063             higashikagawa.kagawa.jp
3064             kanonji.kagawa.jp
3065             kotohira.kagawa.jp
3066             manno.kagawa.jp
3067             marugame.kagawa.jp
3068             mitoyo.kagawa.jp
3069             naoshima.kagawa.jp
3070             sanuki.kagawa.jp
3071             tadotsu.kagawa.jp
3072             takamatsu.kagawa.jp
3073             tonosho.kagawa.jp
3074             uchinomi.kagawa.jp
3075             utazu.kagawa.jp
3076             zentsuji.kagawa.jp
3077             akune.kagoshima.jp
3078             amami.kagoshima.jp
3079             hioki.kagoshima.jp
3080             isa.kagoshima.jp
3081             isen.kagoshima.jp
3082             izumi.kagoshima.jp
3083             kagoshima.kagoshima.jp
3084             kanoya.kagoshima.jp
3085             kawanabe.kagoshima.jp
3086             kinko.kagoshima.jp
3087             kouyama.kagoshima.jp
3088             makurazaki.kagoshima.jp
3089             matsumoto.kagoshima.jp
3090             minamitane.kagoshima.jp
3091             nakatane.kagoshima.jp
3092             nishinoomote.kagoshima.jp
3093             satsumasendai.kagoshima.jp
3094             soo.kagoshima.jp
3095             tarumizu.kagoshima.jp
3096             yusui.kagoshima.jp
3097             aikawa.kanagawa.jp
3098             atsugi.kanagawa.jp
3099             ayase.kanagawa.jp
3100             chigasaki.kanagawa.jp
3101             ebina.kanagawa.jp
3102             fujisawa.kanagawa.jp
3103             hadano.kanagawa.jp
3104             hakone.kanagawa.jp
3105             hiratsuka.kanagawa.jp
3106             isehara.kanagawa.jp
3107             kaisei.kanagawa.jp
3108             kamakura.kanagawa.jp
3109             kiyokawa.kanagawa.jp
3110             matsuda.kanagawa.jp
3111             minamiashigara.kanagawa.jp
3112             miura.kanagawa.jp
3113             nakai.kanagawa.jp
3114             ninomiya.kanagawa.jp
3115             odawara.kanagawa.jp
3116             oi.kanagawa.jp
3117             oiso.kanagawa.jp
3118             sagamihara.kanagawa.jp
3119             samukawa.kanagawa.jp
3120             tsukui.kanagawa.jp
3121             yamakita.kanagawa.jp
3122             yamato.kanagawa.jp
3123             yokosuka.kanagawa.jp
3124             yugawara.kanagawa.jp
3125             zama.kanagawa.jp
3126             zushi.kanagawa.jp
3127             aki.kochi.jp
3128             geisei.kochi.jp
3129             hidaka.kochi.jp
3130             higashitsuno.kochi.jp
3131             ino.kochi.jp
3132             kagami.kochi.jp
3133             kami.kochi.jp
3134             kitagawa.kochi.jp
3135             kochi.kochi.jp
3136             mihara.kochi.jp
3137             motoyama.kochi.jp
3138             muroto.kochi.jp
3139             nahari.kochi.jp
3140             nakamura.kochi.jp
3141             nankoku.kochi.jp
3142             nishitosa.kochi.jp
3143             niyodogawa.kochi.jp
3144             ochi.kochi.jp
3145             okawa.kochi.jp
3146             otoyo.kochi.jp
3147             otsuki.kochi.jp
3148             sakawa.kochi.jp
3149             sukumo.kochi.jp
3150             susaki.kochi.jp
3151             tosa.kochi.jp
3152             tosashimizu.kochi.jp
3153             toyo.kochi.jp
3154             tsuno.kochi.jp
3155             umaji.kochi.jp
3156             yasuda.kochi.jp
3157             yusuhara.kochi.jp
3158             amakusa.kumamoto.jp
3159             arao.kumamoto.jp
3160             aso.kumamoto.jp
3161             choyo.kumamoto.jp
3162             gyokuto.kumamoto.jp
3163             kamiamakusa.kumamoto.jp
3164             kikuchi.kumamoto.jp
3165             kumamoto.kumamoto.jp
3166             mashiki.kumamoto.jp
3167             mifune.kumamoto.jp
3168             minamata.kumamoto.jp
3169             minamioguni.kumamoto.jp
3170             nagasu.kumamoto.jp
3171             nishihara.kumamoto.jp
3172             oguni.kumamoto.jp
3173             ozu.kumamoto.jp
3174             sumoto.kumamoto.jp
3175             takamori.kumamoto.jp
3176             uki.kumamoto.jp
3177             uto.kumamoto.jp
3178             yamaga.kumamoto.jp
3179             yamato.kumamoto.jp
3180             yatsushiro.kumamoto.jp
3181             ayabe.kyoto.jp
3182             fukuchiyama.kyoto.jp
3183             higashiyama.kyoto.jp
3184             ide.kyoto.jp
3185             ine.kyoto.jp
3186             joyo.kyoto.jp
3187             kameoka.kyoto.jp
3188             kamo.kyoto.jp
3189             kita.kyoto.jp
3190             kizu.kyoto.jp
3191             kumiyama.kyoto.jp
3192             kyotamba.kyoto.jp
3193             kyotanabe.kyoto.jp
3194             kyotango.kyoto.jp
3195             maizuru.kyoto.jp
3196             minami.kyoto.jp
3197             minamiyamashiro.kyoto.jp
3198             miyazu.kyoto.jp
3199             muko.kyoto.jp
3200             nagaokakyo.kyoto.jp
3201             nakagyo.kyoto.jp
3202             nantan.kyoto.jp
3203             oyamazaki.kyoto.jp
3204             sakyo.kyoto.jp
3205             seika.kyoto.jp
3206             tanabe.kyoto.jp
3207             uji.kyoto.jp
3208             ujitawara.kyoto.jp
3209             wazuka.kyoto.jp
3210             yamashina.kyoto.jp
3211             yawata.kyoto.jp
3212             asahi.mie.jp
3213             inabe.mie.jp
3214             ise.mie.jp
3215             kameyama.mie.jp
3216             kawagoe.mie.jp
3217             kiho.mie.jp
3218             kisosaki.mie.jp
3219             kiwa.mie.jp
3220             komono.mie.jp
3221             kumano.mie.jp
3222             kuwana.mie.jp
3223             matsusaka.mie.jp
3224             meiwa.mie.jp
3225             mihama.mie.jp
3226             minamiise.mie.jp
3227             misugi.mie.jp
3228             miyama.mie.jp
3229             nabari.mie.jp
3230             shima.mie.jp
3231             suzuka.mie.jp
3232             tado.mie.jp
3233             taiki.mie.jp
3234             taki.mie.jp
3235             tamaki.mie.jp
3236             toba.mie.jp
3237             tsu.mie.jp
3238             udono.mie.jp
3239             ureshino.mie.jp
3240             watarai.mie.jp
3241             yokkaichi.mie.jp
3242             furukawa.miyagi.jp
3243             higashimatsushima.miyagi.jp
3244             ishinomaki.miyagi.jp
3245             iwanuma.miyagi.jp
3246             kakuda.miyagi.jp
3247             kami.miyagi.jp
3248             kawasaki.miyagi.jp
3249             marumori.miyagi.jp
3250             matsushima.miyagi.jp
3251             minamisanriku.miyagi.jp
3252             misato.miyagi.jp
3253             murata.miyagi.jp
3254             natori.miyagi.jp
3255             ogawara.miyagi.jp
3256             ohira.miyagi.jp
3257             onagawa.miyagi.jp
3258             osaki.miyagi.jp
3259             rifu.miyagi.jp
3260             semine.miyagi.jp
3261             shibata.miyagi.jp
3262             shichikashuku.miyagi.jp
3263             shikama.miyagi.jp
3264             shiogama.miyagi.jp
3265             shiroishi.miyagi.jp
3266             tagajo.miyagi.jp
3267             taiwa.miyagi.jp
3268             tome.miyagi.jp
3269             tomiya.miyagi.jp
3270             wakuya.miyagi.jp
3271             watari.miyagi.jp
3272             yamamoto.miyagi.jp
3273             zao.miyagi.jp
3274             aya.miyazaki.jp
3275             ebino.miyazaki.jp
3276             gokase.miyazaki.jp
3277             hyuga.miyazaki.jp
3278             kadogawa.miyazaki.jp
3279             kawaminami.miyazaki.jp
3280             kijo.miyazaki.jp
3281             kitagawa.miyazaki.jp
3282             kitakata.miyazaki.jp
3283             kitaura.miyazaki.jp
3284             kobayashi.miyazaki.jp
3285             kunitomi.miyazaki.jp
3286             kushima.miyazaki.jp
3287             mimata.miyazaki.jp
3288             miyakonojo.miyazaki.jp
3289             miyazaki.miyazaki.jp
3290             morotsuka.miyazaki.jp
3291             nichinan.miyazaki.jp
3292             nishimera.miyazaki.jp
3293             nobeoka.miyazaki.jp
3294             saito.miyazaki.jp
3295             shiiba.miyazaki.jp
3296             shintomi.miyazaki.jp
3297             takaharu.miyazaki.jp
3298             takanabe.miyazaki.jp
3299             takazaki.miyazaki.jp
3300             tsuno.miyazaki.jp
3301             achi.nagano.jp
3302             agematsu.nagano.jp
3303             anan.nagano.jp
3304             aoki.nagano.jp
3305             asahi.nagano.jp
3306             azumino.nagano.jp
3307             chikuhoku.nagano.jp
3308             chikuma.nagano.jp
3309             chino.nagano.jp
3310             fujimi.nagano.jp
3311             hakuba.nagano.jp
3312             hara.nagano.jp
3313             hiraya.nagano.jp
3314             iida.nagano.jp
3315             iijima.nagano.jp
3316             iiyama.nagano.jp
3317             iizuna.nagano.jp
3318             ikeda.nagano.jp
3319             ikusaka.nagano.jp
3320             ina.nagano.jp
3321             karuizawa.nagano.jp
3322             kawakami.nagano.jp
3323             kiso.nagano.jp
3324             kisofukushima.nagano.jp
3325             kitaaiki.nagano.jp
3326             komagane.nagano.jp
3327             komoro.nagano.jp
3328             matsukawa.nagano.jp
3329             matsumoto.nagano.jp
3330             miasa.nagano.jp
3331             minamiaiki.nagano.jp
3332             minamimaki.nagano.jp
3333             minamiminowa.nagano.jp
3334             minowa.nagano.jp
3335             miyada.nagano.jp
3336             miyota.nagano.jp
3337             mochizuki.nagano.jp
3338             nagano.nagano.jp
3339             nagawa.nagano.jp
3340             nagiso.nagano.jp
3341             nakagawa.nagano.jp
3342             nakano.nagano.jp
3343             nozawaonsen.nagano.jp
3344             obuse.nagano.jp
3345             ogawa.nagano.jp
3346             okaya.nagano.jp
3347             omachi.nagano.jp
3348             omi.nagano.jp
3349             ookuwa.nagano.jp
3350             ooshika.nagano.jp
3351             otaki.nagano.jp
3352             otari.nagano.jp
3353             sakae.nagano.jp
3354             sakaki.nagano.jp
3355             saku.nagano.jp
3356             sakuho.nagano.jp
3357             shimosuwa.nagano.jp
3358             shinanomachi.nagano.jp
3359             shiojiri.nagano.jp
3360             suwa.nagano.jp
3361             suzaka.nagano.jp
3362             takagi.nagano.jp
3363             takamori.nagano.jp
3364             takayama.nagano.jp
3365             tateshina.nagano.jp
3366             tatsuno.nagano.jp
3367             togakushi.nagano.jp
3368             togura.nagano.jp
3369             tomi.nagano.jp
3370             ueda.nagano.jp
3371             wada.nagano.jp
3372             yamagata.nagano.jp
3373             yamanouchi.nagano.jp
3374             yasaka.nagano.jp
3375             yasuoka.nagano.jp
3376             chijiwa.nagasaki.jp
3377             futsu.nagasaki.jp
3378             goto.nagasaki.jp
3379             hasami.nagasaki.jp
3380             hirado.nagasaki.jp
3381             iki.nagasaki.jp
3382             isahaya.nagasaki.jp
3383             kawatana.nagasaki.jp
3384             kuchinotsu.nagasaki.jp
3385             matsuura.nagasaki.jp
3386             nagasaki.nagasaki.jp
3387             obama.nagasaki.jp
3388             omura.nagasaki.jp
3389             oseto.nagasaki.jp
3390             saikai.nagasaki.jp
3391             sasebo.nagasaki.jp
3392             seihi.nagasaki.jp
3393             shimabara.nagasaki.jp
3394             shinkamigoto.nagasaki.jp
3395             togitsu.nagasaki.jp
3396             tsushima.nagasaki.jp
3397             unzen.nagasaki.jp
3398             ando.nara.jp
3399             gose.nara.jp
3400             heguri.nara.jp
3401             higashiyoshino.nara.jp
3402             ikaruga.nara.jp
3403             ikoma.nara.jp
3404             kamikitayama.nara.jp
3405             kanmaki.nara.jp
3406             kashiba.nara.jp
3407             kashihara.nara.jp
3408             katsuragi.nara.jp
3409             kawai.nara.jp
3410             kawakami.nara.jp
3411             kawanishi.nara.jp
3412             koryo.nara.jp
3413             kurotaki.nara.jp
3414             mitsue.nara.jp
3415             miyake.nara.jp
3416             nara.nara.jp
3417             nosegawa.nara.jp
3418             oji.nara.jp
3419             ouda.nara.jp
3420             oyodo.nara.jp
3421             sakurai.nara.jp
3422             sango.nara.jp
3423             shimoichi.nara.jp
3424             shimokitayama.nara.jp
3425             shinjo.nara.jp
3426             soni.nara.jp
3427             takatori.nara.jp
3428             tawaramoto.nara.jp
3429             tenkawa.nara.jp
3430             tenri.nara.jp
3431             uda.nara.jp
3432             yamatokoriyama.nara.jp
3433             yamatotakada.nara.jp
3434             yamazoe.nara.jp
3435             yoshino.nara.jp
3436             aga.niigata.jp
3437             agano.niigata.jp
3438             gosen.niigata.jp
3439             itoigawa.niigata.jp
3440             izumozaki.niigata.jp
3441             joetsu.niigata.jp
3442             kamo.niigata.jp
3443             kariwa.niigata.jp
3444             kashiwazaki.niigata.jp
3445             minamiuonuma.niigata.jp
3446             mitsuke.niigata.jp
3447             muika.niigata.jp
3448             murakami.niigata.jp
3449             myoko.niigata.jp
3450             nagaoka.niigata.jp
3451             niigata.niigata.jp
3452             ojiya.niigata.jp
3453             omi.niigata.jp
3454             sado.niigata.jp
3455             sanjo.niigata.jp
3456             seiro.niigata.jp
3457             seirou.niigata.jp
3458             sekikawa.niigata.jp
3459             shibata.niigata.jp
3460             tagami.niigata.jp
3461             tainai.niigata.jp
3462             tochio.niigata.jp
3463             tokamachi.niigata.jp
3464             tsubame.niigata.jp
3465             tsunan.niigata.jp
3466             uonuma.niigata.jp
3467             yahiko.niigata.jp
3468             yoita.niigata.jp
3469             yuzawa.niigata.jp
3470             beppu.oita.jp
3471             bungoono.oita.jp
3472             bungotakada.oita.jp
3473             hasama.oita.jp
3474             hiji.oita.jp
3475             himeshima.oita.jp
3476             hita.oita.jp
3477             kamitsue.oita.jp
3478             kokonoe.oita.jp
3479             kuju.oita.jp
3480             kunisaki.oita.jp
3481             kusu.oita.jp
3482             oita.oita.jp
3483             saiki.oita.jp
3484             taketa.oita.jp
3485             tsukumi.oita.jp
3486             usa.oita.jp
3487             usuki.oita.jp
3488             yufu.oita.jp
3489             akaiwa.okayama.jp
3490             asakuchi.okayama.jp
3491             bizen.okayama.jp
3492             hayashima.okayama.jp
3493             ibara.okayama.jp
3494             kagamino.okayama.jp
3495             kasaoka.okayama.jp
3496             kibichuo.okayama.jp
3497             kumenan.okayama.jp
3498             kurashiki.okayama.jp
3499             maniwa.okayama.jp
3500             misaki.okayama.jp
3501             nagi.okayama.jp
3502             niimi.okayama.jp
3503             nishiawakura.okayama.jp
3504             okayama.okayama.jp
3505             satosho.okayama.jp
3506             setouchi.okayama.jp
3507             shinjo.okayama.jp
3508             shoo.okayama.jp
3509             soja.okayama.jp
3510             takahashi.okayama.jp
3511             tamano.okayama.jp
3512             tsuyama.okayama.jp
3513             wake.okayama.jp
3514             yakage.okayama.jp
3515             aguni.okinawa.jp
3516             ginowan.okinawa.jp
3517             ginoza.okinawa.jp
3518             gushikami.okinawa.jp
3519             haebaru.okinawa.jp
3520             higashi.okinawa.jp
3521             hirara.okinawa.jp
3522             iheya.okinawa.jp
3523             ishigaki.okinawa.jp
3524             ishikawa.okinawa.jp
3525             itoman.okinawa.jp
3526             izena.okinawa.jp
3527             kadena.okinawa.jp
3528             kin.okinawa.jp
3529             kitadaito.okinawa.jp
3530             kitanakagusuku.okinawa.jp
3531             kumejima.okinawa.jp
3532             kunigami.okinawa.jp
3533             minamidaito.okinawa.jp
3534             motobu.okinawa.jp
3535             nago.okinawa.jp
3536             naha.okinawa.jp
3537             nakagusuku.okinawa.jp
3538             nakijin.okinawa.jp
3539             nanjo.okinawa.jp
3540             nishihara.okinawa.jp
3541             ogimi.okinawa.jp
3542             okinawa.okinawa.jp
3543             onna.okinawa.jp
3544             shimoji.okinawa.jp
3545             taketomi.okinawa.jp
3546             tarama.okinawa.jp
3547             tokashiki.okinawa.jp
3548             tomigusuku.okinawa.jp
3549             tonaki.okinawa.jp
3550             urasoe.okinawa.jp
3551             uruma.okinawa.jp
3552             yaese.okinawa.jp
3553             yomitan.okinawa.jp
3554             yonabaru.okinawa.jp
3555             yonaguni.okinawa.jp
3556             zamami.okinawa.jp
3557             abeno.osaka.jp
3558             chihayaakasaka.osaka.jp
3559             chuo.osaka.jp
3560             daito.osaka.jp
3561             fujiidera.osaka.jp
3562             habikino.osaka.jp
3563             hannan.osaka.jp
3564             higashiosaka.osaka.jp
3565             higashisumiyoshi.osaka.jp
3566             higashiyodogawa.osaka.jp
3567             hirakata.osaka.jp
3568             ibaraki.osaka.jp
3569             ikeda.osaka.jp
3570             izumi.osaka.jp
3571             izumiotsu.osaka.jp
3572             izumisano.osaka.jp
3573             kadoma.osaka.jp
3574             kaizuka.osaka.jp
3575             kanan.osaka.jp
3576             kashiwara.osaka.jp
3577             katano.osaka.jp
3578             kawachinagano.osaka.jp
3579             kishiwada.osaka.jp
3580             kita.osaka.jp
3581             kumatori.osaka.jp
3582             matsubara.osaka.jp
3583             minato.osaka.jp
3584             minoh.osaka.jp
3585             misaki.osaka.jp
3586             moriguchi.osaka.jp
3587             neyagawa.osaka.jp
3588             nishi.osaka.jp
3589             nose.osaka.jp
3590             osakasayama.osaka.jp
3591             sakai.osaka.jp
3592             sayama.osaka.jp
3593             sennan.osaka.jp
3594             settsu.osaka.jp
3595             shijonawate.osaka.jp
3596             shimamoto.osaka.jp
3597             suita.osaka.jp
3598             tadaoka.osaka.jp
3599             taishi.osaka.jp
3600             tajiri.osaka.jp
3601             takaishi.osaka.jp
3602             takatsuki.osaka.jp
3603             tondabayashi.osaka.jp
3604             toyonaka.osaka.jp
3605             toyono.osaka.jp
3606             yao.osaka.jp
3607             ariake.saga.jp
3608             arita.saga.jp
3609             fukudomi.saga.jp
3610             genkai.saga.jp
3611             hamatama.saga.jp
3612             hizen.saga.jp
3613             imari.saga.jp
3614             kamimine.saga.jp
3615             kanzaki.saga.jp
3616             karatsu.saga.jp
3617             kashima.saga.jp
3618             kitagata.saga.jp
3619             kitahata.saga.jp
3620             kiyama.saga.jp
3621             kouhoku.saga.jp
3622             kyuragi.saga.jp
3623             nishiarita.saga.jp
3624             ogi.saga.jp
3625             omachi.saga.jp
3626             ouchi.saga.jp
3627             saga.saga.jp
3628             shiroishi.saga.jp
3629             taku.saga.jp
3630             tara.saga.jp
3631             tosu.saga.jp
3632             yoshinogari.saga.jp
3633             arakawa.saitama.jp
3634             asaka.saitama.jp
3635             chichibu.saitama.jp
3636             fujimi.saitama.jp
3637             fujimino.saitama.jp
3638             fukaya.saitama.jp
3639             hanno.saitama.jp
3640             hanyu.saitama.jp
3641             hasuda.saitama.jp
3642             hatogaya.saitama.jp
3643             hatoyama.saitama.jp
3644             hidaka.saitama.jp
3645             higashichichibu.saitama.jp
3646             higashimatsuyama.saitama.jp
3647             honjo.saitama.jp
3648             ina.saitama.jp
3649             iruma.saitama.jp
3650             iwatsuki.saitama.jp
3651             kamiizumi.saitama.jp
3652             kamikawa.saitama.jp
3653             kamisato.saitama.jp
3654             kasukabe.saitama.jp
3655             kawagoe.saitama.jp
3656             kawaguchi.saitama.jp
3657             kawajima.saitama.jp
3658             kazo.saitama.jp
3659             kitamoto.saitama.jp
3660             koshigaya.saitama.jp
3661             kounosu.saitama.jp
3662             kuki.saitama.jp
3663             kumagaya.saitama.jp
3664             matsubushi.saitama.jp
3665             minano.saitama.jp
3666             misato.saitama.jp
3667             miyashiro.saitama.jp
3668             miyoshi.saitama.jp
3669             moroyama.saitama.jp
3670             nagatoro.saitama.jp
3671             namegawa.saitama.jp
3672             niiza.saitama.jp
3673             ogano.saitama.jp
3674             ogawa.saitama.jp
3675             ogose.saitama.jp
3676             okegawa.saitama.jp
3677             omiya.saitama.jp
3678             otaki.saitama.jp
3679             ranzan.saitama.jp
3680             ryokami.saitama.jp
3681             saitama.saitama.jp
3682             sakado.saitama.jp
3683             satte.saitama.jp
3684             sayama.saitama.jp
3685             shiki.saitama.jp
3686             shiraoka.saitama.jp
3687             soka.saitama.jp
3688             sugito.saitama.jp
3689             toda.saitama.jp
3690             tokigawa.saitama.jp
3691             tokorozawa.saitama.jp
3692             tsurugashima.saitama.jp
3693             urawa.saitama.jp
3694             warabi.saitama.jp
3695             yashio.saitama.jp
3696             yokoze.saitama.jp
3697             yono.saitama.jp
3698             yorii.saitama.jp
3699             yoshida.saitama.jp
3700             yoshikawa.saitama.jp
3701             yoshimi.saitama.jp
3702             aisho.shiga.jp
3703             gamo.shiga.jp
3704             higashiomi.shiga.jp
3705             hikone.shiga.jp
3706             koka.shiga.jp
3707             konan.shiga.jp
3708             kosei.shiga.jp
3709             koto.shiga.jp
3710             kusatsu.shiga.jp
3711             maibara.shiga.jp
3712             moriyama.shiga.jp
3713             nagahama.shiga.jp
3714             nishiazai.shiga.jp
3715             notogawa.shiga.jp
3716             omihachiman.shiga.jp
3717             otsu.shiga.jp
3718             ritto.shiga.jp
3719             ryuoh.shiga.jp
3720             takashima.shiga.jp
3721             takatsuki.shiga.jp
3722             torahime.shiga.jp
3723             toyosato.shiga.jp
3724             yasu.shiga.jp
3725             akagi.shimane.jp
3726             ama.shimane.jp
3727             gotsu.shimane.jp
3728             hamada.shimane.jp
3729             higashiizumo.shimane.jp
3730             hikawa.shimane.jp
3731             hikimi.shimane.jp
3732             izumo.shimane.jp
3733             kakinoki.shimane.jp
3734             masuda.shimane.jp
3735             matsue.shimane.jp
3736             misato.shimane.jp
3737             nishinoshima.shimane.jp
3738             ohda.shimane.jp
3739             okinoshima.shimane.jp
3740             okuizumo.shimane.jp
3741             shimane.shimane.jp
3742             tamayu.shimane.jp
3743             tsuwano.shimane.jp
3744             unnan.shimane.jp
3745             yakumo.shimane.jp
3746             yasugi.shimane.jp
3747             yatsuka.shimane.jp
3748             arai.shizuoka.jp
3749             atami.shizuoka.jp
3750             fuji.shizuoka.jp
3751             fujieda.shizuoka.jp
3752             fujikawa.shizuoka.jp
3753             fujinomiya.shizuoka.jp
3754             fukuroi.shizuoka.jp
3755             gotemba.shizuoka.jp
3756             haibara.shizuoka.jp
3757             hamamatsu.shizuoka.jp
3758             higashiizu.shizuoka.jp
3759             ito.shizuoka.jp
3760             iwata.shizuoka.jp
3761             izu.shizuoka.jp
3762             izunokuni.shizuoka.jp
3763             kakegawa.shizuoka.jp
3764             kannami.shizuoka.jp
3765             kawanehon.shizuoka.jp
3766             kawazu.shizuoka.jp
3767             kikugawa.shizuoka.jp
3768             kosai.shizuoka.jp
3769             makinohara.shizuoka.jp
3770             matsuzaki.shizuoka.jp
3771             minamiizu.shizuoka.jp
3772             mishima.shizuoka.jp
3773             morimachi.shizuoka.jp
3774             nishiizu.shizuoka.jp
3775             numazu.shizuoka.jp
3776             omaezaki.shizuoka.jp
3777             shimada.shizuoka.jp
3778             shimizu.shizuoka.jp
3779             shimoda.shizuoka.jp
3780             shizuoka.shizuoka.jp
3781             susono.shizuoka.jp
3782             yaizu.shizuoka.jp
3783             yoshida.shizuoka.jp
3784             ashikaga.tochigi.jp
3785             bato.tochigi.jp
3786             haga.tochigi.jp
3787             ichikai.tochigi.jp
3788             iwafune.tochigi.jp
3789             kaminokawa.tochigi.jp
3790             kanuma.tochigi.jp
3791             karasuyama.tochigi.jp
3792             kuroiso.tochigi.jp
3793             mashiko.tochigi.jp
3794             mibu.tochigi.jp
3795             moka.tochigi.jp
3796             motegi.tochigi.jp
3797             nasu.tochigi.jp
3798             nasushiobara.tochigi.jp
3799             nikko.tochigi.jp
3800             nishikata.tochigi.jp
3801             nogi.tochigi.jp
3802             ohira.tochigi.jp
3803             ohtawara.tochigi.jp
3804             oyama.tochigi.jp
3805             sakura.tochigi.jp
3806             sano.tochigi.jp
3807             shimotsuke.tochigi.jp
3808             shioya.tochigi.jp
3809             takanezawa.tochigi.jp
3810             tochigi.tochigi.jp
3811             tsuga.tochigi.jp
3812             ujiie.tochigi.jp
3813             utsunomiya.tochigi.jp
3814             yaita.tochigi.jp
3815             aizumi.tokushima.jp
3816             anan.tokushima.jp
3817             ichiba.tokushima.jp
3818             itano.tokushima.jp
3819             kainan.tokushima.jp
3820             komatsushima.tokushima.jp
3821             matsushige.tokushima.jp
3822             mima.tokushima.jp
3823             minami.tokushima.jp
3824             miyoshi.tokushima.jp
3825             mugi.tokushima.jp
3826             nakagawa.tokushima.jp
3827             naruto.tokushima.jp
3828             sanagochi.tokushima.jp
3829             shishikui.tokushima.jp
3830             tokushima.tokushima.jp
3831             wajiki.tokushima.jp
3832             adachi.tokyo.jp
3833             akiruno.tokyo.jp
3834             akishima.tokyo.jp
3835             aogashima.tokyo.jp
3836             arakawa.tokyo.jp
3837             bunkyo.tokyo.jp
3838             chiyoda.tokyo.jp
3839             chofu.tokyo.jp
3840             chuo.tokyo.jp
3841             edogawa.tokyo.jp
3842             fuchu.tokyo.jp
3843             fussa.tokyo.jp
3844             hachijo.tokyo.jp
3845             hachioji.tokyo.jp
3846             hamura.tokyo.jp
3847             higashikurume.tokyo.jp
3848             higashimurayama.tokyo.jp
3849             higashiyamato.tokyo.jp
3850             hino.tokyo.jp
3851             hinode.tokyo.jp
3852             hinohara.tokyo.jp
3853             inagi.tokyo.jp
3854             itabashi.tokyo.jp
3855             katsushika.tokyo.jp
3856             kita.tokyo.jp
3857             kiyose.tokyo.jp
3858             kodaira.tokyo.jp
3859             koganei.tokyo.jp
3860             kokubunji.tokyo.jp
3861             komae.tokyo.jp
3862             koto.tokyo.jp
3863             kouzushima.tokyo.jp
3864             kunitachi.tokyo.jp
3865             machida.tokyo.jp
3866             meguro.tokyo.jp
3867             minato.tokyo.jp
3868             mitaka.tokyo.jp
3869             mizuho.tokyo.jp
3870             musashimurayama.tokyo.jp
3871             musashino.tokyo.jp
3872             nakano.tokyo.jp
3873             nerima.tokyo.jp
3874             ogasawara.tokyo.jp
3875             okutama.tokyo.jp
3876             ome.tokyo.jp
3877             oshima.tokyo.jp
3878             ota.tokyo.jp
3879             setagaya.tokyo.jp
3880             shibuya.tokyo.jp
3881             shinagawa.tokyo.jp
3882             shinjuku.tokyo.jp
3883             suginami.tokyo.jp
3884             sumida.tokyo.jp
3885             tachikawa.tokyo.jp
3886             taito.tokyo.jp
3887             tama.tokyo.jp
3888             toshima.tokyo.jp
3889             chizu.tottori.jp
3890             hino.tottori.jp
3891             kawahara.tottori.jp
3892             koge.tottori.jp
3893             kotoura.tottori.jp
3894             misasa.tottori.jp
3895             nanbu.tottori.jp
3896             nichinan.tottori.jp
3897             sakaiminato.tottori.jp
3898             tottori.tottori.jp
3899             wakasa.tottori.jp
3900             yazu.tottori.jp
3901             yonago.tottori.jp
3902             asahi.toyama.jp
3903             fuchu.toyama.jp
3904             fukumitsu.toyama.jp
3905             funahashi.toyama.jp
3906             himi.toyama.jp
3907             imizu.toyama.jp
3908             inami.toyama.jp
3909             johana.toyama.jp
3910             kamiichi.toyama.jp
3911             kurobe.toyama.jp
3912             nakaniikawa.toyama.jp
3913             namerikawa.toyama.jp
3914             nanto.toyama.jp
3915             nyuzen.toyama.jp
3916             oyabe.toyama.jp
3917             taira.toyama.jp
3918             takaoka.toyama.jp
3919             tateyama.toyama.jp
3920             toga.toyama.jp
3921             tonami.toyama.jp
3922             toyama.toyama.jp
3923             unazuki.toyama.jp
3924             uozu.toyama.jp
3925             yamada.toyama.jp
3926             arida.wakayama.jp
3927             aridagawa.wakayama.jp
3928             gobo.wakayama.jp
3929             hashimoto.wakayama.jp
3930             hidaka.wakayama.jp
3931             hirogawa.wakayama.jp
3932             inami.wakayama.jp
3933             iwade.wakayama.jp
3934             kainan.wakayama.jp
3935             kamitonda.wakayama.jp
3936             katsuragi.wakayama.jp
3937             kimino.wakayama.jp
3938             kinokawa.wakayama.jp
3939             kitayama.wakayama.jp
3940             koya.wakayama.jp
3941             koza.wakayama.jp
3942             kozagawa.wakayama.jp
3943             kudoyama.wakayama.jp
3944             kushimoto.wakayama.jp
3945             mihama.wakayama.jp
3946             misato.wakayama.jp
3947             nachikatsuura.wakayama.jp
3948             shingu.wakayama.jp
3949             shirahama.wakayama.jp
3950             taiji.wakayama.jp
3951             tanabe.wakayama.jp
3952             wakayama.wakayama.jp
3953             yuasa.wakayama.jp
3954             yura.wakayama.jp
3955             asahi.yamagata.jp
3956             funagata.yamagata.jp
3957             higashine.yamagata.jp
3958             iide.yamagata.jp
3959             kahoku.yamagata.jp
3960             kaminoyama.yamagata.jp
3961             kaneyama.yamagata.jp
3962             kawanishi.yamagata.jp
3963             mamurogawa.yamagata.jp
3964             mikawa.yamagata.jp
3965             murayama.yamagata.jp
3966             nagai.yamagata.jp
3967             nakayama.yamagata.jp
3968             nanyo.yamagata.jp
3969             nishikawa.yamagata.jp
3970             obanazawa.yamagata.jp
3971             oe.yamagata.jp
3972             oguni.yamagata.jp
3973             ohkura.yamagata.jp
3974             oishida.yamagata.jp
3975             sagae.yamagata.jp
3976             sakata.yamagata.jp
3977             sakegawa.yamagata.jp
3978             shinjo.yamagata.jp
3979             shirataka.yamagata.jp
3980             shonai.yamagata.jp
3981             takahata.yamagata.jp
3982             tendo.yamagata.jp
3983             tozawa.yamagata.jp
3984             tsuruoka.yamagata.jp
3985             yamagata.yamagata.jp
3986             yamanobe.yamagata.jp
3987             yonezawa.yamagata.jp
3988             yuza.yamagata.jp
3989             abu.yamaguchi.jp
3990             hagi.yamaguchi.jp
3991             hikari.yamaguchi.jp
3992             hofu.yamaguchi.jp
3993             iwakuni.yamaguchi.jp
3994             kudamatsu.yamaguchi.jp
3995             mitou.yamaguchi.jp
3996             nagato.yamaguchi.jp
3997             oshima.yamaguchi.jp
3998             shimonoseki.yamaguchi.jp
3999             shunan.yamaguchi.jp
4000             tabuse.yamaguchi.jp
4001             tokuyama.yamaguchi.jp
4002             toyota.yamaguchi.jp
4003             ube.yamaguchi.jp
4004             yuu.yamaguchi.jp
4005             chuo.yamanashi.jp
4006             doshi.yamanashi.jp
4007             fuefuki.yamanashi.jp
4008             fujikawa.yamanashi.jp
4009             fujikawaguchiko.yamanashi.jp
4010             fujiyoshida.yamanashi.jp
4011             hayakawa.yamanashi.jp
4012             hokuto.yamanashi.jp
4013             ichikawamisato.yamanashi.jp
4014             kai.yamanashi.jp
4015             kofu.yamanashi.jp
4016             koshu.yamanashi.jp
4017             kosuge.yamanashi.jp
4018             minami-alps.yamanashi.jp
4019             minobu.yamanashi.jp
4020             nakamichi.yamanashi.jp
4021             nanbu.yamanashi.jp
4022             narusawa.yamanashi.jp
4023             nirasaki.yamanashi.jp
4024             nishikatsura.yamanashi.jp
4025             oshino.yamanashi.jp
4026             otsuki.yamanashi.jp
4027             showa.yamanashi.jp
4028             tabayama.yamanashi.jp
4029             tsuru.yamanashi.jp
4030             uenohara.yamanashi.jp
4031             yamanakako.yamanashi.jp
4032             yamanashi.yamanashi.jp
4033              
4034             // ke : http://www.kenic.or.ke/index.php/en/ke-domains/ke-domains
4035             ke
4036             ac.ke
4037             co.ke
4038             go.ke
4039             info.ke
4040             me.ke
4041             mobi.ke
4042             ne.ke
4043             or.ke
4044             sc.ke
4045              
4046             // kg : http://www.domain.kg/dmn_n.html
4047             kg
4048             org.kg
4049             net.kg
4050             com.kg
4051             edu.kg
4052             gov.kg
4053             mil.kg
4054              
4055             // kh : http://www.mptc.gov.kh/dns_registration.htm
4056             *.kh
4057              
4058             // ki : http://www.ki/dns/index.html
4059             ki
4060             edu.ki
4061             biz.ki
4062             net.ki
4063             org.ki
4064             gov.ki
4065             info.ki
4066             com.ki
4067              
4068             // km : https://en.wikipedia.org/wiki/.km
4069             // http://www.domaine.km/documents/charte.doc
4070             km
4071             org.km
4072             nom.km
4073             gov.km
4074             prd.km
4075             tm.km
4076             edu.km
4077             mil.km
4078             ass.km
4079             com.km
4080             // These are only mentioned as proposed suggestions at domaine.km, but
4081             // https://en.wikipedia.org/wiki/.km says they're available for registration:
4082             coop.km
4083             asso.km
4084             presse.km
4085             medecin.km
4086             notaires.km
4087             pharmaciens.km
4088             veterinaire.km
4089             gouv.km
4090              
4091             // kn : https://en.wikipedia.org/wiki/.kn
4092             // http://www.dot.kn/domainRules.html
4093             kn
4094             net.kn
4095             org.kn
4096             edu.kn
4097             gov.kn
4098              
4099             // kp : http://www.kcce.kp/en_index.php
4100             kp
4101             com.kp
4102             edu.kp
4103             gov.kp
4104             org.kp
4105             rep.kp
4106             tra.kp
4107              
4108             // kr : https://en.wikipedia.org/wiki/.kr
4109             // see also: http://domain.nida.or.kr/eng/registration.jsp
4110             kr
4111             ac.kr
4112             co.kr
4113             es.kr
4114             go.kr
4115             hs.kr
4116             kg.kr
4117             mil.kr
4118             ms.kr
4119             ne.kr
4120             or.kr
4121             pe.kr
4122             re.kr
4123             sc.kr
4124             // kr geographical names
4125             busan.kr
4126             chungbuk.kr
4127             chungnam.kr
4128             daegu.kr
4129             daejeon.kr
4130             gangwon.kr
4131             gwangju.kr
4132             gyeongbuk.kr
4133             gyeonggi.kr
4134             gyeongnam.kr
4135             incheon.kr
4136             jeju.kr
4137             jeonbuk.kr
4138             jeonnam.kr
4139             seoul.kr
4140             ulsan.kr
4141              
4142             // kw : https://www.nic.kw/policies/
4143             // Confirmed by registry
4144             kw
4145             com.kw
4146             edu.kw
4147             emb.kw
4148             gov.kw
4149             ind.kw
4150             net.kw
4151             org.kw
4152              
4153             // ky : http://www.icta.ky/da_ky_reg_dom.php
4154             // Confirmed by registry 2008-06-17
4155             ky
4156             com.ky
4157             edu.ky
4158             net.ky
4159             org.ky
4160              
4161             // kz : https://en.wikipedia.org/wiki/.kz
4162             // see also: http://www.nic.kz/rules/index.jsp
4163             kz
4164             org.kz
4165             edu.kz
4166             net.kz
4167             gov.kz
4168             mil.kz
4169             com.kz
4170              
4171             // la : https://en.wikipedia.org/wiki/.la
4172             // Submitted by registry
4173             la
4174             int.la
4175             net.la
4176             info.la
4177             edu.la
4178             gov.la
4179             per.la
4180             com.la
4181             org.la
4182              
4183             // lb : https://en.wikipedia.org/wiki/.lb
4184             // Submitted by registry
4185             lb
4186             com.lb
4187             edu.lb
4188             gov.lb
4189             net.lb
4190             org.lb
4191              
4192             // lc : https://en.wikipedia.org/wiki/.lc
4193             // see also: http://www.nic.lc/rules.htm
4194             lc
4195             com.lc
4196             net.lc
4197             co.lc
4198             org.lc
4199             edu.lc
4200             gov.lc
4201              
4202             // li : https://en.wikipedia.org/wiki/.li
4203             li
4204              
4205             // lk : https://www.nic.lk/index.php/domain-registration/lk-domain-naming-structure
4206             lk
4207             gov.lk
4208             sch.lk
4209             net.lk
4210             int.lk
4211             com.lk
4212             org.lk
4213             edu.lk
4214             ngo.lk
4215             soc.lk
4216             web.lk
4217             ltd.lk
4218             assn.lk
4219             grp.lk
4220             hotel.lk
4221             ac.lk
4222              
4223             // lr : http://psg.com/dns/lr/lr.txt
4224             // Submitted by registry
4225             lr
4226             com.lr
4227             edu.lr
4228             gov.lr
4229             org.lr
4230             net.lr
4231              
4232             // ls : http://www.nic.ls/
4233             // Confirmed by registry
4234             ls
4235             ac.ls
4236             biz.ls
4237             co.ls
4238             edu.ls
4239             gov.ls
4240             info.ls
4241             net.ls
4242             org.ls
4243             sc.ls
4244              
4245             // lt : https://en.wikipedia.org/wiki/.lt
4246             lt
4247             // gov.lt : http://www.gov.lt/index_en.php
4248             gov.lt
4249              
4250             // lu : http://www.dns.lu/en/
4251             lu
4252              
4253             // lv : http://www.nic.lv/DNS/En/generic.php
4254             lv
4255             com.lv
4256             edu.lv
4257             gov.lv
4258             org.lv
4259             mil.lv
4260             id.lv
4261             net.lv
4262             asn.lv
4263             conf.lv
4264              
4265             // ly : http://www.nic.ly/regulations.php
4266             ly
4267             com.ly
4268             net.ly
4269             gov.ly
4270             plc.ly
4271             edu.ly
4272             sch.ly
4273             med.ly
4274             org.ly
4275             id.ly
4276              
4277             // ma : https://en.wikipedia.org/wiki/.ma
4278             // http://www.anrt.ma/fr/admin/download/upload/file_fr782.pdf
4279             ma
4280             co.ma
4281             net.ma
4282             gov.ma
4283             org.ma
4284             ac.ma
4285             press.ma
4286              
4287             // mc : http://www.nic.mc/
4288             mc
4289             tm.mc
4290             asso.mc
4291              
4292             // md : https://en.wikipedia.org/wiki/.md
4293             md
4294              
4295             // me : https://en.wikipedia.org/wiki/.me
4296             me
4297             co.me
4298             net.me
4299             org.me
4300             edu.me
4301             ac.me
4302             gov.me
4303             its.me
4304             priv.me
4305              
4306             // mg : http://nic.mg/nicmg/?page_id=39
4307             mg
4308             org.mg
4309             nom.mg
4310             gov.mg
4311             prd.mg
4312             tm.mg
4313             edu.mg
4314             mil.mg
4315             com.mg
4316             co.mg
4317              
4318             // mh : https://en.wikipedia.org/wiki/.mh
4319             mh
4320              
4321             // mil : https://en.wikipedia.org/wiki/.mil
4322             mil
4323              
4324             // mk : https://en.wikipedia.org/wiki/.mk
4325             // see also: http://dns.marnet.net.mk/postapka.php
4326             mk
4327             com.mk
4328             org.mk
4329             net.mk
4330             edu.mk
4331             gov.mk
4332             inf.mk
4333             name.mk
4334              
4335             // ml : http://www.gobin.info/domainname/ml-template.doc
4336             // see also: https://en.wikipedia.org/wiki/.ml
4337             ml
4338             com.ml
4339             edu.ml
4340             gouv.ml
4341             gov.ml
4342             net.ml
4343             org.ml
4344             presse.ml
4345              
4346             // mm : https://en.wikipedia.org/wiki/.mm
4347             *.mm
4348              
4349             // mn : https://en.wikipedia.org/wiki/.mn
4350             mn
4351             gov.mn
4352             edu.mn
4353             org.mn
4354              
4355             // mo : http://www.monic.net.mo/
4356             mo
4357             com.mo
4358             net.mo
4359             org.mo
4360             edu.mo
4361             gov.mo
4362              
4363             // mobi : https://en.wikipedia.org/wiki/.mobi
4364             mobi
4365              
4366             // mp : http://www.dot.mp/
4367             // Confirmed by registry 2008-06-17
4368             mp
4369              
4370             // mq : https://en.wikipedia.org/wiki/.mq
4371             mq
4372              
4373             // mr : https://en.wikipedia.org/wiki/.mr
4374             mr
4375             gov.mr
4376              
4377             // ms : http://www.nic.ms/pdf/MS_Domain_Name_Rules.pdf
4378             ms
4379             com.ms
4380             edu.ms
4381             gov.ms
4382             net.ms
4383             org.ms
4384              
4385             // mt : https://www.nic.org.mt/go/policy
4386             // Submitted by registry
4387             mt
4388             com.mt
4389             edu.mt
4390             net.mt
4391             org.mt
4392              
4393             // mu : https://en.wikipedia.org/wiki/.mu
4394             mu
4395             com.mu
4396             net.mu
4397             org.mu
4398             gov.mu
4399             ac.mu
4400             co.mu
4401             or.mu
4402              
4403             // museum : http://about.museum/naming/
4404             // http://index.museum/
4405             museum
4406             academy.museum
4407             agriculture.museum
4408             air.museum
4409             airguard.museum
4410             alabama.museum
4411             alaska.museum
4412             amber.museum
4413             ambulance.museum
4414             american.museum
4415             americana.museum
4416             americanantiques.museum
4417             americanart.museum
4418             amsterdam.museum
4419             and.museum
4420             annefrank.museum
4421             anthro.museum
4422             anthropology.museum
4423             antiques.museum
4424             aquarium.museum
4425             arboretum.museum
4426             archaeological.museum
4427             archaeology.museum
4428             architecture.museum
4429             art.museum
4430             artanddesign.museum
4431             artcenter.museum
4432             artdeco.museum
4433             arteducation.museum
4434             artgallery.museum
4435             arts.museum
4436             artsandcrafts.museum
4437             asmatart.museum
4438             assassination.museum
4439             assisi.museum
4440             association.museum
4441             astronomy.museum
4442             atlanta.museum
4443             austin.museum
4444             australia.museum
4445             automotive.museum
4446             aviation.museum
4447             axis.museum
4448             badajoz.museum
4449             baghdad.museum
4450             bahn.museum
4451             bale.museum
4452             baltimore.museum
4453             barcelona.museum
4454             baseball.museum
4455             basel.museum
4456             baths.museum
4457             bauern.museum
4458             beauxarts.museum
4459             beeldengeluid.museum
4460             bellevue.museum
4461             bergbau.museum
4462             berkeley.museum
4463             berlin.museum
4464             bern.museum
4465             bible.museum
4466             bilbao.museum
4467             bill.museum
4468             birdart.museum
4469             birthplace.museum
4470             bonn.museum
4471             boston.museum
4472             botanical.museum
4473             botanicalgarden.museum
4474             botanicgarden.museum
4475             botany.museum
4476             brandywinevalley.museum
4477             brasil.museum
4478             bristol.museum
4479             british.museum
4480             britishcolumbia.museum
4481             broadcast.museum
4482             brunel.museum
4483             brussel.museum
4484             brussels.museum
4485             bruxelles.museum
4486             building.museum
4487             burghof.museum
4488             bus.museum
4489             bushey.museum
4490             cadaques.museum
4491             california.museum
4492             cambridge.museum
4493             can.museum
4494             canada.museum
4495             capebreton.museum
4496             carrier.museum
4497             cartoonart.museum
4498             casadelamoneda.museum
4499             castle.museum
4500             castres.museum
4501             celtic.museum
4502             center.museum
4503             chattanooga.museum
4504             cheltenham.museum
4505             chesapeakebay.museum
4506             chicago.museum
4507             children.museum
4508             childrens.museum
4509             childrensgarden.museum
4510             chiropractic.museum
4511             chocolate.museum
4512             christiansburg.museum
4513             cincinnati.museum
4514             cinema.museum
4515             circus.museum
4516             civilisation.museum
4517             civilization.museum
4518             civilwar.museum
4519             clinton.museum
4520             clock.museum
4521             coal.museum
4522             coastaldefence.museum
4523             cody.museum
4524             coldwar.museum
4525             collection.museum
4526             colonialwilliamsburg.museum
4527             coloradoplateau.museum
4528             columbia.museum
4529             columbus.museum
4530             communication.museum
4531             communications.museum
4532             community.museum
4533             computer.museum
4534             computerhistory.museum
4535             xn--comunicaes-v6a2o.museum
4536             contemporary.museum
4537             contemporaryart.museum
4538             convent.museum
4539             copenhagen.museum
4540             corporation.museum
4541             xn--correios-e-telecomunicaes-ghc29a.museum
4542             corvette.museum
4543             costume.museum
4544             countryestate.museum
4545             county.museum
4546             crafts.museum
4547             cranbrook.museum
4548             creation.museum
4549             cultural.museum
4550             culturalcenter.museum
4551             culture.museum
4552             cyber.museum
4553             cymru.museum
4554             dali.museum
4555             dallas.museum
4556             database.museum
4557             ddr.museum
4558             decorativearts.museum
4559             delaware.museum
4560             delmenhorst.museum
4561             denmark.museum
4562             depot.museum
4563             design.museum
4564             detroit.museum
4565             dinosaur.museum
4566             discovery.museum
4567             dolls.museum
4568             donostia.museum
4569             durham.museum
4570             eastafrica.museum
4571             eastcoast.museum
4572             education.museum
4573             educational.museum
4574             egyptian.museum
4575             eisenbahn.museum
4576             elburg.museum
4577             elvendrell.museum
4578             embroidery.museum
4579             encyclopedic.museum
4580             england.museum
4581             entomology.museum
4582             environment.museum
4583             environmentalconservation.museum
4584             epilepsy.museum
4585             essex.museum
4586             estate.museum
4587             ethnology.museum
4588             exeter.museum
4589             exhibition.museum
4590             family.museum
4591             farm.museum
4592             farmequipment.museum
4593             farmers.museum
4594             farmstead.museum
4595             field.museum
4596             figueres.museum
4597             filatelia.museum
4598             film.museum
4599             fineart.museum
4600             finearts.museum
4601             finland.museum
4602             flanders.museum
4603             florida.museum
4604             force.museum
4605             fortmissoula.museum
4606             fortworth.museum
4607             foundation.museum
4608             francaise.museum
4609             frankfurt.museum
4610             franziskaner.museum
4611             freemasonry.museum
4612             freiburg.museum
4613             fribourg.museum
4614             frog.museum
4615             fundacio.museum
4616             furniture.museum
4617             gallery.museum
4618             garden.museum
4619             gateway.museum
4620             geelvinck.museum
4621             gemological.museum
4622             geology.museum
4623             georgia.museum
4624             giessen.museum
4625             glas.museum
4626             glass.museum
4627             gorge.museum
4628             grandrapids.museum
4629             graz.museum
4630             guernsey.museum
4631             halloffame.museum
4632             hamburg.museum
4633             handson.museum
4634             harvestcelebration.museum
4635             hawaii.museum
4636             health.museum
4637             heimatunduhren.museum
4638             hellas.museum
4639             helsinki.museum
4640             hembygdsforbund.museum
4641             heritage.museum
4642             histoire.museum
4643             historical.museum
4644             historicalsociety.museum
4645             historichouses.museum
4646             historisch.museum
4647             historisches.museum
4648             history.museum
4649             historyofscience.museum
4650             horology.museum
4651             house.museum
4652             humanities.museum
4653             illustration.museum
4654             imageandsound.museum
4655             indian.museum
4656             indiana.museum
4657             indianapolis.museum
4658             indianmarket.museum
4659             intelligence.museum
4660             interactive.museum
4661             iraq.museum
4662             iron.museum
4663             isleofman.museum
4664             jamison.museum
4665             jefferson.museum
4666             jerusalem.museum
4667             jewelry.museum
4668             jewish.museum
4669             jewishart.museum
4670             jfk.museum
4671             journalism.museum
4672             judaica.museum
4673             judygarland.museum
4674             juedisches.museum
4675             juif.museum
4676             karate.museum
4677             karikatur.museum
4678             kids.museum
4679             koebenhavn.museum
4680             koeln.museum
4681             kunst.museum
4682             kunstsammlung.museum
4683             kunstunddesign.museum
4684             labor.museum
4685             labour.museum
4686             lajolla.museum
4687             lancashire.museum
4688             landes.museum
4689             lans.museum
4690             xn--lns-qla.museum
4691             larsson.museum
4692             lewismiller.museum
4693             lincoln.museum
4694             linz.museum
4695             living.museum
4696             livinghistory.museum
4697             localhistory.museum
4698             london.museum
4699             losangeles.museum
4700             louvre.museum
4701             loyalist.museum
4702             lucerne.museum
4703             luxembourg.museum
4704             luzern.museum
4705             mad.museum
4706             madrid.museum
4707             mallorca.museum
4708             manchester.museum
4709             mansion.museum
4710             mansions.museum
4711             manx.museum
4712             marburg.museum
4713             maritime.museum
4714             maritimo.museum
4715             maryland.museum
4716             marylhurst.museum
4717             media.museum
4718             medical.museum
4719             medizinhistorisches.museum
4720             meeres.museum
4721             memorial.museum
4722             mesaverde.museum
4723             michigan.museum
4724             midatlantic.museum
4725             military.museum
4726             mill.museum
4727             miners.museum
4728             mining.museum
4729             minnesota.museum
4730             missile.museum
4731             missoula.museum
4732             modern.museum
4733             moma.museum
4734             money.museum
4735             monmouth.museum
4736             monticello.museum
4737             montreal.museum
4738             moscow.museum
4739             motorcycle.museum
4740             muenchen.museum
4741             muenster.museum
4742             mulhouse.museum
4743             muncie.museum
4744             museet.museum
4745             museumcenter.museum
4746             museumvereniging.museum
4747             music.museum
4748             national.museum
4749             nationalfirearms.museum
4750             nationalheritage.museum
4751             nativeamerican.museum
4752             naturalhistory.museum
4753             naturalhistorymuseum.museum
4754             naturalsciences.museum
4755             nature.museum
4756             naturhistorisches.museum
4757             natuurwetenschappen.museum
4758             naumburg.museum
4759             naval.museum
4760             nebraska.museum
4761             neues.museum
4762             newhampshire.museum
4763             newjersey.museum
4764             newmexico.museum
4765             newport.museum
4766             newspaper.museum
4767             newyork.museum
4768             niepce.museum
4769             norfolk.museum
4770             north.museum
4771             nrw.museum
4772             nyc.museum
4773             nyny.museum
4774             oceanographic.museum
4775             oceanographique.museum
4776             omaha.museum
4777             online.museum
4778             ontario.museum
4779             openair.museum
4780             oregon.museum
4781             oregontrail.museum
4782             otago.museum
4783             oxford.museum
4784             pacific.museum
4785             paderborn.museum
4786             palace.museum
4787             paleo.museum
4788             palmsprings.museum
4789             panama.museum
4790             paris.museum
4791             pasadena.museum
4792             pharmacy.museum
4793             philadelphia.museum
4794             philadelphiaarea.museum
4795             philately.museum
4796             phoenix.museum
4797             photography.museum
4798             pilots.museum
4799             pittsburgh.museum
4800             planetarium.museum
4801             plantation.museum
4802             plants.museum
4803             plaza.museum
4804             portal.museum
4805             portland.museum
4806             portlligat.museum
4807             posts-and-telecommunications.museum
4808             preservation.museum
4809             presidio.museum
4810             press.museum
4811             project.museum
4812             public.museum
4813             pubol.museum
4814             quebec.museum
4815             railroad.museum
4816             railway.museum
4817             research.museum
4818             resistance.museum
4819             riodejaneiro.museum
4820             rochester.museum
4821             rockart.museum
4822             roma.museum
4823             russia.museum
4824             saintlouis.museum
4825             salem.museum
4826             salvadordali.museum
4827             salzburg.museum
4828             sandiego.museum
4829             sanfrancisco.museum
4830             santabarbara.museum
4831             santacruz.museum
4832             santafe.museum
4833             saskatchewan.museum
4834             satx.museum
4835             savannahga.museum
4836             schlesisches.museum
4837             schoenbrunn.museum
4838             schokoladen.museum
4839             school.museum
4840             schweiz.museum
4841             science.museum
4842             scienceandhistory.museum
4843             scienceandindustry.museum
4844             sciencecenter.museum
4845             sciencecenters.museum
4846             science-fiction.museum
4847             sciencehistory.museum
4848             sciences.museum
4849             sciencesnaturelles.museum
4850             scotland.museum
4851             seaport.museum
4852             settlement.museum
4853             settlers.museum
4854             shell.museum
4855             sherbrooke.museum
4856             sibenik.museum
4857             silk.museum
4858             ski.museum
4859             skole.museum
4860             society.museum
4861             sologne.museum
4862             soundandvision.museum
4863             southcarolina.museum
4864             southwest.museum
4865             space.museum
4866             spy.museum
4867             square.museum
4868             stadt.museum
4869             stalbans.museum
4870             starnberg.museum
4871             state.museum
4872             stateofdelaware.museum
4873             station.museum
4874             steam.museum
4875             steiermark.museum
4876             stjohn.museum
4877             stockholm.museum
4878             stpetersburg.museum
4879             stuttgart.museum
4880             suisse.museum
4881             surgeonshall.museum
4882             surrey.museum
4883             svizzera.museum
4884             sweden.museum
4885             sydney.museum
4886             tank.museum
4887             tcm.museum
4888             technology.museum
4889             telekommunikation.museum
4890             television.museum
4891             texas.museum
4892             textile.museum
4893             theater.museum
4894             time.museum
4895             timekeeping.museum
4896             topology.museum
4897             torino.museum
4898             touch.museum
4899             town.museum
4900             transport.museum
4901             tree.museum
4902             trolley.museum
4903             trust.museum
4904             trustee.museum
4905             uhren.museum
4906             ulm.museum
4907             undersea.museum
4908             university.museum
4909             usa.museum
4910             usantiques.museum
4911             usarts.museum
4912             uscountryestate.museum
4913             usculture.museum
4914             usdecorativearts.museum
4915             usgarden.museum
4916             ushistory.museum
4917             ushuaia.museum
4918             uslivinghistory.museum
4919             utah.museum
4920             uvic.museum
4921             valley.museum
4922             vantaa.museum
4923             versailles.museum
4924             viking.museum
4925             village.museum
4926             virginia.museum
4927             virtual.museum
4928             virtuel.museum
4929             vlaanderen.museum
4930             volkenkunde.museum
4931             wales.museum
4932             wallonie.museum
4933             war.museum
4934             washingtondc.museum
4935             watchandclock.museum
4936             watch-and-clock.museum
4937             western.museum
4938             westfalen.museum
4939             whaling.museum
4940             wildlife.museum
4941             williamsburg.museum
4942             windmill.museum
4943             workshop.museum
4944             york.museum
4945             yorkshire.museum
4946             yosemite.museum
4947             youth.museum
4948             zoological.museum
4949             zoology.museum
4950             xn--9dbhblg6di.museum
4951             xn--h1aegh.museum
4952              
4953             // mv : https://en.wikipedia.org/wiki/.mv
4954             // "mv" included because, contra Wikipedia, google.mv exists.
4955             mv
4956             aero.mv
4957             biz.mv
4958             com.mv
4959             coop.mv
4960             edu.mv
4961             gov.mv
4962             info.mv
4963             int.mv
4964             mil.mv
4965             museum.mv
4966             name.mv
4967             net.mv
4968             org.mv
4969             pro.mv
4970              
4971             // mw : http://www.registrar.mw/
4972             mw
4973             ac.mw
4974             biz.mw
4975             co.mw
4976             com.mw
4977             coop.mw
4978             edu.mw
4979             gov.mw
4980             int.mw
4981             museum.mw
4982             net.mw
4983             org.mw
4984              
4985             // mx : http://www.nic.mx/
4986             // Submitted by registry
4987             mx
4988             com.mx
4989             org.mx
4990             gob.mx
4991             edu.mx
4992             net.mx
4993              
4994             // my : http://www.mynic.my/
4995             // Available strings: https://mynic.my/resources/domains/buying-a-domain/
4996             my
4997             biz.my
4998             com.my
4999             edu.my
5000             gov.my
5001             mil.my
5002             name.my
5003             net.my
5004             org.my
5005              
5006             // mz : http://www.uem.mz/
5007             // Submitted by registry
5008             mz
5009             ac.mz
5010             adv.mz
5011             co.mz
5012             edu.mz
5013             gov.mz
5014             mil.mz
5015             net.mz
5016             org.mz
5017              
5018             // na : http://www.na-nic.com.na/
5019             // http://www.info.na/domain/
5020             na
5021             info.na
5022             pro.na
5023             name.na
5024             school.na
5025             or.na
5026             dr.na
5027             us.na
5028             mx.na
5029             ca.na
5030             in.na
5031             cc.na
5032             tv.na
5033             ws.na
5034             mobi.na
5035             co.na
5036             com.na
5037             org.na
5038              
5039             // name : has 2nd-level tlds, but there's no list of them
5040             name
5041              
5042             // nc : http://www.cctld.nc/
5043             nc
5044             asso.nc
5045             nom.nc
5046              
5047             // ne : https://en.wikipedia.org/wiki/.ne
5048             ne
5049              
5050             // net : https://en.wikipedia.org/wiki/.net
5051             net
5052              
5053             // nf : https://en.wikipedia.org/wiki/.nf
5054             nf
5055             com.nf
5056             net.nf
5057             per.nf
5058             rec.nf
5059             web.nf
5060             arts.nf
5061             firm.nf
5062             info.nf
5063             other.nf
5064             store.nf
5065              
5066             // ng : http://www.nira.org.ng/index.php/join-us/register-ng-domain/189-nira-slds
5067             ng
5068             com.ng
5069             edu.ng
5070             gov.ng
5071             i.ng
5072             mil.ng
5073             mobi.ng
5074             name.ng
5075             net.ng
5076             org.ng
5077             sch.ng
5078              
5079             // ni : http://www.nic.ni/
5080             ni
5081             ac.ni
5082             biz.ni
5083             co.ni
5084             com.ni
5085             edu.ni
5086             gob.ni
5087             in.ni
5088             info.ni
5089             int.ni
5090             mil.ni
5091             net.ni
5092             nom.ni
5093             org.ni
5094             web.ni
5095              
5096             // nl : https://en.wikipedia.org/wiki/.nl
5097             // https://www.sidn.nl/
5098             // ccTLD for the Netherlands
5099             nl
5100              
5101             // no : https://www.norid.no/en/om-domenenavn/regelverk-for-no/
5102             // Norid geographical second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-b/
5103             // Norid category second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-c/
5104             // Norid category second-level domains managed by parties other than Norid : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-d/
5105             // RSS feed: https://teknisk.norid.no/en/feed/
5106             no
5107             // Norid category second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-c/
5108             fhs.no
5109             vgs.no
5110             fylkesbibl.no
5111             folkebibl.no
5112             museum.no
5113             idrett.no
5114             priv.no
5115             // Norid category second-level domains managed by parties other than Norid : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-d/
5116             mil.no
5117             stat.no
5118             dep.no
5119             kommune.no
5120             herad.no
5121             // Norid geographical second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-b/
5122             // counties
5123             aa.no
5124             ah.no
5125             bu.no
5126             fm.no
5127             hl.no
5128             hm.no
5129             jan-mayen.no
5130             mr.no
5131             nl.no
5132             nt.no
5133             of.no
5134             ol.no
5135             oslo.no
5136             rl.no
5137             sf.no
5138             st.no
5139             svalbard.no
5140             tm.no
5141             tr.no
5142             va.no
5143             vf.no
5144             // primary and lower secondary schools per county
5145             gs.aa.no
5146             gs.ah.no
5147             gs.bu.no
5148             gs.fm.no
5149             gs.hl.no
5150             gs.hm.no
5151             gs.jan-mayen.no
5152             gs.mr.no
5153             gs.nl.no
5154             gs.nt.no
5155             gs.of.no
5156             gs.ol.no
5157             gs.oslo.no
5158             gs.rl.no
5159             gs.sf.no
5160             gs.st.no
5161             gs.svalbard.no
5162             gs.tm.no
5163             gs.tr.no
5164             gs.va.no
5165             gs.vf.no
5166             // cities
5167             akrehamn.no
5168             xn--krehamn-dxa.no
5169             algard.no
5170             xn--lgrd-poac.no
5171             arna.no
5172             brumunddal.no
5173             bryne.no
5174             bronnoysund.no
5175             xn--brnnysund-m8ac.no
5176             drobak.no
5177             xn--drbak-wua.no
5178             egersund.no
5179             fetsund.no
5180             floro.no
5181             xn--flor-jra.no
5182             fredrikstad.no
5183             hokksund.no
5184             honefoss.no
5185             xn--hnefoss-q1a.no
5186             jessheim.no
5187             jorpeland.no
5188             xn--jrpeland-54a.no
5189             kirkenes.no
5190             kopervik.no
5191             krokstadelva.no
5192             langevag.no
5193             xn--langevg-jxa.no
5194             leirvik.no
5195             mjondalen.no
5196             xn--mjndalen-64a.no
5197             mo-i-rana.no
5198             mosjoen.no
5199             xn--mosjen-eya.no
5200             nesoddtangen.no
5201             orkanger.no
5202             osoyro.no
5203             xn--osyro-wua.no
5204             raholt.no
5205             xn--rholt-mra.no
5206             sandnessjoen.no
5207             xn--sandnessjen-ogb.no
5208             skedsmokorset.no
5209             slattum.no
5210             spjelkavik.no
5211             stathelle.no
5212             stavern.no
5213             stjordalshalsen.no
5214             xn--stjrdalshalsen-sqb.no
5215             tananger.no
5216             tranby.no
5217             vossevangen.no
5218             // communities
5219             afjord.no
5220             xn--fjord-lra.no
5221             agdenes.no
5222             al.no
5223             xn--l-1fa.no
5224             alesund.no
5225             xn--lesund-hua.no
5226             alstahaug.no
5227             alta.no
5228             xn--lt-liac.no
5229             alaheadju.no
5230             xn--laheadju-7ya.no
5231             alvdal.no
5232             amli.no
5233             xn--mli-tla.no
5234             amot.no
5235             xn--mot-tla.no
5236             andebu.no
5237             andoy.no
5238             xn--andy-ira.no
5239             andasuolo.no
5240             ardal.no
5241             xn--rdal-poa.no
5242             aremark.no
5243             arendal.no
5244             xn--s-1fa.no
5245             aseral.no
5246             xn--seral-lra.no
5247             asker.no
5248             askim.no
5249             askvoll.no
5250             askoy.no
5251             xn--asky-ira.no
5252             asnes.no
5253             xn--snes-poa.no
5254             audnedaln.no
5255             aukra.no
5256             aure.no
5257             aurland.no
5258             aurskog-holand.no
5259             xn--aurskog-hland-jnb.no
5260             austevoll.no
5261             austrheim.no
5262             averoy.no
5263             xn--avery-yua.no
5264             balestrand.no
5265             ballangen.no
5266             balat.no
5267             xn--blt-elab.no
5268             balsfjord.no
5269             bahccavuotna.no
5270             xn--bhccavuotna-k7a.no
5271             bamble.no
5272             bardu.no
5273             beardu.no
5274             beiarn.no
5275             bajddar.no
5276             xn--bjddar-pta.no
5277             baidar.no
5278             xn--bidr-5nac.no
5279             berg.no
5280             bergen.no
5281             berlevag.no
5282             xn--berlevg-jxa.no
5283             bearalvahki.no
5284             xn--bearalvhki-y4a.no
5285             bindal.no
5286             birkenes.no
5287             bjarkoy.no
5288             xn--bjarky-fya.no
5289             bjerkreim.no
5290             bjugn.no
5291             bodo.no
5292             xn--bod-2na.no
5293             badaddja.no
5294             xn--bdddj-mrabd.no
5295             budejju.no
5296             bokn.no
5297             bremanger.no
5298             bronnoy.no
5299             xn--brnny-wuac.no
5300             bygland.no
5301             bykle.no
5302             barum.no
5303             xn--brum-voa.no
5304             bo.telemark.no
5305             xn--b-5ga.telemark.no
5306             bo.nordland.no
5307             xn--b-5ga.nordland.no
5308             bievat.no
5309             xn--bievt-0qa.no
5310             bomlo.no
5311             xn--bmlo-gra.no
5312             batsfjord.no
5313             xn--btsfjord-9za.no
5314             bahcavuotna.no
5315             xn--bhcavuotna-s4a.no
5316             dovre.no
5317             drammen.no
5318             drangedal.no
5319             dyroy.no
5320             xn--dyry-ira.no
5321             donna.no
5322             xn--dnna-gra.no
5323             eid.no
5324             eidfjord.no
5325             eidsberg.no
5326             eidskog.no
5327             eidsvoll.no
5328             eigersund.no
5329             elverum.no
5330             enebakk.no
5331             engerdal.no
5332             etne.no
5333             etnedal.no
5334             evenes.no
5335             evenassi.no
5336             xn--eveni-0qa01ga.no
5337             evje-og-hornnes.no
5338             farsund.no
5339             fauske.no
5340             fuossko.no
5341             fuoisku.no
5342             fedje.no
5343             fet.no
5344             finnoy.no
5345             xn--finny-yua.no
5346             fitjar.no
5347             fjaler.no
5348             fjell.no
5349             flakstad.no
5350             flatanger.no
5351             flekkefjord.no
5352             flesberg.no
5353             flora.no
5354             fla.no
5355             xn--fl-zia.no
5356             folldal.no
5357             forsand.no
5358             fosnes.no
5359             frei.no
5360             frogn.no
5361             froland.no
5362             frosta.no
5363             frana.no
5364             xn--frna-woa.no
5365             froya.no
5366             xn--frya-hra.no
5367             fusa.no
5368             fyresdal.no
5369             forde.no
5370             xn--frde-gra.no
5371             gamvik.no
5372             gangaviika.no
5373             xn--ggaviika-8ya47h.no
5374             gaular.no
5375             gausdal.no
5376             gildeskal.no
5377             xn--gildeskl-g0a.no
5378             giske.no
5379             gjemnes.no
5380             gjerdrum.no
5381             gjerstad.no
5382             gjesdal.no
5383             gjovik.no
5384             xn--gjvik-wua.no
5385             gloppen.no
5386             gol.no
5387             gran.no
5388             grane.no
5389             granvin.no
5390             gratangen.no
5391             grimstad.no
5392             grong.no
5393             kraanghke.no
5394             xn--kranghke-b0a.no
5395             grue.no
5396             gulen.no
5397             hadsel.no
5398             halden.no
5399             halsa.no
5400             hamar.no
5401             hamaroy.no
5402             habmer.no
5403             xn--hbmer-xqa.no
5404             hapmir.no
5405             xn--hpmir-xqa.no
5406             hammerfest.no
5407             hammarfeasta.no
5408             xn--hmmrfeasta-s4ac.no
5409             haram.no
5410             hareid.no
5411             harstad.no
5412             hasvik.no
5413             aknoluokta.no
5414             xn--koluokta-7ya57h.no
5415             hattfjelldal.no
5416             aarborte.no
5417             haugesund.no
5418             hemne.no
5419             hemnes.no
5420             hemsedal.no
5421             heroy.more-og-romsdal.no
5422             xn--hery-ira.xn--mre-og-romsdal-qqb.no
5423             heroy.nordland.no
5424             xn--hery-ira.nordland.no
5425             hitra.no
5426             hjartdal.no
5427             hjelmeland.no
5428             hobol.no
5429             xn--hobl-ira.no
5430             hof.no
5431             hol.no
5432             hole.no
5433             holmestrand.no
5434             holtalen.no
5435             xn--holtlen-hxa.no
5436             hornindal.no
5437             horten.no
5438             hurdal.no
5439             hurum.no
5440             hvaler.no
5441             hyllestad.no
5442             hagebostad.no
5443             xn--hgebostad-g3a.no
5444             hoyanger.no
5445             xn--hyanger-q1a.no
5446             hoylandet.no
5447             xn--hylandet-54a.no
5448             ha.no
5449             xn--h-2fa.no
5450             ibestad.no
5451             inderoy.no
5452             xn--indery-fya.no
5453             iveland.no
5454             jevnaker.no
5455             jondal.no
5456             jolster.no
5457             xn--jlster-bya.no
5458             karasjok.no
5459             karasjohka.no
5460             xn--krjohka-hwab49j.no
5461             karlsoy.no
5462             galsa.no
5463             xn--gls-elac.no
5464             karmoy.no
5465             xn--karmy-yua.no
5466             kautokeino.no
5467             guovdageaidnu.no
5468             klepp.no
5469             klabu.no
5470             xn--klbu-woa.no
5471             kongsberg.no
5472             kongsvinger.no
5473             kragero.no
5474             xn--krager-gya.no
5475             kristiansand.no
5476             kristiansund.no
5477             krodsherad.no
5478             xn--krdsherad-m8a.no
5479             kvalsund.no
5480             rahkkeravju.no
5481             xn--rhkkervju-01af.no
5482             kvam.no
5483             kvinesdal.no
5484             kvinnherad.no
5485             kviteseid.no
5486             kvitsoy.no
5487             xn--kvitsy-fya.no
5488             kvafjord.no
5489             xn--kvfjord-nxa.no
5490             giehtavuoatna.no
5491             kvanangen.no
5492             xn--kvnangen-k0a.no
5493             navuotna.no
5494             xn--nvuotna-hwa.no
5495             kafjord.no
5496             xn--kfjord-iua.no
5497             gaivuotna.no
5498             xn--givuotna-8ya.no
5499             larvik.no
5500             lavangen.no
5501             lavagis.no
5502             loabat.no
5503             xn--loabt-0qa.no
5504             lebesby.no
5505             davvesiida.no
5506             leikanger.no
5507             leirfjord.no
5508             leka.no
5509             leksvik.no
5510             lenvik.no
5511             leangaviika.no
5512             xn--leagaviika-52b.no
5513             lesja.no
5514             levanger.no
5515             lier.no
5516             lierne.no
5517             lillehammer.no
5518             lillesand.no
5519             lindesnes.no
5520             lindas.no
5521             xn--linds-pra.no
5522             lom.no
5523             loppa.no
5524             lahppi.no
5525             xn--lhppi-xqa.no
5526             lund.no
5527             lunner.no
5528             luroy.no
5529             xn--lury-ira.no
5530             luster.no
5531             lyngdal.no
5532             lyngen.no
5533             ivgu.no
5534             lardal.no
5535             lerdal.no
5536             xn--lrdal-sra.no
5537             lodingen.no
5538             xn--ldingen-q1a.no
5539             lorenskog.no
5540             xn--lrenskog-54a.no
5541             loten.no
5542             xn--lten-gra.no
5543             malvik.no
5544             masoy.no
5545             xn--msy-ula0h.no
5546             muosat.no
5547             xn--muost-0qa.no
5548             mandal.no
5549             marker.no
5550             marnardal.no
5551             masfjorden.no
5552             meland.no
5553             meldal.no
5554             melhus.no
5555             meloy.no
5556             xn--mely-ira.no
5557             meraker.no
5558             xn--merker-kua.no
5559             moareke.no
5560             xn--moreke-jua.no
5561             midsund.no
5562             midtre-gauldal.no
5563             modalen.no
5564             modum.no
5565             molde.no
5566             moskenes.no
5567             moss.no
5568             mosvik.no
5569             malselv.no
5570             xn--mlselv-iua.no
5571             malatvuopmi.no
5572             xn--mlatvuopmi-s4a.no
5573             namdalseid.no
5574             aejrie.no
5575             namsos.no
5576             namsskogan.no
5577             naamesjevuemie.no
5578             xn--nmesjevuemie-tcba.no
5579             laakesvuemie.no
5580             nannestad.no
5581             narvik.no
5582             narviika.no
5583             naustdal.no
5584             nedre-eiker.no
5585             nes.akershus.no
5586             nes.buskerud.no
5587             nesna.no
5588             nesodden.no
5589             nesseby.no
5590             unjarga.no
5591             xn--unjrga-rta.no
5592             nesset.no
5593             nissedal.no
5594             nittedal.no
5595             nord-aurdal.no
5596             nord-fron.no
5597             nord-odal.no
5598             norddal.no
5599             nordkapp.no
5600             davvenjarga.no
5601             xn--davvenjrga-y4a.no
5602             nordre-land.no
5603             nordreisa.no
5604             raisa.no
5605             xn--risa-5na.no
5606             nore-og-uvdal.no
5607             notodden.no
5608             naroy.no
5609             xn--nry-yla5g.no
5610             notteroy.no
5611             xn--nttery-byae.no
5612             odda.no
5613             oksnes.no
5614             xn--ksnes-uua.no
5615             oppdal.no
5616             oppegard.no
5617             xn--oppegrd-ixa.no
5618             orkdal.no
5619             orland.no
5620             xn--rland-uua.no
5621             orskog.no
5622             xn--rskog-uua.no
5623             orsta.no
5624             xn--rsta-fra.no
5625             os.hedmark.no
5626             os.hordaland.no
5627             osen.no
5628             osteroy.no
5629             xn--ostery-fya.no
5630             ostre-toten.no
5631             xn--stre-toten-zcb.no
5632             overhalla.no
5633             ovre-eiker.no
5634             xn--vre-eiker-k8a.no
5635             oyer.no
5636             xn--yer-zna.no
5637             oygarden.no
5638             xn--ygarden-p1a.no
5639             oystre-slidre.no
5640             xn--ystre-slidre-ujb.no
5641             porsanger.no
5642             porsangu.no
5643             xn--porsgu-sta26f.no
5644             porsgrunn.no
5645             radoy.no
5646             xn--rady-ira.no
5647             rakkestad.no
5648             rana.no
5649             ruovat.no
5650             randaberg.no
5651             rauma.no
5652             rendalen.no
5653             rennebu.no
5654             rennesoy.no
5655             xn--rennesy-v1a.no
5656             rindal.no
5657             ringebu.no
5658             ringerike.no
5659             ringsaker.no
5660             rissa.no
5661             risor.no
5662             xn--risr-ira.no
5663             roan.no
5664             rollag.no
5665             rygge.no
5666             ralingen.no
5667             xn--rlingen-mxa.no
5668             rodoy.no
5669             xn--rdy-0nab.no
5670             romskog.no
5671             xn--rmskog-bya.no
5672             roros.no
5673             xn--rros-gra.no
5674             rost.no
5675             xn--rst-0na.no
5676             royken.no
5677             xn--ryken-vua.no
5678             royrvik.no
5679             xn--ryrvik-bya.no
5680             rade.no
5681             xn--rde-ula.no
5682             salangen.no
5683             siellak.no
5684             saltdal.no
5685             salat.no
5686             xn--slt-elab.no
5687             xn--slat-5na.no
5688             samnanger.no
5689             sande.more-og-romsdal.no
5690             sande.xn--mre-og-romsdal-qqb.no
5691             sande.vestfold.no
5692             sandefjord.no
5693             sandnes.no
5694             sandoy.no
5695             xn--sandy-yua.no
5696             sarpsborg.no
5697             sauda.no
5698             sauherad.no
5699             sel.no
5700             selbu.no
5701             selje.no
5702             seljord.no
5703             sigdal.no
5704             siljan.no
5705             sirdal.no
5706             skaun.no
5707             skedsmo.no
5708             ski.no
5709             skien.no
5710             skiptvet.no
5711             skjervoy.no
5712             xn--skjervy-v1a.no
5713             skierva.no
5714             xn--skierv-uta.no
5715             skjak.no
5716             xn--skjk-soa.no
5717             skodje.no
5718             skanland.no
5719             xn--sknland-fxa.no
5720             skanit.no
5721             xn--sknit-yqa.no
5722             smola.no
5723             xn--smla-hra.no
5724             snillfjord.no
5725             snasa.no
5726             xn--snsa-roa.no
5727             snoasa.no
5728             snaase.no
5729             xn--snase-nra.no
5730             sogndal.no
5731             sokndal.no
5732             sola.no
5733             solund.no
5734             songdalen.no
5735             sortland.no
5736             spydeberg.no
5737             stange.no
5738             stavanger.no
5739             steigen.no
5740             steinkjer.no
5741             stjordal.no
5742             xn--stjrdal-s1a.no
5743             stokke.no
5744             stor-elvdal.no
5745             stord.no
5746             stordal.no
5747             storfjord.no
5748             omasvuotna.no
5749             strand.no
5750             stranda.no
5751             stryn.no
5752             sula.no
5753             suldal.no
5754             sund.no
5755             sunndal.no
5756             surnadal.no
5757             sveio.no
5758             svelvik.no
5759             sykkylven.no
5760             sogne.no
5761             xn--sgne-gra.no
5762             somna.no
5763             xn--smna-gra.no
5764             sondre-land.no
5765             xn--sndre-land-0cb.no
5766             sor-aurdal.no
5767             xn--sr-aurdal-l8a.no
5768             sor-fron.no
5769             xn--sr-fron-q1a.no
5770             sor-odal.no
5771             xn--sr-odal-q1a.no
5772             sor-varanger.no
5773             xn--sr-varanger-ggb.no
5774             matta-varjjat.no
5775             xn--mtta-vrjjat-k7af.no
5776             sorfold.no
5777             xn--srfold-bya.no
5778             sorreisa.no
5779             xn--srreisa-q1a.no
5780             sorum.no
5781             xn--srum-gra.no
5782             tana.no
5783             deatnu.no
5784             time.no
5785             tingvoll.no
5786             tinn.no
5787             tjeldsund.no
5788             dielddanuorri.no
5789             tjome.no
5790             xn--tjme-hra.no
5791             tokke.no
5792             tolga.no
5793             torsken.no
5794             tranoy.no
5795             xn--trany-yua.no
5796             tromso.no
5797             xn--troms-zua.no
5798             tromsa.no
5799             romsa.no
5800             trondheim.no
5801             troandin.no
5802             trysil.no
5803             trana.no
5804             xn--trna-woa.no
5805             trogstad.no
5806             xn--trgstad-r1a.no
5807             tvedestrand.no
5808             tydal.no
5809             tynset.no
5810             tysfjord.no
5811             divtasvuodna.no
5812             divttasvuotna.no
5813             tysnes.no
5814             tysvar.no
5815             xn--tysvr-vra.no
5816             tonsberg.no
5817             xn--tnsberg-q1a.no
5818             ullensaker.no
5819             ullensvang.no
5820             ulvik.no
5821             utsira.no
5822             vadso.no
5823             xn--vads-jra.no
5824             cahcesuolo.no
5825             xn--hcesuolo-7ya35b.no
5826             vaksdal.no
5827             valle.no
5828             vang.no
5829             vanylven.no
5830             vardo.no
5831             xn--vard-jra.no
5832             varggat.no
5833             xn--vrggt-xqad.no
5834             vefsn.no
5835             vaapste.no
5836             vega.no
5837             vegarshei.no
5838             xn--vegrshei-c0a.no
5839             vennesla.no
5840             verdal.no
5841             verran.no
5842             vestby.no
5843             vestnes.no
5844             vestre-slidre.no
5845             vestre-toten.no
5846             vestvagoy.no
5847             xn--vestvgy-ixa6o.no
5848             vevelstad.no
5849             vik.no
5850             vikna.no
5851             vindafjord.no
5852             volda.no
5853             voss.no
5854             varoy.no
5855             xn--vry-yla5g.no
5856             vagan.no
5857             xn--vgan-qoa.no
5858             voagat.no
5859             vagsoy.no
5860             xn--vgsy-qoa0j.no
5861             vaga.no
5862             xn--vg-yiab.no
5863             valer.ostfold.no
5864             xn--vler-qoa.xn--stfold-9xa.no
5865             valer.hedmark.no
5866             xn--vler-qoa.hedmark.no
5867              
5868             // np : http://www.mos.com.np/register.html
5869             *.np
5870              
5871             // nr : http://cenpac.net.nr/dns/index.html
5872             // Submitted by registry
5873             nr
5874             biz.nr
5875             info.nr
5876             gov.nr
5877             edu.nr
5878             org.nr
5879             net.nr
5880             com.nr
5881              
5882             // nu : https://en.wikipedia.org/wiki/.nu
5883             nu
5884              
5885             // nz : https://en.wikipedia.org/wiki/.nz
5886             // Submitted by registry
5887             nz
5888             ac.nz
5889             co.nz
5890             cri.nz
5891             geek.nz
5892             gen.nz
5893             govt.nz
5894             health.nz
5895             iwi.nz
5896             kiwi.nz
5897             maori.nz
5898             mil.nz
5899             xn--mori-qsa.nz
5900             net.nz
5901             org.nz
5902             parliament.nz
5903             school.nz
5904              
5905             // om : https://en.wikipedia.org/wiki/.om
5906             om
5907             co.om
5908             com.om
5909             edu.om
5910             gov.om
5911             med.om
5912             museum.om
5913             net.om
5914             org.om
5915             pro.om
5916              
5917             // onion : https://tools.ietf.org/html/rfc7686
5918             onion
5919              
5920             // org : https://en.wikipedia.org/wiki/.org
5921             org
5922              
5923             // pa : http://www.nic.pa/
5924             // Some additional second level "domains" resolve directly as hostnames, such as
5925             // pannet.pa, so we add a rule for "pa".
5926             pa
5927             ac.pa
5928             gob.pa
5929             com.pa
5930             org.pa
5931             sld.pa
5932             edu.pa
5933             net.pa
5934             ing.pa
5935             abo.pa
5936             med.pa
5937             nom.pa
5938              
5939             // pe : https://www.nic.pe/InformeFinalComision.pdf
5940             pe
5941             edu.pe
5942             gob.pe
5943             nom.pe
5944             mil.pe
5945             org.pe
5946             com.pe
5947             net.pe
5948              
5949             // pf : http://www.gobin.info/domainname/formulaire-pf.pdf
5950             pf
5951             com.pf
5952             org.pf
5953             edu.pf
5954              
5955             // pg : https://en.wikipedia.org/wiki/.pg
5956             *.pg
5957              
5958             // ph : http://www.domains.ph/FAQ2.asp
5959             // Submitted by registry
5960             ph
5961             com.ph
5962             net.ph
5963             org.ph
5964             gov.ph
5965             edu.ph
5966             ngo.ph
5967             mil.ph
5968             i.ph
5969              
5970             // pk : http://pk5.pknic.net.pk/pk5/msgNamepk.PK
5971             pk
5972             com.pk
5973             net.pk
5974             edu.pk
5975             org.pk
5976             fam.pk
5977             biz.pk
5978             web.pk
5979             gov.pk
5980             gob.pk
5981             gok.pk
5982             gon.pk
5983             gop.pk
5984             gos.pk
5985             info.pk
5986              
5987             // pl http://www.dns.pl/english/index.html
5988             // Submitted by registry
5989             pl
5990             com.pl
5991             net.pl
5992             org.pl
5993             // pl functional domains (http://www.dns.pl/english/index.html)
5994             aid.pl
5995             agro.pl
5996             atm.pl
5997             auto.pl
5998             biz.pl
5999             edu.pl
6000             gmina.pl
6001             gsm.pl
6002             info.pl
6003             mail.pl
6004             miasta.pl
6005             media.pl
6006             mil.pl
6007             nieruchomosci.pl
6008             nom.pl
6009             pc.pl
6010             powiat.pl
6011             priv.pl
6012             realestate.pl
6013             rel.pl
6014             sex.pl
6015             shop.pl
6016             sklep.pl
6017             sos.pl
6018             szkola.pl
6019             targi.pl
6020             tm.pl
6021             tourism.pl
6022             travel.pl
6023             turystyka.pl
6024             // Government domains
6025             gov.pl
6026             ap.gov.pl
6027             ic.gov.pl
6028             is.gov.pl
6029             us.gov.pl
6030             kmpsp.gov.pl
6031             kppsp.gov.pl
6032             kwpsp.gov.pl
6033             psp.gov.pl
6034             wskr.gov.pl
6035             kwp.gov.pl
6036             mw.gov.pl
6037             ug.gov.pl
6038             um.gov.pl
6039             umig.gov.pl
6040             ugim.gov.pl
6041             upow.gov.pl
6042             uw.gov.pl
6043             starostwo.gov.pl
6044             pa.gov.pl
6045             po.gov.pl
6046             psse.gov.pl
6047             pup.gov.pl
6048             rzgw.gov.pl
6049             sa.gov.pl
6050             so.gov.pl
6051             sr.gov.pl
6052             wsa.gov.pl
6053             sko.gov.pl
6054             uzs.gov.pl
6055             wiih.gov.pl
6056             winb.gov.pl
6057             pinb.gov.pl
6058             wios.gov.pl
6059             witd.gov.pl
6060             wzmiuw.gov.pl
6061             piw.gov.pl
6062             wiw.gov.pl
6063             griw.gov.pl
6064             wif.gov.pl
6065             oum.gov.pl
6066             sdn.gov.pl
6067             zp.gov.pl
6068             uppo.gov.pl
6069             mup.gov.pl
6070             wuoz.gov.pl
6071             konsulat.gov.pl
6072             oirm.gov.pl
6073             // pl regional domains (http://www.dns.pl/english/index.html)
6074             augustow.pl
6075             babia-gora.pl
6076             bedzin.pl
6077             beskidy.pl
6078             bialowieza.pl
6079             bialystok.pl
6080             bielawa.pl
6081             bieszczady.pl
6082             boleslawiec.pl
6083             bydgoszcz.pl
6084             bytom.pl
6085             cieszyn.pl
6086             czeladz.pl
6087             czest.pl
6088             dlugoleka.pl
6089             elblag.pl
6090             elk.pl
6091             glogow.pl
6092             gniezno.pl
6093             gorlice.pl
6094             grajewo.pl
6095             ilawa.pl
6096             jaworzno.pl
6097             jelenia-gora.pl
6098             jgora.pl
6099             kalisz.pl
6100             kazimierz-dolny.pl
6101             karpacz.pl
6102             kartuzy.pl
6103             kaszuby.pl
6104             katowice.pl
6105             kepno.pl
6106             ketrzyn.pl
6107             klodzko.pl
6108             kobierzyce.pl
6109             kolobrzeg.pl
6110             konin.pl
6111             konskowola.pl
6112             kutno.pl
6113             lapy.pl
6114             lebork.pl
6115             legnica.pl
6116             lezajsk.pl
6117             limanowa.pl
6118             lomza.pl
6119             lowicz.pl
6120             lubin.pl
6121             lukow.pl
6122             malbork.pl
6123             malopolska.pl
6124             mazowsze.pl
6125             mazury.pl
6126             mielec.pl
6127             mielno.pl
6128             mragowo.pl
6129             naklo.pl
6130             nowaruda.pl
6131             nysa.pl
6132             olawa.pl
6133             olecko.pl
6134             olkusz.pl
6135             olsztyn.pl
6136             opoczno.pl
6137             opole.pl
6138             ostroda.pl
6139             ostroleka.pl
6140             ostrowiec.pl
6141             ostrowwlkp.pl
6142             pila.pl
6143             pisz.pl
6144             podhale.pl
6145             podlasie.pl
6146             polkowice.pl
6147             pomorze.pl
6148             pomorskie.pl
6149             prochowice.pl
6150             pruszkow.pl
6151             przeworsk.pl
6152             pulawy.pl
6153             radom.pl
6154             rawa-maz.pl
6155             rybnik.pl
6156             rzeszow.pl
6157             sanok.pl
6158             sejny.pl
6159             slask.pl
6160             slupsk.pl
6161             sosnowiec.pl
6162             stalowa-wola.pl
6163             skoczow.pl
6164             starachowice.pl
6165             stargard.pl
6166             suwalki.pl
6167             swidnica.pl
6168             swiebodzin.pl
6169             swinoujscie.pl
6170             szczecin.pl
6171             szczytno.pl
6172             tarnobrzeg.pl
6173             tgory.pl
6174             turek.pl
6175             tychy.pl
6176             ustka.pl
6177             walbrzych.pl
6178             warmia.pl
6179             warszawa.pl
6180             waw.pl
6181             wegrow.pl
6182             wielun.pl
6183             wlocl.pl
6184             wloclawek.pl
6185             wodzislaw.pl
6186             wolomin.pl
6187             wroclaw.pl
6188             zachpomor.pl
6189             zagan.pl
6190             zarow.pl
6191             zgora.pl
6192             zgorzelec.pl
6193              
6194             // pm : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
6195             pm
6196              
6197             // pn : http://www.government.pn/PnRegistry/policies.htm
6198             pn
6199             gov.pn
6200             co.pn
6201             org.pn
6202             edu.pn
6203             net.pn
6204              
6205             // post : https://en.wikipedia.org/wiki/.post
6206             post
6207              
6208             // pr : http://www.nic.pr/index.asp?f=1
6209             pr
6210             com.pr
6211             net.pr
6212             org.pr
6213             gov.pr
6214             edu.pr
6215             isla.pr
6216             pro.pr
6217             biz.pr
6218             info.pr
6219             name.pr
6220             // these aren't mentioned on nic.pr, but on https://en.wikipedia.org/wiki/.pr
6221             est.pr
6222             prof.pr
6223             ac.pr
6224              
6225             // pro : http://registry.pro/get-pro
6226             pro
6227             aaa.pro
6228             aca.pro
6229             acct.pro
6230             avocat.pro
6231             bar.pro
6232             cpa.pro
6233             eng.pro
6234             jur.pro
6235             law.pro
6236             med.pro
6237             recht.pro
6238              
6239             // ps : https://en.wikipedia.org/wiki/.ps
6240             // http://www.nic.ps/registration/policy.html#reg
6241             ps
6242             edu.ps
6243             gov.ps
6244             sec.ps
6245             plo.ps
6246             com.ps
6247             org.ps
6248             net.ps
6249              
6250             // pt : https://www.dns.pt/en/domain/pt-terms-and-conditions-registration-rules/
6251             pt
6252             net.pt
6253             gov.pt
6254             org.pt
6255             edu.pt
6256             int.pt
6257             publ.pt
6258             com.pt
6259             nome.pt
6260              
6261             // pw : https://en.wikipedia.org/wiki/.pw
6262             pw
6263             co.pw
6264             ne.pw
6265             or.pw
6266             ed.pw
6267             go.pw
6268             belau.pw
6269              
6270             // py : http://www.nic.py/pautas.html#seccion_9
6271             // Submitted by registry
6272             py
6273             com.py
6274             coop.py
6275             edu.py
6276             gov.py
6277             mil.py
6278             net.py
6279             org.py
6280              
6281             // qa : http://domains.qa/en/
6282             qa
6283             com.qa
6284             edu.qa
6285             gov.qa
6286             mil.qa
6287             name.qa
6288             net.qa
6289             org.qa
6290             sch.qa
6291              
6292             // re : http://www.afnic.re/obtenir/chartes/nommage-re/annexe-descriptifs
6293             re
6294             asso.re
6295             com.re
6296             nom.re
6297              
6298             // ro : http://www.rotld.ro/
6299             ro
6300             arts.ro
6301             com.ro
6302             firm.ro
6303             info.ro
6304             nom.ro
6305             nt.ro
6306             org.ro
6307             rec.ro
6308             store.ro
6309             tm.ro
6310             www.ro
6311              
6312             // rs : https://www.rnids.rs/en/domains/national-domains
6313             rs
6314             ac.rs
6315             co.rs
6316             edu.rs
6317             gov.rs
6318             in.rs
6319             org.rs
6320              
6321             // ru : https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
6322             // Submitted by George Georgievsky
6323             ru
6324              
6325             // rw : https://www.ricta.org.rw/sites/default/files/resources/registry_registrar_contract_0.pdf
6326             rw
6327             ac.rw
6328             co.rw
6329             coop.rw
6330             gov.rw
6331             mil.rw
6332             net.rw
6333             org.rw
6334              
6335             // sa : http://www.nic.net.sa/
6336             sa
6337             com.sa
6338             net.sa
6339             org.sa
6340             gov.sa
6341             med.sa
6342             pub.sa
6343             edu.sa
6344             sch.sa
6345              
6346             // sb : http://www.sbnic.net.sb/
6347             // Submitted by registry
6348             sb
6349             com.sb
6350             edu.sb
6351             gov.sb
6352             net.sb
6353             org.sb
6354              
6355             // sc : http://www.nic.sc/
6356             sc
6357             com.sc
6358             gov.sc
6359             net.sc
6360             org.sc
6361             edu.sc
6362              
6363             // sd : http://www.isoc.sd/sudanic.isoc.sd/billing_pricing.htm
6364             // Submitted by registry
6365             sd
6366             com.sd
6367             net.sd
6368             org.sd
6369             edu.sd
6370             med.sd
6371             tv.sd
6372             gov.sd
6373             info.sd
6374              
6375             // se : https://en.wikipedia.org/wiki/.se
6376             // Submitted by registry
6377             se
6378             a.se
6379             ac.se
6380             b.se
6381             bd.se
6382             brand.se
6383             c.se
6384             d.se
6385             e.se
6386             f.se
6387             fh.se
6388             fhsk.se
6389             fhv.se
6390             g.se
6391             h.se
6392             i.se
6393             k.se
6394             komforb.se
6395             kommunalforbund.se
6396             komvux.se
6397             l.se
6398             lanbib.se
6399             m.se
6400             n.se
6401             naturbruksgymn.se
6402             o.se
6403             org.se
6404             p.se
6405             parti.se
6406             pp.se
6407             press.se
6408             r.se
6409             s.se
6410             t.se
6411             tm.se
6412             u.se
6413             w.se
6414             x.se
6415             y.se
6416             z.se
6417              
6418             // sg : http://www.nic.net.sg/page/registration-policies-procedures-and-guidelines
6419             sg
6420             com.sg
6421             net.sg
6422             org.sg
6423             gov.sg
6424             edu.sg
6425             per.sg
6426              
6427             // sh : http://nic.sh/rules.htm
6428             sh
6429             com.sh
6430             net.sh
6431             gov.sh
6432             org.sh
6433             mil.sh
6434              
6435             // si : https://en.wikipedia.org/wiki/.si
6436             si
6437              
6438             // sj : No registrations at this time.
6439             // Submitted by registry
6440             sj
6441              
6442             // sk : https://en.wikipedia.org/wiki/.sk
6443             // list of 2nd level domains ?
6444             sk
6445              
6446             // sl : http://www.nic.sl
6447             // Submitted by registry
6448             sl
6449             com.sl
6450             net.sl
6451             edu.sl
6452             gov.sl
6453             org.sl
6454              
6455             // sm : https://en.wikipedia.org/wiki/.sm
6456             sm
6457              
6458             // sn : https://en.wikipedia.org/wiki/.sn
6459             sn
6460             art.sn
6461             com.sn
6462             edu.sn
6463             gouv.sn
6464             org.sn
6465             perso.sn
6466             univ.sn
6467              
6468             // so : http://sonic.so/policies/
6469             so
6470             com.so
6471             edu.so
6472             gov.so
6473             me.so
6474             net.so
6475             org.so
6476              
6477             // sr : https://en.wikipedia.org/wiki/.sr
6478             sr
6479              
6480             // ss : https://registry.nic.ss/
6481             // Submitted by registry
6482             ss
6483             biz.ss
6484             com.ss
6485             edu.ss
6486             gov.ss
6487             me.ss
6488             net.ss
6489             org.ss
6490             sch.ss
6491              
6492             // st : http://www.nic.st/html/policyrules/
6493             st
6494             co.st
6495             com.st
6496             consulado.st
6497             edu.st
6498             embaixada.st
6499             mil.st
6500             net.st
6501             org.st
6502             principe.st
6503             saotome.st
6504             store.st
6505              
6506             // su : https://en.wikipedia.org/wiki/.su
6507             su
6508              
6509             // sv : http://www.svnet.org.sv/niveldos.pdf
6510             sv
6511             com.sv
6512             edu.sv
6513             gob.sv
6514             org.sv
6515             red.sv
6516              
6517             // sx : https://en.wikipedia.org/wiki/.sx
6518             // Submitted by registry
6519             sx
6520             gov.sx
6521              
6522             // sy : https://en.wikipedia.org/wiki/.sy
6523             // see also: http://www.gobin.info/domainname/sy.doc
6524             sy
6525             edu.sy
6526             gov.sy
6527             net.sy
6528             mil.sy
6529             com.sy
6530             org.sy
6531              
6532             // sz : https://en.wikipedia.org/wiki/.sz
6533             // http://www.sispa.org.sz/
6534             sz
6535             co.sz
6536             ac.sz
6537             org.sz
6538              
6539             // tc : https://en.wikipedia.org/wiki/.tc
6540             tc
6541              
6542             // td : https://en.wikipedia.org/wiki/.td
6543             td
6544              
6545             // tel: https://en.wikipedia.org/wiki/.tel
6546             // http://www.telnic.org/
6547             tel
6548              
6549             // tf : https://en.wikipedia.org/wiki/.tf
6550             tf
6551              
6552             // tg : https://en.wikipedia.org/wiki/.tg
6553             // http://www.nic.tg/
6554             tg
6555              
6556             // th : https://en.wikipedia.org/wiki/.th
6557             // Submitted by registry
6558             th
6559             ac.th
6560             co.th
6561             go.th
6562             in.th
6563             mi.th
6564             net.th
6565             or.th
6566              
6567             // tj : http://www.nic.tj/policy.html
6568             tj
6569             ac.tj
6570             biz.tj
6571             co.tj
6572             com.tj
6573             edu.tj
6574             go.tj
6575             gov.tj
6576             int.tj
6577             mil.tj
6578             name.tj
6579             net.tj
6580             nic.tj
6581             org.tj
6582             test.tj
6583             web.tj
6584              
6585             // tk : https://en.wikipedia.org/wiki/.tk
6586             tk
6587              
6588             // tl : https://en.wikipedia.org/wiki/.tl
6589             tl
6590             gov.tl
6591              
6592             // tm : http://www.nic.tm/local.html
6593             tm
6594             com.tm
6595             co.tm
6596             org.tm
6597             net.tm
6598             nom.tm
6599             gov.tm
6600             mil.tm
6601             edu.tm
6602              
6603             // tn : http://www.registre.tn/fr/
6604             // https://whois.ati.tn/
6605             tn
6606             com.tn
6607             ens.tn
6608             fin.tn
6609             gov.tn
6610             ind.tn
6611             info.tn
6612             intl.tn
6613             mincom.tn
6614             nat.tn
6615             net.tn
6616             org.tn
6617             perso.tn
6618             tourism.tn
6619              
6620             // to : https://en.wikipedia.org/wiki/.to
6621             // Submitted by registry
6622             to
6623             com.to
6624             gov.to
6625             net.to
6626             org.to
6627             edu.to
6628             mil.to
6629              
6630             // tr : https://nic.tr/
6631             // https://nic.tr/forms/eng/policies.pdf
6632             // https://nic.tr/index.php?USRACTN=PRICELST
6633             tr
6634             av.tr
6635             bbs.tr
6636             bel.tr
6637             biz.tr
6638             com.tr
6639             dr.tr
6640             edu.tr
6641             gen.tr
6642             gov.tr
6643             info.tr
6644             mil.tr
6645             k12.tr
6646             kep.tr
6647             name.tr
6648             net.tr
6649             org.tr
6650             pol.tr
6651             tel.tr
6652             tsk.tr
6653             tv.tr
6654             web.tr
6655             // Used by Northern Cyprus
6656             nc.tr
6657             // Used by government agencies of Northern Cyprus
6658             gov.nc.tr
6659              
6660             // tt : http://www.nic.tt/
6661             tt
6662             co.tt
6663             com.tt
6664             org.tt
6665             net.tt
6666             biz.tt
6667             info.tt
6668             pro.tt
6669             int.tt
6670             coop.tt
6671             jobs.tt
6672             mobi.tt
6673             travel.tt
6674             museum.tt
6675             aero.tt
6676             name.tt
6677             gov.tt
6678             edu.tt
6679              
6680             // tv : https://en.wikipedia.org/wiki/.tv
6681             // Not listing any 2LDs as reserved since none seem to exist in practice,
6682             // Wikipedia notwithstanding.
6683             tv
6684              
6685             // tw : https://en.wikipedia.org/wiki/.tw
6686             tw
6687             edu.tw
6688             gov.tw
6689             mil.tw
6690             com.tw
6691             net.tw
6692             org.tw
6693             idv.tw
6694             game.tw
6695             ebiz.tw
6696             club.tw
6697             xn--zf0ao64a.tw
6698             xn--uc0atv.tw
6699             xn--czrw28b.tw
6700              
6701             // tz : http://www.tznic.or.tz/index.php/domains
6702             // Submitted by registry
6703             tz
6704             ac.tz
6705             co.tz
6706             go.tz
6707             hotel.tz
6708             info.tz
6709             me.tz
6710             mil.tz
6711             mobi.tz
6712             ne.tz
6713             or.tz
6714             sc.tz
6715             tv.tz
6716              
6717             // ua : https://hostmaster.ua/policy/?ua
6718             // Submitted by registry
6719             ua
6720             // ua 2LD
6721             com.ua
6722             edu.ua
6723             gov.ua
6724             in.ua
6725             net.ua
6726             org.ua
6727             // ua geographic names
6728             // https://hostmaster.ua/2ld/
6729             cherkassy.ua
6730             cherkasy.ua
6731             chernigov.ua
6732             chernihiv.ua
6733             chernivtsi.ua
6734             chernovtsy.ua
6735             ck.ua
6736             cn.ua
6737             cr.ua
6738             crimea.ua
6739             cv.ua
6740             dn.ua
6741             dnepropetrovsk.ua
6742             dnipropetrovsk.ua
6743             donetsk.ua
6744             dp.ua
6745             if.ua
6746             ivano-frankivsk.ua
6747             kh.ua
6748             kharkiv.ua
6749             kharkov.ua
6750             kherson.ua
6751             khmelnitskiy.ua
6752             khmelnytskyi.ua
6753             kiev.ua
6754             kirovograd.ua
6755             km.ua
6756             kr.ua
6757             krym.ua
6758             ks.ua
6759             kv.ua
6760             kyiv.ua
6761             lg.ua
6762             lt.ua
6763             lugansk.ua
6764             lutsk.ua
6765             lv.ua
6766             lviv.ua
6767             mk.ua
6768             mykolaiv.ua
6769             nikolaev.ua
6770             od.ua
6771             odesa.ua
6772             odessa.ua
6773             pl.ua
6774             poltava.ua
6775             rivne.ua
6776             rovno.ua
6777             rv.ua
6778             sb.ua
6779             sebastopol.ua
6780             sevastopol.ua
6781             sm.ua
6782             sumy.ua
6783             te.ua
6784             ternopil.ua
6785             uz.ua
6786             uzhgorod.ua
6787             vinnica.ua
6788             vinnytsia.ua
6789             vn.ua
6790             volyn.ua
6791             yalta.ua
6792             zaporizhzhe.ua
6793             zaporizhzhia.ua
6794             zhitomir.ua
6795             zhytomyr.ua
6796             zp.ua
6797             zt.ua
6798              
6799             // ug : https://www.registry.co.ug/
6800             ug
6801             co.ug
6802             or.ug
6803             ac.ug
6804             sc.ug
6805             go.ug
6806             ne.ug
6807             com.ug
6808             org.ug
6809              
6810             // uk : https://en.wikipedia.org/wiki/.uk
6811             // Submitted by registry
6812             uk
6813             ac.uk
6814             co.uk
6815             gov.uk
6816             ltd.uk
6817             me.uk
6818             net.uk
6819             nhs.uk
6820             org.uk
6821             plc.uk
6822             police.uk
6823             *.sch.uk
6824              
6825             // us : https://en.wikipedia.org/wiki/.us
6826             us
6827             dni.us
6828             fed.us
6829             isa.us
6830             kids.us
6831             nsn.us
6832             // us geographic names
6833             ak.us
6834             al.us
6835             ar.us
6836             as.us
6837             az.us
6838             ca.us
6839             co.us
6840             ct.us
6841             dc.us
6842             de.us
6843             fl.us
6844             ga.us
6845             gu.us
6846             hi.us
6847             ia.us
6848             id.us
6849             il.us
6850             in.us
6851             ks.us
6852             ky.us
6853             la.us
6854             ma.us
6855             md.us
6856             me.us
6857             mi.us
6858             mn.us
6859             mo.us
6860             ms.us
6861             mt.us
6862             nc.us
6863             nd.us
6864             ne.us
6865             nh.us
6866             nj.us
6867             nm.us
6868             nv.us
6869             ny.us
6870             oh.us
6871             ok.us
6872             or.us
6873             pa.us
6874             pr.us
6875             ri.us
6876             sc.us
6877             sd.us
6878             tn.us
6879             tx.us
6880             ut.us
6881             vi.us
6882             vt.us
6883             va.us
6884             wa.us
6885             wi.us
6886             wv.us
6887             wy.us
6888             // The registrar notes several more specific domains available in each state,
6889             // such as state.*.us, dst.*.us, etc., but resolution of these is somewhat
6890             // haphazard; in some states these domains resolve as addresses, while in others
6891             // only subdomains are available, or even nothing at all. We include the
6892             // most common ones where it's clear that different sites are different
6893             // entities.
6894             k12.ak.us
6895             k12.al.us
6896             k12.ar.us
6897             k12.as.us
6898             k12.az.us
6899             k12.ca.us
6900             k12.co.us
6901             k12.ct.us
6902             k12.dc.us
6903             k12.de.us
6904             k12.fl.us
6905             k12.ga.us
6906             k12.gu.us
6907             // k12.hi.us Bug 614565 - Hawaii has a state-wide DOE login
6908             k12.ia.us
6909             k12.id.us
6910             k12.il.us
6911             k12.in.us
6912             k12.ks.us
6913             k12.ky.us
6914             k12.la.us
6915             k12.ma.us
6916             k12.md.us
6917             k12.me.us
6918             k12.mi.us
6919             k12.mn.us
6920             k12.mo.us
6921             k12.ms.us
6922             k12.mt.us
6923             k12.nc.us
6924             // k12.nd.us Bug 1028347 - Removed at request of Travis Rosso
6925             k12.ne.us
6926             k12.nh.us
6927             k12.nj.us
6928             k12.nm.us
6929             k12.nv.us
6930             k12.ny.us
6931             k12.oh.us
6932             k12.ok.us
6933             k12.or.us
6934             k12.pa.us
6935             k12.pr.us
6936             // k12.ri.us Removed at request of Kim Cournoyer
6937             k12.sc.us
6938             // k12.sd.us Bug 934131 - Removed at request of James Booze
6939             k12.tn.us
6940             k12.tx.us
6941             k12.ut.us
6942             k12.vi.us
6943             k12.vt.us
6944             k12.va.us
6945             k12.wa.us
6946             k12.wi.us
6947             // k12.wv.us Bug 947705 - Removed at request of Verne Britton
6948             k12.wy.us
6949             cc.ak.us
6950             cc.al.us
6951             cc.ar.us
6952             cc.as.us
6953             cc.az.us
6954             cc.ca.us
6955             cc.co.us
6956             cc.ct.us
6957             cc.dc.us
6958             cc.de.us
6959             cc.fl.us
6960             cc.ga.us
6961             cc.gu.us
6962             cc.hi.us
6963             cc.ia.us
6964             cc.id.us
6965             cc.il.us
6966             cc.in.us
6967             cc.ks.us
6968             cc.ky.us
6969             cc.la.us
6970             cc.ma.us
6971             cc.md.us
6972             cc.me.us
6973             cc.mi.us
6974             cc.mn.us
6975             cc.mo.us
6976             cc.ms.us
6977             cc.mt.us
6978             cc.nc.us
6979             cc.nd.us
6980             cc.ne.us
6981             cc.nh.us
6982             cc.nj.us
6983             cc.nm.us
6984             cc.nv.us
6985             cc.ny.us
6986             cc.oh.us
6987             cc.ok.us
6988             cc.or.us
6989             cc.pa.us
6990             cc.pr.us
6991             cc.ri.us
6992             cc.sc.us
6993             cc.sd.us
6994             cc.tn.us
6995             cc.tx.us
6996             cc.ut.us
6997             cc.vi.us
6998             cc.vt.us
6999             cc.va.us
7000             cc.wa.us
7001             cc.wi.us
7002             cc.wv.us
7003             cc.wy.us
7004             lib.ak.us
7005             lib.al.us
7006             lib.ar.us
7007             lib.as.us
7008             lib.az.us
7009             lib.ca.us
7010             lib.co.us
7011             lib.ct.us
7012             lib.dc.us
7013             // lib.de.us Issue #243 - Moved to Private section at request of Ed Moore
7014             lib.fl.us
7015             lib.ga.us
7016             lib.gu.us
7017             lib.hi.us
7018             lib.ia.us
7019             lib.id.us
7020             lib.il.us
7021             lib.in.us
7022             lib.ks.us
7023             lib.ky.us
7024             lib.la.us
7025             lib.ma.us
7026             lib.md.us
7027             lib.me.us
7028             lib.mi.us
7029             lib.mn.us
7030             lib.mo.us
7031             lib.ms.us
7032             lib.mt.us
7033             lib.nc.us
7034             lib.nd.us
7035             lib.ne.us
7036             lib.nh.us
7037             lib.nj.us
7038             lib.nm.us
7039             lib.nv.us
7040             lib.ny.us
7041             lib.oh.us
7042             lib.ok.us
7043             lib.or.us
7044             lib.pa.us
7045             lib.pr.us
7046             lib.ri.us
7047             lib.sc.us
7048             lib.sd.us
7049             lib.tn.us
7050             lib.tx.us
7051             lib.ut.us
7052             lib.vi.us
7053             lib.vt.us
7054             lib.va.us
7055             lib.wa.us
7056             lib.wi.us
7057             // lib.wv.us Bug 941670 - Removed at request of Larry W Arnold
7058             lib.wy.us
7059             // k12.ma.us contains school districts in Massachusetts. The 4LDs are
7060             // managed independently except for private (PVT), charter (CHTR) and
7061             // parochial (PAROCH) schools. Those are delegated directly to the
7062             // 5LD operators.
7063             pvt.k12.ma.us
7064             chtr.k12.ma.us
7065             paroch.k12.ma.us
7066             // Merit Network, Inc. maintains the registry for =~ /(k12|cc|lib).mi.us/ and the following
7067             // see also: http://domreg.merit.edu
7068             // see also: whois -h whois.domreg.merit.edu help
7069             ann-arbor.mi.us
7070             cog.mi.us
7071             dst.mi.us
7072             eaton.mi.us
7073             gen.mi.us
7074             mus.mi.us
7075             tec.mi.us
7076             washtenaw.mi.us
7077              
7078             // uy : http://www.nic.org.uy/
7079             uy
7080             com.uy
7081             edu.uy
7082             gub.uy
7083             mil.uy
7084             net.uy
7085             org.uy
7086              
7087             // uz : http://www.reg.uz/
7088             uz
7089             co.uz
7090             com.uz
7091             net.uz
7092             org.uz
7093              
7094             // va : https://en.wikipedia.org/wiki/.va
7095             va
7096              
7097             // vc : https://en.wikipedia.org/wiki/.vc
7098             // Submitted by registry
7099             vc
7100             com.vc
7101             net.vc
7102             org.vc
7103             gov.vc
7104             mil.vc
7105             edu.vc
7106              
7107             // ve : https://registro.nic.ve/
7108             // Submitted by registry nic@nic.ve and nicve@conatel.gob.ve
7109             ve
7110             arts.ve
7111             bib.ve
7112             co.ve
7113             com.ve
7114             e12.ve
7115             edu.ve
7116             firm.ve
7117             gob.ve
7118             gov.ve
7119             info.ve
7120             int.ve
7121             mil.ve
7122             net.ve
7123             nom.ve
7124             org.ve
7125             rar.ve
7126             rec.ve
7127             store.ve
7128             tec.ve
7129             web.ve
7130              
7131             // vg : https://en.wikipedia.org/wiki/.vg
7132             vg
7133              
7134             // vi : http://www.nic.vi/newdomainform.htm
7135             // http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
7136             // TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
7137             // are available for registration (which they do not seem to be).
7138             vi
7139             co.vi
7140             com.vi
7141             k12.vi
7142             net.vi
7143             org.vi
7144              
7145             // vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
7146             vn
7147             com.vn
7148             net.vn
7149             org.vn
7150             edu.vn
7151             gov.vn
7152             int.vn
7153             ac.vn
7154             biz.vn
7155             info.vn
7156             name.vn
7157             pro.vn
7158             health.vn
7159              
7160             // vu : https://en.wikipedia.org/wiki/.vu
7161             // http://www.vunic.vu/
7162             vu
7163             com.vu
7164             edu.vu
7165             net.vu
7166             org.vu
7167              
7168             // wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
7169             wf
7170              
7171             // ws : https://en.wikipedia.org/wiki/.ws
7172             // http://samoanic.ws/index.dhtml
7173             ws
7174             com.ws
7175             net.ws
7176             org.ws
7177             gov.ws
7178             edu.ws
7179              
7180             // yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
7181             yt
7182              
7183             // IDN ccTLDs
7184             // When submitting patches, please maintain a sort by ISO 3166 ccTLD, then
7185             // U-label, and follow this format:
7186             // // A-Label ("", [, variant info]) :
7187             // // [sponsoring org]
7188             // U-Label
7189              
7190             // xn--mgbaam7a8h ("Emerat", Arabic) : AE
7191             // http://nic.ae/english/arabicdomain/rules.jsp
7192             xn--mgbaam7a8h
7193              
7194             // xn--y9a3aq ("hye", Armenian) : AM
7195             // ISOC AM (operated by .am Registry)
7196             xn--y9a3aq
7197              
7198             // xn--54b7fta0cc ("Bangla", Bangla) : BD
7199             xn--54b7fta0cc
7200              
7201             // xn--90ae ("bg", Bulgarian) : BG
7202             xn--90ae
7203              
7204             // xn--mgbcpq6gpa1a ("albahrain", Arabic) : BH
7205             xn--mgbcpq6gpa1a
7206              
7207             // xn--90ais ("bel", Belarusian/Russian Cyrillic) : BY
7208             // Operated by .by registry
7209             xn--90ais
7210              
7211             // xn--fiqs8s ("Zhongguo/China", Chinese, Simplified) : CN
7212             // CNNIC
7213             // http://cnnic.cn/html/Dir/2005/10/11/3218.htm
7214             xn--fiqs8s
7215              
7216             // xn--fiqz9s ("Zhongguo/China", Chinese, Traditional) : CN
7217             // CNNIC
7218             // http://cnnic.cn/html/Dir/2005/10/11/3218.htm
7219             xn--fiqz9s
7220              
7221             // xn--lgbbat1ad8j ("Algeria/Al Jazair", Arabic) : DZ
7222             xn--lgbbat1ad8j
7223              
7224             // xn--wgbh1c ("Egypt/Masr", Arabic) : EG
7225             // http://www.dotmasr.eg/
7226             xn--wgbh1c
7227              
7228             // xn--e1a4c ("eu", Cyrillic) : EU
7229             // https://eurid.eu
7230             xn--e1a4c
7231              
7232             // xn--qxa6a ("eu", Greek) : EU
7233             // https://eurid.eu
7234             xn--qxa6a
7235              
7236             // xn--mgbah1a3hjkrd ("Mauritania", Arabic) : MR
7237             xn--mgbah1a3hjkrd
7238              
7239             // xn--node ("ge", Georgian Mkhedruli) : GE
7240             xn--node
7241              
7242             // xn--qxam ("el", Greek) : GR
7243             // Hellenic Ministry of Infrastructure, Transport, and Networks
7244             xn--qxam
7245              
7246             // xn--j6w193g ("Hong Kong", Chinese) : HK
7247             // https://www.hkirc.hk
7248             // Submitted by registry
7249             // https://www.hkirc.hk/content.jsp?id=30#!/34
7250             xn--j6w193g
7251             xn--55qx5d.xn--j6w193g
7252             xn--wcvs22d.xn--j6w193g
7253             xn--mxtq1m.xn--j6w193g
7254             xn--gmqw5a.xn--j6w193g
7255             xn--od0alg.xn--j6w193g
7256             xn--uc0atv.xn--j6w193g
7257              
7258             // xn--2scrj9c ("Bharat", Kannada) : IN
7259             // India
7260             xn--2scrj9c
7261              
7262             // xn--3hcrj9c ("Bharat", Oriya) : IN
7263             // India
7264             xn--3hcrj9c
7265              
7266             // xn--45br5cyl ("Bharatam", Assamese) : IN
7267             // India
7268             xn--45br5cyl
7269              
7270             // xn--h2breg3eve ("Bharatam", Sanskrit) : IN
7271             // India
7272             xn--h2breg3eve
7273              
7274             // xn--h2brj9c8c ("Bharot", Santali) : IN
7275             // India
7276             xn--h2brj9c8c
7277              
7278             // xn--mgbgu82a ("Bharat", Sindhi) : IN
7279             // India
7280             xn--mgbgu82a
7281              
7282             // xn--rvc1e0am3e ("Bharatam", Malayalam) : IN
7283             // India
7284             xn--rvc1e0am3e
7285              
7286             // xn--h2brj9c ("Bharat", Devanagari) : IN
7287             // India
7288             xn--h2brj9c
7289              
7290             // xn--mgbbh1a ("Bharat", Kashmiri) : IN
7291             // India
7292             xn--mgbbh1a
7293              
7294             // xn--mgbbh1a71e ("Bharat", Arabic) : IN
7295             // India
7296             xn--mgbbh1a71e
7297              
7298             // xn--fpcrj9c3d ("Bharat", Telugu) : IN
7299             // India
7300             xn--fpcrj9c3d
7301              
7302             // xn--gecrj9c ("Bharat", Gujarati) : IN
7303             // India
7304             xn--gecrj9c
7305              
7306             // xn--s9brj9c ("Bharat", Gurmukhi) : IN
7307             // India
7308             xn--s9brj9c
7309              
7310             // xn--45brj9c ("Bharat", Bengali) : IN
7311             // India
7312             xn--45brj9c
7313              
7314             // xn--xkc2dl3a5ee0h ("India", Tamil) : IN
7315             // India
7316             xn--xkc2dl3a5ee0h
7317              
7318             // xn--mgba3a4f16a ("Iran", Persian) : IR
7319             xn--mgba3a4f16a
7320              
7321             // xn--mgba3a4fra ("Iran", Arabic) : IR
7322             xn--mgba3a4fra
7323              
7324             // xn--mgbtx2b ("Iraq", Arabic) : IQ
7325             // Communications and Media Commission
7326             xn--mgbtx2b
7327              
7328             // xn--mgbayh7gpa ("al-Ordon", Arabic) : JO
7329             // National Information Technology Center (NITC)
7330             // Royal Scientific Society, Al-Jubeiha
7331             xn--mgbayh7gpa
7332              
7333             // xn--3e0b707e ("Republic of Korea", Hangul) : KR
7334             xn--3e0b707e
7335              
7336             // xn--80ao21a ("Kaz", Kazakh) : KZ
7337             xn--80ao21a
7338              
7339             // xn--q7ce6a ("Lao", Lao) : LA
7340             xn--q7ce6a
7341              
7342             // xn--fzc2c9e2c ("Lanka", Sinhalese-Sinhala) : LK
7343             // https://nic.lk
7344             xn--fzc2c9e2c
7345              
7346             // xn--xkc2al3hye2a ("Ilangai", Tamil) : LK
7347             // https://nic.lk
7348             xn--xkc2al3hye2a
7349              
7350             // xn--mgbc0a9azcg ("Morocco/al-Maghrib", Arabic) : MA
7351             xn--mgbc0a9azcg
7352              
7353             // xn--d1alf ("mkd", Macedonian) : MK
7354             // MARnet
7355             xn--d1alf
7356              
7357             // xn--l1acc ("mon", Mongolian) : MN
7358             xn--l1acc
7359              
7360             // xn--mix891f ("Macao", Chinese, Traditional) : MO
7361             // MONIC / HNET Asia (Registry Operator for .mo)
7362             xn--mix891f
7363              
7364             // xn--mix082f ("Macao", Chinese, Simplified) : MO
7365             xn--mix082f
7366              
7367             // xn--mgbx4cd0ab ("Malaysia", Malay) : MY
7368             xn--mgbx4cd0ab
7369              
7370             // xn--mgb9awbf ("Oman", Arabic) : OM
7371             xn--mgb9awbf
7372              
7373             // xn--mgbai9azgqp6j ("Pakistan", Urdu/Arabic) : PK
7374             xn--mgbai9azgqp6j
7375              
7376             // xn--mgbai9a5eva00b ("Pakistan", Urdu/Arabic, variant) : PK
7377             xn--mgbai9a5eva00b
7378              
7379             // xn--ygbi2ammx ("Falasteen", Arabic) : PS
7380             // The Palestinian National Internet Naming Authority (PNINA)
7381             // http://www.pnina.ps
7382             xn--ygbi2ammx
7383              
7384             // xn--90a3ac ("srb", Cyrillic) : RS
7385             // https://www.rnids.rs/en/domains/national-domains
7386             xn--90a3ac
7387             xn--o1ac.xn--90a3ac
7388             xn--c1avg.xn--90a3ac
7389             xn--90azh.xn--90a3ac
7390             xn--d1at.xn--90a3ac
7391             xn--o1ach.xn--90a3ac
7392             xn--80au.xn--90a3ac
7393              
7394             // xn--p1ai ("rf", Russian-Cyrillic) : RU
7395             // https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
7396             // Submitted by George Georgievsky
7397             xn--p1ai
7398              
7399             // xn--wgbl6a ("Qatar", Arabic) : QA
7400             // http://www.ict.gov.qa/
7401             xn--wgbl6a
7402              
7403             // xn--mgberp4a5d4ar ("AlSaudiah", Arabic) : SA
7404             // http://www.nic.net.sa/
7405             xn--mgberp4a5d4ar
7406              
7407             // xn--mgberp4a5d4a87g ("AlSaudiah", Arabic, variant) : SA
7408             xn--mgberp4a5d4a87g
7409              
7410             // xn--mgbqly7c0a67fbc ("AlSaudiah", Arabic, variant) : SA
7411             xn--mgbqly7c0a67fbc
7412              
7413             // xn--mgbqly7cvafr ("AlSaudiah", Arabic, variant) : SA
7414             xn--mgbqly7cvafr
7415              
7416             // xn--mgbpl2fh ("sudan", Arabic) : SD
7417             // Operated by .sd registry
7418             xn--mgbpl2fh
7419              
7420             // xn--yfro4i67o Singapore ("Singapore", Chinese) : SG
7421             xn--yfro4i67o
7422              
7423             // xn--clchc0ea0b2g2a9gcd ("Singapore", Tamil) : SG
7424             xn--clchc0ea0b2g2a9gcd
7425              
7426             // xn--ogbpf8fl ("Syria", Arabic) : SY
7427             xn--ogbpf8fl
7428              
7429             // xn--mgbtf8fl ("Syria", Arabic, variant) : SY
7430             xn--mgbtf8fl
7431              
7432             // xn--o3cw4h ("Thai", Thai) : TH
7433             // http://www.thnic.co.th
7434             xn--o3cw4h
7435             xn--12c1fe0br.xn--o3cw4h
7436             xn--12co0c3b4eva.xn--o3cw4h
7437             xn--h3cuzk1di.xn--o3cw4h
7438             xn--o3cyx2a.xn--o3cw4h
7439             xn--m3ch0j3a.xn--o3cw4h
7440             xn--12cfi8ixb8l.xn--o3cw4h
7441              
7442             // xn--pgbs0dh ("Tunisia", Arabic) : TN
7443             // http://nic.tn
7444             xn--pgbs0dh
7445              
7446             // xn--kpry57d ("Taiwan", Chinese, Traditional) : TW
7447             // http://www.twnic.net/english/dn/dn_07a.htm
7448             xn--kpry57d
7449              
7450             // xn--kprw13d ("Taiwan", Chinese, Simplified) : TW
7451             // http://www.twnic.net/english/dn/dn_07a.htm
7452             xn--kprw13d
7453              
7454             // xn--nnx388a ("Taiwan", Chinese, variant) : TW
7455             xn--nnx388a
7456              
7457             // xn--j1amh ("ukr", Cyrillic) : UA
7458             xn--j1amh
7459              
7460             // xn--mgb2ddes ("AlYemen", Arabic) : YE
7461             xn--mgb2ddes
7462              
7463             // xxx : http://icmregistry.com
7464             xxx
7465              
7466             // ye : http://www.y.net.ye/services/domain_name.htm
7467             ye
7468             com.ye
7469             edu.ye
7470             gov.ye
7471             net.ye
7472             mil.ye
7473             org.ye
7474              
7475             // za : https://www.zadna.org.za/content/page/domain-information/
7476             ac.za
7477             agric.za
7478             alt.za
7479             co.za
7480             edu.za
7481             gov.za
7482             grondar.za
7483             law.za
7484             mil.za
7485             net.za
7486             ngo.za
7487             nic.za
7488             nis.za
7489             nom.za
7490             org.za
7491             school.za
7492             tm.za
7493             web.za
7494              
7495             // zm : https://zicta.zm/
7496             // Submitted by registry
7497             zm
7498             ac.zm
7499             biz.zm
7500             co.zm
7501             com.zm
7502             edu.zm
7503             gov.zm
7504             info.zm
7505             mil.zm
7506             net.zm
7507             org.zm
7508             sch.zm
7509              
7510             // zw : https://www.potraz.gov.zw/
7511             // Confirmed by registry 2017-01-25
7512             zw
7513             ac.zw
7514             co.zw
7515             gov.zw
7516             mil.zw
7517             org.zw
7518              
7519              
7520             // newGTLDs
7521              
7522             // List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2022-11-02T15:17:39Z
7523             // This list is auto-generated, don't edit it manually.
7524             // aaa : 2015-02-26 American Automobile Association, Inc.
7525             aaa
7526              
7527             // aarp : 2015-05-21 AARP
7528             aarp
7529              
7530             // abarth : 2015-07-30 Fiat Chrysler Automobiles N.V.
7531             abarth
7532              
7533             // abb : 2014-10-24 ABB Ltd
7534             abb
7535              
7536             // abbott : 2014-07-24 Abbott Laboratories, Inc.
7537             abbott
7538              
7539             // abbvie : 2015-07-30 AbbVie Inc.
7540             abbvie
7541              
7542             // abc : 2015-07-30 Disney Enterprises, Inc.
7543             abc
7544              
7545             // able : 2015-06-25 Able Inc.
7546             able
7547              
7548             // abogado : 2014-04-24 Registry Services, LLC
7549             abogado
7550              
7551             // abudhabi : 2015-07-30 Abu Dhabi Systems and Information Centre
7552             abudhabi
7553              
7554             // academy : 2013-11-07 Binky Moon, LLC
7555             academy
7556              
7557             // accenture : 2014-08-15 Accenture plc
7558             accenture
7559              
7560             // accountant : 2014-11-20 dot Accountant Limited
7561             accountant
7562              
7563             // accountants : 2014-03-20 Binky Moon, LLC
7564             accountants
7565              
7566             // aco : 2015-01-08 ACO Severin Ahlmann GmbH & Co. KG
7567             aco
7568              
7569             // actor : 2013-12-12 Dog Beach, LLC
7570             actor
7571              
7572             // adac : 2015-07-16 Allgemeiner Deutscher Automobil-Club e.V. (ADAC)
7573             adac
7574              
7575             // ads : 2014-12-04 Charleston Road Registry Inc.
7576             ads
7577              
7578             // adult : 2014-10-16 ICM Registry AD LLC
7579             adult
7580              
7581             // aeg : 2015-03-19 Aktiebolaget Electrolux
7582             aeg
7583              
7584             // aetna : 2015-05-21 Aetna Life Insurance Company
7585             aetna
7586              
7587             // afl : 2014-10-02 Australian Football League
7588             afl
7589              
7590             // africa : 2014-03-24 ZA Central Registry NPC trading as Registry.Africa
7591             africa
7592              
7593             // agakhan : 2015-04-23 Fondation Aga Khan (Aga Khan Foundation)
7594             agakhan
7595              
7596             // agency : 2013-11-14 Binky Moon, LLC
7597             agency
7598              
7599             // aig : 2014-12-18 American International Group, Inc.
7600             aig
7601              
7602             // airbus : 2015-07-30 Airbus S.A.S.
7603             airbus
7604              
7605             // airforce : 2014-03-06 Dog Beach, LLC
7606             airforce
7607              
7608             // airtel : 2014-10-24 Bharti Airtel Limited
7609             airtel
7610              
7611             // akdn : 2015-04-23 Fondation Aga Khan (Aga Khan Foundation)
7612             akdn
7613              
7614             // alfaromeo : 2015-07-31 Fiat Chrysler Automobiles N.V.
7615             alfaromeo
7616              
7617             // alibaba : 2015-01-15 Alibaba Group Holding Limited
7618             alibaba
7619              
7620             // alipay : 2015-01-15 Alibaba Group Holding Limited
7621             alipay
7622              
7623             // allfinanz : 2014-07-03 Allfinanz Deutsche Vermögensberatung Aktiengesellschaft
7624             allfinanz
7625              
7626             // allstate : 2015-07-31 Allstate Fire and Casualty Insurance Company
7627             allstate
7628              
7629             // ally : 2015-06-18 Ally Financial Inc.
7630             ally
7631              
7632             // alsace : 2014-07-02 Region Grand Est
7633             alsace
7634              
7635             // alstom : 2015-07-30 ALSTOM
7636             alstom
7637              
7638             // amazon : 2019-12-19 Amazon Registry Services, Inc.
7639             amazon
7640              
7641             // americanexpress : 2015-07-31 American Express Travel Related Services Company, Inc.
7642             americanexpress
7643              
7644             // americanfamily : 2015-07-23 AmFam, Inc.
7645             americanfamily
7646              
7647             // amex : 2015-07-31 American Express Travel Related Services Company, Inc.
7648             amex
7649              
7650             // amfam : 2015-07-23 AmFam, Inc.
7651             amfam
7652              
7653             // amica : 2015-05-28 Amica Mutual Insurance Company
7654             amica
7655              
7656             // amsterdam : 2014-07-24 Gemeente Amsterdam
7657             amsterdam
7658              
7659             // analytics : 2014-12-18 Campus IP LLC
7660             analytics
7661              
7662             // android : 2014-08-07 Charleston Road Registry Inc.
7663             android
7664              
7665             // anquan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
7666             anquan
7667              
7668             // anz : 2015-07-31 Australia and New Zealand Banking Group Limited
7669             anz
7670              
7671             // aol : 2015-09-17 Oath Inc.
7672             aol
7673              
7674             // apartments : 2014-12-11 Binky Moon, LLC
7675             apartments
7676              
7677             // app : 2015-05-14 Charleston Road Registry Inc.
7678             app
7679              
7680             // apple : 2015-05-14 Apple Inc.
7681             apple
7682              
7683             // aquarelle : 2014-07-24 Aquarelle.com
7684             aquarelle
7685              
7686             // arab : 2015-11-12 League of Arab States
7687             arab
7688              
7689             // aramco : 2014-11-20 Aramco Services Company
7690             aramco
7691              
7692             // archi : 2014-02-06 Identity Digital Limited
7693             archi
7694              
7695             // army : 2014-03-06 Dog Beach, LLC
7696             army
7697              
7698             // art : 2016-03-24 UK Creative Ideas Limited
7699             art
7700              
7701             // arte : 2014-12-11 Association Relative à la Télévision Européenne G.E.I.E.
7702             arte
7703              
7704             // asda : 2015-07-31 Wal-Mart Stores, Inc.
7705             asda
7706              
7707             // associates : 2014-03-06 Binky Moon, LLC
7708             associates
7709              
7710             // athleta : 2015-07-30 The Gap, Inc.
7711             athleta
7712              
7713             // attorney : 2014-03-20 Dog Beach, LLC
7714             attorney
7715              
7716             // auction : 2014-03-20 Dog Beach, LLC
7717             auction
7718              
7719             // audi : 2015-05-21 AUDI Aktiengesellschaft
7720             audi
7721              
7722             // audible : 2015-06-25 Amazon Registry Services, Inc.
7723             audible
7724              
7725             // audio : 2014-03-20 XYZ.COM LLC
7726             audio
7727              
7728             // auspost : 2015-08-13 Australian Postal Corporation
7729             auspost
7730              
7731             // author : 2014-12-18 Amazon Registry Services, Inc.
7732             author
7733              
7734             // auto : 2014-11-13 XYZ.COM LLC
7735             auto
7736              
7737             // autos : 2014-01-09 XYZ.COM LLC
7738             autos
7739              
7740             // avianca : 2015-01-08 Avianca Inc.
7741             avianca
7742              
7743             // aws : 2015-06-25 AWS Registry LLC
7744             aws
7745              
7746             // axa : 2013-12-19 AXA Group Operations SAS
7747             axa
7748              
7749             // azure : 2014-12-18 Microsoft Corporation
7750             azure
7751              
7752             // baby : 2015-04-09 XYZ.COM LLC
7753             baby
7754              
7755             // baidu : 2015-01-08 Baidu, Inc.
7756             baidu
7757              
7758             // banamex : 2015-07-30 Citigroup Inc.
7759             banamex
7760              
7761             // bananarepublic : 2015-07-31 The Gap, Inc.
7762             bananarepublic
7763              
7764             // band : 2014-06-12 Dog Beach, LLC
7765             band
7766              
7767             // bank : 2014-09-25 fTLD Registry Services LLC
7768             bank
7769              
7770             // bar : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
7771             bar
7772              
7773             // barcelona : 2014-07-24 Municipi de Barcelona
7774             barcelona
7775              
7776             // barclaycard : 2014-11-20 Barclays Bank PLC
7777             barclaycard
7778              
7779             // barclays : 2014-11-20 Barclays Bank PLC
7780             barclays
7781              
7782             // barefoot : 2015-06-11 Gallo Vineyards, Inc.
7783             barefoot
7784              
7785             // bargains : 2013-11-14 Binky Moon, LLC
7786             bargains
7787              
7788             // baseball : 2015-10-29 MLB Advanced Media DH, LLC
7789             baseball
7790              
7791             // basketball : 2015-08-20 Fédération Internationale de Basketball (FIBA)
7792             basketball
7793              
7794             // bauhaus : 2014-04-17 Werkhaus GmbH
7795             bauhaus
7796              
7797             // bayern : 2014-01-23 Bayern Connect GmbH
7798             bayern
7799              
7800             // bbc : 2014-12-18 British Broadcasting Corporation
7801             bbc
7802              
7803             // bbt : 2015-07-23 BB&T Corporation
7804             bbt
7805              
7806             // bbva : 2014-10-02 BANCO BILBAO VIZCAYA ARGENTARIA, S.A.
7807             bbva
7808              
7809             // bcg : 2015-04-02 The Boston Consulting Group, Inc.
7810             bcg
7811              
7812             // bcn : 2014-07-24 Municipi de Barcelona
7813             bcn
7814              
7815             // beats : 2015-05-14 Beats Electronics, LLC
7816             beats
7817              
7818             // beauty : 2015-12-03 XYZ.COM LLC
7819             beauty
7820              
7821             // beer : 2014-01-09 Registry Services, LLC
7822             beer
7823              
7824             // bentley : 2014-12-18 Bentley Motors Limited
7825             bentley
7826              
7827             // berlin : 2013-10-31 dotBERLIN GmbH & Co. KG
7828             berlin
7829              
7830             // best : 2013-12-19 BestTLD Pty Ltd
7831             best
7832              
7833             // bestbuy : 2015-07-31 BBY Solutions, Inc.
7834             bestbuy
7835              
7836             // bet : 2015-05-07 Identity Digital Limited
7837             bet
7838              
7839             // bharti : 2014-01-09 Bharti Enterprises (Holding) Private Limited
7840             bharti
7841              
7842             // bible : 2014-06-19 American Bible Society
7843             bible
7844              
7845             // bid : 2013-12-19 dot Bid Limited
7846             bid
7847              
7848             // bike : 2013-08-27 Binky Moon, LLC
7849             bike
7850              
7851             // bing : 2014-12-18 Microsoft Corporation
7852             bing
7853              
7854             // bingo : 2014-12-04 Binky Moon, LLC
7855             bingo
7856              
7857             // bio : 2014-03-06 Identity Digital Limited
7858             bio
7859              
7860             // black : 2014-01-16 Identity Digital Limited
7861             black
7862              
7863             // blackfriday : 2014-01-16 Registry Services, LLC
7864             blackfriday
7865              
7866             // blockbuster : 2015-07-30 Dish DBS Corporation
7867             blockbuster
7868              
7869             // blog : 2015-05-14 Knock Knock WHOIS There, LLC
7870             blog
7871              
7872             // bloomberg : 2014-07-17 Bloomberg IP Holdings LLC
7873             bloomberg
7874              
7875             // blue : 2013-11-07 Identity Digital Limited
7876             blue
7877              
7878             // bms : 2014-10-30 Bristol-Myers Squibb Company
7879             bms
7880              
7881             // bmw : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
7882             bmw
7883              
7884             // bnpparibas : 2014-05-29 BNP Paribas
7885             bnpparibas
7886              
7887             // boats : 2014-12-04 XYZ.COM LLC
7888             boats
7889              
7890             // boehringer : 2015-07-09 Boehringer Ingelheim International GmbH
7891             boehringer
7892              
7893             // bofa : 2015-07-31 Bank of America Corporation
7894             bofa
7895              
7896             // bom : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
7897             bom
7898              
7899             // bond : 2014-06-05 ShortDot SA
7900             bond
7901              
7902             // boo : 2014-01-30 Charleston Road Registry Inc.
7903             boo
7904              
7905             // book : 2015-08-27 Amazon Registry Services, Inc.
7906             book
7907              
7908             // booking : 2015-07-16 Booking.com B.V.
7909             booking
7910              
7911             // bosch : 2015-06-18 Robert Bosch GMBH
7912             bosch
7913              
7914             // bostik : 2015-05-28 Bostik SA
7915             bostik
7916              
7917             // boston : 2015-12-10 Registry Services, LLC
7918             boston
7919              
7920             // bot : 2014-12-18 Amazon Registry Services, Inc.
7921             bot
7922              
7923             // boutique : 2013-11-14 Binky Moon, LLC
7924             boutique
7925              
7926             // box : 2015-11-12 Intercap Registry Inc.
7927             box
7928              
7929             // bradesco : 2014-12-18 Banco Bradesco S.A.
7930             bradesco
7931              
7932             // bridgestone : 2014-12-18 Bridgestone Corporation
7933             bridgestone
7934              
7935             // broadway : 2014-12-22 Celebrate Broadway, Inc.
7936             broadway
7937              
7938             // broker : 2014-12-11 Dog Beach, LLC
7939             broker
7940              
7941             // brother : 2015-01-29 Brother Industries, Ltd.
7942             brother
7943              
7944             // brussels : 2014-02-06 DNS.be vzw
7945             brussels
7946              
7947             // build : 2013-11-07 Plan Bee LLC
7948             build
7949              
7950             // builders : 2013-11-07 Binky Moon, LLC
7951             builders
7952              
7953             // business : 2013-11-07 Binky Moon, LLC
7954             business
7955              
7956             // buy : 2014-12-18 Amazon Registry Services, Inc.
7957             buy
7958              
7959             // buzz : 2013-10-02 DOTSTRATEGY CO.
7960             buzz
7961              
7962             // bzh : 2014-02-27 Association www.bzh
7963             bzh
7964              
7965             // cab : 2013-10-24 Binky Moon, LLC
7966             cab
7967              
7968             // cafe : 2015-02-11 Binky Moon, LLC
7969             cafe
7970              
7971             // cal : 2014-07-24 Charleston Road Registry Inc.
7972             cal
7973              
7974             // call : 2014-12-18 Amazon Registry Services, Inc.
7975             call
7976              
7977             // calvinklein : 2015-07-30 PVH gTLD Holdings LLC
7978             calvinklein
7979              
7980             // cam : 2016-04-21 Cam Connecting SARL
7981             cam
7982              
7983             // camera : 2013-08-27 Binky Moon, LLC
7984             camera
7985              
7986             // camp : 2013-11-07 Binky Moon, LLC
7987             camp
7988              
7989             // canon : 2014-09-12 Canon Inc.
7990             canon
7991              
7992             // capetown : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
7993             capetown
7994              
7995             // capital : 2014-03-06 Binky Moon, LLC
7996             capital
7997              
7998             // capitalone : 2015-08-06 Capital One Financial Corporation
7999             capitalone
8000              
8001             // car : 2015-01-22 XYZ.COM LLC
8002             car
8003              
8004             // caravan : 2013-12-12 Caravan International, Inc.
8005             caravan
8006              
8007             // cards : 2013-12-05 Binky Moon, LLC
8008             cards
8009              
8010             // care : 2014-03-06 Binky Moon, LLC
8011             care
8012              
8013             // career : 2013-10-09 dotCareer LLC
8014             career
8015              
8016             // careers : 2013-10-02 Binky Moon, LLC
8017             careers
8018              
8019             // cars : 2014-11-13 XYZ.COM LLC
8020             cars
8021              
8022             // casa : 2013-11-21 Registry Services, LLC
8023             casa
8024              
8025             // case : 2015-09-03 Digity, LLC
8026             case
8027              
8028             // cash : 2014-03-06 Binky Moon, LLC
8029             cash
8030              
8031             // casino : 2014-12-18 Binky Moon, LLC
8032             casino
8033              
8034             // catering : 2013-12-05 Binky Moon, LLC
8035             catering
8036              
8037             // catholic : 2015-10-21 Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)
8038             catholic
8039              
8040             // cba : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA
8041             cba
8042              
8043             // cbn : 2014-08-22 The Christian Broadcasting Network, Inc.
8044             cbn
8045              
8046             // cbre : 2015-07-02 CBRE, Inc.
8047             cbre
8048              
8049             // cbs : 2015-08-06 CBS Domains Inc.
8050             cbs
8051              
8052             // center : 2013-11-07 Binky Moon, LLC
8053             center
8054              
8055             // ceo : 2013-11-07 CEOTLD Pty Ltd
8056             ceo
8057              
8058             // cern : 2014-06-05 European Organization for Nuclear Research ("CERN")
8059             cern
8060              
8061             // cfa : 2014-08-28 CFA Institute
8062             cfa
8063              
8064             // cfd : 2014-12-11 ShortDot SA
8065             cfd
8066              
8067             // chanel : 2015-04-09 Chanel International B.V.
8068             chanel
8069              
8070             // channel : 2014-05-08 Charleston Road Registry Inc.
8071             channel
8072              
8073             // charity : 2018-04-11 Public Interest Registry
8074             charity
8075              
8076             // chase : 2015-04-30 JPMorgan Chase Bank, National Association
8077             chase
8078              
8079             // chat : 2014-12-04 Binky Moon, LLC
8080             chat
8081              
8082             // cheap : 2013-11-14 Binky Moon, LLC
8083             cheap
8084              
8085             // chintai : 2015-06-11 CHINTAI Corporation
8086             chintai
8087              
8088             // christmas : 2013-11-21 XYZ.COM LLC
8089             christmas
8090              
8091             // chrome : 2014-07-24 Charleston Road Registry Inc.
8092             chrome
8093              
8094             // church : 2014-02-06 Binky Moon, LLC
8095             church
8096              
8097             // cipriani : 2015-02-19 Hotel Cipriani Srl
8098             cipriani
8099              
8100             // circle : 2014-12-18 Amazon Registry Services, Inc.
8101             circle
8102              
8103             // cisco : 2014-12-22 Cisco Technology, Inc.
8104             cisco
8105              
8106             // citadel : 2015-07-23 Citadel Domain LLC
8107             citadel
8108              
8109             // citi : 2015-07-30 Citigroup Inc.
8110             citi
8111              
8112             // citic : 2014-01-09 CITIC Group Corporation
8113             citic
8114              
8115             // city : 2014-05-29 Binky Moon, LLC
8116             city
8117              
8118             // cityeats : 2014-12-11 Lifestyle Domain Holdings, Inc.
8119             cityeats
8120              
8121             // claims : 2014-03-20 Binky Moon, LLC
8122             claims
8123              
8124             // cleaning : 2013-12-05 Binky Moon, LLC
8125             cleaning
8126              
8127             // click : 2014-06-05 Internet Naming Company LLC
8128             click
8129              
8130             // clinic : 2014-03-20 Binky Moon, LLC
8131             clinic
8132              
8133             // clinique : 2015-10-01 The Estée Lauder Companies Inc.
8134             clinique
8135              
8136             // clothing : 2013-08-27 Binky Moon, LLC
8137             clothing
8138              
8139             // cloud : 2015-04-16 Aruba PEC S.p.A.
8140             cloud
8141              
8142             // club : 2013-11-08 Registry Services, LLC
8143             club
8144              
8145             // clubmed : 2015-06-25 Club Méditerranée S.A.
8146             clubmed
8147              
8148             // coach : 2014-10-09 Binky Moon, LLC
8149             coach
8150              
8151             // codes : 2013-10-31 Binky Moon, LLC
8152             codes
8153              
8154             // coffee : 2013-10-17 Binky Moon, LLC
8155             coffee
8156              
8157             // college : 2014-01-16 XYZ.COM LLC
8158             college
8159              
8160             // cologne : 2014-02-05 dotKoeln GmbH
8161             cologne
8162              
8163             // comcast : 2015-07-23 Comcast IP Holdings I, LLC
8164             comcast
8165              
8166             // commbank : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA
8167             commbank
8168              
8169             // community : 2013-12-05 Binky Moon, LLC
8170             community
8171              
8172             // company : 2013-11-07 Binky Moon, LLC
8173             company
8174              
8175             // compare : 2015-10-08 Registry Services, LLC
8176             compare
8177              
8178             // computer : 2013-10-24 Binky Moon, LLC
8179             computer
8180              
8181             // comsec : 2015-01-08 VeriSign, Inc.
8182             comsec
8183              
8184             // condos : 2013-12-05 Binky Moon, LLC
8185             condos
8186              
8187             // construction : 2013-09-16 Binky Moon, LLC
8188             construction
8189              
8190             // consulting : 2013-12-05 Dog Beach, LLC
8191             consulting
8192              
8193             // contact : 2015-01-08 Dog Beach, LLC
8194             contact
8195              
8196             // contractors : 2013-09-10 Binky Moon, LLC
8197             contractors
8198              
8199             // cooking : 2013-11-21 Registry Services, LLC
8200             cooking
8201              
8202             // cookingchannel : 2015-07-02 Lifestyle Domain Holdings, Inc.
8203             cookingchannel
8204              
8205             // cool : 2013-11-14 Binky Moon, LLC
8206             cool
8207              
8208             // corsica : 2014-09-25 Collectivité de Corse
8209             corsica
8210              
8211             // country : 2013-12-19 Internet Naming Company LLC
8212             country
8213              
8214             // coupon : 2015-02-26 Amazon Registry Services, Inc.
8215             coupon
8216              
8217             // coupons : 2015-03-26 Binky Moon, LLC
8218             coupons
8219              
8220             // courses : 2014-12-04 Registry Services, LLC
8221             courses
8222              
8223             // cpa : 2019-06-10 American Institute of Certified Public Accountants
8224             cpa
8225              
8226             // credit : 2014-03-20 Binky Moon, LLC
8227             credit
8228              
8229             // creditcard : 2014-03-20 Binky Moon, LLC
8230             creditcard
8231              
8232             // creditunion : 2015-01-22 DotCooperation LLC
8233             creditunion
8234              
8235             // cricket : 2014-10-09 dot Cricket Limited
8236             cricket
8237              
8238             // crown : 2014-10-24 Crown Equipment Corporation
8239             crown
8240              
8241             // crs : 2014-04-03 Federated Co-operatives Limited
8242             crs
8243              
8244             // cruise : 2015-12-10 Viking River Cruises (Bermuda) Ltd.
8245             cruise
8246              
8247             // cruises : 2013-12-05 Binky Moon, LLC
8248             cruises
8249              
8250             // cuisinella : 2014-04-03 SCHMIDT GROUPE S.A.S.
8251             cuisinella
8252              
8253             // cymru : 2014-05-08 Nominet UK
8254             cymru
8255              
8256             // cyou : 2015-01-22 ShortDot SA
8257             cyou
8258              
8259             // dabur : 2014-02-06 Dabur India Limited
8260             dabur
8261              
8262             // dad : 2014-01-23 Charleston Road Registry Inc.
8263             dad
8264              
8265             // dance : 2013-10-24 Dog Beach, LLC
8266             dance
8267              
8268             // data : 2016-06-02 Dish DBS Corporation
8269             data
8270              
8271             // date : 2014-11-20 dot Date Limited
8272             date
8273              
8274             // dating : 2013-12-05 Binky Moon, LLC
8275             dating
8276              
8277             // datsun : 2014-03-27 NISSAN MOTOR CO., LTD.
8278             datsun
8279              
8280             // day : 2014-01-30 Charleston Road Registry Inc.
8281             day
8282              
8283             // dclk : 2014-11-20 Charleston Road Registry Inc.
8284             dclk
8285              
8286             // dds : 2015-05-07 Registry Services, LLC
8287             dds
8288              
8289             // deal : 2015-06-25 Amazon Registry Services, Inc.
8290             deal
8291              
8292             // dealer : 2014-12-22 Intercap Registry Inc.
8293             dealer
8294              
8295             // deals : 2014-05-22 Binky Moon, LLC
8296             deals
8297              
8298             // degree : 2014-03-06 Dog Beach, LLC
8299             degree
8300              
8301             // delivery : 2014-09-11 Binky Moon, LLC
8302             delivery
8303              
8304             // dell : 2014-10-24 Dell Inc.
8305             dell
8306              
8307             // deloitte : 2015-07-31 Deloitte Touche Tohmatsu
8308             deloitte
8309              
8310             // delta : 2015-02-19 Delta Air Lines, Inc.
8311             delta
8312              
8313             // democrat : 2013-10-24 Dog Beach, LLC
8314             democrat
8315              
8316             // dental : 2014-03-20 Binky Moon, LLC
8317             dental
8318              
8319             // dentist : 2014-03-20 Dog Beach, LLC
8320             dentist
8321              
8322             // desi : 2013-11-14 Desi Networks LLC
8323             desi
8324              
8325             // design : 2014-11-07 Registry Services, LLC
8326             design
8327              
8328             // dev : 2014-10-16 Charleston Road Registry Inc.
8329             dev
8330              
8331             // dhl : 2015-07-23 Deutsche Post AG
8332             dhl
8333              
8334             // diamonds : 2013-09-22 Binky Moon, LLC
8335             diamonds
8336              
8337             // diet : 2014-06-26 XYZ.COM LLC
8338             diet
8339              
8340             // digital : 2014-03-06 Binky Moon, LLC
8341             digital
8342              
8343             // direct : 2014-04-10 Binky Moon, LLC
8344             direct
8345              
8346             // directory : 2013-09-20 Binky Moon, LLC
8347             directory
8348              
8349             // discount : 2014-03-06 Binky Moon, LLC
8350             discount
8351              
8352             // discover : 2015-07-23 Discover Financial Services
8353             discover
8354              
8355             // dish : 2015-07-30 Dish DBS Corporation
8356             dish
8357              
8358             // diy : 2015-11-05 Lifestyle Domain Holdings, Inc.
8359             diy
8360              
8361             // dnp : 2013-12-13 Dai Nippon Printing Co., Ltd.
8362             dnp
8363              
8364             // docs : 2014-10-16 Charleston Road Registry Inc.
8365             docs
8366              
8367             // doctor : 2016-06-02 Binky Moon, LLC
8368             doctor
8369              
8370             // dog : 2014-12-04 Binky Moon, LLC
8371             dog
8372              
8373             // domains : 2013-10-17 Binky Moon, LLC
8374             domains
8375              
8376             // dot : 2015-05-21 Dish DBS Corporation
8377             dot
8378              
8379             // download : 2014-11-20 dot Support Limited
8380             download
8381              
8382             // drive : 2015-03-05 Charleston Road Registry Inc.
8383             drive
8384              
8385             // dtv : 2015-06-04 Dish DBS Corporation
8386             dtv
8387              
8388             // dubai : 2015-01-01 Dubai Smart Government Department
8389             dubai
8390              
8391             // dunlop : 2015-07-02 The Goodyear Tire & Rubber Company
8392             dunlop
8393              
8394             // dupont : 2015-06-25 DuPont Specialty Products USA, LLC
8395             dupont
8396              
8397             // durban : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
8398             durban
8399              
8400             // dvag : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
8401             dvag
8402              
8403             // dvr : 2016-05-26 DISH Technologies L.L.C.
8404             dvr
8405              
8406             // earth : 2014-12-04 Interlink Systems Innovation Institute K.K.
8407             earth
8408              
8409             // eat : 2014-01-23 Charleston Road Registry Inc.
8410             eat
8411              
8412             // eco : 2016-07-08 Big Room Inc.
8413             eco
8414              
8415             // edeka : 2014-12-18 EDEKA Verband kaufmännischer Genossenschaften e.V.
8416             edeka
8417              
8418             // education : 2013-11-07 Binky Moon, LLC
8419             education
8420              
8421             // email : 2013-10-31 Binky Moon, LLC
8422             email
8423              
8424             // emerck : 2014-04-03 Merck KGaA
8425             emerck
8426              
8427             // energy : 2014-09-11 Binky Moon, LLC
8428             energy
8429              
8430             // engineer : 2014-03-06 Dog Beach, LLC
8431             engineer
8432              
8433             // engineering : 2014-03-06 Binky Moon, LLC
8434             engineering
8435              
8436             // enterprises : 2013-09-20 Binky Moon, LLC
8437             enterprises
8438              
8439             // epson : 2014-12-04 Seiko Epson Corporation
8440             epson
8441              
8442             // equipment : 2013-08-27 Binky Moon, LLC
8443             equipment
8444              
8445             // ericsson : 2015-07-09 Telefonaktiebolaget L M Ericsson
8446             ericsson
8447              
8448             // erni : 2014-04-03 ERNI Group Holding AG
8449             erni
8450              
8451             // esq : 2014-05-08 Charleston Road Registry Inc.
8452             esq
8453              
8454             // estate : 2013-08-27 Binky Moon, LLC
8455             estate
8456              
8457             // etisalat : 2015-09-03 Emirates Telecommunications Corporation (trading as Etisalat)
8458             etisalat
8459              
8460             // eurovision : 2014-04-24 European Broadcasting Union (EBU)
8461             eurovision
8462              
8463             // eus : 2013-12-12 Puntueus Fundazioa
8464             eus
8465              
8466             // events : 2013-12-05 Binky Moon, LLC
8467             events
8468              
8469             // exchange : 2014-03-06 Binky Moon, LLC
8470             exchange
8471              
8472             // expert : 2013-11-21 Binky Moon, LLC
8473             expert
8474              
8475             // exposed : 2013-12-05 Binky Moon, LLC
8476             exposed
8477              
8478             // express : 2015-02-11 Binky Moon, LLC
8479             express
8480              
8481             // extraspace : 2015-05-14 Extra Space Storage LLC
8482             extraspace
8483              
8484             // fage : 2014-12-18 Fage International S.A.
8485             fage
8486              
8487             // fail : 2014-03-06 Binky Moon, LLC
8488             fail
8489              
8490             // fairwinds : 2014-11-13 FairWinds Partners, LLC
8491             fairwinds
8492              
8493             // faith : 2014-11-20 dot Faith Limited
8494             faith
8495              
8496             // family : 2015-04-02 Dog Beach, LLC
8497             family
8498              
8499             // fan : 2014-03-06 Dog Beach, LLC
8500             fan
8501              
8502             // fans : 2014-11-07 ZDNS International Limited
8503             fans
8504              
8505             // farm : 2013-11-07 Binky Moon, LLC
8506             farm
8507              
8508             // farmers : 2015-07-09 Farmers Insurance Exchange
8509             farmers
8510              
8511             // fashion : 2014-07-03 Registry Services, LLC
8512             fashion
8513              
8514             // fast : 2014-12-18 Amazon Registry Services, Inc.
8515             fast
8516              
8517             // fedex : 2015-08-06 Federal Express Corporation
8518             fedex
8519              
8520             // feedback : 2013-12-19 Top Level Spectrum, Inc.
8521             feedback
8522              
8523             // ferrari : 2015-07-31 Fiat Chrysler Automobiles N.V.
8524             ferrari
8525              
8526             // ferrero : 2014-12-18 Ferrero Trading Lux S.A.
8527             ferrero
8528              
8529             // fiat : 2015-07-31 Fiat Chrysler Automobiles N.V.
8530             fiat
8531              
8532             // fidelity : 2015-07-30 Fidelity Brokerage Services LLC
8533             fidelity
8534              
8535             // fido : 2015-08-06 Rogers Communications Canada Inc.
8536             fido
8537              
8538             // film : 2015-01-08 Motion Picture Domain Registry Pty Ltd
8539             film
8540              
8541             // final : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
8542             final
8543              
8544             // finance : 2014-03-20 Binky Moon, LLC
8545             finance
8546              
8547             // financial : 2014-03-06 Binky Moon, LLC
8548             financial
8549              
8550             // fire : 2015-06-25 Amazon Registry Services, Inc.
8551             fire
8552              
8553             // firestone : 2014-12-18 Bridgestone Licensing Services, Inc
8554             firestone
8555              
8556             // firmdale : 2014-03-27 Firmdale Holdings Limited
8557             firmdale
8558              
8559             // fish : 2013-12-12 Binky Moon, LLC
8560             fish
8561              
8562             // fishing : 2013-11-21 Registry Services, LLC
8563             fishing
8564              
8565             // fit : 2014-11-07 Registry Services, LLC
8566             fit
8567              
8568             // fitness : 2014-03-06 Binky Moon, LLC
8569             fitness
8570              
8571             // flickr : 2015-04-02 Flickr, Inc.
8572             flickr
8573              
8574             // flights : 2013-12-05 Binky Moon, LLC
8575             flights
8576              
8577             // flir : 2015-07-23 FLIR Systems, Inc.
8578             flir
8579              
8580             // florist : 2013-11-07 Binky Moon, LLC
8581             florist
8582              
8583             // flowers : 2014-10-09 XYZ.COM LLC
8584             flowers
8585              
8586             // fly : 2014-05-08 Charleston Road Registry Inc.
8587             fly
8588              
8589             // foo : 2014-01-23 Charleston Road Registry Inc.
8590             foo
8591              
8592             // food : 2016-04-21 Lifestyle Domain Holdings, Inc.
8593             food
8594              
8595             // foodnetwork : 2015-07-02 Lifestyle Domain Holdings, Inc.
8596             foodnetwork
8597              
8598             // football : 2014-12-18 Binky Moon, LLC
8599             football
8600              
8601             // ford : 2014-11-13 Ford Motor Company
8602             ford
8603              
8604             // forex : 2014-12-11 Dog Beach, LLC
8605             forex
8606              
8607             // forsale : 2014-05-22 Dog Beach, LLC
8608             forsale
8609              
8610             // forum : 2015-04-02 Fegistry, LLC
8611             forum
8612              
8613             // foundation : 2013-12-05 Public Interest Registry
8614             foundation
8615              
8616             // fox : 2015-09-11 FOX Registry, LLC
8617             fox
8618              
8619             // free : 2015-12-10 Amazon Registry Services, Inc.
8620             free
8621              
8622             // fresenius : 2015-07-30 Fresenius Immobilien-Verwaltungs-GmbH
8623             fresenius
8624              
8625             // frl : 2014-05-15 FRLregistry B.V.
8626             frl
8627              
8628             // frogans : 2013-12-19 OP3FT
8629             frogans
8630              
8631             // frontdoor : 2015-07-02 Lifestyle Domain Holdings, Inc.
8632             frontdoor
8633              
8634             // frontier : 2015-02-05 Frontier Communications Corporation
8635             frontier
8636              
8637             // ftr : 2015-07-16 Frontier Communications Corporation
8638             ftr
8639              
8640             // fujitsu : 2015-07-30 Fujitsu Limited
8641             fujitsu
8642              
8643             // fun : 2016-01-14 Radix FZC
8644             fun
8645              
8646             // fund : 2014-03-20 Binky Moon, LLC
8647             fund
8648              
8649             // furniture : 2014-03-20 Binky Moon, LLC
8650             furniture
8651              
8652             // futbol : 2013-09-20 Dog Beach, LLC
8653             futbol
8654              
8655             // fyi : 2015-04-02 Binky Moon, LLC
8656             fyi
8657              
8658             // gal : 2013-11-07 Asociación puntoGAL
8659             gal
8660              
8661             // gallery : 2013-09-13 Binky Moon, LLC
8662             gallery
8663              
8664             // gallo : 2015-06-11 Gallo Vineyards, Inc.
8665             gallo
8666              
8667             // gallup : 2015-02-19 Gallup, Inc.
8668             gallup
8669              
8670             // game : 2015-05-28 XYZ.COM LLC
8671             game
8672              
8673             // games : 2015-05-28 Dog Beach, LLC
8674             games
8675              
8676             // gap : 2015-07-31 The Gap, Inc.
8677             gap
8678              
8679             // garden : 2014-06-26 Registry Services, LLC
8680             garden
8681              
8682             // gay : 2019-05-23 Top Level Design, LLC
8683             gay
8684              
8685             // gbiz : 2014-07-17 Charleston Road Registry Inc.
8686             gbiz
8687              
8688             // gdn : 2014-07-31 Joint Stock Company "Navigation-information systems"
8689             gdn
8690              
8691             // gea : 2014-12-04 GEA Group Aktiengesellschaft
8692             gea
8693              
8694             // gent : 2014-01-23 Easyhost BV
8695             gent
8696              
8697             // genting : 2015-03-12 Resorts World Inc Pte. Ltd.
8698             genting
8699              
8700             // george : 2015-07-31 Wal-Mart Stores, Inc.
8701             george
8702              
8703             // ggee : 2014-01-09 GMO Internet, Inc.
8704             ggee
8705              
8706             // gift : 2013-10-17 DotGift, LLC
8707             gift
8708              
8709             // gifts : 2014-07-03 Binky Moon, LLC
8710             gifts
8711              
8712             // gives : 2014-03-06 Public Interest Registry
8713             gives
8714              
8715             // giving : 2014-11-13 Public Interest Registry
8716             giving
8717              
8718             // glass : 2013-11-07 Binky Moon, LLC
8719             glass
8720              
8721             // gle : 2014-07-24 Charleston Road Registry Inc.
8722             gle
8723              
8724             // global : 2014-04-17 Dot Global Domain Registry Limited
8725             global
8726              
8727             // globo : 2013-12-19 Globo Comunicação e Participações S.A
8728             globo
8729              
8730             // gmail : 2014-05-01 Charleston Road Registry Inc.
8731             gmail
8732              
8733             // gmbh : 2016-01-29 Binky Moon, LLC
8734             gmbh
8735              
8736             // gmo : 2014-01-09 GMO Internet, Inc.
8737             gmo
8738              
8739             // gmx : 2014-04-24 1&1 Mail & Media GmbH
8740             gmx
8741              
8742             // godaddy : 2015-07-23 Go Daddy East, LLC
8743             godaddy
8744              
8745             // gold : 2015-01-22 Binky Moon, LLC
8746             gold
8747              
8748             // goldpoint : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
8749             goldpoint
8750              
8751             // golf : 2014-12-18 Binky Moon, LLC
8752             golf
8753              
8754             // goo : 2014-12-18 NTT Resonant Inc.
8755             goo
8756              
8757             // goodyear : 2015-07-02 The Goodyear Tire & Rubber Company
8758             goodyear
8759              
8760             // goog : 2014-11-20 Charleston Road Registry Inc.
8761             goog
8762              
8763             // google : 2014-07-24 Charleston Road Registry Inc.
8764             google
8765              
8766             // gop : 2014-01-16 Republican State Leadership Committee, Inc.
8767             gop
8768              
8769             // got : 2014-12-18 Amazon Registry Services, Inc.
8770             got
8771              
8772             // grainger : 2015-05-07 Grainger Registry Services, LLC
8773             grainger
8774              
8775             // graphics : 2013-09-13 Binky Moon, LLC
8776             graphics
8777              
8778             // gratis : 2014-03-20 Binky Moon, LLC
8779             gratis
8780              
8781             // green : 2014-05-08 Identity Digital Limited
8782             green
8783              
8784             // gripe : 2014-03-06 Binky Moon, LLC
8785             gripe
8786              
8787             // grocery : 2016-06-16 Wal-Mart Stores, Inc.
8788             grocery
8789              
8790             // group : 2014-08-15 Binky Moon, LLC
8791             group
8792              
8793             // guardian : 2015-07-30 The Guardian Life Insurance Company of America
8794             guardian
8795              
8796             // gucci : 2014-11-13 Guccio Gucci S.p.a.
8797             gucci
8798              
8799             // guge : 2014-08-28 Charleston Road Registry Inc.
8800             guge
8801              
8802             // guide : 2013-09-13 Binky Moon, LLC
8803             guide
8804              
8805             // guitars : 2013-11-14 XYZ.COM LLC
8806             guitars
8807              
8808             // guru : 2013-08-27 Binky Moon, LLC
8809             guru
8810              
8811             // hair : 2015-12-03 XYZ.COM LLC
8812             hair
8813              
8814             // hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
8815             hamburg
8816              
8817             // hangout : 2014-11-13 Charleston Road Registry Inc.
8818             hangout
8819              
8820             // haus : 2013-12-05 Dog Beach, LLC
8821             haus
8822              
8823             // hbo : 2015-07-30 HBO Registry Services, Inc.
8824             hbo
8825              
8826             // hdfc : 2015-07-30 HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED
8827             hdfc
8828              
8829             // hdfcbank : 2015-02-12 HDFC Bank Limited
8830             hdfcbank
8831              
8832             // health : 2015-02-11 DotHealth, LLC
8833             health
8834              
8835             // healthcare : 2014-06-12 Binky Moon, LLC
8836             healthcare
8837              
8838             // help : 2014-06-26 Innovation service Limited
8839             help
8840              
8841             // helsinki : 2015-02-05 City of Helsinki
8842             helsinki
8843              
8844             // here : 2014-02-06 Charleston Road Registry Inc.
8845             here
8846              
8847             // hermes : 2014-07-10 HERMES INTERNATIONAL
8848             hermes
8849              
8850             // hgtv : 2015-07-02 Lifestyle Domain Holdings, Inc.
8851             hgtv
8852              
8853             // hiphop : 2014-03-06 Dot Hip Hop, LLC
8854             hiphop
8855              
8856             // hisamitsu : 2015-07-16 Hisamitsu Pharmaceutical Co.,Inc.
8857             hisamitsu
8858              
8859             // hitachi : 2014-10-31 Hitachi, Ltd.
8860             hitachi
8861              
8862             // hiv : 2014-03-13 Internet Naming Company LLC
8863             hiv
8864              
8865             // hkt : 2015-05-14 PCCW-HKT DataCom Services Limited
8866             hkt
8867              
8868             // hockey : 2015-03-19 Binky Moon, LLC
8869             hockey
8870              
8871             // holdings : 2013-08-27 Binky Moon, LLC
8872             holdings
8873              
8874             // holiday : 2013-11-07 Binky Moon, LLC
8875             holiday
8876              
8877             // homedepot : 2015-04-02 Home Depot Product Authority, LLC
8878             homedepot
8879              
8880             // homegoods : 2015-07-16 The TJX Companies, Inc.
8881             homegoods
8882              
8883             // homes : 2014-01-09 XYZ.COM LLC
8884             homes
8885              
8886             // homesense : 2015-07-16 The TJX Companies, Inc.
8887             homesense
8888              
8889             // honda : 2014-12-18 Honda Motor Co., Ltd.
8890             honda
8891              
8892             // horse : 2013-11-21 Registry Services, LLC
8893             horse
8894              
8895             // hospital : 2016-10-20 Binky Moon, LLC
8896             hospital
8897              
8898             // host : 2014-04-17 Radix FZC
8899             host
8900              
8901             // hosting : 2014-05-29 XYZ.COM LLC
8902             hosting
8903              
8904             // hot : 2015-08-27 Amazon Registry Services, Inc.
8905             hot
8906              
8907             // hoteles : 2015-03-05 Travel Reservations SRL
8908             hoteles
8909              
8910             // hotels : 2016-04-07 Booking.com B.V.
8911             hotels
8912              
8913             // hotmail : 2014-12-18 Microsoft Corporation
8914             hotmail
8915              
8916             // house : 2013-11-07 Binky Moon, LLC
8917             house
8918              
8919             // how : 2014-01-23 Charleston Road Registry Inc.
8920             how
8921              
8922             // hsbc : 2014-10-24 HSBC Global Services (UK) Limited
8923             hsbc
8924              
8925             // hughes : 2015-07-30 Hughes Satellite Systems Corporation
8926             hughes
8927              
8928             // hyatt : 2015-07-30 Hyatt GTLD, L.L.C.
8929             hyatt
8930              
8931             // hyundai : 2015-07-09 Hyundai Motor Company
8932             hyundai
8933              
8934             // ibm : 2014-07-31 International Business Machines Corporation
8935             ibm
8936              
8937             // icbc : 2015-02-19 Industrial and Commercial Bank of China Limited
8938             icbc
8939              
8940             // ice : 2014-10-30 IntercontinentalExchange, Inc.
8941             ice
8942              
8943             // icu : 2015-01-08 ShortDot SA
8944             icu
8945              
8946             // ieee : 2015-07-23 IEEE Global LLC
8947             ieee
8948              
8949             // ifm : 2014-01-30 ifm electronic gmbh
8950             ifm
8951              
8952             // ikano : 2015-07-09 Ikano S.A.
8953             ikano
8954              
8955             // imamat : 2015-08-06 Fondation Aga Khan (Aga Khan Foundation)
8956             imamat
8957              
8958             // imdb : 2015-06-25 Amazon Registry Services, Inc.
8959             imdb
8960              
8961             // immo : 2014-07-10 Binky Moon, LLC
8962             immo
8963              
8964             // immobilien : 2013-11-07 Dog Beach, LLC
8965             immobilien
8966              
8967             // inc : 2018-03-10 Intercap Registry Inc.
8968             inc
8969              
8970             // industries : 2013-12-05 Binky Moon, LLC
8971             industries
8972              
8973             // infiniti : 2014-03-27 NISSAN MOTOR CO., LTD.
8974             infiniti
8975              
8976             // ing : 2014-01-23 Charleston Road Registry Inc.
8977             ing
8978              
8979             // ink : 2013-12-05 Top Level Design, LLC
8980             ink
8981              
8982             // institute : 2013-11-07 Binky Moon, LLC
8983             institute
8984              
8985             // insurance : 2015-02-19 fTLD Registry Services LLC
8986             insurance
8987              
8988             // insure : 2014-03-20 Binky Moon, LLC
8989             insure
8990              
8991             // international : 2013-11-07 Binky Moon, LLC
8992             international
8993              
8994             // intuit : 2015-07-30 Intuit Administrative Services, Inc.
8995             intuit
8996              
8997             // investments : 2014-03-20 Binky Moon, LLC
8998             investments
8999              
9000             // ipiranga : 2014-08-28 Ipiranga Produtos de Petroleo S.A.
9001             ipiranga
9002              
9003             // irish : 2014-08-07 Binky Moon, LLC
9004             irish
9005              
9006             // ismaili : 2015-08-06 Fondation Aga Khan (Aga Khan Foundation)
9007             ismaili
9008              
9009             // ist : 2014-08-28 Istanbul Metropolitan Municipality
9010             ist
9011              
9012             // istanbul : 2014-08-28 Istanbul Metropolitan Municipality
9013             istanbul
9014              
9015             // itau : 2014-10-02 Itau Unibanco Holding S.A.
9016             itau
9017              
9018             // itv : 2015-07-09 ITV Services Limited
9019             itv
9020              
9021             // jaguar : 2014-11-13 Jaguar Land Rover Ltd
9022             jaguar
9023              
9024             // java : 2014-06-19 Oracle Corporation
9025             java
9026              
9027             // jcb : 2014-11-20 JCB Co., Ltd.
9028             jcb
9029              
9030             // jeep : 2015-07-30 FCA US LLC.
9031             jeep
9032              
9033             // jetzt : 2014-01-09 Binky Moon, LLC
9034             jetzt
9035              
9036             // jewelry : 2015-03-05 Binky Moon, LLC
9037             jewelry
9038              
9039             // jio : 2015-04-02 Reliance Industries Limited
9040             jio
9041              
9042             // jll : 2015-04-02 Jones Lang LaSalle Incorporated
9043             jll
9044              
9045             // jmp : 2015-03-26 Matrix IP LLC
9046             jmp
9047              
9048             // jnj : 2015-06-18 Johnson & Johnson Services, Inc.
9049             jnj
9050              
9051             // joburg : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
9052             joburg
9053              
9054             // jot : 2014-12-18 Amazon Registry Services, Inc.
9055             jot
9056              
9057             // joy : 2014-12-18 Amazon Registry Services, Inc.
9058             joy
9059              
9060             // jpmorgan : 2015-04-30 JPMorgan Chase Bank, National Association
9061             jpmorgan
9062              
9063             // jprs : 2014-09-18 Japan Registry Services Co., Ltd.
9064             jprs
9065              
9066             // juegos : 2014-03-20 Internet Naming Company LLC
9067             juegos
9068              
9069             // juniper : 2015-07-30 JUNIPER NETWORKS, INC.
9070             juniper
9071              
9072             // kaufen : 2013-11-07 Dog Beach, LLC
9073             kaufen
9074              
9075             // kddi : 2014-09-12 KDDI CORPORATION
9076             kddi
9077              
9078             // kerryhotels : 2015-04-30 Kerry Trading Co. Limited
9079             kerryhotels
9080              
9081             // kerrylogistics : 2015-04-09 Kerry Trading Co. Limited
9082             kerrylogistics
9083              
9084             // kerryproperties : 2015-04-09 Kerry Trading Co. Limited
9085             kerryproperties
9086              
9087             // kfh : 2014-12-04 Kuwait Finance House
9088             kfh
9089              
9090             // kia : 2015-07-09 KIA MOTORS CORPORATION
9091             kia
9092              
9093             // kids : 2021-08-13 DotKids Foundation Limited
9094             kids
9095              
9096             // kim : 2013-09-23 Identity Digital Limited
9097             kim
9098              
9099             // kinder : 2014-11-07 Ferrero Trading Lux S.A.
9100             kinder
9101              
9102             // kindle : 2015-06-25 Amazon Registry Services, Inc.
9103             kindle
9104              
9105             // kitchen : 2013-09-20 Binky Moon, LLC
9106             kitchen
9107              
9108             // kiwi : 2013-09-20 DOT KIWI LIMITED
9109             kiwi
9110              
9111             // koeln : 2014-01-09 dotKoeln GmbH
9112             koeln
9113              
9114             // komatsu : 2015-01-08 Komatsu Ltd.
9115             komatsu
9116              
9117             // kosher : 2015-08-20 Kosher Marketing Assets LLC
9118             kosher
9119              
9120             // kpmg : 2015-04-23 KPMG International Cooperative (KPMG International Genossenschaft)
9121             kpmg
9122              
9123             // kpn : 2015-01-08 Koninklijke KPN N.V.
9124             kpn
9125              
9126             // krd : 2013-12-05 KRG Department of Information Technology
9127             krd
9128              
9129             // kred : 2013-12-19 KredTLD Pty Ltd
9130             kred
9131              
9132             // kuokgroup : 2015-04-09 Kerry Trading Co. Limited
9133             kuokgroup
9134              
9135             // kyoto : 2014-11-07 Academic Institution: Kyoto Jyoho Gakuen
9136             kyoto
9137              
9138             // lacaixa : 2014-01-09 Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”
9139             lacaixa
9140              
9141             // lamborghini : 2015-06-04 Automobili Lamborghini S.p.A.
9142             lamborghini
9143              
9144             // lamer : 2015-10-01 The Estée Lauder Companies Inc.
9145             lamer
9146              
9147             // lancaster : 2015-02-12 LANCASTER
9148             lancaster
9149              
9150             // lancia : 2015-07-31 Fiat Chrysler Automobiles N.V.
9151             lancia
9152              
9153             // land : 2013-09-10 Binky Moon, LLC
9154             land
9155              
9156             // landrover : 2014-11-13 Jaguar Land Rover Ltd
9157             landrover
9158              
9159             // lanxess : 2015-07-30 LANXESS Corporation
9160             lanxess
9161              
9162             // lasalle : 2015-04-02 Jones Lang LaSalle Incorporated
9163             lasalle
9164              
9165             // lat : 2014-10-16 XYZ.COM LLC
9166             lat
9167              
9168             // latino : 2015-07-30 Dish DBS Corporation
9169             latino
9170              
9171             // latrobe : 2014-06-16 La Trobe University
9172             latrobe
9173              
9174             // law : 2015-01-22 Registry Services, LLC
9175             law
9176              
9177             // lawyer : 2014-03-20 Dog Beach, LLC
9178             lawyer
9179              
9180             // lds : 2014-03-20 IRI Domain Management, LLC
9181             lds
9182              
9183             // lease : 2014-03-06 Binky Moon, LLC
9184             lease
9185              
9186             // leclerc : 2014-08-07 A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc
9187             leclerc
9188              
9189             // lefrak : 2015-07-16 LeFrak Organization, Inc.
9190             lefrak
9191              
9192             // legal : 2014-10-16 Binky Moon, LLC
9193             legal
9194              
9195             // lego : 2015-07-16 LEGO Juris A/S
9196             lego
9197              
9198             // lexus : 2015-04-23 TOYOTA MOTOR CORPORATION
9199             lexus
9200              
9201             // lgbt : 2014-05-08 Identity Digital Limited
9202             lgbt
9203              
9204             // lidl : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
9205             lidl
9206              
9207             // life : 2014-02-06 Binky Moon, LLC
9208             life
9209              
9210             // lifeinsurance : 2015-01-15 American Council of Life Insurers
9211             lifeinsurance
9212              
9213             // lifestyle : 2014-12-11 Lifestyle Domain Holdings, Inc.
9214             lifestyle
9215              
9216             // lighting : 2013-08-27 Binky Moon, LLC
9217             lighting
9218              
9219             // like : 2014-12-18 Amazon Registry Services, Inc.
9220             like
9221              
9222             // lilly : 2015-07-31 Eli Lilly and Company
9223             lilly
9224              
9225             // limited : 2014-03-06 Binky Moon, LLC
9226             limited
9227              
9228             // limo : 2013-10-17 Binky Moon, LLC
9229             limo
9230              
9231             // lincoln : 2014-11-13 Ford Motor Company
9232             lincoln
9233              
9234             // linde : 2014-12-04 Linde Aktiengesellschaft
9235             linde
9236              
9237             // link : 2013-11-14 Nova Registry Ltd
9238             link
9239              
9240             // lipsy : 2015-06-25 Lipsy Ltd
9241             lipsy
9242              
9243             // live : 2014-12-04 Dog Beach, LLC
9244             live
9245              
9246             // living : 2015-07-30 Lifestyle Domain Holdings, Inc.
9247             living
9248              
9249             // llc : 2017-12-14 Identity Digital Limited
9250             llc
9251              
9252             // llp : 2019-08-26 Intercap Registry Inc.
9253             llp
9254              
9255             // loan : 2014-11-20 dot Loan Limited
9256             loan
9257              
9258             // loans : 2014-03-20 Binky Moon, LLC
9259             loans
9260              
9261             // locker : 2015-06-04 Dish DBS Corporation
9262             locker
9263              
9264             // locus : 2015-06-25 Locus Analytics LLC
9265             locus
9266              
9267             // loft : 2015-07-30 Annco, Inc.
9268             loft
9269              
9270             // lol : 2015-01-30 XYZ.COM LLC
9271             lol
9272              
9273             // london : 2013-11-14 Dot London Domains Limited
9274             london
9275              
9276             // lotte : 2014-11-07 Lotte Holdings Co., Ltd.
9277             lotte
9278              
9279             // lotto : 2014-04-10 Identity Digital Limited
9280             lotto
9281              
9282             // love : 2014-12-22 Merchant Law Group LLP
9283             love
9284              
9285             // lpl : 2015-07-30 LPL Holdings, Inc.
9286             lpl
9287              
9288             // lplfinancial : 2015-07-30 LPL Holdings, Inc.
9289             lplfinancial
9290              
9291             // ltd : 2014-09-25 Binky Moon, LLC
9292             ltd
9293              
9294             // ltda : 2014-04-17 InterNetX, Corp
9295             ltda
9296              
9297             // lundbeck : 2015-08-06 H. Lundbeck A/S
9298             lundbeck
9299              
9300             // luxe : 2014-01-09 Registry Services, LLC
9301             luxe
9302              
9303             // luxury : 2013-10-17 Luxury Partners, LLC
9304             luxury
9305              
9306             // macys : 2015-07-31 Macys, Inc.
9307             macys
9308              
9309             // madrid : 2014-05-01 Comunidad de Madrid
9310             madrid
9311              
9312             // maif : 2014-10-02 Mutuelle Assurance Instituteur France (MAIF)
9313             maif
9314              
9315             // maison : 2013-12-05 Binky Moon, LLC
9316             maison
9317              
9318             // makeup : 2015-01-15 XYZ.COM LLC
9319             makeup
9320              
9321             // man : 2014-12-04 MAN SE
9322             man
9323              
9324             // management : 2013-11-07 Binky Moon, LLC
9325             management
9326              
9327             // mango : 2013-10-24 PUNTO FA S.L.
9328             mango
9329              
9330             // map : 2016-06-09 Charleston Road Registry Inc.
9331             map
9332              
9333             // market : 2014-03-06 Dog Beach, LLC
9334             market
9335              
9336             // marketing : 2013-11-07 Binky Moon, LLC
9337             marketing
9338              
9339             // markets : 2014-12-11 Dog Beach, LLC
9340             markets
9341              
9342             // marriott : 2014-10-09 Marriott Worldwide Corporation
9343             marriott
9344              
9345             // marshalls : 2015-07-16 The TJX Companies, Inc.
9346             marshalls
9347              
9348             // maserati : 2015-07-31 Fiat Chrysler Automobiles N.V.
9349             maserati
9350              
9351             // mattel : 2015-08-06 Mattel Sites, Inc.
9352             mattel
9353              
9354             // mba : 2015-04-02 Binky Moon, LLC
9355             mba
9356              
9357             // mckinsey : 2015-07-31 McKinsey Holdings, Inc.
9358             mckinsey
9359              
9360             // med : 2015-08-06 Medistry LLC
9361             med
9362              
9363             // media : 2014-03-06 Binky Moon, LLC
9364             media
9365              
9366             // meet : 2014-01-16 Charleston Road Registry Inc.
9367             meet
9368              
9369             // melbourne : 2014-05-29 The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation
9370             melbourne
9371              
9372             // meme : 2014-01-30 Charleston Road Registry Inc.
9373             meme
9374              
9375             // memorial : 2014-10-16 Dog Beach, LLC
9376             memorial
9377              
9378             // men : 2015-02-26 Exclusive Registry Limited
9379             men
9380              
9381             // menu : 2013-09-11 Dot Menu Registry, LLC
9382             menu
9383              
9384             // merckmsd : 2016-07-14 MSD Registry Holdings, Inc.
9385             merckmsd
9386              
9387             // miami : 2013-12-19 Registry Services, LLC
9388             miami
9389              
9390             // microsoft : 2014-12-18 Microsoft Corporation
9391             microsoft
9392              
9393             // mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
9394             mini
9395              
9396             // mint : 2015-07-30 Intuit Administrative Services, Inc.
9397             mint
9398              
9399             // mit : 2015-07-02 Massachusetts Institute of Technology
9400             mit
9401              
9402             // mitsubishi : 2015-07-23 Mitsubishi Corporation
9403             mitsubishi
9404              
9405             // mlb : 2015-05-21 MLB Advanced Media DH, LLC
9406             mlb
9407              
9408             // mls : 2015-04-23 The Canadian Real Estate Association
9409             mls
9410              
9411             // mma : 2014-11-07 MMA IARD
9412             mma
9413              
9414             // mobile : 2016-06-02 Dish DBS Corporation
9415             mobile
9416              
9417             // moda : 2013-11-07 Dog Beach, LLC
9418             moda
9419              
9420             // moe : 2013-11-13 Interlink Systems Innovation Institute K.K.
9421             moe
9422              
9423             // moi : 2014-12-18 Amazon Registry Services, Inc.
9424             moi
9425              
9426             // mom : 2015-04-16 XYZ.COM LLC
9427             mom
9428              
9429             // monash : 2013-09-30 Monash University
9430             monash
9431              
9432             // money : 2014-10-16 Binky Moon, LLC
9433             money
9434              
9435             // monster : 2015-09-11 XYZ.COM LLC
9436             monster
9437              
9438             // mormon : 2013-12-05 IRI Domain Management, LLC
9439             mormon
9440              
9441             // mortgage : 2014-03-20 Dog Beach, LLC
9442             mortgage
9443              
9444             // moscow : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
9445             moscow
9446              
9447             // moto : 2015-06-04 Motorola Trademark Holdings, LLC
9448             moto
9449              
9450             // motorcycles : 2014-01-09 XYZ.COM LLC
9451             motorcycles
9452              
9453             // mov : 2014-01-30 Charleston Road Registry Inc.
9454             mov
9455              
9456             // movie : 2015-02-05 Binky Moon, LLC
9457             movie
9458              
9459             // msd : 2015-07-23 MSD Registry Holdings, Inc.
9460             msd
9461              
9462             // mtn : 2014-12-04 MTN Dubai Limited
9463             mtn
9464              
9465             // mtr : 2015-03-12 MTR Corporation Limited
9466             mtr
9467              
9468             // music : 2021-05-04 DotMusic Limited
9469             music
9470              
9471             // mutual : 2015-04-02 Northwestern Mutual MU TLD Registry, LLC
9472             mutual
9473              
9474             // nab : 2015-08-20 National Australia Bank Limited
9475             nab
9476              
9477             // nagoya : 2013-10-24 GMO Registry, Inc.
9478             nagoya
9479              
9480             // natura : 2015-03-12 NATURA COSMÉTICOS S.A.
9481             natura
9482              
9483             // navy : 2014-03-06 Dog Beach, LLC
9484             navy
9485              
9486             // nba : 2015-07-31 NBA REGISTRY, LLC
9487             nba
9488              
9489             // nec : 2015-01-08 NEC Corporation
9490             nec
9491              
9492             // netbank : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA
9493             netbank
9494              
9495             // netflix : 2015-06-18 Netflix, Inc.
9496             netflix
9497              
9498             // network : 2013-11-14 Binky Moon, LLC
9499             network
9500              
9501             // neustar : 2013-12-05 NeuStar, Inc.
9502             neustar
9503              
9504             // new : 2014-01-30 Charleston Road Registry Inc.
9505             new
9506              
9507             // news : 2014-12-18 Dog Beach, LLC
9508             news
9509              
9510             // next : 2015-06-18 Next plc
9511             next
9512              
9513             // nextdirect : 2015-06-18 Next plc
9514             nextdirect
9515              
9516             // nexus : 2014-07-24 Charleston Road Registry Inc.
9517             nexus
9518              
9519             // nfl : 2015-07-23 NFL Reg Ops LLC
9520             nfl
9521              
9522             // ngo : 2014-03-06 Public Interest Registry
9523             ngo
9524              
9525             // nhk : 2014-02-13 Japan Broadcasting Corporation (NHK)
9526             nhk
9527              
9528             // nico : 2014-12-04 DWANGO Co., Ltd.
9529             nico
9530              
9531             // nike : 2015-07-23 NIKE, Inc.
9532             nike
9533              
9534             // nikon : 2015-05-21 NIKON CORPORATION
9535             nikon
9536              
9537             // ninja : 2013-11-07 Dog Beach, LLC
9538             ninja
9539              
9540             // nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
9541             nissan
9542              
9543             // nissay : 2015-10-29 Nippon Life Insurance Company
9544             nissay
9545              
9546             // nokia : 2015-01-08 Nokia Corporation
9547             nokia
9548              
9549             // northwesternmutual : 2015-06-18 Northwestern Mutual Registry, LLC
9550             northwesternmutual
9551              
9552             // norton : 2014-12-04 NortonLifeLock Inc.
9553             norton
9554              
9555             // now : 2015-06-25 Amazon Registry Services, Inc.
9556             now
9557              
9558             // nowruz : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
9559             nowruz
9560              
9561             // nowtv : 2015-05-14 Starbucks (HK) Limited
9562             nowtv
9563              
9564             // nra : 2014-05-22 NRA Holdings Company, INC.
9565             nra
9566              
9567             // nrw : 2013-11-21 Minds + Machines GmbH
9568             nrw
9569              
9570             // ntt : 2014-10-31 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
9571             ntt
9572              
9573             // nyc : 2014-01-23 The City of New York by and through the New York City Department of Information Technology & Telecommunications
9574             nyc
9575              
9576             // obi : 2014-09-25 OBI Group Holding SE & Co. KGaA
9577             obi
9578              
9579             // observer : 2015-04-30 Dog Beach, LLC
9580             observer
9581              
9582             // office : 2015-03-12 Microsoft Corporation
9583             office
9584              
9585             // okinawa : 2013-12-05 BRregistry, Inc.
9586             okinawa
9587              
9588             // olayan : 2015-05-14 Crescent Holding GmbH
9589             olayan
9590              
9591             // olayangroup : 2015-05-14 Crescent Holding GmbH
9592             olayangroup
9593              
9594             // oldnavy : 2015-07-31 The Gap, Inc.
9595             oldnavy
9596              
9597             // ollo : 2015-06-04 Dish DBS Corporation
9598             ollo
9599              
9600             // omega : 2015-01-08 The Swatch Group Ltd
9601             omega
9602              
9603             // one : 2014-11-07 One.com A/S
9604             one
9605              
9606             // ong : 2014-03-06 Public Interest Registry
9607             ong
9608              
9609             // onl : 2013-09-16 iRegistry GmbH
9610             onl
9611              
9612             // online : 2015-01-15 Radix FZC
9613             online
9614              
9615             // ooo : 2014-01-09 INFIBEAM AVENUES LIMITED
9616             ooo
9617              
9618             // open : 2015-07-31 American Express Travel Related Services Company, Inc.
9619             open
9620              
9621             // oracle : 2014-06-19 Oracle Corporation
9622             oracle
9623              
9624             // orange : 2015-03-12 Orange Brand Services Limited
9625             orange
9626              
9627             // organic : 2014-03-27 Identity Digital Limited
9628             organic
9629              
9630             // origins : 2015-10-01 The Estée Lauder Companies Inc.
9631             origins
9632              
9633             // osaka : 2014-09-04 Osaka Registry Co., Ltd.
9634             osaka
9635              
9636             // otsuka : 2013-10-11 Otsuka Holdings Co., Ltd.
9637             otsuka
9638              
9639             // ott : 2015-06-04 Dish DBS Corporation
9640             ott
9641              
9642             // ovh : 2014-01-16 MédiaBC
9643             ovh
9644              
9645             // page : 2014-12-04 Charleston Road Registry Inc.
9646             page
9647              
9648             // panasonic : 2015-07-30 Panasonic Corporation
9649             panasonic
9650              
9651             // paris : 2014-01-30 City of Paris
9652             paris
9653              
9654             // pars : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
9655             pars
9656              
9657             // partners : 2013-12-05 Binky Moon, LLC
9658             partners
9659              
9660             // parts : 2013-12-05 Binky Moon, LLC
9661             parts
9662              
9663             // party : 2014-09-11 Blue Sky Registry Limited
9664             party
9665              
9666             // passagens : 2015-03-05 Travel Reservations SRL
9667             passagens
9668              
9669             // pay : 2015-08-27 Amazon Registry Services, Inc.
9670             pay
9671              
9672             // pccw : 2015-05-14 PCCW Enterprises Limited
9673             pccw
9674              
9675             // pet : 2015-05-07 Identity Digital Limited
9676             pet
9677              
9678             // pfizer : 2015-09-11 Pfizer Inc.
9679             pfizer
9680              
9681             // pharmacy : 2014-06-19 National Association of Boards of Pharmacy
9682             pharmacy
9683              
9684             // phd : 2016-07-28 Charleston Road Registry Inc.
9685             phd
9686              
9687             // philips : 2014-11-07 Koninklijke Philips N.V.
9688             philips
9689              
9690             // phone : 2016-06-02 Dish DBS Corporation
9691             phone
9692              
9693             // photo : 2013-11-14 Registry Services, LLC
9694             photo
9695              
9696             // photography : 2013-09-20 Binky Moon, LLC
9697             photography
9698              
9699             // photos : 2013-10-17 Binky Moon, LLC
9700             photos
9701              
9702             // physio : 2014-05-01 PhysBiz Pty Ltd
9703             physio
9704              
9705             // pics : 2013-11-14 XYZ.COM LLC
9706             pics
9707              
9708             // pictet : 2014-06-26 Pictet Europe S.A.
9709             pictet
9710              
9711             // pictures : 2014-03-06 Binky Moon, LLC
9712             pictures
9713              
9714             // pid : 2015-01-08 Top Level Spectrum, Inc.
9715             pid
9716              
9717             // pin : 2014-12-18 Amazon Registry Services, Inc.
9718             pin
9719              
9720             // ping : 2015-06-11 Ping Registry Provider, Inc.
9721             ping
9722              
9723             // pink : 2013-10-01 Identity Digital Limited
9724             pink
9725              
9726             // pioneer : 2015-07-16 Pioneer Corporation
9727             pioneer
9728              
9729             // pizza : 2014-06-26 Binky Moon, LLC
9730             pizza
9731              
9732             // place : 2014-04-24 Binky Moon, LLC
9733             place
9734              
9735             // play : 2015-03-05 Charleston Road Registry Inc.
9736             play
9737              
9738             // playstation : 2015-07-02 Sony Interactive Entertainment Inc.
9739             playstation
9740              
9741             // plumbing : 2013-09-10 Binky Moon, LLC
9742             plumbing
9743              
9744             // plus : 2015-02-05 Binky Moon, LLC
9745             plus
9746              
9747             // pnc : 2015-07-02 PNC Domain Co., LLC
9748             pnc
9749              
9750             // pohl : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
9751             pohl
9752              
9753             // poker : 2014-07-03 Identity Digital Limited
9754             poker
9755              
9756             // politie : 2015-08-20 Politie Nederland
9757             politie
9758              
9759             // porn : 2014-10-16 ICM Registry PN LLC
9760             porn
9761              
9762             // pramerica : 2015-07-30 Prudential Financial, Inc.
9763             pramerica
9764              
9765             // praxi : 2013-12-05 Praxi S.p.A.
9766             praxi
9767              
9768             // press : 2014-04-03 Radix FZC
9769             press
9770              
9771             // prime : 2015-06-25 Amazon Registry Services, Inc.
9772             prime
9773              
9774             // prod : 2014-01-23 Charleston Road Registry Inc.
9775             prod
9776              
9777             // productions : 2013-12-05 Binky Moon, LLC
9778             productions
9779              
9780             // prof : 2014-07-24 Charleston Road Registry Inc.
9781             prof
9782              
9783             // progressive : 2015-07-23 Progressive Casualty Insurance Company
9784             progressive
9785              
9786             // promo : 2014-12-18 Identity Digital Limited
9787             promo
9788              
9789             // properties : 2013-12-05 Binky Moon, LLC
9790             properties
9791              
9792             // property : 2014-05-22 Internet Naming Company LLC
9793             property
9794              
9795             // protection : 2015-04-23 XYZ.COM LLC
9796             protection
9797              
9798             // pru : 2015-07-30 Prudential Financial, Inc.
9799             pru
9800              
9801             // prudential : 2015-07-30 Prudential Financial, Inc.
9802             prudential
9803              
9804             // pub : 2013-12-12 Dog Beach, LLC
9805             pub
9806              
9807             // pwc : 2015-10-29 PricewaterhouseCoopers LLP
9808             pwc
9809              
9810             // qpon : 2013-11-14 dotCOOL, Inc.
9811             qpon
9812              
9813             // quebec : 2013-12-19 PointQuébec Inc
9814             quebec
9815              
9816             // quest : 2015-03-26 XYZ.COM LLC
9817             quest
9818              
9819             // racing : 2014-12-04 Premier Registry Limited
9820             racing
9821              
9822             // radio : 2016-07-21 European Broadcasting Union (EBU)
9823             radio
9824              
9825             // read : 2014-12-18 Amazon Registry Services, Inc.
9826             read
9827              
9828             // realestate : 2015-09-11 dotRealEstate LLC
9829             realestate
9830              
9831             // realtor : 2014-05-29 Real Estate Domains LLC
9832             realtor
9833              
9834             // realty : 2015-03-19 Dog Beach, LLC
9835             realty
9836              
9837             // recipes : 2013-10-17 Binky Moon, LLC
9838             recipes
9839              
9840             // red : 2013-11-07 Identity Digital Limited
9841             red
9842              
9843             // redstone : 2014-10-31 Redstone Haute Couture Co., Ltd.
9844             redstone
9845              
9846             // redumbrella : 2015-03-26 Travelers TLD, LLC
9847             redumbrella
9848              
9849             // rehab : 2014-03-06 Dog Beach, LLC
9850             rehab
9851              
9852             // reise : 2014-03-13 Binky Moon, LLC
9853             reise
9854              
9855             // reisen : 2014-03-06 Binky Moon, LLC
9856             reisen
9857              
9858             // reit : 2014-09-04 National Association of Real Estate Investment Trusts, Inc.
9859             reit
9860              
9861             // reliance : 2015-04-02 Reliance Industries Limited
9862             reliance
9863              
9864             // ren : 2013-12-12 ZDNS International Limited
9865             ren
9866              
9867             // rent : 2014-12-04 XYZ.COM LLC
9868             rent
9869              
9870             // rentals : 2013-12-05 Binky Moon, LLC
9871             rentals
9872              
9873             // repair : 2013-11-07 Binky Moon, LLC
9874             repair
9875              
9876             // report : 2013-12-05 Binky Moon, LLC
9877             report
9878              
9879             // republican : 2014-03-20 Dog Beach, LLC
9880             republican
9881              
9882             // rest : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
9883             rest
9884              
9885             // restaurant : 2014-07-03 Binky Moon, LLC
9886             restaurant
9887              
9888             // review : 2014-11-20 dot Review Limited
9889             review
9890              
9891             // reviews : 2013-09-13 Dog Beach, LLC
9892             reviews
9893              
9894             // rexroth : 2015-06-18 Robert Bosch GMBH
9895             rexroth
9896              
9897             // rich : 2013-11-21 iRegistry GmbH
9898             rich
9899              
9900             // richardli : 2015-05-14 Pacific Century Asset Management (HK) Limited
9901             richardli
9902              
9903             // ricoh : 2014-11-20 Ricoh Company, Ltd.
9904             ricoh
9905              
9906             // ril : 2015-04-02 Reliance Industries Limited
9907             ril
9908              
9909             // rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
9910             rio
9911              
9912             // rip : 2014-07-10 Dog Beach, LLC
9913             rip
9914              
9915             // rocher : 2014-12-18 Ferrero Trading Lux S.A.
9916             rocher
9917              
9918             // rocks : 2013-11-14 Dog Beach, LLC
9919             rocks
9920              
9921             // rodeo : 2013-12-19 Registry Services, LLC
9922             rodeo
9923              
9924             // rogers : 2015-08-06 Rogers Communications Canada Inc.
9925             rogers
9926              
9927             // room : 2014-12-18 Amazon Registry Services, Inc.
9928             room
9929              
9930             // rsvp : 2014-05-08 Charleston Road Registry Inc.
9931             rsvp
9932              
9933             // rugby : 2016-12-15 World Rugby Strategic Developments Limited
9934             rugby
9935              
9936             // ruhr : 2013-10-02 dotSaarland GmbH
9937             ruhr
9938              
9939             // run : 2015-03-19 Binky Moon, LLC
9940             run
9941              
9942             // rwe : 2015-04-02 RWE AG
9943             rwe
9944              
9945             // ryukyu : 2014-01-09 BRregistry, Inc.
9946             ryukyu
9947              
9948             // saarland : 2013-12-12 dotSaarland GmbH
9949             saarland
9950              
9951             // safe : 2014-12-18 Amazon Registry Services, Inc.
9952             safe
9953              
9954             // safety : 2015-01-08 Safety Registry Services, LLC.
9955             safety
9956              
9957             // sakura : 2014-12-18 SAKURA Internet Inc.
9958             sakura
9959              
9960             // sale : 2014-10-16 Dog Beach, LLC
9961             sale
9962              
9963             // salon : 2014-12-11 Binky Moon, LLC
9964             salon
9965              
9966             // samsclub : 2015-07-31 Wal-Mart Stores, Inc.
9967             samsclub
9968              
9969             // samsung : 2014-04-03 SAMSUNG SDS CO., LTD
9970             samsung
9971              
9972             // sandvik : 2014-11-13 Sandvik AB
9973             sandvik
9974              
9975             // sandvikcoromant : 2014-11-07 Sandvik AB
9976             sandvikcoromant
9977              
9978             // sanofi : 2014-10-09 Sanofi
9979             sanofi
9980              
9981             // sap : 2014-03-27 SAP AG
9982             sap
9983              
9984             // sarl : 2014-07-03 Binky Moon, LLC
9985             sarl
9986              
9987             // sas : 2015-04-02 Research IP LLC
9988             sas
9989              
9990             // save : 2015-06-25 Amazon Registry Services, Inc.
9991             save
9992              
9993             // saxo : 2014-10-31 Saxo Bank A/S
9994             saxo
9995              
9996             // sbi : 2015-03-12 STATE BANK OF INDIA
9997             sbi
9998              
9999             // sbs : 2014-11-07 ShortDot SA
10000             sbs
10001              
10002             // sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
10003             sca
10004              
10005             // scb : 2014-02-20 The Siam Commercial Bank Public Company Limited ("SCB")
10006             scb
10007              
10008             // schaeffler : 2015-08-06 Schaeffler Technologies AG & Co. KG
10009             schaeffler
10010              
10011             // schmidt : 2014-04-03 SCHMIDT GROUPE S.A.S.
10012             schmidt
10013              
10014             // scholarships : 2014-04-24 Scholarships.com, LLC
10015             scholarships
10016              
10017             // school : 2014-12-18 Binky Moon, LLC
10018             school
10019              
10020             // schule : 2014-03-06 Binky Moon, LLC
10021             schule
10022              
10023             // schwarz : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
10024             schwarz
10025              
10026             // science : 2014-09-11 dot Science Limited
10027             science
10028              
10029             // scot : 2014-01-23 Dot Scot Registry Limited
10030             scot
10031              
10032             // search : 2016-06-09 Charleston Road Registry Inc.
10033             search
10034              
10035             // seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
10036             seat
10037              
10038             // secure : 2015-08-27 Amazon Registry Services, Inc.
10039             secure
10040              
10041             // security : 2015-05-14 XYZ.COM LLC
10042             security
10043              
10044             // seek : 2014-12-04 Seek Limited
10045             seek
10046              
10047             // select : 2015-10-08 Registry Services, LLC
10048             select
10049              
10050             // sener : 2014-10-24 Sener Ingeniería y Sistemas, S.A.
10051             sener
10052              
10053             // services : 2014-02-27 Binky Moon, LLC
10054             services
10055              
10056             // ses : 2015-07-23 SES
10057             ses
10058              
10059             // seven : 2015-08-06 Seven West Media Ltd
10060             seven
10061              
10062             // sew : 2014-07-17 SEW-EURODRIVE GmbH & Co KG
10063             sew
10064              
10065             // sex : 2014-11-13 ICM Registry SX LLC
10066             sex
10067              
10068             // sexy : 2013-09-11 Internet Naming Company LLC
10069             sexy
10070              
10071             // sfr : 2015-08-13 Societe Francaise du Radiotelephone - SFR
10072             sfr
10073              
10074             // shangrila : 2015-09-03 Shangri‐La International Hotel Management Limited
10075             shangrila
10076              
10077             // sharp : 2014-05-01 Sharp Corporation
10078             sharp
10079              
10080             // shaw : 2015-04-23 Shaw Cablesystems G.P.
10081             shaw
10082              
10083             // shell : 2015-07-30 Shell Information Technology International Inc
10084             shell
10085              
10086             // shia : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
10087             shia
10088              
10089             // shiksha : 2013-11-14 Identity Digital Limited
10090             shiksha
10091              
10092             // shoes : 2013-10-02 Binky Moon, LLC
10093             shoes
10094              
10095             // shop : 2016-04-08 GMO Registry, Inc.
10096             shop
10097              
10098             // shopping : 2016-03-31 Binky Moon, LLC
10099             shopping
10100              
10101             // shouji : 2015-01-08 Beijing Qihu Keji Co., Ltd.
10102             shouji
10103              
10104             // show : 2015-03-05 Binky Moon, LLC
10105             show
10106              
10107             // showtime : 2015-08-06 CBS Domains Inc.
10108             showtime
10109              
10110             // silk : 2015-06-25 Amazon Registry Services, Inc.
10111             silk
10112              
10113             // sina : 2015-03-12 Sina Corporation
10114             sina
10115              
10116             // singles : 2013-08-27 Binky Moon, LLC
10117             singles
10118              
10119             // site : 2015-01-15 Radix FZC
10120             site
10121              
10122             // ski : 2015-04-09 Identity Digital Limited
10123             ski
10124              
10125             // skin : 2015-01-15 XYZ.COM LLC
10126             skin
10127              
10128             // sky : 2014-06-19 Sky International AG
10129             sky
10130              
10131             // skype : 2014-12-18 Microsoft Corporation
10132             skype
10133              
10134             // sling : 2015-07-30 DISH Technologies L.L.C.
10135             sling
10136              
10137             // smart : 2015-07-09 Smart Communications, Inc. (SMART)
10138             smart
10139              
10140             // smile : 2014-12-18 Amazon Registry Services, Inc.
10141             smile
10142              
10143             // sncf : 2015-02-19 Société Nationale des Chemins de fer Francais S N C F
10144             sncf
10145              
10146             // soccer : 2015-03-26 Binky Moon, LLC
10147             soccer
10148              
10149             // social : 2013-11-07 Dog Beach, LLC
10150             social
10151              
10152             // softbank : 2015-07-02 SoftBank Group Corp.
10153             softbank
10154              
10155             // software : 2014-03-20 Dog Beach, LLC
10156             software
10157              
10158             // sohu : 2013-12-19 Sohu.com Limited
10159             sohu
10160              
10161             // solar : 2013-11-07 Binky Moon, LLC
10162             solar
10163              
10164             // solutions : 2013-11-07 Binky Moon, LLC
10165             solutions
10166              
10167             // song : 2015-02-26 Amazon Registry Services, Inc.
10168             song
10169              
10170             // sony : 2015-01-08 Sony Corporation
10171             sony
10172              
10173             // soy : 2014-01-23 Charleston Road Registry Inc.
10174             soy
10175              
10176             // spa : 2019-09-19 Asia Spa and Wellness Promotion Council Limited
10177             spa
10178              
10179             // space : 2014-04-03 Radix FZC
10180             space
10181              
10182             // sport : 2017-11-16 Global Association of International Sports Federations (GAISF)
10183             sport
10184              
10185             // spot : 2015-02-26 Amazon Registry Services, Inc.
10186             spot
10187              
10188             // srl : 2015-05-07 InterNetX, Corp
10189             srl
10190              
10191             // stada : 2014-11-13 STADA Arzneimittel AG
10192             stada
10193              
10194             // staples : 2015-07-30 Staples, Inc.
10195             staples
10196              
10197             // star : 2015-01-08 Star India Private Limited
10198             star
10199              
10200             // statebank : 2015-03-12 STATE BANK OF INDIA
10201             statebank
10202              
10203             // statefarm : 2015-07-30 State Farm Mutual Automobile Insurance Company
10204             statefarm
10205              
10206             // stc : 2014-10-09 Saudi Telecom Company
10207             stc
10208              
10209             // stcgroup : 2014-10-09 Saudi Telecom Company
10210             stcgroup
10211              
10212             // stockholm : 2014-12-18 Stockholms kommun
10213             stockholm
10214              
10215             // storage : 2014-12-22 XYZ.COM LLC
10216             storage
10217              
10218             // store : 2015-04-09 Radix FZC
10219             store
10220              
10221             // stream : 2016-01-08 dot Stream Limited
10222             stream
10223              
10224             // studio : 2015-02-11 Dog Beach, LLC
10225             studio
10226              
10227             // study : 2014-12-11 Registry Services, LLC
10228             study
10229              
10230             // style : 2014-12-04 Binky Moon, LLC
10231             style
10232              
10233             // sucks : 2014-12-22 Vox Populi Registry Ltd.
10234             sucks
10235              
10236             // supplies : 2013-12-19 Binky Moon, LLC
10237             supplies
10238              
10239             // supply : 2013-12-19 Binky Moon, LLC
10240             supply
10241              
10242             // support : 2013-10-24 Binky Moon, LLC
10243             support
10244              
10245             // surf : 2014-01-09 Registry Services, LLC
10246             surf
10247              
10248             // surgery : 2014-03-20 Binky Moon, LLC
10249             surgery
10250              
10251             // suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION
10252             suzuki
10253              
10254             // swatch : 2015-01-08 The Swatch Group Ltd
10255             swatch
10256              
10257             // swiss : 2014-10-16 Swiss Confederation
10258             swiss
10259              
10260             // sydney : 2014-09-18 State of New South Wales, Department of Premier and Cabinet
10261             sydney
10262              
10263             // systems : 2013-11-07 Binky Moon, LLC
10264             systems
10265              
10266             // tab : 2014-12-04 Tabcorp Holdings Limited
10267             tab
10268              
10269             // taipei : 2014-07-10 Taipei City Government
10270             taipei
10271              
10272             // talk : 2015-04-09 Amazon Registry Services, Inc.
10273             talk
10274              
10275             // taobao : 2015-01-15 Alibaba Group Holding Limited
10276             taobao
10277              
10278             // target : 2015-07-31 Target Domain Holdings, LLC
10279             target
10280              
10281             // tatamotors : 2015-03-12 Tata Motors Ltd
10282             tatamotors
10283              
10284             // tatar : 2014-04-24 Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"
10285             tatar
10286              
10287             // tattoo : 2013-08-30 Top Level Design, LLC
10288             tattoo
10289              
10290             // tax : 2014-03-20 Binky Moon, LLC
10291             tax
10292              
10293             // taxi : 2015-03-19 Binky Moon, LLC
10294             taxi
10295              
10296             // tci : 2014-09-12 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
10297             tci
10298              
10299             // tdk : 2015-06-11 TDK Corporation
10300             tdk
10301              
10302             // team : 2015-03-05 Binky Moon, LLC
10303             team
10304              
10305             // tech : 2015-01-30 Radix FZC
10306             tech
10307              
10308             // technology : 2013-09-13 Binky Moon, LLC
10309             technology
10310              
10311             // temasek : 2014-08-07 Temasek Holdings (Private) Limited
10312             temasek
10313              
10314             // tennis : 2014-12-04 Binky Moon, LLC
10315             tennis
10316              
10317             // teva : 2015-07-02 Teva Pharmaceutical Industries Limited
10318             teva
10319              
10320             // thd : 2015-04-02 Home Depot Product Authority, LLC
10321             thd
10322              
10323             // theater : 2015-03-19 Binky Moon, LLC
10324             theater
10325              
10326             // theatre : 2015-05-07 XYZ.COM LLC
10327             theatre
10328              
10329             // tiaa : 2015-07-23 Teachers Insurance and Annuity Association of America
10330             tiaa
10331              
10332             // tickets : 2015-02-05 XYZ.COM LLC
10333             tickets
10334              
10335             // tienda : 2013-11-14 Binky Moon, LLC
10336             tienda
10337              
10338             // tiffany : 2015-01-30 Tiffany and Company
10339             tiffany
10340              
10341             // tips : 2013-09-20 Binky Moon, LLC
10342             tips
10343              
10344             // tires : 2014-11-07 Binky Moon, LLC
10345             tires
10346              
10347             // tirol : 2014-04-24 punkt Tirol GmbH
10348             tirol
10349              
10350             // tjmaxx : 2015-07-16 The TJX Companies, Inc.
10351             tjmaxx
10352              
10353             // tjx : 2015-07-16 The TJX Companies, Inc.
10354             tjx
10355              
10356             // tkmaxx : 2015-07-16 The TJX Companies, Inc.
10357             tkmaxx
10358              
10359             // tmall : 2015-01-15 Alibaba Group Holding Limited
10360             tmall
10361              
10362             // today : 2013-09-20 Binky Moon, LLC
10363             today
10364              
10365             // tokyo : 2013-11-13 GMO Registry, Inc.
10366             tokyo
10367              
10368             // tools : 2013-11-21 Binky Moon, LLC
10369             tools
10370              
10371             // top : 2014-03-20 .TOP Registry
10372             top
10373              
10374             // toray : 2014-12-18 Toray Industries, Inc.
10375             toray
10376              
10377             // toshiba : 2014-04-10 TOSHIBA Corporation
10378             toshiba
10379              
10380             // total : 2015-08-06 TOTAL SE
10381             total
10382              
10383             // tours : 2015-01-22 Binky Moon, LLC
10384             tours
10385              
10386             // town : 2014-03-06 Binky Moon, LLC
10387             town
10388              
10389             // toyota : 2015-04-23 TOYOTA MOTOR CORPORATION
10390             toyota
10391              
10392             // toys : 2014-03-06 Binky Moon, LLC
10393             toys
10394              
10395             // trade : 2014-01-23 Elite Registry Limited
10396             trade
10397              
10398             // trading : 2014-12-11 Dog Beach, LLC
10399             trading
10400              
10401             // training : 2013-11-07 Binky Moon, LLC
10402             training
10403              
10404             // travel : 2015-10-09 Dog Beach, LLC
10405             travel
10406              
10407             // travelchannel : 2015-07-02 Lifestyle Domain Holdings, Inc.
10408             travelchannel
10409              
10410             // travelers : 2015-03-26 Travelers TLD, LLC
10411             travelers
10412              
10413             // travelersinsurance : 2015-03-26 Travelers TLD, LLC
10414             travelersinsurance
10415              
10416             // trust : 2014-10-16 Internet Naming Company LLC
10417             trust
10418              
10419             // trv : 2015-03-26 Travelers TLD, LLC
10420             trv
10421              
10422             // tube : 2015-06-11 Latin American Telecom LLC
10423             tube
10424              
10425             // tui : 2014-07-03 TUI AG
10426             tui
10427              
10428             // tunes : 2015-02-26 Amazon Registry Services, Inc.
10429             tunes
10430              
10431             // tushu : 2014-12-18 Amazon Registry Services, Inc.
10432             tushu
10433              
10434             // tvs : 2015-02-19 T V SUNDRAM IYENGAR & SONS LIMITED
10435             tvs
10436              
10437             // ubank : 2015-08-20 National Australia Bank Limited
10438             ubank
10439              
10440             // ubs : 2014-12-11 UBS AG
10441             ubs
10442              
10443             // unicom : 2015-10-15 China United Network Communications Corporation Limited
10444             unicom
10445              
10446             // university : 2014-03-06 Binky Moon, LLC
10447             university
10448              
10449             // uno : 2013-09-11 Radix FZC
10450             uno
10451              
10452             // uol : 2014-05-01 UBN INTERNET LTDA.
10453             uol
10454              
10455             // ups : 2015-06-25 UPS Market Driver, Inc.
10456             ups
10457              
10458             // vacations : 2013-12-05 Binky Moon, LLC
10459             vacations
10460              
10461             // vana : 2014-12-11 Lifestyle Domain Holdings, Inc.
10462             vana
10463              
10464             // vanguard : 2015-09-03 The Vanguard Group, Inc.
10465             vanguard
10466              
10467             // vegas : 2014-01-16 Dot Vegas, Inc.
10468             vegas
10469              
10470             // ventures : 2013-08-27 Binky Moon, LLC
10471             ventures
10472              
10473             // verisign : 2015-08-13 VeriSign, Inc.
10474             verisign
10475              
10476             // versicherung : 2014-03-20 tldbox GmbH
10477             versicherung
10478              
10479             // vet : 2014-03-06 Dog Beach, LLC
10480             vet
10481              
10482             // viajes : 2013-10-17 Binky Moon, LLC
10483             viajes
10484              
10485             // video : 2014-10-16 Dog Beach, LLC
10486             video
10487              
10488             // vig : 2015-05-14 VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe
10489             vig
10490              
10491             // viking : 2015-04-02 Viking River Cruises (Bermuda) Ltd.
10492             viking
10493              
10494             // villas : 2013-12-05 Binky Moon, LLC
10495             villas
10496              
10497             // vin : 2015-06-18 Binky Moon, LLC
10498             vin
10499              
10500             // vip : 2015-01-22 Registry Services, LLC
10501             vip
10502              
10503             // virgin : 2014-09-25 Virgin Enterprises Limited
10504             virgin
10505              
10506             // visa : 2015-07-30 Visa Worldwide Pte. Limited
10507             visa
10508              
10509             // vision : 2013-12-05 Binky Moon, LLC
10510             vision
10511              
10512             // viva : 2014-11-07 Saudi Telecom Company
10513             viva
10514              
10515             // vivo : 2015-07-31 Telefonica Brasil S.A.
10516             vivo
10517              
10518             // vlaanderen : 2014-02-06 DNS.be vzw
10519             vlaanderen
10520              
10521             // vodka : 2013-12-19 Registry Services, LLC
10522             vodka
10523              
10524             // volkswagen : 2015-05-14 Volkswagen Group of America Inc.
10525             volkswagen
10526              
10527             // volvo : 2015-11-12 Volvo Holding Sverige Aktiebolag
10528             volvo
10529              
10530             // vote : 2013-11-21 Monolith Registry LLC
10531             vote
10532              
10533             // voting : 2013-11-13 Valuetainment Corp.
10534             voting
10535              
10536             // voto : 2013-11-21 Monolith Registry LLC
10537             voto
10538              
10539             // voyage : 2013-08-27 Binky Moon, LLC
10540             voyage
10541              
10542             // vuelos : 2015-03-05 Travel Reservations SRL
10543             vuelos
10544              
10545             // wales : 2014-05-08 Nominet UK
10546             wales
10547              
10548             // walmart : 2015-07-31 Wal-Mart Stores, Inc.
10549             walmart
10550              
10551             // walter : 2014-11-13 Sandvik AB
10552             walter
10553              
10554             // wang : 2013-10-24 Zodiac Wang Limited
10555             wang
10556              
10557             // wanggou : 2014-12-18 Amazon Registry Services, Inc.
10558             wanggou
10559              
10560             // watch : 2013-11-14 Binky Moon, LLC
10561             watch
10562              
10563             // watches : 2014-12-22 Identity Digital Limited
10564             watches
10565              
10566             // weather : 2015-01-08 International Business Machines Corporation
10567             weather
10568              
10569             // weatherchannel : 2015-03-12 International Business Machines Corporation
10570             weatherchannel
10571              
10572             // webcam : 2014-01-23 dot Webcam Limited
10573             webcam
10574              
10575             // weber : 2015-06-04 Saint-Gobain Weber SA
10576             weber
10577              
10578             // website : 2014-04-03 Radix FZC
10579             website
10580              
10581             // wedding : 2014-04-24 Registry Services, LLC
10582             wedding
10583              
10584             // weibo : 2015-03-05 Sina Corporation
10585             weibo
10586              
10587             // weir : 2015-01-29 Weir Group IP Limited
10588             weir
10589              
10590             // whoswho : 2014-02-20 Who's Who Registry
10591             whoswho
10592              
10593             // wien : 2013-10-28 punkt.wien GmbH
10594             wien
10595              
10596             // wiki : 2013-11-07 Top Level Design, LLC
10597             wiki
10598              
10599             // williamhill : 2014-03-13 William Hill Organization Limited
10600             williamhill
10601              
10602             // win : 2014-11-20 First Registry Limited
10603             win
10604              
10605             // windows : 2014-12-18 Microsoft Corporation
10606             windows
10607              
10608             // wine : 2015-06-18 Binky Moon, LLC
10609             wine
10610              
10611             // winners : 2015-07-16 The TJX Companies, Inc.
10612             winners
10613              
10614             // wme : 2014-02-13 William Morris Endeavor Entertainment, LLC
10615             wme
10616              
10617             // wolterskluwer : 2015-08-06 Wolters Kluwer N.V.
10618             wolterskluwer
10619              
10620             // woodside : 2015-07-09 Woodside Petroleum Limited
10621             woodside
10622              
10623             // work : 2013-12-19 Registry Services, LLC
10624             work
10625              
10626             // works : 2013-11-14 Binky Moon, LLC
10627             works
10628              
10629             // world : 2014-06-12 Binky Moon, LLC
10630             world
10631              
10632             // wow : 2015-10-08 Amazon Registry Services, Inc.
10633             wow
10634              
10635             // wtc : 2013-12-19 World Trade Centers Association, Inc.
10636             wtc
10637              
10638             // wtf : 2014-03-06 Binky Moon, LLC
10639             wtf
10640              
10641             // xbox : 2014-12-18 Microsoft Corporation
10642             xbox
10643              
10644             // xerox : 2014-10-24 Xerox DNHC LLC
10645             xerox
10646              
10647             // xfinity : 2015-07-09 Comcast IP Holdings I, LLC
10648             xfinity
10649              
10650             // xihuan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
10651             xihuan
10652              
10653             // xin : 2014-12-11 Elegant Leader Limited
10654             xin
10655              
10656             // xn--11b4c3d : 2015-01-15 VeriSign Sarl
10657             xn--11b4c3d
10658              
10659             // xn--1ck2e1b : 2015-02-26 Amazon Registry Services, Inc.
10660             xn--1ck2e1b
10661              
10662             // xn--1qqw23a : 2014-01-09 Guangzhou YU Wei Information Technology Co., Ltd.
10663             xn--1qqw23a
10664              
10665             // xn--30rr7y : 2014-06-12 Excellent First Limited
10666             xn--30rr7y
10667              
10668             // xn--3bst00m : 2013-09-13 Eagle Horizon Limited
10669             xn--3bst00m
10670              
10671             // xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED OY
10672             xn--3ds443g
10673              
10674             // xn--3pxu8k : 2015-01-15 VeriSign Sarl
10675             xn--3pxu8k
10676              
10677             // xn--42c2d9a : 2015-01-15 VeriSign Sarl
10678             xn--42c2d9a
10679              
10680             // xn--45q11c : 2013-11-21 Zodiac Gemini Ltd
10681             xn--45q11c
10682              
10683             // xn--4gbrim : 2013-10-04 Helium TLDs Ltd
10684             xn--4gbrim
10685              
10686             // xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
10687             xn--55qw42g
10688              
10689             // xn--55qx5d : 2013-11-14 China Internet Network Information Center (CNNIC)
10690             xn--55qx5d
10691              
10692             // xn--5su34j936bgsg : 2015-09-03 Shangri‐La International Hotel Management Limited
10693             xn--5su34j936bgsg
10694              
10695             // xn--5tzm5g : 2014-12-22 Global Website TLD Asia Limited
10696             xn--5tzm5g
10697              
10698             // xn--6frz82g : 2013-09-23 Identity Digital Limited
10699             xn--6frz82g
10700              
10701             // xn--6qq986b3xl : 2013-09-13 Tycoon Treasure Limited
10702             xn--6qq986b3xl
10703              
10704             // xn--80adxhks : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
10705             xn--80adxhks
10706              
10707             // xn--80aqecdr1a : 2015-10-21 Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)
10708             xn--80aqecdr1a
10709              
10710             // xn--80asehdb : 2013-07-14 CORE Association
10711             xn--80asehdb
10712              
10713             // xn--80aswg : 2013-07-14 CORE Association
10714             xn--80aswg
10715              
10716             // xn--8y0a063a : 2015-03-26 China United Network Communications Corporation Limited
10717             xn--8y0a063a
10718              
10719             // xn--9dbq2a : 2015-01-15 VeriSign Sarl
10720             xn--9dbq2a
10721              
10722             // xn--9et52u : 2014-06-12 RISE VICTORY LIMITED
10723             xn--9et52u
10724              
10725             // xn--9krt00a : 2015-03-12 Sina Corporation
10726             xn--9krt00a
10727              
10728             // xn--b4w605ferd : 2014-08-07 Temasek Holdings (Private) Limited
10729             xn--b4w605ferd
10730              
10731             // xn--bck1b9a5dre4c : 2015-02-26 Amazon Registry Services, Inc.
10732             xn--bck1b9a5dre4c
10733              
10734             // xn--c1avg : 2013-11-14 Public Interest Registry
10735             xn--c1avg
10736              
10737             // xn--c2br7g : 2015-01-15 VeriSign Sarl
10738             xn--c2br7g
10739              
10740             // xn--cck2b3b : 2015-02-26 Amazon Registry Services, Inc.
10741             xn--cck2b3b
10742              
10743             // xn--cckwcxetd : 2019-12-19 Amazon Registry Services, Inc.
10744             xn--cckwcxetd
10745              
10746             // xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD
10747             xn--cg4bki
10748              
10749             // xn--czr694b : 2014-01-16 Internet DotTrademark Organisation Limited
10750             xn--czr694b
10751              
10752             // xn--czrs0t : 2013-12-19 Binky Moon, LLC
10753             xn--czrs0t
10754              
10755             // xn--czru2d : 2013-11-21 Zodiac Aquarius Limited
10756             xn--czru2d
10757              
10758             // xn--d1acj3b : 2013-11-20 The Foundation for Network Initiatives “The Smart Internet”
10759             xn--d1acj3b
10760              
10761             // xn--eckvdtc9d : 2014-12-18 Amazon Registry Services, Inc.
10762             xn--eckvdtc9d
10763              
10764             // xn--efvy88h : 2014-08-22 Guangzhou YU Wei Information Technology Co., Ltd.
10765             xn--efvy88h
10766              
10767             // xn--fct429k : 2015-04-09 Amazon Registry Services, Inc.
10768             xn--fct429k
10769              
10770             // xn--fhbei : 2015-01-15 VeriSign Sarl
10771             xn--fhbei
10772              
10773             // xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED OY
10774             xn--fiq228c5hs
10775              
10776             // xn--fiq64b : 2013-10-14 CITIC Group Corporation
10777             xn--fiq64b
10778              
10779             // xn--fjq720a : 2014-05-22 Binky Moon, LLC
10780             xn--fjq720a
10781              
10782             // xn--flw351e : 2014-07-31 Charleston Road Registry Inc.
10783             xn--flw351e
10784              
10785             // xn--fzys8d69uvgm : 2015-05-14 PCCW Enterprises Limited
10786             xn--fzys8d69uvgm
10787              
10788             // xn--g2xx48c : 2015-01-30 Nawang Heli(Xiamen) Network Service Co., LTD.
10789             xn--g2xx48c
10790              
10791             // xn--gckr3f0f : 2015-02-26 Amazon Registry Services, Inc.
10792             xn--gckr3f0f
10793              
10794             // xn--gk3at1e : 2015-10-08 Amazon Registry Services, Inc.
10795             xn--gk3at1e
10796              
10797             // xn--hxt814e : 2014-05-15 Zodiac Taurus Limited
10798             xn--hxt814e
10799              
10800             // xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
10801             xn--i1b6b1a6a2e
10802              
10803             // xn--imr513n : 2014-12-11 Internet DotTrademark Organisation Limited
10804             xn--imr513n
10805              
10806             // xn--io0a7i : 2013-11-14 China Internet Network Information Center (CNNIC)
10807             xn--io0a7i
10808              
10809             // xn--j1aef : 2015-01-15 VeriSign Sarl
10810             xn--j1aef
10811              
10812             // xn--jlq480n2rg : 2019-12-19 Amazon Registry Services, Inc.
10813             xn--jlq480n2rg
10814              
10815             // xn--jlq61u9w7b : 2015-01-08 Nokia Corporation
10816             xn--jlq61u9w7b
10817              
10818             // xn--jvr189m : 2015-02-26 Amazon Registry Services, Inc.
10819             xn--jvr189m
10820              
10821             // xn--kcrx77d1x4a : 2014-11-07 Koninklijke Philips N.V.
10822             xn--kcrx77d1x4a
10823              
10824             // xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
10825             xn--kput3i
10826              
10827             // xn--mgba3a3ejt : 2014-11-20 Aramco Services Company
10828             xn--mgba3a3ejt
10829              
10830             // xn--mgba7c0bbn0a : 2015-05-14 Crescent Holding GmbH
10831             xn--mgba7c0bbn0a
10832              
10833             // xn--mgbaakc7dvf : 2015-09-03 Emirates Telecommunications Corporation (trading as Etisalat)
10834             xn--mgbaakc7dvf
10835              
10836             // xn--mgbab2bd : 2013-10-31 CORE Association
10837             xn--mgbab2bd
10838              
10839             // xn--mgbca7dzdo : 2015-07-30 Abu Dhabi Systems and Information Centre
10840             xn--mgbca7dzdo
10841              
10842             // xn--mgbi4ecexp : 2015-10-21 Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)
10843             xn--mgbi4ecexp
10844              
10845             // xn--mgbt3dhd : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
10846             xn--mgbt3dhd
10847              
10848             // xn--mk1bu44c : 2015-01-15 VeriSign Sarl
10849             xn--mk1bu44c
10850              
10851             // xn--mxtq1m : 2014-03-06 Net-Chinese Co., Ltd.
10852             xn--mxtq1m
10853              
10854             // xn--ngbc5azd : 2013-07-13 International Domain Registry Pty. Ltd.
10855             xn--ngbc5azd
10856              
10857             // xn--ngbe9e0a : 2014-12-04 Kuwait Finance House
10858             xn--ngbe9e0a
10859              
10860             // xn--ngbrx : 2015-11-12 League of Arab States
10861             xn--ngbrx
10862              
10863             // xn--nqv7f : 2013-11-14 Public Interest Registry
10864             xn--nqv7f
10865              
10866             // xn--nqv7fs00ema : 2013-11-14 Public Interest Registry
10867             xn--nqv7fs00ema
10868              
10869             // xn--nyqy26a : 2014-11-07 Stable Tone Limited
10870             xn--nyqy26a
10871              
10872             // xn--otu796d : 2017-08-06 Jiang Yu Liang Cai Technology Company Limited
10873             xn--otu796d
10874              
10875             // xn--p1acf : 2013-12-12 Rusnames Limited
10876             xn--p1acf
10877              
10878             // xn--pssy2u : 2015-01-15 VeriSign Sarl
10879             xn--pssy2u
10880              
10881             // xn--q9jyb4c : 2013-09-17 Charleston Road Registry Inc.
10882             xn--q9jyb4c
10883              
10884             // xn--qcka1pmc : 2014-07-31 Charleston Road Registry Inc.
10885             xn--qcka1pmc
10886              
10887             // xn--rhqv96g : 2013-09-11 Stable Tone Limited
10888             xn--rhqv96g
10889              
10890             // xn--rovu88b : 2015-02-26 Amazon Registry Services, Inc.
10891             xn--rovu88b
10892              
10893             // xn--ses554g : 2014-01-16 KNET Co., Ltd.
10894             xn--ses554g
10895              
10896             // xn--t60b56a : 2015-01-15 VeriSign Sarl
10897             xn--t60b56a
10898              
10899             // xn--tckwe : 2015-01-15 VeriSign Sarl
10900             xn--tckwe
10901              
10902             // xn--tiq49xqyj : 2015-10-21 Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)
10903             xn--tiq49xqyj
10904              
10905             // xn--unup4y : 2013-07-14 Binky Moon, LLC
10906             xn--unup4y
10907              
10908             // xn--vermgensberater-ctb : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
10909             xn--vermgensberater-ctb
10910              
10911             // xn--vermgensberatung-pwb : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
10912             xn--vermgensberatung-pwb
10913              
10914             // xn--vhquv : 2013-08-27 Binky Moon, LLC
10915             xn--vhquv
10916              
10917             // xn--vuq861b : 2014-10-16 Beijing Tele-info Network Technology Co., Ltd.
10918             xn--vuq861b
10919              
10920             // xn--w4r85el8fhu5dnra : 2015-04-30 Kerry Trading Co. Limited
10921             xn--w4r85el8fhu5dnra
10922              
10923             // xn--w4rs40l : 2015-07-30 Kerry Trading Co. Limited
10924             xn--w4rs40l
10925              
10926             // xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd.
10927             xn--xhq521b
10928              
10929             // xn--zfr164b : 2013-11-08 China Organizational Name Administration Center
10930             xn--zfr164b
10931              
10932             // xyz : 2013-12-05 XYZ.COM LLC
10933             xyz
10934              
10935             // yachts : 2014-01-09 XYZ.COM LLC
10936             yachts
10937              
10938             // yahoo : 2015-04-02 Oath Inc.
10939             yahoo
10940              
10941             // yamaxun : 2014-12-18 Amazon Registry Services, Inc.
10942             yamaxun
10943              
10944             // yandex : 2014-04-10 Yandex Europe B.V.
10945             yandex
10946              
10947             // yodobashi : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
10948             yodobashi
10949              
10950             // yoga : 2014-05-29 Registry Services, LLC
10951             yoga
10952              
10953             // yokohama : 2013-12-12 GMO Registry, Inc.
10954             yokohama
10955              
10956             // you : 2015-04-09 Amazon Registry Services, Inc.
10957             you
10958              
10959             // youtube : 2014-05-01 Charleston Road Registry Inc.
10960             youtube
10961              
10962             // yun : 2015-01-08 Beijing Qihu Keji Co., Ltd.
10963             yun
10964              
10965             // zappos : 2015-06-25 Amazon Registry Services, Inc.
10966             zappos
10967              
10968             // zara : 2014-11-07 Industria de Diseño Textil, S.A. (INDITEX, S.A.)
10969             zara
10970              
10971             // zero : 2014-12-18 Amazon Registry Services, Inc.
10972             zero
10973              
10974             // zip : 2014-05-08 Charleston Road Registry Inc.
10975             zip
10976              
10977             // zone : 2013-11-14 Binky Moon, LLC
10978             zone
10979              
10980             // zuerich : 2014-11-07 Kanton Zürich (Canton of Zurich)
10981             zuerich
10982              
10983              
10984             // ===END ICANN DOMAINS===
10985             // ===BEGIN PRIVATE DOMAINS===
10986             // (Note: these are in alphabetical order by company name)
10987              
10988             // 1GB LLC : https://www.1gb.ua/
10989             // Submitted by 1GB LLC
10990             cc.ua
10991             inf.ua
10992             ltd.ua
10993              
10994             // 611coin : https://611project.org/
10995             611.to
10996              
10997             // Aaron Marais' Gitlab pages: https://lab.aaronleem.co.za
10998             // Submitted by Aaron Marais
10999             graphox.us
11000              
11001             // accesso Technology Group, plc. : https://accesso.com/
11002             // Submitted by accesso Team
11003             *.devcdnaccesso.com
11004              
11005             // Acorn Labs : https://acorn.io
11006             // Submitted by Craig Jellick
11007             *.on-acorn.io
11008              
11009             // Adobe : https://www.adobe.com/
11010             // Submitted by Ian Boston and Lars Trieloff
11011             adobeaemcloud.com
11012             *.dev.adobeaemcloud.com
11013             hlx.live
11014             adobeaemcloud.net
11015             hlx.page
11016             hlx3.page
11017              
11018             // Agnat sp. z o.o. : https://domena.pl
11019             // Submitted by Przemyslaw Plewa
11020             beep.pl
11021              
11022             // Airkit : https://www.airkit.com/
11023             // Submitted by Grant Cooksey
11024             airkitapps.com
11025             airkitapps-au.com
11026             airkitapps.eu
11027              
11028             // Aiven: https://aiven.io/
11029             // Submitted by Etienne Stalmans
11030             aivencloud.com
11031              
11032             // alboto.ca : http://alboto.ca
11033             // Submitted by Anton Avramov
11034             barsy.ca
11035              
11036             // Alces Software Ltd : http://alces-software.com
11037             // Submitted by Mark J. Titorenko
11038             *.compute.estate
11039             *.alces.network
11040              
11041             // all-inkl.com : https://all-inkl.com
11042             // Submitted by Werner Kaltofen
11043             kasserver.com
11044              
11045             // Altervista: https://www.altervista.org
11046             // Submitted by Carlo Cannas
11047             altervista.org
11048              
11049             // alwaysdata : https://www.alwaysdata.com
11050             // Submitted by Cyril
11051             alwaysdata.net
11052              
11053             // Amaze Software : https://amaze.co
11054             // Submitted by Domain Admin
11055             myamaze.net
11056              
11057             // Amazon : https://www.amazon.com/
11058             // Submitted by AWS Security
11059             // Subsections of Amazon/subsidiaries will appear until "concludes" tag
11060              
11061             // Amazon CloudFront
11062             // Submitted by Donavan Miller
11063             // Reference: 54144616-fd49-4435-8535-19c6a601bdb3
11064             cloudfront.net
11065              
11066             // Amazon EC2
11067             // Submitted by Luke Wells
11068             // Reference: 4c38fa71-58ac-4768-99e5-689c1767e537
11069             *.compute.amazonaws.com
11070             *.compute-1.amazonaws.com
11071             *.compute.amazonaws.com.cn
11072             us-east-1.amazonaws.com
11073              
11074             // Amazon S3
11075             // Submitted by Luke Wells
11076             // Reference: d068bd97-f0a9-4838-a6d8-954b622ef4ae
11077             s3.cn-north-1.amazonaws.com.cn
11078             s3.dualstack.ap-northeast-1.amazonaws.com
11079             s3.dualstack.ap-northeast-2.amazonaws.com
11080             s3.ap-northeast-2.amazonaws.com
11081             s3-website.ap-northeast-2.amazonaws.com
11082             s3.dualstack.ap-south-1.amazonaws.com
11083             s3.ap-south-1.amazonaws.com
11084             s3-website.ap-south-1.amazonaws.com
11085             s3.dualstack.ap-southeast-1.amazonaws.com
11086             s3.dualstack.ap-southeast-2.amazonaws.com
11087             s3.dualstack.ca-central-1.amazonaws.com
11088             s3.ca-central-1.amazonaws.com
11089             s3-website.ca-central-1.amazonaws.com
11090             s3.dualstack.eu-central-1.amazonaws.com
11091             s3.eu-central-1.amazonaws.com
11092             s3-website.eu-central-1.amazonaws.com
11093             s3.dualstack.eu-west-1.amazonaws.com
11094             s3.dualstack.eu-west-2.amazonaws.com
11095             s3.eu-west-2.amazonaws.com
11096             s3-website.eu-west-2.amazonaws.com
11097             s3.dualstack.eu-west-3.amazonaws.com
11098             s3.eu-west-3.amazonaws.com
11099             s3-website.eu-west-3.amazonaws.com
11100             s3.amazonaws.com
11101             s3-ap-northeast-1.amazonaws.com
11102             s3-ap-northeast-2.amazonaws.com
11103             s3-ap-south-1.amazonaws.com
11104             s3-ap-southeast-1.amazonaws.com
11105             s3-ap-southeast-2.amazonaws.com
11106             s3-ca-central-1.amazonaws.com
11107             s3-eu-central-1.amazonaws.com
11108             s3-eu-west-1.amazonaws.com
11109             s3-eu-west-2.amazonaws.com
11110             s3-eu-west-3.amazonaws.com
11111             s3-external-1.amazonaws.com
11112             s3-fips-us-gov-west-1.amazonaws.com
11113             s3-sa-east-1.amazonaws.com
11114             s3-us-east-2.amazonaws.com
11115             s3-us-gov-west-1.amazonaws.com
11116             s3-us-west-1.amazonaws.com
11117             s3-us-west-2.amazonaws.com
11118             s3-website-ap-northeast-1.amazonaws.com
11119             s3-website-ap-southeast-1.amazonaws.com
11120             s3-website-ap-southeast-2.amazonaws.com
11121             s3-website-eu-west-1.amazonaws.com
11122             s3-website-sa-east-1.amazonaws.com
11123             s3-website-us-east-1.amazonaws.com
11124             s3-website-us-west-1.amazonaws.com
11125             s3-website-us-west-2.amazonaws.com
11126             s3.dualstack.sa-east-1.amazonaws.com
11127             s3.dualstack.us-east-1.amazonaws.com
11128             s3.dualstack.us-east-2.amazonaws.com
11129             s3.us-east-2.amazonaws.com
11130             s3-website.us-east-2.amazonaws.com
11131              
11132             // AWS Cloud9
11133             // Submitted by: AWS Security
11134             // Reference: 2b6dfa9a-3a7f-4367-b2e7-0321e77c0d59
11135             vfs.cloud9.af-south-1.amazonaws.com
11136             webview-assets.cloud9.af-south-1.amazonaws.com
11137             vfs.cloud9.ap-east-1.amazonaws.com
11138             webview-assets.cloud9.ap-east-1.amazonaws.com
11139             vfs.cloud9.ap-northeast-1.amazonaws.com
11140             webview-assets.cloud9.ap-northeast-1.amazonaws.com
11141             vfs.cloud9.ap-northeast-2.amazonaws.com
11142             webview-assets.cloud9.ap-northeast-2.amazonaws.com
11143             vfs.cloud9.ap-northeast-3.amazonaws.com
11144             webview-assets.cloud9.ap-northeast-3.amazonaws.com
11145             vfs.cloud9.ap-south-1.amazonaws.com
11146             webview-assets.cloud9.ap-south-1.amazonaws.com
11147             vfs.cloud9.ap-southeast-1.amazonaws.com
11148             webview-assets.cloud9.ap-southeast-1.amazonaws.com
11149             vfs.cloud9.ap-southeast-2.amazonaws.com
11150             webview-assets.cloud9.ap-southeast-2.amazonaws.com
11151             vfs.cloud9.ca-central-1.amazonaws.com
11152             webview-assets.cloud9.ca-central-1.amazonaws.com
11153             vfs.cloud9.eu-central-1.amazonaws.com
11154             webview-assets.cloud9.eu-central-1.amazonaws.com
11155             vfs.cloud9.eu-north-1.amazonaws.com
11156             webview-assets.cloud9.eu-north-1.amazonaws.com
11157             vfs.cloud9.eu-south-1.amazonaws.com
11158             webview-assets.cloud9.eu-south-1.amazonaws.com
11159             vfs.cloud9.eu-west-1.amazonaws.com
11160             webview-assets.cloud9.eu-west-1.amazonaws.com
11161             vfs.cloud9.eu-west-2.amazonaws.com
11162             webview-assets.cloud9.eu-west-2.amazonaws.com
11163             vfs.cloud9.eu-west-3.amazonaws.com
11164             webview-assets.cloud9.eu-west-3.amazonaws.com
11165             vfs.cloud9.me-south-1.amazonaws.com
11166             webview-assets.cloud9.me-south-1.amazonaws.com
11167             vfs.cloud9.sa-east-1.amazonaws.com
11168             webview-assets.cloud9.sa-east-1.amazonaws.com
11169             vfs.cloud9.us-east-1.amazonaws.com
11170             webview-assets.cloud9.us-east-1.amazonaws.com
11171             vfs.cloud9.us-east-2.amazonaws.com
11172             webview-assets.cloud9.us-east-2.amazonaws.com
11173             vfs.cloud9.us-west-1.amazonaws.com
11174             webview-assets.cloud9.us-west-1.amazonaws.com
11175             vfs.cloud9.us-west-2.amazonaws.com
11176             webview-assets.cloud9.us-west-2.amazonaws.com
11177              
11178             // AWS Elastic Beanstalk
11179             // Submitted by Luke Wells
11180             // Reference: aa202394-43a0-4857-b245-8db04549137e
11181             cn-north-1.eb.amazonaws.com.cn
11182             cn-northwest-1.eb.amazonaws.com.cn
11183             elasticbeanstalk.com
11184             ap-northeast-1.elasticbeanstalk.com
11185             ap-northeast-2.elasticbeanstalk.com
11186             ap-northeast-3.elasticbeanstalk.com
11187             ap-south-1.elasticbeanstalk.com
11188             ap-southeast-1.elasticbeanstalk.com
11189             ap-southeast-2.elasticbeanstalk.com
11190             ca-central-1.elasticbeanstalk.com
11191             eu-central-1.elasticbeanstalk.com
11192             eu-west-1.elasticbeanstalk.com
11193             eu-west-2.elasticbeanstalk.com
11194             eu-west-3.elasticbeanstalk.com
11195             sa-east-1.elasticbeanstalk.com
11196             us-east-1.elasticbeanstalk.com
11197             us-east-2.elasticbeanstalk.com
11198             us-gov-west-1.elasticbeanstalk.com
11199             us-west-1.elasticbeanstalk.com
11200             us-west-2.elasticbeanstalk.com
11201              
11202             // (AWS) Elastic Load Balancing
11203             // Submitted by Luke Wells
11204             // Reference: 12a3d528-1bac-4433-a359-a395867ffed2
11205             *.elb.amazonaws.com.cn
11206             *.elb.amazonaws.com
11207              
11208             // AWS Global Accelerator
11209             // Submitted by Daniel Massaguer
11210             // Reference: d916759d-a08b-4241-b536-4db887383a6a
11211             awsglobalaccelerator.com
11212              
11213             // eero
11214             // Submitted by Yue Kang
11215             // Reference: 264afe70-f62c-4c02-8ab9-b5281ed24461
11216             eero.online
11217             eero-stage.online
11218              
11219             // concludes Amazon
11220              
11221             // Amune : https://amune.org/
11222             // Submitted by Team Amune
11223             t3l3p0rt.net
11224             tele.amune.org
11225              
11226             // Apigee : https://apigee.com/
11227             // Submitted by Apigee Security Team
11228             apigee.io
11229              
11230             // Apphud : https://apphud.com
11231             // Submitted by Alexander Selivanov
11232             siiites.com
11233              
11234             // Appspace : https://www.appspace.com
11235             // Submitted by Appspace Security Team
11236             appspacehosted.com
11237             appspaceusercontent.com
11238              
11239             // Appudo UG (haftungsbeschränkt) : https://www.appudo.com
11240             // Submitted by Alexander Hochbaum
11241             appudo.net
11242              
11243             // Aptible : https://www.aptible.com/
11244             // Submitted by Thomas Orozco
11245             on-aptible.com
11246              
11247             // ASEINet : https://www.aseinet.com/
11248             // Submitted by Asei SEKIGUCHI
11249             user.aseinet.ne.jp
11250             gv.vc
11251             d.gv.vc
11252              
11253             // Asociación Amigos de la Informática "Euskalamiga" : http://encounter.eus/
11254             // Submitted by Hector Martin
11255             user.party.eus
11256              
11257             // Association potager.org : https://potager.org/
11258             // Submitted by Lunar
11259             pimienta.org
11260             poivron.org
11261             potager.org
11262             sweetpepper.org
11263              
11264             // ASUSTOR Inc. : http://www.asustor.com
11265             // Submitted by Vincent Tseng
11266             myasustor.com
11267              
11268             // Atlassian : https://atlassian.com
11269             // Submitted by Sam Smyth
11270             cdn.prod.atlassian-dev.net
11271              
11272             // Authentick UG (haftungsbeschränkt) : https://authentick.net
11273             // Submitted by Lukas Reschke
11274             translated.page
11275              
11276             // AVM : https://avm.de
11277             // Submitted by Andreas Weise
11278             myfritz.net
11279              
11280             // AVStack Pte. Ltd. : https://avstack.io
11281             // Submitted by Jasper Hugo
11282             onavstack.net
11283              
11284             // AW AdvisorWebsites.com Software Inc : https://advisorwebsites.com
11285             // Submitted by James Kennedy
11286             *.awdev.ca
11287             *.advisor.ws
11288              
11289             // AZ.pl sp. z.o.o: https://az.pl
11290             // Submitted by Krzysztof Wolski
11291             ecommerce-shop.pl
11292              
11293             // b-data GmbH : https://www.b-data.io
11294             // Submitted by Olivier Benz
11295             b-data.io
11296              
11297             // backplane : https://www.backplane.io
11298             // Submitted by Anthony Voutas
11299             backplaneapp.io
11300              
11301             // Balena : https://www.balena.io
11302             // Submitted by Petros Angelatos
11303             balena-devices.com
11304              
11305             // University of Banja Luka : https://unibl.org
11306             // Domains for Republic of Srpska administrative entity.
11307             // Submitted by Marko Ivanovic
11308             rs.ba
11309              
11310             // Banzai Cloud
11311             // Submitted by Janos Matyas
11312             *.banzai.cloud
11313             app.banzaicloud.io
11314             *.backyards.banzaicloud.io
11315              
11316             // BASE, Inc. : https://binc.jp
11317             // Submitted by Yuya NAGASAWA
11318             base.ec
11319             official.ec
11320             buyshop.jp
11321             fashionstore.jp
11322             handcrafted.jp
11323             kawaiishop.jp
11324             supersale.jp
11325             theshop.jp
11326             shopselect.net
11327             base.shop
11328              
11329             // BeagleBoard.org Foundation : https://beagleboard.org
11330             // Submitted by Jason Kridner
11331             beagleboard.io
11332              
11333             // Beget Ltd
11334             // Submitted by Lev Nekrasov
11335             *.beget.app
11336              
11337             // BetaInABox
11338             // Submitted by Adrian
11339             betainabox.com
11340              
11341             // BinaryLane : http://www.binarylane.com
11342             // Submitted by Nathan O'Sullivan
11343             bnr.la
11344              
11345             // Bitbucket : http://bitbucket.org
11346             // Submitted by Andy Ortlieb
11347             bitbucket.io
11348              
11349             // Blackbaud, Inc. : https://www.blackbaud.com
11350             // Submitted by Paul Crowder
11351             blackbaudcdn.net
11352              
11353             // Blatech : http://www.blatech.net
11354             // Submitted by Luke Bratch
11355             of.je
11356              
11357             // Blue Bite, LLC : https://bluebite.com
11358             // Submitted by Joshua Weiss
11359             bluebite.io
11360              
11361             // Boomla : https://boomla.com
11362             // Submitted by Tibor Halter
11363             boomla.net
11364              
11365             // Boutir : https://www.boutir.com
11366             // Submitted by Eric Ng Ka Ka
11367             boutir.com
11368              
11369             // Boxfuse : https://boxfuse.com
11370             // Submitted by Axel Fontaine
11371             boxfuse.io
11372              
11373             // bplaced : https://www.bplaced.net/
11374             // Submitted by Miroslav Bozic
11375             square7.ch
11376             bplaced.com
11377             bplaced.de
11378             square7.de
11379             bplaced.net
11380             square7.net
11381              
11382             // Brendly : https://brendly.rs
11383             // Submitted by Dusan Radovanovic
11384             shop.brendly.rs
11385              
11386             // BrowserSafetyMark
11387             // Submitted by Dave Tharp
11388             browsersafetymark.io
11389              
11390             // Bytemark Hosting : https://www.bytemark.co.uk
11391             // Submitted by Paul Cammish
11392             uk0.bigv.io
11393             dh.bytemark.co.uk
11394             vm.bytemark.co.uk
11395              
11396             // Caf.js Labs LLC : https://www.cafjs.com
11397             // Submitted by Antonio Lain
11398             cafjs.com
11399              
11400             // callidomus : https://www.callidomus.com/
11401             // Submitted by Marcus Popp
11402             mycd.eu
11403              
11404             // Carrd : https://carrd.co
11405             // Submitted by AJ
11406             drr.ac
11407             uwu.ai
11408             carrd.co
11409             crd.co
11410             ju.mp
11411              
11412             // CentralNic : http://www.centralnic.com/names/domains
11413             // Submitted by registry
11414             ae.org
11415             br.com
11416             cn.com
11417             com.de
11418             com.se
11419             de.com
11420             eu.com
11421             gb.net
11422             hu.net
11423             jp.net
11424             jpn.com
11425             mex.com
11426             ru.com
11427             sa.com
11428             se.net
11429             uk.com
11430             uk.net
11431             us.com
11432             za.bz
11433             za.com
11434              
11435             // No longer operated by CentralNic, these entries should be adopted and/or removed by current operators
11436             // Submitted by Gavin Brown
11437             ar.com
11438             hu.com
11439             kr.com
11440             no.com
11441             qc.com
11442             uy.com
11443              
11444             // Africa.com Web Solutions Ltd : https://registry.africa.com
11445             // Submitted by Gavin Brown
11446             africa.com
11447              
11448             // iDOT Services Limited : http://www.domain.gr.com
11449             // Submitted by Gavin Brown
11450             gr.com
11451              
11452             // Radix FZC : http://domains.in.net
11453             // Submitted by Gavin Brown
11454             in.net
11455             web.in
11456              
11457             // US REGISTRY LLC : http://us.org
11458             // Submitted by Gavin Brown
11459             us.org
11460              
11461             // co.com Registry, LLC : https://registry.co.com
11462             // Submitted by Gavin Brown
11463             co.com
11464              
11465             // Roar Domains LLC : https://roar.basketball/
11466             // Submitted by Gavin Brown
11467             aus.basketball
11468             nz.basketball
11469              
11470             // BRS Media : https://brsmedia.com/
11471             // Submitted by Gavin Brown
11472             radio.am
11473             radio.fm
11474              
11475             // c.la : http://www.c.la/
11476             c.la
11477              
11478             // certmgr.org : https://certmgr.org
11479             // Submitted by B. Blechschmidt
11480             certmgr.org
11481              
11482             // Cityhost LLC : https://cityhost.ua
11483             // Submitted by Maksym Rivtin
11484             cx.ua
11485              
11486             // Civilized Discourse Construction Kit, Inc. : https://www.discourse.org/
11487             // Submitted by Rishabh Nambiar & Michael Brown
11488             discourse.group
11489             discourse.team
11490              
11491             // Clever Cloud : https://www.clever-cloud.com/
11492             // Submitted by Quentin Adam
11493             cleverapps.io
11494              
11495             // Clerk : https://www.clerk.dev
11496             // Submitted by Colin Sidoti
11497             clerk.app
11498             clerkstage.app
11499             *.lcl.dev
11500             *.lclstage.dev
11501             *.stg.dev
11502             *.stgstage.dev
11503              
11504             // ClickRising : https://clickrising.com/
11505             // Submitted by Umut Gumeli
11506             clickrising.net
11507              
11508             // Cloud66 : https://www.cloud66.com/
11509             // Submitted by Khash Sajadi
11510             c66.me
11511             cloud66.ws
11512             cloud66.zone
11513              
11514             // CloudAccess.net : https://www.cloudaccess.net/
11515             // Submitted by Pawel Panek
11516             jdevcloud.com
11517             wpdevcloud.com
11518             cloudaccess.host
11519             freesite.host
11520             cloudaccess.net
11521              
11522             // cloudControl : https://www.cloudcontrol.com/
11523             // Submitted by Tobias Wilken
11524             cloudcontrolled.com
11525             cloudcontrolapp.com
11526              
11527             // Cloudera, Inc. : https://www.cloudera.com/
11528             // Submitted by Kedarnath Waikar
11529             *.cloudera.site
11530              
11531             // Cloudflare, Inc. : https://www.cloudflare.com/
11532             // Submitted by Cloudflare Team
11533             pages.dev
11534             trycloudflare.com
11535             workers.dev
11536              
11537             // Clovyr : https://clovyr.io
11538             // Submitted by Patrick Nielsen
11539             wnext.app
11540              
11541             // co.ca : http://registry.co.ca/
11542             co.ca
11543              
11544             // Co & Co : https://co-co.nl/
11545             // Submitted by Govert Versluis
11546             *.otap.co
11547              
11548             // i-registry s.r.o. : http://www.i-registry.cz/
11549             // Submitted by Martin Semrad
11550             co.cz
11551              
11552             // CDN77.com : http://www.cdn77.com
11553             // Submitted by Jan Krpes
11554             c.cdn77.org
11555             cdn77-ssl.net
11556             r.cdn77.net
11557             rsc.cdn77.org
11558             ssl.origin.cdn77-secure.org
11559              
11560             // Cloud DNS Ltd : http://www.cloudns.net
11561             // Submitted by Aleksander Hristov
11562             cloudns.asia
11563             cloudns.biz
11564             cloudns.club
11565             cloudns.cc
11566             cloudns.eu
11567             cloudns.in
11568             cloudns.info
11569             cloudns.org
11570             cloudns.pro
11571             cloudns.pw
11572             cloudns.us
11573              
11574             // CNPY : https://cnpy.gdn
11575             // Submitted by Angelo Gladding
11576             cnpy.gdn
11577              
11578             // Codeberg e. V. : https://codeberg.org
11579             // Submitted by Moritz Marquardt
11580             codeberg.page
11581              
11582             // CoDNS B.V.
11583             co.nl
11584             co.no
11585              
11586             // Combell.com : https://www.combell.com
11587             // Submitted by Thomas Wouters
11588             webhosting.be
11589             hosting-cluster.nl
11590              
11591             // Coordination Center for TLD RU and XN--P1AI : https://cctld.ru/en/domains/domens_ru/reserved/
11592             // Submitted by George Georgievsky
11593             ac.ru
11594             edu.ru
11595             gov.ru
11596             int.ru
11597             mil.ru
11598             test.ru
11599              
11600             // COSIMO GmbH : http://www.cosimo.de
11601             // Submitted by Rene Marticke
11602             dyn.cosidns.de
11603             dynamisches-dns.de
11604             dnsupdater.de
11605             internet-dns.de
11606             l-o-g-i-n.de
11607             dynamic-dns.info
11608             feste-ip.net
11609             knx-server.net
11610             static-access.net
11611              
11612             // Craynic, s.r.o. : http://www.craynic.com/
11613             // Submitted by Ales Krajnik
11614             realm.cz
11615              
11616             // Cryptonomic : https://cryptonomic.net/
11617             // Submitted by Andrew Cady
11618             *.cryptonomic.net
11619              
11620             // Cupcake : https://cupcake.io/
11621             // Submitted by Jonathan Rudenberg
11622             cupcake.is
11623              
11624             // Curv UG : https://curv-labs.de/
11625             // Submitted by Marvin Wiesner
11626             curv.dev
11627              
11628             // Customer OCI - Oracle Dyn https://cloud.oracle.com/home https://dyn.com/dns/
11629             // Submitted by Gregory Drake
11630             // Note: This is intended to also include customer-oci.com due to wildcards implicitly including the current label
11631             *.customer-oci.com
11632             *.oci.customer-oci.com
11633             *.ocp.customer-oci.com
11634             *.ocs.customer-oci.com
11635              
11636             // cyon GmbH : https://www.cyon.ch/
11637             // Submitted by Dominic Luechinger
11638             cyon.link
11639             cyon.site
11640              
11641             // Danger Science Group: https://dangerscience.com/
11642             // Submitted by Skylar MacDonald
11643             fnwk.site
11644             folionetwork.site
11645             platform0.app
11646              
11647             // Daplie, Inc : https://daplie.com
11648             // Submitted by AJ ONeal
11649             daplie.me
11650             localhost.daplie.me
11651              
11652             // Datto, Inc. : https://www.datto.com/
11653             // Submitted by Philipp Heckel
11654             dattolocal.com
11655             dattorelay.com
11656             dattoweb.com
11657             mydatto.com
11658             dattolocal.net
11659             mydatto.net
11660              
11661             // Dansk.net : http://www.dansk.net/
11662             // Submitted by Anani Voule
11663             biz.dk
11664             co.dk
11665             firm.dk
11666             reg.dk
11667             store.dk
11668              
11669             // dappnode.io : https://dappnode.io/
11670             // Submitted by Abel Boldu / DAppNode Team
11671             dyndns.dappnode.io
11672              
11673             // dapps.earth : https://dapps.earth/
11674             // Submitted by Daniil Burdakov
11675             *.dapps.earth
11676             *.bzz.dapps.earth
11677              
11678             // Dark, Inc. : https://darklang.com
11679             // Submitted by Paul Biggar
11680             builtwithdark.com
11681              
11682             // DataDetect, LLC. : https://datadetect.com
11683             // Submitted by Andrew Banchich
11684             demo.datadetect.com
11685             instance.datadetect.com
11686              
11687             // Datawire, Inc : https://www.datawire.io
11688             // Submitted by Richard Li
11689             edgestack.me
11690              
11691             // DDNS5 : https://ddns5.com
11692             // Submitted by Cameron Elliott
11693             ddns5.com
11694              
11695             // Debian : https://www.debian.org/
11696             // Submitted by Peter Palfrader / Debian Sysadmin Team
11697             debian.net
11698              
11699             // Deno Land Inc : https://deno.com/
11700             // Submitted by Luca Casonato
11701             deno.dev
11702             deno-staging.dev
11703              
11704             // deSEC : https://desec.io/
11705             // Submitted by Peter Thomassen
11706             dedyn.io
11707              
11708             // Deta: https://www.deta.sh/
11709             // Submitted by Aavash Shrestha
11710             deta.app
11711             deta.dev
11712              
11713             // Diher Solutions : https://diher.solutions
11714             // Submitted by Didi Hermawan
11715             *.rss.my.id
11716             *.diher.solutions
11717              
11718             // Discord Inc : https://discord.com
11719             // Submitted by Sahn Lam
11720             discordsays.com
11721             discordsez.com
11722              
11723             // DNS Africa Ltd https://dns.business
11724             // Submitted by Calvin Browne
11725             jozi.biz
11726              
11727             // DNShome : https://www.dnshome.de/
11728             // Submitted by Norbert Auler
11729             dnshome.de
11730              
11731             // DotArai : https://www.dotarai.com/
11732             // Submitted by Atsadawat Netcharadsang
11733             online.th
11734             shop.th
11735              
11736             // DrayTek Corp. : https://www.draytek.com/
11737             // Submitted by Paul Fang
11738             drayddns.com
11739              
11740             // DreamCommerce : https://shoper.pl/
11741             // Submitted by Konrad Kotarba
11742             shoparena.pl
11743              
11744             // DreamHost : http://www.dreamhost.com/
11745             // Submitted by Andrew Farmer
11746             dreamhosters.com
11747              
11748             // Drobo : http://www.drobo.com/
11749             // Submitted by Ricardo Padilha
11750             mydrobo.com
11751              
11752             // Drud Holdings, LLC. : https://www.drud.com/
11753             // Submitted by Kevin Bridges
11754             drud.io
11755             drud.us
11756              
11757             // DuckDNS : http://www.duckdns.org/
11758             // Submitted by Richard Harper
11759             duckdns.org
11760              
11761             // Bip : https://bip.sh
11762             // Submitted by Joel Kennedy
11763             bip.sh
11764              
11765             // bitbridge.net : Submitted by Craig Welch, abeliidev@gmail.com
11766             bitbridge.net
11767              
11768             // dy.fi : http://dy.fi/
11769             // Submitted by Heikki Hannikainen
11770             dy.fi
11771             tunk.org
11772              
11773             // DynDNS.com : http://www.dyndns.com/services/dns/dyndns/
11774             dyndns-at-home.com
11775             dyndns-at-work.com
11776             dyndns-blog.com
11777             dyndns-free.com
11778             dyndns-home.com
11779             dyndns-ip.com
11780             dyndns-mail.com
11781             dyndns-office.com
11782             dyndns-pics.com
11783             dyndns-remote.com
11784             dyndns-server.com
11785             dyndns-web.com
11786             dyndns-wiki.com
11787             dyndns-work.com
11788             dyndns.biz
11789             dyndns.info
11790             dyndns.org
11791             dyndns.tv
11792             at-band-camp.net
11793             ath.cx
11794             barrel-of-knowledge.info
11795             barrell-of-knowledge.info
11796             better-than.tv
11797             blogdns.com
11798             blogdns.net
11799             blogdns.org
11800             blogsite.org
11801             boldlygoingnowhere.org
11802             broke-it.net
11803             buyshouses.net
11804             cechire.com
11805             dnsalias.com
11806             dnsalias.net
11807             dnsalias.org
11808             dnsdojo.com
11809             dnsdojo.net
11810             dnsdojo.org
11811             does-it.net
11812             doesntexist.com
11813             doesntexist.org
11814             dontexist.com
11815             dontexist.net
11816             dontexist.org
11817             doomdns.com
11818             doomdns.org
11819             dvrdns.org
11820             dyn-o-saur.com
11821             dynalias.com
11822             dynalias.net
11823             dynalias.org
11824             dynathome.net
11825             dyndns.ws
11826             endofinternet.net
11827             endofinternet.org
11828             endoftheinternet.org
11829             est-a-la-maison.com
11830             est-a-la-masion.com
11831             est-le-patron.com
11832             est-mon-blogueur.com
11833             for-better.biz
11834             for-more.biz
11835             for-our.info
11836             for-some.biz
11837             for-the.biz
11838             forgot.her.name
11839             forgot.his.name
11840             from-ak.com
11841             from-al.com
11842             from-ar.com
11843             from-az.net
11844             from-ca.com
11845             from-co.net
11846             from-ct.com
11847             from-dc.com
11848             from-de.com
11849             from-fl.com
11850             from-ga.com
11851             from-hi.com
11852             from-ia.com
11853             from-id.com
11854             from-il.com
11855             from-in.com
11856             from-ks.com
11857             from-ky.com
11858             from-la.net
11859             from-ma.com
11860             from-md.com
11861             from-me.org
11862             from-mi.com
11863             from-mn.com
11864             from-mo.com
11865             from-ms.com
11866             from-mt.com
11867             from-nc.com
11868             from-nd.com
11869             from-ne.com
11870             from-nh.com
11871             from-nj.com
11872             from-nm.com
11873             from-nv.com
11874             from-ny.net
11875             from-oh.com
11876             from-ok.com
11877             from-or.com
11878             from-pa.com
11879             from-pr.com
11880             from-ri.com
11881             from-sc.com
11882             from-sd.com
11883             from-tn.com
11884             from-tx.com
11885             from-ut.com
11886             from-va.com
11887             from-vt.com
11888             from-wa.com
11889             from-wi.com
11890             from-wv.com
11891             from-wy.com
11892             ftpaccess.cc
11893             fuettertdasnetz.de
11894             game-host.org
11895             game-server.cc
11896             getmyip.com
11897             gets-it.net
11898             go.dyndns.org
11899             gotdns.com
11900             gotdns.org
11901             groks-the.info
11902             groks-this.info
11903             ham-radio-op.net
11904             here-for-more.info
11905             hobby-site.com
11906             hobby-site.org
11907             home.dyndns.org
11908             homedns.org
11909             homeftp.net
11910             homeftp.org
11911             homeip.net
11912             homelinux.com
11913             homelinux.net
11914             homelinux.org
11915             homeunix.com
11916             homeunix.net
11917             homeunix.org
11918             iamallama.com
11919             in-the-band.net
11920             is-a-anarchist.com
11921             is-a-blogger.com
11922             is-a-bookkeeper.com
11923             is-a-bruinsfan.org
11924             is-a-bulls-fan.com
11925             is-a-candidate.org
11926             is-a-caterer.com
11927             is-a-celticsfan.org
11928             is-a-chef.com
11929             is-a-chef.net
11930             is-a-chef.org
11931             is-a-conservative.com
11932             is-a-cpa.com
11933             is-a-cubicle-slave.com
11934             is-a-democrat.com
11935             is-a-designer.com
11936             is-a-doctor.com
11937             is-a-financialadvisor.com
11938             is-a-geek.com
11939             is-a-geek.net
11940             is-a-geek.org
11941             is-a-green.com
11942             is-a-guru.com
11943             is-a-hard-worker.com
11944             is-a-hunter.com
11945             is-a-knight.org
11946             is-a-landscaper.com
11947             is-a-lawyer.com
11948             is-a-liberal.com
11949             is-a-libertarian.com
11950             is-a-linux-user.org
11951             is-a-llama.com
11952             is-a-musician.com
11953             is-a-nascarfan.com
11954             is-a-nurse.com
11955             is-a-painter.com
11956             is-a-patsfan.org
11957             is-a-personaltrainer.com
11958             is-a-photographer.com
11959             is-a-player.com
11960             is-a-republican.com
11961             is-a-rockstar.com
11962             is-a-socialist.com
11963             is-a-soxfan.org
11964             is-a-student.com
11965             is-a-teacher.com
11966             is-a-techie.com
11967             is-a-therapist.com
11968             is-an-accountant.com
11969             is-an-actor.com
11970             is-an-actress.com
11971             is-an-anarchist.com
11972             is-an-artist.com
11973             is-an-engineer.com
11974             is-an-entertainer.com
11975             is-by.us
11976             is-certified.com
11977             is-found.org
11978             is-gone.com
11979             is-into-anime.com
11980             is-into-cars.com
11981             is-into-cartoons.com
11982             is-into-games.com
11983             is-leet.com
11984             is-lost.org
11985             is-not-certified.com
11986             is-saved.org
11987             is-slick.com
11988             is-uberleet.com
11989             is-very-bad.org
11990             is-very-evil.org
11991             is-very-good.org
11992             is-very-nice.org
11993             is-very-sweet.org
11994             is-with-theband.com
11995             isa-geek.com
11996             isa-geek.net
11997             isa-geek.org
11998             isa-hockeynut.com
11999             issmarterthanyou.com
12000             isteingeek.de
12001             istmein.de
12002             kicks-ass.net
12003             kicks-ass.org
12004             knowsitall.info
12005             land-4-sale.us
12006             lebtimnetz.de
12007             leitungsen.de
12008             likes-pie.com
12009             likescandy.com
12010             merseine.nu
12011             mine.nu
12012             misconfused.org
12013             mypets.ws
12014             myphotos.cc
12015             neat-url.com
12016             office-on-the.net
12017             on-the-web.tv
12018             podzone.net
12019             podzone.org
12020             readmyblog.org
12021             saves-the-whales.com
12022             scrapper-site.net
12023             scrapping.cc
12024             selfip.biz
12025             selfip.com
12026             selfip.info
12027             selfip.net
12028             selfip.org
12029             sells-for-less.com
12030             sells-for-u.com
12031             sells-it.net
12032             sellsyourhome.org
12033             servebbs.com
12034             servebbs.net
12035             servebbs.org
12036             serveftp.net
12037             serveftp.org
12038             servegame.org
12039             shacknet.nu
12040             simple-url.com
12041             space-to-rent.com
12042             stuff-4-sale.org
12043             stuff-4-sale.us
12044             teaches-yoga.com
12045             thruhere.net
12046             traeumtgerade.de
12047             webhop.biz
12048             webhop.info
12049             webhop.net
12050             webhop.org
12051             worse-than.tv
12052             writesthisblog.com
12053              
12054             // ddnss.de : https://www.ddnss.de/
12055             // Submitted by Robert Niedziela
12056             ddnss.de
12057             dyn.ddnss.de
12058             dyndns.ddnss.de
12059             dyndns1.de
12060             dyn-ip24.de
12061             home-webserver.de
12062             dyn.home-webserver.de
12063             myhome-server.de
12064             ddnss.org
12065              
12066             // Definima : http://www.definima.com/
12067             // Submitted by Maxence Bitterli
12068             definima.net
12069             definima.io
12070              
12071             // DigitalOcean App Platform : https://www.digitalocean.com/products/app-platform/
12072             // Submitted by Braxton Huggins
12073             ondigitalocean.app
12074              
12075             // DigitalOcean Spaces : https://www.digitalocean.com/products/spaces/
12076             // Submitted by Robin H. Johnson
12077             *.digitaloceanspaces.com
12078              
12079             // dnstrace.pro : https://dnstrace.pro/
12080             // Submitted by Chris Partridge
12081             bci.dnstrace.pro
12082              
12083             // Dynu.com : https://www.dynu.com/
12084             // Submitted by Sue Ye
12085             ddnsfree.com
12086             ddnsgeek.com
12087             giize.com
12088             gleeze.com
12089             kozow.com
12090             loseyourip.com
12091             ooguy.com
12092             theworkpc.com
12093             casacam.net
12094             dynu.net
12095             accesscam.org
12096             camdvr.org
12097             freeddns.org
12098             mywire.org
12099             webredirect.org
12100             myddns.rocks
12101             blogsite.xyz
12102              
12103             // dynv6 : https://dynv6.com
12104             // Submitted by Dominik Menke
12105             dynv6.net
12106              
12107             // E4YOU spol. s.r.o. : https://e4you.cz/
12108             // Submitted by Vladimir Dudr
12109             e4.cz
12110              
12111             // Easypanel : https://easypanel.io
12112             // Submitted by Andrei Canta
12113             easypanel.app
12114             easypanel.host
12115              
12116             // Elementor : Elementor Ltd.
12117             // Submitted by Anton Barkan
12118             elementor.cloud
12119             elementor.cool
12120              
12121             // En root‽ : https://en-root.org
12122             // Submitted by Emmanuel Raviart
12123             en-root.fr
12124              
12125             // Enalean SAS: https://www.enalean.com
12126             // Submitted by Thomas Cottier
12127             mytuleap.com
12128             tuleap-partners.com
12129              
12130             // Encoretivity AB: https://encore.dev
12131             // Submitted by André Eriksson
12132             encr.app
12133             encoreapi.com
12134              
12135             // ECG Robotics, Inc: https://ecgrobotics.org
12136             // Submitted by
12137             onred.one
12138             staging.onred.one
12139              
12140             // encoway GmbH : https://www.encoway.de
12141             // Submitted by Marcel Daus
12142             eu.encoway.cloud
12143              
12144             // EU.org https://eu.org/
12145             // Submitted by Pierre Beyssac
12146             eu.org
12147             al.eu.org
12148             asso.eu.org
12149             at.eu.org
12150             au.eu.org
12151             be.eu.org
12152             bg.eu.org
12153             ca.eu.org
12154             cd.eu.org
12155             ch.eu.org
12156             cn.eu.org
12157             cy.eu.org
12158             cz.eu.org
12159             de.eu.org
12160             dk.eu.org
12161             edu.eu.org
12162             ee.eu.org
12163             es.eu.org
12164             fi.eu.org
12165             fr.eu.org
12166             gr.eu.org
12167             hr.eu.org
12168             hu.eu.org
12169             ie.eu.org
12170             il.eu.org
12171             in.eu.org
12172             int.eu.org
12173             is.eu.org
12174             it.eu.org
12175             jp.eu.org
12176             kr.eu.org
12177             lt.eu.org
12178             lu.eu.org
12179             lv.eu.org
12180             mc.eu.org
12181             me.eu.org
12182             mk.eu.org
12183             mt.eu.org
12184             my.eu.org
12185             net.eu.org
12186             ng.eu.org
12187             nl.eu.org
12188             no.eu.org
12189             nz.eu.org
12190             paris.eu.org
12191             pl.eu.org
12192             pt.eu.org
12193             q-a.eu.org
12194             ro.eu.org
12195             ru.eu.org
12196             se.eu.org
12197             si.eu.org
12198             sk.eu.org
12199             tr.eu.org
12200             uk.eu.org
12201             us.eu.org
12202              
12203             // Eurobyte : https://eurobyte.ru
12204             // Submitted by Evgeniy Subbotin
12205             eurodir.ru
12206              
12207             // Evennode : http://www.evennode.com/
12208             // Submitted by Michal Kralik
12209             eu-1.evennode.com
12210             eu-2.evennode.com
12211             eu-3.evennode.com
12212             eu-4.evennode.com
12213             us-1.evennode.com
12214             us-2.evennode.com
12215             us-3.evennode.com
12216             us-4.evennode.com
12217              
12218             // eDirect Corp. : https://hosting.url.com.tw/
12219             // Submitted by C.S. chang
12220             twmail.cc
12221             twmail.net
12222             twmail.org
12223             mymailer.com.tw
12224             url.tw
12225              
12226             // Fabrica Technologies, Inc. : https://www.fabrica.dev/
12227             // Submitted by Eric Jiang
12228             onfabrica.com
12229              
12230             // Facebook, Inc.
12231             // Submitted by Peter Ruibal
12232             apps.fbsbx.com
12233              
12234             // FAITID : https://faitid.org/
12235             // Submitted by Maxim Alzoba
12236             // https://www.flexireg.net/stat_info
12237             ru.net
12238             adygeya.ru
12239             bashkiria.ru
12240             bir.ru
12241             cbg.ru
12242             com.ru
12243             dagestan.ru
12244             grozny.ru
12245             kalmykia.ru
12246             kustanai.ru
12247             marine.ru
12248             mordovia.ru
12249             msk.ru
12250             mytis.ru
12251             nalchik.ru
12252             nov.ru
12253             pyatigorsk.ru
12254             spb.ru
12255             vladikavkaz.ru
12256             vladimir.ru
12257             abkhazia.su
12258             adygeya.su
12259             aktyubinsk.su
12260             arkhangelsk.su
12261             armenia.su
12262             ashgabad.su
12263             azerbaijan.su
12264             balashov.su
12265             bashkiria.su
12266             bryansk.su
12267             bukhara.su
12268             chimkent.su
12269             dagestan.su
12270             east-kazakhstan.su
12271             exnet.su
12272             georgia.su
12273             grozny.su
12274             ivanovo.su
12275             jambyl.su
12276             kalmykia.su
12277             kaluga.su
12278             karacol.su
12279             karaganda.su
12280             karelia.su
12281             khakassia.su
12282             krasnodar.su
12283             kurgan.su
12284             kustanai.su
12285             lenug.su
12286             mangyshlak.su
12287             mordovia.su
12288             msk.su
12289             murmansk.su
12290             nalchik.su
12291             navoi.su
12292             north-kazakhstan.su
12293             nov.su
12294             obninsk.su
12295             penza.su
12296             pokrovsk.su
12297             sochi.su
12298             spb.su
12299             tashkent.su
12300             termez.su
12301             togliatti.su
12302             troitsk.su
12303             tselinograd.su
12304             tula.su
12305             tuva.su
12306             vladikavkaz.su
12307             vladimir.su
12308             vologda.su
12309              
12310             // Fancy Bits, LLC : http://getchannels.com
12311             // Submitted by Aman Gupta
12312             channelsdvr.net
12313             u.channelsdvr.net
12314              
12315             // Fastly Inc. : http://www.fastly.com/
12316             // Submitted by Fastly Security
12317             edgecompute.app
12318             fastly-terrarium.com
12319             fastlylb.net
12320             map.fastlylb.net
12321             freetls.fastly.net
12322             map.fastly.net
12323             a.prod.fastly.net
12324             global.prod.fastly.net
12325             a.ssl.fastly.net
12326             b.ssl.fastly.net
12327             global.ssl.fastly.net
12328              
12329             // Fastmail : https://www.fastmail.com/
12330             // Submitted by Marc Bradshaw
12331             *.user.fm
12332              
12333             // FASTVPS EESTI OU : https://fastvps.ru/
12334             // Submitted by Likhachev Vasiliy
12335             fastvps-server.com
12336             fastvps.host
12337             myfast.host
12338             fastvps.site
12339             myfast.space
12340              
12341             // Fedora : https://fedoraproject.org/
12342             // submitted by Patrick Uiterwijk
12343             fedorainfracloud.org
12344             fedorapeople.org
12345             cloud.fedoraproject.org
12346             app.os.fedoraproject.org
12347             app.os.stg.fedoraproject.org
12348              
12349             // FearWorks Media Ltd. : https://fearworksmedia.co.uk
12350             // submitted by Keith Fairley
12351             conn.uk
12352             copro.uk
12353             hosp.uk
12354              
12355             // Fermax : https://fermax.com/
12356             // submitted by Koen Van Isterdael
12357             mydobiss.com
12358              
12359             // FH Muenster : https://www.fh-muenster.de
12360             // Submitted by Robin Naundorf
12361             fh-muenster.io
12362              
12363             // Filegear Inc. : https://www.filegear.com
12364             // Submitted by Jason Zhu
12365             filegear.me
12366             filegear-au.me
12367             filegear-de.me
12368             filegear-gb.me
12369             filegear-ie.me
12370             filegear-jp.me
12371             filegear-sg.me
12372              
12373             // Firebase, Inc.
12374             // Submitted by Chris Raynor
12375             firebaseapp.com
12376              
12377             // Firewebkit : https://www.firewebkit.com
12378             // Submitted by Majid Qureshi
12379             fireweb.app
12380              
12381             // FLAP : https://www.flap.cloud
12382             // Submitted by Louis Chemineau
12383             flap.id
12384              
12385             // FlashDrive : https://flashdrive.io
12386             // Submitted by Eric Chan
12387             onflashdrive.app
12388             fldrv.com
12389              
12390             // fly.io: https://fly.io
12391             // Submitted by Kurt Mackey
12392             fly.dev
12393             edgeapp.net
12394             shw.io
12395              
12396             // Flynn : https://flynn.io
12397             // Submitted by Jonathan Rudenberg
12398             flynnhosting.net
12399              
12400             // Forgerock : https://www.forgerock.com
12401             // Submitted by Roderick Parr
12402             forgeblocks.com
12403             id.forgerock.io
12404              
12405             // Framer : https://www.framer.com
12406             // Submitted by Koen Rouwhorst
12407             framer.app
12408             framercanvas.com
12409             framer.media
12410             framer.photos
12411             framer.website
12412             framer.wiki
12413              
12414             // Frusky MEDIA&PR : https://www.frusky.de
12415             // Submitted by Victor Pupynin
12416             *.frusky.de
12417              
12418             // RavPage : https://www.ravpage.co.il
12419             // Submitted by Roni Horowitz
12420             ravpage.co.il
12421              
12422             // Frederik Braun https://frederik-braun.com
12423             // Submitted by Frederik Braun
12424             0e.vc
12425              
12426             // Freebox : http://www.freebox.fr
12427             // Submitted by Romain Fliedel
12428             freebox-os.com
12429             freeboxos.com
12430             fbx-os.fr
12431             fbxos.fr
12432             freebox-os.fr
12433             freeboxos.fr
12434              
12435             // freedesktop.org : https://www.freedesktop.org
12436             // Submitted by Daniel Stone
12437             freedesktop.org
12438              
12439             // freemyip.com : https://freemyip.com
12440             // Submitted by Cadence
12441             freemyip.com
12442              
12443             // FunkFeuer - Verein zur Förderung freier Netze : https://www.funkfeuer.at
12444             // Submitted by Daniel A. Maierhofer
12445             wien.funkfeuer.at
12446              
12447             // Futureweb OG : http://www.futureweb.at
12448             // Submitted by Andreas Schnederle-Wagner
12449             *.futurecms.at
12450             *.ex.futurecms.at
12451             *.in.futurecms.at
12452             futurehosting.at
12453             futuremailing.at
12454             *.ex.ortsinfo.at
12455             *.kunden.ortsinfo.at
12456             *.statics.cloud
12457              
12458             // GDS : https://www.gov.uk/service-manual/technology/managing-domain-names
12459             // Submitted by Stephen Ford
12460             independent-commission.uk
12461             independent-inquest.uk
12462             independent-inquiry.uk
12463             independent-panel.uk
12464             independent-review.uk
12465             public-inquiry.uk
12466             royal-commission.uk
12467             campaign.gov.uk
12468             service.gov.uk
12469              
12470             // CDDO : https://www.gov.uk/guidance/get-an-api-domain-on-govuk
12471             // Submitted by Jamie Tanna
12472             api.gov.uk
12473              
12474             // Gehirn Inc. : https://www.gehirn.co.jp/
12475             // Submitted by Kohei YOSHIDA
12476             gehirn.ne.jp
12477             usercontent.jp
12478              
12479             // Gentlent, Inc. : https://www.gentlent.com
12480             // Submitted by Tom Klein
12481             gentapps.com
12482             gentlentapis.com
12483             lab.ms
12484             cdn-edges.net
12485              
12486             // Ghost Foundation : https://ghost.org
12487             // Submitted by Matt Hanley
12488             ghost.io
12489              
12490             // GignoSystemJapan: http://gsj.bz
12491             // Submitted by GignoSystemJapan
12492             gsj.bz
12493              
12494             // GitHub, Inc.
12495             // Submitted by Patrick Toomey
12496             githubusercontent.com
12497             githubpreview.dev
12498             github.io
12499              
12500             // GitLab, Inc.
12501             // Submitted by Alex Hanselka
12502             gitlab.io
12503              
12504             // Gitplac.si - https://gitplac.si
12505             // Submitted by Aljaž Starc
12506             gitapp.si
12507             gitpage.si
12508              
12509             // Glitch, Inc : https://glitch.com
12510             // Submitted by Mads Hartmann
12511             glitch.me
12512              
12513             // Global NOG Alliance : https://nogalliance.org/
12514             // Submitted by Sander Steffann
12515             nog.community
12516              
12517             // Globe Hosting SRL : https://www.globehosting.com/
12518             // Submitted by Gavin Brown
12519             co.ro
12520             shop.ro
12521              
12522             // GMO Pepabo, Inc. : https://pepabo.com/
12523             // Submitted by Hosting Div
12524             lolipop.io
12525             angry.jp
12526             babyblue.jp
12527             babymilk.jp
12528             backdrop.jp
12529             bambina.jp
12530             bitter.jp
12531             blush.jp
12532             boo.jp
12533             boy.jp
12534             boyfriend.jp
12535             but.jp
12536             candypop.jp
12537             capoo.jp
12538             catfood.jp
12539             cheap.jp
12540             chicappa.jp
12541             chillout.jp
12542             chips.jp
12543             chowder.jp
12544             chu.jp
12545             ciao.jp
12546             cocotte.jp
12547             coolblog.jp
12548             cranky.jp
12549             cutegirl.jp
12550             daa.jp
12551             deca.jp
12552             deci.jp
12553             digick.jp
12554             egoism.jp
12555             fakefur.jp
12556             fem.jp
12557             flier.jp
12558             floppy.jp
12559             fool.jp
12560             frenchkiss.jp
12561             girlfriend.jp
12562             girly.jp
12563             gloomy.jp
12564             gonna.jp
12565             greater.jp
12566             hacca.jp
12567             heavy.jp
12568             her.jp
12569             hiho.jp
12570             hippy.jp
12571             holy.jp
12572             hungry.jp
12573             icurus.jp
12574             itigo.jp
12575             jellybean.jp
12576             kikirara.jp
12577             kill.jp
12578             kilo.jp
12579             kuron.jp
12580             littlestar.jp
12581             lolipopmc.jp
12582             lolitapunk.jp
12583             lomo.jp
12584             lovepop.jp
12585             lovesick.jp
12586             main.jp
12587             mods.jp
12588             mond.jp
12589             mongolian.jp
12590             moo.jp
12591             namaste.jp
12592             nikita.jp
12593             nobushi.jp
12594             noor.jp
12595             oops.jp
12596             parallel.jp
12597             parasite.jp
12598             pecori.jp
12599             peewee.jp
12600             penne.jp
12601             pepper.jp
12602             perma.jp
12603             pigboat.jp
12604             pinoko.jp
12605             punyu.jp
12606             pupu.jp
12607             pussycat.jp
12608             pya.jp
12609             raindrop.jp
12610             readymade.jp
12611             sadist.jp
12612             schoolbus.jp
12613             secret.jp
12614             staba.jp
12615             stripper.jp
12616             sub.jp
12617             sunnyday.jp
12618             thick.jp
12619             tonkotsu.jp
12620             under.jp
12621             upper.jp
12622             velvet.jp
12623             verse.jp
12624             versus.jp
12625             vivian.jp
12626             watson.jp
12627             weblike.jp
12628             whitesnow.jp
12629             zombie.jp
12630             heteml.net
12631              
12632             // GOV.UK Platform as a Service : https://www.cloud.service.gov.uk/
12633             // Submitted by Tom Whitwell
12634             cloudapps.digital
12635             london.cloudapps.digital
12636              
12637             // GOV.UK Pay : https://www.payments.service.gov.uk/
12638             // Submitted by Richard Baker
12639             pymnt.uk
12640              
12641             // UKHomeOffice : https://www.gov.uk/government/organisations/home-office
12642             // Submitted by Jon Shanks
12643             homeoffice.gov.uk
12644              
12645             // GlobeHosting, Inc.
12646             // Submitted by Zoltan Egresi
12647             ro.im
12648              
12649             // GoIP DNS Services : http://www.goip.de
12650             // Submitted by Christian Poulter
12651             goip.de
12652              
12653             // Google, Inc.
12654             // Submitted by Eduardo Vela
12655             run.app
12656             a.run.app
12657             web.app
12658             *.0emm.com
12659             appspot.com
12660             *.r.appspot.com
12661             codespot.com
12662             googleapis.com
12663             googlecode.com
12664             pagespeedmobilizer.com
12665             publishproxy.com
12666             withgoogle.com
12667             withyoutube.com
12668             *.gateway.dev
12669             cloud.goog
12670             translate.goog
12671             *.usercontent.goog
12672             cloudfunctions.net
12673             blogspot.ae
12674             blogspot.al
12675             blogspot.am
12676             blogspot.ba
12677             blogspot.be
12678             blogspot.bg
12679             blogspot.bj
12680             blogspot.ca
12681             blogspot.cf
12682             blogspot.ch
12683             blogspot.cl
12684             blogspot.co.at
12685             blogspot.co.id
12686             blogspot.co.il
12687             blogspot.co.ke
12688             blogspot.co.nz
12689             blogspot.co.uk
12690             blogspot.co.za
12691             blogspot.com
12692             blogspot.com.ar
12693             blogspot.com.au
12694             blogspot.com.br
12695             blogspot.com.by
12696             blogspot.com.co
12697             blogspot.com.cy
12698             blogspot.com.ee
12699             blogspot.com.eg
12700             blogspot.com.es
12701             blogspot.com.mt
12702             blogspot.com.ng
12703             blogspot.com.tr
12704             blogspot.com.uy
12705             blogspot.cv
12706             blogspot.cz
12707             blogspot.de
12708             blogspot.dk
12709             blogspot.fi
12710             blogspot.fr
12711             blogspot.gr
12712             blogspot.hk
12713             blogspot.hr
12714             blogspot.hu
12715             blogspot.ie
12716             blogspot.in
12717             blogspot.is
12718             blogspot.it
12719             blogspot.jp
12720             blogspot.kr
12721             blogspot.li
12722             blogspot.lt
12723             blogspot.lu
12724             blogspot.md
12725             blogspot.mk
12726             blogspot.mr
12727             blogspot.mx
12728             blogspot.my
12729             blogspot.nl
12730             blogspot.no
12731             blogspot.pe
12732             blogspot.pt
12733             blogspot.qa
12734             blogspot.re
12735             blogspot.ro
12736             blogspot.rs
12737             blogspot.ru
12738             blogspot.se
12739             blogspot.sg
12740             blogspot.si
12741             blogspot.sk
12742             blogspot.sn
12743             blogspot.td
12744             blogspot.tw
12745             blogspot.ug
12746             blogspot.vn
12747              
12748             // Goupile : https://goupile.fr
12749             // Submitted by Niels Martignene
12750             goupile.fr
12751              
12752             // Government of the Netherlands: https://www.government.nl
12753             // Submitted by
12754             gov.nl
12755              
12756             // Group 53, LLC : https://www.group53.com
12757             // Submitted by Tyler Todd
12758             awsmppl.com
12759              
12760             // GünstigBestellen : https://günstigbestellen.de
12761             // Submitted by Furkan Akkoc
12762             xn--gnstigbestellen-zvb.de
12763             xn--gnstigliefern-wob.de
12764              
12765             // Hakaran group: http://hakaran.cz
12766             // Submitted by Arseniy Sokolov
12767             fin.ci
12768             free.hr
12769             caa.li
12770             ua.rs
12771             conf.se
12772              
12773             // Handshake : https://handshake.org
12774             // Submitted by Mike Damm
12775             hs.zone
12776             hs.run
12777              
12778             // Hashbang : https://hashbang.sh
12779             hashbang.sh
12780              
12781             // Hasura : https://hasura.io
12782             // Submitted by Shahidh K Muhammed
12783             hasura.app
12784             hasura-app.io
12785              
12786             // Heilbronn University of Applied Sciences - Faculty Informatics (GitLab Pages): https://www.hs-heilbronn.de
12787             // Submitted by Richard Zowalla
12788             pages.it.hs-heilbronn.de
12789              
12790             // Hepforge : https://www.hepforge.org
12791             // Submitted by David Grellscheid
12792             hepforge.org
12793              
12794             // Heroku : https://www.heroku.com/
12795             // Submitted by Tom Maher
12796             herokuapp.com
12797             herokussl.com
12798              
12799             // Hibernating Rhinos
12800             // Submitted by Oren Eini
12801             ravendb.cloud
12802             ravendb.community
12803             ravendb.me
12804             development.run
12805             ravendb.run
12806              
12807             // home.pl S.A.: https://home.pl
12808             // Submitted by Krzysztof Wolski
12809             homesklep.pl
12810              
12811             // Hong Kong Productivity Council: https://www.hkpc.org/
12812             // Submitted by SECaaS Team
12813             secaas.hk
12814              
12815             // Hoplix : https://www.hoplix.com
12816             // Submitted by Danilo De Franco
12817             hoplix.shop
12818              
12819              
12820             // HOSTBIP REGISTRY : https://www.hostbip.com/
12821             // Submitted by Atanunu Igbunuroghene
12822             orx.biz
12823             biz.gl
12824             col.ng
12825             firm.ng
12826             gen.ng
12827             ltd.ng
12828             ngo.ng
12829             edu.scot
12830             sch.so
12831              
12832             // HostyHosting (hostyhosting.com)
12833             hostyhosting.io
12834              
12835             // Häkkinen.fi
12836             // Submitted by Eero Häkkinen
12837             xn--hkkinen-5wa.fi
12838              
12839             // Ici la Lune : http://www.icilalune.com/
12840             // Submitted by Simon Morvan
12841             *.moonscale.io
12842             moonscale.net
12843              
12844             // iki.fi
12845             // Submitted by Hannu Aronsson
12846             iki.fi
12847              
12848             // iliad italia: https://www.iliad.it
12849             // Submitted by Marios Makassikis
12850             ibxos.it
12851             iliadboxos.it
12852              
12853             // Impertrix Solutions :
12854             // Submitted by Zhixiang Zhao
12855             impertrixcdn.com
12856             impertrix.com
12857              
12858             // Incsub, LLC: https://incsub.com/
12859             // Submitted by Aaron Edwards
12860             smushcdn.com
12861             wphostedmail.com
12862             wpmucdn.com
12863             tempurl.host
12864             wpmudev.host
12865              
12866             // Individual Network Berlin e.V. : https://www.in-berlin.de/
12867             // Submitted by Christian Seitz
12868             dyn-berlin.de
12869             in-berlin.de
12870             in-brb.de
12871             in-butter.de
12872             in-dsl.de
12873             in-dsl.net
12874             in-dsl.org
12875             in-vpn.de
12876             in-vpn.net
12877             in-vpn.org
12878              
12879             // info.at : http://www.info.at/
12880             biz.at
12881             info.at
12882              
12883             // info.cx : http://info.cx
12884             // Submitted by Jacob Slater
12885             info.cx
12886              
12887             // Interlegis : http://www.interlegis.leg.br
12888             // Submitted by Gabriel Ferreira
12889             ac.leg.br
12890             al.leg.br
12891             am.leg.br
12892             ap.leg.br
12893             ba.leg.br
12894             ce.leg.br
12895             df.leg.br
12896             es.leg.br
12897             go.leg.br
12898             ma.leg.br
12899             mg.leg.br
12900             ms.leg.br
12901             mt.leg.br
12902             pa.leg.br
12903             pb.leg.br
12904             pe.leg.br
12905             pi.leg.br
12906             pr.leg.br
12907             rj.leg.br
12908             rn.leg.br
12909             ro.leg.br
12910             rr.leg.br
12911             rs.leg.br
12912             sc.leg.br
12913             se.leg.br
12914             sp.leg.br
12915             to.leg.br
12916              
12917             // intermetrics GmbH : https://pixolino.com/
12918             // Submitted by Wolfgang Schwarz
12919             pixolino.com
12920              
12921             // Internet-Pro, LLP: https://netangels.ru/
12922             // Submitted by Vasiliy Sheredeko
12923             na4u.ru
12924              
12925             // iopsys software solutions AB : https://iopsys.eu/
12926             // Submitted by Roman Azarenko
12927             iopsys.se
12928              
12929             // IPiFony Systems, Inc. : https://www.ipifony.com/
12930             // Submitted by Matthew Hardeman
12931             ipifony.net
12932              
12933             // IServ GmbH : https://iserv.de
12934             // Submitted by Mario Hoberg
12935             iservschule.de
12936             mein-iserv.de
12937             schulplattform.de
12938             schulserver.de
12939             test-iserv.de
12940             iserv.dev
12941              
12942             // I-O DATA DEVICE, INC. : http://www.iodata.com/
12943             // Submitted by Yuji Minagawa
12944             iobb.net
12945              
12946             // Jelastic, Inc. : https://jelastic.com/
12947             // Submitted by Ihor Kolodyuk
12948             mel.cloudlets.com.au
12949             cloud.interhostsolutions.be
12950             users.scale.virtualcloud.com.br
12951             mycloud.by
12952             alp1.ae.flow.ch
12953             appengine.flow.ch
12954             es-1.axarnet.cloud
12955             diadem.cloud
12956             vip.jelastic.cloud
12957             jele.cloud
12958             it1.eur.aruba.jenv-aruba.cloud
12959             it1.jenv-aruba.cloud
12960             keliweb.cloud
12961             cs.keliweb.cloud
12962             oxa.cloud
12963             tn.oxa.cloud
12964             uk.oxa.cloud
12965             primetel.cloud
12966             uk.primetel.cloud
12967             ca.reclaim.cloud
12968             uk.reclaim.cloud
12969             us.reclaim.cloud
12970             ch.trendhosting.cloud
12971             de.trendhosting.cloud
12972             jele.club
12973             amscompute.com
12974             clicketcloud.com
12975             dopaas.com
12976             hidora.com
12977             paas.hosted-by-previder.com
12978             rag-cloud.hosteur.com
12979             rag-cloud-ch.hosteur.com
12980             jcloud.ik-server.com
12981             jcloud-ver-jpc.ik-server.com
12982             demo.jelastic.com
12983             kilatiron.com
12984             paas.massivegrid.com
12985             jed.wafaicloud.com
12986             lon.wafaicloud.com
12987             ryd.wafaicloud.com
12988             j.scaleforce.com.cy
12989             jelastic.dogado.eu
12990             fi.cloudplatform.fi
12991             demo.datacenter.fi
12992             paas.datacenter.fi
12993             jele.host
12994             mircloud.host
12995             paas.beebyte.io
12996             sekd1.beebyteapp.io
12997             jele.io
12998             cloud-fr1.unispace.io
12999             jc.neen.it
13000             cloud.jelastic.open.tim.it
13001             jcloud.kz
13002             upaas.kazteleport.kz
13003             cloudjiffy.net
13004             fra1-de.cloudjiffy.net
13005             west1-us.cloudjiffy.net
13006             jls-sto1.elastx.net
13007             jls-sto2.elastx.net
13008             jls-sto3.elastx.net
13009             faststacks.net
13010             fr-1.paas.massivegrid.net
13011             lon-1.paas.massivegrid.net
13012             lon-2.paas.massivegrid.net
13013             ny-1.paas.massivegrid.net
13014             ny-2.paas.massivegrid.net
13015             sg-1.paas.massivegrid.net
13016             jelastic.saveincloud.net
13017             nordeste-idc.saveincloud.net
13018             j.scaleforce.net
13019             jelastic.tsukaeru.net
13020             sdscloud.pl
13021             unicloud.pl
13022             mircloud.ru
13023             jelastic.regruhosting.ru
13024             enscaled.sg
13025             jele.site
13026             jelastic.team
13027             orangecloud.tn
13028             j.layershift.co.uk
13029             phx.enscaled.us
13030             mircloud.us
13031              
13032             // Jino : https://www.jino.ru
13033             // Submitted by Sergey Ulyashin
13034             myjino.ru
13035             *.hosting.myjino.ru
13036             *.landing.myjino.ru
13037             *.spectrum.myjino.ru
13038             *.vps.myjino.ru
13039              
13040             // Jotelulu S.L. : https://jotelulu.com
13041             // Submitted by Daniel Fariña
13042             jotelulu.cloud
13043              
13044             // Joyent : https://www.joyent.com/
13045             // Submitted by Brian Bennett
13046             *.triton.zone
13047             *.cns.joyent.com
13048              
13049             // JS.ORG : http://dns.js.org
13050             // Submitted by Stefan Keim
13051             js.org
13052              
13053             // KaasHosting : http://www.kaashosting.nl/
13054             // Submitted by Wouter Bakker
13055             kaas.gg
13056             khplay.nl
13057              
13058             // Kakao : https://www.kakaocorp.com/
13059             // Submitted by JaeYoong Lee
13060             ktistory.com
13061              
13062             // Kapsi : https://kapsi.fi
13063             // Submitted by Tomi Juntunen
13064             kapsi.fi
13065              
13066             // Keyweb AG : https://www.keyweb.de
13067             // Submitted by Martin Dannehl
13068             keymachine.de
13069              
13070             // KingHost : https://king.host
13071             // Submitted by Felipe Keller Braz
13072             kinghost.net
13073             uni5.net
13074              
13075             // KnightPoint Systems, LLC : http://www.knightpoint.com/
13076             // Submitted by Roy Keene
13077             knightpoint.systems
13078              
13079             // KoobinEvent, SL: https://www.koobin.com
13080             // Submitted by Iván Oliva
13081             koobin.events
13082              
13083             // KUROKU LTD : https://kuroku.ltd/
13084             // Submitted by DisposaBoy
13085             oya.to
13086              
13087             // Katholieke Universiteit Leuven: https://www.kuleuven.be
13088             // Submitted by Abuse KU Leuven
13089             kuleuven.cloud
13090             ezproxy.kuleuven.be
13091              
13092             // .KRD : http://nic.krd/data/krd/Registration%20Policy.pdf
13093             co.krd
13094             edu.krd
13095              
13096             // Krellian Ltd. : https://krellian.com
13097             // Submitted by Ben Francis
13098             krellian.net
13099             webthings.io
13100              
13101             // LCube - Professional hosting e.K. : https://www.lcube-webhosting.de
13102             // Submitted by Lars Laehn
13103             git-repos.de
13104             lcube-server.de
13105             svn-repos.de
13106              
13107             // Leadpages : https://www.leadpages.net
13108             // Submitted by Greg Dallavalle
13109             leadpages.co
13110             lpages.co
13111             lpusercontent.com
13112              
13113             // Lelux.fi : https://lelux.fi/
13114             // Submitted by Lelux Admin
13115             lelux.site
13116              
13117             // Lifetime Hosting : https://Lifetime.Hosting/
13118             // Submitted by Mike Fillator
13119             co.business
13120             co.education
13121             co.events
13122             co.financial
13123             co.network
13124             co.place
13125             co.technology
13126              
13127             // Lightmaker Property Manager, Inc. : https://app.lmpm.com/
13128             // Submitted by Greg Holland
13129             app.lmpm.com
13130              
13131             // linkyard ldt: https://www.linkyard.ch/
13132             // Submitted by Mario Siegenthaler
13133             linkyard.cloud
13134             linkyard-cloud.ch
13135              
13136             // Linode : https://linode.com
13137             // Submitted by
13138             members.linode.com
13139             *.nodebalancer.linode.com
13140             *.linodeobjects.com
13141             ip.linodeusercontent.com
13142              
13143             // LiquidNet Ltd : http://www.liquidnetlimited.com/
13144             // Submitted by Victor Velchev
13145             we.bs
13146              
13147             // Localcert : https://localcert.dev
13148             // Submitted by Lann Martin
13149             *.user.localcert.dev
13150              
13151             // localzone.xyz
13152             // Submitted by Kenny Niehage
13153             localzone.xyz
13154              
13155             // Log'in Line : https://www.loginline.com/
13156             // Submitted by Rémi Mach
13157             loginline.app
13158             loginline.dev
13159             loginline.io
13160             loginline.services
13161             loginline.site
13162              
13163             // Lokalized : https://lokalized.nl
13164             // Submitted by Noah Taheij
13165             servers.run
13166              
13167             // Lõhmus Family, The
13168             // Submitted by Heiki Lõhmus
13169             lohmus.me
13170              
13171             // LubMAN UMCS Sp. z o.o : https://lubman.pl/
13172             // Submitted by Ireneusz Maliszewski
13173             krasnik.pl
13174             leczna.pl
13175             lubartow.pl
13176             lublin.pl
13177             poniatowa.pl
13178             swidnik.pl
13179              
13180             // Lug.org.uk : https://lug.org.uk
13181             // Submitted by Jon Spriggs
13182             glug.org.uk
13183             lug.org.uk
13184             lugs.org.uk
13185              
13186             // Lukanet Ltd : https://lukanet.com
13187             // Submitted by Anton Avramov
13188             barsy.bg
13189             barsy.co.uk
13190             barsyonline.co.uk
13191             barsycenter.com
13192             barsyonline.com
13193             barsy.club
13194             barsy.de
13195             barsy.eu
13196             barsy.in
13197             barsy.info
13198             barsy.io
13199             barsy.me
13200             barsy.menu
13201             barsy.mobi
13202             barsy.net
13203             barsy.online
13204             barsy.org
13205             barsy.pro
13206             barsy.pub
13207             barsy.ro
13208             barsy.shop
13209             barsy.site
13210             barsy.support
13211             barsy.uk
13212              
13213             // Magento Commerce
13214             // Submitted by Damien Tournoud
13215             *.magentosite.cloud
13216              
13217             // May First - People Link : https://mayfirst.org/
13218             // Submitted by Jamie McClelland
13219             mayfirst.info
13220             mayfirst.org
13221              
13222             // Mail.Ru Group : https://hb.cldmail.ru
13223             // Submitted by Ilya Zaretskiy
13224             hb.cldmail.ru
13225              
13226             // Mail Transfer Platform : https://www.neupeer.com
13227             // Submitted by Li Hui
13228             cn.vu
13229              
13230             // Maze Play: https://www.mazeplay.com
13231             // Submitted by Adam Humpherys
13232             mazeplay.com
13233              
13234             // mcpe.me : https://mcpe.me
13235             // Submitted by Noa Heyl
13236             mcpe.me
13237              
13238             // McHost : https://mchost.ru
13239             // Submitted by Evgeniy Subbotin
13240             mcdir.me
13241             mcdir.ru
13242             mcpre.ru
13243             vps.mcdir.ru
13244              
13245             // Mediatech : https://mediatech.by
13246             // Submitted by Evgeniy Kozhuhovskiy
13247             mediatech.by
13248             mediatech.dev
13249              
13250             // Medicom Health : https://medicomhealth.com
13251             // Submitted by Michael Olson
13252             hra.health
13253              
13254             // Memset hosting : https://www.memset.com
13255             // Submitted by Tom Whitwell
13256             miniserver.com
13257             memset.net
13258              
13259             // Messerli Informatik AG : https://www.messerli.ch/
13260             // Submitted by Ruben Schmidmeister
13261             messerli.app
13262              
13263             // MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
13264             // Submitted by Zdeněk Šustr
13265             *.cloud.metacentrum.cz
13266             custom.metacentrum.cz
13267              
13268             // MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
13269             // Submitted by Radim Janča
13270             flt.cloud.muni.cz
13271             usr.cloud.muni.cz
13272              
13273             // Meteor Development Group : https://www.meteor.com/hosting
13274             // Submitted by Pierre Carrier
13275             meteorapp.com
13276             eu.meteorapp.com
13277              
13278             // Michau Enterprises Limited : http://www.co.pl/
13279             co.pl
13280              
13281             // Microsoft Corporation : http://microsoft.com
13282             // Submitted by Public Suffix List Admin
13283             *.azurecontainer.io
13284             azurewebsites.net
13285             azure-mobile.net
13286             cloudapp.net
13287             azurestaticapps.net
13288             1.azurestaticapps.net
13289             2.azurestaticapps.net
13290             centralus.azurestaticapps.net
13291             eastasia.azurestaticapps.net
13292             eastus2.azurestaticapps.net
13293             westeurope.azurestaticapps.net
13294             westus2.azurestaticapps.net
13295              
13296             // minion.systems : http://minion.systems
13297             // Submitted by Robert Böttinger
13298             csx.cc
13299              
13300             // Mintere : https://mintere.com/
13301             // Submitted by Ben Aubin
13302             mintere.site
13303              
13304             // MobileEducation, LLC : https://joinforte.com
13305             // Submitted by Grayson Martin
13306             forte.id
13307              
13308             // Mozilla Corporation : https://mozilla.com
13309             // Submitted by Ben Francis
13310             mozilla-iot.org
13311              
13312             // Mozilla Foundation : https://mozilla.org/
13313             // Submitted by glob
13314             bmoattachments.org
13315              
13316             // MSK-IX : https://www.msk-ix.ru/
13317             // Submitted by Khannanov Roman
13318             net.ru
13319             org.ru
13320             pp.ru
13321              
13322             // Mythic Beasts : https://www.mythic-beasts.com
13323             // Submitted by Paul Cammish
13324             hostedpi.com
13325             customer.mythic-beasts.com
13326             caracal.mythic-beasts.com
13327             fentiger.mythic-beasts.com
13328             lynx.mythic-beasts.com
13329             ocelot.mythic-beasts.com
13330             oncilla.mythic-beasts.com
13331             onza.mythic-beasts.com
13332             sphinx.mythic-beasts.com
13333             vs.mythic-beasts.com
13334             x.mythic-beasts.com
13335             yali.mythic-beasts.com
13336             cust.retrosnub.co.uk
13337              
13338             // Nabu Casa : https://www.nabucasa.com
13339             // Submitted by Paulus Schoutsen
13340             ui.nabu.casa
13341              
13342             // Net at Work Gmbh : https://www.netatwork.de
13343             // Submitted by Jan Jaeschke
13344             cloud.nospamproxy.com
13345              
13346             // Netlify : https://www.netlify.com
13347             // Submitted by Jessica Parsons
13348             netlify.app
13349              
13350             // Neustar Inc.
13351             // Submitted by Trung Tran
13352             4u.com
13353              
13354             // ngrok : https://ngrok.com/
13355             // Submitted by Alan Shreve
13356             ngrok.io
13357              
13358             // Nimbus Hosting Ltd. : https://www.nimbushosting.co.uk/
13359             // Submitted by Nicholas Ford
13360             nh-serv.co.uk
13361              
13362             // NFSN, Inc. : https://www.NearlyFreeSpeech.NET/
13363             // Submitted by Jeff Wheelhouse
13364             nfshost.com
13365              
13366             // Noop : https://noop.app
13367             // Submitted by Nathaniel Schweinberg
13368             *.developer.app
13369             noop.app
13370              
13371             // Northflank Ltd. : https://northflank.com/
13372             // Submitted by Marco Suter
13373             *.northflank.app
13374             *.build.run
13375             *.code.run
13376             *.database.run
13377             *.migration.run
13378              
13379             // Noticeable : https://noticeable.io
13380             // Submitted by Laurent Pellegrino
13381             noticeable.news
13382              
13383             // Now-DNS : https://now-dns.com
13384             // Submitted by Steve Russell
13385             dnsking.ch
13386             mypi.co
13387             n4t.co
13388             001www.com
13389             ddnslive.com
13390             myiphost.com
13391             forumz.info
13392             16-b.it
13393             32-b.it
13394             64-b.it
13395             soundcast.me
13396             tcp4.me
13397             dnsup.net
13398             hicam.net
13399             now-dns.net
13400             ownip.net
13401             vpndns.net
13402             dynserv.org
13403             now-dns.org
13404             x443.pw
13405             now-dns.top
13406             ntdll.top
13407             freeddns.us
13408             crafting.xyz
13409             zapto.xyz
13410              
13411             // nsupdate.info : https://www.nsupdate.info/
13412             // Submitted by Thomas Waldmann
13413             nsupdate.info
13414             nerdpol.ovh
13415              
13416             // No-IP.com : https://noip.com/
13417             // Submitted by Deven Reza
13418             blogsyte.com
13419             brasilia.me
13420             cable-modem.org
13421             ciscofreak.com
13422             collegefan.org
13423             couchpotatofries.org
13424             damnserver.com
13425             ddns.me
13426             ditchyourip.com
13427             dnsfor.me
13428             dnsiskinky.com
13429             dvrcam.info
13430             dynns.com
13431             eating-organic.net
13432             fantasyleague.cc
13433             geekgalaxy.com
13434             golffan.us
13435             health-carereform.com
13436             homesecuritymac.com
13437             homesecuritypc.com
13438             hopto.me
13439             ilovecollege.info
13440             loginto.me
13441             mlbfan.org
13442             mmafan.biz
13443             myactivedirectory.com
13444             mydissent.net
13445             myeffect.net
13446             mymediapc.net
13447             mypsx.net
13448             mysecuritycamera.com
13449             mysecuritycamera.net
13450             mysecuritycamera.org
13451             net-freaks.com
13452             nflfan.org
13453             nhlfan.net
13454             no-ip.ca
13455             no-ip.co.uk
13456             no-ip.net
13457             noip.us
13458             onthewifi.com
13459             pgafan.net
13460             point2this.com
13461             pointto.us
13462             privatizehealthinsurance.net
13463             quicksytes.com
13464             read-books.org
13465             securitytactics.com
13466             serveexchange.com
13467             servehumour.com
13468             servep2p.com
13469             servesarcasm.com
13470             stufftoread.com
13471             ufcfan.org
13472             unusualperson.com
13473             workisboring.com
13474             3utilities.com
13475             bounceme.net
13476             ddns.net
13477             ddnsking.com
13478             gotdns.ch
13479             hopto.org
13480             myftp.biz
13481             myftp.org
13482             myvnc.com
13483             no-ip.biz
13484             no-ip.info
13485             no-ip.org
13486             noip.me
13487             redirectme.net
13488             servebeer.com
13489             serveblog.net
13490             servecounterstrike.com
13491             serveftp.com
13492             servegame.com
13493             servehalflife.com
13494             servehttp.com
13495             serveirc.com
13496             serveminecraft.net
13497             servemp3.com
13498             servepics.com
13499             servequake.com
13500             sytes.net
13501             webhop.me
13502             zapto.org
13503              
13504             // NodeArt : https://nodeart.io
13505             // Submitted by Konstantin Nosov
13506             stage.nodeart.io
13507              
13508             // Nucleos Inc. : https://nucleos.com
13509             // Submitted by Piotr Zduniak
13510             pcloud.host
13511              
13512             // NYC.mn : http://www.information.nyc.mn
13513             // Submitted by Matthew Brown
13514             nyc.mn
13515              
13516             // Observable, Inc. : https://observablehq.com
13517             // Submitted by Mike Bostock
13518             static.observableusercontent.com
13519              
13520             // Octopodal Solutions, LLC. : https://ulterius.io/
13521             // Submitted by Andrew Sampson
13522             cya.gg
13523              
13524             // OMG.LOL :
13525             // Submitted by Adam Newbold
13526             omg.lol
13527              
13528             // Omnibond Systems, LLC. : https://www.omnibond.com
13529             // Submitted by Cole Estep
13530             cloudycluster.net
13531              
13532             // OmniWe Limited: https://omniwe.com
13533             // Submitted by Vicary Archangel
13534             omniwe.site
13535              
13536             // One.com: https://www.one.com/
13537             // Submitted by Jacob Bunk Nielsen
13538             123hjemmeside.dk
13539             123hjemmeside.no
13540             123homepage.it
13541             123kotisivu.fi
13542             123minsida.se
13543             123miweb.es
13544             123paginaweb.pt
13545             123sait.ru
13546             123siteweb.fr
13547             123webseite.at
13548             123webseite.de
13549             123website.be
13550             123website.ch
13551             123website.lu
13552             123website.nl
13553             service.one
13554             simplesite.com
13555             simplesite.com.br
13556             simplesite.gr
13557             simplesite.pl
13558              
13559             // One Fold Media : http://www.onefoldmedia.com/
13560             // Submitted by Eddie Jones
13561             nid.io
13562              
13563             // Open Social : https://www.getopensocial.com/
13564             // Submitted by Alexander Varwijk
13565             opensocial.site
13566              
13567             // OpenCraft GmbH : http://opencraft.com/
13568             // Submitted by Sven Marnach
13569             opencraft.hosting
13570              
13571             // OpenResearch GmbH: https://openresearch.com/
13572             // Submitted by Philipp Schmid
13573             orsites.com
13574              
13575             // Opera Software, A.S.A.
13576             // Submitted by Yngve Pettersen
13577             operaunite.com
13578              
13579             // Orange : https://www.orange.com
13580             // Submitted by Alexandre Linte
13581             tech.orange
13582              
13583             // Oursky Limited : https://authgear.com/, https://skygear.io/
13584             // Submitted by Authgear Team , Skygear Developer
13585             authgear-staging.com
13586             authgearapps.com
13587             skygearapp.com
13588              
13589             // OutSystems
13590             // Submitted by Duarte Santos
13591             outsystemscloud.com
13592              
13593             // OVHcloud: https://ovhcloud.com
13594             // Submitted by Vincent Cassé
13595             *.webpaas.ovh.net
13596             *.hosting.ovh.net
13597              
13598             // OwnProvider GmbH: http://www.ownprovider.com
13599             // Submitted by Jan Moennich
13600             ownprovider.com
13601             own.pm
13602              
13603             // OwO : https://whats-th.is/
13604             // Submitted by Dean Sheather
13605             *.owo.codes
13606              
13607             // OX : http://www.ox.rs
13608             // Submitted by Adam Grand
13609             ox.rs
13610              
13611             // oy.lc
13612             // Submitted by Charly Coste
13613             oy.lc
13614              
13615             // Pagefog : https://pagefog.com/
13616             // Submitted by Derek Myers
13617             pgfog.com
13618              
13619             // Pagefront : https://www.pagefronthq.com/
13620             // Submitted by Jason Kriss
13621             pagefrontapp.com
13622              
13623             // PageXL : https://pagexl.com
13624             // Submitted by Yann Guichard
13625             pagexl.com
13626              
13627             // Paywhirl, Inc : https://paywhirl.com/
13628             // Submitted by Daniel Netzer
13629             *.paywhirl.com
13630              
13631             // pcarrier.ca Software Inc: https://pcarrier.ca/
13632             // Submitted by Pierre Carrier
13633             bar0.net
13634             bar1.net
13635             bar2.net
13636             rdv.to
13637              
13638             // .pl domains (grandfathered)
13639             art.pl
13640             gliwice.pl
13641             krakow.pl
13642             poznan.pl
13643             wroc.pl
13644             zakopane.pl
13645              
13646             // Pantheon Systems, Inc. : https://pantheon.io/
13647             // Submitted by Gary Dylina
13648             pantheonsite.io
13649             gotpantheon.com
13650              
13651             // Peplink | Pepwave : http://peplink.com/
13652             // Submitted by Steve Leung
13653             mypep.link
13654              
13655             // Perspecta : https://perspecta.com/
13656             // Submitted by Kenneth Van Alstyne
13657             perspecta.cloud
13658              
13659             // PE Ulyanov Kirill Sergeevich : https://airy.host
13660             // Submitted by Kirill Ulyanov
13661             lk3.ru
13662              
13663             // Planet-Work : https://www.planet-work.com/
13664             // Submitted by Frédéric VANNIÈRE
13665             on-web.fr
13666              
13667             // Platform.sh : https://platform.sh
13668             // Submitted by Nikola Kotur
13669             bc.platform.sh
13670             ent.platform.sh
13671             eu.platform.sh
13672             us.platform.sh
13673             *.platformsh.site
13674             *.tst.site
13675              
13676             // Platter: https://platter.dev
13677             // Submitted by Patrick Flor
13678             platter-app.com
13679             platter-app.dev
13680             platterp.us
13681              
13682             // Plesk : https://www.plesk.com/
13683             // Submitted by Anton Akhtyamov
13684             pdns.page
13685             plesk.page
13686             pleskns.com
13687              
13688             // Port53 : https://port53.io/
13689             // Submitted by Maximilian Schieder
13690             dyn53.io
13691              
13692             // Porter : https://porter.run/
13693             // Submitted by Rudraksh MK
13694             onporter.run
13695              
13696             // Positive Codes Technology Company : http://co.bn/faq.html
13697             // Submitted by Zulfais
13698             co.bn
13699              
13700             // Postman, Inc : https://postman.com
13701             // Submitted by Rahul Dhawan
13702             postman-echo.com
13703             pstmn.io
13704             mock.pstmn.io
13705             httpbin.org
13706              
13707             //prequalifyme.today : https://prequalifyme.today
13708             //Submitted by DeepakTiwari deepak@ivylead.io
13709             prequalifyme.today
13710              
13711             // prgmr.com : https://prgmr.com/
13712             // Submitted by Sarah Newman
13713             xen.prgmr.com
13714              
13715             // priv.at : http://www.nic.priv.at/
13716             // Submitted by registry
13717             priv.at
13718              
13719             // privacytools.io : https://www.privacytools.io/
13720             // Submitted by Jonah Aragon
13721             prvcy.page
13722              
13723             // Protocol Labs : https://protocol.ai/
13724             // Submitted by Michael Burns
13725             *.dweb.link
13726              
13727             // Protonet GmbH : http://protonet.io
13728             // Submitted by Martin Meier
13729             protonet.io
13730              
13731             // Publication Presse Communication SARL : https://ppcom.fr
13732             // Submitted by Yaacov Akiba Slama
13733             chirurgiens-dentistes-en-france.fr
13734             byen.site
13735              
13736             // pubtls.org: https://www.pubtls.org
13737             // Submitted by Kor Nielsen
13738             pubtls.org
13739              
13740             // PythonAnywhere LLP: https://www.pythonanywhere.com
13741             // Submitted by Giles Thomas
13742             pythonanywhere.com
13743             eu.pythonanywhere.com
13744              
13745             // QOTO, Org.
13746             // Submitted by Jeffrey Phillips Freeman
13747             qoto.io
13748              
13749             // Qualifio : https://qualifio.com/
13750             // Submitted by Xavier De Cock
13751             qualifioapp.com
13752              
13753             // QuickBackend: https://www.quickbackend.com
13754             // Submitted by Dani Biro
13755             qbuser.com
13756              
13757             // Rad Web Hosting: https://radwebhosting.com
13758             // Submitted by Scott Claeys
13759             cloudsite.builders
13760              
13761             // Redgate Software: https://red-gate.com
13762             // Submitted by Andrew Farries
13763             instances.spawn.cc
13764              
13765             // Redstar Consultants : https://www.redstarconsultants.com/
13766             // Submitted by Jons Slemmer
13767             instantcloud.cn
13768              
13769             // Russian Academy of Sciences
13770             // Submitted by Tech Support
13771             ras.ru
13772              
13773             // QA2
13774             // Submitted by Daniel Dent (https://www.danieldent.com/)
13775             qa2.com
13776              
13777             // QCX
13778             // Submitted by Cassandra Beelen
13779             qcx.io
13780             *.sys.qcx.io
13781              
13782             // QNAP System Inc : https://www.qnap.com
13783             // Submitted by Nick Chang
13784             dev-myqnapcloud.com
13785             alpha-myqnapcloud.com
13786             myqnapcloud.com
13787              
13788             // Quip : https://quip.com
13789             // Submitted by Patrick Linehan
13790             *.quipelements.com
13791              
13792             // Qutheory LLC : http://qutheory.io
13793             // Submitted by Jonas Schwartz
13794             vapor.cloud
13795             vaporcloud.io
13796              
13797             // Rackmaze LLC : https://www.rackmaze.com
13798             // Submitted by Kirill Pertsev
13799             rackmaze.com
13800             rackmaze.net
13801              
13802             // Rakuten Games, Inc : https://dev.viberplay.io
13803             // Submitted by Joshua Zhang
13804             g.vbrplsbx.io
13805              
13806             // Rancher Labs, Inc : https://rancher.com
13807             // Submitted by Vincent Fiduccia
13808             *.on-k3s.io
13809             *.on-rancher.cloud
13810             *.on-rio.io
13811              
13812             // Read The Docs, Inc : https://www.readthedocs.org
13813             // Submitted by David Fischer
13814             readthedocs.io
13815              
13816             // Red Hat, Inc. OpenShift : https://openshift.redhat.com/
13817             // Submitted by Tim Kramer
13818             rhcloud.com
13819              
13820             // Render : https://render.com
13821             // Submitted by Anurag Goel
13822             app.render.com
13823             onrender.com
13824              
13825             // Repl.it : https://repl.it
13826             // Submitted by Lincoln Bergeson
13827             firewalledreplit.co
13828             id.firewalledreplit.co
13829             repl.co
13830             id.repl.co
13831             repl.run
13832              
13833             // Resin.io : https://resin.io
13834             // Submitted by Tim Perry
13835             resindevice.io
13836             devices.resinstaging.io
13837              
13838             // RethinkDB : https://www.rethinkdb.com/
13839             // Submitted by Chris Kastorff
13840             hzc.io
13841              
13842             // Revitalised Limited : http://www.revitalised.co.uk
13843             // Submitted by Jack Price
13844             wellbeingzone.eu
13845             wellbeingzone.co.uk
13846              
13847             // Rico Developments Limited : https://adimo.co
13848             // Submitted by Colin Brown
13849             adimo.co.uk
13850              
13851             // Riseup Networks : https://riseup.net
13852             // Submitted by Micah Anderson
13853             itcouldbewor.se
13854              
13855             // Rochester Institute of Technology : http://www.rit.edu/
13856             // Submitted by Jennifer Herting
13857             git-pages.rit.edu
13858              
13859             // Rocky Enterprise Software Foundation : https://resf.org
13860             // Submitted by Neil Hanlon
13861             rocky.page
13862              
13863             // Rusnames Limited: http://rusnames.ru/
13864             // Submitted by Sergey Zotov
13865             xn--90amc.xn--p1acf
13866             xn--j1aef.xn--p1acf
13867             xn--j1ael8b.xn--p1acf
13868             xn--h1ahn.xn--p1acf
13869             xn--j1adp.xn--p1acf
13870             xn--c1avg.xn--p1acf
13871             xn--80aaa0cvac.xn--p1acf
13872             xn--h1aliz.xn--p1acf
13873             xn--90a1af.xn--p1acf
13874             xn--41a.xn--p1acf
13875              
13876             // Salesforce.com, Inc. https://salesforce.com/
13877             // Submitted by Michael Biven
13878             *.builder.code.com
13879             *.dev-builder.code.com
13880             *.stg-builder.code.com
13881              
13882             // Sandstorm Development Group, Inc. : https://sandcats.io/
13883             // Submitted by Asheesh Laroia
13884             sandcats.io
13885              
13886             // SBE network solutions GmbH : https://www.sbe.de/
13887             // Submitted by Norman Meilick
13888             logoip.de
13889             logoip.com
13890              
13891             // Scaleway : https://www.scaleway.com/
13892             // Submitted by Rémy Léone
13893             fr-par-1.baremetal.scw.cloud
13894             fr-par-2.baremetal.scw.cloud
13895             nl-ams-1.baremetal.scw.cloud
13896             fnc.fr-par.scw.cloud
13897             functions.fnc.fr-par.scw.cloud
13898             k8s.fr-par.scw.cloud
13899             nodes.k8s.fr-par.scw.cloud
13900             s3.fr-par.scw.cloud
13901             s3-website.fr-par.scw.cloud
13902             whm.fr-par.scw.cloud
13903             priv.instances.scw.cloud
13904             pub.instances.scw.cloud
13905             k8s.scw.cloud
13906             k8s.nl-ams.scw.cloud
13907             nodes.k8s.nl-ams.scw.cloud
13908             s3.nl-ams.scw.cloud
13909             s3-website.nl-ams.scw.cloud
13910             whm.nl-ams.scw.cloud
13911             k8s.pl-waw.scw.cloud
13912             nodes.k8s.pl-waw.scw.cloud
13913             s3.pl-waw.scw.cloud
13914             s3-website.pl-waw.scw.cloud
13915             scalebook.scw.cloud
13916             smartlabeling.scw.cloud
13917             dedibox.fr
13918              
13919             // schokokeks.org GbR : https://schokokeks.org/
13920             // Submitted by Hanno Böck
13921             schokokeks.net
13922              
13923             // Scottish Government: https://www.gov.scot
13924             // Submitted by Martin Ellis
13925             gov.scot
13926             service.gov.scot
13927              
13928             // Scry Security : http://www.scrysec.com
13929             // Submitted by Shante Adam
13930             scrysec.com
13931              
13932             // Securepoint GmbH : https://www.securepoint.de
13933             // Submitted by Erik Anders
13934             firewall-gateway.com
13935             firewall-gateway.de
13936             my-gateway.de
13937             my-router.de
13938             spdns.de
13939             spdns.eu
13940             firewall-gateway.net
13941             my-firewall.org
13942             myfirewall.org
13943             spdns.org
13944              
13945             // Seidat : https://www.seidat.com
13946             // Submitted by Artem Kondratev
13947             seidat.net
13948              
13949             // Sellfy : https://sellfy.com
13950             // Submitted by Yuriy Romadin
13951             sellfy.store
13952              
13953             // Senseering GmbH : https://www.senseering.de
13954             // Submitted by Felix Mönckemeyer
13955             senseering.net
13956              
13957             // Sendmsg: https://www.sendmsg.co.il
13958             // Submitted by Assaf Stern
13959             minisite.ms
13960              
13961             // Service Magnet : https://myservicemagnet.com
13962             // Submitted by Dave Sanders
13963             magnet.page
13964              
13965             // Service Online LLC : http://drs.ua/
13966             // Submitted by Serhii Bulakh
13967             biz.ua
13968             co.ua
13969             pp.ua
13970              
13971             // Shift Crypto AG : https://shiftcrypto.ch
13972             // Submitted by alex
13973             shiftcrypto.dev
13974             shiftcrypto.io
13975              
13976             // ShiftEdit : https://shiftedit.net/
13977             // Submitted by Adam Jimenez
13978             shiftedit.io
13979              
13980             // Shopblocks : http://www.shopblocks.com/
13981             // Submitted by Alex Bowers
13982             myshopblocks.com
13983              
13984             // Shopify : https://www.shopify.com
13985             // Submitted by Alex Richter
13986             myshopify.com
13987              
13988             // Shopit : https://www.shopitcommerce.com/
13989             // Submitted by Craig McMahon
13990             shopitsite.com
13991              
13992             // shopware AG : https://shopware.com
13993             // Submitted by Jens Küper
13994             shopware.store
13995              
13996             // Siemens Mobility GmbH
13997             // Submitted by Oliver Graebner
13998             mo-siemens.io
13999              
14000             // SinaAppEngine : http://sae.sina.com.cn/
14001             // Submitted by SinaAppEngine
14002             1kapp.com
14003             appchizi.com
14004             applinzi.com
14005             sinaapp.com
14006             vipsinaapp.com
14007              
14008             // Siteleaf : https://www.siteleaf.com/
14009             // Submitted by Skylar Challand
14010             siteleaf.net
14011              
14012             // Skyhat : http://www.skyhat.io
14013             // Submitted by Shante Adam
14014             bounty-full.com
14015             alpha.bounty-full.com
14016             beta.bounty-full.com
14017              
14018             // Small Technology Foundation : https://small-tech.org
14019             // Submitted by Aral Balkan
14020             small-web.org
14021              
14022             // Smoove.io : https://www.smoove.io/
14023             // Submitted by Dan Kozak
14024             vp4.me
14025              
14026             // Snowflake Inc : https://www.snowflake.com/
14027             // Submitted by Faith Olapade
14028             streamlitapp.com
14029              
14030             // Snowplow Analytics : https://snowplowanalytics.com/
14031             // Submitted by Ian Streeter
14032             try-snowplow.com
14033              
14034             // SourceHut : https://sourcehut.org
14035             // Submitted by Drew DeVault
14036             srht.site
14037              
14038             // Stackhero : https://www.stackhero.io
14039             // Submitted by Adrien Gillon
14040             stackhero-network.com
14041              
14042             // Staclar : https://staclar.com
14043             // Submitted by Q Misell
14044             musician.io
14045             // Submitted by Matthias Merkel
14046             novecore.site
14047              
14048             // staticland : https://static.land
14049             // Submitted by Seth Vincent
14050             static.land
14051             dev.static.land
14052             sites.static.land
14053              
14054             // Storebase : https://www.storebase.io
14055             // Submitted by Tony Schirmer
14056             storebase.store
14057              
14058             // Strategic System Consulting (eApps Hosting): https://www.eapps.com/
14059             // Submitted by Alex Oancea
14060             vps-host.net
14061             atl.jelastic.vps-host.net
14062             njs.jelastic.vps-host.net
14063             ric.jelastic.vps-host.net
14064              
14065             // Sony Interactive Entertainment LLC : https://sie.com/
14066             // Submitted by David Coles
14067             playstation-cloud.com
14068              
14069             // SourceLair PC : https://www.sourcelair.com
14070             // Submitted by Antonis Kalipetis
14071             apps.lair.io
14072             *.stolos.io
14073              
14074             // SpaceKit : https://www.spacekit.io/
14075             // Submitted by Reza Akhavan
14076             spacekit.io
14077              
14078             // SpeedPartner GmbH: https://www.speedpartner.de/
14079             // Submitted by Stefan Neufeind
14080             customer.speedpartner.de
14081              
14082             // Spreadshop (sprd.net AG) : https://www.spreadshop.com/
14083             // Submitted by Martin Breest
14084             myspreadshop.at
14085             myspreadshop.com.au
14086             myspreadshop.be
14087             myspreadshop.ca
14088             myspreadshop.ch
14089             myspreadshop.com
14090             myspreadshop.de
14091             myspreadshop.dk
14092             myspreadshop.es
14093             myspreadshop.fi
14094             myspreadshop.fr
14095             myspreadshop.ie
14096             myspreadshop.it
14097             myspreadshop.net
14098             myspreadshop.nl
14099             myspreadshop.no
14100             myspreadshop.pl
14101             myspreadshop.se
14102             myspreadshop.co.uk
14103              
14104             // Standard Library : https://stdlib.com
14105             // Submitted by Jacob Lee
14106             api.stdlib.com
14107              
14108             // Storj Labs Inc. : https://storj.io/
14109             // Submitted by Philip Hutchins
14110             storj.farm
14111              
14112             // Studenten Net Twente : http://www.snt.utwente.nl/
14113             // Submitted by Silke Hofstra
14114             utwente.io
14115              
14116             // Student-Run Computing Facility : https://www.srcf.net/
14117             // Submitted by Edwin Balani
14118             soc.srcf.net
14119             user.srcf.net
14120              
14121             // Sub 6 Limited: http://www.sub6.com
14122             // Submitted by Dan Miller
14123             temp-dns.com
14124              
14125             // Supabase : https://supabase.io
14126             // Submitted by Inian Parameshwaran
14127             supabase.co
14128             supabase.in
14129             supabase.net
14130             su.paba.se
14131              
14132             // Symfony, SAS : https://symfony.com/
14133             // Submitted by Fabien Potencier
14134             *.s5y.io
14135             *.sensiosite.cloud
14136              
14137             // Syncloud : https://syncloud.org
14138             // Submitted by Boris Rybalkin
14139             syncloud.it
14140              
14141             // Synology, Inc. : https://www.synology.com/
14142             // Submitted by Rony Weng
14143             dscloud.biz
14144             direct.quickconnect.cn
14145             dsmynas.com
14146             familyds.com
14147             diskstation.me
14148             dscloud.me
14149             i234.me
14150             myds.me
14151             synology.me
14152             dscloud.mobi
14153             dsmynas.net
14154             familyds.net
14155             dsmynas.org
14156             familyds.org
14157             vpnplus.to
14158             direct.quickconnect.to
14159              
14160             // Tabit Technologies Ltd. : https://tabit.cloud/
14161             // Submitted by Oren Agiv
14162             tabitorder.co.il
14163              
14164             // TAIFUN Software AG : http://taifun-software.de
14165             // Submitted by Bjoern Henke
14166             taifun-dns.de
14167              
14168             // Tailscale Inc. : https://www.tailscale.com
14169             // Submitted by David Anderson
14170             beta.tailscale.net
14171             ts.net
14172              
14173             // TASK geographical domains (www.task.gda.pl/uslugi/dns)
14174             gda.pl
14175             gdansk.pl
14176             gdynia.pl
14177             med.pl
14178             sopot.pl
14179              
14180             // team.blue https://team.blue
14181             // Submitted by Cedric Dubois
14182             site.tb-hosting.com
14183              
14184             // Teckids e.V. : https://www.teckids.org
14185             // Submitted by Dominik George
14186             edugit.io
14187             s3.teckids.org
14188              
14189             // Telebit : https://telebit.cloud
14190             // Submitted by AJ ONeal
14191             telebit.app
14192             telebit.io
14193             *.telebit.xyz
14194              
14195             // Thingdust AG : https://thingdust.com/
14196             // Submitted by Adrian Imboden
14197             *.firenet.ch
14198             *.svc.firenet.ch
14199             reservd.com
14200             thingdustdata.com
14201             cust.dev.thingdust.io
14202             cust.disrec.thingdust.io
14203             cust.prod.thingdust.io
14204             cust.testing.thingdust.io
14205             reservd.dev.thingdust.io
14206             reservd.disrec.thingdust.io
14207             reservd.testing.thingdust.io
14208              
14209             // ticket i/O GmbH : https://ticket.io
14210             // Submitted by Christian Franke
14211             tickets.io
14212              
14213             // Tlon.io : https://tlon.io
14214             // Submitted by Mark Staarink
14215             arvo.network
14216             azimuth.network
14217             tlon.network
14218              
14219             // Tor Project, Inc. : https://torproject.org
14220             // Submitted by Antoine Beaupré
14221             torproject.net
14222             pages.torproject.net
14223              
14224             // TownNews.com : http://www.townnews.com
14225             // Submitted by Dustin Ward
14226             bloxcms.com
14227             townnews-staging.com
14228              
14229             // TradableBits: https://tradablebits.com
14230             // Submitted by Dmitry Khrisanov dmitry@tradablebits.com
14231             tbits.me
14232              
14233             // TrafficPlex GmbH : https://www.trafficplex.de/
14234             // Submitted by Phillipp Röll
14235             12hp.at
14236             2ix.at
14237             4lima.at
14238             lima-city.at
14239             12hp.ch
14240             2ix.ch
14241             4lima.ch
14242             lima-city.ch
14243             trafficplex.cloud
14244             de.cool
14245             12hp.de
14246             2ix.de
14247             4lima.de
14248             lima-city.de
14249             1337.pictures
14250             clan.rip
14251             lima-city.rocks
14252             webspace.rocks
14253             lima.zone
14254              
14255             // TransIP : https://www.transip.nl
14256             // Submitted by Rory Breuk
14257             *.transurl.be
14258             *.transurl.eu
14259             *.transurl.nl
14260              
14261             // TransIP: https://www.transip.nl
14262             // Submitted by Cedric Dubois
14263             site.transip.me
14264              
14265             // TuxFamily : http://tuxfamily.org
14266             // Submitted by TuxFamily administrators
14267             tuxfamily.org
14268              
14269             // TwoDNS : https://www.twodns.de/
14270             // Submitted by TwoDNS-Support
14271             dd-dns.de
14272             diskstation.eu
14273             diskstation.org
14274             dray-dns.de
14275             draydns.de
14276             dyn-vpn.de
14277             dynvpn.de
14278             mein-vigor.de
14279             my-vigor.de
14280             my-wan.de
14281             syno-ds.de
14282             synology-diskstation.de
14283             synology-ds.de
14284              
14285             // Typedream : https://typedream.com
14286             // Submitted by Putri Karunia
14287             typedream.app
14288              
14289             // Typeform : https://www.typeform.com
14290             // Submitted by Sergi Ferriz
14291             pro.typeform.com
14292              
14293             // Uberspace : https://uberspace.de
14294             // Submitted by Moritz Werner
14295             uber.space
14296             *.uberspace.de
14297              
14298             // UDR Limited : http://www.udr.hk.com
14299             // Submitted by registry
14300             hk.com
14301             hk.org
14302             ltd.hk
14303             inc.hk
14304              
14305             // UNIVERSAL DOMAIN REGISTRY : https://www.udr.org.yt/
14306             // see also: whois -h whois.udr.org.yt help
14307             // Submitted by Atanunu Igbunuroghene
14308             name.pm
14309             sch.tf
14310             biz.wf
14311             sch.wf
14312             org.yt
14313              
14314             // United Gameserver GmbH : https://united-gameserver.de
14315             // Submitted by Stefan Schwarz
14316             virtualuser.de
14317             virtual-user.de
14318              
14319             // Upli : https://upli.io
14320             // Submitted by Lenny Bakkalian
14321             upli.io
14322              
14323             // urown.net : https://urown.net
14324             // Submitted by Hostmaster
14325             urown.cloud
14326             dnsupdate.info
14327              
14328             // .US
14329             // Submitted by Ed Moore
14330             lib.de.us
14331              
14332             // VeryPositive SIA : http://very.lv
14333             // Submitted by Danko Aleksejevs
14334             2038.io
14335              
14336             // Vercel, Inc : https://vercel.com/
14337             // Submitted by Connor Davis
14338             vercel.app
14339             vercel.dev
14340             now.sh
14341              
14342             // Viprinet Europe GmbH : http://www.viprinet.com
14343             // Submitted by Simon Kissel
14344             router.management
14345              
14346             // Virtual-Info : https://www.virtual-info.info/
14347             // Submitted by Adnan RIHAN
14348             v-info.info
14349              
14350             // Voorloper.com: https://voorloper.com
14351             // Submitted by Nathan van Bakel
14352             voorloper.cloud
14353              
14354             // Voxel.sh DNS : https://voxel.sh/dns/
14355             // Submitted by Mia Rehlinger
14356             neko.am
14357             nyaa.am
14358             be.ax
14359             cat.ax
14360             es.ax
14361             eu.ax
14362             gg.ax
14363             mc.ax
14364             us.ax
14365             xy.ax
14366             nl.ci
14367             xx.gl
14368             app.gp
14369             blog.gt
14370             de.gt
14371             to.gt
14372             be.gy
14373             cc.hn
14374             blog.kg
14375             io.kg
14376             jp.kg
14377             tv.kg
14378             uk.kg
14379             us.kg
14380             de.ls
14381             at.md
14382             de.md
14383             jp.md
14384             to.md
14385             indie.porn
14386             vxl.sh
14387             ch.tc
14388             me.tc
14389             we.tc
14390             nyan.to
14391             at.vg
14392             blog.vu
14393             dev.vu
14394             me.vu
14395              
14396             // V.UA Domain Administrator : https://domain.v.ua/
14397             // Submitted by Serhii Rostilo
14398             v.ua
14399              
14400             // Vultr Objects : https://www.vultr.com/products/object-storage/
14401             // Submitted by Niels Maumenee
14402             *.vultrobjects.com
14403              
14404             // Waffle Computer Inc., Ltd. : https://docs.waffleinfo.com
14405             // Submitted by Masayuki Note
14406             wafflecell.com
14407              
14408             // WebHare bv: https://www.webhare.com/
14409             // Submitted by Arnold Hendriks
14410             *.webhare.dev
14411              
14412             // WebHotelier Technologies Ltd: https://www.webhotelier.net/
14413             // Submitted by Apostolos Tsakpinis
14414             reserve-online.net
14415             reserve-online.com
14416             bookonline.app
14417             hotelwithflight.com
14418              
14419             // WeDeploy by Liferay, Inc. : https://www.wedeploy.com
14420             // Submitted by Henrique Vicente
14421             wedeploy.io
14422             wedeploy.me
14423             wedeploy.sh
14424              
14425             // Western Digital Technologies, Inc : https://www.wdc.com
14426             // Submitted by Jung Jin
14427             remotewd.com
14428              
14429             // WIARD Enterprises : https://wiardweb.com
14430             // Submitted by Kidd Hustle
14431             pages.wiardweb.com
14432              
14433             // Wikimedia Labs : https://wikitech.wikimedia.org
14434             // Submitted by Arturo Borrero Gonzalez
14435             wmflabs.org
14436             toolforge.org
14437             wmcloud.org
14438              
14439             // WISP : https://wisp.gg
14440             // Submitted by Stepan Fedotov
14441             panel.gg
14442             daemon.panel.gg
14443              
14444             // Wizard Zines : https://wizardzines.com
14445             // Submitted by Julia Evans
14446             messwithdns.com
14447              
14448             // WoltLab GmbH : https://www.woltlab.com
14449             // Submitted by Tim Düsterhus
14450             woltlab-demo.com
14451             myforum.community
14452             community-pro.de
14453             diskussionsbereich.de
14454             community-pro.net
14455             meinforum.net
14456              
14457             // Woods Valldata : https://www.woodsvalldata.co.uk/
14458             // Submitted by Chris Whittle
14459             affinitylottery.org.uk
14460             raffleentry.org.uk
14461             weeklylottery.org.uk
14462              
14463             // WP Engine : https://wpengine.com/
14464             // Submitted by Michael Smith
14465             // Submitted by Brandon DuRette
14466             wpenginepowered.com
14467             js.wpenginepowered.com
14468              
14469             // Wix.com, Inc. : https://www.wix.com
14470             // Submitted by Shahar Talmi
14471             wixsite.com
14472             editorx.io
14473              
14474             // XenonCloud GbR: https://xenoncloud.net
14475             // Submitted by Julian Uphoff
14476             half.host
14477              
14478             // XnBay Technology : http://www.xnbay.com/
14479             // Submitted by XnBay Developer
14480             xnbay.com
14481             u2.xnbay.com
14482             u2-local.xnbay.com
14483              
14484             // XS4ALL Internet bv : https://www.xs4all.nl/
14485             // Submitted by Daniel Mostertman
14486             cistron.nl
14487             demon.nl
14488             xs4all.space
14489              
14490             // Yandex.Cloud LLC: https://cloud.yandex.com
14491             // Submitted by Alexander Lodin
14492             yandexcloud.net
14493             storage.yandexcloud.net
14494             website.yandexcloud.net
14495              
14496             // YesCourse Pty Ltd : https://yescourse.com
14497             // Submitted by Atul Bhouraskar
14498             official.academy
14499              
14500             // Yola : https://www.yola.com/
14501             // Submitted by Stefano Rivera
14502             yolasite.com
14503              
14504             // Yombo : https://yombo.net
14505             // Submitted by Mitch Schwenk
14506             ybo.faith
14507             yombo.me
14508             homelink.one
14509             ybo.party
14510             ybo.review
14511             ybo.science
14512             ybo.trade
14513              
14514             // Yunohost : https://yunohost.org
14515             // Submitted by Valentin Grimaud
14516             ynh.fr
14517             nohost.me
14518             noho.st
14519              
14520             // ZaNiC : http://www.za.net/
14521             // Submitted by registry
14522             za.net
14523             za.org
14524              
14525             // Zine EOOD : https://zine.bg/
14526             // Submitted by Martin Angelov
14527             bss.design
14528              
14529             // Zitcom A/S : https://www.zitcom.dk
14530             // Submitted by Emil Stahl
14531             basicserver.io
14532             virtualserver.io
14533             enterprisecloud.nu
14534              
14535             // ===END PRIVATE DOMAINS===
14536             END_BUILTIN_DATA
14537             1;