-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpinpoint_prices.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 669 should actually have 8 columns, instead of 9 in line 668.
988 lines (988 loc) · 65.7 KB
/
pinpoint_prices.csv
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
CountryName,CountryCode,Inbound Price,Provider,HNI-Code,OutBoundTransactional Price,OutBound Promotional Price,OutBound OTP Price
Argentina,AR,0.0023,Claro,722 003,0.03865,0.03711,0.02358
Argentina,AR,0.0023,Claro Argentina,722 310,0.01896,0.01896,0.02358
Argentina,AR,0.0023,Claro Argentina,722 320,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Claro Argentina,722 330,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Nextel Argentina,722 002,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Nextel Argentina,722 020,0.01896,0.01896,0.02358
Argentina,AR,0.0023,Telecom Personal,722 034,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Telecom Personal,722 036,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Telecom Personal,722 340,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Telecom Personal,722 341,0.01896,0.01896,0.02358
Argentina,AR,0.0023,Telefonica Moviles,722 001,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Telefonica Moviles,722 007,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Telefonica Moviles,722 010,0.02821,0.02821,0.02358
Argentina,AR,0.0023,Telefonica Moviles,722 070,0.01896,0.01896,0.02358
Argentina,AR,0.0023,Tesam Argentina Sociedad Anonima,722 040,0.01896,0.01896,0.02358
Austria,AT,0.00465,A1 Telekom Austria AG,232 001,0.11448,0.11448,0.04694
Austria,AT,0.00465,A1 Telekom Austria AG,232 002,0.11448,0.11448,0.04694
Austria,AT,0.00465,A1 Telekom Austria AG,232 009,0.11448,0.11448,0.04694
Austria,AT,0.00465,A1 Telekom Austria AG,232 011,0.11448,0.11448,0.04694
Austria,AT,0.00465,A1 Telekom Austria AG,232 012,0.11448,0.11448,0.04694
Austria,AT,0.00465,A1 Telekom Austria AG,232 015,0.11448,0.11448,0.04694
Austria,AT,0.00465,Hutchison Drei Austria GmbH,232 005,0.11448,0.11448,0.04694
Austria,AT,0.00465,Hutchison Drei Austria GmbH,232 006,0.13841,0.12846,NA
Austria,AT,0.00465,Hutchison Drei Austria GmbH,232 010,0.11448,0.11448,0.04694
Austria,AT,0.00465,Hutchison Drei Austria GmbH,232 014,0.11448,0.11448,0.04694
Austria,AT,0.00465,Hutchison Drei Austria GmbH,232 016,0.11448,0.11448,0.04694
Austria,AT,0.00465,Lycamobile,232 008,0.10951,0.11448,0.04694
Austria,AT,0.00465,MASS Respones,232 017,0.09317,0.19512,NA
Austria,AT,0.00465,Smartspace,232 018,0.11448,0.11448,0.04694
Austria,AT,0.00465,T-Mobile Austria GmbH,232 003,0.11448,0.11448,0.04694
Austria,AT,0.00465,T-Mobile Austria GmbH,232 004,0.11448,0.11448,0.04694
Austria,AT,0.00465,Tele.ring,232 007,0.11448,0.11448,0.04694
Austria,AT,0.00465,Tele2,232 019,0.11448,0.11448,0.04694
Austria,AT,0.00465,UPC,232 013,0.11448,0.11448,0.04694
Austria,AT,0.00465,m:tel,232 020,0.11448,0.11448,0.04694
Australia,AU,0.009,CLX Networks Australia Pty Ltd,505 033,0.04473,0.04243,0.01834
Australia,AU,0.009,Compatel Limited,505 030,0.04473,0.04243,0.01834
Australia,AU,0.009,Dialogue Communications Pty,505 026,0.04473,0.04243,0.01834
Australia,AU,0.009,Lycamobile Pty Ltd,505 019,0.04473,0.04243,0.01834
Australia,AU,0.009,Messagebird Pty Ltd,505 035,0.04473,0.04243,0.01834
Australia,AU,0.009,Optus Mobile Pty Ltd,505 002,0.04473,0.04243,0.01834
Australia,AU,0.009,Optus Mobile Pty Ltd,505 017,0.04473,0.04243,0.01834
Australia,AU,0.009,Optus Mobile Pty Ltd,505 036,0.04473,0.04243,0.01834
Australia,AU,0.009,Optus Mobile Pty Ltd,505 090,0.04473,0.04243,0.01834
Australia,AU,0.009,Pivotel,505 088,0.04473,0.04243,0.01834
Australia,AU,0.009,Pivotel Satellite Pty Limited,505 050,0.04473,0.04243,0.01834
Australia,AU,0.009,Railcorp,505 013,0.04473,0.04243,0.01834
Australia,AU,0.009,Telstra Corporation Ltd,505 001,0.04473,0.04243,0.01834
Australia,AU,0.009,Telstra Corporation Ltd,505 011,0.04473,0.04243,0.01834
Australia,AU,0.009,Telstra Corporation Ltd,505 039,0.04473,0.04243,0.01834
Australia,AU,0.009,Telstra Corporation Ltd,505 071,0.04473,0.04243,0.01834
Australia,AU,0.009,Telstra Corporation Ltd,505 072,0.04473,0.04243,0.01834
Australia,AU,0.009,Victorian Rail Track Corporation,505 016,0.04473,0.04243,0.01834
Australia,AU,0.009,Vodafone Australia Pty Ltd,505 003,0.04473,0.04243,0.01834
Australia,AU,0.009,Vodafone Australia Pty Ltd,505 006,0.04473,0.04243,0.01834
Australia,AU,0.009,Vodafone Australia Pty Ltd,505 007,0.04473,0.04243,0.01834
Australia,AU,0.009,Vodafone Australia Pty Ltd,505 012,0.04473,0.04243,0.01834
Australia,AU,0.009,Vodafone Australia Pty Ltd,505 038,0.04473,0.04243,0.01834
Australia,AU,0.009,Vodafone Australia Pty Ltd,505 060,0.04473,0.04243,0.01834
Australia,AU,0.009,Vodafone Australia Pty Ltd,505 061,0.04473,0.04243,0.01834
Belgium,BE,0.00465,Base Company NV,206 020,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Belgacom,206 001,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Join Experience Belgium,206 040,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Lycamobile SPRL,206 006,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Mobistar s.a.,206 010,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Mundio Mobile Belgium nv,206 007,0.09533,0.09533,0.07424
Belgium,BE,0.00465,N.M.B.S.,206 002,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Telenet BVBA,206 030,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Telenet n.v.,206 005,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Voo,206 008,0.09533,0.09533,0.07424
Belgium,BE,0.00465,Voxbone S.A.,206 009,0.09533,0.09533,0.07424
Brazil,BR,0.00327,America Net,724 026,0.02333,0.0244,0.01098
Brazil,BR,0.00327,CTBC Celular S.A.,724 007,0.02678,0.02678,0.01098
Brazil,BR,0.00327,CTBC Celular S.A.,724 032,0.0244,0.0244,0.01098
Brazil,BR,0.00327,CTBC Celular S.A.,724 033,0.02678,0.02678,0.01098
Brazil,BR,0.00327,CTBC Celular S.A.,724 034,0.02678,0.02678,0.01098
Brazil,BR,0.00327,Cinco,724 014,0.01098,0.02455,NA
Brazil,BR,0.00327,Claro S.A.,724 005,0.0244,0.0244,0.01098
Brazil,BR,0.00327,Claro S.A.,724 038,0.02678,0.02678,0.01098
Brazil,BR,0.00327,Datora Mobile Telecomunicacoes,724 018,0.0244,0.0244,0.01098
Brazil,BR,0.00327,Nextel Services de Telecomunicacoes Ltda,724 039,0.0244,0.0244,0.01098
Brazil,BR,0.00327,Nextel Telephone,724 000,0.0244,0.0244,0.01098
Brazil,BR,0.00327,Oi,724 016,0.0244,0.0244,0.01098
Brazil,BR,0.00327,Oi,724 024,0.02678,0.02678,0.01098
Brazil,BR,0.00327,Oi,724 030,0.02678,0.02678,0.01098
Brazil,BR,0.00327,Oi,724 031,0.02678,0.02678,0.01098
Brazil,BR,0.00327,Options Computadores & Eletronica LTDA,724 036,0.0244,0.0244,0.01098
Brazil,BR,0.00327,Porto Conecta,724 054,0.0244,0.0244,0.01098
Brazil,BR,0.00327,SERCOMTEL Celular S.A.,724 015,0.0244,0.0244,0.01098
Brazil,BR,0.00327,SERCOMTEL Celular S.A.,724 055,0.02678,0.02678,0.01098
Brazil,BR,0.00327,Surf Telecom,724 017,0.02333,0.0244,0.01098
Brazil,BR,0.00327,TIM Celular S.A.,724 002,0.0244,0.0244,0.01098
Brazil,BR,0.00327,TIM Celular S.A.,724 003,0.02678,0.02678,0.01098
Brazil,BR,0.00327,TIM Celular S.A.,724 004,0.02678,0.02678,0.01098
Brazil,BR,0.00327,TIM Celular S.A.,724 008,0.02678,0.02678,0.01098
Brazil,BR,0.00327,UNICEL do Brasil Telecomunications,724 037,0.0244,0.0244,0.01098
Brazil,BR,0.00327,VIVO S.A.,724 006,0.0244,0.0244,0.01098
Brazil,BR,0.00327,VIVO S.A.,724 010,0.02678,0.02678,0.01098
Brazil,BR,0.00327,VIVO S.A.,724 011,0.02678,0.02678,0.01098
Brazil,BR,0.00327,VIVO S.A.,724 023,0.02678,0.02678,0.01098
Brazil,BR,0.00327,Vivo,724 019,0.02333,0.0244,0.01098
Canada,CA,0.00155,BELL ALIANT REGIONAL Communications LP,302 702,0.00281,0.00281,NA
Canada,CA,0.00155,BELL ALIANT REGIONAL Communications LP,302 998,0.00109,0.00109,NA
Canada,CA,0.00155,BRAGG Communications INC.,302 270,0.00281,0.00281,0.0011
Canada,CA,0.00155,Chatr Mobile,302 952,0.00687,0.00687,0.0011
Canada,CA,0.00155,Cityfone,302 955,0.00687,0.00687,0.0011
Canada,CA,0.00155,Enflick,302 951,0.00687,0.00687,0.0011
Canada,CA,0.00155,Execulink Telecom,302 340,0.00281,0.00281,0.0011
Canada,CA,0.00155,Explornet Communications Inc.,302 130,0.00281,0.00281,NA
Canada,CA,0.00155,Explornet Communications Inc.,302 131,0.00109,0.00109,NA
Canada,CA,0.00155,First Networks Operations,302 350,0.00687,0.00687,0.0011
Canada,CA,0.00155,Fizz Mobile,302 956,0.00687,0.00687,0.0011
Canada,CA,0.00155,Freedom Mobile Inc.,302 490,0.00281,0.00281,0.0011
Canada,CA,0.00155,Freedom Mobile Inc.,302 491,0.00109,0.00109,NA
Canada,CA,0.00155,Globalstar Canada Company,302 710,0.00281,0.00281,0.0011
Canada,CA,0.00155,Ice Wireless Inc.,302 620,0.00281,0.00281,0.0011
Canada,CA,0.00155,Iristel Inc.,302 600,0.06812,0.06812,NA
Canada,CA,0.00155,Keewaytinook Okimakanak,302 380,0.00109,0.00109,0.0011
Canada,CA,0.00155,Keewaytinook Okimakanak,302 530,0.00281,0.00281,NA
Canada,CA,0.00155,Kore Wireless,302 953,0.00687,0.00687,0.0011
Canada,CA,0.00155,MTS Communications Inc.,302 655,0.00281,0.00281,0.0011
Canada,CA,0.00155,MTS Communications Inc.,302 660,0.00109,0.00109,0.0011
Canada,CA,0.00155,Quadro Communications,302 590,0.00687,0.00687,0.0011
Canada,CA,0.00155,Rogers Communications Canada Inc.,302 320,0.00687,0.00687,0.0011
Canada,CA,0.00155,Rogers Communications Canada Inc.,302 370,0.00268,0.00268,0.0011
Canada,CA,0.00155,Rogers Communications Canada Inc.,302 720,0.00268,0.00268,0.0011
Canada,CA,0.00155,Rogers Communications Canada Inc.,302 820,0.0146,0.0146,NA
Canada,CA,0.00155,SSI Micro Ltd,302 957,0.00687,0.00687,0.0011
Canada,CA,0.00155,SSI Micro Ltd.,302 480,0.00281,0.00281,NA
Canada,CA,0.00155,Sask Tel,302 654,0.00109,0.00109,NA
Canada,CA,0.00155,Sask Tel,302 680,0.00281,0.00281,0.0011
Canada,CA,0.00155,Sask Tel,302 750,0.00109,0.00109,0.0011
Canada,CA,0.00155,Sask Tel,302 780,0.00109,0.00109,0.0011
Canada,CA,0.00155,TBayTel Wireless,302 656,0.00687,0.00687,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 220,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 221,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 222,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 360,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 361,0.02131,0.02131,NA
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 610,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 630,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 640,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 651,0.02131,0.02131,NA
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 652,0.02131,0.02131,NA
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 653,0.02131,0.02131,NA
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 657,0.02131,0.02131,NA
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 690,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 760,0.00268,0.00268,0.0011
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 860,0.02131,0.02131,NA
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 861,0.02131,0.02131,NA
Canada,CA,0.00155,Telus Communications / Bell Cellular Inc. / Aliant Telecom,302 880,0.05462,0.05462,NA
Canada,CA,0.00155,Videotron G.P.,302 500,0.00109,0.00109,0.0011
Canada,CA,0.00155,Videotron G.P.,302 510,0.00281,0.00281,0.0011
Canada,CA,0.00155,Videotron G.P.,302 520,0.00109,0.00109,NA
Canada,CA,0.00155,Wightman Telecom,302 940,0.00281,0.00281,0.0011
Canada,CA,0.00155,Xplornet,302 958,0.0011,0.00687,NA
Canada,CA,0.00155,Ztar Mobile,302 954,0.00687,0.00687,0.0011
Switzerland,CH,0.00163,Bebbicell AG,228 051,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,BeeOne Communications SA,228 058,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,Comfone AG,228 005,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,Comfone AG,228 009,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,Lycamobile AG,228 054,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,Salt Mobile SA,228 003,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,Sunrise Communications AG,228 002,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,Sunrise Communications AG,228 012,0.06158,0.06158,NA
Switzerland,CH,0.00163,Sunrise Communications AG,228 060,0.06158,0.06158,NA
Switzerland,CH,0.00163,Swisscom AG,228 001,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,Tele2,228 008,0.06829,0.07751,0.03448
Switzerland,CH,0.00163,UPC Schweiz GmbH,228 053,0.05809,0.05809,0.03448
Switzerland,CH,0.00163,in&phone,228 007,0.06829,0.07751,0.03448
Chile,CL,0.00155,Celupago S.A.,730 011,0.03582,0.03582,0.02176
Chile,CL,0.00155,Claro Chile S.A.,730 003,0.03582,0.03582,0.02176
Chile,CL,0.00155,Compatel Chile Limitada,730 017,0.03582,0.03582,0.02176
Chile,CL,0.00155,Entel PCS Telecomunicaciones S.A.,730 001,0.03582,0.03582,0.02176
Chile,CL,0.00155,Entel PCS Telecomunicaciones S.A.,730 010,0.03582,0.03582,0.02176
Chile,CL,0.00155,Netline Telefonica Movil Limitada,730 014,0.03582,0.03582,0.02176
Chile,CL,0.00155,Nextel Chile,730 009,0.03582,0.03582,0.02176
Chile,CL,0.00155,Nextel Radio Chile,730 004,0.03582,0.03582,0.02176
Chile,CL,0.00155,Nextel Radio Chile,730 006,0.03582,0.03582,0.02176
Chile,CL,0.00155,Nomade Telecomunicaciones S.A.,730 016,0.03582,0.03582,0.02176
Chile,CL,0.00155,Simple Spa (Movistar),730 072,0.04975,0.04121,0.02176
Chile,CL,0.00155,Telefonica Moviles Chile S.A.,730 002,0.03582,0.03582,0.02176
Chile,CL,0.00155,Telefonica Moviles Chile S.A.,730 007,0.03582,0.03582,0.02176
Chile,CL,0.00155,Telestar Movil S.A.,730 012,0.03582,0.03582,0.02176
Chile,CL,0.00155,Tribe Mobile SPA,730 013,0.03582,0.03582,0.02176
Chile,CL,0.00155,VTR Banda Ancha S.A.,730 008,0.03582,0.03582,0.02176
Chile,CL,0.00155,WILL Telefonia,730 099,0.04975,0.04121,0.02176
China,CN,0.009,China Mobile,460 000,0.01531,0.01531,0.01263
China,CN,0.009,China Mobile,460 002,0.01195,0.01195,0.01263
China,CN,0.009,China Mobile,460 004,0.01195,0.01195,0.01263
China,CN,0.009,China Mobile,460 007,0.01195,0.01195,0.01263
China,CN,0.009,China Mobile,460 008,0.01195,0.01195,0.01263
China,CN,0.009,China Netcom,460 998,0.01531,0.01531,0.01263
China,CN,0.009,China Telecom,460 003,0.01531,0.01531,0.01263
China,CN,0.009,China Telecom,460 005,0.01195,0.01195,0.01263
China,CN,0.009,China Telecom,460 011,0.01195,0.01195,0.01263
China,CN,0.009,China Unicom,460 001,0.01531,0.01531,0.01263
China,CN,0.009,China Unicom,460 006,0.01195,0.01195,0.01263
China,CN,0.009,China Unicom,460 009,0.01195,0.01195,0.01263
China,CN,0.009,ChinaSat,460 996,0.01531,0.01531,0.01263
Czech Republic,CZ,0.00155,Compatel s.r.o.,230 008,0.07926,0.07926,0.05255
Czech Republic,CZ,0.00155,Mundio Distribution Czech Republic s.r.o.,230 009,0.07926,0.07926,0.05255
Czech Republic,CZ,0.00155,Nordic Telecom s.r.o.,230 004,0.07926,0.07926,0.05255
Czech Republic,CZ,0.00155,T-Mobile Czech Republic,230 001,0.07926,0.07926,0.05255
Czech Republic,CZ,0.00155,T-Mobile Czech Republic,230 005,0.06609,0.06609,NA
Czech Republic,CZ,0.00155,Telfonica O2 Czech Republic,230 002,0.07926,0.07926,0.05255
Czech Republic,CZ,0.00155,Telfonica O2 Czech Republic,230 010,0.07926,0.07926,0.05255
Czech Republic,CZ,0.00155,Vodafone Czech Republic,230 003,0.07926,0.07926,0.05255
Czech Republic,CZ,0.00155,Vodafone Czech Republic,230 099,0.07926,0.07926,0.05255
Germany,DE,0.00256,Argons Networks UG,262 076,0.08998,0.08998,0.07368
Germany,DE,0.00256,E-Plus Mobilfunk,262 003,0.08998,0.08998,0.07368
Germany,DE,0.00256,E-Plus Mobilfunk,262 005,0.15363,0.15363,0.07368
Germany,DE,0.00256,E-Plus Mobilfunk,262 012,0.15363,0.15363,0.07368
Germany,DE,0.00256,E-Plus Mobilfunk,262 016,0.15363,0.15363,0.07368
Germany,DE,0.00256,E-Plus Mobilfunk,262 017,0.15363,0.15363,0.07368
Germany,DE,0.00256,E-Plus Mobilfunk,262 020,0.15363,0.15363,0.07368
Germany,DE,0.00256,E-Plus Mobilfunk,262 033,0.15363,0.15363,0.07368
Germany,DE,0.00256,E-Plus Mobilfunk,262 077,0.15363,0.15363,0.07368
Germany,DE,0.00256,Lycamobile Germany,262 043,0.08998,0.08998,0.07368
Germany,DE,0.00256,Telefonica Germany,262 007,0.08998,0.08998,0.07368
Germany,DE,0.00256,Telefonica Germany,262 008,0.15363,0.15363,0.07368
Germany,DE,0.00256,Telefonica Germany,262 011,0.15363,0.15363,0.07368
Germany,DE,0.00256,Telekom Deutschland GmbH,262 001,0.08998,0.08998,0.07368
Germany,DE,0.00256,Telekom Deutschland GmbH,262 006,0.15363,0.15363,0.07368
Germany,DE,0.00256,Telekom Deutschland GmbH,262 078,0.15363,0.15363,0.07368
Germany,DE,0.00256,Vodafone GmbH,262 002,0.08998,0.08998,0.07368
Germany,DE,0.00256,Vodafone GmbH,262 004,0.15363,0.15363,0.07368
Germany,DE,0.00256,Vodafone GmbH,262 009,0.15363,0.15363,0.07368
Germany,DE,0.00256,Vodafone GmbH,262 010,0.15363,0.15363,0.07368
Germany,DE,0.00256,Vodafone GmbH,262 042,0.15363,0.15363,0.07368
Denmark,DK,0.00186,Banedanmark,238 023,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Compatel Limited,238 013,0.0399,0.0399,0.02208
Denmark,DK,0.00186,CoolTEL,238 028,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Greenwave Mobile,238 042,0.04414,0.05385,0.02208
Denmark,DK,0.00186,Hi3G,238 006,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Ice Danmark ApS,238 015,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Lycamobile Denmark Ltd,238 012,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Mach Connectivity,238 003,0.0399,0.0399,0.02208
Denmark,DK,0.00186,MobiWeb Limited,238 043,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Naka AG,238 017,0.0399,0.0399,0.02208
Denmark,DK,0.00186,NextGen Mobile,238 004,0.0399,0.0399,0.02208
Denmark,DK,0.00186,TDC A/S,238 001,0.0399,0.0399,0.02208
Denmark,DK,0.00186,TDC A/S,238 010,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Telenor,238 002,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Telenor,238 077,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Telia,238 020,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Telia,238 030,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Telia,238 066,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Tismi BV,238 016,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Vectone Mobile,238 007,0.0399,0.0399,0.02208
Denmark,DK,0.00186,Voxbone,238 008,0.0399,0.0399,0.02208
Estonia,EE,0.00155,AS EMT,248 001,0.11156,0.1108,0.04657
Estonia,EE,0.00155,Elisa Eesti AS,248 002,0.11156,0.1108,0.04657
Estonia,EE,0.00155,Tele2 Eesti AS,248 003,0.11156,0.1108,0.04657
Estonia,EE,0.00155,Top Connect,248 004,0.07682,0.1108,NA
Spain,ES,0.00093,Aire Networks del Mediterráneo,214 034,0.03609,0.08721,NA
Spain,ES,0.00093,Cableuropa,214 180,0.08802,0.08721,0.03609
Spain,ES,0.00093,Digi Spain Telecom S.L.,214 022,0.08802,0.08721,0.03609
Spain,ES,0.00093,Euskaltel S.A.,214 008,0.08802,0.08721,0.03609
Spain,ES,0.00093,Flamatel,214 000,0.08802,0.08721,0.03609
Spain,ES,0.00093,Jazztel,214 210,0.08802,0.08721,0.03609
Spain,ES,0.00093,Lleida,214 026,0.08802,0.08721,0.03609
Spain,ES,0.00093,Lycamobile S.L.,214 025,0.08802,0.08721,0.03609
Spain,ES,0.00093,Masmovil Ibercom S.A.,214 029,0.08802,0.08721,0.03609
Spain,ES,0.00093,Masmovil Ibercom S.A.,214 086,0.08802,0.08721,0.03609
Spain,ES,0.00093,Masmovil Ibercom S.A.,214 099,0.08802,0.08721,0.03609
Spain,ES,0.00093,Movistar,214 002,0.08802,0.08721,0.03609
Spain,ES,0.00093,Movistar,214 005,0.08802,0.08721,0.03609
Spain,ES,0.00093,Movistar,214 007,0.08802,0.08721,0.03609
Spain,ES,0.00093,Movistar,214 070,0.08802,0.08721,0.03609
Spain,ES,0.00093,Orange,214 030,0.08802,0.08721,0.03609
Spain,ES,0.00093,Orange Espana S.A. Unipersonal,214 003,0.08802,0.08721,0.03609
Spain,ES,0.00093,Orange Espana S.A. Unipersonal,214 009,0.08802,0.08721,0.03609
Spain,ES,0.00093,Orange Espana S.A. Unipersonal,214 011,0.08802,0.08721,0.03609
Spain,ES,0.00093,Orange Espana S.A. Unipersonal,214 021,0.08802,0.08721,0.03609
Spain,ES,0.00093,Parlem Telecom Companyia De Telecomunicacions S.L,214 020,0.08802,0.08721,0.03609
Spain,ES,0.00093,R Cable y Telecomunicaciones Galicia S.A.,214 017,0.08802,0.08721,0.03609
Spain,ES,0.00093,SCN Truphone S.L.,214 027,0.08802,0.08721,0.03609
Spain,ES,0.00093,Simyo,214 019,0.08802,0.08721,0.03609
Spain,ES,0.00093,Telecable de Asturias S.A.U.,214 016,0.08802,0.08721,0.03609
Spain,ES,0.00093,Tuenti Technologies S.L.,214 032,0.08802,0.08721,0.03609
Spain,ES,0.00093,Tuenti Technologies S.L.,214 098,0.08802,0.08721,0.03609
Spain,ES,0.00093,Vectone,214 023,0.08802,0.08721,0.03609
Spain,ES,0.00093,Vectone,214 035,0.08802,0.08721,0.03609
Spain,ES,0.00093,Vodafone,214 001,0.08802,0.08721,0.03609
Spain,ES,0.00093,Vodafone,214 010,0.08802,0.08721,0.03609
Spain,ES,0.00093,Vodafone,214 015,0.08802,0.08721,0.03609
Spain,ES,0.00093,Vodafone,214 024,0.08802,0.08721,0.03609
Spain,ES,0.00093,Vodafone Enabler Espana S.L.,214 006,0.08802,0.08721,0.03609
Spain,ES,0.00093,Vodafone ONO S.A. Unipersonal,214 018,0.08802,0.08721,0.03609
Spain,ES,0.00093,XFERA Moviles S.A.,214 004,0.08802,0.08721,0.03609
Finland,FI,0.00165,Ainacom OY,244 004,0.11346,0.11346,0.05497
Finland,FI,0.00165,Alands Telekommunikation Ab,244 014,0.11346,0.11346,0.05497
Finland,FI,0.00165,Compatel Limited,244 026,0.11346,0.11346,0.05497
Finland,FI,0.00165,DNA Palvelut OY,244 003,0.11346,0.11346,0.05497
Finland,FI,0.00165,DNA Palvelut OY,244 012,0.11346,0.11346,0.05497
Finland,FI,0.00165,DNA Palvelut OY,244 013,0.11346,0.11346,0.05497
Finland,FI,0.00165,Elisa OYJ,244 005,0.11346,0.11346,0.05497
Finland,FI,0.00165,Elisa OYJ,244 006,0.11346,0.11346,0.05497
Finland,FI,0.00165,Elisa OYJ,244 021,0.11346,0.11346,0.05497
Finland,FI,0.00165,Kuiri Mobile Oy,244 031,0.11346,0.11346,0.05497
Finland,FI,0.00165,Kuiri Mobile Oy,244 035,0.11346,0.11346,0.05497
Finland,FI,0.00165,Liikennevirasto,244 017,0.11346,0.11346,0.05497
Finland,FI,0.00165,Mundio Mobile Ltd,244 011,0.11341,0.11341,NA
Finland,FI,0.00165,Nokia Solutions and Networks Oy,244 007,0.11346,0.11346,0.05497
Finland,FI,0.00165,Nokia Solutions and Networks Oy,244 008,0.11346,0.11346,0.05497
Finland,FI,0.00165,Nokia Solutions and Networks Oy,244 009,0.11346,0.11346,0.05497
Finland,FI,0.00165,Nokia Solutions and Networks Oy,244 038,0.11346,0.11346,0.05497
Finland,FI,0.00165,Nokia Solutions and Networks Oy,244 039,0.11346,0.11346,0.05497
Finland,FI,0.00165,Nokia Solutions and Networks Oy,244 040,0.11346,0.11346,0.05497
Finland,FI,0.00165,Nokia Solutions and Networks Oy,244 041,0.11346,0.11346,0.05497
Finland,FI,0.00165,SMS Provider Corp.,244 042,0.11346,0.11346,0.05497
Finland,FI,0.00165,TDC Oy Finland,244 010,0.11341,0.11341,NA
Finland,FI,0.00165,Telavox AB,244 043,0.11346,0.11346,0.05497
Finland,FI,0.00165,Telia Finland Oyj,244 036,0.11346,0.11346,0.05497
Finland,FI,0.00165,Telia Finland Oyj,244 092,0.11346,0.11346,0.05497
Finland,FI,0.00165,Teliasonera Finland OYJ,244 091,0.11346,0.11346,0.05497
Finland,FI,0.00165,Tismi BV,244 037,0.11346,0.11346,0.05497
Finland,FI,0.00165,Voxbone SA,244 032,0.11346,0.11346,0.05497
France,FR,0.00023,AFONE,208 027,0.05564,0.05564,0.04219
France,FR,0.00023,Bouygues Telecom,208 020,0.05564,0.05564,0.04219
France,FR,0.00023,Bouygues Telecom,208 021,0.095,0.095,0.04219
France,FR,0.00023,Bouygues Telecom,208 088,0.095,0.095,0.04219
France,FR,0.00023,Completel,208 008,0.05564,0.05564,0.04219
France,FR,0.00023,Free,208 015,0.05564,0.05564,0.04219
France,FR,0.00023,Free,208 016,0.095,0.095,0.04219
France,FR,0.00023,Free Mobile,208 014,0.06027,0.0594,0.04219
France,FR,0.00023,Globalstar Europe,208 005,0.05564,0.05564,0.04219
France,FR,0.00023,Globalstar Europe,208 006,0.095,0.095,0.04219
France,FR,0.00023,Globalstar Europe,208 007,0.095,0.095,0.04219
France,FR,0.00023,Halys,208 094,0.05564,0.05564,0.04219
France,FR,0.00023,Legos,208 017,0.05564,0.05564,0.04219
France,FR,0.00023,LycaMobile,208 025,0.05564,0.05564,0.04219
France,FR,0.00023,Mobiquithings,208 003,0.095,0.095,0.04219
France,FR,0.00023,Mobiquithings,208 024,0.05564,0.05564,0.04219
France,FR,0.00023,Mundio Mobile,208 031,0.05564,0.05564,0.04219
France,FR,0.00023,NRJ Mobile,208 026,0.05564,0.05564,0.04219
France,FR,0.00023,Omea Telecom,208 023,0.05828,0.05828,0.04219
France,FR,0.00023,Orange,208 000,0.06027,0.0594,0.04219
France,FR,0.00023,Orange France,208 001,0.05564,0.05564,0.04219
France,FR,0.00023,Orange France,208 002,0.095,0.095,0.04219
France,FR,0.00023,Orange France,208 032,0.095,0.095,0.04219
France,FR,0.00023,Orange France,208 091,0.095,0.095,0.04219
France,FR,0.00023,Orange France,208 095,0.095,0.095,0.04219
France,FR,0.00023,SFR,208 009,0.095,0.095,0.04219
France,FR,0.00023,SFR,208 010,0.05564,0.05564,0.04219
France,FR,0.00023,SFR,208 011,0.095,0.095,0.04219
France,FR,0.00023,SFR,208 013,0.095,0.095,0.04219
France,FR,0.00023,SiSTEER,208 004,0.05564,0.05564,0.04219
France,FR,0.00023,Syma Mobile,208 030,0.05564,0.05564,0.04219
France,FR,0.00023,Transatel,208 022,0.05564,0.05564,0.04219
France,FR,0.00023,Virgin Mobile,208 089,0.06027,0.0594,0.04219
United Kingdom,GB,0.009,(aq) Limited,234 029,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Airwave Solutions Ltd,234 078,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Amsuk Ltd,234 070,0.0253,0.0253,0.02848
United Kingdom,GB,0.009,BT,234 000,0.0253,0.0253,0.02848
United Kingdom,GB,0.009,BT,234 076,0.04504,0.04504,0.02848
United Kingdom,GB,0.009,BT,235 077,0.04504,0.04504,0.02848
United Kingdom,GB,0.009,BT OnePhone Limited,234 008,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Cloud9 Mobile Communications Ltd,234 018,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,EE Orange,234 033,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,EE Orange,234 034,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,EE Tmobile,235 001,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,EE Tmobile,235 002,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,EE Tmobile,234 030,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,EE Tmobile,234 086,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,FleXtel Limited,234 017,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Gamma Telecom Holdings Ltd,234 039,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,HAY SYSTEMS LIMITED,234 014,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Home Office,234 071,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Hutchison 3G Ltd,234 020,0.02683,0.02683,0.02848
United Kingdom,GB,0.009,Hutchison 3G Ltd,235 094,0.04778,0.04778,0.02848
United Kingdom,GB,0.009,Icron Network Limited,234 023,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Jersey Airtel Limited,234 003,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Jersey Telecom,234 050,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Limitless Mobile Ltd,234 053,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Limitless Mobile Ltd,234 059,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,Lleida.net,234 099,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Lycamobile UK Limited,234 026,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Manx Telecom,234 058,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Marathon Telecom Limited,234 028,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Mundio Mobile Limited,235 000,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,Mundio Mobile Limited,234 001,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Other,234 005,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Other,234 006,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Other,234 007,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Other,234 022,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Other,234 035,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Other,234 037,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Other,235 092,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Other,234 994,0.02876,0.02876,0.02848
United Kingdom,GB,0.009,Sky UK Limited,234 057,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Stour Marine Limited,234 024,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Sure (Isle of Man) Limited,234 036,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Sure (Jersey) Limited,901 046,0.04507,0.04507,NA
United Kingdom,GB,0.009,Sure (Jersey) Limited,234 055,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,TalkTalk Communications Limited,234 016,0.02546,0.02546,0.02848
United Kingdom,GB,0.009,Teleena UK Limited,234 027,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Telefonica UK Limited,234 002,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,Telefonica UK Limited,234 010,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Telefonica UK Limited,234 011,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,Teleware Plc,234 019,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Tismi BV,234 009,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Truphone Ltd,234 025,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,UK Broadband Limited,235 003,0.04507,0.04507,NA
United Kingdom,GB,0.009,UK Broadband Limited,234 051,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Virgin Mobile Telecoms Limited,234 031,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Virgin Mobile Telecoms Limited,234 032,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,Virgin Mobile Telecoms Limited,234 038,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,Vodafone UK Ltd,234 015,0.02531,0.02531,0.02848
United Kingdom,GB,0.009,Vodafone UK Ltd,235 091,0.04507,0.04507,0.02848
United Kingdom,GB,0.009,Vodafone UK Ltd,234 091,0.04507,0.04507,NA
Guatemala,GT,0.00326,Claro Guatemala,704 001,0.05992,0.05992,0.02457
Guatemala,GT,0.00326,Comcel,704 002,0.05992,0.05992,0.02457
Guatemala,GT,0.00326,Telefonica,704 003,0.05992,0.05992,0.02457
Hong Kong,HK,0.00116,21Vianet Mobile Limited,454 021,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,CITIC Telecom 1616 Limited,454 001,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,CSL,454 000,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,CSL,454 002,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,CSL,454 010,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,CSL,454 018,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,CSL,454 020,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,China Mobile Hong Kong,454 028,0.10748,0.10526,0.04407
Hong Kong,HK,0.00116,China Mobile Hong Kong Company Limited,454 012,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,China Mobile Hong Kong Company Limited,454 013,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,China Motion Telecom (HK) Limited,454 009,0.07819,0.07819,0.04407
Hong Kong,HK,0.00116,China Telecom Global Limited,454 031,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,China Unicom (Hong Kong) Operations Ltd,454 007,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,China-Hongkong Telecom Ltd,454 011,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Delcom (HK) Limited,454 022,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Easco Telecommunications Limited,454 036,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Hong Kong Broadband Network Limited,454 032,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Hutchison Telecom Hong Kong Holdings Limited,454 003,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Hutchison Telecom Hong Kong Holdings Limited,454 004,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Hutchison Telecom Hong Kong Holdings Limited,454 005,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Hutchison Telecom Hong Kong Holdings Limited,454 014,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Lycamobile Hong Kong Limited,454 023,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Multi-byte Info,454 024,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,PCCW-HKT Telephone Limited,454 016,0.07819,0.07819,0.04407
Hong Kong,HK,0.00116,PCCW-HKT Telephone Limited,454 019,0.07819,0.07819,0.04407
Hong Kong,HK,0.00116,PCCW-HKT Telephone Limited,454 029,0.07819,0.07819,0.04407
Hong Kong,HK,0.00116,SmarTone Mobile Communications Ltd,454 006,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,SmarTone Mobile Communications Ltd,454 015,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,SmarTone Mobile Communications Ltd,454 017,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Tai Tung Mobile Phone Company Limited,454 033,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Tink Labs Limited,454 037,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Truphone (Hong Kong) Limited,454 008,0.07465,0.07465,0.04407
Hong Kong,HK,0.00116,Webbing Hong Kong Limited,454 035,0.07465,0.07465,0.04407
Honduras,HN,0.00419,Claro,708 000,0.06097,0.0847,0.03626
Honduras,HN,0.00419,Claro,708 001,0.0779,0.0779,0.03626
Honduras,HN,0.00419,Digicel,708 004,0.06097,0.0847,0.03626
Honduras,HN,0.00419,Digicel Honduras,708 040,0.0779,0.0779,0.03626
Honduras,HN,0.00419,HONDUTEL,708 030,0.0779,0.0779,0.03626
Honduras,HN,0.00419,Tigo,708 002,0.0779,0.0779,0.03626
Croatia,HR,0.00155,T-HT,219 001,0.07112,0.07112,0.03688
Croatia,HR,0.00155,Tele2,219 002,0.07112,0.07112,0.03688
Croatia,HR,0.00155,VIPnet d.o.o.,219 010,0.07112,0.07112,0.03688
Hungary,HU,0.00465,Invitech Megoldasok Zrt.,216 004,0.12258,0.12258,0.05026
Hungary,HU,0.00465,Magyar Telekom Nyrt.,216 030,0.12258,0.12258,0.05026
Hungary,HU,0.00465,Telenor Magyarorszag Zrt.,216 001,0.12258,0.12258,0.05026
Hungary,HU,0.00465,Telenor Magyarorszag Zrt.,216 003,0.12258,0.12258,0.05026
Hungary,HU,0.00465,UPC Hungary,216 071,0.12258,0.12258,0.05026
Hungary,HU,0.00465,Vodafone Magyarorszag Zrt.,216 070,0.12258,0.12258,0.05026
Indonesia,ID,0.00047,Axis,510 008,0.0293,0.0293,0.04633
Indonesia,ID,0.00047,Bakrie Telecom,510 099,0.07673,0.08089,0.04633
Indonesia,ID,0.00047,Ceria,510 027,0.0293,0.0293,0.04633
Indonesia,ID,0.00047,Indosat,510 001,0.0293,0.0293,0.04633
Indonesia,ID,0.00047,Indosat,510 003,0.03502,0.03502,0.04633
Indonesia,ID,0.00047,Indosat,510 021,0.03502,0.03502,0.04633
Indonesia,ID,0.00047,PT Hutchison 3 Indonesia,510 089,0.0293,0.0293,0.04633
Indonesia,ID,0.00047,PT Pasifik Satelit Nusantara (PSN),510 000,0.01944,0.00306,NA
Indonesia,ID,0.00047,PT XL Axiata Tbk,510 011,0.0293,0.0293,0.04633
Indonesia,ID,0.00047,Smartfren,510 009,0.0293,0.0293,0.04633
Indonesia,ID,0.00047,Smartfren,510 028,0.03502,0.03502,0.04633
Indonesia,ID,0.00047,Telkomsel,510 007,0.113,0.09668,0.04633
Indonesia,ID,0.00047,Telkomsel,510 010,0.09455,0.08089,0.04633
Ireland,IE,0.00116,Carphone Warehouse,272 016,0.09924,0.09924,0.04069
Ireland,IE,0.00116,Liffey Telecom Ltd,272 011,0.09924,0.09924,0.04069
Ireland,IE,0.00116,Lycamobile Ireland Ltd,272 013,0.09924,0.09924,0.04069
Ireland,IE,0.00116,Meteor,272 003,0.09924,0.09924,0.04069
Ireland,IE,0.00116,Meteor,272 007,0.09924,0.09924,0.04069
Ireland,IE,0.00116,Three Ireland (Hutchison) Ltd,272 005,0.09924,0.09924,0.04069
Ireland,IE,0.00116,Three Ireland Services (Hutchison) Ltd,272 002,0.09924,0.09924,0.04069
Ireland,IE,0.00116,Virgin Media Ireland Ltd,272 015,0.09924,0.09924,0.04069
Ireland,IE,0.00116,Vodafone Ireland plc,272 001,0.09924,0.09924,0.04069
Israel,IL,0.00279,AZI Communications,425 019,0.00868,0.00868,0.0058
Israel,IL,0.00279,Alon Cellular,425 014,0.00868,0.00868,0.0058
Israel,IL,0.00279,Annatel Mobile,425 026,0.0058,0.01348,NA
Israel,IL,0.00279,Beezz Communication Solutions,425 023,0.00868,0.00868,0.0058
Israel,IL,0.00279,Cellact Communications,425 018,0.00868,0.00868,0.0058
Israel,IL,0.00279,Cellcom,425 002,0.00868,0.00868,0.0058
Israel,IL,0.00279,Free Telecom,425 012,0.00868,0.00868,0.0058
Israel,IL,0.00279,Golan Telecom,425 008,0.00868,0.00868,0.0058
Israel,IL,0.00279,HomeCell,425 015,0.00868,0.00868,0.0058
Israel,IL,0.00279,Hot Mobile,425 007,0.00868,0.00868,0.0058
Israel,IL,0.00279,Hot Mobile,425 028,0.00868,0.00868,NA
Israel,IL,0.00279,Hot Mobile,425 077,0.00868,0.00868,0.0058
Israel,IL,0.00279,Jawwal Palestine,425 005,0.00868,0.00868,0.0058
Israel,IL,0.00279,LB Annatel Ltd,425 046,0.00868,0.00868,NA
Israel,IL,0.00279,Partner,425 001,0.00868,0.00868,0.0058
Israel,IL,0.00279,Pelephone,425 003,0.00868,0.00868,0.0058
Israel,IL,0.00279,Pelephone,425 303,0.01414,0.01348,0.0058
Israel,IL,0.00279,Rami Levy Communications,425 016,0.00868,0.00868,0.0058
Israel,IL,0.00279,Wataniya,425 006,0.00868,0.00868,0.0058
Israel,IL,0.00279,Xphone,425 009,0.01414,0.01348,0.0058
India,IN,0.00187,All Networks,undefined undefined,0.00223,0.00223,0.00223
Italy,IT,0.00465,British Telecom Italia,222 034,0.06814,0.06814,0.03432
Italy,IT,0.00465,Digi Mobil,222 036,0.06814,0.06814,0.03432
Italy,IT,0.00465,Elsacom,222 002,0.07004,0.07004,0.03432
Italy,IT,0.00465,Enel S.p.A.,222 042,0.06814,0.06814,0.03432
Italy,IT,0.00465,FastWeb S.p.A.,222 008,0.06814,0.06814,0.03432
Italy,IT,0.00465,H3G S.p.A.,222 033,0.08143,0.08143,0.03432
Italy,IT,0.00465,H3G S.p.A.,222 037,0.08143,0.08143,0.03432
Italy,IT,0.00465,H3G S.p.A.,222 099,0.06814,0.06814,0.03432
Italy,IT,0.00465,Iliad,222 050,0.06814,0.06814,0.03432
Italy,IT,0.00465,Intermatica S.r.l.,222 004,0.06814,0.06814,0.03432
Italy,IT,0.00465,Lycamobile S.r.L.,222 035,0.06814,0.06814,0.03432
Italy,IT,0.00465,Noverca Italia S.r.l.,222 007,0.06814,0.06814,0.03432
Italy,IT,0.00465,RFI-Rete Ferroviaria Italiana,222 030,0.06814,0.06814,0.03432
Italy,IT,0.00465,Telecom Italia S.p.A.,222 001,0.06814,0.06814,0.03432
Italy,IT,0.00465,Telecom Italia S.p.A.,222 043,0.08143,0.08143,0.03432
Italy,IT,0.00465,Telecom Italia S.p.A.,222 048,0.08143,0.08143,0.03432
Italy,IT,0.00465,Telespazio S.p.A.,222 005,0.06814,0.06814,0.03432
Italy,IT,0.00465,VEI s.r.l.,222 051,0.07004,0.07004,0.03432
Italy,IT,0.00465,Vodafone Omnitel N.V.,222 006,0.08143,0.08143,0.03432
Italy,IT,0.00465,Vodafone Omnitel N.V.,222 010,0.06814,0.06814,0.03432
Italy,IT,0.00465,Wind Telecomunicazioni S.p.A.,222 044,0.08143,0.08143,0.03432
Italy,IT,0.00465,Wind Telecomunicazioni S.p.A.,222 088,0.06814,0.06814,0.03432
Japan,JP,0.085,KDDI,440 007,0.06278,0.06278,0.03516
Japan,JP,0.085,KDDI,440 008,0.06278,0.06278,0.03516
Japan,JP,0.085,KDDI,440 050,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 051,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 052,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 053,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 054,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 055,0.06278,0.06278,0.03516
Japan,JP,0.085,KDDI,440 056,0.06278,0.06278,0.03516
Japan,JP,0.085,KDDI,440 070,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 071,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 072,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 073,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 074,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 075,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 076,0.08575,0.08575,0.03516
Japan,JP,0.085,KDDI,440 077,0.06278,0.06278,0.03516
Japan,JP,0.085,KDDI,440 079,0.06278,0.06278,0.03516
Japan,JP,0.085,KDDI,440 088,0.06278,0.06278,0.03516
Japan,JP,0.085,KDDI,440 089,0.06278,0.06278,0.03516
Japan,JP,0.085,NTT DoCoMo,440 001,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 002,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 003,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 009,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 010,0.06278,0.06278,0.03516
Japan,JP,0.085,NTT DoCoMo,440 011,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 012,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 013,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 014,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 015,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 016,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 017,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 018,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 019,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 022,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 023,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 024,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 025,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 026,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 027,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 028,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 029,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 030,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 031,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 032,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 033,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 034,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 035,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 036,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 037,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 038,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 039,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,441 040,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 041,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 042,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 043,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 044,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 045,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,440 049,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 058,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 060,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 061,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 062,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 063,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 064,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 065,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 066,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 067,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 068,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 069,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,440 087,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,441 090,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 091,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,441 092,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 093,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 094,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,441 098,0.09826,0.09826,NA
Japan,JP,0.085,NTT DoCoMo,440 099,0.08575,0.08575,0.03516
Japan,JP,0.085,NTT DoCoMo,441 099,0.09826,0.09826,NA
Japan,JP,0.085,Okinawa Cellular Telephone Company,440 078,0.06278,0.06278,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 000,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,441 001,0.09826,0.09826,NA
Japan,JP,0.085,Softbank Mobile Corp,440 004,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 006,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 020,0.06278,0.06278,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 021,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 040,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 041,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 042,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 043,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 044,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 045,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 046,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 047,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 048,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,441 061,0.09826,0.09826,NA
Japan,JP,0.085,Softbank Mobile Corp,441 062,0.09826,0.09826,NA
Japan,JP,0.085,Softbank Mobile Corp,441 063,0.09826,0.09826,NA
Japan,JP,0.085,Softbank Mobile Corp,441 064,0.09826,0.09826,NA
Japan,JP,0.085,Softbank Mobile Corp,441 065,0.09826,0.09826,NA
Japan,JP,0.085,Softbank Mobile Corp,440 090,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 091,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 092,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 093,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 094,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 095,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 096,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 097,0.08575,0.08575,0.03516
Japan,JP,0.085,Softbank Mobile Corp,440 098,0.08575,0.08575,0.03516
South Korea,KR,0.00047,KT Direct,450 002,0.02958,0.02958,0.01259
South Korea,KR,0.00047,KT Direct,450 004,0.02958,0.02958,0.01259
South Korea,KR,0.00047,KT Direct,450 008,0.02958,0.02958,0.01259
South Korea,KR,0.00047,Korea Cable Telecom,450 011,0.02414,0.0307,0.01259
South Korea,KR,0.00047,LG Dacom,450 006,0.02958,0.02958,0.01259
South Korea,KR,0.00047,SK Telecom,450 003,0.02958,0.02958,0.01259
South Korea,KR,0.00047,SK Telecom,450 005,0.02958,0.02958,0.01259
Lithuania,LT,0.00698,Bite Lietuva UAB,246 002,0.04941,0.04941,0.02206
Lithuania,LT,0.00698,Lithuanian Railways,246 005,0.04073,0.0538,0.02206
Lithuania,LT,0.00698,Mediafon UAB,246 006,0.04941,0.04941,0.02206
Lithuania,LT,0.00698,Tele2 UAB,246 003,0.04941,0.04941,0.02206
Lithuania,LT,0.00698,Telia Lietuva AB,246 001,0.04941,0.04941,0.02206
Latvia,LV,0.00093,Bite,247 005,0.07763,0.07763,0.03408
Latvia,LV,0.00093,IZZI,247 008,0.07763,0.07763,0.03408
Latvia,LV,0.00093,LMT,247 001,0.07763,0.07763,0.03408
Latvia,LV,0.00093,MTS GSM,247 007,0.07763,0.07763,0.03408
Latvia,LV,0.00093,TELE2,247 002,0.07763,0.07763,0.03408
Latvia,LV,0.00093,TRIATEL,247 003,0.07763,0.07763,0.03408
Latvia,LV,0.00093,Unknown Cellular Latvia,247 000,0.07763,0.07763,0.03408
Latvia,LV,0.00093,camelmobile,247 009,0.07763,0.07763,0.03408
Mexico,MX,0.009,AT&T,334 004,0.02648,0.02648,0.01086
Mexico,MX,0.009,AT&T,334 005,0.0162,0.0162,0.01086
Mexico,MX,0.009,AT&T,334 007,0.02648,0.02648,0.01086
Mexico,MX,0.009,AT&T,334 008,0.02648,0.02648,0.01086
Mexico,MX,0.009,AT&T,334 040,0.02648,0.02648,0.01086
Mexico,MX,0.009,AT&T,334 050,0.02648,0.02648,0.01086
Mexico,MX,0.009,AT&T,334 070,0.02648,0.02648,0.01086
Mexico,MX,0.009,AT&T,334 080,0.02648,0.02648,0.01086
Mexico,MX,0.009,Altan Redes,334 140,0.0162,0.0162,0.01086
Mexico,MX,0.009,Axtel S.A.B. De C.V.,334 155,0.0162,0.0162,0.01086
Mexico,MX,0.009,Maxcom Telecomunicaciones, S.A.B. de C.V.,334 110,0.01086,0.01811,NA
Mexico,MX,0.009,Movistar,334 030,0.0162,0.0162,0.01086
Mexico,MX,0.009,NII Digital S. de R.L. de C.V.,334 001,0.0162,0.0162,0.01086
Mexico,MX,0.009,NII Digital S. de R.L. de C.V.,334 010,0.02648,0.02648,0.01086
Mexico,MX,0.009,NII Digital S. de R.L. de C.V.,334 090,0.02648,0.02648,0.01086
Mexico,MX,0.009,Radiomovil Dipsa S.A. De C.V.,334 002,0.0162,0.0162,0.01086
Mexico,MX,0.009,Radiomovil Dipsa S.A. De C.V.,334 020,0.02648,0.02648,0.01086
Mexico,MX,0.009,Servicios De Acceso Inalambricos S.A. De C.V.,334 006,0.0162,0.0162,0.01086
Mexico,MX,0.009,Servicios De Acceso Inalambricos S.A. De C.V.,334 060,0.02648,0.02648,0.01086
Mexico,MX,0.009,movistar,334 003,0.0162,0.0162,0.01086
Malaysia,MY,0.00349,Altel Communications Sdn Bhd,502 156,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,Baraka Telecom Sdn Bhd,502 151,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,Celcom,502 013,0.09602,0.08314,0.03937
Malaysia,MY,0.00349,Celcom,502 019,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,DiGi,502 010,0.05389,0.05777,0.03937
Malaysia,MY,0.00349,DiGi Telecommunications Sdn Bhd,502 016,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,DiGi Telecommunications Sdn Bhd,502 154,0.09602,0.08314,0.03937
Malaysia,MY,0.00349,Electcoms Wireless Sdn Bhd,502 020,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,Maxis Mobile Services Sdn Bhd,502 012,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,Maxis Mobile Services Sdn Bhd,502 017,0.09602,0.08314,0.03937
Malaysia,MY,0.00349,Packet One Networks Sdn Bhd,502 153,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,Samata Communications,502 155,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,Telekom Malaysia Bhd,502 001,0.09602,0.08314,0.03937
Malaysia,MY,0.00349,Telekom Malaysia Bhd,502 011,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,Telin,502 157,0.06672,0.05777,NA
Malaysia,MY,0.00349,Tune Talk,502 150,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,U Mobile Sdn Bhd,502 018,0.06672,0.05777,0.03937
Malaysia,MY,0.00349,YTL Communications Sdn Bhd,502 152,0.06672,0.05777,0.03937
Netherlands,NL,0.00698,AGMS Netherlands B.V.,204 065,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Aspider Solutions Nederland B.V.,204 023,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,BodyTrace Netherlands B.V.,204 061,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Elephant Talk Comm. Premium Rate Serv. Neth. B.V.,204 005,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Intercity Mobile Communications B.V.,204 017,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,KPN Mobile The Netherlands B.V.,204 006,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,KPN Mobile The Netherlands B.V.,204 008,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,KPN Mobile The Netherlands B.V.,204 010,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,KPN Mobile The Netherlands B.V.,204 012,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,KPN Mobile The Netherlands B.V.,204 014,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,KPN Mobile The Netherlands B.V.,204 060,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,KPN Mobile The Netherlands B.V.,204 069,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Lancelot B.V.,204 028,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Lycamobile Netherlands Limited,204 009,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Private Mobility Nederland B.V.,204 024,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Private Mobility Nederland B.V.,204 025,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Private Mobility Nederland B.V.,204 029,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Roamware (Netherlands) B.V.,204 068,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,T-Mobile Netherlands B.V.,204 016,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,T-Mobile Netherlands B.V.,204 020,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Tele2 Nederland B.V.,204 002,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Teleena Holding B.V.,204 007,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,UPC Nederland B.V.,204 018,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Vodafone Libertel B.V.,204 004,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Voiceworks B.V.,204 003,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Voxbone S.A.,204 062,0.12758,0.12758,0.06658
Netherlands,NL,0.00698,Ziggo B.V.,204 015,0.12758,0.12758,0.06658
Norway,NO,0.00233,Com4 AS,242 009,0.08663,0.08663,0.03552
Norway,NO,0.00233,ICE,242 014,0.08663,0.08663,0.03552
Norway,NO,0.00233,ICE Norge AS,242 006,0.08663,0.08663,0.03552
Norway,NO,0.00233,Jernbaneverket,242 020,0.08663,0.08663,0.03552
Norway,NO,0.00233,Jernbaneverket,242 021,0.08663,0.08663,0.03552
Norway,NO,0.00233,Lycamobile Norway Ltd,242 023,0.08663,0.08663,0.03552
Norway,NO,0.00233,Network Norway AS,242 005,0.08663,0.08663,0.03552
Norway,NO,0.00233,Network Norway AS,242 022,0.08663,0.08663,0.03552
Norway,NO,0.00233,Network Norway AS,242 024,0.08663,0.08663,0.03552
Norway,NO,0.00233,Phonero AS,242 007,0.08663,0.08663,0.03552
Norway,NO,0.00233,TDC AS,242 008,0.08663,0.08663,0.03552
Norway,NO,0.00233,Tele2 Norge AS,242 004,0.08663,0.08663,0.03552
Norway,NO,0.00233,Telenor,242 012,0.08663,0.08663,0.03552
Norway,NO,0.00233,Telenor Norge AS,242 001,0.08663,0.08663,0.03552
Norway,NO,0.00233,Teletopia,242 003,0.08663,0.08663,0.03552
Norway,NO,0.00233,TeliaSonera Norge AS,242 002,0.08663,0.08663,0.03552
New Zealand,NZ,0.0904,Telecom New Zealand Limited,530 002,0.14795,0.14795,0.06637
New Zealand,NZ,0.0904,Telecom New Zealand Limited,530 005,0.14795,0.14795,0.06637
New Zealand,NZ,0.0904,Telecom New Zealand Limited,530 006,0.14795,0.14795,0.06637
New Zealand,NZ,0.0904,Two Degrees Mobile Limited,530 024,0.14795,0.14795,0.06637
New Zealand,NZ,0.0904,Vodafone New Zealand Limited,530 001,0.14795,0.14795,0.06637
New Zealand,NZ,0.0904,Vodafone New Zealand Limited,530 004,0.14795,0.14795,0.06637
New Zealand,NZ,0.0904,Woosh,530 003,0.12146,0.16014,0.06637
Philippines,PH,0.02616,ACES,515 011,0.03215,0.02995,0.00643
Philippines,PH,0.02616,Globe Telecom,515 001,0.03215,0.02995,0.00643
Philippines,PH,0.02616,Globe Telecom,515 002,0.01568,0.0146,0.00643
Philippines,PH,0.02616,Nextel,515 088,0.0175,0.02995,0.00643
Philippines,PH,0.02616,Smart,515 003,0.03215,0.02995,0.00643
Philippines,PH,0.02616,Smart,515 018,0.01568,0.0146,0.00643
Philippines,PH,0.02616,Sun Cellular,515 005,0.03215,0.02995,0.00643
Poland,PL,0.00233,AMD Telecom S.A.,260 018,0.03913,0.03873,0.01761
Poland,PL,0.00233,Aero 2 Sp. Z.o.o.,260 004,0.04295,0.04251,0.01761
Poland,PL,0.00233,Aero 2 Sp. Z.o.o.,260 017,0.03913,0.03873,0.01761
Poland,PL,0.00233,Agile Telecom S.P.A.,260 048,0.03913,0.03873,0.01761
Poland,PL,0.00233,CallFreedom Sp. z.o.o.,260 038,0.03913,0.03873,0.01761
Poland,PL,0.00233,Compatel Limited,260 032,0.03913,0.03873,0.01761
Poland,PL,0.00233,E-Telko,260 008,0.03913,0.03873,0.01761
Poland,PL,0.00233,Ez Phone Mobile Sp. z.o.o.,260 041,0.03913,0.03873,0.01761
Poland,PL,0.00233,Interactive Digital Media GmbH,260 040,0.03913,0.03873,0.01761
Poland,PL,0.00233,Lycamobile Sp. z o.o.,260 009,0.03913,0.03873,0.01761
Poland,PL,0.00233,MobiWeb Telecom Limited,260 042,0.03913,0.03873,0.01761
Poland,PL,0.00233,Mobyland,260 016,0.03222,0.03873,0.01761
Poland,PL,0.00233,Mundio Mobile,260 036,0.03913,0.03873,0.01761
Poland,PL,0.00233,NORDISK Polska,260 011,0.03913,0.03873,0.01761
Poland,PL,0.00233,Netia,260 007,0.03222,0.03873,0.01761
Poland,PL,0.00233,NextGen Mobile Ltd,260 037,0.03913,0.03873,0.01761
Poland,PL,0.00233,Orange,260 005,0.03222,0.03873,0.01761
Poland,PL,0.00233,Orange Polska S.A.,260 003,0.03913,0.03873,0.01761
Poland,PL,0.00233,P4,260 006,0.03913,0.03873,0.01761
Poland,PL,0.00233,P4,260 098,0.04295,0.04251,0.01761
Poland,PL,0.00233,PKP Polski Linie Kolejowe S.A.,260 035,0.03913,0.03873,0.01761
Poland,PL,0.00233,POLSAT,260 012,0.03913,0.03873,0.01761
Poland,PL,0.00233,Polkomtel S.A.,260 001,0.03913,0.03873,0.01761
Poland,PL,0.00233,Rebtel Poland Sp. z o.o.,260 044,0.03913,0.03873,0.01761
Poland,PL,0.00233,Sferia S.A.,260 010,0.03913,0.03873,0.01761
Poland,PL,0.00233,Sferia S.A.,260 013,0.04295,0.04251,0.01761
Poland,PL,0.00233,Sferia S.A.,260 014,0.04295,0.04251,0.01761
Poland,PL,0.00233,T-Mobile Polska S.A.,260 002,0.03913,0.03873,0.01761
Poland,PL,0.00233,T-Mobile Polska S.A.,260 034,0.04295,0.04251,0.01761
Poland,PL,0.00233,Teleena Holding BV,260 019,0.03913,0.03873,0.01761
Poland,PL,0.00233,Virgin Mobile Polska Sp. z o.o.,260 045,0.03913,0.03873,0.01761
Poland,PL,0.00233,Voxbone S.A.,260 039,0.03913,0.03873,0.01761
Poland,PL,0.00233,wRodzinie,260 015,0.03222,0.03873,0.01761
Puerto Rico,PR,0.00047,North Sight Communications,310 017,0.00421,0.00421,0.00173
Puerto Rico,PR,0.00047,PR Wireless Inc. DBA Open Mobile,330 120,0.0019,0.0019,0.00173
Puerto Rico,PR,0.00047,Puerto Rico Telco dba Claro Puerto Rico,330 110,0.0019,0.0019,0.00173
Portugal,PT,0.00326,Lycamobile Portugal LDA.,268 004,0.03031,0.02961,0.01425
Portugal,PT,0.00326,MEO - Services de Comunications e Multimedia S.A.,268 002,0.03475,0.03395,0.01425
Portugal,PT,0.00326,MEO - Services de Comunications e Multimedia S.A.,268 006,0.03031,0.02961,0.01425
Portugal,PT,0.00326,MEO - Services de Comunications e Multimedia S.A.,268 080,0.03475,0.03395,0.01425
Portugal,PT,0.00326,Mundio Mobile,268 007,0.03031,0.02961,0.01425
Portugal,PT,0.00326,NOS Comunicacoes S.A.,268 003,0.03031,0.02961,0.01425
Portugal,PT,0.00326,Vodafone Portugal - Comunicacoes Pessoais S.A.,268 001,0.03031,0.02961,0.01425
Portugal,PT,0.00326,Vodafone Portugal - Comunicacoes Pessoais S.A.,268 091,0.03475,0.03395,NA
Romania,RO,0.00186,2K Telecom S.R.L.,226 015,0.08568,0.08139,0.03513
Romania,RO,0.00186,Enigma System.Net S.R.L.,226 011,0.08568,0.08139,0.03513
Romania,RO,0.00186,Lycamobile,226 016,0.08568,0.08139,0.03513
Romania,RO,0.00186,Orange Romania,226 010,0.08568,0.08139,0.03513
Romania,RO,0.00186,RCS & RDS S.A.,226 005,0.08568,0.08139,0.03513
Romania,RO,0.00186,Telekom Romania Communications S.A.,226 002,0.08568,0.08139,0.03513
Romania,RO,0.00186,Telekom Romania Mobile Communications S.A.,226 003,0.08568,0.08139,0.03513
Romania,RO,0.00186,Telekom Romania Mobile Communications S.A.,226 004,0.08568,0.08139,0.03513
Romania,RO,0.00186,Telekom Romania Mobile Communications S.A.,226 006,0.08568,0.08139,0.03513
Romania,RO,0.00186,Vodafone Romania,226 001,0.08568,0.08139,0.03513
Russia,RU,0.06977,A-Mobile,289 089,0.07519,0.07519,0.04721
Russia,RU,0.06977,Baykalwestcom,250 012,0.04404,0.04404,0.04721
Russia,RU,0.06977,Ekaterinburg-2000 LLC,250 035,0.04404,0.04404,0.04721
Russia,RU,0.06977,Enisey Telecom,250 005,0.04402,0.04402,0.04721
Russia,RU,0.06977,Global Telecom,250 048,0.04404,0.04404,0.045
Russia,RU,0.06977,Internod Ltd,250 049,0.04404,0.04404,0.04721
Russia,RU,0.06977,Iridium,250 029,0.04404,0.04404,0.04721
Russia,RU,0.06977,K-Telecom,250 032,0.04404,0.04404,0.04721
Russia,RU,0.06977,Kodotel,250 037,0.05314,0.06134,0.04721
Russia,RU,0.06977,Krymtelekom,250 034,0.04404,0.04404,0.04721
Russia,RU,0.06977,MTS,250 004,0.05314,0.06134,0.04721
Russia,RU,0.06977,MTS,250 010,0.05314,0.06134,0.04721
Russia,RU,0.06977,MTS,250 013,0.05314,0.06134,0.04721
Russia,RU,0.06977,MTS,250 092,0.05314,0.06134,0.04721
Russia,RU,0.06977,MTT,250 042,0.04404,0.04404,0.04721
Russia,RU,0.06977,MegaFon,250 023,0.05314,0.06134,0.04721
Russia,RU,0.06977,MegaFon,250 057,0.07519,0.07434,0.04721
Russia,RU,0.06977,MegaFon,250 802,0.05314,0.06134,0.04721
Russia,RU,0.06977,MegaFon,250 803,0.05314,0.06134,0.04721
Russia,RU,0.06977,MegaFon,250 804,0.05314,0.06134,0.04721
Russia,RU,0.06977,MegaFon Central Branch,250 002,0.04404,0.04354,0.04721
Russia,RU,0.06977,MegaFon Central Branch,250 014,0.07519,0.07434,0.04721
Russia,RU,0.06977,Mobile TeleSystems (MTS),250 001,0.04404,0.04404,0.04721
Russia,RU,0.06977,Mobile TeleSystems (MTS),250 050,0.07519,0.07519,0.04721
Russia,RU,0.06977,Nizhegorodskaya Cellular Communications,250 003,0.04402,0.04402,0.04721
Russia,RU,0.06977,Other,250 016,0.04404,0.04404,0.04721
Russia,RU,0.06977,Other,250 019,0.05314,0.06134,0.04721
Russia,RU,0.06977,Other,250 028,0.04404,0.04404,0.04721
Russia,RU,0.06977,Other,250 044,0.05314,0.06134,0.04721
Russia,RU,0.06977,Other,250 801,0.05314,0.06134,0.04721
Russia,RU,0.06977,Other,250 805,0.05314,0.06134,0.04721
Russia,RU,0.06977,Other,250 806,0.05314,0.06134,0.04721
Russia,RU,0.06977,Other,250 807,0.05314,0.06134,0.04721
Russia,RU,0.06977,Other,250 809,0.05314,0.06134,0.04721
Russia,RU,0.06977,Other,250 810,0.05314,0.06134,0.04721
Russia,RU,0.06977,Other,250 811,0.05314,0.06134,0.04721
Russia,RU,0.06977,SMARTS,250 007,0.04402,0.04402,0.04721
Russia,RU,0.06977,SMARTS,250 015,0.07517,0.07517,0.04721
Russia,RU,0.06977,Sevastopol Telecom,250 033,0.04404,0.04404,0.04721
Russia,RU,0.06977,Skartel,250 011,0.04404,0.04404,0.04721
Russia,RU,0.06977,Sky-1800,250 009,0.04402,0.04402,0.04721
Russia,RU,0.06977,SkyLink,250 006,0.05314,0.06134,0.04721
Russia,RU,0.06977,Sprint,250 043,0.04404,0.04404,0.04721
Russia,RU,0.06977,TMT,250 027,0.05314,0.06134,0.04721
Russia,RU,0.06977,Tele2,250 017,0.07519,0.07519,0.04721
Russia,RU,0.06977,Tele2,250 020,0.04404,0.04404,0.04721
Russia,RU,0.06977,Tele2,250 039,0.07519,0.07519,0.04721
Russia,RU,0.06977,Tele2,250 808,0.05314,0.06134,0.04721
Russia,RU,0.06977,Tinkoff Mobile,250 062,0.04404,0.04404,0.04721
Russia,RU,0.06977,Vainakh Telecom Company,250 022,0.04404,0.04404,0.04721
Russia,RU,0.06977,Vimpel Communications,250 099,0.04404,0.04404,0.04721
Russia,RU,0.06977,VimpelCom,250 047,0.04721,0.06134,NA
Russia,RU,0.06977,Your Mobile Technology Ltd.,250 054,0.04404,0.04404,0.04721
Sweden,SE,0.00023,42 Telecom AB,240 016,0.07631,0.07551,0.03129
Sweden,SE,0.00023,42 Telecom AB,240 035,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Alltele Foretag Sverige AB,240 013,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Beepsend AB,240 026,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Borderlight AB,240 039,0.07631,0.07551,0.03129
Sweden,SE,0.00023,CLX Networks AB,240 037,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Compatel Limited,240 032,0.07631,0.07551,0.03129
Sweden,SE,0.00023,CoolTEL Aps,240 028,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Direct2Internet AB,240 000,0.07551,0.07551,NA
Sweden,SE,0.00023,Eu Tel AB,240 022,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Fogg Mobile AB,240 027,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Generic Mobile Systems Sweden AB,240 018,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Gotalandsnatet AB,240 017,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Hi3G Access AB,240 002,0.07631,0.07551,0.03129
Sweden,SE,0.00023,INFOBIP Limited,240 023,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Interactive Digital Media GmbH,240 036,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Limitless Mobile AB,240 044,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Lycamobile Sweden Limited,240 012,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Mercury International Carrier Services,240 029,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Messagebird B.V.,240 061,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Mobile Arts AB,240 033,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Mobiweb Ltd,240 043,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Monty UK Global Limited,240 025,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Mundio Mobile (Sweden) Limited,240 019,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Netett Sverige AB,240 003,0.07631,0.07551,0.03129
Sweden,SE,0.00023,NextGen Mobile Ltd,240 030,0.07631,0.07551,NA
Sweden,SE,0.00023,Other,240 011,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Other,240 997,0.07512,0.07551,0.03129
Sweden,SE,0.00023,Pro Net Telecommunications Services Ltd.,240 034,0.07631,0.07551,0.03129
Sweden,SE,0.00023,ReWiCom Scandinavia AB,240 040,0.07631,0.07551,NA
Sweden,SE,0.00023,RebTel Networks AB,240 031,0.07631,0.07551,0.03129
Sweden,SE,0.00023,SMS Provider Corp.,240 046,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Spirius AB,240 045,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Spring Mobil AB,240 010,0.07631,0.07551,0.03129
Sweden,SE,0.00023,TDC Sverige AB,240 014,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Tele2 Sverige AB,240 007,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Telenor,240 004,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Telenor,240 042,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Telenor Sverige AB,240 006,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Telenor Sverige AB,240 008,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Telenor Sverige AB,240 024,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Telia Company AB,240 005,0.07631,0.07551,0.03129
Sweden,SE,0.00023,TeliaSonera Sverige AB,240 001,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Trafikverket ICT,240 021,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Viatel Sweden AB,240 047,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Voxbone SA,240 038,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Wireless Maingate Nordic AB,240 015,0.07631,0.07551,0.03129
Sweden,SE,0.00023,Wireless Maingate Nordic AB,240 020,0.07631,0.07551,0.03129
Singapore,SG,0.04651,GRID Comms,525 012,0.06243,0.06192,0.02575
Singapore,SG,0.04651,Liberty Wireless,525 009,0.06243,0.06192,0.02575
Singapore,SG,0.04651,M1,525 003,0.06243,0.06192,0.02575
Singapore,SG,0.04651,M1,525 011,0.06243,0.06192,NA
Singapore,SG,0.04651,SingTel Mobile,525 001,0.06243,0.06192,0.02575
Singapore,SG,0.04651,SingTel Mobile,525 002,0.06243,0.06192,0.02575
Singapore,SG,0.04651,SingTel Mobile,525 007,0.06243,0.06192,0.02575
Singapore,SG,0.04651,StarHub,525 008,0.06243,0.06192,0.02575
Singapore,SG,0.04651,StarHub Mobile,525 005,0.06243,0.06192,0.02575
Singapore,SG,0.04651,StarHub Mobile,525 006,0.06241,0.06192,0.02575
Singapore,SG,0.04651,TPG Telecom,525 010,0.06243,0.06192,0.02575
Slovenia,SI,0.00698,A1 Slovenija,293 040,0.04443,0.04443,0.01822
Slovenia,SI,0.00698,Compatel Limited,293 020,0.04443,0.04443,0.01822
Slovenia,SI,0.00698,SZ - Infrastruktura d.o.o.,293 010,0.04443,0.04443,0.01822
Slovenia,SI,0.00698,T - 2 d.o.o.,293 064,0.04443,0.04443,0.01822
Slovenia,SI,0.00698,Telekom Slovenije d.d.,293 041,0.04443,0.04443,0.01822
Slovenia,SI,0.00698,Telemach d.o.o.,293 070,0.04443,0.04443,0.01822
Slovakia,SK,0.00465,O2 Slovakia s.r.o.,231 006,0.0918,0.0918,0.03764
Slovakia,SK,0.00465,Orange Slovensko a.s.,231 001,0.0918,0.0918,0.03764
Slovakia,SK,0.00465,Orange Slovensko a.s.,231 015,0.0918,0.0918,0.03764
Slovakia,SK,0.00465,SWAN a.s.,231 003,0.0918,0.0918,0.03764
Slovakia,SK,0.00465,Slovak Telekom a.s.,231 002,0.0918,0.0918,0.03764
Slovakia,SK,0.00465,Slovak Telekom a.s.,231 004,0.0918,0.0918,0.03764
Thailand,TH,0.009,ACeS,520 020,0.0166,0.0166,0.01121
Thailand,TH,0.009,Advanced Wireless Network,520 001,0.0166,0.0166,0.01121
Thailand,TH,0.009,Advanced Wireless Network,520 003,0.02226,0.02226,0.01121
Thailand,TH,0.009,Communications Authority of Thailand,520 000,0.0166,0.0166,0.01121
Thailand,TH,0.009,Communications Authority of Thailand,520 002,0.02226,0.02226,0.01121
Thailand,TH,0.009,DTAC,520 018,0.0166,0.0166,0.01121
Thailand,TH,0.009,DTAC TriNet,520 005,0.0166,0.0166,0.01121
Thailand,TH,0.009,Digital Phone Co.,520 023,0.0166,0.0166,0.01121
Thailand,TH,0.009,Real Future,520 004,0.0166,0.0166,0.01121
Thailand,TH,0.009,TOT,520 015,0.0166,0.0166,0.01121
Thailand,TH,0.009,TOT,520 047,0.02226,0.02226,0.01121
Thailand,TH,0.009,True Move,520 088,0.01272,0.02038,0.01121
Thailand,TH,0.009,True Move,520 099,0.0166,0.0166,0.01121
Turkey,TR,0.009,AVEA,286 003,0.00398,0.00379,0.00275
Turkey,TR,0.009,AVEA,286 004,0.0067,0.00639,0.00275
Turkey,TR,0.009,TURKCELL,286 001,0.00398,0.00379,0.00275
Turkey,TR,0.009,Turkcell,286 099,0.00318,0.00379,0.00275
Turkey,TR,0.009,Vodafone,286 098,0.00318,0.00379,0.00275
Turkey,TR,0.009,Vodafone Telecommunications Inc.,286 002,0.00398,0.00379,0.00275
Taiwan,TW,0.0065,Asia Pacific Telecom Group,466 005,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Chunghwa Telecom LDM,466 011,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Chunghwa Telecom LDM,466 092,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,FITEL,466 009,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,FITEL,466 010,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,FITEL,466 056,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,FITEL,466 068,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Far EasTone,466 001,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Far EasTone,466 002,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Far EasTone,466 003,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Far EasTone,466 006,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Far EasTone,466 007,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Far EasTone,466 088,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Taiwan Mobile Co Ltd.,466 093,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Taiwan Mobile Co Ltd.,466 097,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Taiwan Mobile Co Ltd.,466 099,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,Taiwan Star Telecom,466 089,0.05917,0.05917,0.0274
Taiwan,TW,0.0065,VIBO,466 090,0.06682,0.06682,0.0274
Ukraine,UA,0.00155,Astelit,255 006,0.08958,0.08958,0.04776
Ukraine,UA,0.00155,Golden Telecom (GT),255 005,0.08958,0.08958,0.04776
Ukraine,UA,0.00155,ITC,255 023,0.09107,0.11075,0.04776
Ukraine,UA,0.00155,International Telecommunication,255 004,0.08958,0.08958,0.04776
Ukraine,UA,0.00155,Kyivstar,255 002,0.08958,0.08958,0.04776
Ukraine,UA,0.00155,Kyivstar,255 003,0.08958,0.08958,0.04776
Ukraine,UA,0.00155,MTS,255 001,0.08958,0.08958,0.04776
Ukraine,UA,0.00155,Telesystems of Ukraine,255 021,0.08958,0.08958,0.04776
Ukraine,UA,0.00155,Utel,255 007,0.08958,0.08958,0.04776
United States,US,0.0075,All Networks,undefined undefined,0.00645,0.00645,0.00645
South Africa,ZA,0.00023,CELL C,655 007,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,MTN,655 010,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,MTN,655 012,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,Telekom Mobile,655 002,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,Vodacom SA,655 001,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,Wireless Business Solutions,655 019,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,Wireless Business Solutions,655 038,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,Wireless Business Solutions,655 073,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,Wireless Business Solutions,655 074,0.02421,0.02421,0.00993
South Africa,ZA,0.00023,Wirels Connect,655 025,0.02421,0.02421,0.00993