1package Net::Domain::TLD;
2use strict;
3use base qw( Exporter );
4use 5.006;
5our @EXPORT_OK = qw( tlds tld_exists %tld_profile );
6our $VERSION = '1.75';
7
8use warnings;
9use Carp;
10use Storable qw ( dclone );
11
12use constant TLD_TYPES => qw ( new_open new_restricted gtld_open gtld_restricted gtld_new cc ccidn );
13
14=head1 NAME
15
16  Net::Domain::TLD - Work with TLD names
17
18=head1 SYNOPSIS
19
20  use Net::Domain::TLD qw(tlds tld_exists);
21  my @ccTLDs = tlds('cc');
22  print "TLD ok\n" if tld_exists('ac','cc');
23
24=head1 DESCRIPTION
25
26  The purpose of this module is to provide user with current list of
27  available top level domain names including new ICANN additions and ccTLDs
28  Currently TLD definitions have been acquired from the following sources:
29
30  http://www.icann.org/tlds/
31  http://www.dnso.org/constituency/gtld/gtld.html
32  http://www.iana.org/cctld/cctld-whois.htm
33  https://www.iana.org/domains/root/db
34
35=cut
36
37my %tld_profile = (
38  reserved => {
39    test => q{DNS testing names},
40    example => q{Documentation names},
41    invalid => q{Invalid names},
42    localhost => q{Loopback names}
43  },
44  new_open => {
45    info => q{Unrestricted use},
46    xxx => q{sponsored top-level domain}
47  },
48  new_restricted => {
49    aero => q{Air-transport industry},
50    asia => q{Companies, organisations and individuals in the Asia-Pacific region},
51    arpa => q{Address and Routing Parameter Area},
52    biz => q{Businesses},
53    cat => q{Catalan linguistic and cultural community},
54    coop => q{Cooperatives},
55    jobs => q{Human Resource Management},
56    mobi => q{Mobile},
57    museum => q{Museums},
58    name => q{For registration by individuals},
59    post => q{Universal Postal Union},
60    pro => q{Accountants, lawyers, and physicians},
61    travel => q{Travel industry},
62    tel => q{For businesses and individuals to publish contact data}
63  },
64  gtld_open => {
65    com => q{Commercial organization},
66    net => q{Network connection services provider},
67    org => q{Non-profit organizations and industry standard groups}
68  },
69  gtld_restricted => {
70    gov => q{United States Government},
71    mil => q{United States Military},
72    edu => q{Educational institution},
73    int => q{International treaties/databases},
74  },
75  cc => {
76    ac => q{Ascension Island},
77    ad => q{Andorra},
78    ae => q{United Arab Emirates},
79    af => q{Afghanistan},
80    ag => q{Antigua and Barbuda},
81    ai => q{Anguilla},
82    al => q{Albania},
83    am => q{Armenia},
84    an => q{Netherlands Antilles},
85    ao => q{Angola},
86    aq => q{Antartica},
87    ar => q{Argentina},
88    as => q{American Samoa},
89    at => q{Austria},
90    au => q{Australia},
91    aw => q{Aruba},
92    ax => q(Aland Islands),
93    az => q{Azerbaijan},
94    ba => q{Bosnia and Herzegovina},
95    bb => q{Barbados},
96    bd => q{Bangladesh},
97    be => q{Belgium},
98    bf => q{Burkina Faso},
99    bg => q{Bulgaria},
100    bh => q{Bahrain},
101    bi => q{Burundi},
102    bj => q{Benin},
103    bl => q(Saint Barthelemy),
104    bm => q{Bermuda},
105    bn => q{Brunei Darussalam},
106    bo => q{Bolivia},
107    bq => q{Not assigned},
108    br => q{Brazil},
109    bs => q{Bahamas},
110    bt => q{Bhutan},
111    bv => q{Bouvet Island},
112    bw => q{Botswana},
113    by => q{Belarus},
114    bz => q{Belize},
115    ca => q{Canada},
116    cc => q{Cocos (Keeling) Islands},
117    cd => q{Congo, Democratic Republic of the},
118    cf => q{Central African Republic},
119    cg => q{Congo, Republic of},
120    ch => q{Switzerland},
121    ci => q{Cote d'Ivoire},
122    ck => q{Cook Islands},
123    cl => q{Chile},
124    cm => q{Cameroon},
125    cn => q{China},
126    co => q{Colombia},
127    cr => q{Costa Rica},
128    cu => q{Cuba},
129    cv => q{Cap Verde},
130    cw => q{University of the Netherlands Antilles},
131    cx => q{Christmas Island},
132    cy => q{Cyprus},
133    cz => q{Czech Republic},
134    de => q{Germany},
135    dj => q{Djibouti},
136    dk => q{Denmark},
137    dm => q{Dominica},
138    do => q{Dominican Republic},
139    dz => q{Algeria},
140    ec => q{Ecuador},
141    ee => q{Estonia},
142    eg => q{Egypt},
143    eh => q{Western Sahara},
144    er => q{Eritrea},
145    es => q{Spain},
146    et => q{Ethiopia},
147    eu => q{European Union},
148    fi => q{Finland},
149    fj => q{Fiji},
150    fk => q{Falkland Islands (Malvina)},
151    fm => q{Micronesia, Federal State of},
152    fo => q{Faroe Islands},
153    fr => q{France},
154    ga => q{Gabon},
155    gb => q{United Kingdom},
156    gd => q{Grenada},
157    ge => q{Georgia},
158    gf => q{French Guiana},
159    gg => q{Guernsey},
160    gh => q{Ghana},
161    gi => q{Gibraltar},
162    gl => q{Greenland},
163    gm => q{Gambia},
164    gn => q{Guinea},
165    gp => q{Guadeloupe},
166    gq => q{Equatorial Guinea},
167    gr => q{Greece},
168    gs => q{South Georgia and the South Sandwich Islands},
169    gt => q{Guatemala},
170    gu => q{Guam},
171    gw => q{Guinea-Bissau},
172    gy => q{Guyana},
173    hk => q{Hong Kong},
174    hm => q{Heard and McDonald Islands},
175    hn => q{Honduras},
176    hr => q{Croatia/Hrvatska},
177    ht => q{Haiti},
178    hu => q{Hungary},
179    id => q{Indonesia},
180    ie => q{Ireland},
181    il => q{Israel},
182    im => q{Isle of Man},
183    in => q{India},
184    io => q{British Indian Ocean Territory},
185    iq => q{Iraq},
186    ir => q{Iran (Islamic Republic of)},
187    is => q{Iceland},
188    it => q{Italy},
189    je => q{Jersey},
190    jm => q{Jamaica},
191    jo => q{Jordan},
192    jp => q{Japan},
193    ke => q{Kenya},
194    kg => q{Kyrgyzstan},
195    kh => q{Cambodia},
196    ki => q{Kiribati},
197    km => q{Comoros},
198    kn => q{Saint Kitts and Nevis},
199    kp => q{Korea, Democratic People's Republic},
200    kr => q{Korea, Republic of},
201    kw => q{Kuwait},
202    ky => q{Cayman Islands},
203    kz => q{Kazakhstan},
204    la => q{Lao People's Democratic Republic},
205    lb => q{Lebanon},
206    lc => q{Saint Lucia},
207    li => q{Liechtenstein},
208    lk => q{Sri Lanka},
209    lr => q{Liberia},
210    ls => q{Lesotho},
211    lt => q{Lithuania},
212    lu => q{Luxembourg},
213    lv => q{Latvia},
214    ly => q{Libyan Arab Jamahiriya},
215    ma => q{Morocco},
216    mc => q{Monaco},
217    md => q{Moldova, Republic of},
218    me => q(Montenegro),
219    mf => q{Saint Martin (French part)},
220    mg => q{Madagascar},
221    mh => q{Marshall Islands},
222    mk => q{Macedonia, Former Yugoslav Republic},
223    ml => q{Mali},
224    mm => q{Myanmar},
225    mn => q{Mongolia},
226    mo => q{Macau},
227    mp => q{Northern Mariana Islands},
228    mq => q{Martinique},
229    mr => q{Mauritania},
230    ms => q{Montserrat},
231    mt => q{Malta},
232    mu => q{Mauritius},
233    mv => q{Maldives},
234    mw => q{Malawi},
235    mx => q{Mexico},
236    my => q{Malaysia},
237    mz => q{Mozambique},
238    na => q{Namibia},
239    nc => q{New Caledonia},
240    ne => q{Niger},
241    nf => q{Norfolk Island},
242    ng => q{Nigeria},
243    ni => q{Nicaragua},
244    nl => q{Netherlands},
245    no => q{Norway},
246    np => q{Nepal},
247    nr => q{Nauru},
248    nu => q{Niue},
249    nz => q{New Zealand},
250    om => q{Oman},
251    pa => q{Panama},
252    pe => q{Peru},
253    pf => q{French Polynesia},
254    pg => q{Papua New Guinea},
255    ph => q{Philippines},
256    pk => q{Pakistan},
257    pl => q{Poland},
258    pm => q{St. Pierre and Miquelon},
259    pn => q{Pitcairn Island},
260    pr => q{Puerto Rico},
261    ps => q{Palestinian Territories},
262    pt => q{Portugal},
263    pw => q{Palau},
264    py => q{Paraguay},
265    qa => q{Qatar},
266    re => q{Reunion Island},
267    ro => q{Romania},
268    rs => q(Serbia),
269    ru => q{Russian Federation},
270    rw => q{Rwanda},
271    sa => q{Saudi Arabia},
272    sb => q{Solomon Islands},
273    sc => q{Seychelles},
274    sd => q{Sudan},
275    se => q{Sweden},
276    sg => q{Singapore},
277    sh => q{St. Helena},
278    si => q{Slovenia},
279    sj => q{Svalbard and Jan Mayen Islands},
280    sk => q{Slovak Republic},
281    sl => q{Sierra Leone},
282    sm => q{San Marino},
283    sn => q{Senegal},
284    so => q{Somalia},
285    sr => q{Suriname},
286    ss => q{Not assigned},
287    st => q{Sao Tome and Principe},
288    su => q{Soviet Union},
289    sv => q{El Salvador},
290    sx => q{SX Registry SA B.V.},
291    sy => q{Syrian Arab Republic},
292    sz => q{Swaziland},
293    tc => q{Turks and Caicos Islands},
294    td => q{Chad},
295    tf => q{French Southern Territories},
296    tg => q{Togo},
297    th => q{Thailand},
298    tj => q{Tajikistan},
299    tk => q{Tokelau},
300    tl => q{Timor-Leste},
301    tm => q{Turkmenistan},
302    tn => q{Tunisia},
303    to => q{Tonga},
304    tp => q{East Timor},
305    tr => q{Turkey},
306    tt => q{Trinidad and Tobago},
307    tv => q{Tuvalu},
308    tw => q{Taiwan},
309    tz => q{Tanzania},
310    ua => q{Ukraine},
311    ug => q{Uganda},
312    uk => q{United Kingdom},
313    um => q{US Minor Outlying Islands},
314    us => q{United States},
315    uy => q{Uruguay},
316    uz => q{Uzbekistan},
317    va => q{Holy See (City Vatican State)},
318    vc => q{Saint Vincent and the Grenadines},
319    ve => q{Venezuela},
320    vg => q{Virgin Islands (British)},
321    vi => q{Virgin Islands (USA)},
322    vn => q{Vietnam},
323    vu => q{Vanuatu},
324    wf => q{Wallis and Futuna Islands},
325    ws => q{Western Samoa},
326    ye => q{Yemen},
327    yt => q{Mayotte},
328    yu => q{Yugoslavia},
329    za => q{South Africa},
330    zm => q{Zambia},
331    zw => q{Zimbabwe}
332  },
333  ccidn => {
334    'xn--0zwm56d' => q{Internet Assigned Numbers Authority},
335    'xn--11b5bs3a9aj6g' => q{Internet Assigned Numbers Authority},
336    'xn--1qqw23a' => q{Guangzhou YU Wei Information Technology Co., Ltd.},
337    'xn--3bst00m' => q{Eagle Horizon Limited},
338    'xn--3ds443g' => q{TLD REGISTRY LIMITED},
339    'xn--3e0b707e' => q{KISA (Korea Internet & Security Agency)},
340    'xn--45brj9c' => q{National Internet Exchange of India},
341    'xn--45q11c' => q{Zodiac Scorpio Limited},
342    'xn--4gbrim' => q{Suhub Electronic Establishment},
343    'xn--54b7fta0cc' => q{Not assigned},
344    'xn--55qw42g' => q{China Organizational Name Administration Center},
345    'xn--55qx5d' => q{Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)},
346    'xn--6frz82g' => q{Afilias Limited},
347    'xn--6qq986b3xl' => q{Tycoon Treasure Limited},
348    'xn--80adxhks' => q{Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)},
349    'xn--80akhbyknj4f' => q{Internet Assigned Numbers Authority},
350    'xn--80ao21a' => q{Association of IT Companies of Kazakhstan},
351    'xn--80asehdb' => q{CORE Association},
352    'xn--80aswg' => q{CORE Association},
353    'xn--90a3ac' => q{Serbian National Internet Domain Registry (RNIDS)},
354    'xn--90ais' => q{Not assigned},
355    'xn--9t4b11yi5a' => q{Internet Assigned Numbers Authority},
356    'xn--b4w605ferd' => q{Temasek Holdings (Private) Limited},
357    'xn--c1avg' => q{Public Interest Registry},
358    'xn--cg4bki' => q{SAMSUNG SDS CO., LTD},
359    'xn--clchc0ea0b2g2a9gcd' => q{Singapore Network Information Centre (SGNIC) Pte Ltd},
360    'xn--czr694b' => q{HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED},
361    'xn--czrs0t' => q{Wild Island, LLC},
362    'xn--czru2d' => q{Zodiac Aquarius Limited},
363    'xn--d1acj3b' => q{The Foundation for Network Initiatives “The Smart Internet”},
364    'xn--d1alf' => q{Macedonian Academic Research Network Skopje},
365    'xn--deba0ad' => q{Internet Assigned Numbers Authority},
366    'xn--fiq228c5hs' => q{TLD REGISTRY LIMITED},
367    'xn--fiq64b' => q{CITIC Group Corporation},
368    'xn--fiqs8s' => q{China Internet Network Information Center},
369    'xn--fiqz9s' => q{China Internet Network Information Center},
370    'xn--flw351e' => q{Charleston Road Registry Inc.},
371    'xn--fpcrj9c3d' => q{National Internet Exchange of India},
372    'xn--fzc2c9e2c' => q{LK Domain Registry},
373    'xn--g6w251d' => q{Internet Assigned Numbers Authority},
374    'xn--gecrj9c' => q{National Internet Exchange of India},
375    'xn--h2brj9c' => q{National Internet Exchange of India},
376    'xn--hgbk6aj7f53bba' => q{Internet Assigned Numbers Authority},
377    'xn--hlcj6aya9esc7a' => q{Internet Assigned Numbers Authority},
378    'xn--hxt814e' => q{Zodiac Libra Limited},
379    'xn--i1b6b1a6a2e' => q{Public Interest Registry},
380    'xn--io0a7i' => q{Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)},
381    'xn--j1amh' => q{Ukrainian Network Information Centre (UANIC), Inc.},
382    'xn--j6w193g' => q{Hong Kong Internet Registration Corporation Ltd.},
383    'xn--jxalpdlp' => q{Internet Assigned Numbers Authority},
384    'xn--kgbechtv' => q{Internet Assigned Numbers Authority},
385    'xn--kprw13d' => q{Taiwan Network Information Center (TWNIC)},
386    'xn--kpry57d' => q{Taiwan Network Information Center (TWNIC)},
387    'xn--kput3i' => q{Beijing RITT-Net Technology Development Co., Ltd},
388    'xn--l1acc' => q{Datacom Co.,Ltd},
389    'xn--lgbbat1ad8j' => q{CERIST},
390    'xn--mgb9awbf' => q{Telecommunications Regulatory Authority (TRA)},
391    'xn--mgba3a4f16a' => q{Institute for Research in Fundamental Sciences (IPM)},
392    'xn--mgbaam7a8h' => q{Telecommunications Regulatory Authority (TRA)},
393    'xn--mgbab2bd' => q{CORE Association},
394    'xn--mgbai9azgqp6j' => q{Not assigned},
395    'xn--mgbayh7gpa' => q{National Information Technology Center (NITC)},
396    'xn--mgbbh1a71e' => q{National Internet Exchange of India},
397    'xn--mgbc0a9azcg' => q{Agence Nationale de R�glementation des T�l�communications (ANRT)},
398    'xn--mgberp4a5d4ar' => q{Communications and Information Technology Commission},
399    'xn--mgbpl2fh' => q{Not assigned},
400    'xn--mgbtx2b' => q{Not assigned},
401    'xn--mgbx4cd0ab' => q{MYNIC Berhad},
402    'xn--ngbc5azd' => q{International Domain Registry Pty. Ltd.},
403    'xn--node' => q{Information Technologies Development Center (ITDC)},
404    'xn--nqv7f' => q{Public Interest Registry},
405    'xn--nqv7fs00ema' => q{Public Interest Registry},
406    'xn--o3cw4h' => q{Thai Network Information Center Foundation},
407    'xn--ogbpf8fl' => q{National Agency for Network Services (NANS)},
408    'xn--p1acf' => q{Rusnames Limited},
409    'xn--p1ai' => q{Coordination Center for TLD RU},
410    'xn--pgbs0dh' => q{Agence Tunisienne d'Internet},
411    'xn--q9jyb4c' => q{Charleston Road Registry Inc.},
412    'xn--qcka1pmc' => q{Charleston Road Registry Inc.},
413    'xn--rhqv96g' => q{Stable Tone Limited},
414    'xn--s9brj9c' => q{National Internet Exchange of India},
415    'xn--ses554g' => q{KNET Co., Ltd},
416    'xn--unup4y' => q{Spring Fields, LLC},
417    'xn--vermgensberater-ctb' => q{Deutsche Verm�gensberatung Aktiengesellschaft DVAG},
418    'xn--vermgensberatung-pwb' => q{Deutsche Verm�gensberatung Aktiengesellschaft DVAG},
419    'xn--vhquv' => q{Dash McCook, LLC},
420    'xn--wgbh1c' => q{National Telecommunication Regulatory Authority - NTRA},
421    'xn--wgbl6a' => q{Communications Regulatory Authority},
422    'xn--xhq521b' => q{Guangzhou YU Wei Information Technology Co., Ltd.},
423    'xn--xkc2al3hye2a' => q{LK Domain Registry},
424    'xn--xkc2dl3a5ee0h' => q{National Internet Exchange of India},
425    'xn--y9a3aq' => q{Not assigned},
426    'xn--yfro4i67o' => q{Singapore Network Information Centre (SGNIC) Pte Ltd},
427    'xn--ygbi2ammx' => q{Ministry of Telecom & Information Technology (MTIT)},
428    'xn--zckzah' => q{Internet Assigned Numbers Authority},
429    'xn--zfr164b' => q{China Organizational Name Administration Center},
430  },
431  gtld_new => {
432    '‏טעסט‎' => q{Internet Assigned Numbers Authority},
433    '‏קום‎' => q{VeriSign Sarl},
434    '‏آزمایشی‎' => q{Internet Assigned Numbers Authority},
435    '‏إختبار‎' => q{Internet Assigned Numbers Authority},
436    '‏ابوظبي‎' => q{Abu Dhabi Systems and Information Centre},
437    '‏ارامكو‎' => q{Aramco Services Company},
438    '‏الاردن‎' => q{National Information Technology Center (NITC)},
439    '‏الجزائر‎' => q{CERIST},
440    '‏السعودية‎' => q{Communications and Information Technology Commission},
441    '‏العليان‎' => q{Crescent Holding GmbH},
442    '‏المغرب‎' => q{Agence Nationale de Réglementation des Télécommunications (ANRT)},
443    '‏امارات‎' => q{Telecommunications Regulatory Authority (TRA)},
444    '‏ایران‎' => q{Institute for Research in Fundamental Sciences (IPM)},
445    '‏بارت‎' => q{Not assigned},
446    '‏بازار‎' => q{CORE Association},
447    '‏بيتك‎' => q{Kuwait Finance House},
448    '‏بھارت‎' => q{National Internet Exchange of India},
449    '‏تونس‎' => q{Agence Tunisienne d'Internet},
450    '‏سودان‎' => q{Sudan Internet Society},
451    '‏سورية‎' => q{National Agency for Network Services (NANS)},
452    '‏شبكة‎' => q{International Domain Registry Pty. Ltd.},
453    '‏عراق‎' => q{Communications and Media Commission (CMC)},
454    '‏عمان‎' => q{Telecommunications Regulatory Authority (TRA)},
455    '‏فلسطين‎' => q{Ministry of Telecom & Information Technology (MTIT)},
456    '‏قطر‎' => q{Communications Regulatory Authority},
457    '‏كوم‎' => q{VeriSign Sarl},
458    '‏مصر‎' => q{National Telecommunication Regulatory Authority - NTRA},
459    '‏مليسيا‎' => q{MYNIC Berhad},
460    '‏موبايلي‎' => q{GreenTech Consultancy Company W.L.L.},
461    '‏موقع‎' => q{Suhub Electronic Establishment},
462    '‏همراه‎' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.},
463    '‏پاکستان‎' => q{Not assigned},
464    '‏ڀارت‎' => q{Not assigned},
465    'aaa' => q{American Automobile Association, Inc.},
466    'aarp' => q{AARP},
467    'abarth' => q{Fiat Chrysler Automobiles N.V.},
468    'abb' => q{ABB Ltd},
469    'abbott' => q{Abbott Laboratories, Inc.},
470    'abbvie' => q{AbbVie Inc.},
471    'abc' => q{Disney Enterprises, Inc.},
472    'able' => q{Able Inc.},
473    'abogado' => q{Top Level Domain Holdings Limited},
474    'abudhabi' => q{Abu Dhabi Systems and Information Centre},
475    'ac' => q{Network Information Center (AC Domain Registry) - c/o Cable and Wireless (Ascension Island)},
476    'academy' => q{Half Oaks, LLC},
477    'accenture' => q{Accenture plc},
478    'accountant' => q{dot Accountant Limited},
479    'accountants' => q{Knob Town, LLC},
480    'aco' => q{ACO Severin Ahlmann GmbH & Co. KG},
481    'active' => q{The Active Network, Inc},
482    'actor' => q{United TLD Holdco Ltd.},
483    'ad' => q{Andorra Telecom},
484    'adac' => q{Allgemeiner Deutscher Automobil-Club e.V. (ADAC)},
485    'ads' => q{Charleston Road Registry Inc.},
486    'adult' => q{ICM Registry AD LLC},
487    'ae' => q{Telecommunication Regulatory Authority (TRA)},
488    'aeg' => q{Aktiebolaget Electrolux},
489    'aero' => q{Societe Internationale de Telecommunications Aeronautique (SITA INC USA)},
490    'aetna' => q{Aetna Life Insurance Company},
491    'af' => q{Ministry of Communications and IT},
492    'afamilycompany' => q{Johnson Shareholdings, Inc.},
493    'afl' => q{Australian Football League},
494    'ag' => q{UHSA School of Medicine},
495    'agakhan' => q{Fondation Aga Khan (Aga Khan Foundation)},
496    'agency' => q{Steel Falls, LLC},
497    'ai' => q{Government of Anguilla},
498    'aig' => q{American International Group, Inc.},
499    'aigo' => q{aigo Digital Technology Co,Ltd.},
500    'airbus' => q{Airbus S.A.S.},
501    'airforce' => q{United TLD Holdco Ltd.},
502    'airtel' => q{Bharti Airtel Limited},
503    'akdn' => q{Fondation Aga Khan (Aga Khan Foundation)},
504    'al' => q{Electronic and Postal Communications Authority - AKEP},
505    'alfaromeo' => q{Fiat Chrysler Automobiles N.V.},
506    'alibaba' => q{Alibaba Group Holding Limited},
507    'alipay' => q{Alibaba Group Holding Limited},
508    'allfinanz' => q{Allfinanz Deutsche Vermögensberatung Aktiengesellschaft},
509    'allstate' => q{Allstate Fire and Casualty Insurance Company},
510    'ally' => q{Ally Financial Inc.},
511    'alsace' => q{REGION D ALSACE},
512    'alstom' => q{ALSTOM},
513    'am' => q{"Internet Society" Non-governmental Organization},
514    'americanexpress' => q{American Express Travel Related Services Company, Inc.},
515    'americanfamily' => q{AmFam, Inc.},
516    'amex' => q{American Express Travel Related Services Company, Inc.},
517    'amfam' => q{AmFam, Inc.},
518    'amica' => q{Amica Mutual Insurance Company},
519    'amsterdam' => q{Gemeente Amsterdam},
520    'an' => q{Retired},
521    'analytics' => q{Campus IP LLC},
522    'android' => q{Charleston Road Registry Inc.},
523    'anquan' => q{QIHOO 360 TECHNOLOGY CO. LTD.},
524    'anz' => q{Australia and New Zealand Banking Group Limited},
525    'ao' => q{Faculdade de Engenharia da Universidade Agostinho Neto},
526    'apartments' => q{June Maple, LLC},
527    'app' => q{Charleston Road Registry Inc.},
528    'apple' => q{Apple Inc.},
529    'aq' => q{Antarctica Network Information Centre Limited},
530    'aquarelle' => q{Aquarelle.com},
531    'ar' => q{Presidencia de la Nación – Secretaría Legal y Técnica},
532    'aramco' => q{Aramco Services Company},
533    'archi' => q{STARTING DOT LIMITED},
534    'army' => q{United TLD Holdco Ltd.},
535    'arpa' => q{Internet Architecture Board (IAB)},
536    'art' => q{UK Creative Ideas Limited},
537    'arte' => q{Association Relative à la Télévision Européenne G.E.I.E.},
538    'as' => q{AS Domain Registry},
539    'asda' => q{Wal-Mart Stores, Inc.},
540    'asia' => q{DotAsia Organisation Ltd.},
541    'associates' => q{Baxter Hill, LLC},
542    'at' => q{nic.at GmbH},
543    'athleta' => q{The Gap, Inc.},
544    'attorney' => q{United TLD Holdco, Ltd},
545    'au' => q{.au Domain Administration (auDA)},
546    'auction' => q{United TLD HoldCo, Ltd.},
547    'audi' => q{AUDI Aktiengesellschaft},
548    'audible' => q{Amazon Registry Services, Inc.},
549    'audio' => q{Uniregistry, Corp.},
550    'auspost' => q{Australian Postal Corporation},
551    'author' => q{Amazon Registry Services, Inc.},
552    'auto' => q{Cars Registry Limited},
553    'autos' => q{DERAutos, LLC},
554    'avianca' => q{Aerovias del Continente Americano S.A. Avianca},
555    'aw' => q{SETAR},
556    'aws' => q{Amazon Registry Services, Inc.},
557    'ax' => q{Ålands landskapsregering},
558    'axa' => q{AXA SA},
559    'az' => q{IntraNS},
560    'azure' => q{Microsoft Corporation},
561    'ba' => q{Universtiy Telinformatic Centre (UTIC)},
562    'baby' => q{Johnson & Johnson Services, Inc.},
563    'baidu' => q{Baidu, Inc.},
564    'banamex' => q{Citigroup Inc.},
565    'bananarepublic' => q{The Gap, Inc.},
566    'band' => q{United TLD Holdco, Ltd},
567    'bank' => q{fTLD Registry Services, LLC},
568    'bar' => q{Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable},
569    'barcelona' => q{Municipi de Barcelona},
570    'barclaycard' => q{Barclays Bank PLC},
571    'barclays' => q{Barclays Bank PLC},
572    'barefoot' => q{Gallo Vineyards, Inc.},
573    'bargains' => q{Half Hallow, LLC},
574    'bauhaus' => q{Werkhaus GmbH},
575    'bayern' => q{Bayern Connect GmbH},
576    'bb' => q{Government of Barbados - Ministry of Economic Affairs and Development
577    Telecommunications Unit},
578    'bbc' => q{British Broadcasting Corporation},
579    'bbt' => q{BB&T Corporation},
580    'bbva' => q{BANCO BILBAO VIZCAYA ARGENTARIA, S.A.},
581    'bcg' => q{The Boston Consulting Group, Inc.},
582    'bcn' => q{Municipi de Barcelona},
583    'bd' => q{Ministry of Post & Telecommunications - Bangladesh Secretariat},
584    'be' => q{DNS Belgium vzw/asbl},
585    'beats' => q{Beats Electronics, LLC},
586    'beauty' => q{L'Oréal},
587    'beer' => q{Top Level Domain Holdings Limited},
588    'bentley' => q{Bentley Motors Limited},
589    'berlin' => q{dotBERLIN GmbH & Co. KG},
590    'best' => q{BestTLD Pty Ltd},
591    'bestbuy' => q{BBY Solutions, Inc.},
592    'bet' => q{Afilias plc},
593    'bf' => q{ARCE-AutoritÈ de RÈgulation des Communications Electroniques},
594    'bg' => q{Register.BG},
595    'bh' => q{Telecommunications Regulatory Authority (TRA)},
596    'bharti' => q{Bharti Enterprises (Holding) Private Limited},
597    'bi' => q{Centre National de l'Informatique},
598    'bible' => q{American Bible Society},
599    'bid' => q{dot Bid Limited},
600    'bike' => q{Grand Hollow, LLC},
601    'bing' => q{Microsoft Corporation},
602    'bingo' => q{Sand Cedar, LLC},
603    'bio' => q{STARTING DOT LIMITED},
604    'biz' => q{Neustar, Inc.},
605    'bj' => q{Benin Telecoms S.A.},
606    'bl' => q{Not assigned},
607    'black' => q{Afilias Limited},
608    'blackfriday' => q{Uniregistry, Corp.},
609    'blanco' => q{BLANCO GmbH + Co KG},
610    'blockbuster' => q{Dish DBS Corporation},
611    'blog' => q{Knock Knock WHOIS There, LLC},
612    'bloomberg' => q{Bloomberg IP Holdings LLC},
613    'blue' => q{Afilias Limited},
614    'bm' => q{Registry General Department, Ministry of Home Affairs},
615    'bms' => q{Bristol-Myers Squibb Company},
616    'bmw' => q{Bayerische Motoren Werke Aktiengesellschaft},
617    'bn' => q{Brunei Darussalam Network Information Centre Sdn Bhd (BNNIC)},
618    'bnl' => q{Banca Nazionale del Lavoro},
619    'bnpparibas' => q{BNP Paribas},
620    'bo' => q{Agencia para el Desarrollo de la Información de la Sociedad en Bolivia},
621    'boats' => q{DERBoats, LLC},
622    'boehringer' => q{Boehringer Ingelheim International GmbH},
623    'bofa' => q{NMS Services, Inc.},
624    'bom' => q{Núcleo de Informação e Coordenação do Ponto BR - NIC.br},
625    'bond' => q{Bond University Limited},
626    'boo' => q{Charleston Road Registry Inc.},
627    'book' => q{Amazon Registry Services, Inc.},
628    'booking' => q{Booking.com B.V.},
629    'boots' => q{THE BOOTS COMPANY PLC},
630    'bosch' => q{Robert Bosch GMBH},
631    'bostik' => q{Bostik SA},
632    'bot' => q{Amazon Registry Services, Inc.},
633    'boutique' => q{Over Galley, LLC},
634    'bq' => q{Not assigned},
635    'br' => q{Comite Gestor da Internet no Brasil},
636    'bradesco' => q{Banco Bradesco S.A.},
637    'bridgestone' => q{Bridgestone Corporation},
638    'broadway' => q{Celebrate Broadway, Inc.},
639    'broker' => q{DOTBROKER REGISTRY LTD},
640    'brother' => q{Brother Industries, Ltd.},
641    'brussels' => q{DNS.be vzw},
642    'bs' => q{The College of the Bahamas},
643    'bt' => q{Ministry of Information and Communications},
644    'budapest' => q{Top Level Domain Holdings Limited},
645    'bugatti' => q{Bugatti International SA},
646    'build' => q{Plan Bee LLC},
647    'builders' => q{Atomic Madison, LLC},
648    'business' => q{Spring Cross, LLC},
649    'buy' => q{Amazon Registry Services, INC},
650    'buzz' => q{DOTSTRATEGY CO.},
651    'bv' => q{UNINETT Norid A/S},
652    'bw' => q{Botswana Communications Regulatory Authority (BOCRA)},
653    'by' => q{Reliable Software, Ltd.},
654    'bz' => q{University of Belize},
655    'bzh' => q{Association www.bzh},
656    'ca' => q{Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)},
657    'cab' => q{Half Sunset, LLC},
658    'cafe' => q{Pioneer Canyon, LLC},
659    'cal' => q{Charleston Road Registry Inc.},
660    'call' => q{Amazon Registry Services, Inc.},
661    'calvinklein' => q{PVH gTLD Holdings LLC},
662    'cam' => q{AC Webconnecting Holding B.V.},
663    'camera' => q{Atomic Maple, LLC},
664    'camp' => q{Delta Dynamite, LLC},
665    'cancerresearch' => q{Australian Cancer Research Foundation},
666    'canon' => q{Canon Inc.},
667    'capetown' => q{ZA Central Registry NPC trading as ZA Central Registry},
668    'capital' => q{Delta Mill, LLC},
669    'capitalone' => q{Capital One Financial Corporation},
670    'car' => q{Cars Registry Limited},
671    'caravan' => q{Caravan International, Inc.},
672    'cards' => q{Foggy Hollow, LLC},
673    'care' => q{Goose Cross, LLC},
674    'career' => q{dotCareer LLC},
675    'careers' => q{Wild Corner, LLC},
676    'cars' => q{Cars Registry Limited},
677    'cartier' => q{Richemont DNS Inc.},
678    'casa' => q{Top Level Domain Holdings Limited},
679    'cash' => q{Delta Lake, LLC},
680    'casino' => q{Binky Sky, LLC},
681    'cat' => q{Fundacio puntCAT},
682    'catering' => q{New Falls. LLC},
683    'cba' => q{COMMONWEALTH BANK OF AUSTRALIA},
684    'cbn' => q{The Christian Broadcasting Network, Inc.},
685    'cbre' => q{CBRE, Inc.},
686    'cbs' => q{CBS Domains Inc.},
687    'cc' => q{eNIC Cocos (Keeling) Islands Pty. - Ltd. d/b/a Island Internet Services},
688    'cd' => q{Office Congolais des Postes et Télécommunications - OCPT},
689    'ceb' => q{The Corporate Executive Board Company},
690    'center' => q{Tin Mill, LLC},
691    'ceo' => q{CEOTLD Pty Ltd},
692    'cern' => q{European Organization for Nuclear Research ("CERN")},
693    'cf' => q{Societe Centrafricaine de Telecommunications (SOCATEL)},
694    'cfa' => q{CFA Institute},
695    'cfd' => q{DOTCFD REGISTRY LTD},
696    'cg' => q{ONPT Congo and Interpoint Switzerland},
697    'ch' => q{SWITCH The Swiss Education & Research Network},
698    'chanel' => q{Chanel International B.V.},
699    'channel' => q{Charleston Road Registry Inc.},
700    'chase' => q{JPMorgan Chase Bank, National Association},
701    'chat' => q{Sand Fields, LLC},
702    'cheap' => q{Sand Cover, LLC},
703    'chintai' => q{CHINTAI Corporation},
704    'chloe' => q{Richemont DNS Inc.},
705    'christmas' => q{Uniregistry, Corp.},
706    'chrome' => q{Charleston Road Registry Inc.},
707    'chrysler' => q{FCA US LLC.},
708    'church' => q{Holly Fileds, LLC},
709    'ci' => q{INP-HB Institut National Polytechnique Felix Houphouet Boigny},
710    'cipriani' => q{Hotel Cipriani Srl},
711    'circle' => q{Amazon Registry Services, Inc.},
712    'cisco' => q{Cisco Technology, Inc.},
713    'citadel' => q{Citadel Domain LLC},
714    'citi' => q{Citigroup Inc.},
715    'citic' => q{CITIC Group Corporation},
716    'city' => q{Snow Sky, LLC},
717    'cityeats' => q{Lifestyle Domain Holdings, Inc.},
718    'ck' => q{Telecom Cook Islands Ltd.},
719    'cl' => q{NIC Chile (University of Chile)},
720    'claims' => q{Black Corner, LLC},
721    'cleaning' => q{Fox Shadow, LLC},
722    'click' => q{Uniregistry, Corp.},
723    'clinic' => q{Goose Park, LLC},
724    'clinique' => q{The Estée Lauder Companies Inc.},
725    'clothing' => q{Steel Lake, LLC},
726    'cloud' => q{ARUBA PEC S.p.A.},
727    'club' => q{.CLUB DOMAINS, LLC},
728    'clubmed' => q{Club Méditerranée S.A.},
729    'cm' => q{Cameroon Telecommunications (CAMTEL)},
730    'cn' => q{China Internet Network Information Center (CNNIC)},
731    'co' => q{.CO Internet S.A.S.},
732    'coach' => q{Koko Island, LLC},
733    'codes' => q{Puff Willow, LLC},
734    'coffee' => q{Trixy Cover, LLC},
735    'college' => q{XYZ.COM LLC},
736    'cologne' => q{NetCologne Gesellschaft für Telekommunikation mbH},
737    'com' => q{VeriSign Global Registry Services},
738    'comcast' => q{Comcast IP Holdings I, LLC},
739    'commbank' => q{COMMONWEALTH BANK OF AUSTRALIA},
740    'community' => q{Fox Orchard, LLC},
741    'company' => q{Silver Avenue, LLC},
742    'compare' => q{iSelect Ltd},
743    'computer' => q{Pine Mill, LLC},
744    'comsec' => q{VeriSign, Inc.},
745    'condos' => q{Pine House, LLC},
746    'construction' => q{Fox Dynamite, LLC},
747    'consulting' => q{United TLD Holdco, LTD.},
748    'contact' => q{Top Level Spectrum, Inc.},
749    'contractors' => q{Magic Woods, LLC},
750    'cooking' => q{Top Level Domain Holdings Limited},
751    'cookingchannel' => q{Lifestyle Domain Holdings, Inc.},
752    'cool' => q{Koko Lake, LLC},
753    'coop' => q{DotCooperation LLC},
754    'corsica' => q{Collectivité Territoriale de Corse},
755    'country' => q{Top Level Domain Holdings Limited},
756    'coupon' => q{Amazon Registry Services, Inc.},
757    'coupons' => q{Black Island, LLC},
758    'courses' => q{OPEN UNIVERSITIES AUSTRALIA PTY LTD},
759    'cr' => q{National Academy of Sciences - Academia Nacional de Ciencias},
760    'credit' => q{Snow Shadow, LLC},
761    'creditcard' => q{Binky Frostbite, LLC},
762    'creditunion' => q{CUNA Performance Resources, LLC},
763    'cricket' => q{dot Cricket Limited},
764    'crown' => q{Crown Equipment Corporation},
765    'crs' => q{Federated Co-operatives Limited},
766    'cruises' => q{Spring Way, LLC},
767    'csc' => q{Alliance-One Services, Inc.},
768    'cu' => q{CENIAInternet - Industria y San Jose
769    Capitolio Nacional},
770    'cuisinella' => q{SALM S.A.S.},
771    'cv' => q{Agência Nacional das Comunicações (ANAC)},
772    'cw' => q{University of Curacao},
773    'cx' => q{Christmas Island Domain Administration Limited},
774    'cy' => q{University of Cyprus},
775    'cymru' => q{Nominet UK},
776    'cyou' => q{Beijing Gamease Age Digital Technology Co., Ltd.},
777    'cz' => q{CZ.NIC, z.s.p.o},
778    'dabur' => q{Dabur India Limited},
779    'dad' => q{Charleston Road Registry Inc.},
780    'dance' => q{United TLD Holdco Ltd.},
781    'date' => q{dot Date Limited},
782    'dating' => q{Pine Fest, LLC},
783    'datsun' => q{NISSAN MOTOR CO., LTD.},
784    'day' => q{Charleston Road Registry Inc.},
785    'dclk' => q{Charleston Road Registry Inc.},
786    'dds' => q{Minds + Machines Group Limited},
787    'de' => q{DENIC eG},
788    'deal' => q{Amazon Registry Services, Inc.},
789    'dealer' => q{Dealer Dot Com, Inc.},
790    'deals' => q{Sand Sunset, LLC},
791    'degree' => q{United TLD Holdco, Ltd},
792    'delivery' => q{Steel Station, LLC},
793    'dell' => q{Dell Inc.},
794    'deloitte' => q{Deloitte Touche Tohmatsu},
795    'delta' => q{Delta Air Lines, Inc.},
796    'democrat' => q{United TLD Holdco Ltd.},
797    'dental' => q{Tin Birch, LLC},
798    'dentist' => q{United TLD Holdco, Ltd},
799    'desi' => q{Desi Networks LLC},
800    'design' => q{Top Level Design, LLC},
801    'dev' => q{Charleston Road Registry Inc.},
802    'dhl' => q{Deutsche Post AG},
803    'diamonds' => q{John Edge, LLC},
804    'diet' => q{Uniregistry, Corp.},
805    'digital' => q{Dash Park, LLC},
806    'direct' => q{Half Trail, LLC},
807    'directory' => q{Extra Madison, LLC},
808    'discount' => q{Holly Hill, LLC},
809    'discover' => q{Discover Financial Services},
810    'dish' => q{Dish DBS Corporation},
811    'diy' => q{Lifestyle Domain Holdings, Inc.},
812    'dj' => q{Djibouti Telecom S.A},
813    'dk' => q{Dansk Internet Forum},
814    'dm' => q{DotDM Corporation},
815    'dnp' => q{Dai Nippon Printing Co., Ltd.},
816    'do' => q{Pontificia Universidad Catolica Madre y Maestra - Recinto Santo Tomas de Aquino},
817    'docs' => q{Charleston Road Registry Inc.},
818    'doctor' => q{Brice Trail, LLC},
819    'dodge' => q{FCA US LLC.},
820    'dog' => q{Koko Mill, LLC},
821    'doha' => q{Communications Regulatory Authority (CRA)},
822    'domains' => q{Sugar Cross, LLC},
823    'doosan' => q{Retired},
824    'dot' => q{Dish DBS Corporation},
825    'download' => q{dot Support Limited},
826    'drive' => q{Charleston Road Registry Inc.},
827    'dtv' => q{Dish DBS Corporation},
828    'dubai' => q{Dubai Smart Government Department},
829    'duck' => q{Johnson Shareholdings, Inc.},
830    'dunlop' => q{The Goodyear Tire & Rubber Company},
831    'duns' => q{The Dun & Bradstreet Corporation},
832    'dupont' => q{E. I. du Pont de Nemours and Company},
833    'durban' => q{ZA Central Registry NPC trading as ZA Central Registry},
834    'dvag' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG},
835    'dz' => q{CERIST},
836    'earth' => q{Interlink Co., Ltd.},
837    'eat' => q{Charleston Road Registry Inc.},
838    'ec' => q{NIC.EC (NICEC) S.A.},
839    'eco' => q{Big Room Inc.},
840    'edeka' => q{EDEKA Verband kaufmännischer Genossenschaften e.V.},
841    'edu' => q{EDUCAUSE},
842    'education' => q{Brice Way, LLC},
843    'ee' => q{Eesti Interneti Sihtasutus (EIS)},
844    'eg' => q{Egyptian Universities Network (EUN) - Supreme Council of Universities},
845    'eh' => q{Not assigned},
846    'email' => q{Spring Madison, LLC},
847    'emerck' => q{Merck KGaA},
848    'energy' => q{Binky Birch, LLC},
849    'engineer' => q{United TLD Holdco Ltd.},
850    'engineering' => q{Romeo Canyon},
851    'enterprises' => q{Snow Oaks, LLC},
852    'epost' => q{Deutsche Post AG},
853    'epson' => q{Seiko Epson Corporation},
854    'equipment' => q{Corn Station, LLC},
855    'er' => q{Eritrea Telecommunication Services Corporation (EriTel)},
856    'ericsson' => q{Telefonaktiebolaget L M Ericsson},
857    'erni' => q{ERNI Group Holding AG},
858    'es' => q{Red.es},
859    'esq' => q{Charleston Road Registry Inc.},
860    'estate' => q{Trixy Park, LLC},
861    'esurance' => q{Esurance Insurance Company},
862    'et' => q{Ethio telecom},
863    'eu' => q{EURid vzw/asbl},
864    'eurovision' => q{European Broadcasting Union (EBU)},
865    'eus' => q{Puntueus Fundazioa},
866    'events' => q{Pioneer Maple, LLC},
867    'everbank' => q{EverBank},
868    'exchange' => q{Spring Falls, LLC},
869    'expert' => q{Magic Pass, LLC},
870    'exposed' => q{Victor Beach, LLC},
871    'express' => q{Sea Sunset, LLC},
872    'extraspace' => q{Extra Space Storage LLC},
873    'fage' => q{Fage International S.A.},
874    'fail' => q{Atomic Pipe, LLC},
875    'fairwinds' => q{FairWinds Partners, LLC},
876    'faith' => q{dot Faith Limited},
877    'family' => q{United TLD Holdco Ltd.},
878    'fan' => q{Asiamix Digital Ltd},
879    'fans' => q{Asiamix Digital Limited},
880    'farm' => q{Just Maple, LLC},
881    'farmers' => q{Farmers Insurance Exchange},
882    'fashion' => q{Top Level Domain Holdings Limited},
883    'fast' => q{Amazon Registry Services, Inc.},
884    'fedex' => q{Federal Express Corporation},
885    'feedback' => q{Top Level Spectrum, Inc.},
886    'ferrari' => q{Fiat Chrysler Automobiles N.V.},
887    'ferrero' => q{Ferrero Trading Lux S.A.},
888    'fi' => q{Finnish Communications Regulatory Authority},
889    'fiat' => q{Fiat Chrysler Automobiles N.V.},
890    'fidelity' => q{Fidelity Brokerage Services LLC},
891    'fido' => q{Rogers Communications Partnership},
892    'film' => q{Motion Picture Domain Registry Pty Ltd},
893    'final' => q{Núcleo de Informação e Coordenação do Ponto BR - NIC.br},
894    'finance' => q{Cotton Cypress, LLC},
895    'financial' => q{Just Cover, LLC},
896    'fire' => q{Amazon Registry Services, Inc.},
897    'firestone' => q{Bridgestone Licensing Services, Inc.},
898    'firmdale' => q{Firmdale Holdings Limited},
899    'fish' => q{Fox Woods, LLC},
900    'fishing' => q{Top Level Domain Holdings Limited},
901    'fit' => q{Minds + Machines Group Limited},
902    'fitness' => q{Brice Orchard, LLC},
903    'fj' => q{The University of the South Pacific - IT Services},
904    'fk' => q{Falkland Islands Government},
905    'flickr' => q{Yahoo! Domain Services Inc.},
906    'flights' => q{Fox Station, LLC},
907    'flir' => q{FLIR Systems, Inc.},
908    'florist' => q{Half Cypress, LLC},
909    'flowers' => q{Uniregistry, Corp.},
910    'flsmidth' => q{Retired},
911    'fly' => q{Charleston Road Registry Inc.},
912    'fm' => q{FSM Telecommunications Corporation},
913    'fo' => q{FO Council},
914    'foo' => q{Charleston Road Registry Inc.},
915    'foodnetwork' => q{Lifestyle Domain Holdings, Inc.},
916    'football' => q{Foggy Farms, LLC},
917    'ford' => q{Ford Motor Company},
918    'forex' => q{DOTFOREX REGISTRY LTD},
919    'forsale' => q{United TLD Holdco, LLC},
920    'forum' => q{Fegistry, LLC},
921    'foundation' => q{John Dale, LLC},
922    'fox' => q{FOX Registry, LLC},
923    'fr' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)},
924    'fresenius' => q{Fresenius Immobilien-Verwaltungs-GmbH},
925    'frl' => q{FRLregistry B.V.},
926    'frogans' => q{OP3FT},
927    'frontdoor' => q{Lifestyle Domain Holdings, Inc.},
928    'frontier' => q{Frontier Communications Corporation},
929    'ftr' => q{Frontier Communications Corporation},
930    'fujitsu' => q{Fujitsu Limited},
931    'fujixerox' => q{Xerox DNHC LLC},
932    'fund' => q{John Castle, LLC},
933    'furniture' => q{Lone Fields, LLC},
934    'futbol' => q{United TLD Holdco, Ltd.},
935    'fyi' => q{Silver Tigers, LLC},
936    'ga' => q{Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)},
937    'gal' => q{Asociación puntoGAL},
938    'gallery' => q{Sugar House, LLC},
939    'gallo' => q{Gallo Vineyards, Inc.},
940    'gallup' => q{Gallup, Inc.},
941    'game' => q{Uniregistry, Corp.},
942    'games' => q{United TLD Holdco Ltd.},
943    'gap' => q{The Gap, Inc.},
944    'garden' => q{Top Level Domain Holdings Limited},
945    'gb' => q{Reserved Domain - IANA},
946    'gbiz' => q{Charleston Road Registry Inc.},
947    'gd' => q{The National Telecommunications Regulatory Commission (NTRC)},
948    'gdn' => q{Joint Stock Company "Navigation-information systems"},
949    'ge' => q{Caucasus Online},
950    'gea' => q{GEA Group Aktiengesellschaft},
951    'gent' => q{Combell nv},
952    'genting' => q{Resorts World Inc. Pte. Ltd.},
953    'george' => q{Wal-Mart Stores, Inc.},
954    'gf' => q{Net Plus},
955    'gg' => q{Island Networks Ltd.},
956    'ggee' => q{GMO Internet, Inc.},
957    'gh' => q{Network Computer Systems Limited},
958    'gi' => q{Sapphire Networks},
959    'gift' => q{Uniregistry, Corp.},
960    'gifts' => q{Goose Sky, LLC},
961    'gives' => q{United TLD Holdco Ltd.},
962    'giving' => q{Giving Limited},
963    'gl' => q{TELE Greenland A/S},
964    'glade' => q{Johnson Shareholdings, Inc.},
965    'glass' => q{Black Cover, LLC},
966    'gle' => q{Charleston Road Registry Inc.},
967    'global' => q{Dot Global Domain Registry Limited},
968    'globo' => q{Globo Comunicação e Participações S.A},
969    'gm' => q{GM-NIC},
970    'gmail' => q{Charleston Road Registry Inc.},
971    'gmbh' => q{Extra Dynamite, LLC},
972    'gmo' => q{GMO Internet, Inc.},
973    'gmx' => q{1&1 Mail & Media GmbH},
974    'gn' => q{Centre National des Sciences Halieutiques de Boussoura},
975    'godaddy' => q{Go Daddy East, LLC},
976    'gold' => q{June Edge, LLC},
977    'goldpoint' => q{YODOBASHI CAMERA CO.,LTD.},
978    'golf' => q{Lone Falls, LLC},
979    'goo' => q{NTT Resonant Inc.},
980    'goodhands' => q{Allstate Fire and Casualty Insurance Company},
981    'goodyear' => q{The Goodyear Tire & Rubber Company},
982    'goog' => q{Charleston Road Registry Inc.},
983    'google' => q{Charleston Road Registry Inc.},
984    'gop' => q{Republican State Leadership Committee, Inc.},
985    'got' => q{Amazon Registry Services, Inc.},
986    'gov' => q{General Services Administration - Attn: QTDC, 2E08 (.gov Domain Registration)},
987    'gp' => q{Networking Technologies Group},
988    'gq' => q{GETESA},
989    'gr' => q{ICS-FORTH GR},
990    'grainger' => q{Grainger Registry Services, LLC},
991    'graphics' => q{Over Madison, LLC},
992    'gratis' => q{Pioneer Tigers, LLC},
993    'green' => q{Afilias Limited},
994    'gripe' => q{Corn Sunset, LLC},
995    'group' => q{Romeo Town, LLC},
996    'gs' => q{Government of South Georgia and South Sandwich Islands (GSGSSI)},
997    'gt' => q{Universidad del Valle de Guatemala},
998    'gu' => q{University of Guam - Computer Center},
999    'guardian' => q{The Guardian Life Insurance Company of America},
1000    'gucci' => q{Guccio Gucci S.p.a.},
1001    'guge' => q{Charleston Road Registry Inc.},
1002    'guide' => q{Snow Moon, LLC},
1003    'guitars' => q{Uniregistry, Corp.},
1004    'guru' => q{Pioneer Cypress, LLC},
1005    'gw' => q{Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau},
1006    'gy' => q{University of Guyana},
1007    'hamburg' => q{Hamburg Top-Level-Domain GmbH},
1008    'hangout' => q{Charleston Road Registry Inc.},
1009    'haus' => q{United TLD Holdco, LTD.},
1010    'hbo' => q{HBO Registry Services, Inc.},
1011    'hdfc' => q{HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED},
1012    'hdfcbank' => q{HDFC Bank Limited},
1013    'health' => q{DotHealth, LLC},
1014    'healthcare' => q{Silver Glen, LLC},
1015    'help' => q{Uniregistry, Corp.},
1016    'helsinki' => q{City of Helsinki},
1017    'here' => q{Charleston Road Registry Inc.},
1018    'hermes' => q{Hermes International},
1019    'hgtv' => q{Lifestyle Domain Holdings, Inc.},
1020    'hiphop' => q{Uniregistry, Corp.},
1021    'hisamitsu' => q{Hisamitsu Pharmaceutical Co.,Inc.},
1022    'hitachi' => q{Hitachi, Ltd.},
1023    'hiv' => q{Uniregistry, Corp.},
1024    'hk' => q{Hong Kong Internet Registration Corporation Ltd.},
1025    'hkt' => q{PCCW-HKT DataCom Services Limited},
1026    'hm' => q{HM Domain Registry},
1027    'hn' => q{Red de Desarrollo Sostenible Honduras},
1028    'hockey' => q{Half Willow, LLC},
1029    'holdings' => q{John Madison, LLC},
1030    'holiday' => q{Goose Woods, LLC},
1031    'homedepot' => q{Homer TLC, Inc.},
1032    'homegoods' => q{The TJX Companies, Inc.},
1033    'homes' => q{DERHomes, LLC},
1034    'homesense' => q{The TJX Companies, Inc.},
1035    'honda' => q{Honda Motor Co., Ltd.},
1036    'honeywell' => q{Honeywell GTLD LLC},
1037    'horse' => q{Top Level Domain Holdings Limited},
1038    'host' => q{DotHost Inc.},
1039    'hosting' => q{Uniregistry, Corp.},
1040    'hot' => q{Amazon Registry Services, Inc.},
1041    'hoteles' => q{Travel Reservations SRL},
1042    'hotmail' => q{Microsoft Corporation},
1043    'house' => q{Sugar Park, LLC},
1044    'how' => q{Charleston Road Registry Inc.},
1045    'hr' => q{CARNet - Croatian Academic and Research Network},
1046    'hsbc' => q{HSBC Holdings PLC},
1047    'ht' => q{Consortium FDS/RDDH},
1048    'htc' => q{HTC corporation},
1049    'hu' => q{Council of Hungarian Internet Providers (CHIP)},
1050    'hughes' => q{Hughes Satellite Systems Corporation},
1051    'hyatt' => q{Hyatt GTLD, L.L.C.},
1052    'hyundai' => q{Hyundai Motor Company},
1053    'ibm' => q{International Business Machines Corporation},
1054    'icbc' => q{Industrial and Commercial Bank of China Limited},
1055    'ice' => q{IntercontinentalExchange, Inc.},
1056    'icu' => q{One.com A/S},
1057    'id' => q{Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)},
1058    'ie' => q{University College Dublin - Computing Services
1059    Computer Centre},
1060    'ieee' => q{IEEE Global LLC},
1061    'ifm' => q{ifm electronic gmbh},
1062    'iinet' => q{Connect West Pty. Ltd.},
1063    'ikano' => q{Ikano S.A.},
1064    'il' => q{Internet Society of Israel},
1065    'im' => q{Isle of Man Government},
1066    'imamat' => q{Fondation Aga Khan (Aga Khan Foundation)},
1067    'imdb' => q{Amazon Registry Services, Inc.},
1068    'immo' => q{Auburn Bloom, LLC},
1069    'immobilien' => q{United TLD Holdco Ltd.},
1070    'in' => q{National Internet Exchange of India},
1071    'industries' => q{Outer House, LLC},
1072    'infiniti' => q{NISSAN MOTOR CO., LTD.},
1073    'info' => q{Afilias Limited},
1074    'ing' => q{Charleston Road Registry Inc.},
1075    'ink' => q{Top Level Design, LLC},
1076    'institute' => q{Outer Maple, LLC},
1077    'insurance' => q{fTLD Registry Services LLC},
1078    'insure' => q{Pioneer Willow, LLC},
1079    'int' => q{Internet Assigned Numbers Authority},
1080    'intel' => q{Intel Corporation},
1081    'international' => q{Wild Way, LLC},
1082    'intuit' => q{Intuit Administrative Services, Inc.},
1083    'investments' => q{Holly Glen, LLC},
1084    'io' => q{IO Top Level Domain Registry - Cable and Wireless},
1085    'ipiranga' => q{Ipiranga Produtos de Petroleo S.A.},
1086    'iq' => q{Communications and Media Commission (CMC)},
1087    'ir' => q{Institute for Research in Fundamental Sciences},
1088    'irish' => q{Dot-Irish LLC},
1089    'is' => q{ISNIC - Internet Iceland ltd.},
1090    'iselect' => q{iSelect Ltd},
1091    'ismaili' => q{Fondation Aga Khan (Aga Khan Foundation)},
1092    'ist' => q{Istanbul Metropolitan Municipality},
1093    'istanbul' => q{Istanbul Metropolitan Municipality},
1094    'it' => q{IIT - CNR},
1095    'itau' => q{Itau Unibanco Holding S.A.},
1096    'itv' => q{ITV Services Limited},
1097    'iwc' => q{Richemont DNS Inc.},
1098    'jaguar' => q{Jaguar Land Rover Ltd},
1099    'java' => q{Oracle Corporation},
1100    'jcb' => q{JCB Co., Ltd.},
1101    'jcp' => q{JCP Media, Inc.},
1102    'je' => q{Island Networks (Jersey) Ltd.},
1103    'jeep' => q{FCA US LLC.},
1104    'jetzt' => q{Wild Frostbite, LLC},
1105    'jewelry' => q{Wild Bloom, LLC},
1106    'jlc' => q{Richemont DNS Inc.},
1107    'jll' => q{Jones Lang LaSalle Incorporated},
1108    'jm' => q{University of West Indies},
1109    'jmp' => q{Matrix IP LLC},
1110    'jnj' => q{Johnson & Johnson Services, Inc.},
1111    'jo' => q{National Information Technology Center (NITC)},
1112    'jobs' => q{Employ Media LLC},
1113    'joburg' => q{ZA Central Registry NPC trading as ZA Central Registry},
1114    'jot' => q{Amazon Registry Services, Inc.},
1115    'joy' => q{Amazon Registry Services, Inc.},
1116    'jp' => q{Japan Registry Services Co., Ltd.},
1117    'jpmorgan' => q{JPMorgan Chase Bank, National Association},
1118    'jprs' => q{Japan Registry Services Co., Ltd.},
1119    'juegos' => q{Uniregistry, Corp.},
1120    'juniper' => q{JUNIPER NETWORKS, INC.},
1121    'kaufen' => q{United TLD Holdco Ltd.},
1122    'kddi' => q{KDDI CORPORATION},
1123    'ke' => q{Kenya Network Information Center (KeNIC)},
1124    'kerryhotels' => q{Kerry Trading Co. Limited},
1125    'kerrylogistics' => q{Kerry Trading Co. Limited},
1126    'kerryproperties' => q{Kerry Trading Co. Limited},
1127    'kfh' => q{Kuwait Finance House},
1128    'kg' => q{AsiaInfo Telecommunication Enterprise},
1129    'kh' => q{Telecommunication Regulator of Cambodia (TRC)},
1130    'ki' => q{Ministry of Communications, Transport, and Tourism Development},
1131    'kia' => q{KIA MOTORS CORPORATION},
1132    'kim' => q{Afilias Limited},
1133    'kinder' => q{Ferrero Trading Lux S.A.},
1134    'kindle' => q{Amazon Registry Services, Inc.},
1135    'kitchen' => q{Just Goodbye, LLC},
1136    'kiwi' => q{DOT KIWI LIMITED},
1137    'km' => q{Comores Telecom},
1138    'kn' => q{Ministry of Finance, Sustainable Development Information & Technology},
1139    'koeln' => q{NetCologne Gesellschaft für Telekommunikation mbH},
1140    'komatsu' => q{Komatsu Ltd.},
1141    'kosher' => q{Kosher Marketing Assets LLC},
1142    'kp' => q{Star Joint Venture Company},
1143    'kpmg' => q{KPMG International Cooperative (KPMG International Genossenschaft)},
1144    'kpn' => q{Koninklijke KPN N.V.},
1145    'kr' => q{Korea Internet & Security Agency (KISA)},
1146    'krd' => q{KRG Department of Information Technology},
1147    'kred' => q{KredTLD Pty Ltd},
1148    'kuokgroup' => q{Kerry Trading Co. Limited},
1149    'kw' => q{Ministry of Communications},
1150    'ky' => q{The Information and Communications Technology Authority},
1151    'kyoto' => q{Academic Institution: Kyoto Jyoho Gakuen},
1152    'kz' => q{Association of IT Companies of Kazakhstan},
1153    'la' => q{Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications},
1154    'lacaixa' => q{CAIXA D'ESTALVIS I PENSIONS DE BARCELONA},
1155    'ladbrokes' => q{LADBROKES INTERNATIONAL PLC},
1156    'lamborghini' => q{Automobili Lamborghini S.p.A.},
1157    'lamer' => q{The Estée Lauder Companies Inc.},
1158    'lancaster' => q{LANCASTER},
1159    'lancia' => q{Fiat Chrysler Automobiles N.V.},
1160    'lancome' => q{L'Oréal},
1161    'land' => q{Pine Moon, LLC},
1162    'landrover' => q{Jaguar Land Rover Ltd},
1163    'lanxess' => q{LANXESS Corporation},
1164    'lasalle' => q{Jones Lang LaSalle Incorporated},
1165    'lat' => q{ECOM-LAC Federación de Latinoamérica y el Caribe para Internet y el Comercio Electrónico},
1166    'latino' => q{Dish DBS Corporation},
1167    'latrobe' => q{La Trobe University},
1168    'law' => q{Minds + Machines Group Limited},
1169    'lawyer' => q{United TLD Holdco, Ltd},
1170    'lb' => q{American University of Beirut - Computing and Networking Services},
1171    'lc' => q{University of Puerto Rico},
1172    'lds' => q{IRI Domain Management, LLC},
1173    'lease' => q{Victor Trail, LLC},
1174    'leclerc' => q{A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc},
1175    'lefrak' => q{LeFrak Organization, Inc.},
1176    'legal' => q{Blue Falls, LLC},
1177    'lego' => q{LEGO Juris A/S},
1178    'lexus' => q{TOYOTA MOTOR CORPORATION},
1179    'lgbt' => q{Afilias Limited},
1180    'li' => q{Universitaet Liechtenstein},
1181    'liaison' => q{Liaison Technologies, Incorporated},
1182    'lidl' => q{Schwarz Domains und Services GmbH & Co. KG},
1183    'life' => q{Trixy Oaks, LLC},
1184    'lifeinsurance' => q{American Council of Life Insurers},
1185    'lifestyle' => q{Lifestyle Domain Holdings, Inc.},
1186    'lighting' => q{John McCook, LLC},
1187    'like' => q{Amazon Registry Services, Inc.},
1188    'lilly' => q{Eli Lilly and Company},
1189    'limited' => q{Big Fest, LLC},
1190    'limo' => q{Hidden Frostbite, LLC},
1191    'lincoln' => q{Ford Motor Company},
1192    'linde' => q{Linde Aktiengesellschaft},
1193    'link' => q{Uniregistry, Corp.},
1194    'lipsy' => q{Lipsy Ltd},
1195    'live' => q{United TLD Holdco Ltd.},
1196    'living' => q{Lifestyle Domain Holdings, Inc.},
1197    'lixil' => q{LIXIL Group Corporation},
1198    'lk' => q{Council for Information Technology - LK Domain Registrar},
1199    'loan' => q{dot Loan Limited},
1200    'loans' => q{June Woods, LLC},
1201    'locker' => q{Dish DBS Corporation},
1202    'locus' => q{Locus Analytics LLC},
1203    'loft' => q{Annco, Inc.},
1204    'lol' => q{Uniregistry, Corp.},
1205    'london' => q{Dot London Domains Limited},
1206    'lotte' => q{Lotte Holdings Co., Ltd.},
1207    'lotto' => q{Afilias Limited},
1208    'love' => q{Merchant Law Group LLP},
1209    'lpl' => q{LPL Holdings, Inc.},
1210    'lplfinancial' => q{LPL Holdings, Inc.},
1211    'lr' => q{Data Technology Solutions, Inc.},
1212    'ls' => q{National University of Lesotho},
1213    'lt' => q{Kaunas University of Technology},
1214    'ltd' => q{Over Corner, LLC},
1215    'ltda' => q{InterNetX Corp.},
1216    'lu' => q{RESTENA},
1217    'lundbeck' => q{H. Lundbeck A/S},
1218    'lupin' => q{LUPIN LIMITED},
1219    'luxe' => q{Top Level Domain Holdings Limited},
1220    'luxury' => q{Luxury Partners LLC},
1221    'lv' => q{University of Latvia - Institute of Mathematics and Computer Science
1222    Department of Network Solutions (DNS)},
1223    'ly' => q{General Post and Telecommunication Company},
1224    'ma' => q{Agence Nationale de Réglementation des Télécommunications (ANRT)},
1225    'macys' => q{Macys, Inc.},
1226    'madrid' => q{Comunidad de Madrid},
1227    'maif' => q{Mutuelle Assurance Instituteur France (MAIF)},
1228    'maison' => q{Victor Frostbite, LLC},
1229    'makeup' => q{L'Oréal},
1230    'man' => q{MAN SE},
1231    'management' => q{John Goodbye, LLC},
1232    'mango' => q{PUNTO FA S.L.},
1233    'market' => q{United TLD Holdco, Ltd},
1234    'marketing' => q{Fern Pass, LLC},
1235    'markets' => q{DOTMARKETS REGISTRY LTD},
1236    'marriott' => q{Marriott Worldwide Corporation},
1237    'marshalls' => q{The TJX Companies, Inc.},
1238    'maserati' => q{Fiat Chrysler Automobiles N.V.},
1239    'mattel' => q{Mattel Sites, Inc.},
1240    'mba' => q{Lone Hollow, LLC},
1241    'mc' => q{Gouvernement de Monaco - Direction des Communications Electroniques},
1242    'mcd' => q{McDonald’s Corporation},
1243    'mcdonalds' => q{McDonald’s Corporation},
1244    'mckinsey' => q{McKinsey Holdings, Inc.},
1245    'md' => q{MoldData S.E.},
1246    'me' => q{Government of Montenegro},
1247    'med' => q{Medistry LLC},
1248    'media' => q{Grand Glen, LLC},
1249    'meet' => q{Charleston Road Registry Inc.},
1250    'melbourne' => q{The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation},
1251    'meme' => q{Charleston Road Registry Inc.},
1252    'memorial' => q{Dog Beach, LLC},
1253    'men' => q{Exclusive Registry Limited},
1254    'menu' => q{Wedding TLD2, LLC},
1255    'meo' => q{PT Comunicacoes S.A.},
1256    'metlife' => q{MetLife Services and Solutions, LLC},
1257    'mf' => q{Not assigned},
1258    'mg' => q{NIC-MG (Network Information Center Madagascar)},
1259    'mh' => q{Office of the Cabinet},
1260    'miami' => q{Top Level Domain Holdings Limited},
1261    'microsoft' => q{Microsoft Corporation},
1262    'mil' => q{DoD Network Information Center},
1263    'mini' => q{Bayerische Motoren Werke Aktiengesellschaft},
1264    'mint' => q{Intuit Administrative Services, Inc.},
1265    'mit' => q{Massachusetts Institute of Technology},
1266    'mitsubishi' => q{Mitsubishi Corporation},
1267    'mk' => q{Macedonian Academic Research Network Skopje},
1268    'ml' => q{Agence des Technologies de l’Information et de la Communication},
1269    'mlb' => q{MLB Advanced Media DH, LLC},
1270    'mls' => q{The Canadian Real Estate Association},
1271    'mm' => q{Ministry of Communications, Posts & Telegraphs},
1272    'mma' => q{MMA IARD},
1273    'mn' => q{Datacom Co., Ltd.},
1274    'mo' => q{Bureau of Telecommunications Regulation (DSRT)},
1275    'mobi' => q{Afilias Technologies Limited dba dotMobi},
1276    'mobily' => q{GreenTech Consultancy Company W.L.L.},
1277    'moda' => q{United TLD Holdco Ltd.},
1278    'moe' => q{Interlink Co., Ltd.},
1279    'moi' => q{Amazon Registry Services, Inc.},
1280    'mom' => q{Uniregistry, Corp.},
1281    'monash' => q{Monash University},
1282    'money' => q{Outer McCook, LLC},
1283    'monster' => q{Monster Worldwide, Inc.},
1284    'montblanc' => q{Richemont DNS Inc.},
1285    'mopar' => q{FCA US LLC.},
1286    'mormon' => q{IRI Domain Management, LLC ("Applicant")},
1287    'mortgage' => q{United TLD Holdco, Ltd},
1288    'moscow' => q{Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)},
1289    'motorcycles' => q{DERMotorcycles, LLC},
1290    'mov' => q{Charleston Road Registry Inc.},
1291    'movie' => q{New Frostbite, LLC},
1292    'movistar' => q{Telefónica S.A.},
1293    'mp' => q{Saipan Datacom, Inc.},
1294    'mq' => q{MEDIASERV},
1295    'mr' => q{Université des Sciences, de Technologie et de Médecine},
1296    'ms' => q{MNI Networks Ltd.},
1297    'msd' => q{MSD Registry Holdings, Inc.},
1298    'mt' => q{NIC (Malta)},
1299    'mtn' => q{MTN Dubai Limited},
1300    'mtpc' => q{Mitsubishi Tanabe Pharma Corporation},
1301    'mtr' => q{MTR Corporation Limited},
1302    'mu' => q{Internet Direct Ltd},
1303    'museum' => q{Museum Domain Management Association},
1304    'mutual' => q{Northwestern Mutual MU TLD Registry, LLC},
1305    'mutuelle' => q{Fédération Nationale de la Mutualité Française},
1306    'mv' => q{Dhiraagu Pvt. Ltd. (DHIVEHINET)},
1307    'mw' => q{Malawi Sustainable Development Network Programme - (Malawi SDNP)},
1308    'mx' => q{NIC-Mexico - ITESM - Campus Monterrey},
1309    'my' => q{MYNIC Berhad},
1310    'mz' => q{Centro de Informatica de Universidade Eduardo Mondlane},
1311    'na' => q{Namibian Network Information Center},
1312    'nab' => q{National Australia Bank Limited},
1313    'nadex' => q{Nadex Domains, Inc},
1314    'nagoya' => q{GMO Registry, Inc.},
1315    'name' => q{VeriSign Information Services, Inc.},
1316    'nationwide' => q{Nationwide Mutual Insurance Company},
1317    'natura' => q{NATURA COSMÉTICOS S.A.},
1318    'navy' => q{United TLD Holdco Ltd.},
1319    'nba' => q{NBA REGISTRY, LLC},
1320    'nc' => q{Office des Postes et Telecommunications},
1321    'ne' => q{SONITEL},
1322    'nec' => q{NEC Corporation},
1323    'net' => q{VeriSign Global Registry Services},
1324    'netbank' => q{COMMONWEALTH BANK OF AUSTRALIA},
1325    'netflix' => q{Netflix, Inc.},
1326    'network' => q{Trixy Manor, LLC},
1327    'neustar' => q{NeuStar, Inc.},
1328    'new' => q{Charleston Road Registry Inc.},
1329    'news' => q{United TLD Holdco Ltd.},
1330    'next' => q{Next plc},
1331    'nextdirect' => q{Next plc},
1332    'nexus' => q{Charleston Road Registry Inc.},
1333    'nf' => q{Norfolk Island Data Services},
1334    'nfl' => q{NFL Reg Ops LLC},
1335    'ng' => q{Nigeria Internet Registration Association},
1336    'ngo' => q{Public Interest Registry},
1337    'nhk' => q{Japan Broadcasting Corporation (NHK)},
1338    'ni' => q{Universidad Nacional del Ingernieria - Centro de Computo},
1339    'nico' => q{DWANGO Co., Ltd.},
1340    'nike' => q{NIKE, Inc.},
1341    'nikon' => q{NIKON CORPORATION},
1342    'ninja' => q{United TLD Holdco Ltd.},
1343    'nissan' => q{NISSAN MOTOR CO., LTD.},
1344    'nissay' => q{Nippon Life Insurance Company},
1345    'nl' => q{SIDN (Stichting Internet  Domeinregistratie Nederland)},
1346    'no' => q{UNINETT Norid A/S},
1347    'nokia' => q{Nokia Corporation},
1348    'northwesternmutual' => q{Northwestern Mutual Registry, LLC},
1349    'norton' => q{Symantec Corporation},
1350    'now' => q{Amazon Registry Services, Inc.},
1351    'nowruz' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.},
1352    'nowtv' => q{Starbucks (HK) Limited},
1353    'np' => q{Mercantile Communications Pvt. Ltd.},
1354    'nr' => q{CENPAC NET},
1355    'nra' => q{NRA Holdings Company, INC.},
1356    'nrw' => q{Minds + Machines GmbH},
1357    'ntt' => q{NIPPON TELEGRAPH AND TELEPHONE CORPORATION},
1358    'nu' => q{The IUSN Foundation},
1359    'nyc' => q{The City of New York by and through the New York City Department of Information Technology & Telecommunications},
1360    'nz' => q{InternetNZ},
1361    'obi' => q{OBI Group Holding SE & Co. KGaA},
1362    'off' => q{Johnson Shareholdings, Inc.},
1363    'office' => q{Microsoft Corporation},
1364    'okinawa' => q{BRregistry, Inc.},
1365    'olayan' => q{Crescent Holding GmbH},
1366    'olayangroup' => q{Crescent Holding GmbH},
1367    'oldnavy' => q{The Gap, Inc.},
1368    'ollo' => q{Dish DBS Corporation},
1369    'om' => q{Telecommunications Regulatory Authority (TRA)},
1370    'omega' => q{The Swatch Group Ltd},
1371    'one' => q{One.com A/S},
1372    'ong' => q{Public Interest Registry},
1373    'onl' => q{I-REGISTRY Ltd., Niederlassung Deutschland},
1374    'online' => q{DotOnline Inc.},
1375    'onyourside' => q{Nationwide Mutual Insurance Company},
1376    'ooo' => q{INFIBEAM INCORPORATION LIMITED},
1377    'open' => q{American Express Travel Related Services Company, Inc.},
1378    'oracle' => q{Oracle Corporation},
1379    'orange' => q{Orange Brand Services Limited},
1380    'org' => q{Public Interest Registry (PIR)},
1381    'organic' => q{Afilias Limited},
1382    'orientexpress' => q{Orient Express},
1383    'origins' => q{The Estée Lauder Companies Inc.},
1384    'osaka' => q{Interlink Co., Ltd.},
1385    'otsuka' => q{Otsuka Holdings Co., Ltd.},
1386    'ott' => q{Dish DBS Corporation},
1387    'ovh' => q{OVH SAS},
1388    'pa' => q{Universidad Tecnologica de Panama},
1389    'page' => q{Charleston Road Registry Inc.},
1390    'pamperedchef' => q{The Pampered Chef, Ltd.},
1391    'panasonic' => q{Panasonic Corporation},
1392    'panerai' => q{Richemont DNS Inc.},
1393    'paris' => q{City of Paris},
1394    'pars' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.},
1395    'partners' => q{Magic Glen, LLC},
1396    'parts' => q{Sea Goodbye, LLC},
1397    'party' => q{Blue Sky Registry Limited},
1398    'passagens' => q{Travel Reservations SRL},
1399    'pay' => q{Amazon Registry Services, Inc.},
1400    'pccw' => q{PCCW Enterprises Limited},
1401    'pe' => q{Red Cientifica Peruana},
1402    'pet' => q{Afilias plc},
1403    'pf' => q{Gouvernement de la Polynésie française},
1404    'pfizer' => q{Pfizer Inc.},
1405    'pg' => q{PNG DNS Administration - Vice Chancellors Office
1406    The Papua New Guinea University of Technology},
1407    'ph' => q{PH Domain Foundation},
1408    'pharmacy' => q{National Association of Boards of Pharmacy},
1409    'philips' => q{Koninklijke Philips N.V.},
1410    'photo' => q{Uniregistry, Corp.},
1411    'photography' => q{Sugar Glen, LLC},
1412    'photos' => q{Sea Corner, LLC},
1413    'physio' => q{PhysBiz Pty Ltd},
1414    'piaget' => q{Richemont DNS Inc.},
1415    'pics' => q{Uniregistry, Corp.},
1416    'pictet' => q{Pictet Europe S.A.},
1417    'pictures' => q{Foggy Sky, LLC},
1418    'pid' => q{Top Level Spectrum, Inc.},
1419    'pin' => q{Amazon Registry Services, Inc.},
1420    'ping' => q{Ping Registry Provider, Inc.},
1421    'pink' => q{Afilias Limited},
1422    'pioneer' => q{Pioneer Corporation},
1423    'pizza' => q{Foggy Moon, LLC},
1424    'pk' => q{PKNIC},
1425    'pl' => q{Research and Academic Computer Network},
1426    'place' => q{Snow Galley, LLC},
1427    'play' => q{Charleston Road Registry Inc.},
1428    'playstation' => q{Sony Computer Entertainment Inc.},
1429    'plumbing' => q{Spring Tigers, LLC},
1430    'plus' => q{Sugar Mill, LLC},
1431    'pm' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)},
1432    'pn' => q{Pitcairn Island Administration},
1433    'pnc' => q{PNC Domain Co., LLC},
1434    'pohl' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG},
1435    'poker' => q{Afilias Domains No. 5 Limited},
1436    'politie' => q{Politie Nederland},
1437    'porn' => q{ICM Registry PN LLC},
1438    'post' => q{Universal Postal Union},
1439    'pr' => q{Gauss Research Laboratory Inc.},
1440    'pramerica' => q{Prudential Financial, Inc.},
1441    'praxi' => q{Praxi S.p.A.},
1442    'press' => q{DotPress Inc.},
1443    'prime' => q{Amazon Registry Services, Inc.},
1444    'pro' => q{Registry Services Corporation - dba RegistryPro},
1445    'prod' => q{Charleston Road Registry Inc.},
1446    'productions' => q{Magic Birch, LLC},
1447    'prof' => q{Charleston Road Registry Inc.},
1448    'progressive' => q{Progressive Casualty Insurance Company},
1449    'promo' => q{Afilias plc},
1450    'properties' => q{Big Pass, LLC},
1451    'property' => q{Uniregistry, Corp.},
1452    'protection' => q{XYZ.COM LLC},
1453    'pru' => q{Prudential Financial, Inc.},
1454    'prudential' => q{Prudential Financial, Inc.},
1455    'ps' => q{Ministry Of Telecommunications & - Information Technology,
1456    Government Computer Center.},
1457    'pt' => q{Associação DNS.PT},
1458    'pub' => q{United TLD Holdco Ltd.},
1459    'pw' => q{Micronesia Investment and Development Corporation},
1460    'pwc' => q{PricewaterhouseCoopers LLP},
1461    'py' => q{NIC-PY},
1462    'qa' => q{Communications Regulatory Authority},
1463    'qpon' => q{dotCOOL, Inc.},
1464    'quebec' => q{PointQuébec Inc},
1465    'quest' => q{Quest ION Limited},
1466    'qvc' => q{QVC, Inc.},
1467    'racing' => q{Premier Registry Limited},
1468    'raid' => q{Johnson Shareholdings, Inc.},
1469    're' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)},
1470    'read' => q{Amazon Registry Services, Inc.},
1471    'realestate' => q{dotRealEstate LLC},
1472    'realtor' => q{Real Estate Domains LLC},
1473    'realty' => q{Fegistry, LLC},
1474    'recipes' => q{Grand Island, LLC},
1475    'red' => q{Afilias Limited},
1476    'redstone' => q{Redstone Haute Couture Co., Ltd.},
1477    'redumbrella' => q{Travelers TLD, LLC},
1478    'rehab' => q{United TLD Holdco Ltd.},
1479    'reise' => q{Foggy Way, LLC},
1480    'reisen' => q{New Cypress, LLC},
1481    'reit' => q{National Association of Real Estate Investment Trusts, Inc.},
1482    'ren' => q{Beijing Qianxiang Wangjing Technology Development Co., Ltd.},
1483    'rent' => q{XYZ.COM LLC},
1484    'rentals' => q{Big Hollow,LLC},
1485    'repair' => q{Lone Sunset, LLC},
1486    'report' => q{Binky Glen, LLC},
1487    'republican' => q{United TLD Holdco Ltd.},
1488    'rest' => q{Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable},
1489    'restaurant' => q{Snow Avenue, LLC},
1490    'review' => q{dot Review Limited},
1491    'reviews' => q{United TLD Holdco, Ltd.},
1492    'rexroth' => q{Robert Bosch GMBH},
1493    'rich' => q{I-REGISTRY Ltd., Niederlassung Deutschland},
1494    'richardli' => q{Pacific Century Asset Management (HK) Limited},
1495    'ricoh' => q{Ricoh Company, Ltd.},
1496    'rightathome' => q{Johnson Shareholdings, Inc.},
1497    'rio' => q{Empresa Municipal de Informática SA - IPLANRIO},
1498    'rip' => q{United TLD Holdco Ltd.},
1499    'ro' => q{National Institute for R&D in Informatics},
1500    'rocher' => q{Ferrero Trading Lux S.A.},
1501    'rocks' => q{United TLD Holdco, LTD.},
1502    'rodeo' => q{Top Level Domain Holdings Limited},
1503    'rogers' => q{Rogers Communications Partnership},
1504    'room' => q{Amazon Registry Services, Inc.},
1505    'rs' => q{Serbian National Internet Domain Registry (RNIDS)},
1506    'rsvp' => q{Charleston Road Registry Inc.},
1507    'ru' => q{Coordination Center for TLD RU},
1508    'ruhr' => q{regiodot GmbH & Co. KG},
1509    'run' => q{Snow Park, LLC},
1510    'rw' => q{Rwanda Information Communication and Technology Association (RICTA)},
1511    'rwe' => q{RWE AG},
1512    'ryukyu' => q{BRregistry, Inc.},
1513    'sa' => q{Communications and Information Technology Commission},
1514    'saarland' => q{dotSaarland GmbH},
1515    'safe' => q{Amazon Registry Services, Inc.},
1516    'safety' => q{Safety Registry Services, LLC.},
1517    'sakura' => q{SAKURA Internet Inc.},
1518    'sale' => q{United TLD Holdco, Ltd},
1519    'salon' => q{Outer Orchard, LLC},
1520    'samsclub' => q{Wal-Mart Stores, Inc.},
1521    'samsung' => q{SAMSUNG SDS CO., LTD},
1522    'sandvik' => q{Sandvik AB},
1523    'sandvikcoromant' => q{Sandvik AB},
1524    'sanofi' => q{Sanofi},
1525    'sap' => q{SAP AG},
1526    'sapo' => q{PT Comunicacoes S.A.},
1527    'sarl' => q{Delta Orchard, LLC},
1528    'sas' => q{Research IP LLC},
1529    'save' => q{Amazon Registry Services, Inc.},
1530    'saxo' => q{Saxo Bank A/S},
1531    'sb' => q{Solomon Telekom Company Limited},
1532    'sbi' => q{STATE BANK OF INDIA},
1533    'sbs' => q{SPECIAL BROADCASTING SERVICE CORPORATION},
1534    'sc' => q{VCS Pty Ltd},
1535    'sca' => q{SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)},
1536    'scb' => q{The Siam Commercial Bank Public Company Limited ("SCB")},
1537    'schaeffler' => q{Schaeffler Technologies AG & Co. KG},
1538    'schmidt' => q{SALM S.A.S.},
1539    'scholarships' => q{Scholarships.com, LLC},
1540    'school' => q{Little Galley, LLC},
1541    'schule' => q{Outer Moon, LLC},
1542    'schwarz' => q{Schwarz Domains und Services GmbH & Co. KG},
1543    'science' => q{dot Science Limited},
1544    'scjohnson' => q{Johnson Shareholdings, Inc.},
1545    'scor' => q{SCOR SE},
1546    'scot' => q{Dot Scot Registry Limited},
1547    'sd' => q{Sudan Internet Society},
1548    'se' => q{The Internet Infrastructure Foundation},
1549    'seat' => q{SEAT, S.A. (Sociedad Unipersonal)},
1550    'secure' => q{Amazon Registry Services, Inc.},
1551    'security' => q{XYZ.COM LLC},
1552    'seek' => q{Seek Limited},
1553    'select' => q{iSelect Ltd},
1554    'sener' => q{Sener Ingeniería y Sistemas, S.A.},
1555    'services' => q{Fox Castle, LLC},
1556    'ses' => q{SES},
1557    'seven' => q{Seven West Media Ltd},
1558    'sew' => q{SEW-EURODRIVE GmbH & Co KG},
1559    'sex' => q{ICM Registry SX LLC},
1560    'sexy' => q{Uniregistry, Corp.},
1561    'sfr' => q{Societe Francaise du Radiotelephone - SFR},
1562    'sg' => q{Singapore Network Information Centre (SGNIC) Pte Ltd},
1563    'sh' => q{Government of St. Helena},
1564    'shangrila' => q{Shangri‐La International Hotel Management Limited},
1565    'sharp' => q{Sharp Corporation},
1566    'shaw' => q{Shaw Cablesystems G.P.},
1567    'shell' => q{Shell Information Technology International Inc},
1568    'shia' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.},
1569    'shiksha' => q{Afilias Limited},
1570    'shoes' => q{Binky Galley, LLC},
1571    'shop' => q{GMO Registry, Inc.},
1572    'shopping' => q{Over Keep, LLC},
1573    'shouji' => q{QIHOO 360 TECHNOLOGY CO. LTD.},
1574    'show' => q{Snow Beach, LLC},
1575    'showtime' => q{CBS Domains Inc.},
1576    'shriram' => q{Shriram Capital Ltd.},
1577    'si' => q{Academic and Research Network of Slovenia (ARNES)},
1578    'silk' => q{Amazon Registry Services, Inc.},
1579    'sina' => q{Sina Corporation},
1580    'singles' => q{Fern Madison, LLC},
1581    'site' => q{DotSite Inc.},
1582    'sj' => q{UNINETT Norid A/S},
1583    'sk' => q{SK-NIC, a.s.},
1584    'ski' => q{STARTING DOT LIMITED},
1585    'skin' => q{L'Oréal},
1586    'sky' => q{Sky International AG},
1587    'skype' => q{Microsoft Corporation},
1588    'sl' => q{Sierratel},
1589    'sling' => q{Hughes Satellite Systems Corporation},
1590    'sm' => q{Telecom Italia San Marino S.p.A.},
1591    'smart' => q{Smart Communications, Inc. (SMART)},
1592    'smile' => q{Amazon Registry Services, Inc.},
1593    'sn' => q{Universite Cheikh Anta Diop - NIC Senegal},
1594    'sncf' => q{SNCF (Société Nationale des Chemins de fer Francais)},
1595    'so' => q{Ministry of Post and Telecommunications},
1596    'soccer' => q{Foggy Shadow, LLC},
1597    'social' => q{United TLD Holdco Ltd.},
1598    'softbank' => q{SoftBank Group Corp.},
1599    'software' => q{United TLD Holdco, Ltd},
1600    'sohu' => q{Sohu.com Limited},
1601    'solar' => q{Ruby Town, LLC},
1602    'solutions' => q{Silver Cover, LLC},
1603    'song' => q{Amazon Registry Services, Inc.},
1604    'sony' => q{Sony Corporation},
1605    'soy' => q{Charleston Road Registry Inc.},
1606    'space' => q{DotSpace Inc.},
1607    'spiegel' => q{SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG},
1608    'spot' => q{Amazon Registry Services, Inc.},
1609    'spreadbetting' => q{DOTSPREADBETTING REGISTRY LTD},
1610    'sr' => q{Telesur},
1611    'srl' => q{InterNetX Corp.},
1612    'srt' => q{FCA US LLC.},
1613    'ss' => q{Not assigned},
1614    'st' => q{Tecnisys},
1615    'stada' => q{STADA Arzneimittel AG},
1616    'staples' => q{Staples, Inc.},
1617    'star' => q{Star India Private Limited},
1618    'starhub' => q{StarHub Limited},
1619    'statebank' => q{STATE BANK OF INDIA},
1620    'statefarm' => q{State Farm Mutual Automobile Insurance Company},
1621    'statoil' => q{Statoil ASA},
1622    'stc' => q{Saudi Telecom Company},
1623    'stcgroup' => q{Saudi Telecom Company},
1624    'stockholm' => q{Stockholms kommun},
1625    'storage' => q{Self Storage Company LLC},
1626    'store' => q{DotStore Inc.},
1627    'stream' => q{dot Stream Limited},
1628    'studio' => q{United TLD Holdco Ltd.},
1629    'study' => q{OPEN UNIVERSITIES AUSTRALIA PTY LTD},
1630    'style' => q{Binky Moon, LLC},
1631    'su' => q{Russian Institute for Development of Public Networks - (ROSNIIROS)},
1632    'sucks' => q{Vox Populi Registry Ltd.},
1633    'supplies' => q{Atomic Fields, LLC},
1634    'supply' => q{Half Falls, LLC},
1635    'support' => q{Grand Orchard, LLC},
1636    'surf' => q{Top Level Domain Holdings Limited},
1637    'surgery' => q{Tin Avenue, LLC},
1638    'suzuki' => q{SUZUKI MOTOR CORPORATION},
1639    'sv' => q{SVNet},
1640    'swatch' => q{The Swatch Group Ltd},
1641    'swiftcover' => q{Swiftcover Insurance Services Limited},
1642    'swiss' => q{Swiss Confederation},
1643    'sx' => q{SX Registry SA B.V.},
1644    'sy' => q{National Agency for Network Services (NANS)},
1645    'sydney' => q{State of New South Wales, Department of Premier and Cabinet},
1646    'symantec' => q{Symantec Corporation},
1647    'systems' => q{Dash Cypress, LLC},
1648    'sz' => q{University of Swaziland - Department of Computer Science},
1649    'tab' => q{Tabcorp Holdings Limited},
1650    'taipei' => q{Taipei City Government},
1651    'talk' => q{Amazon Registry Services, Inc.},
1652    'taobao' => q{Alibaba Group Holding Limited},
1653    'target' => q{Target Domain Holdings, LLC},
1654    'tatamotors' => q{Tata Motors Ltd},
1655    'tatar' => q{Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"},
1656    'tattoo' => q{Uniregistry, Corp.},
1657    'tax' => q{Storm Orchard, LLC},
1658    'taxi' => q{Pine Falls, LLC},
1659    'tc' => q{Melrex TC},
1660    'tci' => q{Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.},
1661    'td' => q{Société des télécommunications du Tchad (SOTEL TCHAD)},
1662    'tdk' => q{TDK Corporation},
1663    'team' => q{Atomic Lake, LLC},
1664    'tech' => q{Dot Tech LLC},
1665    'technology' => q{Auburn Falls, LLC},
1666    'tel' => q{Telnic Ltd.},
1667    'telecity' => q{TelecityGroup International Limited},
1668    'telefonica' => q{Telefónica S.A.},
1669    'temasek' => q{Temasek Holdings (Private) Limited},
1670    'tennis' => q{Cotton Bloom, LLC},
1671    'teva' => q{Teva Pharmaceutical Industries Limited},
1672    'tf' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)},
1673    'tg' => q{Autorite de Reglementation des secteurs de Postes et de Telecommunications (ART&P)},
1674    'th' => q{Thai Network Information Center Foundation},
1675    'thd' => q{Homer TLC, Inc.},
1676    'theater' => q{Blue Tigers, LLC},
1677    'theatre' => q{XYZ.COM LLC},
1678    'tiaa' => q{Teachers Insurance and Annuity Association of America},
1679    'tickets' => q{Accent Media Limited},
1680    'tienda' => q{Victor Manor, LLC},
1681    'tiffany' => q{Tiffany and Company},
1682    'tips' => q{Corn Willow, LLC},
1683    'tires' => q{Dog Edge, LLC},
1684    'tirol' => q{punkt Tirol GmbH},
1685    'tj' => q{Information Technology Center},
1686    'tjmaxx' => q{The TJX Companies, Inc.},
1687    'tjx' => q{The TJX Companies, Inc.},
1688    'tk' => q{Telecommunication Tokelau Corporation (Teletok)},
1689    'tkmaxx' => q{The TJX Companies, Inc.},
1690    'tl' => q{Ministry of Transport and  Communications; National Division of  Information and Technology},
1691    'tm' => q{TM Domain Registry Ltd},
1692    'tmall' => q{Alibaba Group Holding Limited},
1693    'tn' => q{Agence Tunisienne d'Internet},
1694    'to' => q{Government of the Kingdom of Tonga - H.R.H. Crown Prince Tupouto'a
1695    c/o Consulate of Tonga},
1696    'today' => q{Pearl Woods, LLC},
1697    'tokyo' => q{GMO Registry, Inc.},
1698    'tools' => q{Pioneer North, LLC},
1699    'top' => q{Jiangsu Bangning Science & Technology Co.,Ltd.},
1700    'toray' => q{Toray Industries, Inc.},
1701    'toshiba' => q{TOSHIBA Corporation},
1702    'total' => q{Total SA},
1703    'tours' => q{Sugar Station, LLC},
1704    'town' => q{Koko Moon, LLC},
1705    'toyota' => q{TOYOTA MOTOR CORPORATION},
1706    'toys' => q{Pioneer Orchard, LLC},
1707    'tp' => q{Retired},
1708    'tr' => q{Middle East Technical University - Department of Computer Engineering},
1709    'trade' => q{Elite Registry Limited},
1710    'trading' => q{DOTTRADING REGISTRY LTD},
1711    'training' => q{Wild Willow, LLC},
1712    'travel' => q{Tralliance Registry Management Company, LLC.},
1713    'travelchannel' => q{Lifestyle Domain Holdings, Inc.},
1714    'travelers' => q{Travelers TLD, LLC},
1715    'travelersinsurance' => q{Travelers TLD, LLC},
1716    'trust' => q{Artemis Internet Inc},
1717    'trv' => q{Travelers TLD, LLC},
1718    'tt' => q{University of the West Indies - Faculty of Engineering},
1719    'tube' => q{Latin American Telecom LLC},
1720    'tui' => q{TUI AG},
1721    'tunes' => q{Amazon Registry Services, Inc.},
1722    'tushu' => q{Amazon Registry Services, Inc.},
1723    'tv' => q{Ministry of Finance and Tourism},
1724    'tvs' => q{T V SUNDRAM IYENGAR  & SONS PRIVATE LIMITED},
1725    'tw' => q{Taiwan Network Information Center (TWNIC)},
1726    'tz' => q{Tanzania Network Information Centre (tzNIC)},
1727    'ua' => q{Hostmaster Ltd.},
1728    'ubank' => q{National Australia Bank Limited},
1729    'ubs' => q{UBS AG},
1730    'uconnect' => q{FCA US LLC.},
1731    'ug' => q{Uganda Online Ltd.},
1732    'uk' => q{Nominet UK},
1733    'um' => q{Not assigned},
1734    'unicom' => q{China United Network Communications Corporation Limited},
1735    'university' => q{Little Station, LLC},
1736    'uno' => q{Dot Latin LLC},
1737    'uol' => q{UBN INTERNET LTDA.},
1738    'ups' => q{UPS Market Driver, Inc.},
1739    'us' => q{NeuStar, Inc.},
1740    'uy' => q{SeCIU - Universidad de la Republica},
1741    'uz' => q{Computerization and Information Technologies Developing Center - UZINFOCOM},
1742    'va' => q{Holy See Secretariat of State Department of Telecommunications},
1743    'vacations' => q{Atomic Tigers, LLC},
1744    'vana' => q{Lifestyle Domain Holdings, Inc.},
1745    'vanguard' => q{The Vanguard Group, Inc.},
1746    'vc' => q{Ministry of Telecommunications, Science, Technology and Industry},
1747    've' => q{Comisión Nacional de Telecomunicaciones (CONATEL)},
1748    'vegas' => q{Dot Vegas, Inc.},
1749    'ventures' => q{Binky Lake, LLC},
1750    'verisign' => q{VeriSign, Inc.},
1751    'vermögensberater' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG},
1752    'vermögensberatung' => q{Deutsche Vermögensberatung Aktiengesellschaft DVAG},
1753    'versicherung' => q{dotversicherung-registry GmbH},
1754    'vet' => q{United TLD Holdco, Ltd},
1755    'vg' => q{Telecommunications Regulatory Commission of the Virgin Islands},
1756    'vi' => q{Virgin Islands Public Telcommunications System - c/o COBEX Internet Services},
1757    'viajes' => q{Black Madison, LLC},
1758    'video' => q{United TLD Holdco, Ltd},
1759    'vig' => q{VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe},
1760    'viking' => q{Viking River Cruises (Bermuda) Ltd.},
1761    'villas' => q{New Sky, LLC},
1762    'vin' => q{Holly Shadow, LLC},
1763    'vip' => q{Minds + Machines Group Limited},
1764    'virgin' => q{Virgin Enterprises Limited},
1765    'visa' => q{Visa Worldwide Pte. Limited},
1766    'vision' => q{Koko Station, LLC},
1767    'vista' => q{Vistaprint Limited},
1768    'vistaprint' => q{Vistaprint Limited},
1769    'viva' => q{Saudi Telecom Company},
1770    'vivo' => q{Telefonica Brasil S.A.},
1771    'vlaanderen' => q{DNS.be vzw},
1772    'vn' => q{Ministry of Information and Communications of Socialist Republic of Viet Nam},
1773    'vodka' => q{Top Level Domain Holdings Limited},
1774    'volkswagen' => q{Volkswagen Group of America Inc.},
1775    'vote' => q{Monolith Registry LLC},
1776    'voting' => q{Valuetainment Corp.},
1777    'voto' => q{Monolith Registry LLC},
1778    'voyage' => q{Ruby House, LLC},
1779    'vu' => q{Telecom Vanuatu Limited},
1780    'vuelos' => q{Travel Reservations SRL},
1781    'wales' => q{Nominet UK},
1782    'walmart' => q{Wal-Mart Stores, Inc.},
1783    'walter' => q{Sandvik AB},
1784    'wang' => q{Zodiac Registry Limited},
1785    'wanggou' => q{Amazon Registry Services, Inc.},
1786    'warman' => q{Weir Group IP Limited},
1787    'watch' => q{Sand Shadow, LLC},
1788    'watches' => q{Richemont DNS Inc.},
1789    'weather' => q{The Weather Channel, LLC},
1790    'weatherchannel' => q{The Weather Channel, LLC},
1791    'webcam' => q{dot Webcam Limited},
1792    'weber' => q{Saint-Gobain Weber SA},
1793    'website' => q{DotWebsite Inc.},
1794    'wed' => q{Atgron, Inc.},
1795    'wedding' => q{Top Level Domain Holdings Limited},
1796    'weibo' => q{Sina Corporation},
1797    'weir' => q{Weir Group IP Limited},
1798    'wf' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)},
1799    'whoswho' => q{Who's Who Registry},
1800    'wien' => q{punkt.wien GmbH},
1801    'wiki' => q{Top Level Design, LLC},
1802    'williamhill' => q{William Hill Organization Limited},
1803    'win' => q{First Registry Limited},
1804    'windows' => q{Microsoft Corporation},
1805    'wine' => q{June Station, LLC},
1806    'winners' => q{The TJX Companies, Inc.},
1807    'wme' => q{William Morris Endeavor Entertainment, LLC},
1808    'wolterskluwer' => q{Wolters Kluwer N.V.},
1809    'woodside' => q{Woodside Petroleum Limited},
1810    'work' => q{Top Level Domain Holdings Limited},
1811    'works' => q{Little Dynamite, LLC},
1812    'world' => q{Bitter Fields, LLC},
1813    'ws' => q{Government of Samoa Ministry of Foreign Affairs & Trade},
1814    'wtc' => q{World Trade Centers Association, Inc.},
1815    'wtf' => q{Hidden Way, LLC},
1816    'xbox' => q{Microsoft Corporation},
1817    'xerox' => q{Xerox DNHC LLC},
1818    'xfinity' => q{Comcast IP Holdings I, LLC},
1819    'xihuan' => q{QIHOO 360 TECHNOLOGY CO. LTD.},
1820    'xin' => q{Elegant Leader Limited},
1821    'xperia' => q{Sony Mobile Communications AB},
1822    'xxx' => q{ICM Registry LLC},
1823    'xyz' => q{XYZ.COM LLC},
1824    'yachts' => q{DERYachts, LLC},
1825    'yahoo' => q{Yahoo! Domain Services Inc.},
1826    'yamaxun' => q{Amazon Registry Services, Inc.},
1827    'yandex' => q{YANDEX, LLC},
1828    'ye' => q{TeleYemen},
1829    'yodobashi' => q{YODOBASHI CAMERA CO.,LTD.},
1830    'yoga' => q{Top Level Domain Holdings Limited},
1831    'yokohama' => q{GMO Registry, Inc.},
1832    'you' => q{Amazon Registry Services, Inc.},
1833    'youtube' => q{Charleston Road Registry Inc.},
1834    'yt' => q{Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)},
1835    'yun' => q{QIHOO 360 TECHNOLOGY CO. LTD.},
1836    'za' => q{ZA Domain Name Authority},
1837    'zappos' => q{Amazon Registry Services, Inc.},
1838    'zara' => q{Industria de Diseño Textil, S.A. (INDITEX, S.A.)},
1839    'zero' => q{Amazon Registry Services, Inc.},
1840    'zip' => q{Charleston Road Registry Inc.},
1841    'zippo' => q{Zadco Company},
1842    'zm' => q{Zambia Information and Communications Technology Authority (ZICTA)},
1843    'zone' => q{Outer Falls, LLC},
1844    'zuerich' => q{Kanton Zürich (Canton of Zurich)},
1845    'zw' => q{Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ)},
1846    'δοκιμή' => q{Internet Assigned Numbers Authority},
1847    'ελ' => q{ICS-FORTH GR},
1848    'бг' => q{Imena.BG AD},
1849    'бел' => q{Reliable Software, Ltd.},
1850    'дети' => q{The Foundation for Network Initiatives “The Smart Internet”},
1851    'ею' => q{EURid vzw/asbl},
1852    'испытание' => q{Internet Assigned Numbers Authority},
1853    'ком' => q{VeriSign Sarl},
1854    'мкд' => q{Macedonian Academic Research Network Skopje},
1855    'мон' => q{Datacom Co.,Ltd},
1856    'москва' => q{Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)},
1857    'онлайн' => q{CORE Association},
1858    'орг' => q{Public Interest Registry},
1859    'рус' => q{Rusnames Limited},
1860    'рф' => q{Coordination Center for TLD RU},
1861    'сайт' => q{CORE Association},
1862    'срб' => q{Serbian National Internet Domain Registry (RNIDS)},
1863    'укр' => q{Ukrainian Network Information Centre (UANIC), Inc.},
1864    'қаз' => q{Association of IT Companies of Kazakhstan},
1865    'հայ' => q{"Internet Society" Non-governmental Organization},
1866    'कॉम' => q{VeriSign Sarl},
1867    'नेट' => q{VeriSign Sarl},
1868    'परीक्षा' => q{Internet Assigned Numbers Authority},
1869    'भारत' => q{National Internet Exchange of India},
1870    'भारतम्' => q{Not assigned},
1871    'भारोत' => q{Not assigned},
1872    'संगठन' => q{Public Interest Registry},
1873    'বাংলা' => q{Not assigned},
1874    'ভারত' => q{National Internet Exchange of India},
1875    'ভাৰত' => q{Not assigned},
1876    'ਭਾਰਤ' => q{National Internet Exchange of India},
1877    'ભારત' => q{National Internet Exchange of India},
1878    'ଭାରତ' => q{Not assigned},
1879    'இந்தியா' => q{National Internet Exchange of India},
1880    'இலங்கை' => q{LK Domain Registry},
1881    'சிங்கப்பூர்' => q{Singapore Network Information Centre (SGNIC) Pte Ltd},
1882    'பரிட்சை' => q{Internet Assigned Numbers Authority},
1883    'భారత్' => q{National Internet Exchange of India},
1884    'ಭಾರತ' => q{Not assigned},
1885    'ഭാരതം' => q{Not assigned},
1886    'ලංකා' => q{LK Domain Registry},
1887    'คอม' => q{VeriSign Sarl},
1888    'ไทย' => q{Thai Network Information Center Foundation},
1889    'გე' => q{Information Technologies Development Center (ITDC)},
1890    'みんな' => q{Charleston Road Registry Inc.},
1891    'クラウド' => q{Amazon Registry Services, Inc.},
1892    'グーグル' => q{Charleston Road Registry Inc.},
1893    'コム' => q{VeriSign Sarl},
1894    'ストア' => q{Amazon Registry Services, Inc.},
1895    'セール' => q{Amazon Registry Services, Inc.},
1896    'テスト' => q{Internet Assigned Numbers Authority},
1897    'ファッション' => q{Amazon Registry Services, Inc.},
1898    'ポイント' => q{Amazon Registry Services, Inc.},
1899    '世界' => q{Stable Tone Limited},
1900    '中信' => q{CITIC Group Corporation},
1901    '中国' => q{China Internet Network Information Center (CNNIC)},
1902    '中國' => q{China Internet Network Information Center (CNNIC)},
1903    '中文网' => q{TLD REGISTRY LIMITED},
1904    '企业' => q{Dash McCook, LLC},
1905    '佛山' => q{Guangzhou YU Wei Information Technology Co., Ltd.},
1906    '信息' => q{Beijing Tele-info Network Technology Co., Ltd.},
1907    '健康' => q{Stable Tone Limited},
1908    '八卦' => q{Zodiac Scorpio Limited},
1909    '公司' => q{Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)},
1910    '公益' => q{China Organizational Name Administration Center},
1911    '台湾' => q{Taiwan Network Information Center (TWNIC)},
1912    '台灣' => q{Taiwan Network Information Center (TWNIC)},
1913    '商城' => q{Zodiac Aquarius Limited},
1914    '商店' => q{Wild Island, LLC},
1915    '商标' => q{HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED},
1916    '嘉里' => q{Kerry Trading Co. Limited},
1917    '嘉里大酒店' => q{Kerry Trading Co. Limited},
1918    '在线' => q{TLD REGISTRY LIMITED},
1919    '大众汽车' => q{Volkswagen (China) Investment Co., Ltd.},
1920    '大拿' => q{VeriSign Sarl},
1921    '娱乐' => q{Will Bloom, LLC},
1922    '家電' => q{Amazon Registry Services, Inc.},
1923    '工行' => q{Industrial and Commercial Bank of China Limited},
1924    '广东' => q{Guangzhou YU Wei Information Technology Co., Ltd.},
1925    '微博' => q{Sina Corporation},
1926    '慈善' => q{Excellent First Limited},
1927    '我爱你' => q{Tycoon Treasure Limited},
1928    '手机' => q{Beijing RITT-Net Technology Development Co., Ltd},
1929    '手表' => q{Richemont DNS Inc.},
1930    '政务' => q{China Organizational Name Administration Center},
1931    '政府' => q{Net-Chinese Co., Ltd.},
1932    '新加坡' => q{Singapore Network Information Centre (SGNIC) Pte Ltd},
1933    '新闻' => q{Xinhua News Agency Guangdong Branch 新华通讯社广东分社},
1934    '时尚' => q{RISE VICTORY LIMITED},
1935    '書籍' => q{Amazon Registry Services, Inc.},
1936    '机构' => q{Public Interest Registry},
1937    '测试' => q{Internet Assigned Numbers Authority},
1938    '淡马锡' => q{Temasek Holdings (Private) Limited},
1939    '測試' => q{Internet Assigned Numbers Authority},
1940    '游戏' => q{Spring Fields, LLC},
1941    '澳門' => q{Bureau of Telecommunications Regulation (DSRT)},
1942    '点看' => q{VeriSign Sarl},
1943    '珠宝' => q{Richemont DNS Inc.},
1944    '移动' => q{Afilias Limited},
1945    '组织机构' => q{Public Interest Registry},
1946    '网址' => q{KNET Co., Ltd},
1947    '网店' => q{Zodiac Libra Limited},
1948    '网站' => q{Global Website TLD Asia Limited},
1949    '网络' => q{Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)},
1950    '联通' => q{China United Network Communications Corporation Limited},
1951    '诺基亚' => q{Nokia Corporation},
1952    '谷歌' => q{Charleston Road Registry Inc.},
1953    '购物' => q{Minds + Machines Group Limited},
1954    '集团' => q{Eagle Horizon Limited},
1955    '電訊盈科' => q{PCCW Enterprises Limited},
1956    '飞利浦' => q{Koninklijke Philips N.V.},
1957    '食品' => q{Amazon Registry Services, Inc.},
1958    '餐厅' => q{HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED},
1959    '香格里拉' => q{Shangri‐La International Hotel Management Limited},
1960    '香港' => q{Hong Kong Internet Registration Corporation Ltd.},
1961    '닷넷' => q{VeriSign Sarl},
1962    '닷컴' => q{VeriSign Sarl},
1963    '삼성' => q{SAMSUNG SDS CO., LTD},
1964    '테스트' => q{Internet Assigned Numbers Authority},
1965    '한국' => q{KISA (Korea Internet & Security Agency)},
1966  }
1967);
1968
1969my $flat_profile = flatten ( \%tld_profile );
1970
1971sub flatten {
1972  my $hashref = shift;
1973  my %results;
1974  @results{ keys %{ $hashref->{$_} } } = values % { $hashref->{$_} }
1975    for ( keys %$hashref );
1976  return \%results;
1977}
1978
1979sub check_type {
1980  my $type = shift;
1981  croak "unknown TLD type: $type" unless grep { $type eq $_ } TLD_TYPES;
1982  return 1;
1983}
1984
1985=head1 PUBLIC METHODS
1986
1987  Each public function/method is described here.
1988  These are how you should interact with this module.
1989
1990=head3 C<< tlds >>
1991
1992  This routine returns the tlds requested.
1993
1994  my @all_tlds = tlds; #array of tlds
1995  my $all_tlds = tlds; #hashref of tlds and their descriptions
1996
1997  my @cc_tlds = tlds('cc'); #array of just 'cc' type tlds
1998  my $cc_tlds = tlds('cc'); #hashref of just 'cc' type tlds and their descriptions
1999
2000  Valid types are:
2001    cc                 - country code domains
2002    ccidn              - internationalized country code top-level domain
2003    gtld_open          - generic domains that anyone can register
2004    gtld_restricted    - generic restricted registration domains
2005    gtld_new           - new gTLDs
2006    new_open           - recently added generic domains
2007    new_restricted     - new restricted registration domains
2008    reserved           - RFC2606 restricted names, not returned by tlds
2009
2010=cut
2011
2012sub tlds {
2013  my $type = shift;
2014  check_type ( $type ) if $type;
2015  my $results = $type ?
2016    wantarray ? [ keys %{ $tld_profile{$type} } ] :
2017      dclone ( $tld_profile{$type} ) :
2018	wantarray ? [ map { keys %$_ } values %tld_profile ] :
2019	  $flat_profile;
2020  return wantarray ? @$results : $results;
2021}
2022
2023=head3 C<< tld_exists >>
2024
2025  This routine returns true if the given domain exists and false otherwise.
2026
2027  die "no such domain" unless tld_exists($tld); #call without tld type
2028  die "no such domain" unless tld_exists($tld, 'new_open'); #call with tld type
2029
2030=cut
2031
2032sub tld_exists {
2033  my ( $tld, $type )  = ( lc ( $_[0] ), $_[1] );
2034  check_type ( $type ) if $type;
2035  my $result = $type ?
2036    $tld_profile{$type}{$tld} ? 1 : 0 :
2037    $flat_profile->{$tld} ? 1 : 0;
2038  return $result;
2039}
2040
2041=head1 COPYRIGHT
2042
2043  Copyright (c) 2003-2016 Alex Pavlovic, all rights reserved.  This program
2044  is free software; you can redistribute it and/or modify it under the same terms
2045  as Perl itself.
2046
2047=head1 AUTHORS
2048
2049  Alexander Pavlovic <alex.pavlovic@devradius.com>
2050  Ricardo SIGNES <rjbs@cpan.org>
2051
2052=cut
2053
20541;