forked from forease/gotld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.go
8797 lines (8797 loc) · 451 KB
/
data.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// create time: 2019-08-08 20:48:04
package gotld
func initTld() {
tldMap["ac"] = TldItem{Tld: "ac"}
tldMap["com.ac"] = TldItem{Tld: "com.ac"}
tldMap["edu.ac"] = TldItem{Tld: "edu.ac"}
tldMap["gov.ac"] = TldItem{Tld: "gov.ac"}
tldMap["net.ac"] = TldItem{Tld: "net.ac"}
tldMap["mil.ac"] = TldItem{Tld: "mil.ac"}
tldMap["org.ac"] = TldItem{Tld: "org.ac"}
tldMap["ad"] = TldItem{Tld: "ad"}
tldMap["nom.ad"] = TldItem{Tld: "nom.ad"}
tldMap["ae"] = TldItem{Tld: "ae"}
tldMap["co.ae"] = TldItem{Tld: "co.ae"}
tldMap["net.ae"] = TldItem{Tld: "net.ae"}
tldMap["org.ae"] = TldItem{Tld: "org.ae"}
tldMap["sch.ae"] = TldItem{Tld: "sch.ae"}
tldMap["ac.ae"] = TldItem{Tld: "ac.ae"}
tldMap["gov.ae"] = TldItem{Tld: "gov.ae"}
tldMap["mil.ae"] = TldItem{Tld: "mil.ae"}
tldMap["aero"] = TldItem{Tld: "aero"}
tldMap["accident-investigation.aero"] = TldItem{Tld: "accident-investigation.aero"}
tldMap["accident-prevention.aero"] = TldItem{Tld: "accident-prevention.aero"}
tldMap["aerobatic.aero"] = TldItem{Tld: "aerobatic.aero"}
tldMap["aeroclub.aero"] = TldItem{Tld: "aeroclub.aero"}
tldMap["aerodrome.aero"] = TldItem{Tld: "aerodrome.aero"}
tldMap["agents.aero"] = TldItem{Tld: "agents.aero"}
tldMap["aircraft.aero"] = TldItem{Tld: "aircraft.aero"}
tldMap["airline.aero"] = TldItem{Tld: "airline.aero"}
tldMap["airport.aero"] = TldItem{Tld: "airport.aero"}
tldMap["air-surveillance.aero"] = TldItem{Tld: "air-surveillance.aero"}
tldMap["airtraffic.aero"] = TldItem{Tld: "airtraffic.aero"}
tldMap["air-traffic-control.aero"] = TldItem{Tld: "air-traffic-control.aero"}
tldMap["ambulance.aero"] = TldItem{Tld: "ambulance.aero"}
tldMap["amusement.aero"] = TldItem{Tld: "amusement.aero"}
tldMap["association.aero"] = TldItem{Tld: "association.aero"}
tldMap["author.aero"] = TldItem{Tld: "author.aero"}
tldMap["ballooning.aero"] = TldItem{Tld: "ballooning.aero"}
tldMap["broker.aero"] = TldItem{Tld: "broker.aero"}
tldMap["caa.aero"] = TldItem{Tld: "caa.aero"}
tldMap["cargo.aero"] = TldItem{Tld: "cargo.aero"}
tldMap["catering.aero"] = TldItem{Tld: "catering.aero"}
tldMap["certification.aero"] = TldItem{Tld: "certification.aero"}
tldMap["championship.aero"] = TldItem{Tld: "championship.aero"}
tldMap["charter.aero"] = TldItem{Tld: "charter.aero"}
tldMap["civilaviation.aero"] = TldItem{Tld: "civilaviation.aero"}
tldMap["club.aero"] = TldItem{Tld: "club.aero"}
tldMap["conference.aero"] = TldItem{Tld: "conference.aero"}
tldMap["consultant.aero"] = TldItem{Tld: "consultant.aero"}
tldMap["consulting.aero"] = TldItem{Tld: "consulting.aero"}
tldMap["control.aero"] = TldItem{Tld: "control.aero"}
tldMap["council.aero"] = TldItem{Tld: "council.aero"}
tldMap["crew.aero"] = TldItem{Tld: "crew.aero"}
tldMap["design.aero"] = TldItem{Tld: "design.aero"}
tldMap["dgca.aero"] = TldItem{Tld: "dgca.aero"}
tldMap["educator.aero"] = TldItem{Tld: "educator.aero"}
tldMap["emergency.aero"] = TldItem{Tld: "emergency.aero"}
tldMap["engine.aero"] = TldItem{Tld: "engine.aero"}
tldMap["engineer.aero"] = TldItem{Tld: "engineer.aero"}
tldMap["entertainment.aero"] = TldItem{Tld: "entertainment.aero"}
tldMap["equipment.aero"] = TldItem{Tld: "equipment.aero"}
tldMap["exchange.aero"] = TldItem{Tld: "exchange.aero"}
tldMap["express.aero"] = TldItem{Tld: "express.aero"}
tldMap["federation.aero"] = TldItem{Tld: "federation.aero"}
tldMap["flight.aero"] = TldItem{Tld: "flight.aero"}
tldMap["freight.aero"] = TldItem{Tld: "freight.aero"}
tldMap["fuel.aero"] = TldItem{Tld: "fuel.aero"}
tldMap["gliding.aero"] = TldItem{Tld: "gliding.aero"}
tldMap["government.aero"] = TldItem{Tld: "government.aero"}
tldMap["groundhandling.aero"] = TldItem{Tld: "groundhandling.aero"}
tldMap["group.aero"] = TldItem{Tld: "group.aero"}
tldMap["hanggliding.aero"] = TldItem{Tld: "hanggliding.aero"}
tldMap["homebuilt.aero"] = TldItem{Tld: "homebuilt.aero"}
tldMap["insurance.aero"] = TldItem{Tld: "insurance.aero"}
tldMap["journal.aero"] = TldItem{Tld: "journal.aero"}
tldMap["journalist.aero"] = TldItem{Tld: "journalist.aero"}
tldMap["leasing.aero"] = TldItem{Tld: "leasing.aero"}
tldMap["logistics.aero"] = TldItem{Tld: "logistics.aero"}
tldMap["magazine.aero"] = TldItem{Tld: "magazine.aero"}
tldMap["maintenance.aero"] = TldItem{Tld: "maintenance.aero"}
tldMap["media.aero"] = TldItem{Tld: "media.aero"}
tldMap["microlight.aero"] = TldItem{Tld: "microlight.aero"}
tldMap["modelling.aero"] = TldItem{Tld: "modelling.aero"}
tldMap["navigation.aero"] = TldItem{Tld: "navigation.aero"}
tldMap["parachuting.aero"] = TldItem{Tld: "parachuting.aero"}
tldMap["paragliding.aero"] = TldItem{Tld: "paragliding.aero"}
tldMap["passenger-association.aero"] = TldItem{Tld: "passenger-association.aero"}
tldMap["pilot.aero"] = TldItem{Tld: "pilot.aero"}
tldMap["press.aero"] = TldItem{Tld: "press.aero"}
tldMap["production.aero"] = TldItem{Tld: "production.aero"}
tldMap["recreation.aero"] = TldItem{Tld: "recreation.aero"}
tldMap["repbody.aero"] = TldItem{Tld: "repbody.aero"}
tldMap["res.aero"] = TldItem{Tld: "res.aero"}
tldMap["research.aero"] = TldItem{Tld: "research.aero"}
tldMap["rotorcraft.aero"] = TldItem{Tld: "rotorcraft.aero"}
tldMap["safety.aero"] = TldItem{Tld: "safety.aero"}
tldMap["scientist.aero"] = TldItem{Tld: "scientist.aero"}
tldMap["services.aero"] = TldItem{Tld: "services.aero"}
tldMap["show.aero"] = TldItem{Tld: "show.aero"}
tldMap["skydiving.aero"] = TldItem{Tld: "skydiving.aero"}
tldMap["software.aero"] = TldItem{Tld: "software.aero"}
tldMap["student.aero"] = TldItem{Tld: "student.aero"}
tldMap["trader.aero"] = TldItem{Tld: "trader.aero"}
tldMap["trading.aero"] = TldItem{Tld: "trading.aero"}
tldMap["trainer.aero"] = TldItem{Tld: "trainer.aero"}
tldMap["union.aero"] = TldItem{Tld: "union.aero"}
tldMap["workinggroup.aero"] = TldItem{Tld: "workinggroup.aero"}
tldMap["works.aero"] = TldItem{Tld: "works.aero"}
tldMap["af"] = TldItem{Tld: "af"}
tldMap["gov.af"] = TldItem{Tld: "gov.af"}
tldMap["com.af"] = TldItem{Tld: "com.af"}
tldMap["org.af"] = TldItem{Tld: "org.af"}
tldMap["net.af"] = TldItem{Tld: "net.af"}
tldMap["edu.af"] = TldItem{Tld: "edu.af"}
tldMap["ag"] = TldItem{Tld: "ag"}
tldMap["com.ag"] = TldItem{Tld: "com.ag"}
tldMap["org.ag"] = TldItem{Tld: "org.ag"}
tldMap["net.ag"] = TldItem{Tld: "net.ag"}
tldMap["co.ag"] = TldItem{Tld: "co.ag"}
tldMap["nom.ag"] = TldItem{Tld: "nom.ag"}
tldMap["ai"] = TldItem{Tld: "ai"}
tldMap["off.ai"] = TldItem{Tld: "off.ai"}
tldMap["com.ai"] = TldItem{Tld: "com.ai"}
tldMap["net.ai"] = TldItem{Tld: "net.ai"}
tldMap["org.ai"] = TldItem{Tld: "org.ai"}
tldMap["al"] = TldItem{Tld: "al"}
tldMap["com.al"] = TldItem{Tld: "com.al"}
tldMap["edu.al"] = TldItem{Tld: "edu.al"}
tldMap["gov.al"] = TldItem{Tld: "gov.al"}
tldMap["mil.al"] = TldItem{Tld: "mil.al"}
tldMap["net.al"] = TldItem{Tld: "net.al"}
tldMap["org.al"] = TldItem{Tld: "org.al"}
tldMap["am"] = TldItem{Tld: "am"}
tldMap["co.am"] = TldItem{Tld: "co.am"}
tldMap["com.am"] = TldItem{Tld: "com.am"}
tldMap["commune.am"] = TldItem{Tld: "commune.am"}
tldMap["net.am"] = TldItem{Tld: "net.am"}
tldMap["org.am"] = TldItem{Tld: "org.am"}
tldMap["ao"] = TldItem{Tld: "ao"}
tldMap["ed.ao"] = TldItem{Tld: "ed.ao"}
tldMap["gv.ao"] = TldItem{Tld: "gv.ao"}
tldMap["og.ao"] = TldItem{Tld: "og.ao"}
tldMap["co.ao"] = TldItem{Tld: "co.ao"}
tldMap["pb.ao"] = TldItem{Tld: "pb.ao"}
tldMap["it.ao"] = TldItem{Tld: "it.ao"}
tldMap["aq"] = TldItem{Tld: "aq"}
tldMap["ar"] = TldItem{Tld: "ar"}
tldMap["com.ar"] = TldItem{Tld: "com.ar"}
tldMap["edu.ar"] = TldItem{Tld: "edu.ar"}
tldMap["gob.ar"] = TldItem{Tld: "gob.ar"}
tldMap["gov.ar"] = TldItem{Tld: "gov.ar"}
tldMap["int.ar"] = TldItem{Tld: "int.ar"}
tldMap["mil.ar"] = TldItem{Tld: "mil.ar"}
tldMap["musica.ar"] = TldItem{Tld: "musica.ar"}
tldMap["net.ar"] = TldItem{Tld: "net.ar"}
tldMap["org.ar"] = TldItem{Tld: "org.ar"}
tldMap["tur.ar"] = TldItem{Tld: "tur.ar"}
tldMap["arpa"] = TldItem{Tld: "arpa"}
tldMap["e164.arpa"] = TldItem{Tld: "e164.arpa"}
tldMap["in-addr.arpa"] = TldItem{Tld: "in-addr.arpa"}
tldMap["ip6.arpa"] = TldItem{Tld: "ip6.arpa"}
tldMap["iris.arpa"] = TldItem{Tld: "iris.arpa"}
tldMap["uri.arpa"] = TldItem{Tld: "uri.arpa"}
tldMap["urn.arpa"] = TldItem{Tld: "urn.arpa"}
tldMap["as"] = TldItem{Tld: "as"}
tldMap["gov.as"] = TldItem{Tld: "gov.as"}
tldMap["asia"] = TldItem{Tld: "asia"}
tldMap["at"] = TldItem{Tld: "at"}
tldMap["ac.at"] = TldItem{Tld: "ac.at"}
tldMap["co.at"] = TldItem{Tld: "co.at"}
tldMap["gv.at"] = TldItem{Tld: "gv.at"}
tldMap["or.at"] = TldItem{Tld: "or.at"}
tldMap["au"] = TldItem{Tld: "au"}
tldMap["com.au"] = TldItem{Tld: "com.au"}
tldMap["net.au"] = TldItem{Tld: "net.au"}
tldMap["org.au"] = TldItem{Tld: "org.au"}
tldMap["edu.au"] = TldItem{Tld: "edu.au"}
tldMap["gov.au"] = TldItem{Tld: "gov.au"}
tldMap["asn.au"] = TldItem{Tld: "asn.au"}
tldMap["id.au"] = TldItem{Tld: "id.au"}
tldMap["info.au"] = TldItem{Tld: "info.au"}
tldMap["conf.au"] = TldItem{Tld: "conf.au"}
tldMap["oz.au"] = TldItem{Tld: "oz.au"}
tldMap["act.au"] = TldItem{Tld: "act.au"}
tldMap["nsw.au"] = TldItem{Tld: "nsw.au"}
tldMap["nt.au"] = TldItem{Tld: "nt.au"}
tldMap["qld.au"] = TldItem{Tld: "qld.au"}
tldMap["sa.au"] = TldItem{Tld: "sa.au"}
tldMap["tas.au"] = TldItem{Tld: "tas.au"}
tldMap["vic.au"] = TldItem{Tld: "vic.au"}
tldMap["wa.au"] = TldItem{Tld: "wa.au"}
tldMap["act.edu.au"] = TldItem{Tld: "act.edu.au"}
tldMap["catholic.edu.au"] = TldItem{Tld: "catholic.edu.au"}
tldMap["eq.edu.au"] = TldItem{Tld: "eq.edu.au"}
tldMap["nsw.edu.au"] = TldItem{Tld: "nsw.edu.au"}
tldMap["nt.edu.au"] = TldItem{Tld: "nt.edu.au"}
tldMap["qld.edu.au"] = TldItem{Tld: "qld.edu.au"}
tldMap["sa.edu.au"] = TldItem{Tld: "sa.edu.au"}
tldMap["tas.edu.au"] = TldItem{Tld: "tas.edu.au"}
tldMap["vic.edu.au"] = TldItem{Tld: "vic.edu.au"}
tldMap["wa.edu.au"] = TldItem{Tld: "wa.edu.au"}
tldMap["qld.gov.au"] = TldItem{Tld: "qld.gov.au"}
tldMap["sa.gov.au"] = TldItem{Tld: "sa.gov.au"}
tldMap["tas.gov.au"] = TldItem{Tld: "tas.gov.au"}
tldMap["vic.gov.au"] = TldItem{Tld: "vic.gov.au"}
tldMap["wa.gov.au"] = TldItem{Tld: "wa.gov.au"}
tldMap["education.tas.edu.au"] = TldItem{Tld: "education.tas.edu.au"}
tldMap["schools.nsw.edu.au"] = TldItem{Tld: "schools.nsw.edu.au"}
tldMap["aw"] = TldItem{Tld: "aw"}
tldMap["com.aw"] = TldItem{Tld: "com.aw"}
tldMap["ax"] = TldItem{Tld: "ax"}
tldMap["az"] = TldItem{Tld: "az"}
tldMap["com.az"] = TldItem{Tld: "com.az"}
tldMap["net.az"] = TldItem{Tld: "net.az"}
tldMap["int.az"] = TldItem{Tld: "int.az"}
tldMap["gov.az"] = TldItem{Tld: "gov.az"}
tldMap["org.az"] = TldItem{Tld: "org.az"}
tldMap["edu.az"] = TldItem{Tld: "edu.az"}
tldMap["info.az"] = TldItem{Tld: "info.az"}
tldMap["pp.az"] = TldItem{Tld: "pp.az"}
tldMap["mil.az"] = TldItem{Tld: "mil.az"}
tldMap["name.az"] = TldItem{Tld: "name.az"}
tldMap["pro.az"] = TldItem{Tld: "pro.az"}
tldMap["biz.az"] = TldItem{Tld: "biz.az"}
tldMap["ba"] = TldItem{Tld: "ba"}
tldMap["com.ba"] = TldItem{Tld: "com.ba"}
tldMap["edu.ba"] = TldItem{Tld: "edu.ba"}
tldMap["gov.ba"] = TldItem{Tld: "gov.ba"}
tldMap["mil.ba"] = TldItem{Tld: "mil.ba"}
tldMap["net.ba"] = TldItem{Tld: "net.ba"}
tldMap["org.ba"] = TldItem{Tld: "org.ba"}
tldMap["bb"] = TldItem{Tld: "bb"}
tldMap["biz.bb"] = TldItem{Tld: "biz.bb"}
tldMap["co.bb"] = TldItem{Tld: "co.bb"}
tldMap["com.bb"] = TldItem{Tld: "com.bb"}
tldMap["edu.bb"] = TldItem{Tld: "edu.bb"}
tldMap["gov.bb"] = TldItem{Tld: "gov.bb"}
tldMap["info.bb"] = TldItem{Tld: "info.bb"}
tldMap["net.bb"] = TldItem{Tld: "net.bb"}
tldMap["org.bb"] = TldItem{Tld: "org.bb"}
tldMap["store.bb"] = TldItem{Tld: "store.bb"}
tldMap["tv.bb"] = TldItem{Tld: "tv.bb"}
tldMap["bd"] = TldItem{Tld: "bd"}
tldMap["be"] = TldItem{Tld: "be"}
tldMap["ac.be"] = TldItem{Tld: "ac.be"}
tldMap["bf"] = TldItem{Tld: "bf"}
tldMap["gov.bf"] = TldItem{Tld: "gov.bf"}
tldMap["bg"] = TldItem{Tld: "bg"}
tldMap["a.bg"] = TldItem{Tld: "a.bg"}
tldMap["b.bg"] = TldItem{Tld: "b.bg"}
tldMap["c.bg"] = TldItem{Tld: "c.bg"}
tldMap["d.bg"] = TldItem{Tld: "d.bg"}
tldMap["e.bg"] = TldItem{Tld: "e.bg"}
tldMap["f.bg"] = TldItem{Tld: "f.bg"}
tldMap["g.bg"] = TldItem{Tld: "g.bg"}
tldMap["h.bg"] = TldItem{Tld: "h.bg"}
tldMap["i.bg"] = TldItem{Tld: "i.bg"}
tldMap["j.bg"] = TldItem{Tld: "j.bg"}
tldMap["k.bg"] = TldItem{Tld: "k.bg"}
tldMap["l.bg"] = TldItem{Tld: "l.bg"}
tldMap["m.bg"] = TldItem{Tld: "m.bg"}
tldMap["n.bg"] = TldItem{Tld: "n.bg"}
tldMap["o.bg"] = TldItem{Tld: "o.bg"}
tldMap["p.bg"] = TldItem{Tld: "p.bg"}
tldMap["q.bg"] = TldItem{Tld: "q.bg"}
tldMap["r.bg"] = TldItem{Tld: "r.bg"}
tldMap["s.bg"] = TldItem{Tld: "s.bg"}
tldMap["t.bg"] = TldItem{Tld: "t.bg"}
tldMap["u.bg"] = TldItem{Tld: "u.bg"}
tldMap["v.bg"] = TldItem{Tld: "v.bg"}
tldMap["w.bg"] = TldItem{Tld: "w.bg"}
tldMap["x.bg"] = TldItem{Tld: "x.bg"}
tldMap["y.bg"] = TldItem{Tld: "y.bg"}
tldMap["z.bg"] = TldItem{Tld: "z.bg"}
tldMap["0.bg"] = TldItem{Tld: "0.bg"}
tldMap["1.bg"] = TldItem{Tld: "1.bg"}
tldMap["2.bg"] = TldItem{Tld: "2.bg"}
tldMap["3.bg"] = TldItem{Tld: "3.bg"}
tldMap["4.bg"] = TldItem{Tld: "4.bg"}
tldMap["5.bg"] = TldItem{Tld: "5.bg"}
tldMap["6.bg"] = TldItem{Tld: "6.bg"}
tldMap["7.bg"] = TldItem{Tld: "7.bg"}
tldMap["8.bg"] = TldItem{Tld: "8.bg"}
tldMap["9.bg"] = TldItem{Tld: "9.bg"}
tldMap["bh"] = TldItem{Tld: "bh"}
tldMap["com.bh"] = TldItem{Tld: "com.bh"}
tldMap["edu.bh"] = TldItem{Tld: "edu.bh"}
tldMap["net.bh"] = TldItem{Tld: "net.bh"}
tldMap["org.bh"] = TldItem{Tld: "org.bh"}
tldMap["gov.bh"] = TldItem{Tld: "gov.bh"}
tldMap["bi"] = TldItem{Tld: "bi"}
tldMap["co.bi"] = TldItem{Tld: "co.bi"}
tldMap["com.bi"] = TldItem{Tld: "com.bi"}
tldMap["edu.bi"] = TldItem{Tld: "edu.bi"}
tldMap["or.bi"] = TldItem{Tld: "or.bi"}
tldMap["org.bi"] = TldItem{Tld: "org.bi"}
tldMap["biz"] = TldItem{Tld: "biz"}
tldMap["bj"] = TldItem{Tld: "bj"}
tldMap["asso.bj"] = TldItem{Tld: "asso.bj"}
tldMap["barreau.bj"] = TldItem{Tld: "barreau.bj"}
tldMap["gouv.bj"] = TldItem{Tld: "gouv.bj"}
tldMap["bm"] = TldItem{Tld: "bm"}
tldMap["com.bm"] = TldItem{Tld: "com.bm"}
tldMap["edu.bm"] = TldItem{Tld: "edu.bm"}
tldMap["gov.bm"] = TldItem{Tld: "gov.bm"}
tldMap["net.bm"] = TldItem{Tld: "net.bm"}
tldMap["org.bm"] = TldItem{Tld: "org.bm"}
tldMap["bn"] = TldItem{Tld: "bn"}
tldMap["com.bn"] = TldItem{Tld: "com.bn"}
tldMap["edu.bn"] = TldItem{Tld: "edu.bn"}
tldMap["gov.bn"] = TldItem{Tld: "gov.bn"}
tldMap["net.bn"] = TldItem{Tld: "net.bn"}
tldMap["org.bn"] = TldItem{Tld: "org.bn"}
tldMap["bo"] = TldItem{Tld: "bo"}
tldMap["com.bo"] = TldItem{Tld: "com.bo"}
tldMap["edu.bo"] = TldItem{Tld: "edu.bo"}
tldMap["gob.bo"] = TldItem{Tld: "gob.bo"}
tldMap["int.bo"] = TldItem{Tld: "int.bo"}
tldMap["org.bo"] = TldItem{Tld: "org.bo"}
tldMap["net.bo"] = TldItem{Tld: "net.bo"}
tldMap["mil.bo"] = TldItem{Tld: "mil.bo"}
tldMap["tv.bo"] = TldItem{Tld: "tv.bo"}
tldMap["web.bo"] = TldItem{Tld: "web.bo"}
tldMap["academia.bo"] = TldItem{Tld: "academia.bo"}
tldMap["agro.bo"] = TldItem{Tld: "agro.bo"}
tldMap["arte.bo"] = TldItem{Tld: "arte.bo"}
tldMap["blog.bo"] = TldItem{Tld: "blog.bo"}
tldMap["bolivia.bo"] = TldItem{Tld: "bolivia.bo"}
tldMap["ciencia.bo"] = TldItem{Tld: "ciencia.bo"}
tldMap["cooperativa.bo"] = TldItem{Tld: "cooperativa.bo"}
tldMap["democracia.bo"] = TldItem{Tld: "democracia.bo"}
tldMap["deporte.bo"] = TldItem{Tld: "deporte.bo"}
tldMap["ecologia.bo"] = TldItem{Tld: "ecologia.bo"}
tldMap["economia.bo"] = TldItem{Tld: "economia.bo"}
tldMap["empresa.bo"] = TldItem{Tld: "empresa.bo"}
tldMap["indigena.bo"] = TldItem{Tld: "indigena.bo"}
tldMap["industria.bo"] = TldItem{Tld: "industria.bo"}
tldMap["info.bo"] = TldItem{Tld: "info.bo"}
tldMap["medicina.bo"] = TldItem{Tld: "medicina.bo"}
tldMap["movimiento.bo"] = TldItem{Tld: "movimiento.bo"}
tldMap["musica.bo"] = TldItem{Tld: "musica.bo"}
tldMap["natural.bo"] = TldItem{Tld: "natural.bo"}
tldMap["nombre.bo"] = TldItem{Tld: "nombre.bo"}
tldMap["noticias.bo"] = TldItem{Tld: "noticias.bo"}
tldMap["patria.bo"] = TldItem{Tld: "patria.bo"}
tldMap["politica.bo"] = TldItem{Tld: "politica.bo"}
tldMap["profesional.bo"] = TldItem{Tld: "profesional.bo"}
tldMap["plurinacional.bo"] = TldItem{Tld: "plurinacional.bo"}
tldMap["pueblo.bo"] = TldItem{Tld: "pueblo.bo"}
tldMap["revista.bo"] = TldItem{Tld: "revista.bo"}
tldMap["salud.bo"] = TldItem{Tld: "salud.bo"}
tldMap["tecnologia.bo"] = TldItem{Tld: "tecnologia.bo"}
tldMap["tksat.bo"] = TldItem{Tld: "tksat.bo"}
tldMap["transporte.bo"] = TldItem{Tld: "transporte.bo"}
tldMap["wiki.bo"] = TldItem{Tld: "wiki.bo"}
tldMap["br"] = TldItem{Tld: "br"}
tldMap["9guacu.br"] = TldItem{Tld: "9guacu.br"}
tldMap["abc.br"] = TldItem{Tld: "abc.br"}
tldMap["adm.br"] = TldItem{Tld: "adm.br"}
tldMap["adv.br"] = TldItem{Tld: "adv.br"}
tldMap["agr.br"] = TldItem{Tld: "agr.br"}
tldMap["aju.br"] = TldItem{Tld: "aju.br"}
tldMap["am.br"] = TldItem{Tld: "am.br"}
tldMap["anani.br"] = TldItem{Tld: "anani.br"}
tldMap["aparecida.br"] = TldItem{Tld: "aparecida.br"}
tldMap["arq.br"] = TldItem{Tld: "arq.br"}
tldMap["art.br"] = TldItem{Tld: "art.br"}
tldMap["ato.br"] = TldItem{Tld: "ato.br"}
tldMap["b.br"] = TldItem{Tld: "b.br"}
tldMap["barueri.br"] = TldItem{Tld: "barueri.br"}
tldMap["belem.br"] = TldItem{Tld: "belem.br"}
tldMap["bhz.br"] = TldItem{Tld: "bhz.br"}
tldMap["bio.br"] = TldItem{Tld: "bio.br"}
tldMap["blog.br"] = TldItem{Tld: "blog.br"}
tldMap["bmd.br"] = TldItem{Tld: "bmd.br"}
tldMap["boavista.br"] = TldItem{Tld: "boavista.br"}
tldMap["bsb.br"] = TldItem{Tld: "bsb.br"}
tldMap["campinagrande.br"] = TldItem{Tld: "campinagrande.br"}
tldMap["campinas.br"] = TldItem{Tld: "campinas.br"}
tldMap["caxias.br"] = TldItem{Tld: "caxias.br"}
tldMap["cim.br"] = TldItem{Tld: "cim.br"}
tldMap["cng.br"] = TldItem{Tld: "cng.br"}
tldMap["cnt.br"] = TldItem{Tld: "cnt.br"}
tldMap["com.br"] = TldItem{Tld: "com.br"}
tldMap["contagem.br"] = TldItem{Tld: "contagem.br"}
tldMap["coop.br"] = TldItem{Tld: "coop.br"}
tldMap["cri.br"] = TldItem{Tld: "cri.br"}
tldMap["cuiaba.br"] = TldItem{Tld: "cuiaba.br"}
tldMap["curitiba.br"] = TldItem{Tld: "curitiba.br"}
tldMap["def.br"] = TldItem{Tld: "def.br"}
tldMap["ecn.br"] = TldItem{Tld: "ecn.br"}
tldMap["eco.br"] = TldItem{Tld: "eco.br"}
tldMap["edu.br"] = TldItem{Tld: "edu.br"}
tldMap["emp.br"] = TldItem{Tld: "emp.br"}
tldMap["eng.br"] = TldItem{Tld: "eng.br"}
tldMap["esp.br"] = TldItem{Tld: "esp.br"}
tldMap["etc.br"] = TldItem{Tld: "etc.br"}
tldMap["eti.br"] = TldItem{Tld: "eti.br"}
tldMap["far.br"] = TldItem{Tld: "far.br"}
tldMap["feira.br"] = TldItem{Tld: "feira.br"}
tldMap["flog.br"] = TldItem{Tld: "flog.br"}
tldMap["floripa.br"] = TldItem{Tld: "floripa.br"}
tldMap["fm.br"] = TldItem{Tld: "fm.br"}
tldMap["fnd.br"] = TldItem{Tld: "fnd.br"}
tldMap["fortal.br"] = TldItem{Tld: "fortal.br"}
tldMap["fot.br"] = TldItem{Tld: "fot.br"}
tldMap["foz.br"] = TldItem{Tld: "foz.br"}
tldMap["fst.br"] = TldItem{Tld: "fst.br"}
tldMap["g12.br"] = TldItem{Tld: "g12.br"}
tldMap["ggf.br"] = TldItem{Tld: "ggf.br"}
tldMap["goiania.br"] = TldItem{Tld: "goiania.br"}
tldMap["gov.br"] = TldItem{Tld: "gov.br"}
tldMap["ac.gov.br"] = TldItem{Tld: "ac.gov.br"}
tldMap["al.gov.br"] = TldItem{Tld: "al.gov.br"}
tldMap["am.gov.br"] = TldItem{Tld: "am.gov.br"}
tldMap["ap.gov.br"] = TldItem{Tld: "ap.gov.br"}
tldMap["ba.gov.br"] = TldItem{Tld: "ba.gov.br"}
tldMap["ce.gov.br"] = TldItem{Tld: "ce.gov.br"}
tldMap["df.gov.br"] = TldItem{Tld: "df.gov.br"}
tldMap["es.gov.br"] = TldItem{Tld: "es.gov.br"}
tldMap["go.gov.br"] = TldItem{Tld: "go.gov.br"}
tldMap["ma.gov.br"] = TldItem{Tld: "ma.gov.br"}
tldMap["mg.gov.br"] = TldItem{Tld: "mg.gov.br"}
tldMap["ms.gov.br"] = TldItem{Tld: "ms.gov.br"}
tldMap["mt.gov.br"] = TldItem{Tld: "mt.gov.br"}
tldMap["pa.gov.br"] = TldItem{Tld: "pa.gov.br"}
tldMap["pb.gov.br"] = TldItem{Tld: "pb.gov.br"}
tldMap["pe.gov.br"] = TldItem{Tld: "pe.gov.br"}
tldMap["pi.gov.br"] = TldItem{Tld: "pi.gov.br"}
tldMap["pr.gov.br"] = TldItem{Tld: "pr.gov.br"}
tldMap["rj.gov.br"] = TldItem{Tld: "rj.gov.br"}
tldMap["rn.gov.br"] = TldItem{Tld: "rn.gov.br"}
tldMap["ro.gov.br"] = TldItem{Tld: "ro.gov.br"}
tldMap["rr.gov.br"] = TldItem{Tld: "rr.gov.br"}
tldMap["rs.gov.br"] = TldItem{Tld: "rs.gov.br"}
tldMap["sc.gov.br"] = TldItem{Tld: "sc.gov.br"}
tldMap["se.gov.br"] = TldItem{Tld: "se.gov.br"}
tldMap["sp.gov.br"] = TldItem{Tld: "sp.gov.br"}
tldMap["to.gov.br"] = TldItem{Tld: "to.gov.br"}
tldMap["gru.br"] = TldItem{Tld: "gru.br"}
tldMap["imb.br"] = TldItem{Tld: "imb.br"}
tldMap["ind.br"] = TldItem{Tld: "ind.br"}
tldMap["inf.br"] = TldItem{Tld: "inf.br"}
tldMap["jab.br"] = TldItem{Tld: "jab.br"}
tldMap["jampa.br"] = TldItem{Tld: "jampa.br"}
tldMap["jdf.br"] = TldItem{Tld: "jdf.br"}
tldMap["joinville.br"] = TldItem{Tld: "joinville.br"}
tldMap["jor.br"] = TldItem{Tld: "jor.br"}
tldMap["jus.br"] = TldItem{Tld: "jus.br"}
tldMap["leg.br"] = TldItem{Tld: "leg.br"}
tldMap["lel.br"] = TldItem{Tld: "lel.br"}
tldMap["londrina.br"] = TldItem{Tld: "londrina.br"}
tldMap["macapa.br"] = TldItem{Tld: "macapa.br"}
tldMap["maceio.br"] = TldItem{Tld: "maceio.br"}
tldMap["manaus.br"] = TldItem{Tld: "manaus.br"}
tldMap["maringa.br"] = TldItem{Tld: "maringa.br"}
tldMap["mat.br"] = TldItem{Tld: "mat.br"}
tldMap["med.br"] = TldItem{Tld: "med.br"}
tldMap["mil.br"] = TldItem{Tld: "mil.br"}
tldMap["morena.br"] = TldItem{Tld: "morena.br"}
tldMap["mp.br"] = TldItem{Tld: "mp.br"}
tldMap["mus.br"] = TldItem{Tld: "mus.br"}
tldMap["natal.br"] = TldItem{Tld: "natal.br"}
tldMap["net.br"] = TldItem{Tld: "net.br"}
tldMap["niteroi.br"] = TldItem{Tld: "niteroi.br"}
tldMap["nom.br"] = TldItem{Tld: "nom.br"}
tldMap["not.br"] = TldItem{Tld: "not.br"}
tldMap["ntr.br"] = TldItem{Tld: "ntr.br"}
tldMap["odo.br"] = TldItem{Tld: "odo.br"}
tldMap["ong.br"] = TldItem{Tld: "ong.br"}
tldMap["org.br"] = TldItem{Tld: "org.br"}
tldMap["osasco.br"] = TldItem{Tld: "osasco.br"}
tldMap["palmas.br"] = TldItem{Tld: "palmas.br"}
tldMap["poa.br"] = TldItem{Tld: "poa.br"}
tldMap["ppg.br"] = TldItem{Tld: "ppg.br"}
tldMap["pro.br"] = TldItem{Tld: "pro.br"}
tldMap["psc.br"] = TldItem{Tld: "psc.br"}
tldMap["psi.br"] = TldItem{Tld: "psi.br"}
tldMap["pvh.br"] = TldItem{Tld: "pvh.br"}
tldMap["qsl.br"] = TldItem{Tld: "qsl.br"}
tldMap["radio.br"] = TldItem{Tld: "radio.br"}
tldMap["rec.br"] = TldItem{Tld: "rec.br"}
tldMap["recife.br"] = TldItem{Tld: "recife.br"}
tldMap["ribeirao.br"] = TldItem{Tld: "ribeirao.br"}
tldMap["rio.br"] = TldItem{Tld: "rio.br"}
tldMap["riobranco.br"] = TldItem{Tld: "riobranco.br"}
tldMap["riopreto.br"] = TldItem{Tld: "riopreto.br"}
tldMap["salvador.br"] = TldItem{Tld: "salvador.br"}
tldMap["sampa.br"] = TldItem{Tld: "sampa.br"}
tldMap["santamaria.br"] = TldItem{Tld: "santamaria.br"}
tldMap["santoandre.br"] = TldItem{Tld: "santoandre.br"}
tldMap["saobernardo.br"] = TldItem{Tld: "saobernardo.br"}
tldMap["saogonca.br"] = TldItem{Tld: "saogonca.br"}
tldMap["sjc.br"] = TldItem{Tld: "sjc.br"}
tldMap["slg.br"] = TldItem{Tld: "slg.br"}
tldMap["slz.br"] = TldItem{Tld: "slz.br"}
tldMap["sorocaba.br"] = TldItem{Tld: "sorocaba.br"}
tldMap["srv.br"] = TldItem{Tld: "srv.br"}
tldMap["taxi.br"] = TldItem{Tld: "taxi.br"}
tldMap["tc.br"] = TldItem{Tld: "tc.br"}
tldMap["teo.br"] = TldItem{Tld: "teo.br"}
tldMap["the.br"] = TldItem{Tld: "the.br"}
tldMap["tmp.br"] = TldItem{Tld: "tmp.br"}
tldMap["trd.br"] = TldItem{Tld: "trd.br"}
tldMap["tur.br"] = TldItem{Tld: "tur.br"}
tldMap["tv.br"] = TldItem{Tld: "tv.br"}
tldMap["udi.br"] = TldItem{Tld: "udi.br"}
tldMap["vet.br"] = TldItem{Tld: "vet.br"}
tldMap["vix.br"] = TldItem{Tld: "vix.br"}
tldMap["vlog.br"] = TldItem{Tld: "vlog.br"}
tldMap["wiki.br"] = TldItem{Tld: "wiki.br"}
tldMap["zlg.br"] = TldItem{Tld: "zlg.br"}
tldMap["bs"] = TldItem{Tld: "bs"}
tldMap["com.bs"] = TldItem{Tld: "com.bs"}
tldMap["net.bs"] = TldItem{Tld: "net.bs"}
tldMap["org.bs"] = TldItem{Tld: "org.bs"}
tldMap["edu.bs"] = TldItem{Tld: "edu.bs"}
tldMap["gov.bs"] = TldItem{Tld: "gov.bs"}
tldMap["bt"] = TldItem{Tld: "bt"}
tldMap["com.bt"] = TldItem{Tld: "com.bt"}
tldMap["edu.bt"] = TldItem{Tld: "edu.bt"}
tldMap["gov.bt"] = TldItem{Tld: "gov.bt"}
tldMap["net.bt"] = TldItem{Tld: "net.bt"}
tldMap["org.bt"] = TldItem{Tld: "org.bt"}
tldMap["bv"] = TldItem{Tld: "bv"}
tldMap["bw"] = TldItem{Tld: "bw"}
tldMap["co.bw"] = TldItem{Tld: "co.bw"}
tldMap["org.bw"] = TldItem{Tld: "org.bw"}
tldMap["by"] = TldItem{Tld: "by"}
tldMap["gov.by"] = TldItem{Tld: "gov.by"}
tldMap["mil.by"] = TldItem{Tld: "mil.by"}
tldMap["com.by"] = TldItem{Tld: "com.by"}
tldMap["of.by"] = TldItem{Tld: "of.by"}
tldMap["bz"] = TldItem{Tld: "bz"}
tldMap["com.bz"] = TldItem{Tld: "com.bz"}
tldMap["net.bz"] = TldItem{Tld: "net.bz"}
tldMap["org.bz"] = TldItem{Tld: "org.bz"}
tldMap["edu.bz"] = TldItem{Tld: "edu.bz"}
tldMap["gov.bz"] = TldItem{Tld: "gov.bz"}
tldMap["ca"] = TldItem{Tld: "ca"}
tldMap["ab.ca"] = TldItem{Tld: "ab.ca"}
tldMap["bc.ca"] = TldItem{Tld: "bc.ca"}
tldMap["mb.ca"] = TldItem{Tld: "mb.ca"}
tldMap["nb.ca"] = TldItem{Tld: "nb.ca"}
tldMap["nf.ca"] = TldItem{Tld: "nf.ca"}
tldMap["nl.ca"] = TldItem{Tld: "nl.ca"}
tldMap["ns.ca"] = TldItem{Tld: "ns.ca"}
tldMap["nt.ca"] = TldItem{Tld: "nt.ca"}
tldMap["nu.ca"] = TldItem{Tld: "nu.ca"}
tldMap["on.ca"] = TldItem{Tld: "on.ca"}
tldMap["pe.ca"] = TldItem{Tld: "pe.ca"}
tldMap["qc.ca"] = TldItem{Tld: "qc.ca"}
tldMap["sk.ca"] = TldItem{Tld: "sk.ca"}
tldMap["yk.ca"] = TldItem{Tld: "yk.ca"}
tldMap["gc.ca"] = TldItem{Tld: "gc.ca"}
tldMap["cat"] = TldItem{Tld: "cat"}
tldMap["cc"] = TldItem{Tld: "cc"}
tldMap["cd"] = TldItem{Tld: "cd"}
tldMap["gov.cd"] = TldItem{Tld: "gov.cd"}
tldMap["cf"] = TldItem{Tld: "cf"}
tldMap["cg"] = TldItem{Tld: "cg"}
tldMap["ch"] = TldItem{Tld: "ch"}
tldMap["ci"] = TldItem{Tld: "ci"}
tldMap["org.ci"] = TldItem{Tld: "org.ci"}
tldMap["or.ci"] = TldItem{Tld: "or.ci"}
tldMap["com.ci"] = TldItem{Tld: "com.ci"}
tldMap["co.ci"] = TldItem{Tld: "co.ci"}
tldMap["edu.ci"] = TldItem{Tld: "edu.ci"}
tldMap["ed.ci"] = TldItem{Tld: "ed.ci"}
tldMap["ac.ci"] = TldItem{Tld: "ac.ci"}
tldMap["net.ci"] = TldItem{Tld: "net.ci"}
tldMap["go.ci"] = TldItem{Tld: "go.ci"}
tldMap["asso.ci"] = TldItem{Tld: "asso.ci"}
tldMap["aéroport.ci"] = TldItem{Tld: "aéroport.ci"}
tldMap["int.ci"] = TldItem{Tld: "int.ci"}
tldMap["presse.ci"] = TldItem{Tld: "presse.ci"}
tldMap["md.ci"] = TldItem{Tld: "md.ci"}
tldMap["gouv.ci"] = TldItem{Tld: "gouv.ci"}
tldMap["ck"] = TldItem{Tld: "ck"}
tldMap["!www.ck"] = TldItem{Tld: "!www.ck"}
tldMap["cl"] = TldItem{Tld: "cl"}
tldMap["gov.cl"] = TldItem{Tld: "gov.cl"}
tldMap["gob.cl"] = TldItem{Tld: "gob.cl"}
tldMap["co.cl"] = TldItem{Tld: "co.cl"}
tldMap["mil.cl"] = TldItem{Tld: "mil.cl"}
tldMap["cm"] = TldItem{Tld: "cm"}
tldMap["co.cm"] = TldItem{Tld: "co.cm"}
tldMap["com.cm"] = TldItem{Tld: "com.cm"}
tldMap["gov.cm"] = TldItem{Tld: "gov.cm"}
tldMap["net.cm"] = TldItem{Tld: "net.cm"}
tldMap["cn"] = TldItem{Tld: "cn"}
tldMap["ac.cn"] = TldItem{Tld: "ac.cn"}
tldMap["com.cn"] = TldItem{Tld: "com.cn"}
tldMap["edu.cn"] = TldItem{Tld: "edu.cn"}
tldMap["gov.cn"] = TldItem{Tld: "gov.cn"}
tldMap["net.cn"] = TldItem{Tld: "net.cn"}
tldMap["org.cn"] = TldItem{Tld: "org.cn"}
tldMap["mil.cn"] = TldItem{Tld: "mil.cn"}
tldMap["公司.cn"] = TldItem{Tld: "公司.cn"}
tldMap["网络.cn"] = TldItem{Tld: "网络.cn"}
tldMap["網絡.cn"] = TldItem{Tld: "網絡.cn"}
tldMap["ah.cn"] = TldItem{Tld: "ah.cn"}
tldMap["bj.cn"] = TldItem{Tld: "bj.cn"}
tldMap["cq.cn"] = TldItem{Tld: "cq.cn"}
tldMap["fj.cn"] = TldItem{Tld: "fj.cn"}
tldMap["gd.cn"] = TldItem{Tld: "gd.cn"}
tldMap["gs.cn"] = TldItem{Tld: "gs.cn"}
tldMap["gz.cn"] = TldItem{Tld: "gz.cn"}
tldMap["gx.cn"] = TldItem{Tld: "gx.cn"}
tldMap["ha.cn"] = TldItem{Tld: "ha.cn"}
tldMap["hb.cn"] = TldItem{Tld: "hb.cn"}
tldMap["he.cn"] = TldItem{Tld: "he.cn"}
tldMap["hi.cn"] = TldItem{Tld: "hi.cn"}
tldMap["hl.cn"] = TldItem{Tld: "hl.cn"}
tldMap["hn.cn"] = TldItem{Tld: "hn.cn"}
tldMap["jl.cn"] = TldItem{Tld: "jl.cn"}
tldMap["js.cn"] = TldItem{Tld: "js.cn"}
tldMap["jx.cn"] = TldItem{Tld: "jx.cn"}
tldMap["ln.cn"] = TldItem{Tld: "ln.cn"}
tldMap["nm.cn"] = TldItem{Tld: "nm.cn"}
tldMap["nx.cn"] = TldItem{Tld: "nx.cn"}
tldMap["qh.cn"] = TldItem{Tld: "qh.cn"}
tldMap["sc.cn"] = TldItem{Tld: "sc.cn"}
tldMap["sd.cn"] = TldItem{Tld: "sd.cn"}
tldMap["sh.cn"] = TldItem{Tld: "sh.cn"}
tldMap["sn.cn"] = TldItem{Tld: "sn.cn"}
tldMap["sx.cn"] = TldItem{Tld: "sx.cn"}
tldMap["tj.cn"] = TldItem{Tld: "tj.cn"}
tldMap["xj.cn"] = TldItem{Tld: "xj.cn"}
tldMap["xz.cn"] = TldItem{Tld: "xz.cn"}
tldMap["yn.cn"] = TldItem{Tld: "yn.cn"}
tldMap["zj.cn"] = TldItem{Tld: "zj.cn"}
tldMap["hk.cn"] = TldItem{Tld: "hk.cn"}
tldMap["mo.cn"] = TldItem{Tld: "mo.cn"}
tldMap["tw.cn"] = TldItem{Tld: "tw.cn"}
tldMap["co"] = TldItem{Tld: "co"}
tldMap["arts.co"] = TldItem{Tld: "arts.co"}
tldMap["com.co"] = TldItem{Tld: "com.co"}
tldMap["edu.co"] = TldItem{Tld: "edu.co"}
tldMap["firm.co"] = TldItem{Tld: "firm.co"}
tldMap["gov.co"] = TldItem{Tld: "gov.co"}
tldMap["info.co"] = TldItem{Tld: "info.co"}
tldMap["int.co"] = TldItem{Tld: "int.co"}
tldMap["mil.co"] = TldItem{Tld: "mil.co"}
tldMap["net.co"] = TldItem{Tld: "net.co"}
tldMap["nom.co"] = TldItem{Tld: "nom.co"}
tldMap["org.co"] = TldItem{Tld: "org.co"}
tldMap["rec.co"] = TldItem{Tld: "rec.co"}
tldMap["web.co"] = TldItem{Tld: "web.co"}
tldMap["com"] = TldItem{Tld: "com"}
tldMap["coop"] = TldItem{Tld: "coop"}
tldMap["cr"] = TldItem{Tld: "cr"}
tldMap["ac.cr"] = TldItem{Tld: "ac.cr"}
tldMap["co.cr"] = TldItem{Tld: "co.cr"}
tldMap["ed.cr"] = TldItem{Tld: "ed.cr"}
tldMap["fi.cr"] = TldItem{Tld: "fi.cr"}
tldMap["go.cr"] = TldItem{Tld: "go.cr"}
tldMap["or.cr"] = TldItem{Tld: "or.cr"}
tldMap["sa.cr"] = TldItem{Tld: "sa.cr"}
tldMap["cu"] = TldItem{Tld: "cu"}
tldMap["com.cu"] = TldItem{Tld: "com.cu"}
tldMap["edu.cu"] = TldItem{Tld: "edu.cu"}
tldMap["org.cu"] = TldItem{Tld: "org.cu"}
tldMap["net.cu"] = TldItem{Tld: "net.cu"}
tldMap["gov.cu"] = TldItem{Tld: "gov.cu"}
tldMap["inf.cu"] = TldItem{Tld: "inf.cu"}
tldMap["cv"] = TldItem{Tld: "cv"}
tldMap["cw"] = TldItem{Tld: "cw"}
tldMap["com.cw"] = TldItem{Tld: "com.cw"}
tldMap["edu.cw"] = TldItem{Tld: "edu.cw"}
tldMap["net.cw"] = TldItem{Tld: "net.cw"}
tldMap["org.cw"] = TldItem{Tld: "org.cw"}
tldMap["cx"] = TldItem{Tld: "cx"}
tldMap["gov.cx"] = TldItem{Tld: "gov.cx"}
tldMap["cy"] = TldItem{Tld: "cy"}
tldMap["ac.cy"] = TldItem{Tld: "ac.cy"}
tldMap["biz.cy"] = TldItem{Tld: "biz.cy"}
tldMap["com.cy"] = TldItem{Tld: "com.cy"}
tldMap["ekloges.cy"] = TldItem{Tld: "ekloges.cy"}
tldMap["gov.cy"] = TldItem{Tld: "gov.cy"}
tldMap["ltd.cy"] = TldItem{Tld: "ltd.cy"}
tldMap["name.cy"] = TldItem{Tld: "name.cy"}
tldMap["net.cy"] = TldItem{Tld: "net.cy"}
tldMap["org.cy"] = TldItem{Tld: "org.cy"}
tldMap["parliament.cy"] = TldItem{Tld: "parliament.cy"}
tldMap["press.cy"] = TldItem{Tld: "press.cy"}
tldMap["pro.cy"] = TldItem{Tld: "pro.cy"}
tldMap["tm.cy"] = TldItem{Tld: "tm.cy"}
tldMap["cz"] = TldItem{Tld: "cz"}
tldMap["de"] = TldItem{Tld: "de"}
tldMap["dj"] = TldItem{Tld: "dj"}
tldMap["dk"] = TldItem{Tld: "dk"}
tldMap["dm"] = TldItem{Tld: "dm"}
tldMap["com.dm"] = TldItem{Tld: "com.dm"}
tldMap["net.dm"] = TldItem{Tld: "net.dm"}
tldMap["org.dm"] = TldItem{Tld: "org.dm"}
tldMap["edu.dm"] = TldItem{Tld: "edu.dm"}
tldMap["gov.dm"] = TldItem{Tld: "gov.dm"}
tldMap["do"] = TldItem{Tld: "do"}
tldMap["art.do"] = TldItem{Tld: "art.do"}
tldMap["com.do"] = TldItem{Tld: "com.do"}
tldMap["edu.do"] = TldItem{Tld: "edu.do"}
tldMap["gob.do"] = TldItem{Tld: "gob.do"}
tldMap["gov.do"] = TldItem{Tld: "gov.do"}
tldMap["mil.do"] = TldItem{Tld: "mil.do"}
tldMap["net.do"] = TldItem{Tld: "net.do"}
tldMap["org.do"] = TldItem{Tld: "org.do"}
tldMap["sld.do"] = TldItem{Tld: "sld.do"}
tldMap["web.do"] = TldItem{Tld: "web.do"}
tldMap["dz"] = TldItem{Tld: "dz"}
tldMap["com.dz"] = TldItem{Tld: "com.dz"}
tldMap["org.dz"] = TldItem{Tld: "org.dz"}
tldMap["net.dz"] = TldItem{Tld: "net.dz"}
tldMap["gov.dz"] = TldItem{Tld: "gov.dz"}
tldMap["edu.dz"] = TldItem{Tld: "edu.dz"}
tldMap["asso.dz"] = TldItem{Tld: "asso.dz"}
tldMap["pol.dz"] = TldItem{Tld: "pol.dz"}
tldMap["art.dz"] = TldItem{Tld: "art.dz"}
tldMap["ec"] = TldItem{Tld: "ec"}
tldMap["com.ec"] = TldItem{Tld: "com.ec"}
tldMap["info.ec"] = TldItem{Tld: "info.ec"}
tldMap["net.ec"] = TldItem{Tld: "net.ec"}
tldMap["fin.ec"] = TldItem{Tld: "fin.ec"}
tldMap["k12.ec"] = TldItem{Tld: "k12.ec"}
tldMap["med.ec"] = TldItem{Tld: "med.ec"}
tldMap["pro.ec"] = TldItem{Tld: "pro.ec"}
tldMap["org.ec"] = TldItem{Tld: "org.ec"}
tldMap["edu.ec"] = TldItem{Tld: "edu.ec"}
tldMap["gov.ec"] = TldItem{Tld: "gov.ec"}
tldMap["gob.ec"] = TldItem{Tld: "gob.ec"}
tldMap["mil.ec"] = TldItem{Tld: "mil.ec"}
tldMap["edu"] = TldItem{Tld: "edu"}
tldMap["ee"] = TldItem{Tld: "ee"}
tldMap["edu.ee"] = TldItem{Tld: "edu.ee"}
tldMap["gov.ee"] = TldItem{Tld: "gov.ee"}
tldMap["riik.ee"] = TldItem{Tld: "riik.ee"}
tldMap["lib.ee"] = TldItem{Tld: "lib.ee"}
tldMap["med.ee"] = TldItem{Tld: "med.ee"}
tldMap["com.ee"] = TldItem{Tld: "com.ee"}
tldMap["pri.ee"] = TldItem{Tld: "pri.ee"}
tldMap["aip.ee"] = TldItem{Tld: "aip.ee"}
tldMap["org.ee"] = TldItem{Tld: "org.ee"}
tldMap["fie.ee"] = TldItem{Tld: "fie.ee"}
tldMap["eg"] = TldItem{Tld: "eg"}
tldMap["com.eg"] = TldItem{Tld: "com.eg"}
tldMap["edu.eg"] = TldItem{Tld: "edu.eg"}
tldMap["eun.eg"] = TldItem{Tld: "eun.eg"}
tldMap["gov.eg"] = TldItem{Tld: "gov.eg"}
tldMap["mil.eg"] = TldItem{Tld: "mil.eg"}
tldMap["name.eg"] = TldItem{Tld: "name.eg"}
tldMap["net.eg"] = TldItem{Tld: "net.eg"}
tldMap["org.eg"] = TldItem{Tld: "org.eg"}
tldMap["sci.eg"] = TldItem{Tld: "sci.eg"}
tldMap["er"] = TldItem{Tld: "er"}
tldMap["es"] = TldItem{Tld: "es"}
tldMap["com.es"] = TldItem{Tld: "com.es"}
tldMap["nom.es"] = TldItem{Tld: "nom.es"}
tldMap["org.es"] = TldItem{Tld: "org.es"}
tldMap["gob.es"] = TldItem{Tld: "gob.es"}
tldMap["edu.es"] = TldItem{Tld: "edu.es"}
tldMap["et"] = TldItem{Tld: "et"}
tldMap["com.et"] = TldItem{Tld: "com.et"}
tldMap["gov.et"] = TldItem{Tld: "gov.et"}
tldMap["org.et"] = TldItem{Tld: "org.et"}
tldMap["edu.et"] = TldItem{Tld: "edu.et"}
tldMap["biz.et"] = TldItem{Tld: "biz.et"}
tldMap["name.et"] = TldItem{Tld: "name.et"}
tldMap["info.et"] = TldItem{Tld: "info.et"}
tldMap["net.et"] = TldItem{Tld: "net.et"}
tldMap["eu"] = TldItem{Tld: "eu"}
tldMap["fi"] = TldItem{Tld: "fi"}
tldMap["aland.fi"] = TldItem{Tld: "aland.fi"}
tldMap["fj"] = TldItem{Tld: "fj"}
tldMap["fk"] = TldItem{Tld: "fk"}
tldMap["fm"] = TldItem{Tld: "fm"}
tldMap["fo"] = TldItem{Tld: "fo"}
tldMap["fr"] = TldItem{Tld: "fr"}
tldMap["asso.fr"] = TldItem{Tld: "asso.fr"}
tldMap["com.fr"] = TldItem{Tld: "com.fr"}
tldMap["gouv.fr"] = TldItem{Tld: "gouv.fr"}
tldMap["nom.fr"] = TldItem{Tld: "nom.fr"}
tldMap["prd.fr"] = TldItem{Tld: "prd.fr"}
tldMap["tm.fr"] = TldItem{Tld: "tm.fr"}
tldMap["aeroport.fr"] = TldItem{Tld: "aeroport.fr"}
tldMap["avocat.fr"] = TldItem{Tld: "avocat.fr"}
tldMap["avoues.fr"] = TldItem{Tld: "avoues.fr"}
tldMap["cci.fr"] = TldItem{Tld: "cci.fr"}
tldMap["chambagri.fr"] = TldItem{Tld: "chambagri.fr"}
tldMap["chirurgiens-dentistes.fr"] = TldItem{Tld: "chirurgiens-dentistes.fr"}
tldMap["experts-comptables.fr"] = TldItem{Tld: "experts-comptables.fr"}
tldMap["geometre-expert.fr"] = TldItem{Tld: "geometre-expert.fr"}
tldMap["greta.fr"] = TldItem{Tld: "greta.fr"}
tldMap["huissier-justice.fr"] = TldItem{Tld: "huissier-justice.fr"}
tldMap["medecin.fr"] = TldItem{Tld: "medecin.fr"}
tldMap["notaires.fr"] = TldItem{Tld: "notaires.fr"}
tldMap["pharmacien.fr"] = TldItem{Tld: "pharmacien.fr"}
tldMap["port.fr"] = TldItem{Tld: "port.fr"}
tldMap["veterinaire.fr"] = TldItem{Tld: "veterinaire.fr"}
tldMap["ga"] = TldItem{Tld: "ga"}
tldMap["gb"] = TldItem{Tld: "gb"}
tldMap["gd"] = TldItem{Tld: "gd"}
tldMap["ge"] = TldItem{Tld: "ge"}
tldMap["com.ge"] = TldItem{Tld: "com.ge"}
tldMap["edu.ge"] = TldItem{Tld: "edu.ge"}
tldMap["gov.ge"] = TldItem{Tld: "gov.ge"}
tldMap["org.ge"] = TldItem{Tld: "org.ge"}
tldMap["mil.ge"] = TldItem{Tld: "mil.ge"}
tldMap["net.ge"] = TldItem{Tld: "net.ge"}
tldMap["pvt.ge"] = TldItem{Tld: "pvt.ge"}
tldMap["gf"] = TldItem{Tld: "gf"}
tldMap["gg"] = TldItem{Tld: "gg"}
tldMap["co.gg"] = TldItem{Tld: "co.gg"}
tldMap["net.gg"] = TldItem{Tld: "net.gg"}
tldMap["org.gg"] = TldItem{Tld: "org.gg"}
tldMap["gh"] = TldItem{Tld: "gh"}
tldMap["com.gh"] = TldItem{Tld: "com.gh"}
tldMap["edu.gh"] = TldItem{Tld: "edu.gh"}
tldMap["gov.gh"] = TldItem{Tld: "gov.gh"}
tldMap["org.gh"] = TldItem{Tld: "org.gh"}
tldMap["mil.gh"] = TldItem{Tld: "mil.gh"}
tldMap["gi"] = TldItem{Tld: "gi"}
tldMap["com.gi"] = TldItem{Tld: "com.gi"}
tldMap["ltd.gi"] = TldItem{Tld: "ltd.gi"}
tldMap["gov.gi"] = TldItem{Tld: "gov.gi"}
tldMap["mod.gi"] = TldItem{Tld: "mod.gi"}
tldMap["edu.gi"] = TldItem{Tld: "edu.gi"}
tldMap["org.gi"] = TldItem{Tld: "org.gi"}
tldMap["gl"] = TldItem{Tld: "gl"}
tldMap["co.gl"] = TldItem{Tld: "co.gl"}
tldMap["com.gl"] = TldItem{Tld: "com.gl"}
tldMap["edu.gl"] = TldItem{Tld: "edu.gl"}
tldMap["net.gl"] = TldItem{Tld: "net.gl"}
tldMap["org.gl"] = TldItem{Tld: "org.gl"}
tldMap["gm"] = TldItem{Tld: "gm"}
tldMap["gn"] = TldItem{Tld: "gn"}
tldMap["ac.gn"] = TldItem{Tld: "ac.gn"}
tldMap["com.gn"] = TldItem{Tld: "com.gn"}
tldMap["edu.gn"] = TldItem{Tld: "edu.gn"}
tldMap["gov.gn"] = TldItem{Tld: "gov.gn"}
tldMap["org.gn"] = TldItem{Tld: "org.gn"}
tldMap["net.gn"] = TldItem{Tld: "net.gn"}
tldMap["gov"] = TldItem{Tld: "gov"}
tldMap["gp"] = TldItem{Tld: "gp"}
tldMap["com.gp"] = TldItem{Tld: "com.gp"}
tldMap["net.gp"] = TldItem{Tld: "net.gp"}
tldMap["mobi.gp"] = TldItem{Tld: "mobi.gp"}
tldMap["edu.gp"] = TldItem{Tld: "edu.gp"}
tldMap["org.gp"] = TldItem{Tld: "org.gp"}
tldMap["asso.gp"] = TldItem{Tld: "asso.gp"}
tldMap["gq"] = TldItem{Tld: "gq"}
tldMap["gr"] = TldItem{Tld: "gr"}
tldMap["com.gr"] = TldItem{Tld: "com.gr"}
tldMap["edu.gr"] = TldItem{Tld: "edu.gr"}
tldMap["net.gr"] = TldItem{Tld: "net.gr"}
tldMap["org.gr"] = TldItem{Tld: "org.gr"}
tldMap["gov.gr"] = TldItem{Tld: "gov.gr"}
tldMap["gs"] = TldItem{Tld: "gs"}
tldMap["gt"] = TldItem{Tld: "gt"}
tldMap["com.gt"] = TldItem{Tld: "com.gt"}
tldMap["edu.gt"] = TldItem{Tld: "edu.gt"}
tldMap["gob.gt"] = TldItem{Tld: "gob.gt"}
tldMap["ind.gt"] = TldItem{Tld: "ind.gt"}
tldMap["mil.gt"] = TldItem{Tld: "mil.gt"}
tldMap["net.gt"] = TldItem{Tld: "net.gt"}
tldMap["org.gt"] = TldItem{Tld: "org.gt"}
tldMap["gu"] = TldItem{Tld: "gu"}
tldMap["com.gu"] = TldItem{Tld: "com.gu"}
tldMap["edu.gu"] = TldItem{Tld: "edu.gu"}
tldMap["gov.gu"] = TldItem{Tld: "gov.gu"}
tldMap["guam.gu"] = TldItem{Tld: "guam.gu"}
tldMap["info.gu"] = TldItem{Tld: "info.gu"}
tldMap["net.gu"] = TldItem{Tld: "net.gu"}
tldMap["org.gu"] = TldItem{Tld: "org.gu"}
tldMap["web.gu"] = TldItem{Tld: "web.gu"}
tldMap["gw"] = TldItem{Tld: "gw"}
tldMap["gy"] = TldItem{Tld: "gy"}
tldMap["co.gy"] = TldItem{Tld: "co.gy"}
tldMap["com.gy"] = TldItem{Tld: "com.gy"}
tldMap["edu.gy"] = TldItem{Tld: "edu.gy"}
tldMap["gov.gy"] = TldItem{Tld: "gov.gy"}
tldMap["net.gy"] = TldItem{Tld: "net.gy"}
tldMap["org.gy"] = TldItem{Tld: "org.gy"}
tldMap["hk"] = TldItem{Tld: "hk"}
tldMap["com.hk"] = TldItem{Tld: "com.hk"}
tldMap["edu.hk"] = TldItem{Tld: "edu.hk"}
tldMap["gov.hk"] = TldItem{Tld: "gov.hk"}
tldMap["idv.hk"] = TldItem{Tld: "idv.hk"}
tldMap["net.hk"] = TldItem{Tld: "net.hk"}
tldMap["org.hk"] = TldItem{Tld: "org.hk"}
tldMap["公司.hk"] = TldItem{Tld: "公司.hk"}
tldMap["教育.hk"] = TldItem{Tld: "教育.hk"}
tldMap["敎育.hk"] = TldItem{Tld: "敎育.hk"}
tldMap["政府.hk"] = TldItem{Tld: "政府.hk"}
tldMap["個人.hk"] = TldItem{Tld: "個人.hk"}
tldMap["个人.hk"] = TldItem{Tld: "个人.hk"}
tldMap["箇人.hk"] = TldItem{Tld: "箇人.hk"}
tldMap["網络.hk"] = TldItem{Tld: "網络.hk"}
tldMap["网络.hk"] = TldItem{Tld: "网络.hk"}
tldMap["组織.hk"] = TldItem{Tld: "组織.hk"}
tldMap["網絡.hk"] = TldItem{Tld: "網絡.hk"}
tldMap["网絡.hk"] = TldItem{Tld: "网絡.hk"}
tldMap["组织.hk"] = TldItem{Tld: "组织.hk"}
tldMap["組織.hk"] = TldItem{Tld: "組織.hk"}
tldMap["組织.hk"] = TldItem{Tld: "組织.hk"}
tldMap["hm"] = TldItem{Tld: "hm"}
tldMap["hn"] = TldItem{Tld: "hn"}
tldMap["com.hn"] = TldItem{Tld: "com.hn"}
tldMap["edu.hn"] = TldItem{Tld: "edu.hn"}
tldMap["org.hn"] = TldItem{Tld: "org.hn"}
tldMap["net.hn"] = TldItem{Tld: "net.hn"}
tldMap["mil.hn"] = TldItem{Tld: "mil.hn"}
tldMap["gob.hn"] = TldItem{Tld: "gob.hn"}
tldMap["hr"] = TldItem{Tld: "hr"}
tldMap["iz.hr"] = TldItem{Tld: "iz.hr"}
tldMap["from.hr"] = TldItem{Tld: "from.hr"}
tldMap["name.hr"] = TldItem{Tld: "name.hr"}
tldMap["com.hr"] = TldItem{Tld: "com.hr"}
tldMap["ht"] = TldItem{Tld: "ht"}
tldMap["com.ht"] = TldItem{Tld: "com.ht"}
tldMap["shop.ht"] = TldItem{Tld: "shop.ht"}
tldMap["firm.ht"] = TldItem{Tld: "firm.ht"}
tldMap["info.ht"] = TldItem{Tld: "info.ht"}
tldMap["adult.ht"] = TldItem{Tld: "adult.ht"}
tldMap["net.ht"] = TldItem{Tld: "net.ht"}
tldMap["pro.ht"] = TldItem{Tld: "pro.ht"}
tldMap["org.ht"] = TldItem{Tld: "org.ht"}
tldMap["med.ht"] = TldItem{Tld: "med.ht"}
tldMap["art.ht"] = TldItem{Tld: "art.ht"}
tldMap["coop.ht"] = TldItem{Tld: "coop.ht"}
tldMap["pol.ht"] = TldItem{Tld: "pol.ht"}
tldMap["asso.ht"] = TldItem{Tld: "asso.ht"}
tldMap["edu.ht"] = TldItem{Tld: "edu.ht"}
tldMap["rel.ht"] = TldItem{Tld: "rel.ht"}
tldMap["gouv.ht"] = TldItem{Tld: "gouv.ht"}
tldMap["perso.ht"] = TldItem{Tld: "perso.ht"}
tldMap["hu"] = TldItem{Tld: "hu"}
tldMap["co.hu"] = TldItem{Tld: "co.hu"}
tldMap["info.hu"] = TldItem{Tld: "info.hu"}
tldMap["org.hu"] = TldItem{Tld: "org.hu"}
tldMap["priv.hu"] = TldItem{Tld: "priv.hu"}
tldMap["sport.hu"] = TldItem{Tld: "sport.hu"}
tldMap["tm.hu"] = TldItem{Tld: "tm.hu"}
tldMap["2000.hu"] = TldItem{Tld: "2000.hu"}
tldMap["agrar.hu"] = TldItem{Tld: "agrar.hu"}
tldMap["bolt.hu"] = TldItem{Tld: "bolt.hu"}
tldMap["casino.hu"] = TldItem{Tld: "casino.hu"}
tldMap["city.hu"] = TldItem{Tld: "city.hu"}
tldMap["erotica.hu"] = TldItem{Tld: "erotica.hu"}
tldMap["erotika.hu"] = TldItem{Tld: "erotika.hu"}
tldMap["film.hu"] = TldItem{Tld: "film.hu"}
tldMap["forum.hu"] = TldItem{Tld: "forum.hu"}
tldMap["games.hu"] = TldItem{Tld: "games.hu"}
tldMap["hotel.hu"] = TldItem{Tld: "hotel.hu"}
tldMap["ingatlan.hu"] = TldItem{Tld: "ingatlan.hu"}
tldMap["jogasz.hu"] = TldItem{Tld: "jogasz.hu"}
tldMap["konyvelo.hu"] = TldItem{Tld: "konyvelo.hu"}
tldMap["lakas.hu"] = TldItem{Tld: "lakas.hu"}
tldMap["media.hu"] = TldItem{Tld: "media.hu"}
tldMap["news.hu"] = TldItem{Tld: "news.hu"}
tldMap["reklam.hu"] = TldItem{Tld: "reklam.hu"}
tldMap["sex.hu"] = TldItem{Tld: "sex.hu"}
tldMap["shop.hu"] = TldItem{Tld: "shop.hu"}
tldMap["suli.hu"] = TldItem{Tld: "suli.hu"}
tldMap["szex.hu"] = TldItem{Tld: "szex.hu"}
tldMap["tozsde.hu"] = TldItem{Tld: "tozsde.hu"}
tldMap["utazas.hu"] = TldItem{Tld: "utazas.hu"}
tldMap["video.hu"] = TldItem{Tld: "video.hu"}
tldMap["id"] = TldItem{Tld: "id"}
tldMap["ac.id"] = TldItem{Tld: "ac.id"}
tldMap["biz.id"] = TldItem{Tld: "biz.id"}
tldMap["co.id"] = TldItem{Tld: "co.id"}
tldMap["desa.id"] = TldItem{Tld: "desa.id"}
tldMap["go.id"] = TldItem{Tld: "go.id"}
tldMap["mil.id"] = TldItem{Tld: "mil.id"}
tldMap["my.id"] = TldItem{Tld: "my.id"}
tldMap["net.id"] = TldItem{Tld: "net.id"}
tldMap["or.id"] = TldItem{Tld: "or.id"}
tldMap["ponpes.id"] = TldItem{Tld: "ponpes.id"}
tldMap["sch.id"] = TldItem{Tld: "sch.id"}
tldMap["web.id"] = TldItem{Tld: "web.id"}
tldMap["ie"] = TldItem{Tld: "ie"}
tldMap["gov.ie"] = TldItem{Tld: "gov.ie"}
tldMap["il"] = TldItem{Tld: "il"}
tldMap["ac.il"] = TldItem{Tld: "ac.il"}
tldMap["co.il"] = TldItem{Tld: "co.il"}
tldMap["gov.il"] = TldItem{Tld: "gov.il"}
tldMap["idf.il"] = TldItem{Tld: "idf.il"}
tldMap["k12.il"] = TldItem{Tld: "k12.il"}
tldMap["muni.il"] = TldItem{Tld: "muni.il"}
tldMap["net.il"] = TldItem{Tld: "net.il"}
tldMap["org.il"] = TldItem{Tld: "org.il"}
tldMap["im"] = TldItem{Tld: "im"}
tldMap["ac.im"] = TldItem{Tld: "ac.im"}
tldMap["co.im"] = TldItem{Tld: "co.im"}
tldMap["com.im"] = TldItem{Tld: "com.im"}
tldMap["ltd.co.im"] = TldItem{Tld: "ltd.co.im"}
tldMap["net.im"] = TldItem{Tld: "net.im"}
tldMap["org.im"] = TldItem{Tld: "org.im"}
tldMap["plc.co.im"] = TldItem{Tld: "plc.co.im"}
tldMap["tt.im"] = TldItem{Tld: "tt.im"}