public_suffix_service 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,38 @@
1
+ = Changelog
2
+
3
+
4
+ == Release 0.4.0
5
+
6
+ * CHANGED: Rename library from DomainName to PublicSuffixService to reduce the probability of name conflicts.
7
+
8
+
9
+ == Release 0.3.1
10
+
11
+ * Deprecated DomainName library.
12
+
13
+
14
+ == Release 0.3.0
15
+
16
+ * CHANGED: DomainName#domain and DomainName#subdomain are no longer alias of Domain#sld and Domain#tld.
17
+
18
+ * CHANGED: Removed DomainName#labels and decoupled Rule from DomainName.
19
+
20
+ * CHANGED: DomainName#valid? no longer instantiates new DomainName objects. This means less overhead.
21
+
22
+ * CHANGED: Refactoring the entire DomainName API. Removed the internal on-the-fly parsing. Added a bunch of new methods to check and validate the DomainName.
23
+
24
+
25
+ == Release 0.2.0
26
+
27
+ * ADDED: DomainName#valid?
28
+
29
+ * ADDED: DomainName#parse and DomainName#parse!
30
+
31
+ * ADDED: DomainName#valid_domain? and DomainName#valid_subdomain?
32
+
33
+ * CHANGED: Make sure RuleList lookup is only performed once.
34
+
35
+
36
+ == Release 0.1.0
37
+
38
+ * Initial version
@@ -0,0 +1,25 @@
1
+ = License
2
+
3
+ (The MIT License)
4
+
5
+ Copyright (c) 2009-2010 Simone Carletti <weppos@weppos.net>
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ "Software"), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
+
@@ -0,0 +1,99 @@
1
+ = Public Suffix Service
2
+
3
+ Public Suffix Service is a Ruby domain name parser based on the Public Suffix List available at http://publicsuffix.org.
4
+
5
+
6
+ == What is the Public Suffix List?
7
+
8
+ The Public Suffix List is a cross-vendor initiative to provide an accurate list of domain name suffixes.
9
+
10
+ The Public Suffix List is an initiative of the Mozilla Project, but is maintained as a community resource. It is available for use in any software, but was originally created to meet the needs of browser manufacturers.
11
+
12
+ A "public suffix" is one under which Internet users can directly register names. Some examples of public suffixes are ".com", ".co.uk" and "pvt.k12.wy.us". The Public Suffix List is a list of all known public suffixes.
13
+
14
+ Source: http://publicsuffix.org
15
+
16
+
17
+ == Why the Public Suffix List is better than any available Regular Expression parser?
18
+
19
+ Previously, browsers used an algorithm which basically only denied setting wide-ranging cookies for top-level domains with no dots (e.g. com or org). However, this did not work for top-level domains where only third-level registrations are allowed (e.g. co.uk). In these cases, websites could set a cookie for co.uk which will be passed onto every website registered under co.uk.
20
+
21
+ Clearly, this was a security risk as it allowed websites other than the one setting the cookie to read it, and therefore potentially extract sensitive information.
22
+
23
+ Since there is no algorithmic method of finding the highest level at which a domain may be registered for a particular top-level domain (the policies differ with each registry), the only method is to create a list of all top-level domains and the level at which domains can be registered. This is the aim of the effective TLD list.
24
+
25
+ As well as being used to prevent cookies from being set where they shouldn't be, the list can also potentially be used for other applications where the registry controlled and privately controlled parts of a domain name need to be known, for example when grouping by top-level domains.
26
+
27
+ Source: https://wiki.mozilla.org/Public_Suffix_List
28
+
29
+ Not convinced yet? Check out a real world example:
30
+ http://stackoverflow.com/questions/288810/get-the-subdomain-from-a-url
31
+
32
+
33
+ == Requirements
34
+
35
+ * Ruby >= 1.8.6 (not tested with previous versions)
36
+
37
+ Successfully tested against
38
+
39
+ * Ruby 1.8.6 / 1.8.7 / 1.9.1
40
+ * MacRuby 0.4
41
+ * Ruby Enterprise Edition
42
+
43
+
44
+ == Installation
45
+
46
+ Via RubyGems
47
+
48
+ $ gem install public_suffix_service
49
+
50
+ You might need administrator privileges on your system to install it.
51
+
52
+
53
+ == Usage
54
+
55
+ Example domain without subdomains.
56
+
57
+ domain = PublicSuffixService.parse("google.com")
58
+ domain.tld
59
+ # => "com"
60
+ domain.domain
61
+ # => "google"
62
+ domain.subdomain
63
+ # => nil
64
+
65
+ Example domain with subdomains.
66
+
67
+ domain = PublicSuffixService.parse("www.google.com")
68
+ domain.tld
69
+ # => "com"
70
+ domain.domain
71
+ # => "google"
72
+ domain.subdomain
73
+ # => "www"
74
+
75
+ Simple validation example.
76
+
77
+ PublicSuffixService.valid?("google.com")
78
+ # => true
79
+
80
+ PublicSuffixService.valid?("www.google.com")
81
+ # => true
82
+
83
+ PublicSuffixService.valid?("x.yz")
84
+ # => false
85
+
86
+
87
+ == Credits
88
+
89
+ Author:: {Simone Carletti}[http://www.simonecarletti.com/] <weppos@weppos.net>
90
+
91
+
92
+ == Changelog
93
+
94
+ See the CHANGELOG.rdoc file for details.
95
+
96
+
97
+ == License
98
+
99
+ Copyright (c) 2009-2010 Simone Carletti, DomainName is released under the MIT license.
@@ -0,0 +1,132 @@
1
+ require "rubygems"
2
+ require "rake/testtask"
3
+ require "rake/rdoctask"
4
+ require "rake/gempackagetask"
5
+
6
+ $:.unshift(File.dirname(__FILE__) + "/lib")
7
+ require 'public_suffix_service'
8
+
9
+
10
+ # Common package properties
11
+ PKG_NAME = ENV['PKG_NAME'] || PublicSuffixService::GEM
12
+ PKG_VERSION = ENV['PKG_VERSION'] || PublicSuffixService::VERSION
13
+ RUBYFORGE_PROJECT = nil
14
+
15
+ if ENV['SNAPSHOT'].to_i == 1
16
+ PKG_VERSION << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
17
+ end
18
+
19
+
20
+ # Run all the tests in the /test folder
21
+ Rake::TestTask.new do |t|
22
+ t.libs << "test"
23
+ t.test_files = FileList["test/**/*_test.rb"]
24
+ t.verbose = true
25
+ end
26
+
27
+ # Generate documentation
28
+ Rake::RDocTask.new do |rd|
29
+ rd.main = "README.rdoc"
30
+ rd.rdoc_files.include("*.rdoc", "lib/**/*.rb")
31
+ rd.rdoc_dir = "rdoc"
32
+ end
33
+
34
+ # Run test by default.
35
+ task :default => ["test"]
36
+
37
+
38
+ # This builds the actual gem. For details of what all these options
39
+ # mean, and other ones you can add, check the documentation here:
40
+ #
41
+ # http://rubygems.org/read/chapter/20
42
+ #
43
+ spec = Gem::Specification.new do |s|
44
+
45
+ s.name = PKG_NAME
46
+ s.version = PKG_VERSION
47
+ s.summary = "Domain Name parser based on the Public Suffix List"
48
+ s.author = "Simone Carletti"
49
+ s.email = "weppos@weppos.net"
50
+ s.homepage = "http://www.simonecarletti.com/code/public_suffix_service"
51
+ s.description = <<-EOD
52
+ Intelligent Domain Name parser based in the Public Suffic List. \
53
+ Domain Name can parse and decompose a domain name into top level domain, \
54
+ domain and subdomains.
55
+ EOD
56
+
57
+ s.has_rdoc = true
58
+ # You should probably have a README of some kind. Change the filename
59
+ # as appropriate
60
+ s.extra_rdoc_files = Dir.glob("*.rdoc")
61
+ s.rdoc_options = %w(--main README.rdoc)
62
+
63
+ # Add any extra files to include in the gem (like your README)
64
+ s.files = %w(Rakefile) + Dir.glob("*.{rdoc,gemspec}") + Dir.glob("{test,lib}/**/*")
65
+ s.require_paths = ["lib"]
66
+
67
+ # If you want to depend on other gems, add them here, along with any
68
+ # relevant versions
69
+ # s.add_dependency("some_other_gem", "~> 0.1.0")
70
+
71
+ # If your tests use any gems, include them here
72
+ s.add_development_dependency("mocha")
73
+ end
74
+
75
+ # This task actually builds the gem. We also regenerate a static
76
+ # .gemspec file, which is useful if something (i.e. GitHub) will
77
+ # be automatically building a gem for this project. If you're not
78
+ # using GitHub, edit as appropriate.
79
+ Rake::GemPackageTask.new(spec) do |pkg|
80
+ pkg.gem_spec = spec
81
+ end
82
+
83
+ desc "Build the gemspec file #{spec.name}.gemspec"
84
+ task :gemspec do
85
+ file = File.dirname(__FILE__) + "/#{spec.name}.gemspec"
86
+ File.open(file, "w") {|f| f << spec.to_ruby }
87
+ end
88
+
89
+ desc "Remove any temporary products, including gemspec."
90
+ task :clean => [:clobber] do
91
+ rm "#{spec.name}.gemspec"
92
+ end
93
+
94
+ desc "Remove any generated file"
95
+ task :clobber => [:clobber_rdoc, :clobber_rcov, :clobber_package]
96
+
97
+ desc "Package the library and generates the gemspec"
98
+ task :package => [:gemspec]
99
+
100
+ begin
101
+ require "rcov/rcovtask"
102
+
103
+ desc "Create a code coverage report."
104
+ Rcov::RcovTask.new do |t|
105
+ t.test_files = FileList["test/**/*_test.rb"]
106
+ t.ruby_opts << "-Itest -x mocha,rcov,Rakefile"
107
+ t.verbose = true
108
+ end
109
+ rescue LoadError
110
+ task :clobber_rcov
111
+ puts "RCov is not available"
112
+ end
113
+
114
+ desc "Open an irb session preloaded with this library"
115
+ task :console do
116
+ sh "irb -rubygems -I lib -r public_suffix_service.rb"
117
+ end
118
+
119
+ begin
120
+ require 'code_statistics'
121
+ desc "Show library's code statistics"
122
+ task :stats do
123
+ CodeStatistics.new(["Public Suffix Service", "lib"],
124
+ ["Tests", "test"]).to_s
125
+ end
126
+ rescue LoadError
127
+ puts "CodeStatistics (Rails) is not available"
128
+ end
129
+
130
+ Dir["tasks/**/*.rake"].each do |file|
131
+ load(file)
132
+ end
@@ -0,0 +1,90 @@
1
+ #
2
+ # = Public Suffix Service
3
+ #
4
+ # Domain Name parser based on the Public Suffix List
5
+ #
6
+ #
7
+ # Category:: Net
8
+ # Package:: PublicSuffixService
9
+ # Author:: Simone Carletti <weppos@weppos.net>
10
+ # License:: MIT License
11
+ #
12
+ #--
13
+ #
14
+ #++
15
+
16
+
17
+ require 'public_suffix_service/domain'
18
+ require 'public_suffix_service/version'
19
+ require 'public_suffix_service/errors'
20
+ require 'public_suffix_service/rule'
21
+ require 'public_suffix_service/rule_list'
22
+
23
+
24
+ module PublicSuffixService
25
+
26
+ NAME = "Public Suffix Service"
27
+ GEM = "public_suffix_service"
28
+ AUTHORS = ["Simone Carletti <weppos@weppos.net>"]
29
+
30
+
31
+ # Parses <tt>domain</tt> and returns a new <tt>PubliSuffixService::Domain</tt> instance.
32
+ #
33
+ # domain - A String with the domain name to parse.
34
+ #
35
+ # PublicSuffixService.parse("google.com")
36
+ # # => #<PubliSuffixService::Domain ...>
37
+ #
38
+ # PublicSuffixService.parse("www.google.com")
39
+ # # => #<PubliSuffixService::Domain ...>
40
+ #
41
+ # PublicSuffixService.parse("http://www.google.com")
42
+ # # => PublicSuffixService::InvalidDomain
43
+ #
44
+ # PublicSuffixService.parse("x.yz")
45
+ # # => PublicSuffixService::InvalidDomain
46
+ #
47
+ # Raises PublicSuffixService::Error if domain is not a valid domain
48
+ def self.parse(domain)
49
+ rule = RuleList.default.find(domain) || raise(InvalidDomain, "`#{domain}' is not a valid domain")
50
+
51
+ left, right = rule.decompose(domain)
52
+ parts = left.split(".")
53
+
54
+ # If we have 0 parts left, there is just a tld and no domain or subdomain
55
+ # If we have 1 part left, there is just a tld, domain and not subdomain
56
+ # If we have 2 parts left, the last part is the domain, the other parts (combined) are the subdomain
57
+ tld = right
58
+ sld = parts.empty? ? nil : parts.pop
59
+ trd = parts.empty? ? nil : parts.join(".")
60
+
61
+ Domain.new(tld, sld, trd)
62
+ end
63
+
64
+ # Checks whether <tt>domain</tt> is a valid domain name.
65
+ #
66
+ # This method doesn't care whether domain is a domain or subdomain.
67
+ # The check is performed using the default <tt>PublicSuffixService::RuleList</tt>.
68
+ #
69
+ # domain - A String with the domain name to check.
70
+ #
71
+ # Examples
72
+ #
73
+ # PublicSuffixService.valid?("google.com")
74
+ # # => true
75
+ #
76
+ # PublicSuffixService.valid?("www.google.com")
77
+ # # => true
78
+ #
79
+ # PublicSuffixService.valid?("http://www.google.com")
80
+ # # => false
81
+ #
82
+ # PublicSuffixService.valid?("x.yz")
83
+ # # => false
84
+ #
85
+ # Returns true if <tt>domain</tt> is a valid domain.
86
+ def self.valid?(domain)
87
+ !RuleList.default.find(domain).nil?
88
+ end
89
+
90
+ end
@@ -0,0 +1,4449 @@
1
+ // ***** BEGIN LICENSE BLOCK *****
2
+ // Version: MPL 1.1/GPL 2.0/LGPL 2.1
3
+ //
4
+ // The contents of this file are subject to the Mozilla Public License Version
5
+ // 1.1 (the "License"); you may not use this file except in compliance with
6
+ // the License. You may obtain a copy of the License at
7
+ // http://www.mozilla.org/MPL/
8
+ //
9
+ // Software distributed under the License is distributed on an "AS IS" basis,
10
+ // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11
+ // for the specific language governing rights and limitations under the
12
+ // License.
13
+ //
14
+ // The Original Code is the Public Suffix List.
15
+ //
16
+ // The Initial Developer of the Original Code is
17
+ // Jo Hermans <jo.hermans@gmail.com>.
18
+ // Portions created by the Initial Developer are Copyright (C) 2007
19
+ // the Initial Developer. All Rights Reserved.
20
+ //
21
+ // Contributor(s):
22
+ // Ruben Arakelyan <ruben@wackomenace.co.uk>
23
+ // Gervase Markham <gerv@gerv.net>
24
+ // Pamela Greene <pamg.bugs@gmail.com>
25
+ // David Triendl <david@triendl.name>
26
+ // The kind representatives of many TLD registries
27
+ //
28
+ // Alternatively, the contents of this file may be used under the terms of
29
+ // either the GNU General Public License Version 2 or later (the "GPL"), or
30
+ // the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31
+ // in which case the provisions of the GPL or the LGPL are applicable instead
32
+ // of those above. If you wish to allow use of your version of this file only
33
+ // under the terms of either the GPL or the LGPL, and not to allow others to
34
+ // use your version of this file under the terms of the MPL, indicate your
35
+ // decision by deleting the provisions above and replace them with the notice
36
+ // and other provisions required by the GPL or the LGPL. If you do not delete
37
+ // the provisions above, a recipient may use your version of this file under
38
+ // the terms of any one of the MPL, the GPL or the LGPL.
39
+ //
40
+ // ***** END LICENSE BLOCK *****
41
+
42
+ // ac : http://en.wikipedia.org/wiki/.ac
43
+ ac
44
+ com.ac
45
+ edu.ac
46
+ gov.ac
47
+ net.ac
48
+ mil.ac
49
+ org.ac
50
+
51
+ // ad : http://en.wikipedia.org/wiki/.ad
52
+ ad
53
+ nom.ad
54
+
55
+ // ae : http://en.wikipedia.org/wiki/.ae
56
+ // see also: "Domain Name Eligibility Policy" at http://www.aeda.ae/eng/aepolicy.php
57
+ ae
58
+ co.ae
59
+ net.ae
60
+ org.ae
61
+ sch.ae
62
+ ac.ae
63
+ gov.ae
64
+ mil.ae
65
+
66
+ // aero : see http://www.information.aero/index.php?id=66
67
+ aero
68
+ accident-investigation.aero
69
+ accident-prevention.aero
70
+ aerobatic.aero
71
+ aeroclub.aero
72
+ aerodrome.aero
73
+ agents.aero
74
+ aircraft.aero
75
+ airline.aero
76
+ airport.aero
77
+ air-surveillance.aero
78
+ airtraffic.aero
79
+ air-traffic-control.aero
80
+ ambulance.aero
81
+ amusement.aero
82
+ association.aero
83
+ author.aero
84
+ ballooning.aero
85
+ broker.aero
86
+ caa.aero
87
+ cargo.aero
88
+ catering.aero
89
+ certification.aero
90
+ championship.aero
91
+ charter.aero
92
+ civilaviation.aero
93
+ club.aero
94
+ conference.aero
95
+ consultant.aero
96
+ consulting.aero
97
+ control.aero
98
+ council.aero
99
+ crew.aero
100
+ design.aero
101
+ dgca.aero
102
+ educator.aero
103
+ emergency.aero
104
+ engine.aero
105
+ engineer.aero
106
+ entertainment.aero
107
+ equipment.aero
108
+ exchange.aero
109
+ express.aero
110
+ federation.aero
111
+ flight.aero
112
+ freight.aero
113
+ fuel.aero
114
+ gliding.aero
115
+ government.aero
116
+ groundhandling.aero
117
+ group.aero
118
+ hanggliding.aero
119
+ homebuilt.aero
120
+ insurance.aero
121
+ journal.aero
122
+ journalist.aero
123
+ leasing.aero
124
+ logistics.aero
125
+ magazine.aero
126
+ maintenance.aero
127
+ marketplace.aero
128
+ media.aero
129
+ microlight.aero
130
+ modelling.aero
131
+ navigation.aero
132
+ parachuting.aero
133
+ paragliding.aero
134
+ passenger-association.aero
135
+ pilot.aero
136
+ press.aero
137
+ production.aero
138
+ recreation.aero
139
+ repbody.aero
140
+ res.aero
141
+ research.aero
142
+ rotorcraft.aero
143
+ safety.aero
144
+ scientist.aero
145
+ services.aero
146
+ show.aero
147
+ skydiving.aero
148
+ software.aero
149
+ student.aero
150
+ taxi.aero
151
+ trader.aero
152
+ trading.aero
153
+ trainer.aero
154
+ union.aero
155
+ workinggroup.aero
156
+ works.aero
157
+
158
+ // af : http://www.nic.af/help.jsp
159
+ af
160
+ gov.af
161
+ com.af
162
+ org.af
163
+ net.af
164
+ edu.af
165
+
166
+ // ag : http://www.nic.ag/prices.htm
167
+ ag
168
+ com.ag
169
+ org.ag
170
+ net.ag
171
+ co.ag
172
+ nom.ag
173
+
174
+ // ai : http://nic.com.ai/
175
+ ai
176
+ off.ai
177
+ com.ai
178
+ net.ai
179
+ org.ai
180
+
181
+ // al : http://www.ert.gov.al/ert_alb/faq_det.html?Id=31
182
+ al
183
+ com.al
184
+ edu.al
185
+ gov.al
186
+ mil.al
187
+ net.al
188
+ org.al
189
+
190
+ // am : http://en.wikipedia.org/wiki/.am
191
+ am
192
+
193
+ // an : http://www.una.an/an_domreg/default.asp
194
+ an
195
+ com.an
196
+ net.an
197
+ org.an
198
+ edu.an
199
+
200
+ // ao : http://en.wikipedia.org/wiki/.ao
201
+ // http://www.dns.ao/REGISTR.DOC
202
+ ao
203
+ ed.ao
204
+ gv.ao
205
+ og.ao
206
+ co.ao
207
+ pb.ao
208
+ it.ao
209
+
210
+ // aq : http://en.wikipedia.org/wiki/.aq
211
+ aq
212
+
213
+ // ar : http://en.wikipedia.org/wiki/.ar
214
+ *.ar
215
+ !congresodelalengua3.ar
216
+ !educ.ar
217
+ !gobiernoelectronico.ar
218
+ !mecon.ar
219
+ !nacion.ar
220
+ !nic.ar
221
+ !promocion.ar
222
+ !retina.ar
223
+ !uba.ar
224
+
225
+ // arpa : http://en.wikipedia.org/wiki/.arpa
226
+ // Confirmed by registry <iana-questions@icann.org> 2008-06-18
227
+ e164.arpa
228
+ in-addr.arpa
229
+ ip6.arpa
230
+ iris.arpa
231
+ uri.arpa
232
+ urn.arpa
233
+
234
+ // as : http://en.wikipedia.org/wiki/.as
235
+ as
236
+ gov.as
237
+
238
+ // asia: http://en.wikipedia.org/wiki/.asia
239
+ asia
240
+
241
+ // at : http://en.wikipedia.org/wiki/.at
242
+ // Confirmed by registry <it@nic.at> 2008-06-17
243
+ at
244
+ ac.at
245
+ co.at
246
+ gv.at
247
+ or.at
248
+
249
+ // http://www.info.at/
250
+ biz.at
251
+ info.at
252
+
253
+ // priv.at : http://www.nic.priv.at/
254
+ // Submitted by registry <lendl@nic.at> 2008-06-09
255
+ priv.at
256
+
257
+ // au : http://en.wikipedia.org/wiki/.au
258
+ *.au
259
+ // au geographical names (vic.au etc... are covered above)
260
+ act.edu.au
261
+ nsw.edu.au
262
+ nt.edu.au
263
+ qld.edu.au
264
+ sa.edu.au
265
+ tas.edu.au
266
+ vic.edu.au
267
+ wa.edu.au
268
+ act.gov.au
269
+ // Removed at request of Shae.Donelan@services.nsw.gov.au, 2010-03-04
270
+ // nsw.gov.au
271
+ nt.gov.au
272
+ qld.gov.au
273
+ sa.gov.au
274
+ tas.gov.au
275
+ vic.gov.au
276
+ wa.gov.au
277
+ // CGDNs - http://www.aucd.org.au/
278
+ act.au
279
+ nsw.au
280
+ nt.au
281
+ qld.au
282
+ sa.au
283
+ tas.au
284
+ vic.au
285
+ wa.au
286
+
287
+ // aw : http://en.wikipedia.org/wiki/.aw
288
+ aw
289
+ com.aw
290
+
291
+ // ax : http://en.wikipedia.org/wiki/.ax
292
+ ax
293
+
294
+ // az : http://en.wikipedia.org/wiki/.az
295
+ az
296
+ com.az
297
+ net.az
298
+ int.az
299
+ gov.az
300
+ org.az
301
+ edu.az
302
+ info.az
303
+ pp.az
304
+ mil.az
305
+ name.az
306
+ pro.az
307
+ biz.az
308
+
309
+ // ba : http://en.wikipedia.org/wiki/.ba
310
+ ba
311
+ org.ba
312
+ net.ba
313
+ edu.ba
314
+ gov.ba
315
+ mil.ba
316
+ unsa.ba
317
+ unbi.ba
318
+ co.ba
319
+ com.ba
320
+ rs.ba
321
+
322
+ // bb : http://en.wikipedia.org/wiki/.bb
323
+ bb
324
+ biz.bb
325
+ com.bb
326
+ edu.bb
327
+ gov.bb
328
+ info.bb
329
+ net.bb
330
+ org.bb
331
+ store.bb
332
+
333
+ // bd : http://en.wikipedia.org/wiki/.bd
334
+ *.bd
335
+
336
+ // be : http://en.wikipedia.org/wiki/.be
337
+ // Confirmed by registry <tech@dns.be> 2008-06-08
338
+ be
339
+ ac.be
340
+
341
+ // bf : http://en.wikipedia.org/wiki/.bf
342
+ bf
343
+ gov.bf
344
+
345
+ // bg : http://en.wikipedia.org/wiki/.bg
346
+ // https://www.register.bg/user/static/rules/en/index.html
347
+ bg
348
+ a.bg
349
+ b.bg
350
+ c.bg
351
+ d.bg
352
+ e.bg
353
+ f.bg
354
+ g.bg
355
+ h.bg
356
+ i.bg
357
+ j.bg
358
+ k.bg
359
+ l.bg
360
+ m.bg
361
+ n.bg
362
+ o.bg
363
+ p.bg
364
+ q.bg
365
+ r.bg
366
+ s.bg
367
+ t.bg
368
+ u.bg
369
+ v.bg
370
+ w.bg
371
+ x.bg
372
+ y.bg
373
+ z.bg
374
+ 0.bg
375
+ 1.bg
376
+ 2.bg
377
+ 3.bg
378
+ 4.bg
379
+ 5.bg
380
+ 6.bg
381
+ 7.bg
382
+ 8.bg
383
+ 9.bg
384
+
385
+ // bh : http://en.wikipedia.org/wiki/.bh
386
+ bh
387
+ com.bh
388
+ edu.bh
389
+ net.bh
390
+ org.bh
391
+ gov.bh
392
+
393
+ // bi : http://en.wikipedia.org/wiki/.bi
394
+ // http://whois.nic.bi/
395
+ bi
396
+ co.bi
397
+ com.bi
398
+ edu.bi
399
+ or.bi
400
+ org.bi
401
+
402
+ // biz : http://en.wikipedia.org/wiki/.biz
403
+ biz
404
+
405
+ // bj : http://en.wikipedia.org/wiki/.bj
406
+ bj
407
+ asso.bj
408
+ barreau.bj
409
+ gouv.bj
410
+
411
+ // bm : http://www.bermudanic.bm/dnr-text.txt
412
+ bm
413
+ com.bm
414
+ edu.bm
415
+ gov.bm
416
+ net.bm
417
+ org.bm
418
+
419
+ // bn : http://en.wikipedia.org/wiki/.bn
420
+ *.bn
421
+
422
+ // bo : http://www.nic.bo/
423
+ bo
424
+ com.bo
425
+ edu.bo
426
+ gov.bo
427
+ gob.bo
428
+ int.bo
429
+ org.bo
430
+ net.bo
431
+ mil.bo
432
+ tv.bo
433
+
434
+ // br : http://en.wikipedia.org/wiki/.br
435
+ // http://registro.br/info/dpn.html
436
+ // Confirmed by registry <fneves@registro.br> 2008-06-24
437
+ br
438
+ adm.br
439
+ adv.br
440
+ agr.br
441
+ am.br
442
+ arq.br
443
+ art.br
444
+ ato.br
445
+ bio.br
446
+ blog.br
447
+ bmd.br
448
+ can.br
449
+ cim.br
450
+ cng.br
451
+ cnt.br
452
+ com.br
453
+ coop.br
454
+ ecn.br
455
+ edu.br
456
+ eng.br
457
+ esp.br
458
+ etc.br
459
+ eti.br
460
+ far.br
461
+ flog.br
462
+ fm.br
463
+ fnd.br
464
+ fot.br
465
+ fst.br
466
+ g12.br
467
+ ggf.br
468
+ gov.br
469
+ imb.br
470
+ ind.br
471
+ inf.br
472
+ jor.br
473
+ jus.br
474
+ lel.br
475
+ mat.br
476
+ med.br
477
+ mil.br
478
+ mus.br
479
+ net.br
480
+ nom.br
481
+ not.br
482
+ ntr.br
483
+ odo.br
484
+ org.br
485
+ ppg.br
486
+ pro.br
487
+ psc.br
488
+ psi.br
489
+ qsl.br
490
+ rec.br
491
+ slg.br
492
+ srv.br
493
+ tmp.br
494
+ trd.br
495
+ tur.br
496
+ tv.br
497
+ vet.br
498
+ vlog.br
499
+ wiki.br
500
+ zlg.br
501
+
502
+ // bs : http://www.nic.bs/rules.html
503
+ bs
504
+ com.bs
505
+ net.bs
506
+ org.bs
507
+ edu.bs
508
+ gov.bs
509
+
510
+ // bt : http://en.wikipedia.org/wiki/.bt
511
+ *.bt
512
+
513
+ // bv : No registrations at this time.
514
+ // Submitted by registry <jarle@uninett.no> 2006-06-16
515
+
516
+ // bw : http://en.wikipedia.org/wiki/.bw
517
+ // http://www.gobin.info/domainname/bw.doc
518
+ // list of other 2nd level tlds ?
519
+ bw
520
+ co.bw
521
+ org.bw
522
+
523
+ // by : http://en.wikipedia.org/wiki/.by
524
+ // http://tld.by/rules_2006_en.html
525
+ // list of other 2nd level tlds ?
526
+ by
527
+ gov.by
528
+ mil.by
529
+ // Official information does not indicate that com.by is a reserved
530
+ // second-level domain, but it's being used as one (see www.google.com.by and
531
+ // www.yahoo.com.by, for example), so we list it here for safety's sake.
532
+ com.by
533
+
534
+ // http://hoster.by/
535
+ of.by
536
+
537
+ // bz : http://en.wikipedia.org/wiki/.bz
538
+ // http://www.belizenic.bz/
539
+ bz
540
+ com.bz
541
+ net.bz
542
+ org.bz
543
+ edu.bz
544
+ gov.bz
545
+
546
+ // ca : http://en.wikipedia.org/wiki/.ca
547
+ ca
548
+ // ca geographical names
549
+ ab.ca
550
+ bc.ca
551
+ mb.ca
552
+ nb.ca
553
+ nf.ca
554
+ nl.ca
555
+ ns.ca
556
+ nt.ca
557
+ nu.ca
558
+ on.ca
559
+ pe.ca
560
+ qc.ca
561
+ sk.ca
562
+ yk.ca
563
+ // gc.ca: http://en.wikipedia.org/wiki/.gc.ca
564
+ // see also: http://registry.gc.ca/en/SubdomainFAQ
565
+ gc.ca
566
+
567
+ // cat : http://en.wikipedia.org/wiki/.cat
568
+ cat
569
+
570
+ // cc : http://en.wikipedia.org/wiki/.cc
571
+ cc
572
+
573
+ // cd : http://en.wikipedia.org/wiki/.cd
574
+ // see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1
575
+ cd
576
+ gov.cd
577
+
578
+ // cf : http://en.wikipedia.org/wiki/.cf
579
+ cf
580
+
581
+ // cg : http://en.wikipedia.org/wiki/.cg
582
+ cg
583
+
584
+ // ch : http://en.wikipedia.org/wiki/.ch
585
+ ch
586
+
587
+ // ci : http://en.wikipedia.org/wiki/.ci
588
+ // http://www.nic.ci/index.php?page=charte
589
+ ci
590
+ org.ci
591
+ or.ci
592
+ com.ci
593
+ co.ci
594
+ edu.ci
595
+ ed.ci
596
+ ac.ci
597
+ net.ci
598
+ go.ci
599
+ asso.ci
600
+ aéroport.ci
601
+ int.ci
602
+ presse.ci
603
+ md.ci
604
+ gouv.ci
605
+
606
+ // ck : http://en.wikipedia.org/wiki/.ck
607
+ *.ck
608
+
609
+ // cl : http://en.wikipedia.org/wiki/.cl
610
+ cl
611
+ gov.cl
612
+ gob.cl
613
+
614
+ // cm : http://en.wikipedia.org/wiki/.cm
615
+ cm
616
+ gov.cm
617
+
618
+ // cn : http://en.wikipedia.org/wiki/.cn
619
+ // Submitted by registry <tanyaling@cnnic.cn> 2008-06-11
620
+ cn
621
+ ac.cn
622
+ com.cn
623
+ edu.cn
624
+ gov.cn
625
+ net.cn
626
+ org.cn
627
+ mil.cn
628
+ 公司.cn
629
+ 网络.cn
630
+ 網絡.cn
631
+ // cn geographic names
632
+ ah.cn
633
+ bj.cn
634
+ cq.cn
635
+ fj.cn
636
+ gd.cn
637
+ gs.cn
638
+ gz.cn
639
+ gx.cn
640
+ ha.cn
641
+ hb.cn
642
+ he.cn
643
+ hi.cn
644
+ hl.cn
645
+ hn.cn
646
+ jl.cn
647
+ js.cn
648
+ jx.cn
649
+ ln.cn
650
+ nm.cn
651
+ nx.cn
652
+ qh.cn
653
+ sc.cn
654
+ sd.cn
655
+ sh.cn
656
+ sn.cn
657
+ sx.cn
658
+ tj.cn
659
+ xj.cn
660
+ xz.cn
661
+ yn.cn
662
+ zj.cn
663
+ hk.cn
664
+ mo.cn
665
+ tw.cn
666
+
667
+ // co : http://en.wikipedia.org/wiki/.co
668
+ // Submitted by registry <tecnico@uniandes.edu.co> 2008-06-11
669
+ co
670
+ arts.co
671
+ com.co
672
+ edu.co
673
+ firm.co
674
+ gov.co
675
+ info.co
676
+ int.co
677
+ mil.co
678
+ net.co
679
+ nom.co
680
+ org.co
681
+ rec.co
682
+ web.co
683
+
684
+ // com : http://en.wikipedia.org/wiki/.com
685
+ com
686
+
687
+ // CentralNic names : http://www.centralnic.com/names/domains
688
+ // Confirmed by registry <gavin.brown@centralnic.com> 2008-06-09
689
+ ar.com
690
+ br.com
691
+ cn.com
692
+ de.com
693
+ eu.com
694
+ gb.com
695
+ hu.com
696
+ jpn.com
697
+ kr.com
698
+ no.com
699
+ qc.com
700
+ ru.com
701
+ sa.com
702
+ se.com
703
+ uk.com
704
+ us.com
705
+ uy.com
706
+ za.com
707
+
708
+ // Requested by Yngve Pettersen <yngve@opera.com> 2009-11-26
709
+ operaunite.com
710
+
711
+ // coop : http://en.wikipedia.org/wiki/.coop
712
+ coop
713
+
714
+ // cr : http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do
715
+ cr
716
+ ac.cr
717
+ co.cr
718
+ ed.cr
719
+ fi.cr
720
+ go.cr
721
+ or.cr
722
+ sa.cr
723
+
724
+ // cu : http://en.wikipedia.org/wiki/.cu
725
+ cu
726
+ com.cu
727
+ edu.cu
728
+ org.cu
729
+ net.cu
730
+ gov.cu
731
+ inf.cu
732
+
733
+ // cv : http://en.wikipedia.org/wiki/.cv
734
+ cv
735
+
736
+ // cx : http://en.wikipedia.org/wiki/.cx
737
+ // list of other 2nd level tlds ?
738
+ cx
739
+ gov.cx
740
+
741
+ // cy : http://en.wikipedia.org/wiki/.cy
742
+ *.cy
743
+
744
+ // cz : http://en.wikipedia.org/wiki/.cz
745
+ cz
746
+
747
+ // de : http://en.wikipedia.org/wiki/.de
748
+ // Confirmed by registry <ops@denic.de> (with technical
749
+ // reservations) 2008-07-01
750
+ de
751
+
752
+ // dj : http://en.wikipedia.org/wiki/.dj
753
+ dj
754
+
755
+ // dk : http://en.wikipedia.org/wiki/.dk
756
+ // Confirmed by registry <robert@dk-hostmaster.dk> 2008-06-17
757
+ dk
758
+
759
+ // dm : http://en.wikipedia.org/wiki/.dm
760
+ dm
761
+ com.dm
762
+ net.dm
763
+ org.dm
764
+ edu.dm
765
+ gov.dm
766
+
767
+ // do : http://en.wikipedia.org/wiki/.do
768
+ *.do
769
+
770
+ // dz : http://en.wikipedia.org/wiki/.dz
771
+ dz
772
+ com.dz
773
+ org.dz
774
+ net.dz
775
+ gov.dz
776
+ edu.dz
777
+ asso.dz
778
+ pol.dz
779
+ art.dz
780
+
781
+ // ec : http://www.nic.ec/reg/paso1.asp
782
+ // Submitted by registry <vabboud@nic.ec> 2008-07-04
783
+ ec
784
+ com.ec
785
+ info.ec
786
+ net.ec
787
+ fin.ec
788
+ k12.ec
789
+ med.ec
790
+ pro.ec
791
+ org.ec
792
+ edu.ec
793
+ gov.ec
794
+ mil.ec
795
+
796
+ // edu : http://en.wikipedia.org/wiki/.edu
797
+ edu
798
+
799
+ // ee : http://www.eenet.ee/EENet/dom_reeglid.html#lisa_B
800
+ ee
801
+ edu.ee
802
+ gov.ee
803
+ riik.ee
804
+ lib.ee
805
+ med.ee
806
+ com.ee
807
+ pri.ee
808
+ aip.ee
809
+ org.ee
810
+ fie.ee
811
+
812
+ // eg : http://en.wikipedia.org/wiki/.eg
813
+ *.eg
814
+
815
+ // er : http://en.wikipedia.org/wiki/.er
816
+ *.er
817
+
818
+ // es : https://www.nic.es/site_ingles/ingles/dominios/index.html
819
+ es
820
+ com.es
821
+ nom.es
822
+ org.es
823
+ gob.es
824
+ edu.es
825
+
826
+ // et : http://en.wikipedia.org/wiki/.et
827
+ *.et
828
+
829
+ // eu : http://en.wikipedia.org/wiki/.eu
830
+ eu
831
+
832
+ // fi : http://en.wikipedia.org/wiki/.fi
833
+ fi
834
+ // aland.fi : http://en.wikipedia.org/wiki/.ax
835
+ // This domain is being phased out in favor of .ax. As there are still many
836
+ // domains under aland.fi, we still keep it on the list until aland.fi is
837
+ // completely removed.
838
+ // TODO: Check for updates (expected to be phased out around Q1/2009)
839
+ aland.fi
840
+ // iki.fi : Submitted by Hannu Aronsson <haa@iki.fi> 2009-11-05
841
+ iki.fi
842
+
843
+ // fj : http://en.wikipedia.org/wiki/.fj
844
+ *.fj
845
+
846
+ // fk : http://en.wikipedia.org/wiki/.fk
847
+ *.fk
848
+
849
+ // fm : http://en.wikipedia.org/wiki/.fm
850
+ fm
851
+
852
+ // fo : http://en.wikipedia.org/wiki/.fo
853
+ fo
854
+
855
+ // fr : http://www.afnic.fr/
856
+ // domaines descriptifs : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-descriptifs
857
+ fr
858
+ com.fr
859
+ asso.fr
860
+ nom.fr
861
+ prd.fr
862
+ presse.fr
863
+ tm.fr
864
+ // domaines sectoriels : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-sectoriels
865
+ aeroport.fr
866
+ assedic.fr
867
+ avocat.fr
868
+ avoues.fr
869
+ cci.fr
870
+ chambagri.fr
871
+ chirurgiens-dentistes.fr
872
+ experts-comptables.fr
873
+ geometre-expert.fr
874
+ gouv.fr
875
+ greta.fr
876
+ huissier-justice.fr
877
+ medecin.fr
878
+ notaires.fr
879
+ pharmacien.fr
880
+ port.fr
881
+ veterinaire.fr
882
+
883
+ // ga : http://en.wikipedia.org/wiki/.ga
884
+ ga
885
+
886
+ // gb : This registry is effectively dormant
887
+ // Submitted by registry <Damien.Shaw@ja.net> 2008-06-12
888
+
889
+ // gd : http://en.wikipedia.org/wiki/.gd
890
+ gd
891
+
892
+ // ge : http://www.nic.net.ge/policy_en.pdf
893
+ ge
894
+ com.ge
895
+ edu.ge
896
+ gov.ge
897
+ org.ge
898
+ mil.ge
899
+ net.ge
900
+ pvt.ge
901
+
902
+ // gf : http://en.wikipedia.org/wiki/.gf
903
+ gf
904
+
905
+ // gg : http://www.channelisles.net/applic/avextn.shtml
906
+ gg
907
+ co.gg
908
+ org.gg
909
+ net.gg
910
+ sch.gg
911
+ gov.gg
912
+
913
+ // gh : http://en.wikipedia.org/wiki/.gh
914
+ // see also: http://www.nic.gh/reg_now.php
915
+ // Although domains directly at second level are not possible at the moment,
916
+ // they have been possible for some time and may come back.
917
+ gh
918
+ com.gh
919
+ edu.gh
920
+ gov.gh
921
+ org.gh
922
+ mil.gh
923
+
924
+ // gi : http://www.nic.gi/rules.html
925
+ gi
926
+ com.gi
927
+ ltd.gi
928
+ gov.gi
929
+ mod.gi
930
+ edu.gi
931
+ org.gi
932
+
933
+ // gl : http://en.wikipedia.org/wiki/.gl
934
+ gl
935
+
936
+ // gm : http://www.nic.gm/htmlpages%5Cgm-policy.htm
937
+ gm
938
+
939
+ // gn : http://psg.com/dns/gn/gn.txt
940
+ // Submitted by registry <randy@psg.com> 2008-06-17
941
+ ac.gn
942
+ com.gn
943
+ edu.gn
944
+ gov.gn
945
+ org.gn
946
+ net.gn
947
+
948
+ // gov : http://en.wikipedia.org/wiki/.gov
949
+ gov
950
+
951
+ // gp : http://www.nic.gp/index.php?lang=en
952
+ gp
953
+ com.gp
954
+ net.gp
955
+ mobi.gp
956
+ edu.gp
957
+ org.gp
958
+ asso.gp
959
+
960
+ // gq : http://en.wikipedia.org/wiki/.gq
961
+ gq
962
+
963
+ // gr : https://grweb.ics.forth.gr/english/1617-B-2005.html
964
+ // Submitted by registry <segred@ics.forth.gr> 2008-06-09
965
+ gr
966
+ com.gr
967
+ edu.gr
968
+ net.gr
969
+ org.gr
970
+ gov.gr
971
+
972
+ // gs : http://en.wikipedia.org/wiki/.gs
973
+ gs
974
+
975
+ // gt : http://www.gt/politicas.html
976
+ *.gt
977
+
978
+ // gu : http://gadao.gov.gu/registration.txt
979
+ *.gu
980
+
981
+ // gw : http://en.wikipedia.org/wiki/.gw
982
+ gw
983
+
984
+ // gy : http://en.wikipedia.org/wiki/.gy
985
+ // http://registry.gy/
986
+ gy
987
+ co.gy
988
+ com.gy
989
+ net.gy
990
+
991
+ // hk : https://www.hkdnr.hk
992
+ // Submitted by registry <hk.tech@hkirc.hk> 2008-06-11
993
+ hk
994
+ com.hk
995
+ edu.hk
996
+ gov.hk
997
+ idv.hk
998
+ net.hk
999
+ org.hk
1000
+ 公司.hk
1001
+ 教育.hk
1002
+ 敎育.hk
1003
+ 政府.hk
1004
+ 個人.hk
1005
+ 个人.hk
1006
+ 箇人.hk
1007
+ 網络.hk
1008
+ 网络.hk
1009
+ 组織.hk
1010
+ 網絡.hk
1011
+ 网絡.hk
1012
+ 组织.hk
1013
+ 組織.hk
1014
+ 組织.hk
1015
+
1016
+ // hm : http://en.wikipedia.org/wiki/.hm
1017
+ hm
1018
+
1019
+ // hn : http://www.nic.hn/politicas/ps02,,05.html
1020
+ hn
1021
+ com.hn
1022
+ edu.hn
1023
+ org.hn
1024
+ net.hn
1025
+ mil.hn
1026
+ gob.hn
1027
+
1028
+ // hr : http://www.dns.hr/documents/pdf/HRTLD-regulations.pdf
1029
+ hr
1030
+ iz.hr
1031
+ from.hr
1032
+ name.hr
1033
+ com.hr
1034
+
1035
+ // ht : http://www.nic.ht/info/charte.cfm
1036
+ ht
1037
+ com.ht
1038
+ shop.ht
1039
+ firm.ht
1040
+ info.ht
1041
+ adult.ht
1042
+ net.ht
1043
+ pro.ht
1044
+ org.ht
1045
+ med.ht
1046
+ art.ht
1047
+ coop.ht
1048
+ pol.ht
1049
+ asso.ht
1050
+ edu.ht
1051
+ rel.ht
1052
+ gouv.ht
1053
+ perso.ht
1054
+
1055
+ // hu : http://www.domain.hu/domain/English/sld.html
1056
+ // Confirmed by registry <pasztor@iszt.hu> 2008-06-12
1057
+ hu
1058
+ co.hu
1059
+ info.hu
1060
+ org.hu
1061
+ priv.hu
1062
+ sport.hu
1063
+ tm.hu
1064
+ 2000.hu
1065
+ agrar.hu
1066
+ bolt.hu
1067
+ casino.hu
1068
+ city.hu
1069
+ erotica.hu
1070
+ erotika.hu
1071
+ film.hu
1072
+ forum.hu
1073
+ games.hu
1074
+ hotel.hu
1075
+ ingatlan.hu
1076
+ jogasz.hu
1077
+ konyvelo.hu
1078
+ lakas.hu
1079
+ media.hu
1080
+ news.hu
1081
+ reklam.hu
1082
+ sex.hu
1083
+ shop.hu
1084
+ suli.hu
1085
+ szex.hu
1086
+ tozsde.hu
1087
+ utazas.hu
1088
+ video.hu
1089
+
1090
+ // id : http://en.wikipedia.org/wiki/.id
1091
+ *.id
1092
+
1093
+ // ie : http://en.wikipedia.org/wiki/.ie
1094
+ ie
1095
+ gov.ie
1096
+
1097
+ // il : http://en.wikipedia.org/wiki/.il
1098
+ *.il
1099
+
1100
+ // im : https://www.nic.im/pdfs/imfaqs.pdf
1101
+ im
1102
+ co.im
1103
+ ltd.co.im
1104
+ plc.co.im
1105
+ net.im
1106
+ gov.im
1107
+ org.im
1108
+ nic.im
1109
+ ac.im
1110
+
1111
+ // in : http://en.wikipedia.org/wiki/.in
1112
+ // see also: http://www.inregistry.in/policies/
1113
+ // Please note, that nic.in is not an offical eTLD, but used by most
1114
+ // government institutions.
1115
+ in
1116
+ co.in
1117
+ firm.in
1118
+ net.in
1119
+ org.in
1120
+ gen.in
1121
+ ind.in
1122
+ nic.in
1123
+ ac.in
1124
+ edu.in
1125
+ res.in
1126
+ gov.in
1127
+ mil.in
1128
+
1129
+ // info : http://en.wikipedia.org/wiki/.info
1130
+ info
1131
+
1132
+ // int : http://en.wikipedia.org/wiki/.int
1133
+ // Confirmed by registry <iana-questions@icann.org> 2008-06-18
1134
+ int
1135
+ eu.int
1136
+
1137
+ // io : http://www.nic.io/rules.html
1138
+ // list of other 2nd level tlds ?
1139
+ io
1140
+ com.io
1141
+
1142
+ // iq : http://www.cmc.iq/english/iq/iqregister1.htm
1143
+ iq
1144
+ gov.iq
1145
+ edu.iq
1146
+ mil.iq
1147
+ com.iq
1148
+ org.iq
1149
+ net.iq
1150
+
1151
+ // ir : http://www.nic.ir/Terms_and_Conditions_ir,_Appendix_1_Domain_Rules
1152
+ // Also see http://www.nic.ir/Internationalized_Domain_Names
1153
+ // Two <iran>.ir entries added at request of <tech-team@nic.ir>, 2010-04-16
1154
+ ir
1155
+ ac.ir
1156
+ co.ir
1157
+ gov.ir
1158
+ id.ir
1159
+ net.ir
1160
+ org.ir
1161
+ sch.ir
1162
+ // xn--mgba3a4f16a.ir (<iran>.ir, Persian YEH)
1163
+ ایران.ir
1164
+ // xn--mgba3a4fra.ir (<iran>.ir, Arabic YEH)
1165
+ ايران.ir
1166
+
1167
+ // is : http://www.isnic.is/domain/rules.php
1168
+ // Confirmed by registry <marius@isgate.is> 2008-12-06
1169
+ is
1170
+ net.is
1171
+ com.is
1172
+ edu.is
1173
+ gov.is
1174
+ org.is
1175
+ int.is
1176
+
1177
+ // it : http://en.wikipedia.org/wiki/.it
1178
+ it
1179
+ gov.it
1180
+ edu.it
1181
+ // geo-names found at http://www.nic.it/RA/en/domini/regole/nomi-riservati.pdf
1182
+ agrigento.it
1183
+ ag.it
1184
+ alessandria.it
1185
+ al.it
1186
+ ancona.it
1187
+ an.it
1188
+ aosta.it
1189
+ aoste.it
1190
+ ao.it
1191
+ arezzo.it
1192
+ ar.it
1193
+ ascoli-piceno.it
1194
+ ascolipiceno.it
1195
+ ap.it
1196
+ asti.it
1197
+ at.it
1198
+ avellino.it
1199
+ av.it
1200
+ bari.it
1201
+ ba.it
1202
+ barlettaandriatrani.it
1203
+ barletta-andria-trani.it
1204
+ belluno.it
1205
+ bl.it
1206
+ benevento.it
1207
+ bn.it
1208
+ bergamo.it
1209
+ bg.it
1210
+ biella.it
1211
+ bi.it
1212
+ bologna.it
1213
+ bo.it
1214
+ bolzano.it
1215
+ bozen.it
1216
+ balsan.it
1217
+ alto-adige.it
1218
+ altoadige.it
1219
+ suedtirol.it
1220
+ bz.it
1221
+ brescia.it
1222
+ bs.it
1223
+ brindisi.it
1224
+ br.it
1225
+ cagliari.it
1226
+ ca.it
1227
+ caltanissetta.it
1228
+ cl.it
1229
+ campobasso.it
1230
+ cb.it
1231
+ caserta.it
1232
+ ce.it
1233
+ catania.it
1234
+ ct.it
1235
+ catanzaro.it
1236
+ cz.it
1237
+ chieti.it
1238
+ ch.it
1239
+ como.it
1240
+ co.it
1241
+ cosenza.it
1242
+ cs.it
1243
+ cremona.it
1244
+ cr.it
1245
+ crotone.it
1246
+ kr.it
1247
+ cuneo.it
1248
+ cn.it
1249
+ enna.it
1250
+ en.it
1251
+ fermo.it
1252
+ ferrara.it
1253
+ fe.it
1254
+ firenze.it
1255
+ florence.it
1256
+ fi.it
1257
+ foggia.it
1258
+ fg.it
1259
+ forli-cesena.it
1260
+ forlicesena.it
1261
+ fc.it
1262
+ frosinone.it
1263
+ fr.it
1264
+ genova.it
1265
+ genoa.it
1266
+ ge.it
1267
+ gorizia.it
1268
+ go.it
1269
+ grosseto.it
1270
+ gr.it
1271
+ imperia.it
1272
+ im.it
1273
+ isernia.it
1274
+ is.it
1275
+ laquila.it
1276
+ aquila.it
1277
+ aq.it
1278
+ la-spezia.it
1279
+ laspezia.it
1280
+ sp.it
1281
+ latina.it
1282
+ lt.it
1283
+ lecce.it
1284
+ le.it
1285
+ lecco.it
1286
+ lc.it
1287
+ livorno.it
1288
+ li.it
1289
+ lodi.it
1290
+ lo.it
1291
+ lucca.it
1292
+ lu.it
1293
+ macerata.it
1294
+ mc.it
1295
+ mantova.it
1296
+ mn.it
1297
+ massa-carrara.it
1298
+ massacarrara.it
1299
+ ms.it
1300
+ matera.it
1301
+ mt.it
1302
+ messina.it
1303
+ me.it
1304
+ milano.it
1305
+ milan.it
1306
+ mi.it
1307
+ modena.it
1308
+ mo.it
1309
+ monza.it
1310
+ napoli.it
1311
+ naples.it
1312
+ na.it
1313
+ novara.it
1314
+ no.it
1315
+ nuoro.it
1316
+ nu.it
1317
+ oristano.it
1318
+ or.it
1319
+ padova.it
1320
+ padua.it
1321
+ pd.it
1322
+ palermo.it
1323
+ pa.it
1324
+ parma.it
1325
+ pr.it
1326
+ pavia.it
1327
+ pv.it
1328
+ perugia.it
1329
+ pg.it
1330
+ pescara.it
1331
+ pe.it
1332
+ pesaro-urbino.it
1333
+ pesarourbino.it
1334
+ pu.it
1335
+ piacenza.it
1336
+ pc.it
1337
+ pisa.it
1338
+ pi.it
1339
+ pistoia.it
1340
+ pt.it
1341
+ pordenone.it
1342
+ pn.it
1343
+ potenza.it
1344
+ pz.it
1345
+ prato.it
1346
+ po.it
1347
+ ragusa.it
1348
+ rg.it
1349
+ ravenna.it
1350
+ ra.it
1351
+ reggio-calabria.it
1352
+ reggiocalabria.it
1353
+ rc.it
1354
+ reggio-emilia.it
1355
+ reggioemilia.it
1356
+ re.it
1357
+ rieti.it
1358
+ ri.it
1359
+ rimini.it
1360
+ rn.it
1361
+ roma.it
1362
+ rome.it
1363
+ rm.it
1364
+ rovigo.it
1365
+ ro.it
1366
+ salerno.it
1367
+ sa.it
1368
+ sassari.it
1369
+ ss.it
1370
+ savona.it
1371
+ sv.it
1372
+ siena.it
1373
+ si.it
1374
+ siracusa.it
1375
+ sr.it
1376
+ sondrio.it
1377
+ so.it
1378
+ taranto.it
1379
+ ta.it
1380
+ teramo.it
1381
+ te.it
1382
+ terni.it
1383
+ tr.it
1384
+ torino.it
1385
+ turin.it
1386
+ to.it
1387
+ trapani.it
1388
+ tp.it
1389
+ trento.it
1390
+ trentino.it
1391
+ tn.it
1392
+ treviso.it
1393
+ tv.it
1394
+ trieste.it
1395
+ ts.it
1396
+ udine.it
1397
+ ud.it
1398
+ varese.it
1399
+ va.it
1400
+ venezia.it
1401
+ venice.it
1402
+ ve.it
1403
+ verbania.it
1404
+ vb.it
1405
+ vercelli.it
1406
+ vc.it
1407
+ verona.it
1408
+ vr.it
1409
+ vibo-valentia.it
1410
+ vibovalentia.it
1411
+ vv.it
1412
+ vicenza.it
1413
+ vi.it
1414
+ viterbo.it
1415
+ vt.it
1416
+
1417
+ // je : http://www.channelisles.net/applic/avextn.shtml
1418
+ je
1419
+ co.je
1420
+ org.je
1421
+ net.je
1422
+ sch.je
1423
+ gov.je
1424
+
1425
+ // jm : http://www.com.jm/register.html
1426
+ *.jm
1427
+
1428
+ // jo : http://www.dns.jo/Registration_policy.aspx
1429
+ jo
1430
+ com.jo
1431
+ org.jo
1432
+ net.jo
1433
+ edu.jo
1434
+ sch.jo
1435
+ gov.jo
1436
+ mil.jo
1437
+ name.jo
1438
+
1439
+ // jobs : http://en.wikipedia.org/wiki/.jobs
1440
+ jobs
1441
+
1442
+ // jp : http://en.wikipedia.org/wiki/.jp
1443
+ // http://jprs.co.jp/en/jpdomain.html
1444
+ // Submitted by registry <yone@jprs.co.jp> 2008-06-11
1445
+ // Updated by registry <yone@jprs.co.jp> 2008-12-04
1446
+ jp
1447
+ // jp organizational type names
1448
+ ac.jp
1449
+ ad.jp
1450
+ co.jp
1451
+ ed.jp
1452
+ go.jp
1453
+ gr.jp
1454
+ lg.jp
1455
+ ne.jp
1456
+ or.jp
1457
+ // jp geographic type names
1458
+ // http://jprs.jp/doc/rule/saisoku-1.html
1459
+ *.aichi.jp
1460
+ *.akita.jp
1461
+ *.aomori.jp
1462
+ *.chiba.jp
1463
+ *.ehime.jp
1464
+ *.fukui.jp
1465
+ *.fukuoka.jp
1466
+ *.fukushima.jp
1467
+ *.gifu.jp
1468
+ *.gunma.jp
1469
+ *.hiroshima.jp
1470
+ *.hokkaido.jp
1471
+ *.hyogo.jp
1472
+ *.ibaraki.jp
1473
+ *.ishikawa.jp
1474
+ *.iwate.jp
1475
+ *.kagawa.jp
1476
+ *.kagoshima.jp
1477
+ *.kanagawa.jp
1478
+ *.kawasaki.jp
1479
+ *.kitakyushu.jp
1480
+ *.kobe.jp
1481
+ *.kochi.jp
1482
+ *.kumamoto.jp
1483
+ *.kyoto.jp
1484
+ *.mie.jp
1485
+ *.miyagi.jp
1486
+ *.miyazaki.jp
1487
+ *.nagano.jp
1488
+ *.nagasaki.jp
1489
+ *.nagoya.jp
1490
+ *.nara.jp
1491
+ *.niigata.jp
1492
+ *.oita.jp
1493
+ *.okayama.jp
1494
+ *.okinawa.jp
1495
+ *.osaka.jp
1496
+ *.saga.jp
1497
+ *.saitama.jp
1498
+ *.sapporo.jp
1499
+ *.sendai.jp
1500
+ *.shiga.jp
1501
+ *.shimane.jp
1502
+ *.shizuoka.jp
1503
+ *.tochigi.jp
1504
+ *.tokushima.jp
1505
+ *.tokyo.jp
1506
+ *.tottori.jp
1507
+ *.toyama.jp
1508
+ *.wakayama.jp
1509
+ *.yamagata.jp
1510
+ *.yamaguchi.jp
1511
+ *.yamanashi.jp
1512
+ *.yokohama.jp
1513
+ !metro.tokyo.jp
1514
+ !pref.aichi.jp
1515
+ !pref.akita.jp
1516
+ !pref.aomori.jp
1517
+ !pref.chiba.jp
1518
+ !pref.ehime.jp
1519
+ !pref.fukui.jp
1520
+ !pref.fukuoka.jp
1521
+ !pref.fukushima.jp
1522
+ !pref.gifu.jp
1523
+ !pref.gunma.jp
1524
+ !pref.hiroshima.jp
1525
+ !pref.hokkaido.jp
1526
+ !pref.hyogo.jp
1527
+ !pref.ibaraki.jp
1528
+ !pref.ishikawa.jp
1529
+ !pref.iwate.jp
1530
+ !pref.kagawa.jp
1531
+ !pref.kagoshima.jp
1532
+ !pref.kanagawa.jp
1533
+ !pref.kochi.jp
1534
+ !pref.kumamoto.jp
1535
+ !pref.kyoto.jp
1536
+ !pref.mie.jp
1537
+ !pref.miyagi.jp
1538
+ !pref.miyazaki.jp
1539
+ !pref.nagano.jp
1540
+ !pref.nagasaki.jp
1541
+ !pref.nara.jp
1542
+ !pref.niigata.jp
1543
+ !pref.oita.jp
1544
+ !pref.okayama.jp
1545
+ !pref.okinawa.jp
1546
+ !pref.osaka.jp
1547
+ !pref.saga.jp
1548
+ !pref.saitama.jp
1549
+ !pref.shiga.jp
1550
+ !pref.shimane.jp
1551
+ !pref.shizuoka.jp
1552
+ !pref.tochigi.jp
1553
+ !pref.tokushima.jp
1554
+ !pref.tottori.jp
1555
+ !pref.toyama.jp
1556
+ !pref.wakayama.jp
1557
+ !pref.yamagata.jp
1558
+ !pref.yamaguchi.jp
1559
+ !pref.yamanashi.jp
1560
+ !city.chiba.jp
1561
+ !city.fukuoka.jp
1562
+ !city.hiroshima.jp
1563
+ !city.kawasaki.jp
1564
+ !city.kitakyushu.jp
1565
+ !city.kobe.jp
1566
+ !city.kyoto.jp
1567
+ !city.nagoya.jp
1568
+ !city.niigata.jp
1569
+ !city.okayama.jp
1570
+ !city.osaka.jp
1571
+ !city.saitama.jp
1572
+ !city.sapporo.jp
1573
+ !city.sendai.jp
1574
+ !city.shizuoka.jp
1575
+ !city.yokohama.jp
1576
+
1577
+ // ke : http://www.kenic.or.ke/index.php?option=com_content&task=view&id=117&Itemid=145
1578
+ *.ke
1579
+
1580
+ // kg : http://www.domain.kg/dmn_n.html
1581
+ kg
1582
+ org.kg
1583
+ net.kg
1584
+ com.kg
1585
+ edu.kg
1586
+ gov.kg
1587
+ mil.kg
1588
+
1589
+ // kh : http://www.mptc.gov.kh/dns_registration.htm
1590
+ *.kh
1591
+
1592
+ // ki : http://www.ki/dns/index.html
1593
+ ki
1594
+ edu.ki
1595
+ biz.ki
1596
+ net.ki
1597
+ org.ki
1598
+ gov.ki
1599
+ info.ki
1600
+ com.ki
1601
+
1602
+ // km : http://en.wikipedia.org/wiki/.km
1603
+ // http://www.domaine.km/documents/charte.doc
1604
+ km
1605
+ org.km
1606
+ nom.km
1607
+ gov.km
1608
+ prd.km
1609
+ tm.km
1610
+ edu.km
1611
+ mil.km
1612
+ ass.km
1613
+ com.km
1614
+ // These are only mentioned as proposed suggestions at domaine.km, but
1615
+ // http://en.wikipedia.org/wiki/.km says they're available for registration:
1616
+ coop.km
1617
+ asso.km
1618
+ presse.km
1619
+ medecin.km
1620
+ notaires.km
1621
+ pharmaciens.km
1622
+ veterinaire.km
1623
+ gouv.km
1624
+
1625
+ // kn : http://en.wikipedia.org/wiki/.kn
1626
+ // http://www.dot.kn/domainRules.html
1627
+ kn
1628
+ net.kn
1629
+ org.kn
1630
+ edu.kn
1631
+ gov.kn
1632
+
1633
+ // kr : http://en.wikipedia.org/wiki/.kr
1634
+ // see also: http://domain.nida.or.kr/eng/registration.jsp
1635
+ kr
1636
+ ac.kr
1637
+ co.kr
1638
+ es.kr
1639
+ go.kr
1640
+ hs.kr
1641
+ kg.kr
1642
+ mil.kr
1643
+ ms.kr
1644
+ ne.kr
1645
+ or.kr
1646
+ pe.kr
1647
+ re.kr
1648
+ sc.kr
1649
+ // kr geographical names
1650
+ busan.kr
1651
+ chungbuk.kr
1652
+ chungnam.kr
1653
+ daegu.kr
1654
+ daejeon.kr
1655
+ gangwon.kr
1656
+ gwangju.kr
1657
+ gyeongbuk.kr
1658
+ gyeonggi.kr
1659
+ gyeongnam.kr
1660
+ incheon.kr
1661
+ jeju.kr
1662
+ jeonbuk.kr
1663
+ jeonnam.kr
1664
+ seoul.kr
1665
+ ulsan.kr
1666
+
1667
+ // kw : http://en.wikipedia.org/wiki/.kw
1668
+ *.kw
1669
+
1670
+ // ky : http://www.icta.ky/da_ky_reg_dom.php
1671
+ // Confirmed by registry <kysupport@perimeterusa.com> 2008-06-17
1672
+ ky
1673
+ edu.ky
1674
+ gov.ky
1675
+ com.ky
1676
+ org.ky
1677
+ net.ky
1678
+
1679
+ // kz : http://en.wikipedia.org/wiki/.kz
1680
+ // see also: http://www.nic.kz/rules/index.jsp
1681
+ kz
1682
+ org.kz
1683
+ edu.kz
1684
+ net.kz
1685
+ gov.kz
1686
+ mil.kz
1687
+ com.kz
1688
+
1689
+ // la : http://en.wikipedia.org/wiki/.la
1690
+ // Submitted by registry <gavin.brown@nic.la> 2008-06-10
1691
+ la
1692
+ int.la
1693
+ net.la
1694
+ info.la
1695
+ edu.la
1696
+ gov.la
1697
+ per.la
1698
+ com.la
1699
+ org.la
1700
+ // see http://www.c.la/
1701
+ c.la
1702
+
1703
+ // lb : http://en.wikipedia.org/wiki/.lb
1704
+ // Submitted by registry <randy@psg.com> 2008-06-17
1705
+ com.lb
1706
+ edu.lb
1707
+ gov.lb
1708
+ net.lb
1709
+ org.lb
1710
+
1711
+ // lc : http://en.wikipedia.org/wiki/.lc
1712
+ // see also: http://www.nic.lc/rules.htm
1713
+ lc
1714
+ com.lc
1715
+ net.lc
1716
+ co.lc
1717
+ org.lc
1718
+ edu.lc
1719
+ gov.lc
1720
+
1721
+ // li : http://en.wikipedia.org/wiki/.li
1722
+ li
1723
+
1724
+ // lk : http://www.nic.lk/seclevpr.html
1725
+ lk
1726
+ gov.lk
1727
+ sch.lk
1728
+ net.lk
1729
+ int.lk
1730
+ com.lk
1731
+ org.lk
1732
+ edu.lk
1733
+ ngo.lk
1734
+ soc.lk
1735
+ web.lk
1736
+ ltd.lk
1737
+ assn.lk
1738
+ grp.lk
1739
+ hotel.lk
1740
+
1741
+ // local : http://en.wikipedia.org/wiki/.local
1742
+ local
1743
+
1744
+ // lr : http://psg.com/dns/lr/lr.txt
1745
+ // Submitted by registry <randy@psg.com> 2008-06-17
1746
+ com.lr
1747
+ edu.lr
1748
+ gov.lr
1749
+ org.lr
1750
+ net.lr
1751
+
1752
+ // ls : http://en.wikipedia.org/wiki/.ls
1753
+ ls
1754
+ co.ls
1755
+ org.ls
1756
+
1757
+ // lt : http://en.wikipedia.org/wiki/.lt
1758
+ lt
1759
+ // gov.lt : http://www.gov.lt/index_en.php
1760
+ gov.lt
1761
+
1762
+ // lu : http://www.dns.lu/en/
1763
+ lu
1764
+
1765
+ // lv : http://www.nic.lv/DNS/En/generic.php
1766
+ lv
1767
+ com.lv
1768
+ edu.lv
1769
+ gov.lv
1770
+ org.lv
1771
+ mil.lv
1772
+ id.lv
1773
+ net.lv
1774
+ asn.lv
1775
+ conf.lv
1776
+
1777
+ // ly : http://www.nic.ly/regulations.php
1778
+ ly
1779
+ com.ly
1780
+ net.ly
1781
+ gov.ly
1782
+ plc.ly
1783
+ edu.ly
1784
+ sch.ly
1785
+ med.ly
1786
+ org.ly
1787
+ id.ly
1788
+
1789
+ // ma : http://en.wikipedia.org/wiki/.ma
1790
+ // http://www.anrt.ma/fr/admin/download/upload/file_fr782.pdf
1791
+ ma
1792
+ co.ma
1793
+ net.ma
1794
+ gov.ma
1795
+ org.ma
1796
+ ac.ma
1797
+ press.ma
1798
+
1799
+ // mc : http://www.nic.mc/
1800
+ mc
1801
+ tm.mc
1802
+ asso.mc
1803
+
1804
+ // md : http://en.wikipedia.org/wiki/.md
1805
+ md
1806
+
1807
+ // me : http://en.wikipedia.org/wiki/.me
1808
+ me
1809
+ co.me
1810
+ net.me
1811
+ org.me
1812
+ edu.me
1813
+ ac.me
1814
+ gov.me
1815
+ its.me
1816
+ priv.me
1817
+
1818
+ // mg : http://www.nic.mg/tarif.htm
1819
+ mg
1820
+ org.mg
1821
+ nom.mg
1822
+ gov.mg
1823
+ prd.mg
1824
+ tm.mg
1825
+ edu.mg
1826
+ mil.mg
1827
+ com.mg
1828
+
1829
+ // mh : http://en.wikipedia.org/wiki/.mh
1830
+ mh
1831
+
1832
+ // mil : http://en.wikipedia.org/wiki/.mil
1833
+ mil
1834
+
1835
+ // mk : http://en.wikipedia.org/wiki/.mk
1836
+ // see also: http://dns.marnet.net.mk/postapka.php
1837
+ mk
1838
+ com.mk
1839
+ org.mk
1840
+ net.mk
1841
+ edu.mk
1842
+ gov.mk
1843
+ inf.mk
1844
+ name.mk
1845
+
1846
+ // ml : http://www.gobin.info/domainname/ml-template.doc
1847
+ // see also: http://en.wikipedia.org/wiki/.ml
1848
+ ml
1849
+ com.ml
1850
+ edu.ml
1851
+ gouv.ml
1852
+ gov.ml
1853
+ net.ml
1854
+ org.ml
1855
+ presse.ml
1856
+
1857
+ // mm : http://en.wikipedia.org/wiki/.mm
1858
+ *.mm
1859
+
1860
+ // mn : http://en.wikipedia.org/wiki/.mn
1861
+ mn
1862
+ gov.mn
1863
+ edu.mn
1864
+ org.mn
1865
+
1866
+ // mo : http://www.monic.net.mo/
1867
+ mo
1868
+ com.mo
1869
+ net.mo
1870
+ org.mo
1871
+ edu.mo
1872
+ gov.mo
1873
+
1874
+ // mobi : http://en.wikipedia.org/wiki/.mobi
1875
+ mobi
1876
+
1877
+ // mp : http://www.dot.mp/
1878
+ // Confirmed by registry <dcamacho@saipan.com> 2008-06-17
1879
+ mp
1880
+
1881
+ // mq : http://en.wikipedia.org/wiki/.mq
1882
+ mq
1883
+
1884
+ // mr : http://en.wikipedia.org/wiki/.mr
1885
+ mr
1886
+ gov.mr
1887
+
1888
+ // ms : http://en.wikipedia.org/wiki/.ms
1889
+ ms
1890
+
1891
+ // mt : https://www.nic.org.mt/dotmt/
1892
+ *.mt
1893
+
1894
+ // mu : http://en.wikipedia.org/wiki/.mu
1895
+ mu
1896
+ com.mu
1897
+ net.mu
1898
+ org.mu
1899
+ gov.mu
1900
+ ac.mu
1901
+ co.mu
1902
+ or.mu
1903
+
1904
+ // museum : http://about.museum/naming/
1905
+ // http://index.museum/
1906
+ museum
1907
+ academy.museum
1908
+ agriculture.museum
1909
+ air.museum
1910
+ airguard.museum
1911
+ alabama.museum
1912
+ alaska.museum
1913
+ amber.museum
1914
+ ambulance.museum
1915
+ american.museum
1916
+ americana.museum
1917
+ americanantiques.museum
1918
+ americanart.museum
1919
+ amsterdam.museum
1920
+ and.museum
1921
+ annefrank.museum
1922
+ anthro.museum
1923
+ anthropology.museum
1924
+ antiques.museum
1925
+ aquarium.museum
1926
+ arboretum.museum
1927
+ archaeological.museum
1928
+ archaeology.museum
1929
+ architecture.museum
1930
+ art.museum
1931
+ artanddesign.museum
1932
+ artcenter.museum
1933
+ artdeco.museum
1934
+ arteducation.museum
1935
+ artgallery.museum
1936
+ arts.museum
1937
+ artsandcrafts.museum
1938
+ asmatart.museum
1939
+ assassination.museum
1940
+ assisi.museum
1941
+ association.museum
1942
+ astronomy.museum
1943
+ atlanta.museum
1944
+ austin.museum
1945
+ australia.museum
1946
+ automotive.museum
1947
+ aviation.museum
1948
+ axis.museum
1949
+ badajoz.museum
1950
+ baghdad.museum
1951
+ bahn.museum
1952
+ bale.museum
1953
+ baltimore.museum
1954
+ barcelona.museum
1955
+ baseball.museum
1956
+ basel.museum
1957
+ baths.museum
1958
+ bauern.museum
1959
+ beauxarts.museum
1960
+ beeldengeluid.museum
1961
+ bellevue.museum
1962
+ bergbau.museum
1963
+ berkeley.museum
1964
+ berlin.museum
1965
+ bern.museum
1966
+ bible.museum
1967
+ bilbao.museum
1968
+ bill.museum
1969
+ birdart.museum
1970
+ birthplace.museum
1971
+ bonn.museum
1972
+ boston.museum
1973
+ botanical.museum
1974
+ botanicalgarden.museum
1975
+ botanicgarden.museum
1976
+ botany.museum
1977
+ brandywinevalley.museum
1978
+ brasil.museum
1979
+ bristol.museum
1980
+ british.museum
1981
+ britishcolumbia.museum
1982
+ broadcast.museum
1983
+ brunel.museum
1984
+ brussel.museum
1985
+ brussels.museum
1986
+ bruxelles.museum
1987
+ building.museum
1988
+ burghof.museum
1989
+ bus.museum
1990
+ bushey.museum
1991
+ cadaques.museum
1992
+ california.museum
1993
+ cambridge.museum
1994
+ can.museum
1995
+ canada.museum
1996
+ capebreton.museum
1997
+ carrier.museum
1998
+ cartoonart.museum
1999
+ casadelamoneda.museum
2000
+ castle.museum
2001
+ castres.museum
2002
+ celtic.museum
2003
+ center.museum
2004
+ chattanooga.museum
2005
+ cheltenham.museum
2006
+ chesapeakebay.museum
2007
+ chicago.museum
2008
+ children.museum
2009
+ childrens.museum
2010
+ childrensgarden.museum
2011
+ chiropractic.museum
2012
+ chocolate.museum
2013
+ christiansburg.museum
2014
+ cincinnati.museum
2015
+ cinema.museum
2016
+ circus.museum
2017
+ civilisation.museum
2018
+ civilization.museum
2019
+ civilwar.museum
2020
+ clinton.museum
2021
+ clock.museum
2022
+ coal.museum
2023
+ coastaldefence.museum
2024
+ cody.museum
2025
+ coldwar.museum
2026
+ collection.museum
2027
+ colonialwilliamsburg.museum
2028
+ coloradoplateau.museum
2029
+ columbia.museum
2030
+ columbus.museum
2031
+ communication.museum
2032
+ communications.museum
2033
+ community.museum
2034
+ computer.museum
2035
+ computerhistory.museum
2036
+ comunicações.museum
2037
+ contemporary.museum
2038
+ contemporaryart.museum
2039
+ convent.museum
2040
+ copenhagen.museum
2041
+ corporation.museum
2042
+ correios-e-telecomunicações.museum
2043
+ corvette.museum
2044
+ costume.museum
2045
+ countryestate.museum
2046
+ county.museum
2047
+ crafts.museum
2048
+ cranbrook.museum
2049
+ creation.museum
2050
+ cultural.museum
2051
+ culturalcenter.museum
2052
+ culture.museum
2053
+ cyber.museum
2054
+ cymru.museum
2055
+ dali.museum
2056
+ dallas.museum
2057
+ database.museum
2058
+ ddr.museum
2059
+ decorativearts.museum
2060
+ delaware.museum
2061
+ delmenhorst.museum
2062
+ denmark.museum
2063
+ depot.museum
2064
+ design.museum
2065
+ detroit.museum
2066
+ dinosaur.museum
2067
+ discovery.museum
2068
+ dolls.museum
2069
+ donostia.museum
2070
+ durham.museum
2071
+ eastafrica.museum
2072
+ eastcoast.museum
2073
+ education.museum
2074
+ educational.museum
2075
+ egyptian.museum
2076
+ eisenbahn.museum
2077
+ elburg.museum
2078
+ elvendrell.museum
2079
+ embroidery.museum
2080
+ encyclopedic.museum
2081
+ england.museum
2082
+ entomology.museum
2083
+ environment.museum
2084
+ environmentalconservation.museum
2085
+ epilepsy.museum
2086
+ essex.museum
2087
+ estate.museum
2088
+ ethnology.museum
2089
+ exeter.museum
2090
+ exhibition.museum
2091
+ family.museum
2092
+ farm.museum
2093
+ farmequipment.museum
2094
+ farmers.museum
2095
+ farmstead.museum
2096
+ field.museum
2097
+ figueres.museum
2098
+ filatelia.museum
2099
+ film.museum
2100
+ fineart.museum
2101
+ finearts.museum
2102
+ finland.museum
2103
+ flanders.museum
2104
+ florida.museum
2105
+ force.museum
2106
+ fortmissoula.museum
2107
+ fortworth.museum
2108
+ foundation.museum
2109
+ francaise.museum
2110
+ frankfurt.museum
2111
+ franziskaner.museum
2112
+ freemasonry.museum
2113
+ freiburg.museum
2114
+ fribourg.museum
2115
+ frog.museum
2116
+ fundacio.museum
2117
+ furniture.museum
2118
+ gallery.museum
2119
+ garden.museum
2120
+ gateway.museum
2121
+ geelvinck.museum
2122
+ gemological.museum
2123
+ geology.museum
2124
+ georgia.museum
2125
+ giessen.museum
2126
+ glas.museum
2127
+ glass.museum
2128
+ gorge.museum
2129
+ grandrapids.museum
2130
+ graz.museum
2131
+ guernsey.museum
2132
+ halloffame.museum
2133
+ hamburg.museum
2134
+ handson.museum
2135
+ harvestcelebration.museum
2136
+ hawaii.museum
2137
+ health.museum
2138
+ heimatunduhren.museum
2139
+ hellas.museum
2140
+ helsinki.museum
2141
+ hembygdsforbund.museum
2142
+ heritage.museum
2143
+ histoire.museum
2144
+ historical.museum
2145
+ historicalsociety.museum
2146
+ historichouses.museum
2147
+ historisch.museum
2148
+ historisches.museum
2149
+ history.museum
2150
+ historyofscience.museum
2151
+ horology.museum
2152
+ house.museum
2153
+ humanities.museum
2154
+ illustration.museum
2155
+ imageandsound.museum
2156
+ indian.museum
2157
+ indiana.museum
2158
+ indianapolis.museum
2159
+ indianmarket.museum
2160
+ intelligence.museum
2161
+ interactive.museum
2162
+ iraq.museum
2163
+ iron.museum
2164
+ isleofman.museum
2165
+ jamison.museum
2166
+ jefferson.museum
2167
+ jerusalem.museum
2168
+ jewelry.museum
2169
+ jewish.museum
2170
+ jewishart.museum
2171
+ jfk.museum
2172
+ journalism.museum
2173
+ judaica.museum
2174
+ judygarland.museum
2175
+ juedisches.museum
2176
+ juif.museum
2177
+ karate.museum
2178
+ karikatur.museum
2179
+ kids.museum
2180
+ koebenhavn.museum
2181
+ koeln.museum
2182
+ kunst.museum
2183
+ kunstsammlung.museum
2184
+ kunstunddesign.museum
2185
+ labor.museum
2186
+ labour.museum
2187
+ lajolla.museum
2188
+ lancashire.museum
2189
+ landes.museum
2190
+ lans.museum
2191
+ läns.museum
2192
+ larsson.museum
2193
+ lewismiller.museum
2194
+ lincoln.museum
2195
+ linz.museum
2196
+ living.museum
2197
+ livinghistory.museum
2198
+ localhistory.museum
2199
+ london.museum
2200
+ losangeles.museum
2201
+ louvre.museum
2202
+ loyalist.museum
2203
+ lucerne.museum
2204
+ luxembourg.museum
2205
+ luzern.museum
2206
+ mad.museum
2207
+ madrid.museum
2208
+ mallorca.museum
2209
+ manchester.museum
2210
+ mansion.museum
2211
+ mansions.museum
2212
+ manx.museum
2213
+ marburg.museum
2214
+ maritime.museum
2215
+ maritimo.museum
2216
+ maryland.museum
2217
+ marylhurst.museum
2218
+ media.museum
2219
+ medical.museum
2220
+ medizinhistorisches.museum
2221
+ meeres.museum
2222
+ memorial.museum
2223
+ mesaverde.museum
2224
+ michigan.museum
2225
+ midatlantic.museum
2226
+ military.museum
2227
+ mill.museum
2228
+ miners.museum
2229
+ mining.museum
2230
+ minnesota.museum
2231
+ missile.museum
2232
+ missoula.museum
2233
+ modern.museum
2234
+ moma.museum
2235
+ money.museum
2236
+ monmouth.museum
2237
+ monticello.museum
2238
+ montreal.museum
2239
+ moscow.museum
2240
+ motorcycle.museum
2241
+ muenchen.museum
2242
+ muenster.museum
2243
+ mulhouse.museum
2244
+ muncie.museum
2245
+ museet.museum
2246
+ museumcenter.museum
2247
+ museumvereniging.museum
2248
+ music.museum
2249
+ national.museum
2250
+ nationalfirearms.museum
2251
+ nationalheritage.museum
2252
+ nativeamerican.museum
2253
+ naturalhistory.museum
2254
+ naturalhistorymuseum.museum
2255
+ naturalsciences.museum
2256
+ nature.museum
2257
+ naturhistorisches.museum
2258
+ natuurwetenschappen.museum
2259
+ naumburg.museum
2260
+ naval.museum
2261
+ nebraska.museum
2262
+ neues.museum
2263
+ newhampshire.museum
2264
+ newjersey.museum
2265
+ newmexico.museum
2266
+ newport.museum
2267
+ newspaper.museum
2268
+ newyork.museum
2269
+ niepce.museum
2270
+ norfolk.museum
2271
+ north.museum
2272
+ nrw.museum
2273
+ nuernberg.museum
2274
+ nuremberg.museum
2275
+ nyc.museum
2276
+ nyny.museum
2277
+ oceanographic.museum
2278
+ oceanographique.museum
2279
+ omaha.museum
2280
+ online.museum
2281
+ ontario.museum
2282
+ openair.museum
2283
+ oregon.museum
2284
+ oregontrail.museum
2285
+ otago.museum
2286
+ oxford.museum
2287
+ pacific.museum
2288
+ paderborn.museum
2289
+ palace.museum
2290
+ paleo.museum
2291
+ palmsprings.museum
2292
+ panama.museum
2293
+ paris.museum
2294
+ pasadena.museum
2295
+ pharmacy.museum
2296
+ philadelphia.museum
2297
+ philadelphiaarea.museum
2298
+ philately.museum
2299
+ phoenix.museum
2300
+ photography.museum
2301
+ pilots.museum
2302
+ pittsburgh.museum
2303
+ planetarium.museum
2304
+ plantation.museum
2305
+ plants.museum
2306
+ plaza.museum
2307
+ portal.museum
2308
+ portland.museum
2309
+ portlligat.museum
2310
+ posts-and-telecommunications.museum
2311
+ preservation.museum
2312
+ presidio.museum
2313
+ press.museum
2314
+ project.museum
2315
+ public.museum
2316
+ pubol.museum
2317
+ quebec.museum
2318
+ railroad.museum
2319
+ railway.museum
2320
+ research.museum
2321
+ resistance.museum
2322
+ riodejaneiro.museum
2323
+ rochester.museum
2324
+ rockart.museum
2325
+ roma.museum
2326
+ russia.museum
2327
+ saintlouis.museum
2328
+ salem.museum
2329
+ salvadordali.museum
2330
+ salzburg.museum
2331
+ sandiego.museum
2332
+ sanfrancisco.museum
2333
+ santabarbara.museum
2334
+ santacruz.museum
2335
+ santafe.museum
2336
+ saskatchewan.museum
2337
+ satx.museum
2338
+ savannahga.museum
2339
+ schlesisches.museum
2340
+ schoenbrunn.museum
2341
+ schokoladen.museum
2342
+ school.museum
2343
+ schweiz.museum
2344
+ science.museum
2345
+ scienceandhistory.museum
2346
+ scienceandindustry.museum
2347
+ sciencecenter.museum
2348
+ sciencecenters.museum
2349
+ science-fiction.museum
2350
+ sciencehistory.museum
2351
+ sciences.museum
2352
+ sciencesnaturelles.museum
2353
+ scotland.museum
2354
+ seaport.museum
2355
+ settlement.museum
2356
+ settlers.museum
2357
+ shell.museum
2358
+ sherbrooke.museum
2359
+ sibenik.museum
2360
+ silk.museum
2361
+ ski.museum
2362
+ skole.museum
2363
+ society.museum
2364
+ sologne.museum
2365
+ soundandvision.museum
2366
+ southcarolina.museum
2367
+ southwest.museum
2368
+ space.museum
2369
+ spy.museum
2370
+ square.museum
2371
+ stadt.museum
2372
+ stalbans.museum
2373
+ starnberg.museum
2374
+ state.museum
2375
+ stateofdelaware.museum
2376
+ station.museum
2377
+ steam.museum
2378
+ steiermark.museum
2379
+ stjohn.museum
2380
+ stockholm.museum
2381
+ stpetersburg.museum
2382
+ stuttgart.museum
2383
+ suisse.museum
2384
+ surgeonshall.museum
2385
+ surrey.museum
2386
+ svizzera.museum
2387
+ sweden.museum
2388
+ sydney.museum
2389
+ tank.museum
2390
+ tcm.museum
2391
+ technology.museum
2392
+ telekommunikation.museum
2393
+ television.museum
2394
+ texas.museum
2395
+ textile.museum
2396
+ theater.museum
2397
+ time.museum
2398
+ timekeeping.museum
2399
+ topology.museum
2400
+ torino.museum
2401
+ touch.museum
2402
+ town.museum
2403
+ transport.museum
2404
+ tree.museum
2405
+ trolley.museum
2406
+ trust.museum
2407
+ trustee.museum
2408
+ uhren.museum
2409
+ ulm.museum
2410
+ undersea.museum
2411
+ university.museum
2412
+ usa.museum
2413
+ usantiques.museum
2414
+ usarts.museum
2415
+ uscountryestate.museum
2416
+ usculture.museum
2417
+ usdecorativearts.museum
2418
+ usgarden.museum
2419
+ ushistory.museum
2420
+ ushuaia.museum
2421
+ uslivinghistory.museum
2422
+ utah.museum
2423
+ uvic.museum
2424
+ valley.museum
2425
+ vantaa.museum
2426
+ versailles.museum
2427
+ viking.museum
2428
+ village.museum
2429
+ virginia.museum
2430
+ virtual.museum
2431
+ virtuel.museum
2432
+ vlaanderen.museum
2433
+ volkenkunde.museum
2434
+ wales.museum
2435
+ wallonie.museum
2436
+ war.museum
2437
+ washingtondc.museum
2438
+ watchandclock.museum
2439
+ watch-and-clock.museum
2440
+ western.museum
2441
+ westfalen.museum
2442
+ whaling.museum
2443
+ wildlife.museum
2444
+ williamsburg.museum
2445
+ windmill.museum
2446
+ workshop.museum
2447
+ york.museum
2448
+ yorkshire.museum
2449
+ yosemite.museum
2450
+ youth.museum
2451
+ zoological.museum
2452
+ zoology.museum
2453
+ ירושלים.museum
2454
+ иком.museum
2455
+
2456
+ // mv : http://en.wikipedia.org/wiki/.mv
2457
+ // "mv" included because, contra Wikipedia, google.mv exists.
2458
+ mv
2459
+ aero.mv
2460
+ biz.mv
2461
+ com.mv
2462
+ coop.mv
2463
+ edu.mv
2464
+ gov.mv
2465
+ info.mv
2466
+ int.mv
2467
+ mil.mv
2468
+ museum.mv
2469
+ name.mv
2470
+ net.mv
2471
+ org.mv
2472
+ pro.mv
2473
+
2474
+ // mw : http://www.registrar.mw/
2475
+ mw
2476
+ ac.mw
2477
+ biz.mw
2478
+ co.mw
2479
+ com.mw
2480
+ coop.mw
2481
+ edu.mw
2482
+ gov.mw
2483
+ int.mw
2484
+ museum.mw
2485
+ net.mw
2486
+ org.mw
2487
+
2488
+ // mx : http://www.nic.mx/
2489
+ // Submitted by registry <farias@nic.mx> 2008-06-19
2490
+ mx
2491
+ com.mx
2492
+ org.mx
2493
+ gob.mx
2494
+ edu.mx
2495
+ net.mx
2496
+
2497
+ // my : http://www.mynic.net.my/
2498
+ my
2499
+ com.my
2500
+ net.my
2501
+ org.my
2502
+ gov.my
2503
+ edu.my
2504
+ mil.my
2505
+ name.my
2506
+
2507
+ // mz : http://www.gobin.info/domainname/mz-template.doc
2508
+ *.mz
2509
+
2510
+ // na : http://www.na-nic.com.na/
2511
+ // http://www.info.na/domain/
2512
+ na
2513
+ info.na
2514
+ pro.na
2515
+ name.na
2516
+ school.na
2517
+ or.na
2518
+ dr.na
2519
+ us.na
2520
+ mx.na
2521
+ ca.na
2522
+ in.na
2523
+ cc.na
2524
+ tv.na
2525
+ ws.na
2526
+ mobi.na
2527
+ co.na
2528
+ com.na
2529
+ org.na
2530
+
2531
+ // name : has 2nd-level tlds, but there's no list of them
2532
+ name
2533
+
2534
+ // nc : http://www.cctld.nc/
2535
+ nc
2536
+ asso.nc
2537
+
2538
+ // ne : http://en.wikipedia.org/wiki/.ne
2539
+ ne
2540
+
2541
+ // net : http://en.wikipedia.org/wiki/.net
2542
+ net
2543
+
2544
+ // CentralNic names : http://www.centralnic.com/names/domains
2545
+ // Submitted by registry <gavin.brown@centralnic.com> 2008-06-17
2546
+ gb.net
2547
+ se.net
2548
+ uk.net
2549
+
2550
+ // ZaNiC names : http://www.za.net/
2551
+ // Confirmed by registry <hostmaster@nic.za.net> 2009-10-03
2552
+ za.net
2553
+
2554
+ // nf : http://en.wikipedia.org/wiki/.nf
2555
+ nf
2556
+ com.nf
2557
+ net.nf
2558
+ per.nf
2559
+ rec.nf
2560
+ web.nf
2561
+ arts.nf
2562
+ firm.nf
2563
+ info.nf
2564
+ other.nf
2565
+ store.nf
2566
+
2567
+ // ng : http://psg.com/dns/ng/
2568
+ // Submitted by registry <randy@psg.com> 2008-06-17
2569
+ ac.ng
2570
+ com.ng
2571
+ edu.ng
2572
+ gov.ng
2573
+ net.ng
2574
+ org.ng
2575
+
2576
+ // ni : http://www.nic.ni/dominios.htm
2577
+ *.ni
2578
+
2579
+ // nl : http://www.domain-registry.nl/ace.php/c,728,122,,,,Home.html
2580
+ // Confirmed by registry <Antoin.Verschuren@sidn.nl> (with technical
2581
+ // reservations) 2008-06-08
2582
+ nl
2583
+
2584
+ // no : http://www.norid.no/regelverk/index.en.html
2585
+ // The Norwegian registry has declined to notify us of updates. The web pages
2586
+ // referenced below are the official source of the data. There is also an
2587
+ // announce mailing list:
2588
+ // https://postlister.uninett.no/sympa/info/norid-diskusjon
2589
+ no
2590
+ // Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html
2591
+ fhs.no
2592
+ vgs.no
2593
+ fylkesbibl.no
2594
+ folkebibl.no
2595
+ museum.no
2596
+ idrett.no
2597
+ priv.no
2598
+ // Non-Norid generic domains : http://www.norid.no/regelverk/vedlegg-d.en.html
2599
+ mil.no
2600
+ stat.no
2601
+ dep.no
2602
+ kommune.no
2603
+ herad.no
2604
+ // no geographical names : http://www.norid.no/regelverk/vedlegg-b.en.html
2605
+ // counties
2606
+ aa.no
2607
+ ah.no
2608
+ bu.no
2609
+ fm.no
2610
+ hl.no
2611
+ hm.no
2612
+ jan-mayen.no
2613
+ mr.no
2614
+ nl.no
2615
+ nt.no
2616
+ of.no
2617
+ ol.no
2618
+ oslo.no
2619
+ rl.no
2620
+ sf.no
2621
+ st.no
2622
+ svalbard.no
2623
+ tm.no
2624
+ tr.no
2625
+ va.no
2626
+ vf.no
2627
+ // primary and lower secondary schools per county
2628
+ gs.aa.no
2629
+ gs.ah.no
2630
+ gs.bu.no
2631
+ gs.fm.no
2632
+ gs.hl.no
2633
+ gs.hm.no
2634
+ gs.jan-mayen.no
2635
+ gs.mr.no
2636
+ gs.nl.no
2637
+ gs.nt.no
2638
+ gs.of.no
2639
+ gs.ol.no
2640
+ gs.oslo.no
2641
+ gs.rl.no
2642
+ gs.sf.no
2643
+ gs.st.no
2644
+ gs.svalbard.no
2645
+ gs.tm.no
2646
+ gs.tr.no
2647
+ gs.va.no
2648
+ gs.vf.no
2649
+ // cities
2650
+ akrehamn.no
2651
+ åkrehamn.no
2652
+ algard.no
2653
+ ålgård.no
2654
+ arna.no
2655
+ brumunddal.no
2656
+ bryne.no
2657
+ bronnoysund.no
2658
+ brønnøysund.no
2659
+ drobak.no
2660
+ drøbak.no
2661
+ egersund.no
2662
+ fetsund.no
2663
+ floro.no
2664
+ florø.no
2665
+ fredrikstad.no
2666
+ hokksund.no
2667
+ honefoss.no
2668
+ hønefoss.no
2669
+ jessheim.no
2670
+ jorpeland.no
2671
+ jørpeland.no
2672
+ kirkenes.no
2673
+ kopervik.no
2674
+ krokstadelva.no
2675
+ langevag.no
2676
+ langevåg.no
2677
+ leirvik.no
2678
+ mjondalen.no
2679
+ mjøndalen.no
2680
+ mo-i-rana.no
2681
+ mosjoen.no
2682
+ mosjøen.no
2683
+ nesoddtangen.no
2684
+ orkanger.no
2685
+ osoyro.no
2686
+ osøyro.no
2687
+ raholt.no
2688
+ råholt.no
2689
+ sandnessjoen.no
2690
+ sandnessjøen.no
2691
+ skedsmokorset.no
2692
+ slattum.no
2693
+ spjelkavik.no
2694
+ stathelle.no
2695
+ stavern.no
2696
+ stjordalshalsen.no
2697
+ stjørdalshalsen.no
2698
+ tananger.no
2699
+ tranby.no
2700
+ vossevangen.no
2701
+ // communities
2702
+ afjord.no
2703
+ åfjord.no
2704
+ agdenes.no
2705
+ al.no
2706
+ ål.no
2707
+ alesund.no
2708
+ ålesund.no
2709
+ alstahaug.no
2710
+ alta.no
2711
+ áltá.no
2712
+ alaheadju.no
2713
+ álaheadju.no
2714
+ alvdal.no
2715
+ amli.no
2716
+ åmli.no
2717
+ amot.no
2718
+ åmot.no
2719
+ andebu.no
2720
+ andoy.no
2721
+ andøy.no
2722
+ andasuolo.no
2723
+ ardal.no
2724
+ årdal.no
2725
+ aremark.no
2726
+ arendal.no
2727
+ ås.no
2728
+ aseral.no
2729
+ åseral.no
2730
+ asker.no
2731
+ askim.no
2732
+ askvoll.no
2733
+ askoy.no
2734
+ askøy.no
2735
+ asnes.no
2736
+ åsnes.no
2737
+ audnedaln.no
2738
+ aukra.no
2739
+ aure.no
2740
+ aurland.no
2741
+ aurskog-holand.no
2742
+ aurskog-høland.no
2743
+ austevoll.no
2744
+ austrheim.no
2745
+ averoy.no
2746
+ averøy.no
2747
+ balestrand.no
2748
+ ballangen.no
2749
+ balat.no
2750
+ bálát.no
2751
+ balsfjord.no
2752
+ bahccavuotna.no
2753
+ báhccavuotna.no
2754
+ bamble.no
2755
+ bardu.no
2756
+ beardu.no
2757
+ beiarn.no
2758
+ bajddar.no
2759
+ bájddar.no
2760
+ baidar.no
2761
+ báidár.no
2762
+ berg.no
2763
+ bergen.no
2764
+ berlevag.no
2765
+ berlevåg.no
2766
+ bearalvahki.no
2767
+ bearalváhki.no
2768
+ bindal.no
2769
+ birkenes.no
2770
+ bjarkoy.no
2771
+ bjarkøy.no
2772
+ bjerkreim.no
2773
+ bjugn.no
2774
+ bodo.no
2775
+ bodø.no
2776
+ badaddja.no
2777
+ bådåddjå.no
2778
+ budejju.no
2779
+ bokn.no
2780
+ bremanger.no
2781
+ bronnoy.no
2782
+ brønnøy.no
2783
+ bygland.no
2784
+ bykle.no
2785
+ barum.no
2786
+ bærum.no
2787
+ bo.telemark.no
2788
+ bø.telemark.no
2789
+ bo.nordland.no
2790
+ bø.nordland.no
2791
+ bievat.no
2792
+ bievát.no
2793
+ bomlo.no
2794
+ bømlo.no
2795
+ batsfjord.no
2796
+ båtsfjord.no
2797
+ bahcavuotna.no
2798
+ báhcavuotna.no
2799
+ dovre.no
2800
+ drammen.no
2801
+ drangedal.no
2802
+ dyroy.no
2803
+ dyrøy.no
2804
+ donna.no
2805
+ dønna.no
2806
+ eid.no
2807
+ eidfjord.no
2808
+ eidsberg.no
2809
+ eidskog.no
2810
+ eidsvoll.no
2811
+ eigersund.no
2812
+ elverum.no
2813
+ enebakk.no
2814
+ engerdal.no
2815
+ etne.no
2816
+ etnedal.no
2817
+ evenes.no
2818
+ evenassi.no
2819
+ evenášši.no
2820
+ evje-og-hornnes.no
2821
+ farsund.no
2822
+ fauske.no
2823
+ fuossko.no
2824
+ fuoisku.no
2825
+ fedje.no
2826
+ fet.no
2827
+ finnoy.no
2828
+ finnøy.no
2829
+ fitjar.no
2830
+ fjaler.no
2831
+ fjell.no
2832
+ flakstad.no
2833
+ flatanger.no
2834
+ flekkefjord.no
2835
+ flesberg.no
2836
+ flora.no
2837
+ fla.no
2838
+ flå.no
2839
+ folldal.no
2840
+ forsand.no
2841
+ fosnes.no
2842
+ frei.no
2843
+ frogn.no
2844
+ froland.no
2845
+ frosta.no
2846
+ frana.no
2847
+ fræna.no
2848
+ froya.no
2849
+ frøya.no
2850
+ fusa.no
2851
+ fyresdal.no
2852
+ forde.no
2853
+ førde.no
2854
+ gamvik.no
2855
+ gangaviika.no
2856
+ gáŋgaviika.no
2857
+ gaular.no
2858
+ gausdal.no
2859
+ gildeskal.no
2860
+ gildeskål.no
2861
+ giske.no
2862
+ gjemnes.no
2863
+ gjerdrum.no
2864
+ gjerstad.no
2865
+ gjesdal.no
2866
+ gjovik.no
2867
+ gjøvik.no
2868
+ gloppen.no
2869
+ gol.no
2870
+ gran.no
2871
+ grane.no
2872
+ granvin.no
2873
+ gratangen.no
2874
+ grimstad.no
2875
+ grong.no
2876
+ kraanghke.no
2877
+ kråanghke.no
2878
+ grue.no
2879
+ gulen.no
2880
+ hadsel.no
2881
+ halden.no
2882
+ halsa.no
2883
+ hamar.no
2884
+ hamaroy.no
2885
+ habmer.no
2886
+ hábmer.no
2887
+ hapmir.no
2888
+ hápmir.no
2889
+ hammerfest.no
2890
+ hammarfeasta.no
2891
+ hámmárfeasta.no
2892
+ haram.no
2893
+ hareid.no
2894
+ harstad.no
2895
+ hasvik.no
2896
+ aknoluokta.no
2897
+ ákŋoluokta.no
2898
+ hattfjelldal.no
2899
+ aarborte.no
2900
+ haugesund.no
2901
+ hemne.no
2902
+ hemnes.no
2903
+ hemsedal.no
2904
+ heroy.more-og-romsdal.no
2905
+ herøy.møre-og-romsdal.no
2906
+ heroy.nordland.no
2907
+ herøy.nordland.no
2908
+ hitra.no
2909
+ hjartdal.no
2910
+ hjelmeland.no
2911
+ hobol.no
2912
+ hobøl.no
2913
+ hof.no
2914
+ hol.no
2915
+ hole.no
2916
+ holmestrand.no
2917
+ holtalen.no
2918
+ holtålen.no
2919
+ hornindal.no
2920
+ horten.no
2921
+ hurdal.no
2922
+ hurum.no
2923
+ hvaler.no
2924
+ hyllestad.no
2925
+ hagebostad.no
2926
+ hægebostad.no
2927
+ hoyanger.no
2928
+ høyanger.no
2929
+ hoylandet.no
2930
+ høylandet.no
2931
+ ha.no
2932
+ hå.no
2933
+ ibestad.no
2934
+ inderoy.no
2935
+ inderøy.no
2936
+ iveland.no
2937
+ jevnaker.no
2938
+ jondal.no
2939
+ jolster.no
2940
+ jølster.no
2941
+ karasjok.no
2942
+ karasjohka.no
2943
+ kárášjohka.no
2944
+ karlsoy.no
2945
+ galsa.no
2946
+ gálsá.no
2947
+ karmoy.no
2948
+ karmøy.no
2949
+ kautokeino.no
2950
+ guovdageaidnu.no
2951
+ klepp.no
2952
+ klabu.no
2953
+ klæbu.no
2954
+ kongsberg.no
2955
+ kongsvinger.no
2956
+ kragero.no
2957
+ kragerø.no
2958
+ kristiansand.no
2959
+ kristiansund.no
2960
+ krodsherad.no
2961
+ krødsherad.no
2962
+ kvalsund.no
2963
+ rahkkeravju.no
2964
+ ráhkkerávju.no
2965
+ kvam.no
2966
+ kvinesdal.no
2967
+ kvinnherad.no
2968
+ kviteseid.no
2969
+ kvitsoy.no
2970
+ kvitsøy.no
2971
+ kvafjord.no
2972
+ kvæfjord.no
2973
+ giehtavuoatna.no
2974
+ kvanangen.no
2975
+ kvænangen.no
2976
+ navuotna.no
2977
+ návuotna.no
2978
+ kafjord.no
2979
+ kåfjord.no
2980
+ gaivuotna.no
2981
+ gáivuotna.no
2982
+ larvik.no
2983
+ lavangen.no
2984
+ lavagis.no
2985
+ loabat.no
2986
+ loabát.no
2987
+ lebesby.no
2988
+ davvesiida.no
2989
+ leikanger.no
2990
+ leirfjord.no
2991
+ leka.no
2992
+ leksvik.no
2993
+ lenvik.no
2994
+ leangaviika.no
2995
+ leaŋgaviika.no
2996
+ lesja.no
2997
+ levanger.no
2998
+ lier.no
2999
+ lierne.no
3000
+ lillehammer.no
3001
+ lillesand.no
3002
+ lindesnes.no
3003
+ lindas.no
3004
+ lindås.no
3005
+ lom.no
3006
+ loppa.no
3007
+ lahppi.no
3008
+ láhppi.no
3009
+ lund.no
3010
+ lunner.no
3011
+ luroy.no
3012
+ lurøy.no
3013
+ luster.no
3014
+ lyngdal.no
3015
+ lyngen.no
3016
+ ivgu.no
3017
+ lardal.no
3018
+ lerdal.no
3019
+ lærdal.no
3020
+ lodingen.no
3021
+ lødingen.no
3022
+ lorenskog.no
3023
+ lørenskog.no
3024
+ loten.no
3025
+ løten.no
3026
+ malvik.no
3027
+ masoy.no
3028
+ måsøy.no
3029
+ muosat.no
3030
+ muosát.no
3031
+ mandal.no
3032
+ marker.no
3033
+ marnardal.no
3034
+ masfjorden.no
3035
+ meland.no
3036
+ meldal.no
3037
+ melhus.no
3038
+ meloy.no
3039
+ meløy.no
3040
+ meraker.no
3041
+ meråker.no
3042
+ moareke.no
3043
+ moåreke.no
3044
+ midsund.no
3045
+ midtre-gauldal.no
3046
+ modalen.no
3047
+ modum.no
3048
+ molde.no
3049
+ moskenes.no
3050
+ moss.no
3051
+ mosvik.no
3052
+ malselv.no
3053
+ målselv.no
3054
+ malatvuopmi.no
3055
+ málatvuopmi.no
3056
+ namdalseid.no
3057
+ aejrie.no
3058
+ namsos.no
3059
+ namsskogan.no
3060
+ naamesjevuemie.no
3061
+ nååmesjevuemie.no
3062
+ laakesvuemie.no
3063
+ nannestad.no
3064
+ narvik.no
3065
+ narviika.no
3066
+ naustdal.no
3067
+ nedre-eiker.no
3068
+ nes.akershus.no
3069
+ nes.buskerud.no
3070
+ nesna.no
3071
+ nesodden.no
3072
+ nesseby.no
3073
+ unjarga.no
3074
+ unjárga.no
3075
+ nesset.no
3076
+ nissedal.no
3077
+ nittedal.no
3078
+ nord-aurdal.no
3079
+ nord-fron.no
3080
+ nord-odal.no
3081
+ norddal.no
3082
+ nordkapp.no
3083
+ davvenjarga.no
3084
+ davvenjárga.no
3085
+ nordre-land.no
3086
+ nordreisa.no
3087
+ raisa.no
3088
+ ráisa.no
3089
+ nore-og-uvdal.no
3090
+ notodden.no
3091
+ naroy.no
3092
+ nærøy.no
3093
+ notteroy.no
3094
+ nøtterøy.no
3095
+ odda.no
3096
+ oksnes.no
3097
+ øksnes.no
3098
+ oppdal.no
3099
+ oppegard.no
3100
+ oppegård.no
3101
+ orkdal.no
3102
+ orland.no
3103
+ ørland.no
3104
+ orskog.no
3105
+ ørskog.no
3106
+ orsta.no
3107
+ ørsta.no
3108
+ os.hedmark.no
3109
+ os.hordaland.no
3110
+ osen.no
3111
+ osteroy.no
3112
+ osterøy.no
3113
+ ostre-toten.no
3114
+ østre-toten.no
3115
+ overhalla.no
3116
+ ovre-eiker.no
3117
+ øvre-eiker.no
3118
+ oyer.no
3119
+ øyer.no
3120
+ oygarden.no
3121
+ øygarden.no
3122
+ oystre-slidre.no
3123
+ øystre-slidre.no
3124
+ porsanger.no
3125
+ porsangu.no
3126
+ porsáŋgu.no
3127
+ porsgrunn.no
3128
+ radoy.no
3129
+ radøy.no
3130
+ rakkestad.no
3131
+ rana.no
3132
+ ruovat.no
3133
+ randaberg.no
3134
+ rauma.no
3135
+ rendalen.no
3136
+ rennebu.no
3137
+ rennesoy.no
3138
+ rennesøy.no
3139
+ rindal.no
3140
+ ringebu.no
3141
+ ringerike.no
3142
+ ringsaker.no
3143
+ rissa.no
3144
+ risor.no
3145
+ risør.no
3146
+ roan.no
3147
+ rollag.no
3148
+ rygge.no
3149
+ ralingen.no
3150
+ rælingen.no
3151
+ rodoy.no
3152
+ rødøy.no
3153
+ romskog.no
3154
+ rømskog.no
3155
+ roros.no
3156
+ røros.no
3157
+ rost.no
3158
+ røst.no
3159
+ royken.no
3160
+ røyken.no
3161
+ royrvik.no
3162
+ røyrvik.no
3163
+ rade.no
3164
+ råde.no
3165
+ salangen.no
3166
+ siellak.no
3167
+ saltdal.no
3168
+ salat.no
3169
+ sálát.no
3170
+ sálat.no
3171
+ samnanger.no
3172
+ sande.more-og-romsdal.no
3173
+ sande.møre-og-romsdal.no
3174
+ sande.vestfold.no
3175
+ sandefjord.no
3176
+ sandnes.no
3177
+ sandoy.no
3178
+ sandøy.no
3179
+ sarpsborg.no
3180
+ sauda.no
3181
+ sauherad.no
3182
+ sel.no
3183
+ selbu.no
3184
+ selje.no
3185
+ seljord.no
3186
+ sigdal.no
3187
+ siljan.no
3188
+ sirdal.no
3189
+ skaun.no
3190
+ skedsmo.no
3191
+ ski.no
3192
+ skien.no
3193
+ skiptvet.no
3194
+ skjervoy.no
3195
+ skjervøy.no
3196
+ skierva.no
3197
+ skiervá.no
3198
+ skjak.no
3199
+ skjåk.no
3200
+ skodje.no
3201
+ skanland.no
3202
+ skånland.no
3203
+ skanit.no
3204
+ skánit.no
3205
+ smola.no
3206
+ smøla.no
3207
+ snillfjord.no
3208
+ snasa.no
3209
+ snåsa.no
3210
+ snoasa.no
3211
+ snaase.no
3212
+ snåase.no
3213
+ sogndal.no
3214
+ sokndal.no
3215
+ sola.no
3216
+ solund.no
3217
+ songdalen.no
3218
+ sortland.no
3219
+ spydeberg.no
3220
+ stange.no
3221
+ stavanger.no
3222
+ steigen.no
3223
+ steinkjer.no
3224
+ stjordal.no
3225
+ stjørdal.no
3226
+ stokke.no
3227
+ stor-elvdal.no
3228
+ stord.no
3229
+ stordal.no
3230
+ storfjord.no
3231
+ omasvuotna.no
3232
+ strand.no
3233
+ stranda.no
3234
+ stryn.no
3235
+ sula.no
3236
+ suldal.no
3237
+ sund.no
3238
+ sunndal.no
3239
+ surnadal.no
3240
+ sveio.no
3241
+ svelvik.no
3242
+ sykkylven.no
3243
+ sogne.no
3244
+ søgne.no
3245
+ somna.no
3246
+ sømna.no
3247
+ sondre-land.no
3248
+ søndre-land.no
3249
+ sor-aurdal.no
3250
+ sør-aurdal.no
3251
+ sor-fron.no
3252
+ sør-fron.no
3253
+ sor-odal.no
3254
+ sør-odal.no
3255
+ sor-varanger.no
3256
+ sør-varanger.no
3257
+ matta-varjjat.no
3258
+ mátta-várjjat.no
3259
+ sorfold.no
3260
+ sørfold.no
3261
+ sorreisa.no
3262
+ sørreisa.no
3263
+ sorum.no
3264
+ sørum.no
3265
+ tana.no
3266
+ deatnu.no
3267
+ time.no
3268
+ tingvoll.no
3269
+ tinn.no
3270
+ tjeldsund.no
3271
+ dielddanuorri.no
3272
+ tjome.no
3273
+ tjøme.no
3274
+ tokke.no
3275
+ tolga.no
3276
+ torsken.no
3277
+ tranoy.no
3278
+ tranøy.no
3279
+ tromso.no
3280
+ tromsø.no
3281
+ tromsa.no
3282
+ romsa.no
3283
+ trondheim.no
3284
+ troandin.no
3285
+ trysil.no
3286
+ trana.no
3287
+ træna.no
3288
+ trogstad.no
3289
+ trøgstad.no
3290
+ tvedestrand.no
3291
+ tydal.no
3292
+ tynset.no
3293
+ tysfjord.no
3294
+ divtasvuodna.no
3295
+ divttasvuotna.no
3296
+ tysnes.no
3297
+ tysvar.no
3298
+ tysvær.no
3299
+ tonsberg.no
3300
+ tønsberg.no
3301
+ ullensaker.no
3302
+ ullensvang.no
3303
+ ulvik.no
3304
+ utsira.no
3305
+ vadso.no
3306
+ vadsø.no
3307
+ cahcesuolo.no
3308
+ čáhcesuolo.no
3309
+ vaksdal.no
3310
+ valle.no
3311
+ vang.no
3312
+ vanylven.no
3313
+ vardo.no
3314
+ vardø.no
3315
+ varggat.no
3316
+ várggát.no
3317
+ vefsn.no
3318
+ vaapste.no
3319
+ vega.no
3320
+ vegarshei.no
3321
+ vegårshei.no
3322
+ vennesla.no
3323
+ verdal.no
3324
+ verran.no
3325
+ vestby.no
3326
+ vestnes.no
3327
+ vestre-slidre.no
3328
+ vestre-toten.no
3329
+ vestvagoy.no
3330
+ vestvågøy.no
3331
+ vevelstad.no
3332
+ vik.no
3333
+ vikna.no
3334
+ vindafjord.no
3335
+ volda.no
3336
+ voss.no
3337
+ varoy.no
3338
+ værøy.no
3339
+ vagan.no
3340
+ vågan.no
3341
+ voagat.no
3342
+ vagsoy.no
3343
+ vågsøy.no
3344
+ vaga.no
3345
+ vågå.no
3346
+ valer.ostfold.no
3347
+ våler.østfold.no
3348
+ valer.hedmark.no
3349
+ våler.hedmark.no
3350
+
3351
+ // np : http://www.mos.com.np/register.html
3352
+ *.np
3353
+
3354
+ // nr : http://cenpac.net.nr/dns/index.html
3355
+ // Confirmed by registry <technician@cenpac.net.nr> 2008-06-17
3356
+ nr
3357
+ biz.nr
3358
+ info.nr
3359
+ gov.nr
3360
+ edu.nr
3361
+ org.nr
3362
+ net.nr
3363
+ com.nr
3364
+
3365
+ // nu : http://en.wikipedia.org/wiki/.nu
3366
+ nu
3367
+
3368
+ // nz : http://en.wikipedia.org/wiki/.nz
3369
+ *.nz
3370
+
3371
+ // om : http://en.wikipedia.org/wiki/.om
3372
+ *.om
3373
+
3374
+ // org : http://en.wikipedia.org/wiki/.org
3375
+ org
3376
+
3377
+ // CentralNic names : http://www.centralnic.com/names/domains
3378
+ // Submitted by registry <gavin.brown@centralnic.com> 2008-06-17
3379
+ ae.org
3380
+
3381
+ // ZaNiC names : http://www.za.net/
3382
+ // Confirmed by registry <hostmaster@nic.za.net> 2009-10-03
3383
+ za.org
3384
+
3385
+ // pa : http://www.nic.pa/
3386
+ // Some additional second level "domains" resolve directly as hostnames, such as
3387
+ // pannet.pa, so we add a rule for "pa".
3388
+ pa
3389
+ ac.pa
3390
+ gob.pa
3391
+ com.pa
3392
+ org.pa
3393
+ sld.pa
3394
+ edu.pa
3395
+ net.pa
3396
+ ing.pa
3397
+ abo.pa
3398
+ med.pa
3399
+ nom.pa
3400
+
3401
+ // pe : https://www.nic.pe/InformeFinalComision.pdf
3402
+ pe
3403
+ edu.pe
3404
+ gob.pe
3405
+ nom.pe
3406
+ mil.pe
3407
+ org.pe
3408
+ com.pe
3409
+ net.pe
3410
+
3411
+ // pf : http://www.gobin.info/domainname/formulaire-pf.pdf
3412
+ pf
3413
+ com.pf
3414
+ org.pf
3415
+ edu.pf
3416
+
3417
+ // pg : http://en.wikipedia.org/wiki/.pg
3418
+ *.pg
3419
+
3420
+ // ph : http://www.domains.ph/FAQ2.asp
3421
+ // Submitted by registry <jed@email.com.ph> 2008-06-13
3422
+ ph
3423
+ com.ph
3424
+ net.ph
3425
+ org.ph
3426
+ gov.ph
3427
+ edu.ph
3428
+ ngo.ph
3429
+ mil.ph
3430
+ i.ph
3431
+
3432
+ // pk : http://pk5.pknic.net.pk/pk5/msgNamepk.PK
3433
+ pk
3434
+ com.pk
3435
+ net.pk
3436
+ edu.pk
3437
+ org.pk
3438
+ fam.pk
3439
+ biz.pk
3440
+ web.pk
3441
+ gov.pk
3442
+ gob.pk
3443
+ gok.pk
3444
+ gon.pk
3445
+ gop.pk
3446
+ gos.pk
3447
+ info.pk
3448
+
3449
+ // pl : http://www.dns.pl/english/
3450
+ pl
3451
+ // NASK functional domains (nask.pl / dns.pl) : http://www.dns.pl/english/dns-funk.html
3452
+ aid.pl
3453
+ agro.pl
3454
+ atm.pl
3455
+ auto.pl
3456
+ biz.pl
3457
+ com.pl
3458
+ edu.pl
3459
+ gmina.pl
3460
+ gsm.pl
3461
+ info.pl
3462
+ mail.pl
3463
+ miasta.pl
3464
+ media.pl
3465
+ mil.pl
3466
+ net.pl
3467
+ nieruchomosci.pl
3468
+ nom.pl
3469
+ org.pl
3470
+ pc.pl
3471
+ powiat.pl
3472
+ priv.pl
3473
+ realestate.pl
3474
+ rel.pl
3475
+ sex.pl
3476
+ shop.pl
3477
+ sklep.pl
3478
+ sos.pl
3479
+ szkola.pl
3480
+ targi.pl
3481
+ tm.pl
3482
+ tourism.pl
3483
+ travel.pl
3484
+ turystyka.pl
3485
+ // ICM functional domains (icm.edu.pl)
3486
+ 6bone.pl
3487
+ art.pl
3488
+ mbone.pl
3489
+ // Government domains (administred by ippt.gov.pl)
3490
+ gov.pl
3491
+ uw.gov.pl
3492
+ um.gov.pl
3493
+ ug.gov.pl
3494
+ upow.gov.pl
3495
+ starostwo.gov.pl
3496
+ so.gov.pl
3497
+ sr.gov.pl
3498
+ po.gov.pl
3499
+ pa.gov.pl
3500
+ // other functional domains
3501
+ ngo.pl
3502
+ irc.pl
3503
+ usenet.pl
3504
+ // NASK geographical domains : http://www.dns.pl/english/dns-regiony.html
3505
+ augustow.pl
3506
+ babia-gora.pl
3507
+ bedzin.pl
3508
+ beskidy.pl
3509
+ bialowieza.pl
3510
+ bialystok.pl
3511
+ bielawa.pl
3512
+ bieszczady.pl
3513
+ boleslawiec.pl
3514
+ bydgoszcz.pl
3515
+ bytom.pl
3516
+ cieszyn.pl
3517
+ czeladz.pl
3518
+ czest.pl
3519
+ dlugoleka.pl
3520
+ elblag.pl
3521
+ elk.pl
3522
+ glogow.pl
3523
+ gniezno.pl
3524
+ gorlice.pl
3525
+ grajewo.pl
3526
+ ilawa.pl
3527
+ jaworzno.pl
3528
+ jelenia-gora.pl
3529
+ jgora.pl
3530
+ kalisz.pl
3531
+ kazimierz-dolny.pl
3532
+ karpacz.pl
3533
+ kartuzy.pl
3534
+ kaszuby.pl
3535
+ katowice.pl
3536
+ kepno.pl
3537
+ ketrzyn.pl
3538
+ klodzko.pl
3539
+ kobierzyce.pl
3540
+ kolobrzeg.pl
3541
+ konin.pl
3542
+ konskowola.pl
3543
+ kutno.pl
3544
+ lapy.pl
3545
+ lebork.pl
3546
+ legnica.pl
3547
+ lezajsk.pl
3548
+ limanowa.pl
3549
+ lomza.pl
3550
+ lowicz.pl
3551
+ lubin.pl
3552
+ lukow.pl
3553
+ malbork.pl
3554
+ malopolska.pl
3555
+ mazowsze.pl
3556
+ mazury.pl
3557
+ mielec.pl
3558
+ mielno.pl
3559
+ mragowo.pl
3560
+ naklo.pl
3561
+ nowaruda.pl
3562
+ nysa.pl
3563
+ olawa.pl
3564
+ olecko.pl
3565
+ olkusz.pl
3566
+ olsztyn.pl
3567
+ opoczno.pl
3568
+ opole.pl
3569
+ ostroda.pl
3570
+ ostroleka.pl
3571
+ ostrowiec.pl
3572
+ ostrowwlkp.pl
3573
+ pila.pl
3574
+ pisz.pl
3575
+ podhale.pl
3576
+ podlasie.pl
3577
+ polkowice.pl
3578
+ pomorze.pl
3579
+ pomorskie.pl
3580
+ prochowice.pl
3581
+ pruszkow.pl
3582
+ przeworsk.pl
3583
+ pulawy.pl
3584
+ radom.pl
3585
+ rawa-maz.pl
3586
+ rybnik.pl
3587
+ rzeszow.pl
3588
+ sanok.pl
3589
+ sejny.pl
3590
+ siedlce.pl
3591
+ slask.pl
3592
+ slupsk.pl
3593
+ sosnowiec.pl
3594
+ stalowa-wola.pl
3595
+ skoczow.pl
3596
+ starachowice.pl
3597
+ stargard.pl
3598
+ suwalki.pl
3599
+ swidnica.pl
3600
+ swiebodzin.pl
3601
+ swinoujscie.pl
3602
+ szczecin.pl
3603
+ szczytno.pl
3604
+ tarnobrzeg.pl
3605
+ tgory.pl
3606
+ turek.pl
3607
+ tychy.pl
3608
+ ustka.pl
3609
+ walbrzych.pl
3610
+ warmia.pl
3611
+ warszawa.pl
3612
+ waw.pl
3613
+ wegrow.pl
3614
+ wielun.pl
3615
+ wlocl.pl
3616
+ wloclawek.pl
3617
+ wodzislaw.pl
3618
+ wolomin.pl
3619
+ wroclaw.pl
3620
+ zachpomor.pl
3621
+ zagan.pl
3622
+ zarow.pl
3623
+ zgora.pl
3624
+ zgorzelec.pl
3625
+ // TASK geographical domains (www.task.gda.pl/uslugi/dns)
3626
+ gda.pl
3627
+ gdansk.pl
3628
+ gdynia.pl
3629
+ med.pl
3630
+ sopot.pl
3631
+ // other geographical domains
3632
+ gliwice.pl
3633
+ krakow.pl
3634
+ poznan.pl
3635
+ wroc.pl
3636
+ zakopane.pl
3637
+
3638
+ // pn : http://www.government.pn/PnRegistry/policies.htm
3639
+ pn
3640
+ gov.pn
3641
+ co.pn
3642
+ org.pn
3643
+ edu.pn
3644
+ net.pn
3645
+
3646
+ // pr : http://www.nic.pr/index.asp?f=1
3647
+ pr
3648
+ com.pr
3649
+ net.pr
3650
+ org.pr
3651
+ gov.pr
3652
+ edu.pr
3653
+ isla.pr
3654
+ pro.pr
3655
+ biz.pr
3656
+ info.pr
3657
+ name.pr
3658
+ // these aren't mentioned on nic.pr, but on http://en.wikipedia.org/wiki/.pr
3659
+ est.pr
3660
+ prof.pr
3661
+ ac.pr
3662
+
3663
+ // pro : http://www.nic.pro/support_faq.htm
3664
+ pro
3665
+ aca.pro
3666
+ bar.pro
3667
+ cpa.pro
3668
+ jur.pro
3669
+ law.pro
3670
+ med.pro
3671
+ eng.pro
3672
+
3673
+ // ps : http://en.wikipedia.org/wiki/.ps
3674
+ // http://www.nic.ps/registration/policy.html#reg
3675
+ ps
3676
+ edu.ps
3677
+ gov.ps
3678
+ sec.ps
3679
+ plo.ps
3680
+ com.ps
3681
+ org.ps
3682
+ net.ps
3683
+
3684
+ // pt : http://online.dns.pt/dns/start_dns
3685
+ pt
3686
+ net.pt
3687
+ gov.pt
3688
+ org.pt
3689
+ edu.pt
3690
+ int.pt
3691
+ publ.pt
3692
+ com.pt
3693
+ nome.pt
3694
+
3695
+ // pw : http://en.wikipedia.org/wiki/.pw
3696
+ pw
3697
+ co.pw
3698
+ ne.pw
3699
+ or.pw
3700
+ ed.pw
3701
+ go.pw
3702
+ belau.pw
3703
+
3704
+ // py : http://www.nic.py/faq_a.html#faq_b
3705
+ *.py
3706
+
3707
+ // qa : http://www.qatar.net.qa/services/virtual.htm
3708
+ *.qa
3709
+
3710
+ // re : http://www.afnic.re/obtenir/chartes/nommage-re/annexe-descriptifs
3711
+ re
3712
+ com.re
3713
+ asso.re
3714
+ nom.re
3715
+
3716
+ // ro : http://www.rotld.ro/
3717
+ ro
3718
+ com.ro
3719
+ org.ro
3720
+ tm.ro
3721
+ nt.ro
3722
+ nom.ro
3723
+ info.ro
3724
+ rec.ro
3725
+ arts.ro
3726
+ firm.ro
3727
+ store.ro
3728
+ www.ro
3729
+
3730
+ // rs : http://en.wikipedia.org/wiki/.rs
3731
+ rs
3732
+ co.rs
3733
+ org.rs
3734
+ edu.rs
3735
+ ac.rs
3736
+ gov.rs
3737
+ in.rs
3738
+
3739
+ // ru : http://www.cctld.ru/ru/docs/aktiv_8.php
3740
+ // Industry domains
3741
+ ru
3742
+ ac.ru
3743
+ com.ru
3744
+ edu.ru
3745
+ int.ru
3746
+ net.ru
3747
+ org.ru
3748
+ pp.ru
3749
+ // Geographical domains
3750
+ adygeya.ru
3751
+ altai.ru
3752
+ amur.ru
3753
+ arkhangelsk.ru
3754
+ astrakhan.ru
3755
+ bashkiria.ru
3756
+ belgorod.ru
3757
+ bir.ru
3758
+ bryansk.ru
3759
+ buryatia.ru
3760
+ cbg.ru
3761
+ chel.ru
3762
+ chelyabinsk.ru
3763
+ chita.ru
3764
+ chukotka.ru
3765
+ chuvashia.ru
3766
+ dagestan.ru
3767
+ dudinka.ru
3768
+ e-burg.ru
3769
+ grozny.ru
3770
+ irkutsk.ru
3771
+ ivanovo.ru
3772
+ izhevsk.ru
3773
+ jar.ru
3774
+ joshkar-ola.ru
3775
+ kalmykia.ru
3776
+ kaluga.ru
3777
+ kamchatka.ru
3778
+ karelia.ru
3779
+ kazan.ru
3780
+ kchr.ru
3781
+ kemerovo.ru
3782
+ khabarovsk.ru
3783
+ khakassia.ru
3784
+ khv.ru
3785
+ kirov.ru
3786
+ koenig.ru
3787
+ komi.ru
3788
+ kostroma.ru
3789
+ krasnoyarsk.ru
3790
+ kuban.ru
3791
+ kurgan.ru
3792
+ kursk.ru
3793
+ lipetsk.ru
3794
+ magadan.ru
3795
+ mari.ru
3796
+ mari-el.ru
3797
+ marine.ru
3798
+ mordovia.ru
3799
+ mosreg.ru
3800
+ msk.ru
3801
+ murmansk.ru
3802
+ nalchik.ru
3803
+ nnov.ru
3804
+ nov.ru
3805
+ novosibirsk.ru
3806
+ nsk.ru
3807
+ omsk.ru
3808
+ orenburg.ru
3809
+ oryol.ru
3810
+ palana.ru
3811
+ penza.ru
3812
+ perm.ru
3813
+ pskov.ru
3814
+ ptz.ru
3815
+ rnd.ru
3816
+ ryazan.ru
3817
+ sakhalin.ru
3818
+ samara.ru
3819
+ saratov.ru
3820
+ simbirsk.ru
3821
+ smolensk.ru
3822
+ spb.ru
3823
+ stavropol.ru
3824
+ stv.ru
3825
+ surgut.ru
3826
+ tambov.ru
3827
+ tatarstan.ru
3828
+ tom.ru
3829
+ tomsk.ru
3830
+ tsaritsyn.ru
3831
+ tsk.ru
3832
+ tula.ru
3833
+ tuva.ru
3834
+ tver.ru
3835
+ tyumen.ru
3836
+ udm.ru
3837
+ udmurtia.ru
3838
+ ulan-ude.ru
3839
+ vladikavkaz.ru
3840
+ vladimir.ru
3841
+ vladivostok.ru
3842
+ volgograd.ru
3843
+ vologda.ru
3844
+ voronezh.ru
3845
+ vrn.ru
3846
+ vyatka.ru
3847
+ yakutia.ru
3848
+ yamal.ru
3849
+ yaroslavl.ru
3850
+ yekaterinburg.ru
3851
+ yuzhno-sakhalinsk.ru
3852
+ // More geographical domains
3853
+ amursk.ru
3854
+ baikal.ru
3855
+ cmw.ru
3856
+ fareast.ru
3857
+ jamal.ru
3858
+ kms.ru
3859
+ k-uralsk.ru
3860
+ kustanai.ru
3861
+ kuzbass.ru
3862
+ magnitka.ru
3863
+ mytis.ru
3864
+ nakhodka.ru
3865
+ nkz.ru
3866
+ norilsk.ru
3867
+ oskol.ru
3868
+ pyatigorsk.ru
3869
+ rubtsovsk.ru
3870
+ snz.ru
3871
+ syzran.ru
3872
+ vdonsk.ru
3873
+ zgrad.ru
3874
+ // State domains
3875
+ gov.ru
3876
+ mil.ru
3877
+ // Technical domains
3878
+ test.ru
3879
+
3880
+ // rw : http://www.nic.rw/cgi-bin/policy.pl
3881
+ rw
3882
+ gov.rw
3883
+ net.rw
3884
+ edu.rw
3885
+ ac.rw
3886
+ com.rw
3887
+ co.rw
3888
+ int.rw
3889
+ mil.rw
3890
+ gouv.rw
3891
+
3892
+ // sa : http://www.nic.net.sa/
3893
+ sa
3894
+ com.sa
3895
+ net.sa
3896
+ org.sa
3897
+ gov.sa
3898
+ med.sa
3899
+ pub.sa
3900
+ edu.sa
3901
+ sch.sa
3902
+
3903
+ // sb : http://www.sbnic.net.sb/
3904
+ // Submitted by registry <lee.humphries@telekom.com.sb> 2008-06-08
3905
+ sb
3906
+ com.sb
3907
+ edu.sb
3908
+ gov.sb
3909
+ net.sb
3910
+ org.sb
3911
+
3912
+ // sc : http://www.nic.sc/
3913
+ sc
3914
+ com.sc
3915
+ gov.sc
3916
+ net.sc
3917
+ org.sc
3918
+ edu.sc
3919
+
3920
+ // sd : http://www.isoc.sd/sudanic.isoc.sd/billing_pricing.htm
3921
+ // Submitted by registry <admin@isoc.sd> 2008-06-17
3922
+ sd
3923
+ com.sd
3924
+ net.sd
3925
+ org.sd
3926
+ edu.sd
3927
+ med.sd
3928
+ gov.sd
3929
+ info.sd
3930
+
3931
+ // se : http://en.wikipedia.org/wiki/.se
3932
+ // Submitted by registry <Patrik.Wallstrom@iis.se> 2008-06-24
3933
+ se
3934
+ a.se
3935
+ ac.se
3936
+ b.se
3937
+ bd.se
3938
+ brand.se
3939
+ c.se
3940
+ d.se
3941
+ e.se
3942
+ f.se
3943
+ fh.se
3944
+ fhsk.se
3945
+ fhv.se
3946
+ g.se
3947
+ h.se
3948
+ i.se
3949
+ k.se
3950
+ komforb.se
3951
+ kommunalforbund.se
3952
+ komvux.se
3953
+ l.se
3954
+ lanbib.se
3955
+ m.se
3956
+ n.se
3957
+ naturbruksgymn.se
3958
+ o.se
3959
+ org.se
3960
+ p.se
3961
+ parti.se
3962
+ pp.se
3963
+ press.se
3964
+ r.se
3965
+ s.se
3966
+ sshn.se
3967
+ t.se
3968
+ tm.se
3969
+ u.se
3970
+ w.se
3971
+ x.se
3972
+ y.se
3973
+ z.se
3974
+
3975
+ // sg : http://www.nic.net.sg/sub_policies_agreement/2ld.html
3976
+ sg
3977
+ com.sg
3978
+ net.sg
3979
+ org.sg
3980
+ gov.sg
3981
+ edu.sg
3982
+ per.sg
3983
+
3984
+ // sh : http://www.nic.sh/rules.html
3985
+ // list of 2nd level domains ?
3986
+ sh
3987
+
3988
+ // si : http://en.wikipedia.org/wiki/.si
3989
+ si
3990
+
3991
+ // sj : No registrations at this time.
3992
+ // Submitted by registry <jarle@uninett.no> 2008-06-16
3993
+
3994
+ // sk : http://en.wikipedia.org/wiki/.sk
3995
+ // list of 2nd level domains ?
3996
+ sk
3997
+
3998
+ // sl : http://www.nic.sl
3999
+ // Submitted by registry <adam@neoip.com> 2008-06-12
4000
+ sl
4001
+ com.sl
4002
+ net.sl
4003
+ edu.sl
4004
+ gov.sl
4005
+ org.sl
4006
+
4007
+ // sm : http://en.wikipedia.org/wiki/.sm
4008
+ sm
4009
+
4010
+ // sn : http://en.wikipedia.org/wiki/.sn
4011
+ sn
4012
+ art.sn
4013
+ com.sn
4014
+ edu.sn
4015
+ gouv.sn
4016
+ org.sn
4017
+ perso.sn
4018
+ univ.sn
4019
+
4020
+ // sr : http://en.wikipedia.org/wiki/.sr
4021
+ sr
4022
+
4023
+ // st : http://www.nic.st/html/policyrules/
4024
+ st
4025
+ co.st
4026
+ com.st
4027
+ consulado.st
4028
+ edu.st
4029
+ embaixada.st
4030
+ gov.st
4031
+ mil.st
4032
+ net.st
4033
+ org.st
4034
+ principe.st
4035
+ saotome.st
4036
+ store.st
4037
+
4038
+ // su : http://en.wikipedia.org/wiki/.su
4039
+ su
4040
+
4041
+ // sv : http://www.svnet.org.sv/svpolicy.html
4042
+ *.sv
4043
+
4044
+ // sy : http://en.wikipedia.org/wiki/.sy
4045
+ // see also: http://www.gobin.info/domainname/sy.doc
4046
+ sy
4047
+ edu.sy
4048
+ gov.sy
4049
+ net.sy
4050
+ mil.sy
4051
+ com.sy
4052
+ org.sy
4053
+
4054
+ // sz : http://en.wikipedia.org/wiki/.sz
4055
+ // http://www.sispa.org.sz/
4056
+ sz
4057
+ co.sz
4058
+ ac.sz
4059
+ org.sz
4060
+
4061
+ // tc : http://en.wikipedia.org/wiki/.tc
4062
+ tc
4063
+
4064
+ // td : http://en.wikipedia.org/wiki/.td
4065
+ td
4066
+
4067
+ // tel: http://en.wikipedia.org/wiki/.tel
4068
+ // http://www.telnic.org/
4069
+ tel
4070
+
4071
+ // tf : http://en.wikipedia.org/wiki/.tf
4072
+ tf
4073
+
4074
+ // tg : http://en.wikipedia.org/wiki/.tg
4075
+ // http://www.nic.tg/nictg/index.php implies no reserved 2nd-level domains,
4076
+ // although this contradicts wikipedia.
4077
+ tg
4078
+
4079
+ // th : http://en.wikipedia.org/wiki/.th
4080
+ // Submitted by registry <krit@thains.co.th> 2008-06-17
4081
+ th
4082
+ ac.th
4083
+ co.th
4084
+ go.th
4085
+ in.th
4086
+ mi.th
4087
+ net.th
4088
+ or.th
4089
+
4090
+ // tj : http://www.nic.tj/policy.htm
4091
+ tj
4092
+ ac.tj
4093
+ biz.tj
4094
+ co.tj
4095
+ com.tj
4096
+ edu.tj
4097
+ go.tj
4098
+ gov.tj
4099
+ int.tj
4100
+ mil.tj
4101
+ name.tj
4102
+ net.tj
4103
+ nic.tj
4104
+ org.tj
4105
+ test.tj
4106
+ web.tj
4107
+
4108
+ // tk : http://en.wikipedia.org/wiki/.tk
4109
+ tk
4110
+
4111
+ // tl : http://en.wikipedia.org/wiki/.tl
4112
+ tl
4113
+ gov.tl
4114
+
4115
+ // tm : http://www.nic.tm/rules.html
4116
+ // list of 2nd level tlds ?
4117
+ tm
4118
+
4119
+ // tn : http://en.wikipedia.org/wiki/.tn
4120
+ // http://whois.ati.tn/
4121
+ tn
4122
+ com.tn
4123
+ ens.tn
4124
+ fin.tn
4125
+ gov.tn
4126
+ ind.tn
4127
+ intl.tn
4128
+ nat.tn
4129
+ net.tn
4130
+ org.tn
4131
+ info.tn
4132
+ perso.tn
4133
+ tourism.tn
4134
+ edunet.tn
4135
+ rnrt.tn
4136
+ rns.tn
4137
+ rnu.tn
4138
+ mincom.tn
4139
+ agrinet.tn
4140
+ defense.tn
4141
+ turen.tn
4142
+
4143
+ // to : http://en.wikipedia.org/wiki/.to
4144
+ // Submitted by registry <egullich@colo.to> 2008-06-17
4145
+ to
4146
+ com.to
4147
+ gov.to
4148
+ net.to
4149
+ org.to
4150
+ edu.to
4151
+ mil.to
4152
+
4153
+ // tr : http://en.wikipedia.org/wiki/.tr
4154
+ *.tr
4155
+ // Used by government in the TRNC
4156
+ // http://en.wikipedia.org/wiki/.nc.tr
4157
+ gov.nc.tr
4158
+
4159
+ // travel : http://en.wikipedia.org/wiki/.travel
4160
+ travel
4161
+
4162
+ // tt : http://www.nic.tt/
4163
+ tt
4164
+ co.tt
4165
+ com.tt
4166
+ org.tt
4167
+ net.tt
4168
+ biz.tt
4169
+ info.tt
4170
+ pro.tt
4171
+ int.tt
4172
+ coop.tt
4173
+ jobs.tt
4174
+ mobi.tt
4175
+ travel.tt
4176
+ museum.tt
4177
+ aero.tt
4178
+ name.tt
4179
+ gov.tt
4180
+ edu.tt
4181
+
4182
+ // tv : http://en.wikipedia.org/wiki/.tv
4183
+ // Not listing any 2LDs as reserved since none seem to exist in practice,
4184
+ // Wikipedia notwithstanding.
4185
+ tv
4186
+
4187
+ // tw : http://en.wikipedia.org/wiki/.tw
4188
+ tw
4189
+ edu.tw
4190
+ gov.tw
4191
+ mil.tw
4192
+ com.tw
4193
+ net.tw
4194
+ org.tw
4195
+ idv.tw
4196
+ game.tw
4197
+ ebiz.tw
4198
+ club.tw
4199
+ 網路.tw
4200
+ 組織.tw
4201
+ 商業.tw
4202
+
4203
+ // tz : http://en.wikipedia.org/wiki/.tz
4204
+ // Submitted by registry <randy@psg.com> 2008-06-17
4205
+ ac.tz
4206
+ co.tz
4207
+ go.tz
4208
+ ne.tz
4209
+ or.tz
4210
+
4211
+ // ua : http://www.nic.net.ua/
4212
+ ua
4213
+ com.ua
4214
+ edu.ua
4215
+ gov.ua
4216
+ in.ua
4217
+ net.ua
4218
+ org.ua
4219
+ // ua geo-names
4220
+ cherkassy.ua
4221
+ chernigov.ua
4222
+ chernovtsy.ua
4223
+ ck.ua
4224
+ cn.ua
4225
+ crimea.ua
4226
+ cv.ua
4227
+ dn.ua
4228
+ dnepropetrovsk.ua
4229
+ donetsk.ua
4230
+ dp.ua
4231
+ if.ua
4232
+ ivano-frankivsk.ua
4233
+ kh.ua
4234
+ kharkov.ua
4235
+ kherson.ua
4236
+ khmelnitskiy.ua
4237
+ kiev.ua
4238
+ kirovograd.ua
4239
+ km.ua
4240
+ kr.ua
4241
+ ks.ua
4242
+ kv.ua
4243
+ lg.ua
4244
+ lugansk.ua
4245
+ lutsk.ua
4246
+ lviv.ua
4247
+ mk.ua
4248
+ nikolaev.ua
4249
+ od.ua
4250
+ odessa.ua
4251
+ pl.ua
4252
+ poltava.ua
4253
+ rovno.ua
4254
+ rv.ua
4255
+ sebastopol.ua
4256
+ sumy.ua
4257
+ te.ua
4258
+ ternopil.ua
4259
+ uzhgorod.ua
4260
+ vinnica.ua
4261
+ vn.ua
4262
+ zaporizhzhe.ua
4263
+ zp.ua
4264
+ zhitomir.ua
4265
+ zt.ua
4266
+
4267
+ // ug : http://www.registry.co.ug/
4268
+ ug
4269
+ co.ug
4270
+ ac.ug
4271
+ sc.ug
4272
+ go.ug
4273
+ ne.ug
4274
+ or.ug
4275
+
4276
+ // uk : http://en.wikipedia.org/wiki/.uk
4277
+ *.uk
4278
+ *.sch.uk
4279
+ !bl.uk
4280
+ !british-library.uk
4281
+ !icnet.uk
4282
+ !jet.uk
4283
+ !nel.uk
4284
+ !nhs.uk
4285
+ !nls.uk
4286
+ !national-library-scotland.uk
4287
+ !parliament.uk
4288
+
4289
+ // us : http://en.wikipedia.org/wiki/.us
4290
+ us
4291
+ dni.us
4292
+ fed.us
4293
+ isa.us
4294
+ kids.us
4295
+ nsn.us
4296
+ // us geographic names
4297
+ ak.us
4298
+ al.us
4299
+ ar.us
4300
+ as.us
4301
+ az.us
4302
+ ca.us
4303
+ co.us
4304
+ ct.us
4305
+ dc.us
4306
+ de.us
4307
+ fl.us
4308
+ ga.us
4309
+ gu.us
4310
+ hi.us
4311
+ ia.us
4312
+ id.us
4313
+ il.us
4314
+ in.us
4315
+ ks.us
4316
+ ky.us
4317
+ la.us
4318
+ ma.us
4319
+ md.us
4320
+ me.us
4321
+ mi.us
4322
+ mn.us
4323
+ mo.us
4324
+ ms.us
4325
+ mt.us
4326
+ nc.us
4327
+ nd.us
4328
+ ne.us
4329
+ nh.us
4330
+ nj.us
4331
+ nm.us
4332
+ nv.us
4333
+ ny.us
4334
+ oh.us
4335
+ ok.us
4336
+ or.us
4337
+ pa.us
4338
+ pr.us
4339
+ ri.us
4340
+ sc.us
4341
+ sd.us
4342
+ tn.us
4343
+ tx.us
4344
+ ut.us
4345
+ vi.us
4346
+ vt.us
4347
+ va.us
4348
+ wa.us
4349
+ wi.us
4350
+ wv.us
4351
+ wy.us
4352
+ // The registrar notes several more specific domains available in each state,
4353
+ // such as state.*.us, dst.*.us, etc., but resolution of these is somewhat
4354
+ // haphazard; in some states these domains resolve as addresses, while in others
4355
+ // only subdomains are avilable, or even nothing at all.
4356
+
4357
+ // uy : http://www.antel.com.uy/
4358
+ *.uy
4359
+
4360
+ // uz : http://www.reg.uz/registerr.html
4361
+ // are there other 2nd level tlds ?
4362
+ uz
4363
+ com.uz
4364
+ co.uz
4365
+
4366
+ // va : http://en.wikipedia.org/wiki/.va
4367
+ va
4368
+
4369
+ // vc : http://en.wikipedia.org/wiki/.vc
4370
+ // Submitted by registry <kshah@ca.afilias.info> 2008-06-13
4371
+ vc
4372
+ com.vc
4373
+ net.vc
4374
+ org.vc
4375
+ gov.vc
4376
+ mil.vc
4377
+ edu.vc
4378
+
4379
+ // ve : http://registro.nic.ve/nicve/registro/index.html
4380
+ *.ve
4381
+
4382
+ // vg : http://en.wikipedia.org/wiki/.vg
4383
+ vg
4384
+
4385
+ // vi : http://www.nic.vi/newdomainform.htm
4386
+ // http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
4387
+ // TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
4388
+ // are available for registration (which they do not seem to be).
4389
+ vi
4390
+ co.vi
4391
+ com.vi
4392
+ k12.vi
4393
+ net.vi
4394
+ org.vi
4395
+
4396
+ // vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
4397
+ vn
4398
+ com.vn
4399
+ net.vn
4400
+ org.vn
4401
+ edu.vn
4402
+ gov.vn
4403
+ int.vn
4404
+ ac.vn
4405
+ biz.vn
4406
+ info.vn
4407
+ name.vn
4408
+ pro.vn
4409
+ health.vn
4410
+
4411
+ // vu : http://en.wikipedia.org/wiki/.vu
4412
+ // list of 2nd level tlds ?
4413
+ vu
4414
+
4415
+ // ws : http://en.wikipedia.org/wiki/.ws
4416
+ // http://samoanic.ws/index.dhtml
4417
+ ws
4418
+ com.ws
4419
+ net.ws
4420
+ org.ws
4421
+ gov.ws
4422
+ edu.ws
4423
+
4424
+ // xn--mgbaam7a8h (UAE) : http://nic.ae/english/arabicdomain/rules.jsp
4425
+ امارات
4426
+
4427
+ // xn--mgberp4a5d4ar (Saudi Arabia) : http://www.nic.net.sa/
4428
+ السعودية
4429
+
4430
+ // xn--p1ai (Russia) : http://www.cctld.ru/en/docs/rulesrf.php
4431
+ рф
4432
+
4433
+ // xn--wgbh1c (Egypt) : http://www.dotmasr.eg/
4434
+ مصر
4435
+
4436
+ // ye : http://www.y.net.ye/services/domain_name.htm
4437
+ *.ye
4438
+
4439
+ // yu : http://www.nic.yu/pravilnik-e.html
4440
+ *.yu
4441
+
4442
+ // za : http://www.zadna.org.za/slds.html
4443
+ *.za
4444
+
4445
+ // zm : http://en.wikipedia.org/wiki/.zm
4446
+ *.zm
4447
+
4448
+ // zw : http://en.wikipedia.org/wiki/.zw
4449
+ *.zw