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