forked from apache/nutch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomain-suffixes.xml
4428 lines (3850 loc) · 128 KB
/
domain-suffixes.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
Document : domain-suffixes.xml
Author : Enis Soztutar - enis.soz.nutch@gmail.com
Description: This document contains top level domains
as described by the Internet Assigned Numbers
Authotiry (IANA), and second or third level domains that
are known to be managed by domain registerers. People at
Mozilla community call these public suffixes or effective
tlds. There is no algorithmic way of knowing whether a suffix
is a public domain suffix, or not. So this large file is used
for this purpose. The entries in the file is used to find the
domain of a url, which may not the same thing as the host of
the url. For example for "http://lucene.apache.org/nutch" the
hostname is lucene.apache.org, however the domain name for this
url would be apache.org. Domain names can be quite handy for
statistical analysis, and fighting against spam.
The list of TLDs is constructed from IANA, and the
list of "effective tlds" are constructed from Wikipedia,
http://wiki.mozilla.org/TLD_List, and http://publicsuffix.org/
The list may not include all the suffixes, but some
effort has been spent to make it comprehensive. Please forward
any improvements for this list to nutch-dev mailing list, or
nutch JIRA.
Top level domains(tlds) are grouped
to three, namely infrastrusture, generic and country
code tlds. Infrastrusture tlds are only used for
technical reasons. Generic tlds represents the type
of the organization that they represent. Those in
current use and those waiting for approval is listed.
Most of the country code tlds correspond to the two
letter ISO-3166-1 country codes.
Each tld is listed with its domain (such as com), a
status enumeration describing the status of the tld,
and optionally a description or description for convenience.
cctlds are listed with additional country name field.
status and boost elements are optional, with default values IN_USE
and 1.0 respectively. see domain-suffixes.xsd for the xml schema.
References :
http://www.iana.org
http://www.iana.org/gtld/gtld.htm
http://www.iana.org/root-whois/index.html
http://en.wikipedia.org/wiki/Top-level_domain
http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains
http://wiki.mozilla.org/TLD_List
http://publicsuffix.org/
https://bugzilla.mozilla.org/show_bug.cgi?id=331510
http://www.neuhaus.com/domaincheck/domain_list.htm
-->
<domains xmlns="http://lucene.apache.org/nutch"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://lucene.apache.org/nutch domain-suffixes.xsd">
<tlds>
<!-- Infrastructure Top Level Domains -->
<itlds>
<tld domain="root">
<status>INFRASTRUCTURE</status>
<description>
(from http://en.wikipedia.org/wiki/.root)
vrsn-end-of-zone-marker-dummy-record.root is a domain name
listed in the DNS root zone as a diagnostic marker, whose
presence demonstrates the root zone was not truncated upon
loading by a root nameserver. It could be argued it represents
a top-level domain of .root, although technically no such
delegation exists.
</description>
</tld>
<tld domain="arpa">
<status>INFRASTRUCTURE</status>
<description>
(from http://en.wikipedia.org/wiki/.arpa) .arpa is an Internet
top-level domain (TLD) used exclusively for
Internet-infrastructure purposes. It does not function as a
normal TLD where websites are registered, but rather as a
meta-TLD used to look up addresses, and for other purposes.
</description>
</tld>
</itlds><!-- Generic Top Level Domains -->
<gtlds>
<!--
The following gTLDs are in actual use
-->
<tld domain="aero">
<status>SPONSORED</status>
<description>for the air transport industry</description>
</tld>
<tld domain="biz">
<status>UNSPONSORED</status>
<description>for business use</description>
</tld>
<tld domain="cat">
<status>SPONSORED</status>
<description>for Catalan language/culture</description>
</tld>
<tld domain="com">
<status>UNSPONSORED</status>
<description>
for commercial organizations, but unrestricted
</description>
</tld>
<tld domain="coop">
<status>SPONSORED</status>
<description>for cooperatives</description>
</tld>
<tld domain="edu">
<status>UNSPONSORED</status>
<boost>1.0</boost>
<description>
for post-secondary educational establishments
</description>
</tld>
<tld domain="gov">
<status>UNSPONSORED</status>
<description>
for governments and their agencies in the United States
</description>
</tld>
<tld domain="info">
<status>UNSPONSORED</status>
<description>
for informational sites, but unrestricted
</description>
</tld>
<tld domain="int">
<status>UNSPONSORED</status>
<description>
for international organizations established by treaty
</description>
</tld>
<tld domain="jobs">
<status>SPONSORED</status>
<description>for employment-related sites</description>
</tld>
<tld domain="mil">
<status>UNSPONSORED</status>
<description>for the US military</description>
</tld>
<tld domain="mobi">
<status>SPONSORED</status>
<description>for sites catering to mobile devices</description>
</tld>
<tld domain="museum">
<status>SPONSORED</status>
<description>for museums</description>
</tld>
<tld domain="name">
<status>UNSPONSORED</status>
<description>for families and individuals</description>
</tld>
<tld domain="net">
<status>UNSPONSORED</status>
<description>
originally for network infrastructures, now unrestricted
</description>
</tld>
<tld domain="org">
<status>UNSPONSORED</status>
<description>
originally for organizations not clearly falling within the
other gTLDs, now unrestricted
</description>
</tld>
<tld domain="pro">
<status>SPONSORED</status>
<description>for certain professions</description>
</tld>
<tld domain="travel">
<status>SPONSORED</status>
<description>
for travel agents, airlines, hoteliers, tourism bureaus, etc.
</description>
</tld>
<!--
The following gTLDs are in the process of being approved,
and may be added to the root nameservers in the near future
-->
<tld domain="asia">
<status>STARTUP</status>
<description>for the Asian community</description>
</tld>
<tld domain="post">
<status>PROPOSED</status>
<description>for postal services</description>
</tld>
<tld domain="tel">
<status>STARTUP</status>
<description>
for services involving connections between the telephone
network and the Internet
</description>
</tld>
<tld domain="geo">
<status>PROPOSED</status>
<description>for geographically related sites</description>
</tld>
<tld domain="gal">
<status>PROPOSED</status>
<description>for Galicia, a country within Spain</description>
</tld>
<tld domain="cym">
<status>PROPOSED</status>
<description>for Wales, a country within the UK</description>
</tld>
<tld domain="sco">
<status>PROPOSED</status>
<description>for Scotland, a country within the UK</description>
</tld>
<tld domain="kid">
<status>PROPOSED</status>
<description>for websites designed for children</description>
</tld>
<tld domain="kids">
<status>PROPOSED</status>
<description>for websites designed for children</description>
</tld>
<tld domain="mail">
<status>PROPOSED</status>
<description>http://en.wikipedia.org/wiki/.mail</description>
</tld>
<tld domain="web">
<status>PROPOSED</status>
<description>For Web sites of all sorts</description>
</tld>
<tld domain="xxx">
<status>PROPOSED</status>
<description>For Adult entertainment sites</description>
</tld>
<!--
The following gTLDs are removed from the registry
-->
<tld domain="nato">
<status>DELETED</status>
<description>
for NATO sites and operations. Replaced by .int
</description>
</tld>
<!--
The following gTLDs are PSEUDO_DOMAINs
-->
<tld domain="bitnet">
<status>PSEUDO_DOMAIN</status>
<description>
identifying a hostname not connected directly to the Internet,
but a bitnet network
</description>
</tld>
<tld domain="csnet">
<status>PSEUDO_DOMAIN</status>
<description>
identifying a hostname not connected directly to the Internet,
but a csnet network
</description>
</tld>
<tld domain="uucp">
<status>PSEUDO_DOMAIN</status>
<description>
identifying a hostname not connected directly to the Internet,
but a bitnet network
</description>
</tld>
<tld domain="local">
<status>PSEUDO_DOMAIN</status>
<description>
.local is a pseudo top-level domain used by Apple, Inc.'s
Bonjour protocol.
</description>
</tld>
<tld domain="internal">
<status>PSEUDO_DOMAIN</status>
<description>alias of .local</description>
</tld>
<tld domain="onion">
<status>PSEUDO_DOMAIN</status>
<description>
designates an anonymous or pseudonymous address reachable via
the Tor network.
</description>
</tld>
</gtlds><!-- Country Code Top Level Domains -->
<cctlds>
<tld domain="ac">
<country>Ascension Island</country>
</tld>
<tld domain="ad">
<country>Andorra</country>
</tld>
<tld domain="ae">
<country>United Arab Emirates</country>
</tld>
<tld domain="af">
<country>Afghanistan</country>
</tld>
<tld domain="ag">
<country>Antigua and Barbuda</country>
</tld>
<tld domain="ai">
<country>Anguilla</country>
</tld>
<tld domain="al">
<country>Albania</country>
</tld>
<tld domain="am">
<country>Armenia</country>
</tld>
<tld domain="an">
<country>Netherlands Antilles</country>
</tld>
<tld domain="ao">
<country>Angola</country>
</tld>
<tld domain="aq">
<country>Antarctica</country>
</tld>
<tld domain="ar">
<country>Argentina</country>
</tld>
<tld domain="as">
<country>American Samoa</country>
</tld>
<tld domain="at">
<country>Austria</country>
</tld>
<tld domain="au">
<country>Australia</country>
</tld>
<tld domain="aw">
<country>Aruba</country>
</tld>
<tld domain="ax">
<country>Aland Islands</country>
</tld>
<tld domain="az">
<country>Azerbaijan</country>
</tld>
<tld domain="ba">
<country>Bosnia and Herzegovina</country>
</tld>
<tld domain="bb">
<country>Barbados</country>
</tld>
<tld domain="bd">
<country>Bangladesh</country>
</tld>
<tld domain="be">
<country>Belgium</country>
</tld>
<tld domain="bf">
<country>Burkina Faso</country>
</tld>
<tld domain="bg">
<country>Bulgaria</country>
</tld>
<tld domain="bh">
<country>Bahrain</country>
</tld>
<tld domain="bi">
<country>Burundi</country>
</tld>
<tld domain="bj">
<country>Benin</country>
</tld>
<tld domain="bm">
<country>Bermuda</country>
</tld>
<tld domain="bn">
<country>Brunei</country>
</tld>
<tld domain="bo">
<country>Bolivia</country>
</tld>
<tld domain="br">
<country>Brazil</country>
</tld>
<tld domain="bs">
<country>Bahamas</country>
</tld>
<tld domain="bt">
<country>Bhutan</country>
</tld>
<tld domain="bu">
<country>Burma</country>
<status>NOT_IN_USE</status>
<description>
not in use since re-naming of country to Myanmar, see .mm
</description>
</tld>
<tld domain="bv">
<country>Bouvet Island</country>
<status>NOT_IN_USE</status>
<description>not in use; no registrations</description>
</tld>
<tld domain="bw">
<country>Botswana</country>
</tld>
<tld domain="by">
<country>Belarus</country>
</tld>
<tld domain="bz">
<country>Belize</country>
</tld>
<tld domain="ca">
<country>Canada</country>
</tld>
<tld domain="cc">
<country>Cocos Keeling Islands</country>
</tld>
<tld domain="cd">
<country>Democratic Republic of the Congo</country>
<description>formerly .zr - Zaire</description>
</tld>
<tld domain="cf">
<country>Central African Republic</country>
</tld>
<tld domain="cg">
<country>Republic of the Congo</country>
</tld>
<tld domain="ch">
<country>Switzerland</country>
</tld>
<tld domain="ci">
<country>Côte d'Ivoire</country>
<description>Ivory Coast</description>
</tld>
<tld domain="ck">
<country>Cook Islands</country>
</tld>
<tld domain="cl">
<country>Chile</country>
</tld>
<tld domain="cm">
<country>Cameroon</country>
</tld>
<tld domain="cn">
<country>People s Republic of China</country>
</tld>
<tld domain="co">
<country>Colombia</country>
</tld>
<tld domain="cr">
<country>Costa Rica</country>
</tld>
<tld domain="cs">
<country>Serbia and Montenegro</country>
<status>DELETED</status>
<description>
formerly .yu - Yugoslavia; description: on June 3, 2006,
Montenegro declared independence, thus dissolving the state
union) (.cs code not assigned; no DNS) (.cs code previously
used for Czechoslovakia
</description>
</tld>
<tld domain="cu">
<country>Cuba</country>
</tld>
<tld domain="cv">
<country>Cape Verde</country>
</tld>
<tld domain="cx">
<country>Christmas Island</country>
</tld>
<tld domain="cy">
<country>Cyprus</country>
</tld>
<tld domain="cz">
<country>Czech Republic</country>
</tld>
<tld domain="dd">
<country>German Democratic Republic(East Germany)</country>
<status>DELETED</status>
<description>deleted in 1990</description>
</tld>
<tld domain="de">
<country>Germany</country>
</tld>
<tld domain="dj">
<country>Djibouti</country>
</tld>
<tld domain="dk">
<country>Denmark</country>
</tld>
<tld domain="dm">
<country>Dominica</country>
</tld>
<tld domain="do">
<country>Dominican Republic</country>
</tld>
<tld domain="dz">
<country>Algeria</country>
</tld>
<tld domain="ec">
<country>Ecuador</country>
</tld>
<tld domain="ee">
<country>Estonia</country>
</tld>
<tld domain="eg">
<country>Egypt</country>
</tld>
<tld domain="eh">
<country>Western Sahara</country>
<status>NOT_IN_USE</status>
<description>not assigned; no DNS</description>
</tld>
<tld domain="er">
<country>Eritrea</country>
</tld>
<tld domain="es">
<country>Spain</country>
</tld>
<tld domain="et">
<country>Ethiopia</country>
</tld>
<tld domain="eu">
<country>European Union</country>
<description>
code "exceptionally reserved" by ISO 3166-1
</description>
</tld>
<tld domain="fi">
<country>Finland</country>
</tld>
<tld domain="fj">
<country>Fiji</country>
</tld>
<tld domain="fk">
<country>Falkland Islands</country>
</tld>
<tld domain="fm">
<country>Federated States of Micronesia</country>
</tld>
<tld domain="fo">
<country>Faroe Islands</country>
</tld>
<tld domain="fr">
<country>France</country>
</tld>
<tld domain="ga">
<country>Gabon</country>
</tld>
<tld domain="gb">
<country>United Kingdom</country>
<description>
Reserved domain by IANA; deprecated – see .uk
</description>
</tld>
<tld domain="gd">
<country>Grenada</country>
</tld>
<tld domain="ge">
<country>Georgia</country>
</tld>
<tld domain="gf">
<country>French Guiana</country>
</tld>
<tld domain="gg">
<country>Guernsey</country>
</tld>
<tld domain="gh">
<country>Ghana</country>
</tld>
<tld domain="gi">
<country>Gibraltar</country>
</tld>
<tld domain="gl">
<country>Greenland</country>
</tld>
<tld domain="gm">
<country>Gambia</country>
</tld>
<tld domain="gn">
<country>Guinea</country>
</tld>
<tld domain="gp">
<country>Guadeloupe</country>
</tld>
<tld domain="gq">
<country>Equatorial Guinea</country>
</tld>
<tld domain="gr">
<country>Greece</country>
</tld>
<tld domain="gs">
<country>South Georgia and the South Sandwich Islands</country>
</tld>
<tld domain="gt">
<country>Guatemala</country>
</tld>
<tld domain="gu">
<country>Guam</country>
</tld>
<tld domain="gw">
<country>Guinea Bissau</country>
</tld>
<tld domain="gy">
<country>Guyana</country>
</tld>
<tld domain="hk">
<country>Hong Kong</country>
</tld>
<tld domain="hm">
<country>Heard Island and McDonald Islands</country>
</tld>
<tld domain="hn">
<country>Honduras</country>
</tld>
<tld domain="hr">
<country>Croatia</country>
</tld>
<tld domain="ht">
<country>Haiti</country>
</tld>
<tld domain="hu">
<country>Hungary</country>
</tld>
<tld domain="id">
<country>Indonesia</country>
</tld>
<tld domain="ie">
<country>Ireland</country>
</tld>
<tld domain="il">
<country>Israel</country>
</tld>
<tld domain="im">
<country>Isle of Man</country>
</tld>
<tld domain="in">
<country>India</country>
</tld>
<tld domain="io">
<country>British Indian Ocean Territory</country>
</tld>
<tld domain="iq">
<country>Iraq</country>
</tld>
<tld domain="ir">
<country>Iran</country>
</tld>
<tld domain="is">
<country>Iceland</country>
</tld>
<tld domain="it">
<country>Italy</country>
</tld>
<tld domain="je">
<country>Jersey</country>
</tld>
<tld domain="jm">
<country>Jamaica</country>
</tld>
<tld domain="jo">
<country>Jordan</country>
</tld>
<tld domain="jp">
<country>Japan</country>
</tld>
<tld domain="ke">
<country>Kenya</country>
</tld>
<tld domain="kg">
<country>Kyrgyzstan</country>
</tld>
<tld domain="kh">
<country>Cambodia</country>
</tld>
<tld domain="ki">
<country>Kiribati</country>
</tld>
<tld domain="km">
<country>Comoros</country>
</tld>
<tld domain="kn">
<country>Saint Kitts and Nevis</country>
</tld>
<tld domain="kp">
<country>North Korea</country>
<status>NOT_IN_USE</status>
<description>not assigned; no DNS</description>
</tld>
<tld domain="kr">
<country>South Korea</country>
</tld>
<tld domain="kw">
<country>Kuwait</country>
</tld>
<tld domain="ky">
<country>Cayman Islands</country>
</tld>
<tld domain="kz">
<country>Kazakhstan</country>
</tld>
<tld domain="la">
<country>Laos</country>
</tld>
<tld domain="lb">
<country>Lebanon</country>
</tld>
<tld domain="lc">
<country>Saint Lucia</country>
</tld>
<tld domain="li">
<country>Liechtenstein</country>
</tld>
<tld domain="lk">
<country>Sri Lanka</country>
</tld>
<tld domain="lr">
<country>Liberia</country>
</tld>
<tld domain="ls">
<country>Lesotho</country>
</tld>
<tld domain="lt">
<country>Lithuania</country>
</tld>
<tld domain="lu">
<country>Luxembourg</country>
</tld>
<tld domain="lv">
<country>Latvia</country>
</tld>
<tld domain="ly">
<country>Libya</country>
</tld>
<tld domain="ma">
<country>Morocco</country>
</tld>
<tld domain="mc">
<country>Monaco</country>
</tld>
<tld domain="md">
<country>Moldova</country>
</tld>
<tld domain="me">
<country>Montenegro</country>
</tld>
<tld domain="mg">
<country>Madagascar</country>
</tld>
<tld domain="mh">
<country>Marshall Islands</country>
</tld>
<tld domain="mk">
<country>Republic of Macedonia</country>
</tld>
<tld domain="ml">
<country>Mali</country>
</tld>
<tld domain="mm">
<country>Myanmar</country>
<description>formerly .bu - Burma</description>
</tld>
<tld domain="mn">
<country>Mongolia</country>
</tld>
<tld domain="mo">
<country>Macau</country>
</tld>
<tld domain="mp">
<country>Northern Mariana Islands</country>
</tld>
<tld domain="mq">
<country>Martinique</country>
</tld>
<tld domain="mr">
<country>Mauritania</country>
</tld>
<tld domain="ms">
<country>Montserrat</country>
</tld>
<tld domain="mt">
<country>Malta</country>
</tld>
<tld domain="mu">
<country>Mauritius</country>
</tld>
<tld domain="mv">
<country>Maldives</country>
</tld>