diff --git a/get-mcc-mnc-table-csv.py b/get-mcc-mnc-table-csv.py
deleted file mode 100644
index f587795d..00000000
--- a/get-mcc-mnc-table-csv.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Get the Mobile Country Codes (MCC) and Mobile Network Codes (MNC) table
-# from mcc-mnc.com and output it in CSV format.
-
-import re
-import urllib.request
-
-print("MCC,MCC (int),MNC,MNC (int),ISO,Country,Country Code,Network")
-
-td_re = re.compile('
([^<]*) | '*6)
-
-with urllib.request.urlopen('http://mcc-mnc.com/') as f:
- html = f.read().decode('utf-8')
- tbody_start = False
- for line in html.split('\n'):
- if '' in line:
- tbody_start = True
- elif '' in line:
- break
- elif tbody_start:
- td_search = td_re.search(line)
- csv_line = ''
- for n in range(1, 7):
- group = td_search.group(n).strip().replace(',', '')
- csv_line += group
- if n == 1:
- csv_line += ',' + str(int(group, 16))
- elif n == 2:
- if len(group) == 2:
- mnc_int = int(group + 'f', 16)
- elif group != 'n/a':
- mnc_int = int(group, 16)
- csv_line += ',' + str(mnc_int)
- if n != 6:
- csv_line += ','
- print(csv_line)
diff --git a/get-mcc-mnc-table-json.py b/get-mcc-mnc-table-json.py
deleted file mode 100644
index 8fec32f4..00000000
--- a/get-mcc-mnc-table-json.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# Get the Mobile Country Codes (MCC) and Mobile Network Codes (MNC) table
-# from mcc-mnc.com and output it in JSON format.
-
-import re
-import urllib.request
-import json
-
-td_re = re.compile('([^<]*) | '*6)
-
-with urllib.request.urlopen('http://mcc-mnc.com/') as f:
- html = f.read().decode('utf-8')
-
- tbody_start = False
-
- mcc_mnc_list = []
-
- for line in html.split('\n'):
- if '' in line:
- tbody_start = True
- elif '' in line:
- break
- elif tbody_start:
- td_search = td_re.search(line)
- current_item = {}
- td_search = td_re.split(line)
-
- current_item['mcc'] = td_search[1]
- current_item['mnc'] = td_search[2]
- current_item['iso'] = td_search[3]
- current_item['country'] = td_search[4]
- current_item['country_code'] = td_search[5]
- current_item['network'] = td_search[6][0:-1]
-
- mcc_mnc_list.append(current_item)
-
- print(json.dumps(mcc_mnc_list, indent=2))
diff --git a/get-mcc-mnc-table-xml.py b/get-mcc-mnc-table-xml.py
deleted file mode 100644
index 551abc8c..00000000
--- a/get-mcc-mnc-table-xml.py
+++ /dev/null
@@ -1,49 +0,0 @@
-# Get the Mobile Country Codes (MCC) and Mobile Network Codes (MNC) table
-# from mcc-mnc.com and output it in XML format.
-
-import re
-import urllib.request
-import xml.etree.ElementTree as element_tree
-import xml.dom.minidom as minidom
-
-td_re = re.compile('([^<]*) | '*6)
-
-with urllib.request.urlopen('http://mcc-mnc.com/') as f:
- html = f.read().decode('utf-8')
-
- tbody_start = False
-
- mcc_mnc_list = []
-
- for line in html.split('\n'):
- if '' in line:
- tbody_start = True
- elif '' in line:
- break
- elif tbody_start:
- td_search = td_re.search(line)
- current_item = {}
- td_search = td_re.split(line)
-
- current_item['mcc'] = td_search[1]
- current_item['mnc'] = td_search[2]
- current_item['iso'] = td_search[3]
- current_item['country'] = td_search[4]
- current_item['country_code'] = td_search[5]
- current_item['network'] = td_search[6][0:-1]
-
- mcc_mnc_list.append(current_item)
-
- root_element = element_tree.Element('carriers')
-
- for carrier in mcc_mnc_list:
- sub_element = element_tree.Element('carrier')
-
- for key, value in carrier.items():
- child_element = element_tree.Element(key)
- child_element.text = value
- sub_element.append(child_element)
-
- root_element.append(sub_element)
-
- print(minidom.parseString(element_tree.tostring(root_element)).toprettyxml(indent = ' '))
diff --git a/mcc-mnc-table.csv b/mcc-mnc-table.csv
index 0e79cd4c..4a937ce7 100644
--- a/mcc-mnc-table.csv
+++ b/mcc-mnc-table.csv
@@ -1,2600 +1,2970 @@
-MCC,MCC (int),MNC,MNC (int),ISO,Country,Country Code,Network
-289,649,88,2191,ge,Abkhazia,7,A-Mobile
-289,649,68,1679,ge,Abkhazia,7,A-Mobile
-289,649,67,1663,ge,Abkhazia,7,Aquafon
-412,1042,01,31,af,Afghanistan,93,AWCC
-412,1042,50,1295,af,Afghanistan,93,Etisalat
-412,1042,30,783,af,Afghanistan,93,Etisalat
-412,1042,80,2063,af,Afghanistan,93,Mobifone
-412,1042,88,2191,af,Afghanistan,93,Mobifone
-412,1042,40,1039,af,Afghanistan,93,MTN
-412,1042,20,527,af,Afghanistan,93,Roshan
-412,1042,03,63,af,Afghanistan,93,WaselTelecom (WT)
-276,630,03,63,al,Albania,355,ALBtelecom Mobile / Eagle
-276,630,01,31,al,Albania,355,One / AMC
-276,630,04,79,al,Albania,355,PLUS Communication Sh.a
-276,630,02,47,al,Albania,355,Vodafone
-603,1539,02,47,dz,Algeria,213,Djezzy
-603,1539,01,31,dz,Algeria,213,Mobilis
-603,1539,03,63,dz,Algeria,213,Ooredoo
-544,1348,780,1920,as,American Samoa,684,ASTCA Mobile
-544,1348,11,287,as,American Samoa,684,BlueSky
-213,531,03,63,ad,Andorra,376,Andorra Telecom / Mobiland
-631,1585,04,79,ao,Angola,244,MoviCel
-631,1585,02,47,ao,Angola,244,Unitel
-365,869,850,2128,ai,Anguilla,1264,Digicel
-365,869,840,2112,ai,Anguilla,1264,Flow
-344,836,93,2367,ag,Antigua and Barbuda,1268,Digicel
-344,836,930,2352,ag,Antigua and Barbuda,1268,Digicel
-344,836,92,2351,ag,Antigua and Barbuda,1268,Flow
-344,836,920,2336,ag,Antigua and Barbuda,1268,Flow
-344,836,03,63,ag,Antigua and Barbuda,1268,imobile / APUA
-344,836,030,48,ag,Antigua and Barbuda,1268,imobile / APUA
-722,1826,310,784,ar,Argentina,54,Claro
-722,1826,330,816,ar,Argentina,54,Claro
-722,1826,031,49,ar,Argentina,54,Claro
-722,1826,320,800,ar,Argentina,54,Claro
-722,1826,299,665,ar,Argentina,54,Express
-722,1826,999,2457,ar,Argentina,54,Fix Line
-722,1826,299,665,ar,Argentina,54,Imowi
-722,1826,299,665,ar,Argentina,54,IPLAN
-722,1826,299,665,ar,Argentina,54,Kallofer
-722,1826,010,16,ar,Argentina,54,Movistar
-722,1826,007,7,ar,Argentina,54,Movistar
-722,1826,070,112,ar,Argentina,54,Movistar
-722,1826,007,7,ar,Argentina,54,Movistar/Telefonica
-722,1826,070,112,ar,Argentina,54,Movistar/Telefonica
-722,1826,020,32,ar,Argentina,54,Nextel
-722,1826,299,665,ar,Argentina,54,Nuestro
-722,1826,034,52,ar,Argentina,54,Personal
-722,1826,299,665,ar,Argentina,54,Telecentro
-722,1826,341,833,ar,Argentina,54,Personal
-722,1826,340,832,ar,Argentina,54,Personal
-283,643,01,31,am,Armenia,374,Beeline
-283,643,04,79,am,Armenia,374,KT
-283,643,10,271,am,Armenia,374,Orange
-283,643,05,95,am,Armenia,374,Viva-MTS
-363,867,02,47,aw,Aruba,297,Digicel
-363,867,20,527,aw,Aruba,297,Digicel
-363,867,299,665,aw,Aruba,297,MIO
-363,867,01,31,aw,Aruba,297,SETAR
-505,1285,14,335,au,Australia,61,AAPT Ltd.
-505,1285,299,665,au,Australia,61,ACMA
-505,1285,24,591,au,Australia,61,Advanced Comm Tech Pty.
-505,1285,09,159,au,Australia,61,Airnet Commercial Australia Ltd..
-505,1285,30,783,au,Australia,61,Compatel
-505,1285,04,79,au,Australia,61,Department of Defense
-505,1285,999,2457,au,Australia,61,Fix Line
-505,1285,299,665,au,Australia,61,Get SIM
-505,1285,12,303,au,Australia,61,H3G Ltd.
-505,1285,06,111,au,Australia,61,H3G Ltd.
-505,1285,88,2191,au,Australia,61,Pivotel Group Ltd
-505,1285,19,415,au,Australia,61,Lycamobile
-505,1285,35,863,au,Australia,61,MessageBird
-505,1285,10,271,au,Australia,61,Norfolk Telecom
-505,1285,08,143,au,Australia,61,Railcorp/Vodafone
-505,1285,99,2463,au,Australia,61,Railcorp/Vodafone
-505,1285,90,2319,au,Australia,61,Optus
-505,1285,50,1295,au,Australia,61,Pivotel
-505,1285,88,2191,au,Australia,61,Pivotel
-505,1285,13,319,au,Australia,61,RailCorp
-505,1285,13,319,au,Australia,61,Railcorp/Vodafone
-505,1285,26,623,au,Australia,61,Sinch
-505,1285,02,47,au,Australia,61,Optus
-505,1285,299,665,au,Australia,61,Symbio
-505,1285,11,287,au,Australia,61,Telstra
-505,1285,72,1839,au,Australia,61,Telstra
-505,1285,01,31,au,Australia,61,Telstra
-505,1285,39,927,au,Australia,61,Telstra
-505,1285,71,1823,au,Australia,61,Telstra
-505,1285,01,31,au,Australia,61,Telstra
-505,1285,05,95,au,Australia,61,The Ozitel Network Pty.
-505,1285,16,367,au,Australia,61,VicTrack
-505,1285,03,63,au,Australia,61,Vodafone
-505,1285,06,111,au,Australia,61,Vodafone
-505,1285,12,303,au,Australia,61,Vodafone
-505,1285,07,127,au,Australia,61,Vodafone
-232,562,11,287,at,Austria,43,A1 Telekom
-232,562,01,31,at,Austria,43,A1 Telekom
-232,562,09,159,at,Austria,43,A1 Telekom
-232,562,12,303,at,Austria,43,A1 Telekom
-232,562,02,47,at,Austria,43,A1 Telekom
-232,562,299,665,at,Austria,43,ArgoNET
-232,562,15,351,at,Austria,43,T-Mobile / Magenta
-232,562,299,665,at,Austria,43,DIALOG telekom
-232,562,299,665,at,Austria,43,Digital Privacy
-232,562,299,665,at,Austria,43,DIMOCO
-232,562,299,665,at,Austria,43,educom
-232,562,999,2457,at,Austria,43,Fix Line
-232,562,25,607,at,Austria,43,Holding Graz
-232,562,299,665,at,Austria,43,Holding Graz
-232,562,19,415,at,Austria,43,Hutchinson Drei
-232,562,14,335,at,Austria,43,Hutchinson Drei
-232,562,16,367,at,Austria,43,Hutchinson Drei
-232,562,10,271,at,Austria,43,Hutchinson Drei
-232,562,05,95,at,Austria,43,Hutchinson Drei
-232,562,299,665,at,Austria,43,Innsbrucker Kommunalbetriebe
-232,562,299,665,at,Austria,43,kabelplus
-232,562,299,665,at,Austria,43,Lenovo Connect
-232,562,299,665,at,Austria,43,LINK Mobility
-232,562,26,623,at,Austria,43,LIWEST Mobil
-232,562,299,665,at,Austria,43,LIWEST Mobil
-232,562,17,383,at,Austria,43,Mass Response Service
-232,562,20,527,at,Austria,43,Mtel
-232,562,91,2335,at,Austria,43,OBB Infrastruktur
-232,562,299,665,at,Austria,43,OBB Infrastruktur
-232,562,06,111,at,Austria,43,Hutchison Drei / 3
-232,562,22,559,at,Austria,43,Plintron
-232,562,299,665,at,Austria,43,Plintron
-232,562,299,665,at,Austria,43,Simple SMS
-232,562,299,665,at,Austria,43,Skymond Mobile
-232,562,299,665,at,Austria,43,Smartel Services
-232,562,24,591,at,Austria,43,Smartel Services
-232,562,299,665,at,Austria,43,smartspace
-232,562,18,399,at,Austria,43,smartspace
-232,562,07,127,at,Austria,43,T-Mobile / Magenta
-232,562,04,79,at,Austria,43,T-Mobile / Magenta
-232,562,03,63,at,Austria,43,T-Mobile / Magenta
-232,562,13,319,at,Austria,43,T-Mobile / Magenta
-232,562,23,575,at,Austria,43,T-Mobile / Magenta
-232,562,08,143,at,Austria,43,A1 Telekom
-232,562,299,665,at,Austria,43,Telfoni
-232,562,27,639,at,Austria,43,Tismi
-232,562,299,665,at,Austria,43,Tismi
-232,562,299,665,at,Austria,43,Ventocom
-400,1024,01,31,az,Azerbaijan,994,Azercell
-400,1024,02,47,az,Azerbaijan,994,Bakcell
-400,1024,03,63,az,Azerbaijan,994,FONEX
-400,1024,04,79,az,Azerbaijan,994,Nar Mobile
-400,1024,06,111,az,Azerbaijan,994,Naxtel
-364,868,490,1168,bs,Bahamas,1242,Aliv
-364,868,390,912,bs,Bahamas,1242,Cybercell / BaTelCo
-364,868,30,783,bs,Bahamas,1242,Cybercell / BaTelCo
-364,868,39,927,bs,Bahamas,1242,Cybercell / BaTelCo
-364,868,03,63,bs,Bahamas,1242,Smart Communications
-426,1062,01,31,bh,Bahrain,973,Batelco
-426,1062,299,665,bh,Bahrain,973,Failed Calls
-426,1062,999,2457,bh,Bahrain,973,Fix Line
-426,1062,05,95,bh,Bahrain,973,Royal Court
-426,1062,04,79,bh,Bahrain,973,VIVA
-426,1062,02,47,bh,Bahrain,973,Zain
-470,1136,07,127,bd,Bangladesh,880,Airtel
-470,1136,02,47,bd,Bangladesh,880,Airtel
-470,1136,03,63,bd,Bangladesh,880,Banglalink
-470,1136,06,111,bd,Bangladesh,880,Citycell
-470,1136,05,95,bd,Bangladesh,880,Citycell
-470,1136,01,31,bd,Bangladesh,880,GrameenPhone
-470,1136,04,79,bd,Bangladesh,880,TeleTalk
-470,1136,07,127,bd,Bangladesh,880,Airtel/Warid
-342,834,810,2064,bb,Barbados,1246,Cingular Wireless
-342,834,750,1872,bb,Barbados,1246,Digicel
-342,834,050,80,bb,Barbados,1246,Digicel
-342,834,299,665,bb,Barbados,1246,Failed Calls
-342,834,600,1536,bb,Barbados,1246,Flow / Lime
-342,834,299,665,bb,Barbados,1246,Ozone
-342,834,820,2080,bb,Barbados,1246,Sunbeach
-257,599,03,63,by,Belarus,375,BelCel JV
-257,599,04,79,by,Belarus,375,life:)
-257,599,01,31,by,Belarus,375,MDC/Velcom
-257,599,02,47,by,Belarus,375,MTS
-257,599,01,31,by,Belarus,375,velcom A1
-206,518,20,527,be,Belgium,32,Base
-206,518,05,95,be,Belgium,32,Base
-206,518,28,655,be,Belgium,32,BICS
-206,518,25,607,be,Belgium,32,Dense Air
-206,518,23,575,be,Belgium,32,Dust Mobile
-206,518,33,831,be,Belgium,32,Ericsson
-206,518,299,665,be,Belgium,32,FEBO
-206,518,999,2457,be,Belgium,32,Fix Line
-206,518,299,665,be,Belgium,32,GianCom
-206,518,02,47,be,Belgium,32,Infrabel
-206,518,299,665,be,Belgium,32,interactive digital media / IDM
-206,518,299,665,be,Belgium,32,L-mobi
-206,518,99,2463,be,Belgium,32,Lancelot
-206,518,299,665,be,Belgium,32,Legos
-206,518,06,111,be,Belgium,32,Lycamobile
-206,518,30,783,be,Belgium,32,Mobile Vikings
-206,518,10,271,be,Belgium,32,Mobistar / Orange
-206,518,299,665,be,Belgium,32,Nord Connect
-206,518,34,847,be,Belgium,32,onoff
-206,518,299,665,be,Belgium,32,PM Factory
-206,518,01,31,be,Belgium,32,Proximus
-206,518,04,79,be,Belgium,32,Proximus
-206,518,00,15,be,Belgium,32,Proximus
-206,518,05,95,be,Belgium,32,Telenet Mobile
-206,518,07,127,be,Belgium,32,Vectone Mobile
-206,518,08,143,be,Belgium,32,VOOmobile
-206,518,299,665,be,Belgium,32,Voxbone / Bandwidth
-702,1794,67,1663,bz,Belize,501,DigiCell
-702,1794,299,665,bz,Belize,501,Failed Calls
-702,1794,68,1679,bz,Belize,501,International Telco (INTELCO)
-702,1794,099,153,bz,Belize,501,Smart
-702,1794,69,1695,bz,Belize,501,Smart
-616,1558,04,79,bj,Benin,229,Bell Benin/BBCOM
-616,1558,05,95,bj,Benin,229,GloMobile
-616,1558,01,31,bj,Benin,229,Libercom
-616,1558,02,47,bj,Benin,229,Moov
-616,1558,03,63,bj,Benin,229,MTN
-350,848,000,0,bm,Bermuda,1441,Bermuda Digital Communications Ltd (BDC)
-350,848,99,2463,bm,Bermuda,1441,CellOne Ltd
-350,848,01,31,bm,Bermuda,1441,Digicel
-350,848,299,665,bm,Bermuda,1441,Failed Calls
-350,848,02,47,bm,Bermuda,1441,M3 Wireless Ltd
-350,848,000,0,bm,Bermuda,1441,One
-350,848,01,31,bm,Bermuda,1441,Telecommunications (Bermuda & West Indies) Ltd (Digicel Bermuda)
-402,1026,11,287,bt,Bhutan,975,B-Mobile
-402,1026,17,383,bt,Bhutan,975,Bhutan Telecom Ltd (BTL)
-402,1026,77,1919,bt,Bhutan,975,TashiCell
-736,1846,02,47,bo,Bolivia,591,Entel Pcs
-736,1846,01,31,bo,Bolivia,591,Viva/Nuevatel
-736,1846,03,63,bo,Bolivia,591,Tigo
-362,866,999,2457,bq,Bonaire Sint Eustatius and Saba,599,Fix Line
-218,536,90,2319,ba,Bosnia and Herzegovina,387,BH Mobile
-218,536,03,63,ba,Bosnia and Herzegovina,387,Eronet
-218,536,05,95,ba,Bosnia and Herzegovina,387,m:tel
-652,1618,04,79,bw,Botswana,267,beMobile
-652,1618,01,31,bw,Botswana,267,Mascom
-652,1618,02,47,bw,Botswana,267,Orange
-724,1828,26,623,br,Brazil,55,AmericaNet
-724,1828,12,303,br,Brazil,55,Claro/Albra/America Movil
-724,1828,38,911,br,Brazil,55,Claro/Albra/America Movil
-724,1828,05,95,br,Brazil,55,Claro/Albra/America Movil
-724,1828,01,31,br,Brazil,55,Vivo S.A./Telemig
-724,1828,34,847,br,Brazil,55,CTBC Celular SA (CTBC)
-724,1828,33,831,br,Brazil,55,CTBC Celular SA (CTBC)
-724,1828,32,815,br,Brazil,55,CTBC Celular SA (CTBC)
-724,1828,08,143,br,Brazil,55,TIM
-724,1828,39,927,br,Brazil,55,Nextel (Telet)
-724,1828,00,15,br,Brazil,55,Nextel (Telet)
-724,1828,16,367,br,Brazil,55,Brazil Telcom
-724,1828,24,591,br,Brazil,55,Amazonia Celular S/A
-724,1828,30,783,br,Brazil,55,Oi (TNL PCS / Oi)
-724,1828,31,799,br,Brazil,55,Oi (TNL PCS / Oi)
-724,1828,54,1359,br,Brazil,55,PORTO SEGURO TELECOMUNICACOES
-724,1828,15,351,br,Brazil,55,Sercontel Cel
-724,1828,07,127,br,Brazil,55,CTBC/Triangulo
-724,1828,19,415,br,Brazil,55,Vivo S.A./Telemig
-724,1828,03,63,br,Brazil,55,TIM
-724,1828,02,47,br,Brazil,55,TIM
-724,1828,04,79,br,Brazil,55,TIM
-724,1828,37,895,br,Brazil,55,Unicel do Brasil Telecomunicacoes Ltda
-724,1828,10,271,br,Brazil,55,Vivo S.A./Telemig
-724,1828,06,111,br,Brazil,55,Vivo S.A./Telemig
-724,1828,23,575,br,Brazil,55,Vivo S.A./Telemig
-724,1828,11,287,br,Brazil,55,Vivo S.A./Telemig
-348,840,570,1392,vg,British Virgin Islands,284,Caribbean Cellular
-348,840,770,1904,vg,British Virgin Islands,284,Digicel
-348,840,170,368,vg,British Virgin Islands,284,LIME
-528,1320,02,47,bn,Brunei,673,b-mobile
-528,1320,11,287,bn,Brunei,673,Datastream (DTSCom)
-528,1320,01,31,bn,Brunei,673,Telekom Brunei Bhd (TelBru)
-284,644,01,31,bg,Bulgaria,359,A1
-284,644,06,111,bg,Bulgaria,359,Vivacom
-284,644,03,63,bg,Bulgaria,359,Vivacom
-284,644,11,287,bg,Bulgaria,359,Bulsatcom
-284,644,13,319,bg,Bulgaria,359,T.com
-284,644,05,95,bg,Bulgaria,359,Telenor
-284,644,03,63,bg,Bulgaria,359,Vivacom
-613,1555,02,47,bf,Burkina Faso,226,Orange
-613,1555,03,63,bf,Burkina Faso,226,Telecel
-613,1555,01,31,bf,Burkina Faso,226,Telmob
-642,1602,02,47,bi,Burundi,257,Africel / Safaris
-642,1602,999,2457,bi,Burundi,257,Fix Line
-642,1602,82,2095,bi,Burundi,257,Leo
-642,1602,01,31,bi,Burundi,257,Leo
-642,1602,08,143,bi,Burundi,257,Lumitel
-642,1602,03,63,bi,Burundi,257,ONAMOB
-642,1602,07,127,bi,Burundi,257,Smart
-456,1110,04,79,kh,Cambodia,855,QB
-456,1110,01,31,kh,Cambodia,855,Cellcard
-456,1110,299,665,kh,Cambodia,855,CooTel
-456,1110,08,143,kh,Cambodia,855,Metfone
-456,1110,18,399,kh,Cambodia,855,Cellcard
-456,1110,299,665,kh,Cambodia,855,MPTC
-456,1110,03,63,kh,Cambodia,855,QB/Cambodia Adv. Comms.
-456,1110,11,287,kh,Cambodia,855,Seatel
-456,1110,06,111,kh,Cambodia,855,Smart
-456,1110,05,95,kh,Cambodia,855,Smart
-456,1110,02,47,kh,Cambodia,855,Smart
-456,1110,09,159,kh,Cambodia,855,Sotelco/Beeline
-624,1572,01,31,cm,Cameroon,237,MTN
-624,1572,04,79,cm,Cameroon,237,Nexttel
-624,1572,02,47,cm,Cameroon,237,Orange
-302,770,652,1618,ca,Canada,1,BC Tel Mobility
-302,770,630,1584,ca,Canada,1,Bell Aliant
-302,770,610,1552,ca,Canada,1,Bell Mobility
-302,770,651,1617,ca,Canada,1,Bell Mobility
-302,770,670,1648,ca,Canada,1,CityWest Mobility
-302,770,361,865,ca,Canada,1,Clearnet
-302,770,360,864,ca,Canada,1,Clearnet
-302,770,380,896,ca,Canada,1,DMTS Mobility
-302,770,710,1808,ca,Canada,1,Globalstar Canada
-302,770,640,1600,ca,Canada,1,Latitude Wireless
-302,770,370,880,ca,Canada,1,FIDO (Rogers AT&T/ Microcell)
-302,770,320,800,ca,Canada,1,mobilicity
-302,770,702,1794,ca,Canada,1,MT&T Mobility
-302,770,660,1632,ca,Canada,1,MTS Mobility
-302,770,655,1621,ca,Canada,1,MTS Mobility
-302,770,701,1793,ca,Canada,1,NB Tel Mobility
-302,770,703,1795,ca,Canada,1,New Tel Mobility
-302,770,760,1888,ca,Canada,1,Public Mobile
-302,770,657,1623,ca,Canada,1,Quebectel Mobility
-302,770,720,1824,ca,Canada,1,Rogers AT&T Wireless
-302,770,680,1664,ca,Canada,1,Sask Tel Mobility
-302,770,780,1920,ca,Canada,1,Sask Tel Mobility
-302,770,654,1620,ca,Canada,1,Sask Tel Mobility
-302,770,656,1622,ca,Canada,1,Tbay Mobility
-302,770,653,1619,ca,Canada,1,Telus Mobility
-302,770,220,544,ca,Canada,1,Telus Mobility
-302,770,500,1280,ca,Canada,1,Videotron
-302,770,490,1168,ca,Canada,1,WIND
-625,1573,01,31,cv,Cape Verde,238,CVMovel
-625,1573,02,47,cv,Cape Verde,238,Unitel T+
-346,838,050,80,ky,Cayman Islands,1345,Digicel
-346,838,006,6,ky,Cayman Islands,1345,Digicel Ltd.
-346,838,140,320,ky,Cayman Islands,1345,Flow / Lime
-346,838,001,1,ky,Cayman Islands,1345,Logic
-623,1571,04,79,cf,Central African Republic,236,Azur
-623,1571,299,665,cf,Central African Republic,236,Failed Calls
-623,1571,01,31,cf,Central African Republic,236,Moov
-623,1571,03,63,cf,Central African Republic,236,Orange
-623,1571,299,665,cf,Central African Republic,236,Socatel
-623,1571,02,47,cf,Central African Republic,236,Telecel
-622,1570,01,31,td,Chad,235,Airtel
-622,1570,03,63,td,Chad,235,Moov
-622,1570,04,79,td,Chad,235,Salam
-622,1570,02,47,td,Chad,235,Tchad Mobile
-730,1840,06,111,cl,Chile,56,Blue Two Chile SA
-730,1840,11,287,cl,Chile,56,Celupago SA
-730,1840,15,351,cl,Chile,56,Cibeles Telecom SA
-730,1840,03,63,cl,Chile,56,Claro
-730,1840,10,271,cl,Chile,56,Entel Telefonia
-730,1840,01,31,cl,Chile,56,Entel Telefonia Mov
-730,1840,14,335,cl,Chile,56,Netline Telefonica Movil Ltda
-730,1840,09,159,cl,Chile,56,Nextel SA
-730,1840,05,95,cl,Chile,56,Nextel SA
-730,1840,04,79,cl,Chile,56,Nextel SA
-730,1840,19,415,cl,Chile,56,Sociedad Falabella Movil SPA
-730,1840,07,127,cl,Chile,56,TELEFONICA
-730,1840,02,47,cl,Chile,56,TELEFONICA
-730,1840,12,303,cl,Chile,56,Telestar Movil SA
-730,1840,00,15,cl,Chile,56,TESAM SA
-730,1840,13,319,cl,Chile,56,Tribe Mobile SPA
-730,1840,08,143,cl,Chile,56,VTR Banda Ancha SA
-460,1120,07,127,cn,China,86,China Mobile GSM
-460,1120,00,15,cn,China,86,China Mobile GSM
-460,1120,02,47,cn,China,86,China Mobile GSM
-460,1120,04,79,cn,China,86,China Space Mobile Satellite Telecommunications Co. Ltd (China Spacecom)
-460,1120,03,63,cn,China,86,China Telecom
-460,1120,05,95,cn,China,86,China Telecom
-460,1120,06,111,cn,China,86,China Unicom
-460,1120,01,31,cn,China,86,China Unicom
-460,1120,999,2457,cn,China,86,Fix Line
-732,1842,299,665,co,Colombia,57,ATnet
-732,1842,130,304,co,Colombia,57,Avantel
-732,1842,102,258,co,Colombia,57,Movistar
-732,1842,666,1638,co,Colombia,57,Claro
-732,1842,101,257,co,Colombia,57,Claro
-732,1842,002,2,co,Colombia,57,Edatel
-732,1842,187,391,co,Colombia,57,eTb
-732,1842,299,665,co,Colombia,57,Eztalk Mobile
-732,1842,999,2457,co,Colombia,57,Fix Line
-732,1842,240,576,co,Colombia,57,Flash Mobile
-732,1842,299,665,co,Colombia,57,Gomobile
-732,1842,220,544,co,Colombia,57,Libre Tecnologias
-732,1842,299,665,co,Colombia,57,Movil Exito
-732,1842,123,291,co,Colombia,57,Movistar
-732,1842,001,1,co,Colombia,57,Movistar
-732,1842,299,665,co,Colombia,57,Plintron
-732,1842,230,560,co,Colombia,57,Setroc Mobile
-732,1842,199,409,co,Colombia,57,SUMA movil
-732,1842,165,357,co,Colombia,57,Tigo
-732,1842,103,259,co,Colombia,57,Tigo
-732,1842,111,273,co,Colombia,57,Tigo
-732,1842,299,665,co,Colombia,57,TuCEL
-732,1842,142,322,co,Colombia,57,UNE
-732,1842,020,32,co,Colombia,57,UNE
-732,1842,299,665,co,Colombia,57,Vilacom Mobile
-732,1842,154,340,co,Colombia,57,Virgin Mobile
-732,1842,360,864,co,Colombia,57,WOM
-654,1620,299,665,km,Comoros,269,Failed Calls
-654,1620,01,31,km,Comoros,269,HURI
-654,1620,02,47,km,Comoros,269,Telma
-629,1577,01,31,cg,Congo,242,Airtel
-629,1577,02,47,cg,Congo,242,Azur SA (ETC)
-629,1577,10,271,cg,Congo,242,MTN
-629,1577,07,127,cg,Congo,242,Warid
-548,1352,01,31,ck,Cook Islands,682,Vodafone / Bluesky
-712,1810,03,63,cr,Costa Rica,506,Claro
-712,1810,999,2457,cr,Costa Rica,506,Fix Line
-712,1810,999,2457,cr,Costa Rica,506,Fix Line
-712,1810,02,47,cr,Costa Rica,506,ICE
-712,1810,01,31,cr,Costa Rica,506,ICE
-712,1810,04,79,cr,Costa Rica,506,Movistar
-712,1810,20,527,cr,Costa Rica,506,Virtualis
-219,537,10,271,hr,Croatia,385,A1 / VIP
-219,537,999,2457,hr,Croatia,385,Fix Line
-219,537,01,31,hr,Croatia,385,T-Mobile
-219,537,12,303,hr,Croatia,385,TELE FOCUS
-219,537,02,47,hr,Croatia,385,Telemach / Tele2
-368,872,01,31,cu,Cuba,53,CubaCel/C-COM
-368,872,999,2457,cu,Cuba,53,Fix Line
-362,866,95,2399,cw,Curacao,599,EOCG Wireless NV
-362,866,999,2457,cw,Curacao,599,Fix Line
-362,866,69,1695,cw,Curacao,599,Polycom N.V./ Digicel
-280,640,22,559,cy,Cyprus,357,Cablenet / Lemontel
-280,640,02,47,cy,Cyprus,357,Cytamobile-Vodafone
-280,640,01,31,cy,Cyprus,357,Cytamobile-Vodafone
-280,640,10,271,cy,Cyprus,357,Epic / MTN
-280,640,999,2457,cy,Cyprus,357,Fix Line
-280,640,20,527,cy,Cyprus,357,PrimeTel
-230,560,299,665,cz,Czech Republic,420,+4U Mobile
-230,560,299,665,cz,Czech Republic,420,3ton
-230,560,299,665,cz,Czech Republic,420,CEZ
-230,560,08,143,cz,Czech Republic,420,Compatel
-230,560,299,665,cz,Czech Republic,420,Dragon
-230,560,299,665,cz,Czech Republic,420,EriMobile
-230,560,299,665,cz,Czech Republic,420,Fayn
-230,560,999,2457,cz,Czech Republic,420,Fix Line
-230,560,299,665,cz,Czech Republic,420,GoMobil
-230,560,299,665,cz,Czech Republic,420,ha-loo mobil
-230,560,299,665,cz,Czech Republic,420,Laudatio
-230,560,299,665,cz,Czech Republic,420,METRONET
-230,560,299,665,cz,Czech Republic,420,MOBIL21
-230,560,299,665,cz,Czech Republic,420,Nej Mobil
-230,560,299,665,cz,Czech Republic,420,NETBOX Mobil
-230,560,04,79,cz,Czech Republic,420,Nordic Telecom
-230,560,02,47,cz,Czech Republic,420,O2
-230,560,299,665,cz,Czech Republic,420,Odorik
-230,560,05,95,cz,Czech Republic,420,PODA
-230,560,299,665,cz,Czech Republic,420,SAZKA
-230,560,299,665,cz,Czech Republic,420,SZDC
-230,560,98,2447,cz,Czech Republic,420,SZDC
-230,560,07,127,cz,Czech Republic,420,T-Mobile
-230,560,01,31,cz,Czech Republic,420,T-Mobile
-230,560,299,665,cz,Czech Republic,420,Tesco Mobile
-230,560,299,665,cz,Czech Republic,420,TOPefekt
-230,560,299,665,cz,Czech Republic,420,TT Quality
-230,560,09,159,cz,Czech Republic,420,Uniphone
-230,560,299,665,cz,Czech Republic,420,Uniphone
-230,560,03,63,cz,Czech Republic,420,Vodafone
-230,560,03,63,cz,Czech Republic,420,Vodafone
-230,560,99,2463,cz,Czech Republic,420,Vodafone
-630,1584,90,2319,cd,Democratic Republic of Congo,243,Africell
-630,1584,02,47,cd,Democratic Republic of Congo,243,Airtel
-630,1584,299,665,cd,Democratic Republic of Congo,243,Failed Calls
-630,1584,86,2159,cd,Democratic Republic of Congo,243,Orange
-630,1584,05,95,cd,Democratic Republic of Congo,243,Supercell
-630,1584,299,665,cd,Democratic Republic of Congo,243,Tatem
-630,1584,89,2207,cd,Democratic Republic of Congo,243,TIGO/Oasis
-630,1584,01,31,cd,Democratic Republic of Congo,243,Vodacom
-630,1584,88,2191,cd,Democratic Republic of Congo,243,Yozma Timeturns
-238,568,23,575,dk,Denmark,45,Banedanmark
-238,568,15,351,dk,Denmark,45,Net 1
-238,568,88,2191,dk,Denmark,45,Cobira
-238,568,13,319,dk,Denmark,45,Compatel
-238,568,05,95,dk,Denmark,45,
-238,568,999,2457,dk,Denmark,45,Fix Line
-238,568,17,383,dk,Denmark,45,Gotanet
-238,568,42,1071,dk,Denmark,45,Greenwave
-238,568,06,111,dk,Denmark,45,3
-238,568,28,655,dk,Denmark,45,LINK Mobility
-238,568,12,303,dk,Denmark,45,Lycamobile
-238,568,14,335,dk,Denmark,45,Monty Mobile
-238,568,07,127,dk,Denmark,45,Mundio Mobile
-238,568,04,79,dk,Denmark,45,Nexcon.io
-238,568,73,1855,dk,Denmark,45,Onomondo
-238,568,30,783,dk,Denmark,45,Pareteum
-238,568,03,63,dk,Denmark,45,Syniverse Technologies
-238,568,10,271,dk,Denmark,45,TDC
-238,568,01,31,dk,Denmark,45,TDC
-238,568,77,1919,dk,Denmark,45,Telenor
-238,568,02,47,dk,Denmark,45,Telenor
-238,568,96,2415,dk,Denmark,45,Telia
-238,568,20,527,dk,Denmark,45,Telia
-238,568,30,783,dk,Denmark,45,Telia
-238,568,16,367,dk,Denmark,45,Tismi
-238,568,25,607,dk,Denmark,45,Viahub
-238,568,08,143,dk,Denmark,45,Voxbone / Bandwidth
-638,1592,01,31,dj,Djibouti,253,Evatis
-366,870,110,272,dm,Dominica,1767,C & W
-366,870,020,32,dm,Dominica,1767,Cingular Wireless/Digicel
-366,870,050,80,dm,Dominica,1767,Wireless Ventures (Dominica) Ltd (Digicel Dominica)
-370,880,02,47,do,Dominican Republic,1809,Claro
-370,880,01,31,do,Dominican Republic,1809,Orange
-370,880,03,63,do,Dominican Republic,1809,TRIcom
-370,880,04,79,do,Dominican Republic,1809,Viva
-514,1300,299,665,tl,East Timor,670,Failed Calls
-514,1300,999,2457,tl,East Timor,670,Fix Line
-514,1300,03,63,tl,East Timor,670,Telemor
-514,1300,01,31,tl,East Timor,670,Telkomcel
-514,1300,02,47,tl,East Timor,670,Timor Telecom
-740,1856,01,31,ec,Ecuador,593,Claro/Porta
-740,1856,02,47,ec,Ecuador,593,CNT Mobile
-740,1856,000,0,ec,Ecuador,593,Failed Call(s)
-740,1856,00,15,ec,Ecuador,593,MOVISTAR/OteCel
-740,1856,03,63,ec,Ecuador,593,Tuenti
-602,1538,03,63,eg,Egypt,20,Etisalat
-602,1538,299,665,eg,Egypt,20,Failed Calls
-602,1538,01,31,eg,Egypt,20,Orange
-602,1538,02,47,eg,Egypt,20,Vodafone
-602,1538,04,79,eg,Egypt,20,WE
-706,1798,01,31,sv,El Salvador,503,CLARO/CTE
-706,1798,02,47,sv,El Salvador,503,Digicel
-706,1798,05,95,sv,El Salvador,503,INTELFON SA de CV
-706,1798,04,79,sv,El Salvador,503,Telefonica
-706,1798,03,63,sv,El Salvador,503,Telemovil
-627,1575,299,665,gq,Equatorial Guinea,240,Failed Calls
-627,1575,03,63,gq,Equatorial Guinea,240,Muni
-627,1575,01,31,gq,Equatorial Guinea,240,Orange
-657,1623,01,31,er,Eritrea,291,Eritel
-248,584,02,47,ee,Estonia,372,Elisa
-248,584,03,63,ee,Estonia,372,Tele2
-248,584,13,319,ee,Estonia,372,Telia
-248,584,01,31,ee,Estonia,372,Telia
-248,584,04,79,ee,Estonia,372,TravelSim
-636,1590,01,31,et,Ethiopia,251,Ethio Mobile
-750,1872,001,1,fk,Falkland Islands,500,Sure
-288,648,01,31,fo,Faroe Islands,298,Faroese Telecom
-288,648,02,47,fo,Faroe Islands,298,Hey / Kall
-288,648,03,63,fo,Faroe Islands,298,Tosa
-542,1346,02,47,fj,Fiji,679,DigiCell
-542,1346,01,31,fj,Fiji,679,Vodafone
-244,580,14,335,fi,Finland,358,Alcom
-244,580,299,665,fi,Finland,358,Benemen
-244,580,26,623,fi,Finland,358,Compatel
-244,580,299,665,fi,Finland,358,Cuuma
-244,580,03,63,fi,Finland,358,DNA
-244,580,12,303,fi,Finland,358,DNA
-244,580,13,319,fi,Finland,358,DNA
-244,580,04,79,fi,Finland,358,DNA
-244,580,12,303,fi,Finland,358,DNA
-244,580,21,543,fi,Finland,358,Elisa
-244,580,06,111,fi,Finland,358,Elisa
-244,580,05,95,fi,Finland,358,Elisa
-244,580,05,95,fi,Finland,358,Elisa
-244,580,82,2095,fi,Finland,358,interactive digital media / IDM
-244,580,299,665,fi,Finland,358,interactive digital media / IDM
-244,580,299,665,fi,Finland,358,IPIFY
-244,580,299,665,fi,Finland,358,Lancelot
-244,580,299,665,fi,Finland,358,MI Carrier Services
-244,580,299,665,fi,Finland,358,MobiWeb
-244,580,11,287,fi,Finland,358,Viahub
-244,580,24,591,fi,Finland,358,Nord Connect
-244,580,41,1055,fi,Finland,358,NSN
-244,580,09,159,fi,Finland,358,NSN
-244,580,08,143,fi,Finland,358,NSN
-244,580,38,911,fi,Finland,358,NSN
-244,580,39,927,fi,Finland,358,NSN
-244,580,40,1039,fi,Finland,358,NSN
-244,580,07,127,fi,Finland,358,NSN
-244,580,299,665,fi,Finland,358,RAILI
-244,580,10,271,fi,Finland,358,TDC Oy Finland
-244,580,43,1087,fi,Finland,358,Telavox
-244,580,36,879,fi,Finland,358,Telia
-244,580,91,2335,fi,Finland,358,Telia
-244,580,15,351,fi,Finland,358,Telit
-244,580,37,895,fi,Finland,358,Tismi
-244,580,299,665,fi,Finland,358,TravelSim
-244,580,299,665,fi,Finland,358,Twilio
-244,580,35,863,fi,Finland,358,Ukko Mobile
-244,580,42,1071,fi,Finland,358,Viahub
-244,580,47,1151,fi,Finland,358,VIRVE
-244,580,46,1135,fi,Finland,358,VIRVE
-244,580,45,1119,fi,Finland,358,VIRVE
-244,580,33,831,fi,Finland,358,VIRVE
-244,580,32,815,fi,Finland,358,Voxbone / Bandwidth
-208,520,299,665,fr,France,33,Add-On Multimedia
-208,520,299,665,fr,France,33,Afone Mobile
-208,520,28,655,fr,France,33,Airmob
-208,520,299,665,fr,France,33,Alphalink
-208,520,299,665,fr,France,33,Alphalink
-208,520,299,665,fr,France,33,Annatel
-208,520,92,2351,fr,France,33,IP Directions
-208,520,299,665,fr,France,33,Atlas
-208,520,299,665,fr,France,33,Auchan
-208,520,299,665,fr,France,33,Auchan
-208,520,299,665,fr,France,33,Axialys
-208,520,299,665,fr,France,33,Bazile
-208,520,299,665,fr,France,33,BJT
-208,520,299,665,fr,France,33,BJT
-208,520,88,2191,fr,France,33,Bouygues Telecom
-208,520,21,543,fr,France,33,Bouygues Telecom
-208,520,20,527,fr,France,33,Bouygues Telecom
-208,520,299,665,fr,France,33,Bretagne Telecom
-208,520,299,665,fr,France,33,CAT
-208,520,299,665,fr,France,33,CELESTE
-208,520,34,847,fr,France,33,Cellhire
-208,520,299,665,fr,France,33,Codepi
-208,520,299,665,fr,France,33,Coolwave
-208,520,27,639,fr,France,33,Coriolis
-208,520,299,665,fr,France,33,CPRO
-208,520,299,665,fr,France,33,CRH
-208,520,299,665,fr,France,33,CRT
-208,520,299,665,fr,France,33,CTExcel
-208,520,299,665,fr,France,33,Doctolib
-208,520,299,665,fr,France,33,Failed Calls
-208,520,999,2457,fr,France,33,Fix Line
-208,520,299,665,fr,France,33,Foliateam
-208,520,36,879,fr,France,33,Free Mobile
-208,520,15,351,fr,France,33,Free Mobile
-208,520,14,335,fr,France,33,Free Mobile
-208,520,35,863,fr,France,33,Free Mobile
-208,520,16,367,fr,France,33,Free Mobile
-208,520,07,127,fr,France,33,GlobalStar
-208,520,06,111,fr,France,33,GlobalStar
-208,520,05,95,fr,France,33,GlobalStar
-208,520,94,2383,fr,France,33,Halys
-208,520,299,665,fr,France,33,Happy Telecom
-208,520,299,665,fr,France,33,Hexatel
-208,520,89,2207,fr,France,33,Hub One
-208,520,299,665,fr,France,33,i-via
-208,520,29,671,fr,France,33,Orange
-208,520,37,895,fr,France,33,IP Directions
-208,520,299,665,fr,France,33,IP Telecom
-208,520,299,665,fr,France,33,Iptis
-208,520,299,665,fr,France,33,JOi
-208,520,299,665,fr,France,33,Kertel
-208,520,299,665,fr,France,33,Keyyo Mobile
-208,520,299,665,fr,France,33,La Poste Mobile
-208,520,299,665,fr,France,33,La Poste Mobile
-208,520,299,665,fr,France,33,LASOTEL
-208,520,38,911,fr,France,33,Lebara
-208,520,17,383,fr,France,33,Legos
-208,520,299,665,fr,France,33,Linkt
-208,520,299,665,fr,France,33,LITEYEAR
-208,520,15,351,fr,France,33,Free Mobile
-208,520,25,607,fr,France,33,Lycamobile
-208,520,24,591,fr,France,33,MobiquiThings
-208,520,03,63,fr,France,33,MobiquiThings
-208,520,299,665,fr,France,33,Netcom
-208,520,39,927,fr,France,33,Networth Telecom
-208,520,299,665,fr,France,33,Nordnet
-208,520,26,623,fr,France,33,NRJ
-208,520,23,575,fr,France,33,Hub One
-208,520,299,665,fr,France,33,onoff
-208,520,299,665,fr,France,33,OpenIP
-208,520,01,31,fr,France,33,Orange
-208,520,32,815,fr,France,33,Orange
-208,520,91,2335,fr,France,33,Orange
-208,520,02,47,fr,France,33,Orange
-208,520,299,665,fr,France,33,Paritel
-208,520,299,665,fr,France,33,Prixtel
-208,520,299,665,fr,France,33,Prixtel
-208,520,10,271,fr,France,33,SFR
-208,520,299,665,fr,France,33,SCT TELECOM
-208,520,299,665,fr,France,33,SCT TELECOM
-208,520,299,665,fr,France,33,Sewan Communications
-208,520,11,287,fr,France,33,SFR
-208,520,13,319,fr,France,33,SFR
-208,520,09,159,fr,France,33,SFR
-208,520,10,271,fr,France,33,SFR
-208,520,08,143,fr,France,33,SFR
-208,520,299,665,fr,France,33,SIMbioz
-208,520,04,79,fr,France,33,Axialys
-208,520,30,783,fr,France,33,Syma Mobile
-208,520,299,665,fr,France,33,TDF
-208,520,00,15,fr,France,33,Tel/Tel
-208,520,299,665,fr,France,33,Tismi
-208,520,22,559,fr,France,33,Transatel
-208,520,299,665,fr,France,33,Trunkline
-208,520,12,303,fr,France,33,Truphone
-208,520,299,665,fr,France,33,unyc
-208,520,299,665,fr,France,33,VA SOLUTIONS
-208,520,31,799,fr,France,33,Vectone Mobile
-208,520,299,665,fr,France,33,VOIP Telecom
-340,832,20,527,gf,French Guiana,594,Bouygues/DigiCel
-340,832,01,31,gf,French Guiana,594,Orange Caribe
-340,832,02,47,gf,French Guiana,594,Outremer Telecom
-340,832,11,287,gf,French Guiana,594,TelCell GSM
-340,832,03,63,gf,French Guiana,594,TelCell GSM
-547,1351,15,351,pf,French Polynesia,689,Pacific Mobile Telecom (PMT)
-547,1351,20,527,pf,French Polynesia,689,Vini/Tikiphone
-628,1576,03,63,ga,Gabon,241,Airtel
-628,1576,04,79,ga,Gabon,241,Azur/Usan S.A.
-628,1576,299,665,ga,Gabon,241,Failed Calls
-628,1576,01,31,ga,Gabon,241,Libertis
-628,1576,02,47,ga,Gabon,241,MOOV/Telecel
-607,1543,02,47,gm,Gambia,220,Africel
-607,1543,03,63,gm,Gambia,220,Comium
-607,1543,01,31,gm,Gambia,220,Gamcel
-607,1543,04,79,gm,Gambia,220,QCell
-282,642,04,79,ge,Georgia,995,Beeline
-282,642,01,31,ge,Georgia,995,Geocell
-282,642,07,127,ge,Georgia,995,GlobalCell
-282,642,03,63,ge,Georgia,995,Iberiatel Ltd.
-282,642,02,47,ge,Georgia,995,MagtiCom
-282,642,11,287,ge,Georgia,995,Mobilive
-282,642,22,559,ge,Georgia,995,MyPhone
-282,642,10,271,ge,Georgia,995,Premium Net
-282,642,05,95,ge,Georgia,995,Silknet
-282,642,08,143,ge,Georgia,995,Silknet
-282,642,12,303,ge,Georgia,995,Telecom 1
-262,610,23,575,de,Germany,49,1&1
-262,610,299,665,de,Germany,49,1&1
-262,610,299,665,de,Germany,49,Argon Networks
-262,610,13,319,de,Germany,49,Bundesamt für Ausrüstung Informationstechnik und Nutzung der Bundeswehr
-262,610,10,271,de,Germany,49,DB Netz
-262,610,77,1919,de,Germany,49,Telefonica / E-Plus
-262,610,20,527,de,Germany,49,Telefonica / E-Plus
-262,610,999,2457,de,Germany,49,Fix Line
-262,610,14,335,de,Germany,49,Lebara
-262,610,43,1087,de,Germany,49,Lycamobile
-262,610,21,543,de,Germany,49,Multiconnect
-262,610,299,665,de,Germany,49,Multiconnect
-262,610,22,559,de,Germany,49,sipgate
-262,610,33,831,de,Germany,49,sipgate
-262,610,299,665,de,Germany,49,TelcoVillage
-262,610,24,591,de,Germany,49,TelcoVillage
-262,610,05,95,de,Germany,49,Telefonica / E-Plus
-262,610,17,383,de,Germany,49,Telefonica / E-Plus
-262,610,12,303,de,Germany,49,Telefonica / E-Plus
-262,610,03,63,de,Germany,49,Telefonica / E-Plus
-262,610,11,287,de,Germany,49,Telefonica / O2
-262,610,08,143,de,Germany,49,Telefonica / O2
-262,610,16,367,de,Germany,49,Telefonica / O2
-262,610,07,127,de,Germany,49,Telefonica / O2
-262,610,78,1935,de,Germany,49,Telekom / T-mobile
-262,610,06,111,de,Germany,49,Telekom / T-mobile
-262,610,01,31,de,Germany,49,Telekom / T-mobile
-262,610,299,665,de,Germany,49,Tismi
-262,610,299,665,de,Germany,49,Truphone
-262,610,09,159,de,Germany,49,Vodafone
-262,610,04,79,de,Germany,49,Vodafone
-262,610,02,47,de,Germany,49,Vodafone
-262,610,42,1071,de,Germany,49,Vodafone
-620,1568,06,111,gh,Ghana,233,Airtel
-620,1568,03,63,gh,Ghana,233,Airtel
-620,1568,299,665,gh,Ghana,233,Comsys
-620,1568,04,79,gh,Ghana,233,Expresso Ghana Ltd
-620,1568,07,127,gh,Ghana,233,Glo
-620,1568,01,31,gh,Ghana,233,MTN
-620,1568,05,95,gh,Ghana,233,National Security
-620,1568,08,143,gh,Ghana,233,Surfline
-620,1568,02,47,gh,Ghana,233,Vodafone
-266,614,06,111,gi,Gibraltar,350,CTS Mobile
-266,614,09,159,gi,Gibraltar,350,eazi telecom
-266,614,999,2457,gi,Gibraltar,350,Fix Line
-266,614,299,665,gi,Gibraltar,350,GibFibreSpeed
-266,614,01,31,gi,Gibraltar,350,Gibtel
-202,514,299,665,gr,Greece,30,AMD Telecom
-202,514,07,127,gr,Greece,30,AMD Telecom
-202,514,299,665,gr,Greece,30,Apifon
-202,514,15,351,gr,Greece,30,BWS
-202,514,02,47,gr,Greece,30,Cosmote
-202,514,01,31,gr,Greece,30,Cosmote
-202,514,14,335,gr,Greece,30,CyTa Mobile
-202,514,999,2457,gr,Greece,30,Fix Line
-202,514,16,367,gr,Greece,30,Inter Telecom
-202,514,299,665,gr,Greece,30,Interconnect
-202,514,299,665,gr,Greece,30,M-STAT
-202,514,299,665,gr,Greece,30,Nova
-202,514,04,79,gr,Greece,30,OSE
-202,514,04,79,gr,Greece,30,OSE
-202,514,03,63,gr,Greece,30,OTE
-202,514,03,63,gr,Greece,30,OTE
-202,514,299,665,gr,Greece,30,OTEGLOBE
-202,514,299,665,gr,Greece,30,Premium Net
-202,514,10,271,gr,Greece,30,Wind
-202,514,05,95,gr,Greece,30,Vodafone
-202,514,09,159,gr,Greece,30,Wind
-202,514,10,271,gr,Greece,30,Wind
-202,514,12,303,gr,Greece,30,Yuboto
-290,656,01,31,gl,Greenland,299,Tele Greenland
-352,850,110,272,gd,Grenada,1473,Cable & Wireless
-352,850,030,48,gd,Grenada,1473,Digicel
-352,850,050,80,gd,Grenada,1473,Digicel
-340,832,08,143,gp,Guadeloupe,590,Dauphin Telecom SU (Guadeloupe Telecom)
-340,832,10,271,gp,Guadeloupe,590,
-310,784,370,880,gu,Guam,1671,Docomo
-310,784,470,1136,gu,Guam,1671,Docomo
-310,784,140,320,gu,Guam,1671,GTA Wireless
-310,784,033,51,gu,Guam,1671,Guam Teleph. Auth.
-310,784,032,50,gu,Guam,1671,IT&E OverSeas
-311,785,250,592,gu,Guam,1671,Wave Runner LLC
-704,1796,01,31,gt,Guatemala,502,Claro
-704,1796,03,63,gt,Guatemala,502,Telefonica
-704,1796,02,47,gt,Guatemala,502,TIGO/COMCEL
-611,1553,05,95,gn,Guinea,224,Cellcom
-611,1553,03,63,gn,Guinea,224,Intercel
-611,1553,04,79,gn,Guinea,224,MTN
-611,1553,01,31,gn,Guinea,224,Orange
-611,1553,02,47,gn,Guinea,224,SotelGui
-632,1586,999,2457,gw,Guinea-Bissau,245,Fix Line
-632,1586,01,31,gw,Guinea-Bissau,245,Guinetel
-632,1586,02,47,gw,Guinea-Bissau,245,MTN
-632,1586,03,63,gw,Guinea-Bissau,245,Orange
-738,1848,02,47,gy,Guyana,592,Cellink Plus
-738,1848,01,31,gy,Guyana,592,DigiCel
-372,882,01,31,ht,Haiti,509,Comcel
-372,882,02,47,ht,Haiti,509,Digicel
-372,882,03,63,ht,Haiti,509,Natcom
-708,1800,040,64,hn,Honduras,504,Digicel
-708,1800,030,48,hn,Honduras,504,HonduTel
-708,1800,001,1,hn,Honduras,504,SERCOM/CLARO
-708,1800,002,2,hn,Honduras,504,Telefonica/CELTEL
-454,1108,12,303,hk,Hongkong,852,China Mobile/Peoples
-454,1108,28,655,hk,Hongkong,852,China Mobile/Peoples
-454,1108,13,319,hk,Hongkong,852,China Mobile/Peoples
-454,1108,09,159,hk,Hongkong,852,China Motion
-454,1108,07,127,hk,Hongkong,852,China Unicom Ltd
-454,1108,11,287,hk,Hongkong,852,China-HongKong Telecom Ltd (CHKTL)
-454,1108,01,31,hk,Hongkong,852,Citic Telecom Ltd.
-454,1108,02,47,hk,Hongkong,852,CSL Ltd.
-454,1108,00,15,hk,Hongkong,852,CSL Ltd.
-454,1108,18,399,hk,Hongkong,852,CSL Ltd.
-454,1108,10,271,hk,Hongkong,852,CSL/New World PCS Ltd.
-454,1108,31,799,hk,Hongkong,852,CTExcel
-454,1108,14,335,hk,Hongkong,852,H3G/Hutchinson
-454,1108,05,95,hk,Hongkong,852,H3G/Hutchinson
-454,1108,04,79,hk,Hongkong,852,H3G/Hutchinson
-454,1108,03,63,hk,Hongkong,852,H3G/Hutchinson
-454,1108,20,527,hk,Hongkong,852,HKT/PCCW
-454,1108,19,415,hk,Hongkong,852,HKT/PCCW
-454,1108,29,671,hk,Hongkong,852,HKT/PCCW
-454,1108,16,367,hk,Hongkong,852,HKT/PCCW
-454,1108,47,1151,hk,Hongkong,852,shared by private TETRA systems
-454,1108,24,591,hk,Hongkong,852,Multibyte Info Technology Ltd
-454,1108,40,1039,hk,Hongkong,852,shared by private TETRA systems
-454,1108,08,143,hk,Hongkong,852,Truephone
-454,1108,17,383,hk,Hongkong,852,Vodafone/SmarTone
-454,1108,15,351,hk,Hongkong,852,Vodafone/SmarTone
-454,1108,06,111,hk,Hongkong,852,Vodafone/SmarTone
-216,534,299,665,hu,Hungary,36,Antenna
-216,534,03,63,hu,Hungary,36,Digi
-216,534,999,2457,hu,Hungary,36,Fix line
-216,534,299,665,hu,Hungary,36,Invitech
-216,534,299,665,hu,Hungary,36,Mobil4
-216,534,02,47,hu,Hungary,36,MVM NET
-216,534,299,665,hu,Hungary,36,Netfone
-216,534,299,665,hu,Hungary,36,TARR
-216,534,30,783,hu,Hungary,36,Telekom
-216,534,01,31,hu,Hungary,36,Telenor
-216,534,71,1823,hu,Hungary,36,UPC Magyarorszag Kft.
-216,534,299,665,hu,Hungary,36,Vidanet
-216,534,71,1823,hu,Hungary,36,Vodafone
-216,534,70,1807,hu,Hungary,36,Vodafone
-274,628,09,159,is,Iceland,354,Amitelo
-274,628,07,127,is,Iceland,354,IceCell
-274,628,11,287,is,Iceland,354,NOVA
-274,628,31,799,is,Iceland,354,Siminn
-274,628,08,143,is,Iceland,354,Siminn
-274,628,01,31,is,Iceland,354,Siminn
-274,628,16,367,is,Iceland,354,Tismi
-274,628,04,79,is,Iceland,354,Viking Wireless
-274,628,12,303,is,Iceland,354,Vodafone
-274,628,02,47,is,Iceland,354,Vodafone
-274,628,03,63,is,Iceland,354,Vodafone
-274,628,05,95,is,Iceland,354,Vodafone
-404,1028,17,383,in,India,91,Aircel
-404,1028,42,1071,in,India,91,Aircel
-404,1028,33,831,in,India,91,Aircel
-404,1028,29,671,in,India,91,Aircel
-404,1028,28,655,in,India,91,Aircel
-404,1028,25,607,in,India,91,Aircel
-404,1028,01,31,in,India,91,Aircel Digilink India
-404,1028,15,351,in,India,91,Aircel Digilink India
-404,1028,60,1551,in,India,91,Aircel Digilink India
-405,1029,53,1343,in,India,91,AirTel
-404,1028,86,2159,in,India,91,Barakhamba Sales & Serv.
-404,1028,13,319,in,India,91,Barakhamba Sales & Serv.
-404,1028,58,1423,in,India,91,BSNL
-404,1028,81,2079,in,India,91,BSNL
-404,1028,74,1871,in,India,91,BSNL
-404,1028,38,911,in,India,91,BSNL
-404,1028,57,1407,in,India,91,BSNL
-404,1028,80,2063,in,India,91,BSNL
-404,1028,73,1855,in,India,91,BSNL
-404,1028,34,847,in,India,91,BSNL
-404,1028,66,1647,in,India,91,BSNL
-404,1028,55,1375,in,India,91,BSNL
-404,1028,72,1839,in,India,91,BSNL
-404,1028,77,1919,in,India,91,BSNL
-404,1028,64,1615,in,India,91,BSNL
-404,1028,54,1359,in,India,91,BSNL
-404,1028,71,1823,in,India,91,BSNL
-404,1028,76,1903,in,India,91,BSNL
-404,1028,62,1583,in,India,91,BSNL
-404,1028,53,1343,in,India,91,BSNL
-404,1028,59,1439,in,India,91,BSNL
-404,1028,75,1887,in,India,91,BSNL
-404,1028,51,1311,in,India,91,BSNL
-404,1028,10,271,in,India,91,Bharti Airtel Limited (Delhi)
-404,1028,045,69,in,India,91,Bharti Airtel Limited (Karnataka) (India)
-404,1028,79,1951,in,India,91,CellOne A&N
-404,1028,87,2175,in,India,91,Escorts Telecom Ltd.
-404,1028,82,2095,in,India,91,Escorts Telecom Ltd.
-404,1028,89,2207,in,India,91,Escorts Telecom Ltd.
-404,1028,88,2191,in,India,91,Escorts Telecom Ltd.
-404,1028,12,303,in,India,91,Escotel Mobile Communications
-404,1028,19,415,in,India,91,Escotel Mobile Communications
-404,1028,56,1391,in,India,91,Escotel Mobile Communications
-405,1029,05,95,in,India,91,Fascel Limited
-404,1028,05,95,in,India,91,Fascel
-404,1028,998,2456,in,India,91,Fix Line
-404,1028,70,1807,in,India,91,Hexacom India
-404,1028,16,367,in,India,91,Hexcom India
-404,1028,78,1935,in,India,91,Idea Cellular Ltd.
-404,1028,07,127,in,India,91,Idea Cellular Ltd.
-404,1028,04,79,in,India,91,Idea Cellular Ltd.
-404,1028,24,591,in,India,91,Idea Cellular Ltd.
-404,1028,22,559,in,India,91,Idea Cellular Ltd.
-404,1028,69,1695,in,India,91,Mahanagar Telephone Nigam
-404,1028,68,1679,in,India,91,Mahanagar Telephone Nigam
-404,1028,83,2111,in,India,91,Reliable Internet Services
-404,1028,50,1295,in,India,91,Reliance Telecom Private
-404,1028,67,1663,in,India,91,Reliance Telecom Private
-404,1028,18,399,in,India,91,Reliance Telecom Private
-404,1028,85,2143,in,India,91,Reliance Telecom Private
-404,1028,09,159,in,India,91,Reliance Telecom Private
-405,1029,87,2175,in,India,91,Reliance Telecom Private
-404,1028,36,879,in,India,91,Reliance Telecom Private
-404,1028,52,1327,in,India,91,Reliance Telecom Private
-404,1028,41,1055,in,India,91,RPG Cellular
-404,1028,14,335,in,India,91,Spice
-404,1028,44,1103,in,India,91,Spice
-404,1028,11,287,in,India,91,Sterling Cellular Ltd.
-405,1029,034,52,in,India,91,TATA / Karnataka
-404,1028,30,783,in,India,91,Usha Martin Telecom
-404,1028,999,2457,in,India,91,Various Networks
-404,1028,27,639,in,India,91,Unknown
-404,1028,43,1087,in,India,91,Vodafone/Essar/Hutch
-404,1028,20,527,in,India,91,Unknown
-510,1296,08,143,id,Indonesia,62,Axis/Natrindo
-510,1296,99,2463,id,Indonesia,62,Esia (PT Bakrie Telecom) (CDMA)
-510,1296,999,2457,id,Indonesia,62,Fix Line
-510,1296,07,127,id,Indonesia,62,Flexi (PT Telkom) (CDMA)
-510,1296,89,2207,id,Indonesia,62,H3G CP
-510,1296,21,543,id,Indonesia,62,Indosat/Satelindo/M3
-510,1296,01,31,id,Indonesia,62,Indosat/Satelindo/M3
-510,1296,00,15,id,Indonesia,62,PT Pasifik Satelit Nusantara (PSN)
-510,1296,27,639,id,Indonesia,62,PT Sampoerna Telekomunikasi Indonesia (STI)
-510,1296,28,655,id,Indonesia,62,PT Smartfren Telecom Tbk
-510,1296,09,159,id,Indonesia,62,PT Smartfren Telecom Tbk
-510,1296,11,287,id,Indonesia,62,PT. Excelcom
-510,1296,10,271,id,Indonesia,62,Telkomsel
-510,1296,07,127,id,Indonesia,62,Telkomsel
-901,2305,13,319,n/a,International Networks,882,Antarctica
-432,1074,999,2457,ir,Iran,98,Fix Line
-432,1074,19,415,ir,Iran,98,Mobile Telecommunications Company of Esfahan JV-PJS (MTCE)
-432,1074,70,1807,ir,Iran,98,MTCE
-432,1074,35,863,ir,Iran,98,MTN/IranCell
-432,1074,20,527,ir,Iran,98,Rightel
-432,1074,32,815,ir,Iran,98,Taliya
-432,1074,11,287,ir,Iran,98,MCI/TCI
-432,1074,14,335,ir,Iran,98,TKC/KFZO
-418,1048,05,95,iq,Iraq,964,Asia Cell
-418,1048,66,1647,iq,Iraq,964,Fastlink
-418,1048,92,2351,iq,Iraq,964,Itisaluna and Kalemat
-418,1048,82,2095,iq,Iraq,964,Korek
-418,1048,40,1039,iq,Iraq,964,Korek
-418,1048,45,1119,iq,Iraq,964,Mobitel
-418,1048,30,783,iq,Iraq,964,Orascom Telecom
-418,1048,08,143,iq,Iraq,964,Sanatel
-418,1048,20,527,iq,Iraq,964,Zain
-418,1048,30,783,iq,Iraq,964,Zain
-272,626,04,79,ie,Ireland,353,Access Telecom Ltd.
-272,626,03,63,ie,Ireland,353,Meteor / eir mobile
-272,626,07,127,ie,Ireland,353,Meteor / eir mobile
-272,626,08,143,ie,Ireland,353,Meteor / eir mobile
-272,626,13,319,ie,Ireland,353,Lycamobile
-272,626,11,287,ie,Ireland,353,Tesco Mobile
-272,626,17,383,ie,Ireland,353,3
-272,626,02,47,ie,Ireland,353,3
-272,626,05,95,ie,Ireland,353,3
-272,626,15,351,ie,Ireland,353,Virgin Media
-272,626,01,31,ie,Ireland,353,Vodafone
-425,1061,19,415,il,Israel,972,019 Mobile
-425,1061,299,665,il,Israel,972,Annatel Mobile
-425,1061,23,575,il,Israel,972,Beezz
-425,1061,299,665,il,Israel,972,Bynet
-425,1061,299,665,il,Israel,972,Cellact
-425,1061,02,47,il,Israel,972,Cellcom
-425,1061,299,665,il,Israel,972,Failed Calls
-425,1061,08,143,il,Israel,972,Golan Telecom
-425,1061,15,351,il,Israel,972,Home Cellular
-425,1061,77,1919,il,Israel,972,Hot Mobile
-425,1061,07,127,il,Israel,972,Hot Mobile
-425,1061,07,127,il,Israel,972,Hot Mobile
-425,1061,13,319,il,Israel,972,Ituran
-425,1061,22,559,il,Israel,972,Maskyoo
-425,1061,01,31,il,Israel,972,Orange
-425,1061,03,63,il,Israel,972,Pelephone
-425,1061,12,303,il,Israel,972,Pelephone
-425,1061,16,367,il,Israel,972,Rami Levy Communications
-425,1061,299,665,il,Israel,972,T2T
-425,1061,19,415,il,Israel,972,Telzar/AZI
-425,1061,17,383,il,Israel,972,Von waves
-425,1061,09,159,il,Israel,972,We4G
-425,1061,14,335,il,Israel,972,YouPhone
-222,546,299,665,it,Italy,39,A-Tono
-222,546,40,1039,it,Italy,39,Agile Telecom
-222,546,34,847,it,Italy,39,BT mobile
-222,546,299,665,it,Italy,39,Esendex
-222,546,299,665,it,Italy,39,Compatel
-222,546,53,1343,it,Italy,39,CoopVoce
-222,546,36,879,it,Italy,39,Digi
-222,546,36,879,it,Italy,39,Digi
-222,546,299,665,it,Italy,39,DireQ
-222,546,02,47,it,Italy,39,Elsacom
-222,546,42,1071,it,Italy,39,Enel
-222,546,08,143,it,Italy,39,Fastweb
-222,546,999,2457,it,Italy,39,Fix Line
-222,546,99,2463,it,Italy,39,WindTre / Hi3G
-222,546,50,1295,it,Italy,39,Iliad
-222,546,77,1919,it,Italy,39,IPSE 2000
-222,546,299,665,it,Italy,39,Kaleyra
-222,546,39,927,it,Italy,39,SMS.it / LINK Mobility
-222,546,35,863,it,Italy,39,Lycamobile
-222,546,07,127,it,Italy,39,Noverca Italia
-222,546,54,1359,it,Italy,39,Plintron
-222,546,33,831,it,Italy,39,Poste Mobile
-222,546,00,15,it,Italy,39,Premium Numbers
-222,546,58,1423,it,Italy,39,rdcom
-222,546,30,783,it,Italy,39,RFI
-222,546,56,1391,it,Italy,39,spusu
-222,546,43,1087,it,Italy,39,Telecom Italia Mobile
-222,546,01,31,it,Italy,39,TIM
-222,546,48,1167,it,Italy,39,Telecom Italia Mobile
-222,546,299,665,it,Italy,39,Sparkle
-222,546,44,1103,it,Italy,39,Mundio
-222,546,51,1311,it,Italy,39,ho.
-222,546,49,1183,it,Italy,39,Vianova Mobile
-222,546,10,271,it,Italy,39,Vodafone
-222,546,06,111,it,Italy,39,Vodafone
-222,546,06,111,it,Italy,39,Vodafone
-222,546,00,15,it,Italy,39,VOIP Line
-222,546,299,665,it,Italy,39,Vola
-222,546,299,665,it,Italy,39,Webcom
-222,546,44,1103,it,Italy,39,Mundio
-222,546,88,2191,it,Italy,39,WindTre / WIND
-222,546,37,895,it,Italy,39,WindTre / Hi3G
-612,1554,07,127,ci,Ivory Coast,225,Aircomm SA
-612,1554,04,79,ci,Ivory Coast,225,Comium
-612,1554,01,31,ci,Ivory Coast,225,Comstar
-612,1554,02,47,ci,Ivory Coast,225,Moov
-612,1554,05,95,ci,Ivory Coast,225,MTN
-612,1554,03,63,ci,Ivory Coast,225,Orange
-612,1554,06,111,ci,Ivory Coast,225,OriCell
-338,824,020,32,jm,Jamaica,1876,Cable & Wireless
-338,824,110,272,jm,Jamaica,1876,Cable & Wireless
-338,824,180,384,jm,Jamaica,1876,Cable & Wireless
-338,824,050,80,jm,Jamaica,1876,DIGICEL/Mossel
-440,1088,00,15,jp,Japan,81,Y-Mobile
-440,1088,89,2207,jp,Japan,81,KDDI
-440,1088,51,1311,jp,Japan,81,KDDI
-440,1088,75,1887,jp,Japan,81,KDDI
-440,1088,70,1807,jp,Japan,81,KDDI
-440,1088,56,1391,jp,Japan,81,KDDI
-441,1089,70,1807,jp,Japan,81,KDDI
-440,1088,52,1327,jp,Japan,81,KDDI
-440,1088,76,1903,jp,Japan,81,KDDI
-440,1088,71,1823,jp,Japan,81,KDDI
-440,1088,53,1343,jp,Japan,81,KDDI
-440,1088,77,1919,jp,Japan,81,KDDI
-440,1088,08,143,jp,Japan,81,KDDI
-440,1088,72,1839,jp,Japan,81,KDDI
-440,1088,54,1359,jp,Japan,81,KDDI
-440,1088,79,1951,jp,Japan,81,KDDI
-440,1088,07,127,jp,Japan,81,KDDI
-440,1088,73,1855,jp,Japan,81,KDDI
-440,1088,55,1375,jp,Japan,81,KDDI
-440,1088,88,2191,jp,Japan,81,KDDI
-440,1088,50,1295,jp,Japan,81,KDDI
-440,1088,74,1871,jp,Japan,81,KDDI
-440,1088,70,1807,jp,Japan,81,KDDI
-440,1088,02,47,jp,Japan,81,NTT DoCoMo
-440,1088,22,559,jp,Japan,81,NTT DoCoMo
-441,1089,43,1087,jp,Japan,81,NTT DoCoMo
-440,1088,27,639,jp,Japan,81,NTT DoCoMo
-440,1088,87,2175,jp,Japan,81,NTT DoCoMo
-440,1088,17,383,jp,Japan,81,NTT DoCoMo
-440,1088,31,799,jp,Japan,81,NTT DoCoMo
-440,1088,65,1631,jp,Japan,81,NTT DoCoMo
-440,1088,36,879,jp,Japan,81,NTT DoCoMo
-441,1089,92,2351,jp,Japan,81,NTT DoCoMo
-440,1088,03,63,jp,Japan,81,NTT DoCoMo
-440,1088,12,303,jp,Japan,81,NTT DoCoMo
-440,1088,58,1423,jp,Japan,81,NTT DoCoMo
-440,1088,28,655,jp,Japan,81,NTT DoCoMo
-440,1088,61,1567,jp,Japan,81,NTT DoCoMo
-440,1088,18,399,jp,Japan,81,NTT DoCoMo
-441,1089,91,2335,jp,Japan,81,NTT DoCoMo
-440,1088,32,815,jp,Japan,81,NTT DoCoMo
-440,1088,66,1647,jp,Japan,81,NTT DoCoMo
-440,1088,35,863,jp,Japan,81,NTT DoCoMo
-441,1089,93,2367,jp,Japan,81,NTT DoCoMo
-441,1089,40,1039,jp,Japan,81,NTT DoCoMo
-440,1088,09,159,jp,Japan,81,NTT DoCoMo
-440,1088,49,1183,jp,Japan,81,NTT DoCoMo
-440,1088,29,671,jp,Japan,81,NTT DoCoMo
-440,1088,60,1551,jp,Japan,81,NTT DoCoMo
-440,1088,19,415,jp,Japan,81,NTT DoCoMo
-441,1089,90,2319,jp,Japan,81,NTT DoCoMo
-440,1088,33,831,jp,Japan,81,NTT DoCoMo
-440,1088,67,1663,jp,Japan,81,NTT DoCoMo
-440,1088,14,335,jp,Japan,81,NTT DoCoMo
-441,1089,94,2383,jp,Japan,81,NTT DoCoMo
-441,1089,41,1055,jp,Japan,81,NTT DoCoMo
-440,1088,10,271,jp,Japan,81,NTT DoCoMo
-440,1088,62,1583,jp,Japan,81,NTT DoCoMo
-440,1088,39,927,jp,Japan,81,NTT DoCoMo
-440,1088,30,783,jp,Japan,81,NTT DoCoMo
-441,1089,45,1119,jp,Japan,81,NTT DoCoMo
-440,1088,01,31,jp,Japan,81,NTT DoCoMo
-440,1088,24,591,jp,Japan,81,NTT DoCoMo
-440,1088,68,1679,jp,Japan,81,NTT DoCoMo
-440,1088,15,351,jp,Japan,81,NTT DoCoMo
-441,1089,98,2447,jp,Japan,81,NTT DoCoMo
-441,1089,42,1071,jp,Japan,81,NTT DoCoMo
-440,1088,11,287,jp,Japan,81,NTT DoCoMo
-440,1088,63,1599,jp,Japan,81,NTT DoCoMo
-440,1088,38,911,jp,Japan,81,NTT DoCoMo
-440,1088,26,623,jp,Japan,81,NTT DoCoMo
-440,1088,23,575,jp,Japan,81,NTT DoCoMo
-440,1088,21,543,jp,Japan,81,NTT DoCoMo
-441,1089,44,1103,jp,Japan,81,NTT DoCoMo
-440,1088,13,319,jp,Japan,81,NTT DoCoMo
-440,1088,69,1695,jp,Japan,81,NTT DoCoMo
-440,1088,16,367,jp,Japan,81,NTT DoCoMo
-441,1089,99,2463,jp,Japan,81,NTT DoCoMo
-440,1088,34,847,jp,Japan,81,NTT DoCoMo
-440,1088,64,1615,jp,Japan,81,NTT DoCoMo
-440,1088,37,895,jp,Japan,81,NTT DoCoMo
-440,1088,25,607,jp,Japan,81,NTT DoCoMo
-440,1088,99,2463,jp,Japan,81,NTT DoCoMo
-440,1088,78,1935,jp,Japan,81,Okinawa Cellular
-440,1088,11,287,jp,Japan,81,Rakuten Mobile
-440,1088,00,15,jp,Japan,81,SoftBank
-440,1088,20,527,jp,Japan,81,SoftBank
-440,1088,21,543,jp,Japan,81,SoftBank
-440,1088,05,95,jp,Japan,81,SoftBank
-440,1088,01,31,jp,Japan,81,SoftBank
-440,1088,94,2383,jp,Japan,81,SoftBank
-440,1088,46,1135,jp,Japan,81,SoftBank
-440,1088,97,2431,jp,Japan,81,SoftBank
-440,1088,42,1071,jp,Japan,81,SoftBank
-441,1089,65,1631,jp,Japan,81,SoftBank
-440,1088,90,2319,jp,Japan,81,SoftBank
-440,1088,96,2415,jp,Japan,81,SoftBank
-440,1088,92,2351,jp,Japan,81,SoftBank
-440,1088,98,2447,jp,Japan,81,SoftBank
-440,1088,43,1087,jp,Japan,81,SoftBank
-440,1088,48,1167,jp,Japan,81,SoftBank
-440,1088,06,111,jp,Japan,81,SoftBank
-441,1089,61,1567,jp,Japan,81,SoftBank
-440,1088,44,1103,jp,Japan,81,SoftBank
-440,1088,04,79,jp,Japan,81,SoftBank
-441,1089,62,1583,jp,Japan,81,SoftBank
-440,1088,45,1119,jp,Japan,81,SoftBank
-440,1088,20,527,jp,Japan,81,SoftBank
-440,1088,40,1039,jp,Japan,81,SoftBank
-441,1089,63,1599,jp,Japan,81,SoftBank
-440,1088,93,2367,jp,Japan,81,SoftBank
-440,1088,47,1151,jp,Japan,81,SoftBank
-440,1088,95,2399,jp,Japan,81,SoftBank
-440,1088,41,1055,jp,Japan,81,SoftBank
-441,1089,64,1615,jp,Japan,81,SoftBank
-440,1088,85,2143,jp,Japan,81,KDDI
-440,1088,83,2111,jp,Japan,81,KDDI
-440,1088,80,2063,jp,Japan,81,KDDI
-440,1088,86,2159,jp,Japan,81,KDDI
-440,1088,81,2079,jp,Japan,81,KDDI
-440,1088,84,2127,jp,Japan,81,KDDI
-440,1088,82,2095,jp,Japan,81,KDDI
-416,1046,999,2457,jo,Jordan,962,Fix Line
-416,1046,77,1919,jo,Jordan,962,Orange
-416,1046,03,63,jo,Jordan,962,Umniah
-416,1046,02,47,jo,Jordan,962,Xpress
-416,1046,01,31,jo,Jordan,962,Zain
-401,1025,01,31,kz,Kazakhstan,7,Beeline/KaR-Tel LLP
-401,1025,07,127,kz,Kazakhstan,7,Dalacom/Altel
-401,1025,02,47,kz,Kazakhstan,7,K-Cell
-401,1025,77,1919,kz,Kazakhstan,7,Tele2/NEO/MTS
-639,1593,03,63,ke,Kenya,254,Airtel
-639,1593,05,95,ke,Kenya,254,Airtel
-639,1593,299,665,ke,Kenya,254,eferio
-639,1593,06,111,ke,Kenya,254,Finserve Africa
-639,1593,09,159,ke,Kenya,254,Homeland Media
-639,1593,12,303,ke,Kenya,254,Infura
-639,1593,11,287,ke,Kenya,254,Jambo Telcoms
-639,1593,10,271,ke,Kenya,254,Jamii Telecommunications
-639,1593,04,79,ke,Kenya,254,Mobile Pay
-639,1593,01,31,ke,Kenya,254,Safaricom
-639,1593,02,47,ke,Kenya,254,Safaricom
-639,1593,07,127,ke,Kenya,254,Telkom
-545,1349,09,159,ki,Kiribati,686,Kiribati Frigate
-221,545,07,127,xk,Kosovo,383,D3 mobile
-221,545,06,111,xk,Kosovo,383,Dardafon.Net LLC
-221,545,02,47,xk,Kosovo,383,IPKO
-221,545,299,665,xk,Kosovo,383,MTS
-221,545,03,63,xk,Kosovo,383,MTS
-221,545,01,31,xk,Kosovo,383,Vala
-419,1049,999,2457,kw,Kuwait,965,Fix Line
-419,1049,02,47,kw,Kuwait,965,Zain
-419,1049,04,79,kw,Kuwait,965,Viva
-419,1049,03,63,kw,Kuwait,965,Ooredoo
-437,1079,01,31,kg,Kyrgyzstan,996,Beeline
-437,1079,299,665,kg,Kyrgyzstan,996,Failed Calls
-437,1079,02,47,kg,Kyrgyzstan,996,KT Mobile
-437,1079,05,95,kg,Kyrgyzstan,996,MegaCom
-437,1079,09,159,kg,Kyrgyzstan,996,O!
-437,1079,10,271,kg,Kyrgyzstan,996,Saima
-437,1079,03,63,kg,Kyrgyzstan,996,Sem Mobile
-457,1111,02,47,la,Laos,856,ETL Mobile
-457,1111,01,31,la,Laos,856,Lao Tel
-457,1111,08,143,la,Laos,856,Beeline/Tigo/Millicom
-457,1111,03,63,la,Laos,856,UNITEL/LAT
-247,583,05,95,lv,Latvia,371,Bite
-247,583,10,271,lv,Latvia,371,LMT
-247,583,01,31,lv,Latvia,371,LMT
-247,583,299,665,lv,Latvia,371,Premium Numbers
-247,583,07,127,lv,Latvia,371,SIA Master Telecom
-247,583,06,111,lv,Latvia,371,SIA Rigatta
-247,583,02,47,lv,Latvia,371,Tele2
-247,583,04,79,lv,Latvia,371,Tet
-247,583,03,63,lv,Latvia,371,TRIATEL
-247,583,08,143,lv,Latvia,371,VENTA Mobile
-247,583,09,159,lv,Latvia,371,XOmobile
-415,1045,35,863,lb,Lebanon,961,Cellis
-415,1045,33,831,lb,Lebanon,961,Cellis
-415,1045,32,815,lb,Lebanon,961,Cellis
-415,1045,34,847,lb,Lebanon,961,FTML Cellis
-415,1045,39,927,lb,Lebanon,961,MIC2/LibanCell/MTC
-415,1045,38,911,lb,Lebanon,961,MIC2/LibanCell/MTC
-415,1045,37,895,lb,Lebanon,961,MIC2/LibanCell/MTC
-415,1045,01,31,lb,Lebanon,961,MIC1 (Alfa)
-415,1045,03,63,lb,Lebanon,961,MIC2/LibanCell/MTC
-415,1045,36,879,lb,Lebanon,961,MIC2/LibanCell/MTC
-651,1617,02,47,ls,Lesotho,266,Econet
-651,1617,01,31,ls,Lesotho,266,Vodacom
-618,1560,02,47,lr,Liberia,231,Libercell
-618,1560,20,527,lr,Liberia,231,LibTelco
-618,1560,01,31,lr,Liberia,231,MTN / Lonestar
-618,1560,04,79,lr,Liberia,231,Novafone
-618,1560,07,127,lr,Liberia,231,Orange
-606,1542,02,47,ly,Libya,218,Al-Madar
-606,1542,01,31,ly,Libya,218,Al-Madar
-606,1542,06,111,ly,Libya,218,Hatef
-606,1542,00,15,ly,Libya,218,Libyana
-606,1542,00,15,ly,Libya,218,Libyana
-606,1542,03,63,ly,Libya,218,LibyaPhone Mobile
-295,661,02,47,li,Liechtenstein,423,7acht
-295,661,06,111,li,Liechtenstein,423,CUBIC
-295,661,299,665,li,Liechtenstein,423,Datamobile
-295,661,299,665,li,Liechtenstein,423,Dimoco
-295,661,09,159,li,Liechtenstein,423,EMnify
-295,661,07,127,li,Liechtenstein,423,First Mobile AG
-295,661,01,31,li,Liechtenstein,423,FL GSM
-295,661,05,95,li,Liechtenstein,423,FL1
-295,661,299,665,li,Liechtenstein,423,SORACOM
-295,661,77,1919,li,Liechtenstein,423,Alpmobile/Tele2
-295,661,299,665,li,Liechtenstein,423,Telna
-246,582,02,47,lt,Lithuania,370,Bite
-246,582,05,95,lt,Lithuania,370,LTG
-246,582,06,111,lt,Lithuania,370,Mediafon
-246,582,299,665,lt,Lithuania,370,SkyCall
-246,582,03,63,lt,Lithuania,370,Tele2
-246,582,299,665,lt,Lithuania,370,Teletel
-246,582,01,31,lt,Lithuania,370,Telia
-270,624,10,271,lu,Luxembourg,352,Blue Communications
-270,624,299,665,lu,Luxembourg,352,Bouygues Telecom
-270,624,81,2079,lu,Luxembourg,352,e-LUX Mobile
-270,624,299,665,lu,Luxembourg,352,Eltrona
-270,624,999,2457,lu,Luxembourg,352,Fix Line
-270,624,05,95,lu,Luxembourg,352,Luxembourg Online
-270,624,299,665,lu,Luxembourg,352,MTX Connect
-270,624,99,2463,lu,Luxembourg,352,Orange
-270,624,01,31,lu,Luxembourg,352,Post
-270,624,77,1919,lu,Luxembourg,352,Tango
-455,1109,01,31,mo,Macao,853,C.T.M. TELEMOVEL+
-455,1109,04,79,mo,Macao,853,C.T.M. TELEMOVEL+
-455,1109,02,47,mo,Macao,853,China Telecom
-455,1109,05,95,mo,Macao,853,Hutchison Telephone Co. Ltd
-455,1109,03,63,mo,Macao,853,Hutchison Telephone Co. Ltd
-455,1109,06,111,mo,Macao,853,Smartone Mobile
-455,1109,00,15,mo,Macao,853,Smartone Mobile
-646,1606,01,31,mg,Madagascar,261,Airtel
-646,1606,299,665,mg,Madagascar,261,Bip
-646,1606,02,47,mg,Madagascar,261,Orange
-646,1606,03,63,mg,Madagascar,261,Sacel
-646,1606,04,79,mg,Madagascar,261,Telma
-650,1616,10,271,mw,Malawi,265,Airtel
-650,1616,01,31,mw,Malawi,265,TNM
-502,1282,156,342,my,Malaysia,60,Altel Communications
-502,1282,01,31,my,Malaysia,60,Art900
-502,1282,14,335,my,Malaysia,60,Telekom Malaysia
-502,1282,11,287,my,Malaysia,60,Telekom Malaysia
-502,1282,151,337,my,Malaysia,60,Baraka Telecom Sdn Bhd
-502,1282,19,415,my,Malaysia,60,Celcom
-502,1282,13,319,my,Malaysia,60,Celcom
-502,1282,198,408,my,Malaysia,60,Celcom
-502,1282,10,271,my,Malaysia,60,DiGi
-502,1282,16,367,my,Malaysia,60,DiGi
-502,1282,20,527,my,Malaysia,60,Electcoms Wireless Sdn Bhd
-502,1282,999,2457,my,Malaysia,60,Fix Line
-502,1282,299,665,my,Malaysia,60,MKN
-502,1282,17,383,my,Malaysia,60,Maxis
-502,1282,12,303,my,Malaysia,60,Maxis
-502,1282,299,665,my,Malaysia,60,Maxis Broadband
-502,1282,299,665,my,Malaysia,60,OCESB
-502,1282,299,665,my,Malaysia,60,REDtone Mobile
-502,1282,299,665,my,Malaysia,60,REDtone
-502,1282,155,341,my,Malaysia,60,Samata Communications Sdn Bhd
-502,1282,154,340,my,Malaysia,60,TT dotCom
-502,1282,299,665,my,Malaysia,60,TT dotCom
-502,1282,150,336,my,Malaysia,60,Tune Talk
-502,1282,18,399,my,Malaysia,60,U Mobile
-502,1282,153,339,my,Malaysia,60,Webe Digital
-502,1282,195,405,my,Malaysia,60,XOX Com
-502,1282,299,665,my,Malaysia,60,Y-Max
-502,1282,152,338,my,Malaysia,60,Yes
-472,1138,01,31,mv,Maldives,960,Dhiraagu/C&W
-472,1138,02,47,mv,Maldives,960,Ooredo/Wataniya
-610,1552,01,31,ml,Mali,223,Malitel
-610,1552,02,47,ml,Mali,223,Orange
-610,1552,03,63,ml,Mali,223,Telecel
-278,632,01,31,mt,Malta,356,Vodafone
-278,632,999,2457,mt,Malta,356,Fix Line
-278,632,21,543,mt,Malta,356,GO Mobile
-278,632,30,783,mt,Malta,356,GO Mobile
-278,632,77,1919,mt,Malta,356,Melita
-551,1361,299,665,mh,Marshall Islands,692,Failed Calls
-551,1361,299,665,mh,Marshall Islands,692,MINTA
-340,832,12,303,mq,Martinique,596,UTS Caraibe
-609,1545,02,47,mr,Mauritania,222,Chinguitel
-609,1545,01,31,mr,Mauritania,222,Mattel
-609,1545,10,271,mr,Mauritania,222,Mauritel
-617,1559,03,63,mu,Mauritius,230,Chili
-617,1559,02,47,mu,Mauritius,230,Chili
-617,1559,10,271,mu,Mauritius,230,Emtel
-617,1559,01,31,mu,Mauritius,230,my.t mobile
-647,1607,01,31,yt,Mayotte,262,Maore Mobile
-647,1607,10,271,yt,Mayotte,262,SFR
-334,820,050,80,mx,Mexico,52,AT&T/IUSACell
-334,820,040,64,mx,Mexico,52,AT&T/IUSACell
-334,820,05,95,mx,Mexico,52,AT&T/IUSACell
-334,820,04,79,mx,Mexico,52,AT&T/IUSACell
-334,820,50,1295,mx,Mexico,52,AT&T/IUSACell
-334,820,03,63,mx,Mexico,52,Movistar/Pegaso
-334,820,030,48,mx,Mexico,52,Movistar/Pegaso
-334,820,090,144,mx,Mexico,52,NEXTEL
-334,820,010,16,mx,Mexico,52,NEXTEL
-334,820,01,31,mx,Mexico,52,NEXTEL
-334,820,09,159,mx,Mexico,52,NEXTEL
-334,820,070,112,mx,Mexico,52,Operadora Unefon SA de CV
-334,820,080,128,mx,Mexico,52,Operadora Unefon SA de CV
-334,820,060,96,mx,Mexico,52,SAI PCS
-334,820,020,32,mx,Mexico,52,TelCel/America Movil
-334,820,02,47,mx,Mexico,52,TelCel/America Movil
-550,1360,01,31,fm,Micronesia,691,FSM Telecommunications Corp.
-259,601,04,79,md,Moldova,373,Eventis Mobile
-259,601,03,63,md,Moldova,373,Unite
-259,601,02,47,md,Moldova,373,Moldcell
-259,601,01,31,md,Moldova,373,Orange
-259,601,03,63,md,Moldova,373,Unite
-259,601,99,2463,md,Moldova,373,Unite
-259,601,05,95,md,Moldova,373,Unite
-212,530,10,271,mc,Monaco,377,Monaco Telecom
-212,530,01,31,mc,Monaco,377,Monaco Telecom
-428,1064,98,2447,mn,Mongolia,976,G-Mobile Corporation Ltd
-428,1064,99,2463,mn,Mongolia,976,Mobicom
-428,1064,91,2335,mn,Mongolia,976,Skytel Co. Ltd
-428,1064,00,15,mn,Mongolia,976,Skytel Co. Ltd
-428,1064,88,2191,mn,Mongolia,976,Unitel
-297,663,03,63,me,Montenegro,382,Mtel
-297,663,02,47,me,Montenegro,382,Telekom / T-mobile
-297,663,01,31,me,Montenegro,382,Telenor
-354,852,860,2144,ms,Montserrat,1664,Cable & Wireless
-604,1540,04,79,ma,Morocco,212,Al Houria Telecom
-604,1540,99,2463,ma,Morocco,212,Al Houria Telecom
-604,1540,01,31,ma,Morocco,212,IAM
-604,1540,06,111,ma,Morocco,212,IAM
-604,1540,02,47,ma,Morocco,212,inwi
-604,1540,05,95,ma,Morocco,212,inwi
-604,1540,00,15,ma,Morocco,212,Orange
-643,1603,03,63,mz,Mozambique,258,Movitel
-643,1603,01,31,mz,Mozambique,258,TMCEL
-643,1603,04,79,mz,Mozambique,258,Vodacom
-414,1044,999,2457,mm,Myanmar,95,Fix Line (Myanmar
-414,1044,01,31,mm,Myanmar,95,Myanmar Post & Teleco.
-414,1044,09,159,mm,Myanmar,95,Mytel (Myanmar
-414,1044,05,95,mm,Myanmar,95,Oreedoo
-414,1044,06,111,mm,Myanmar,95,Telenor
-649,1609,299,665,na,Namibia,264,Demshi
-649,1609,01,31,na,Namibia,264,MTC
-649,1609,02,47,na,Namibia,264,Switch/Nam. Telec.
-649,1609,03,63,na,Namibia,264,TN Mobile
-429,1065,999,2457,np,Nepal,977,Fix Line
-429,1065,02,47,np,Nepal,977,Ncell
-429,1065,01,31,np,Nepal,977,NT Mobile / Namaste
-429,1065,04,79,np,Nepal,977,Smart Cell
-204,516,14,335,nl,Netherlands,31,6GMOBILE BV
-204,516,299,665,nl,Netherlands,31,88 mobile
-204,516,299,665,nl,Netherlands,31,AGMS
-204,516,30,783,nl,Netherlands,31,ASPIDER Solutions
-204,516,299,665,nl,Netherlands,31,Belcentrale
-204,516,299,665,nl,Netherlands,31,BodyTrace
-204,516,299,665,nl,Netherlands,31,Combird Mobile
-204,516,299,665,nl,Netherlands,31,Dean Mobile
-204,516,299,665,nl,Netherlands,31,Eazit
-204,516,05,95,nl,Netherlands,31,ElephantTalk
-204,516,299,665,nl,Netherlands,31,EziMobile
-204,516,999,2457,nl,Netherlands,31,Fix Line
-204,516,299,665,nl,Netherlands,31,interactive digital media / IDM
-204,516,17,383,nl,Netherlands,31,Intercity Mobile Communications BV
-204,516,00,15,nl,Netherlands,31,Intovoice
-204,516,299,665,nl,Netherlands,31,KeenMobile
-204,516,23,575,nl,Netherlands,31,KORE
-204,516,08,143,nl,Netherlands,31,KPN
-204,516,10,271,nl,Netherlands,31,KPN
-204,516,69,1695,nl,Netherlands,31,KPN
-204,516,12,303,nl,Netherlands,31,KPN
-204,516,08,143,nl,Netherlands,31,KPN
-204,516,12,303,nl,Netherlands,31,KPN/Telfort
-204,516,27,639,nl,Netherlands,31,L-mobi
-204,516,28,655,nl,Netherlands,31,Lancelot
-204,516,98,2447,nl,Netherlands,31,Lancelot
-204,516,09,159,nl,Netherlands,31,Lycamobile
-204,516,63,1599,nl,Netherlands,31,MessageBird
-204,516,299,665,nl,Netherlands,31,mGage
-204,516,299,665,nl,Netherlands,31,Motto
-204,516,07,127,nl,Netherlands,31,Move / Teleena
-204,516,06,111,nl,Netherlands,31,Vectone Mobile
-204,516,299,665,nl,Netherlands,31,Okta8
-204,516,299,665,nl,Netherlands,31,Premium Routing
-204,516,24,591,nl,Netherlands,31,Private Mobility
-204,516,21,543,nl,Netherlands,31,ProRail
-204,516,299,665,nl,Netherlands,31,Redworks
-204,516,26,623,nl,Netherlands,31,SpeakUp
-204,516,98,2447,nl,Netherlands,31,T-Mobile
-204,516,02,47,nl,Netherlands,31,T-Mobile
-204,516,20,527,nl,Netherlands,31,T-Mobile
-204,516,16,367,nl,Netherlands,31,T-Mobile
-204,516,20,527,nl,Netherlands,31,T-mobile/former Orange
-204,516,02,47,nl,Netherlands,31,Tele2
-204,516,29,671,nl,Netherlands,31,Tismi
-204,516,33,831,nl,Netherlands,31,Truphone
-204,516,68,1679,nl,Netherlands,31,Unify Mobile
-204,516,299,665,nl,Netherlands,31,Vectone Mobile
-204,516,04,79,nl,Netherlands,31,Vodafone
-204,516,03,63,nl,Netherlands,31,Voiceworks Mobile
-204,516,15,351,nl,Netherlands,31,Ziggo
-204,516,18,399,nl,Netherlands,31,Ziggo Services
-362,866,630,1584,an,Netherlands Antilles,599,Cingular Wireless
-362,866,51,1311,an,Netherlands Antilles,599,TELCELL GSM
-362,866,91,2335,an,Netherlands Antilles,599,SETEL GSM
-362,866,951,2385,an,Netherlands Antilles,599,UTS Wireless
-546,1350,01,31,nc,New Caledonia,687,OPT Mobilis
-530,1328,28,655,nz,New Zealand,64,2degrees
-530,1328,999,2457,nz,New Zealand,64,Fix Line
-530,1328,05,95,nz,New Zealand,64,Spark Mobile
-530,1328,02,47,nz,New Zealand,64,Spark Mobile
-530,1328,04,79,nz,New Zealand,64,Telstra
-530,1328,24,591,nz,New Zealand,64,2degrees
-530,1328,01,31,nz,New Zealand,64,Vodafone
-530,1328,03,63,nz,New Zealand,64,Walker Wireless Ltd.
-710,1808,21,543,ni,Nicaragua,505,Empresa Nicaraguense de Telecomunicaciones SA (ENITEL)
-710,1808,999,2457,ni,Nicaragua,505,Fix Line
-710,1808,30,783,ni,Nicaragua,505,Movistar
-710,1808,73,1855,ni,Nicaragua,505,Claro
-614,1556,02,47,ne,Niger,227,Airtel
-614,1556,03,63,ne,Niger,227,Moov
-614,1556,01,31,ne,Niger,227,Niger Telecoms
-614,1556,04,79,ne,Niger,227,Orange
-621,1569,60,1551,ng,Nigeria,234,9mobile
-621,1569,20,527,ng,Nigeria,234,Airtel
-621,1569,299,665,ng,Nigeria,234,Alpha Technologies
-621,1569,50,1295,ng,Nigeria,234,Glo Mobile
-621,1569,30,783,ng,Nigeria,234,MTN
-621,1569,40,1039,ng,Nigeria,234,ntel
-621,1569,27,639,ng,Nigeria,234,Smile
-621,1569,99,2463,ng,Nigeria,234,Starcomms
-621,1569,01,31,ng,Nigeria,234,Visafone
-621,1569,25,607,ng,Nigeria,234,Visafone
-621,1569,299,665,ng,Nigeria,234,Zodafones
-555,1365,01,31,nu,Niue,683,Niue Telecom
-467,1127,299,665,kp,North Korea,850,Failed Calls
-467,1127,299,665,kp,North Korea,850,Kangsung Net
-467,1127,192,402,kp,North Korea,850,Koryolink
-467,1127,192,402,kp,North Korea,850,Koryolink
-467,1127,193,403,kp,North Korea,850,Sun Net
-294,660,02,47,mk,North Macedonia,389,A1
-294,660,03,63,mk,North Macedonia,389,A1
-294,660,75,1887,mk,North Macedonia,389,A1
-294,660,299,665,mk,North Macedonia,389,Failed Calls
-294,660,299,665,mk,North Macedonia,389,LATRON
-294,660,04,79,mk,North Macedonia,389,Lycamobile
-294,660,11,287,mk,North Macedonia,389,Mobik
-294,660,02,47,mk,North Macedonia,389,A1
-294,660,299,665,mk,North Macedonia,389,Telekabel
-294,660,01,31,mk,North Macedonia,389,Telekom
-294,660,03,63,mk,North Macedonia,389,VIP Mobile
-242,578,22,559,no,Norway,47,Altibox Mobil
-242,578,21,543,no,Norway,47,BANE NOR
-242,578,20,527,no,Norway,47,BANE NOR
-242,578,299,665,no,Norway,47,bigblu
-242,578,299,665,no,Norway,47,Chilimobil
-242,578,09,159,no,Norway,47,Com4
-242,578,15,351,no,Norway,47,eRate
-242,578,999,2457,no,Norway,47,Fix Line
-242,578,299,665,no,Norway,47,GlobalConnect
-242,578,299,665,no,Norway,47,Ibidium
-242,578,14,335,no,Norway,47,ICE
-242,578,299,665,no,Norway,47,intility
-242,578,16,367,no,Norway,47,Iristel
-242,578,299,665,no,Norway,47,JetNett
-242,578,23,575,no,Norway,47,Lycamobile
-242,578,05,95,no,Norway,47,Network Norway
-242,578,05,95,no,Norway,47,Altibox Mobil
-242,578,299,665,no,Norway,47,NextGenTel
-242,578,10,271,no,Norway,47,Nkom
-242,578,299,665,no,Norway,47,Nodnett
-242,578,06,111,no,Norway,47,ICE
-242,578,299,665,no,Norway,47,Puzzel
-242,578,299,665,no,Norway,47,Sierra Wireless
-242,578,299,665,no,Norway,47,Svea
-242,578,08,143,no,Norway,47,TDC Mobil A/S
-242,578,299,665,no,Norway,47,Telavox
-242,578,04,79,no,Norway,47,Tele2
-242,578,12,303,no,Norway,47,Telenor
-242,578,01,31,no,Norway,47,Telenor
-242,578,03,63,no,Norway,47,Teletopia
-242,578,08,143,no,Norway,47,Telia / NetCom
-242,578,02,47,no,Norway,47,Telia / NetCom
-242,578,299,665,no,Norway,47,unifon
-242,578,017,23,no,Norway,47,Ventelo AS
-242,578,07,127,no,Norway,47,Ventelo AS
-422,1058,03,63,om,Oman,968,Nawras
-422,1058,02,47,om,Oman,968,Oman Mobile/GTO
-410,1040,299,665,pk,Pakistan,92,Failed Calls
-410,1040,08,143,pk,Pakistan,92,Instaphone
-410,1040,01,31,pk,Pakistan,92,Jazz
-410,1040,07,127,pk,Pakistan,92,Jazz
-410,1040,05,95,pk,Pakistan,92,SCOM
-410,1040,06,111,pk,Pakistan,92,Telenor
-410,1040,03,63,pk,Pakistan,92,Ufone
-410,1040,299,665,pk,Pakistan,92,Warid
-410,1040,04,79,pk,Pakistan,92,Zong
-552,1362,80,2063,pw,Palau,680,Palau Mobile Corp. (PMC) (Palau
-552,1362,01,31,pw,Palau,680,Palau National Communications Corp. (PNCC) (Palau
-552,1362,02,47,pw,Palau,680,PECI/PalauTel (Palau
-425,1061,05,95,ps,Palestinian Territory,970,Jawwal
-425,1061,06,111,ps,Palestinian Territory,970,Ooredoo
-714,1812,01,31,pa,Panama,507,Cable & W./Mas Movil
-714,1812,03,63,pa,Panama,507,Claro
-714,1812,04,79,pa,Panama,507,Digicel
-714,1812,999,2457,pa,Panama,507,Fix Line
-714,1812,020,32,pa,Panama,507,Movistar
-714,1812,02,47,pa,Panama,507,Movistar
-537,1335,03,63,pg,Papua New Guinea,675,Digicel
-537,1335,999,2457,pg,Papua New Guinea,675,Fix Line
-537,1335,02,47,pg,Papua New Guinea,675,GreenCom PNG Ltd
-537,1335,01,31,pg,Papua New Guinea,675,Pacific Mobile
-744,1860,02,47,py,Paraguay,595,Claro/Hutchison
-744,1860,03,63,py,Paraguay,595,Compa
-744,1860,01,31,py,Paraguay,595,Hola/VOX
-744,1860,05,95,py,Paraguay,595,TIM/Nucleo/Personal
-744,1860,04,79,py,Paraguay,595,Tigo/Telecel
-716,1814,20,527,pe,Peru,51,Claro /Amer.Mov./TIM
-716,1814,10,271,pe,Peru,51,Claro /Amer.Mov./TIM
-716,1814,02,47,pe,Peru,51,GlobalStar
-716,1814,01,31,pe,Peru,51,GlobalStar
-716,1814,06,111,pe,Peru,51,Movistar
-716,1814,07,127,pe,Peru,51,Nextel
-716,1814,17,383,pe,Peru,51,Nextel
-716,1814,15,351,pe,Peru,51,Viettel Mobile
-515,1301,999,2457,ph,Philippines,63,Fix Line
-515,1301,02,47,ph,Philippines,63,Globe Telecom
-515,1301,01,31,ph,Philippines,63,Globe Telecom
-515,1301,88,2191,ph,Philippines,63,Next Mobile
-515,1301,18,399,ph,Philippines,63,RED Mobile/Cure
-515,1301,03,63,ph,Philippines,63,Smart
-515,1301,05,95,ph,Philippines,63,SUN/Digitel
-260,608,299,665,pl,Poland,48,3S
-260,608,04,79,pl,Poland,48,Aero2
-260,608,16,367,pl,Poland,48,Aero2
-260,608,15,351,pl,Poland,48,Aero2
-260,608,17,383,pl,Poland,48,Aero2
-260,608,17,383,pl,Poland,48,Aero2 SP.
-260,608,48,1167,pl,Poland,48,Agile Telecom
-260,608,18,399,pl,Poland,48,AMD Telecom
-260,608,299,665,pl,Poland,48,Benemen
-260,608,299,665,pl,Poland,48,BSG
-260,608,38,911,pl,Poland,48,CallFreedom Sp. z o.o.
-260,608,299,665,pl,Poland,48,Caritas Laczy
-260,608,299,665,pl,Poland,48,Cludo
-260,608,32,815,pl,Poland,48,Compatel
-260,608,12,303,pl,Poland,48,Cyfrowy Polsat
-260,608,08,143,pl,Poland,48,e-Telko
-260,608,41,1055,pl,Poland,48,EZ Mobile
-260,608,999,2457,pl,Poland,48,Fix Line
-260,608,299,665,pl,Poland,48,I.M. Consulting
-260,608,299,665,pl,Poland,48,Inea
-260,608,299,665,pl,Poland,48,IZZI
-260,608,299,665,pl,Poland,48,JMDI J. Maleszko
-260,608,299,665,pl,Poland,48,Klucz Mobile
-260,608,299,665,pl,Poland,48,lajt mobile
-260,608,299,665,pl,Poland,48,LoVo
-260,608,09,159,pl,Poland,48,Lycamobile
-260,608,49,1183,pl,Poland,48,Messagebird
-260,608,299,665,pl,Poland,48,Metro Mobile
-260,608,299,665,pl,Poland,48,Mobile Vikings
-260,608,299,665,pl,Poland,48,Mobiledata
-260,608,42,1071,pl,Poland,48,MobiWeb
-260,608,16,367,pl,Poland,48,Mobyland
-260,608,299,665,pl,Poland,48,Moja GSM
-260,608,13,319,pl,Poland,48,Move
-260,608,299,665,pl,Poland,48,multiMOBILE
-260,608,36,879,pl,Poland,48,Mundio Mobile Sp. z o.o.
-260,608,299,665,pl,Poland,48,Nasza Wizja
-260,608,299,665,pl,Poland,48,NAU Mobile
-260,608,299,665,pl,Poland,48,nc+ Mobile
-260,608,19,415,pl,Poland,48,NetBalt
-260,608,07,127,pl,Poland,48,Netia
-260,608,299,665,pl,Poland,48,Next Mobile
-260,608,299,665,pl,Poland,48,NIMBOW
-260,608,11,287,pl,Poland,48,NORDISK Polska
-260,608,27,639,pl,Poland,48,Ntel Solutions
-260,608,03,63,pl,Poland,48,Orange
-260,608,05,95,pl,Poland,48,Orange
-260,608,35,863,pl,Poland,48,PKP
-260,608,98,2447,pl,Poland,48,Play
-260,608,06,111,pl,Poland,48,Play
-260,608,01,31,pl,Poland,48,Plus
-260,608,11,287,pl,Poland,48,Plus
-260,608,97,2431,pl,Poland,48,Politechnika Lodzka Uczelniane
-260,608,90,2319,pl,Poland,48,Polska Spolka Gazownictwa
-260,608,299,665,pl,Poland,48,Polvoice
-260,608,299,665,pl,Poland,48,Pomagacz
-260,608,299,665,pl,Poland,48,Premium Mobile
-260,608,299,665,pl,Poland,48,SAT FILM
-260,608,14,335,pl,Poland,48,Move
-260,608,299,665,pl,Poland,48,SGT
-260,608,47,1151,pl,Poland,48,SMSHIGHWAY
-260,608,299,665,pl,Poland,48,Softelnet
-260,608,34,847,pl,Poland,48,T-Mobile
-260,608,02,47,pl,Poland,48,T-Mobile
-260,608,10,271,pl,Poland,48,T-Mobile
-260,608,14,335,pl,Poland,48,Telco Leaders
-260,608,299,665,pl,Poland,48,Tele GO
-260,608,15,351,pl,Poland,48,Aero2
-260,608,299,665,pl,Poland,48,TeleCube
-260,608,299,665,pl,Poland,48,Telenabler
-260,608,299,665,pl,Poland,48,TELGAM
-260,608,20,527,pl,Poland,48,Tismi
-260,608,299,665,pl,Poland,48,TOYAmobilna
-260,608,22,559,pl,Poland,48,Twilio
-260,608,299,665,pl,Poland,48,UPC
-260,608,299,665,pl,Poland,48,Vectra
-260,608,45,1119,pl,Poland,48,Virgin Mobile
-260,608,45,1119,pl,Poland,48,Virgin Mobile
-260,608,299,665,pl,Poland,48,Vonage
-260,608,39,927,pl,Poland,48,Voxbone / Bandwidth
-268,616,999,2457,pt,Portugal,351,Fix Line
-268,616,04,79,pt,Portugal,351,Lycamobile
-268,616,80,2063,pt,Portugal,351,MEO
-268,616,08,143,pt,Portugal,351,MEO
-268,616,06,111,pt,Portugal,351,MEO
-268,616,03,63,pt,Portugal,351,NOS
-268,616,93,2367,pt,Portugal,351,NOS
-268,616,299,665,pt,Portugal,351,NOWO
-268,616,299,665,pt,Portugal,351,Oni
-268,616,03,63,pt,Portugal,351,NOS
-268,616,07,127,pt,Portugal,351,NOS
-268,616,91,2335,pt,Portugal,351,Vodafone
-268,616,01,31,pt,Portugal,351,Vodafone
-330,816,11,287,pr,Puerto Rico,,Puerto Rico Telephone Company Inc. (PRTC)
-330,816,110,272,pr,Puerto Rico,,Puerto Rico Telephone Company Inc. (PRTC)
-427,1063,01,31,qa,Qatar,974,Ooredoo/Qtel
-427,1063,02,47,qa,Qatar,974,Vodafone
-647,1607,03,63,re,Reunion,262,Only
-647,1607,02,47,re,Reunion,262,Only
-647,1607,00,15,re,Reunion,262,Orange
-647,1607,10,271,re,Reunion,262,SFR
-647,1607,04,79,re,Reunion,262,ZEOP Mobile
-226,550,05,95,ro,Romania,40,Digi Mobil
-226,550,11,287,ro,Romania,40,Enigma Systems
-226,550,299,665,ro,Romania,40,Iristel
-226,550,16,367,ro,Romania,40,Lycamobile
-226,550,10,271,ro,Romania,40,Orange
-226,550,02,47,ro,Romania,40,Romtelecom SA
-226,550,03,63,ro,Romania,40,Telekom
-226,550,02,47,ro,Romania,40,Telekom
-226,550,06,111,ro,Romania,40,Telekom Romania
-226,550,01,31,ro,Romania,40,Vodafone
-226,550,04,79,ro,Romania,40,Telekom Romania
-250,592,299,665,ru,Russia,79,A-Mobile
-250,592,299,665,ru,Russia,79,Antares
-250,592,299,665,ru,Russia,79,Aquafon
-250,592,299,665,ru,Russia,79,Arktur
-250,592,299,665,ru,Russia,79,Astran
-250,592,299,665,ru,Russia,79,ASVT
-250,592,299,665,ru,Russia,79,Aurora Telecom
-250,592,99,2463,ru,Russia,79,Beeline
-250,592,99,2463,ru,Russia,79,BeeLine/VimpelCom
-250,592,28,655,ru,Russia,79,BeeLine/VimpelCom
-250,592,299,665,ru,Russia,79,Beliton
-250,592,299,665,ru,Russia,79,BIT-CENTR
-250,592,299,665,ru,Russia,79,Center 2M
-250,592,299,665,ru,Russia,79,Cifra 1
-250,592,299,665,ru,Russia,79,CountryCom
-250,592,10,271,ru,Russia,79,DTC/Don Telecom
-250,592,299,665,ru,Russia,79,ECO Networks
-250,592,299,665,ru,Russia,79,Elemte
-250,592,299,665,ru,Russia,79,ER-Telecom
-250,592,299,665,ru,Russia,79,Failed Calls
-250,592,999,2457,ru,Russia,79,Fix Line
-250,592,299,665,ru,Russia,79,Gazprom Telecom
-250,592,48,1167,ru,Russia,79,Global Telecom
-250,592,55,1375,ru,Russia,79,Glonass
-250,592,299,665,ru,Russia,79,GLONASS MOBILE
-250,592,299,665,ru,Russia,79,Integral
-250,592,299,665,ru,Russia,79,Internod
-250,592,299,665,ru,Russia,79,Intersvyaz-2
-250,592,34,847,ru,Russia,79,Krymtelecom
-250,592,13,319,ru,Russia,79,Kuban GSM
-250,592,299,665,ru,Russia,79,KvatroPlus
-250,592,299,665,ru,Russia,79,Lardex
-250,592,54,1359,ru,Russia,79,Letai Mobile
-250,592,299,665,ru,Russia,79,Lycamobile
-250,592,57,1407,ru,Russia,79,Matrix Mobile
-250,592,299,665,ru,Russia,79,Media-Market
-250,592,02,47,ru,Russia,79,Megafon
-250,592,299,665,ru,Russia,79,Metro-Pei
-250,592,299,665,ru,Russia,79,MGTS
-250,592,299,665,ru,Russia,79,Miatel
-250,592,299,665,ru,Russia,79,MOSTELECOM
-250,592,35,863,ru,Russia,79,Motiv
-250,592,299,665,ru,Russia,79,MSN Telekom
-250,592,01,31,ru,Russia,79,MTS
-250,592,42,1071,ru,Russia,79,MTT
-250,592,03,63,ru,Russia,79,NCC
-250,592,299,665,ru,Russia,79,NCI
-250,592,299,665,ru,Russia,79,NETBYNET
-250,592,299,665,ru,Russia,79,New Mobile Communications
-250,592,16,367,ru,Russia,79,NTC
-250,592,299,665,ru,Russia,79,OBIT
-250,592,19,415,ru,Russia,79,OJSC Altaysvyaz
-250,592,299,665,ru,Russia,79,Orange Business Services
-250,592,299,665,ru,Russia,79,PIN
-250,592,299,665,ru,Russia,79,Plintron
-250,592,92,2351,ru,Russia,79,Printelefone
-250,592,299,665,ru,Russia,79,Quantech
-250,592,299,665,ru,Russia,79,RECONN
-250,592,299,665,ru,Russia,79,Reteyl Innovatsii
-250,592,299,665,ru,Russia,79,Sberbank-Telecom
-250,592,33,831,ru,Russia,79,SEVTELECOM
-250,592,04,79,ru,Russia,79,Sibchallenge
-250,592,299,665,ru,Russia,79,Sim Sim
-250,592,299,665,ru,Russia,79,Sintonik
-250,592,299,665,ru,Russia,79,Sky Networks
-250,592,09,159,ru,Russia,79,Skylink
-250,592,299,665,ru,Russia,79,SkyNet
-250,592,299,665,ru,Russia,79,Sonet
-250,592,299,665,ru,Russia,79,Sprint
-250,592,299,665,ru,Russia,79,Start
-250,592,44,1103,ru,Russia,79,StavTelesot
-250,592,299,665,ru,Russia,79,SunSIM
-250,592,299,665,ru,Russia,79,Surgutneftegaz
-250,592,299,665,ru,Russia,79,Svyazresurs-Mobile
-250,592,299,665,ru,Russia,79,Tander
-250,592,20,527,ru,Russia,79,Tele2
-250,592,12,303,ru,Russia,79,Tele2
-250,592,20,527,ru,Russia,79,Tele2/ECC/Volgogr.
-250,592,93,2367,ru,Russia,79,Telecom XXL
-250,592,299,665,ru,Russia,79,Tinkoff Mobile
-250,592,299,665,ru,Russia,79,TMT
-250,592,299,665,ru,Russia,79,TransMobilCom
-250,592,299,665,ru,Russia,79,TRASTEL
-250,592,299,665,ru,Russia,79,TRN-telecom
-250,592,299,665,ru,Russia,79,TTK
-250,592,299,665,ru,Russia,79,TTK-Svyaz
-250,592,299,665,ru,Russia,79,TVE
-250,592,299,665,ru,Russia,79,UnitTelecom
-250,592,299,665,ru,Russia,79,Unycel
-250,592,39,927,ru,Russia,79,UralTel
-250,592,17,383,ru,Russia,79,UralTel
-250,592,299,665,ru,Russia,79,Vainah Telecom
-250,592,299,665,ru,Russia,79,ViKom
-250,592,299,665,ru,Russia,79,Virgin Connect
-250,592,299,665,ru,Russia,79,Voentelecom
-250,592,77,1919,ru,Russia,79,Glonass
-250,592,60,1551,ru,Russia,79,Volna Mobile
-250,592,299,665,ru,Russia,79,VTB Mobile
-250,592,32,815,ru,Russia,79,Win Mobile
-250,592,05,95,ru,Russia,79,Tele2/ECC/Volgogr.
-250,592,11,287,ru,Russia,79,Yota
-250,592,15,351,ru,Russia,79,ZAO SMARTS
-250,592,07,127,ru,Russia,79,ZAO SMARTS
-635,1589,13,319,rw,Rwanda,250,Airtel
-635,1589,14,335,rw,Rwanda,250,Airtel
-635,1589,10,271,rw,Rwanda,250,MTN
-658,1624,299,665,sh,Saint Helena and Ascension and Tristan da Cunha,290,Failed Calls
-356,854,110,272,kn,Saint Kitts and Nevis,1869,Cable & Wireless
-356,854,50,1295,kn,Saint Kitts and Nevis,1869,Digicel
-356,854,70,1807,kn,Saint Kitts and Nevis,1869,UTS Cariglobe
-358,856,110,272,lc,Saint Lucia,1758,Cable & Wireless
-358,856,30,783,lc,Saint Lucia,1758,Cingular Wireless
-358,856,50,1295,lc,Saint Lucia,1758,Digicel (St Lucia) Limited
-308,776,01,31,pm,Saint Pierre and Miquelon,508,Ameris
-360,864,110,272,vc,Saint Vincent and the Grenadines,1784,C & W
-360,864,10,271,vc,Saint Vincent and the Grenadines,1784,Cingular
-360,864,100,256,vc,Saint Vincent and the Grenadines,1784,Cingular
-360,864,050,80,vc,Saint Vincent and the Grenadines,1784,Digicel
-360,864,70,1807,vc,Saint Vincent and the Grenadines,1784,Digicel
-549,1353,999,2457,ws,Samoa,685,Fix Line
-549,1353,27,639,ws,Samoa,685,Samoatel Mobile
-549,1353,01,31,ws,Samoa,685,Telecom Samoa Cellular Ltd.
-292,658,01,31,sm,San Marino,378,Prima
-292,658,299,665,sm,San Marino,378,TeleneT
-626,1574,01,31,st,Sao Tome and Principe,239,CSTmovel
-626,1574,02,47,st,Sao Tome and Principe,239,Unitel
-901,2305,14,335,n/a,Satellite Networks,870,AeroMobile
-901,2305,11,287,n/a,Satellite Networks,870,InMarSAT
-901,2305,12,303,n/a,Satellite Networks,870,Maritime Communications Partner AS
-901,2305,05,95,n/a,Satellite Networks,870,Thuraya Satellite
-420,1056,07,127,sa,Saudi Arabia,966,Zain
-420,1056,03,63,sa,Saudi Arabia,966,Etihad/Etisalat/Mobily
-420,1056,06,111,sa,Saudi Arabia,966,Lebara Mobile
-420,1056,01,31,sa,Saudi Arabia,966,STC/Al Jawal
-420,1056,05,95,sa,Saudi Arabia,966,Virgin Mobile
-420,1056,04,79,sa,Saudi Arabia,966,Zain
-608,1544,299,665,sn,Senegal,221,2s Mobile
-608,1544,03,63,sn,Senegal,221,Expresso
-608,1544,02,47,sn,Senegal,221,Free
-608,1544,04,79,sn,Senegal,221,HAYO
-608,1544,01,31,sn,Senegal,221,Orange
-608,1544,299,665,sn,Senegal,221,Promobile
-220,544,299,665,rs,Serbia,381,Failed Calls
-220,544,11,287,rs,Serbia,381,Globaltel
-220,544,03,63,rs,Serbia,381,MTS
-220,544,01,31,rs,Serbia,381,Telenor
-220,544,02,47,rs,Serbia,381,Telenor
-220,544,05,95,rs,Serbia,381,VIP
-220,544,20,527,rs,Serbia,381,VIP
-633,1587,10,271,sc,Seychelles,248,Airtel
-633,1587,01,31,sc,Seychelles,248,Cable & Wireless
-633,1587,05,95,sc,Seychelles,248,Intelvision
-633,1587,02,47,sc,Seychelles,248,Smartcom
-619,1561,03,63,sl,Sierra Leone,232,Africell
-619,1561,04,79,sl,Sierra Leone,232,Comium
-619,1561,299,665,sl,Sierra Leone,232,IPTel
-619,1561,05,95,sl,Sierra Leone,232,Africell
-619,1561,02,47,sl,Sierra Leone,232,Tigo/Millicom
-619,1561,25,607,sl,Sierra Leone,232,Mobitel
-619,1561,299,665,sl,Sierra Leone,232,Onlime
-619,1561,01,31,sl,Sierra Leone,232,Orange
-619,1561,07,127,sl,Sierra Leone,232,Qcell
-619,1561,299,665,sl,Sierra Leone,232,SierraTel
-525,1317,999,2457,sg,Singapore,65,Fix Line
-525,1317,12,303,sg,Singapore,65,GRID Communications Pte Ltd
-525,1317,03,63,sg,Singapore,65,MobileOne Ltd
-525,1317,02,47,sg,Singapore,65,Singtel
-525,1317,01,31,sg,Singapore,65,Singtel
-525,1317,07,127,sg,Singapore,65,Singtel
-525,1317,06,111,sg,Singapore,65,Starhub
-525,1317,05,95,sg,Singapore,65,Starhub
-231,561,06,111,sk,Slovakia,421,O2
-231,561,05,95,sk,Slovakia,421,Orange
-231,561,07,127,sk,Slovakia,421,Orange
-231,561,01,31,sk,Slovakia,421,Orange
-231,561,15,351,sk,Slovakia,421,Orange
-231,561,03,63,sk,Slovakia,421,Swan / 4ka
-231,561,02,47,sk,Slovakia,421,Telekom
-231,561,04,79,sk,Slovakia,421,Telekom
-231,561,02,47,sk,Slovakia,421,Telekom
-231,561,50,1295,sk,Slovakia,421,Telekom
-231,561,08,143,sk,Slovakia,421,Uniphone
-231,561,299,665,sk,Slovakia,421,Vonage
-231,561,99,2463,sk,Slovakia,421,ZSR
-293,659,40,1039,si,Slovenia,386,A1 / Si.mobil
-293,659,20,527,si,Slovenia,386,Compatel
-293,659,86,2159,si,Slovenia,386,Elektro Gorenjska
-293,659,999,2457,si,Slovenia,386,Fix Line
-293,659,299,665,si,Slovenia,386,HOT mobil
-293,659,299,665,si,Slovenia,386,Me2
-293,659,41,1055,si,Slovenia,386,Mobitel
-293,659,299,665,si,Slovenia,386,Novatel
-293,659,10,271,si,Slovenia,386,Slovenske zeleznice
-293,659,299,665,si,Slovenia,386,SoftNET
-293,659,64,1615,si,Slovenia,386,T-2
-293,659,70,1807,si,Slovenia,386,Telemach / Tusmobil
-540,1344,02,47,sb,Solomon Islands,677,bemobile
-540,1344,10,271,sb,Solomon Islands,677,BREEZE
-540,1344,01,31,sb,Solomon Islands,677,BREEZE
-637,1591,299,665,so,Somalia,252,AirSom
-637,1591,30,783,so,Somalia,252,Golis
-637,1591,19,415,so,Somalia,252,Hormuud
-637,1591,50,1295,so,Somalia,252,Hormuud
-637,1591,60,1551,so,Somalia,252,Nationlink
-637,1591,10,271,so,Somalia,252,Nationlink
-637,1591,299,665,so,Somalia,252,NETCO
-637,1591,70,1807,so,Somalia,252,Onkod
-637,1591,04,79,so,Somalia,252,Somafone
-637,1591,299,665,so,Somalia,252,SomNetworks
-637,1591,71,1823,so,Somalia,252,Somtel
-637,1591,299,665,so,Somalia,252,STG
-637,1591,82,2095,so,Somalia,252,Telcom Mobile
-637,1591,01,31,so,Somalia,252,Telesom
-655,1621,21,543,za,South Africa,27,Cape Town Metropolitan
-655,1621,07,127,za,South Africa,27,Cell C
-655,1621,299,665,za,South Africa,27,Lycamobile
-655,1621,10,271,za,South Africa,27,MTN
-655,1621,12,303,za,South Africa,27,MTN
-655,1621,38,911,za,South Africa,27,Rain
-655,1621,19,415,za,South Africa,27,Rain
-655,1621,73,1855,za,South Africa,27,Rain
-655,1621,74,1871,za,South Africa,27,Rain
-655,1621,06,111,za,South Africa,27,Sentech
-655,1621,02,47,za,South Africa,27,Telkom
-655,1621,05,95,za,South Africa,27,Telkom
-655,1621,01,31,za,South Africa,27,Vodacom
-450,1104,299,665,kr,South Korea,82,Failed Calls
-450,1104,02,47,kr,South Korea,82,olleh / KT
-450,1104,07,127,kr,South Korea,82,KT Powertel
-450,1104,06,111,kr,South Korea,82,LG U+
-450,1104,08,143,kr,South Korea,82,olleh / KT
-450,1104,02,47,kr,South Korea,82,olleh / KT
-450,1104,04,79,kr,South Korea,82,olleh / KT
-450,1104,03,63,kr,South Korea,82,SK Telecom
-450,1104,05,95,kr,South Korea,82,SK Telecom
-450,1104,12,303,kr,South Korea,82,SK Telecom
-450,1104,11,287,kr,South Korea,82,SK Telecom
-659,1625,299,665,ss,South Sudan,,Digitel
-659,1625,299,665,ss,South Sudan,,Failed Calls
-659,1625,03,63,ss,South Sudan,,Gemtel Ltd (South Sudan
-659,1625,02,47,ss,South Sudan,,MTN
-659,1625,04,79,ss,South Sudan,,Network of The World Ltd (NOW) (South Sudan
-659,1625,06,111,ss,South Sudan,,Zain
-214,532,299,665,es,Spain,34,ACN
-214,532,299,665,es,Spain,34,Adamo Telecom
-214,532,36,879,es,Spain,34,Alai
-214,532,02,47,es,Spain,34,Alta Tecnologia en Comunicacions
-214,532,299,665,es,Spain,34,Aurea
-214,532,14,335,es,Spain,34,Avatel Movil
-214,532,22,559,es,Spain,34,Digi.Mobil
-214,532,299,665,es,Spain,34,Billing Financial
-214,532,299,665,es,Spain,34,Bluephone
-214,532,15,351,es,Spain,34,BT Espana SAU
-214,532,18,399,es,Spain,34,Cableuropa SAU (ONO)
-214,532,299,665,es,Spain,34,CloudComms
-214,532,299,665,es,Spain,34,Dialoga
-214,532,22,559,es,Spain,34,Digi.Mobil
-214,532,299,665,es,Spain,34,Dragonet
-214,532,08,143,es,Spain,34,Euskaltel Movil
-214,532,299,665,es,Spain,34,Evolutio
-214,532,999,2457,es,Spain,34,Fix Line
-214,532,20,527,es,Spain,34,fonYou Wireless SL
-214,532,299,665,es,Spain,34,Global
-214,532,299,665,es,Spain,34,GNET
-214,532,32,815,es,Spain,34,ION Mobile
-214,532,34,847,es,Spain,34,ION MOBILE
-214,532,21,543,es,Spain,34,Jazz Telecom SAU
-214,532,299,665,es,Spain,34,Jetnet
-214,532,299,665,es,Spain,34,Lemonvil
-214,532,26,623,es,Spain,34,Lleida
-214,532,25,607,es,Spain,34,Lycamobile
-214,532,25,607,es,Spain,34,Lycamobile
-214,532,17,383,es,Spain,34,mobil R
-214,532,38,911,es,Spain,34,Movistar
-214,532,07,127,es,Spain,34,Movistar
-214,532,05,95,es,Spain,34,Movistar
-214,532,299,665,es,Spain,34,Olephone
-214,532,299,665,es,Spain,34,On Movil
-214,532,299,665,es,Spain,34,Oniti Telecom
-214,532,299,665,es,Spain,34,OperadorsCat
-214,532,11,287,es,Spain,34,Orange
-214,532,21,543,es,Spain,34,Orange
-214,532,03,63,es,Spain,34,Orange
-214,532,09,159,es,Spain,34,Orange
-214,532,299,665,es,Spain,34,Pepephone
-214,532,299,665,es,Spain,34,PTV Telecom movil
-214,532,299,665,es,Spain,34,Quattre
-214,532,17,383,es,Spain,34,R Cable y Telec. Galicia SA
-214,532,299,665,es,Spain,34,Sarenet
-214,532,299,665,es,Spain,34,SEWAN
-214,532,19,415,es,Spain,34,Simyo
-214,532,35,863,es,Spain,34,SUMA movil
-214,532,299,665,es,Spain,34,Suop
-214,532,299,665,es,Spain,34,Syma
-214,532,16,367,es,Spain,34,mobil R
-214,532,299,665,es,Spain,34,Telsome
-214,532,299,665,es,Spain,34,The Telecom Boutique
-214,532,27,639,es,Spain,34,Truphone
-214,532,12,303,es,Spain,34,Venus Movil
-214,532,01,31,es,Spain,34,Vodafone
-214,532,37,895,es,Spain,34,Vodafone
-214,532,06,111,es,Spain,34,Vodafone
-214,532,29,671,es,Spain,34,Yoigo
-214,532,04,79,es,Spain,34,Yoigo
-214,532,23,575,es,Spain,34,Yoigo
-214,532,33,831,es,Spain,34,Yoigo
-214,532,299,665,es,Spain,34,You Mobile
-214,532,10,271,es,Spain,34,Zinnia
-413,1043,05,95,lk,Sri Lanka,94,Airtel
-413,1043,03,63,lk,Sri Lanka,94,Etisalat/Tigo
-413,1043,08,143,lk,Sri Lanka,94,H3G Hutchison
-413,1043,01,31,lk,Sri Lanka,94,Mobitel Ltd.
-413,1043,02,47,lk,Sri Lanka,94,MTN/Dialog
-634,1588,00,15,sd,Sudan,249,Canar Telecom
-634,1588,999,2457,sd,Sudan,249,Fix Line
-634,1588,22,559,sd,Sudan,249,MTN
-634,1588,03,63,sd,Sudan,249,MTN
-634,1588,02,47,sd,Sudan,249,MTN
-634,1588,07,127,sd,Sudan,249,Sudani One
-634,1588,15,351,sd,Sudan,249,Sudani One
-634,1588,05,95,sd,Sudan,249,Canar Telecom
-634,1588,08,143,sd,Sudan,249,Canar Telecom
-634,1588,01,31,sd,Sudan,249,Zain
-634,1588,06,111,sd,Sudan,249,Zain
-746,1862,03,63,sr,Suriname,597,Digicel
-746,1862,999,2457,sr,Suriname,597,Fix Line
-746,1862,01,31,sr,Suriname,597,Telesur
-746,1862,02,47,sr,Suriname,597,Telecommunicatiebedrijf Suriname (TELESUR)
-746,1862,04,79,sr,Suriname,597,UNIQA
-653,1619,02,47,sz,Swaziland,268,Eswatini Mobile
-653,1619,01,31,sz,Swaziland,268,EswatiniTelecom
-653,1619,10,271,sz,Swaziland,268,Swazi MTN
-240,576,16,367,se,Sweden,46,42 Telecom AB
-240,576,35,863,se,Sweden,46,42 Telecom
-240,576,13,319,se,Sweden,46,A3
-240,576,30,783,se,Sweden,46,NextGen Mobile Ltd (CardBoardFish)
-240,576,11,287,se,Sweden,46,Com Hem
-240,576,09,159,se,Sweden,46,Com4
-240,576,32,815,se,Sweden,46,Compatel
-240,576,22,559,se,Sweden,46,EUtel
-240,576,63,1599,se,Sweden,46,Fink Telecom
-240,576,999,2457,se,Sweden,46,Fix Line
-240,576,18,399,se,Sweden,46,Messit / Minicall
-240,576,27,639,se,Sweden,46,Globetouch
-240,576,17,383,se,Sweden,46,Gotanet
-240,576,02,47,se,Sweden,46,3
-240,576,23,575,se,Sweden,46,Infobip
-240,576,36,879,se,Sweden,46,interactive digital media / IDM
-240,576,28,655,se,Sweden,46,LINK Mobility
-240,576,12,303,se,Sweden,46,Lycamobile
-240,576,29,671,se,Sweden,46,MI Carrier Services
-240,576,33,831,se,Sweden,46,Mobile Arts
-240,576,43,1087,se,Sweden,46,MobiWeb
-240,576,25,607,se,Sweden,46,Monty Mobile
-240,576,40,1039,se,Sweden,46,Netmore
-240,576,39,927,se,Sweden,46,Primlight
-240,576,31,799,se,Sweden,46,Rebtel
-240,576,20,527,se,Sweden,46,Sierra Wireless
-240,576,15,351,se,Sweden,46,Sierra Wireless Sweden AB
-240,576,37,895,se,Sweden,46,Sinch
-240,576,45,1119,se,Sweden,46,Spirius
-240,576,10,271,se,Sweden,46,Spring Mobil AB
-240,576,07,127,se,Sweden,46,Tele2
-240,576,05,95,se,Sweden,46,Tele2
-240,576,14,335,se,Sweden,46,Tele2
-240,576,44,1103,se,Sweden,46,Telenabler
-240,576,24,591,se,Sweden,46,Telenor
-240,576,06,111,se,Sweden,46,Telenor
-240,576,42,1071,se,Sweden,46,Telenor Connexion
-240,576,08,143,se,Sweden,46,Telenor
-240,576,04,79,se,Sweden,46,Telenor
-240,576,01,31,se,Sweden,46,Telia
-240,576,03,63,se,Sweden,46,Net 1
-240,576,48,1167,se,Sweden,46,Tismi
-240,576,21,543,se,Sweden,46,Trafikverket
-240,576,26,623,se,Sweden,46,Twilio
-240,576,19,415,se,Sweden,46,Vectone Mobile
-240,576,46,1135,se,Sweden,46,Viahub
-240,576,47,1151,se,Sweden,46,Viatel
-240,576,38,911,se,Sweden,46,Voxbone / Bandwidth
-228,552,58,1423,ch,Switzerland,41,Beeone
-228,552,09,159,ch,Switzerland,41,Comfone
-228,552,05,95,ch,Switzerland,41,Comfone
-228,552,999,2457,ch,Switzerland,41,Fix Line
-228,552,07,127,ch,Switzerland,41,Sunrise
-228,552,66,1647,ch,Switzerland,41,Inovia
-228,552,54,1359,ch,Switzerland,41,Lycamobile
-228,552,69,1695,ch,Switzerland,41,MTEL
-228,552,52,1327,ch,Switzerland,41,Mundio Mobile AG
-228,552,65,1631,ch,Switzerland,41,Nexphone
-228,552,51,1311,ch,Switzerland,41,relario
-228,552,03,63,ch,Switzerland,41,Salt Mobile
-228,552,06,111,ch,Switzerland,41,SBB
-228,552,53,1343,ch,Switzerland,41,Sunrise
-228,552,12,303,ch,Switzerland,41,Sunrise
-228,552,08,143,ch,Switzerland,41,Sunrise
-228,552,02,47,ch,Switzerland,41,Sunrise
-228,552,60,1551,ch,Switzerland,41,Sunrise
-228,552,01,31,ch,Switzerland,41,Swisscom
-228,552,02,47,ch,Switzerland,41,Sunrise
-228,552,62,1583,ch,Switzerland,41,Telecom26
-228,552,70,1807,ch,Switzerland,41,Tismi
-228,552,53,1343,ch,Switzerland,41,upc cablecom GmbH
-228,552,59,1439,ch,Switzerland,41,Vectone Mobile
-417,1047,02,47,sy,Syria,963,MTN/Spacetel
-417,1047,09,159,sy,Syria,963,Syriatel Holdings
-417,1047,01,31,sy,Syria,963,Syriatel Holdings
-466,1126,68,1679,tw,Taiwan,886,ACeS Taiwan - ACeS Taiwan Telecommunications Co Ltd
-466,1126,05,95,tw,Taiwan,886,Asia Pacific Telecom Co. Ltd (APT)
-466,1126,11,287,tw,Taiwan,886,Chunghwa Telecom LDM
-466,1126,92,2351,tw,Taiwan,886,Chunghwa Telecom LDM
-466,1126,02,47,tw,Taiwan,886,Far EasTone
-466,1126,07,127,tw,Taiwan,886,Far EasTone
-466,1126,06,111,tw,Taiwan,886,Far EasTone
-466,1126,03,63,tw,Taiwan,886,Far EasTone
-466,1126,01,31,tw,Taiwan,886,Far EasTone
-466,1126,10,271,tw,Taiwan,886,Global Mobile Corp.
-466,1126,56,1391,tw,Taiwan,886,International Telecom Co. Ltd (FITEL)
-466,1126,88,2191,tw,Taiwan,886,KG Telecom
-466,1126,90,2319,tw,Taiwan,886,T-Star/VIBO
-466,1126,99,2463,tw,Taiwan,886,TransAsia
-466,1126,97,2431,tw,Taiwan,886,Taiwan Cellular
-466,1126,93,2367,tw,Taiwan,886,Mobitai
-466,1126,89,2207,tw,Taiwan,886,T-Star/VIBO
-466,1126,09,159,tw,Taiwan,886,VMAX Telecom Co. Ltd
-436,1078,04,79,tj,Tajikistan,992,Babilon-M
-436,1078,05,95,tj,Tajikistan,992,Bee Line
-436,1078,02,47,tj,Tajikistan,992,CJSC Indigo Tajikistan
-436,1078,12,303,tj,Tajikistan,992,Tcell/JC Somoncom
-436,1078,03,63,tj,Tajikistan,992,Megafon
-436,1078,01,31,tj,Tajikistan,992,Tcell/JC Somoncom
-640,1600,05,95,tz,Tanzania,255,Airtel
-640,1600,08,143,tz,Tanzania,255,Benson Informatics Ltd
-640,1600,06,111,tz,Tanzania,255,Dovetel (T) Ltd
-640,1600,09,159,tz,Tanzania,255,Halotel / Viettel
-640,1600,99,2463,tz,Tanzania,255,Mkulima African Telecommunication
-640,1600,14,335,tz,Tanzania,255,MO Mobile
-640,1600,11,287,tz,Tanzania,255,Smile Communications
-640,1600,07,127,tz,Tanzania,255,Tanzania Telecommunication Corporation
-640,1600,02,47,tz,Tanzania,255,Tigo / MIC
-640,1600,01,31,tz,Tanzania,255,Tri Telecomm. Ltd.
-640,1600,04,79,tz,Tanzania,255,Vodacom
-640,1600,13,319,tz,Tanzania,255,WiAfrica
-640,1600,03,63,tz,Tanzania,255,Zanzibar Telecom / Zantel
-520,1312,20,527,th,Thailand,66,ACeS Thailand - ACeS Regional Services Co Ltd
-520,1312,15,351,th,Thailand,66,ACT Mobile
-520,1312,03,63,th,Thailand,66,AIS/Advanced Info Service
-520,1312,01,31,th,Thailand,66,AIS/Advanced Info Service
-520,1312,23,575,th,Thailand,66,Digital Phone Co.
-520,1312,999,2457,th,Thailand,66,Fix Line
-520,1312,00,15,th,Thailand,66,Hutch/CAT CDMA
-520,1312,05,95,th,Thailand,66,Total Access (DTAC)
-520,1312,18,399,th,Thailand,66,Total Access (DTAC)
-520,1312,04,79,th,Thailand,66,True Move/Orange
-520,1312,99,2463,th,Thailand,66,True Move/Orange
-615,1557,03,63,tg,Togo,228,Atlantique Telecom / Moov
-615,1557,02,47,tg,Togo,228,Telecel/MOOV
-615,1557,03,63,tg,Togo,228,Telecel/MOOV
-615,1557,01,31,tg,Togo,228,Togo Cellulaire / TogoCel
-539,1337,88,2191,to,Tonga,676,Digicel
-539,1337,999,2457,to,Tonga,676,Fix Line
-539,1337,43,1087,to,Tonga,676,Shoreline Communication
-539,1337,01,31,to,Tonga,676,Tonga Communications
-374,884,12,303,tt,Trinidad and Tobago,1868,Bmobile/TSTT
-374,884,120,288,tt,Trinidad and Tobago,1868,Bmobile/TSTT
-374,884,130,304,tt,Trinidad and Tobago,1868,Digicel
-374,884,140,320,tt,Trinidad and Tobago,1868,LaqTel Ltd.
-605,1541,999,2457,tn,Tunisia,216,Fix Line
-605,1541,06,111,tn,Tunisia,216,Lycamobile
-605,1541,03,63,tn,Tunisia,216,Ooredoo
-605,1541,01,31,tn,Tunisia,216,Orange
-605,1541,02,47,tn,Tunisia,216,TT Mobile
-286,646,299,665,tr,Turkiye,90,Asistan Telekom
-286,646,04,79,tr,Turkiye,90,Avea
-286,646,03,63,tr,Turkiye,90,Avea
-286,646,03,63,tr,Turkiye,90,Avea
-286,646,299,665,tr,Turkiye,90,BasakCell
-286,646,299,665,tr,Turkiye,90,Compatel
-286,646,299,665,tr,Turkiye,90,Fenix Telekom
-286,646,999,2457,tr,Turkiye,90,Fix Line
-286,646,299,665,tr,Turkiye,90,Foniva
-286,646,299,665,tr,Turkiye,90,IsNet
-286,646,299,665,tr,Turkiye,90,Maxiphone
-286,646,299,665,tr,Turkiye,90,Medium Telekom
-286,646,299,665,tr,Turkiye,90,Mobilisim
-286,646,299,665,tr,Turkiye,90,Netgsm
-286,646,299,665,tr,Turkiye,90,Nida
-286,646,299,665,tr,Turkiye,90,Oris
-286,646,299,665,tr,Turkiye,90,Pelicell
-286,646,299,665,tr,Turkiye,90,Plus Telekom
-286,646,299,665,tr,Turkiye,90,Roitel
-286,646,299,665,tr,Turkiye,90,SesNet
-286,646,299,665,tr,Turkiye,90,TCDD
-286,646,299,665,tr,Turkiye,90,TTM
-286,646,01,31,tr,Turkiye,90,Turkcell
-286,646,02,47,tr,Turkiye,90,Vodafone
-438,1080,01,31,tm,Turkmenistan,993,MTS/Barash Communication
-438,1080,02,47,tm,Turkmenistan,993,Altyn Asyr/TM-Cell
-376,886,350,848,tc,Turks and Caicos Islands,,Cable & Wireless (TCI) Ltd
-376,886,050,80,tc,Turks and Caicos Islands,,Digicel TCI Ltd
-376,886,352,850,tc,Turks and Caicos Islands,,IslandCom Communications Ltd.
-553,1363,01,31,tv,Tuvalu,,Tuvalu Telecommunication Corporation (TTC)
-641,1601,01,31,ug,Uganda,256,Airtel
-641,1601,22,559,ug,Uganda,256,Airtel
-641,1601,999,2457,ug,Uganda,256,Fix Line
-641,1601,66,1647,ug,Uganda,256,i-Tel Ltd
-641,1601,30,783,ug,Uganda,256,K2 Telecom Ltd
-641,1601,04,79,ug,Uganda,256,Lycamobile
-641,1601,11,287,ug,Uganda,256,Mango
-641,1601,10,271,ug,Uganda,256,MTN
-641,1601,14,335,ug,Uganda,256,Orange
-641,1601,33,831,ug,Uganda,256,Smile
-641,1601,18,399,ug,Uganda,256,Suretelecom Uganda Ltd
-255,597,07,127,ua,Ukraine,380,3Mob
-255,597,05,95,ua,Ukraine,380,Golden Telecom
-255,597,39,927,ua,Ukraine,380,Golden Telecom
-255,597,04,79,ua,Ukraine,380,IT
-255,597,67,1663,ua,Ukraine,380,KyivStar
-255,597,02,47,ua,Ukraine,380,Kyivstar
-255,597,03,63,ua,Ukraine,380,Kyivstar
-255,597,03,63,ua,Ukraine,380,KyivStar
-255,597,06,111,ua,Ukraine,380,lifecell
-255,597,21,543,ua,Ukraine,380,PEOPLEnet
-255,597,99,2463,ua,Ukraine,380,Phoenix
-255,597,50,1295,ua,Ukraine,380,Vodafone
-255,597,02,47,ua,Ukraine,380,Kyivstar
-255,597,01,31,ua,Ukraine,380,Vodafone
-255,597,01,31,ua,Ukraine,380,Vodafone
-255,597,68,1679,ua,Ukraine,380,Kyivstar
-424,1060,03,63,ae,United Arab Emirates,971,DU
-424,1060,02,47,ae,United Arab Emirates,971,Etisalat
-431,1073,02,47,ae,United Arab Emirates,971,Etisalat
-430,1072,02,47,ae,United Arab Emirates,971,Etisalat
-234,564,99,2463,gb,United Kingdom,44,08Direct
-234,564,99,2463,gb,United Kingdom,44,24Seven
-234,564,99,2463,gb,United Kingdom,44,ACE Call
-234,564,78,1935,gb,United Kingdom,44,Airwave
-234,564,99,2463,gb,United Kingdom,44,Andrews & Arnold
-234,564,99,2463,gb,United Kingdom,44,Anywhere Sim
-234,564,29,671,gb,United Kingdom,44,aql
-234,564,99,2463,gb,United Kingdom,44,aql Wholesale
-234,564,99,2463,gb,United Kingdom,44,Voxbone / Bandwidth
-234,564,99,2463,gb,United Kingdom,44,Bellingham Telecommunications
-234,564,76,1903,gb,United Kingdom,44,BT Group
-234,564,00,15,gb,United Kingdom,44,BT Group
-234,564,08,143,gb,United Kingdom,44,BT OnePhone
-234,564,99,2463,gb,United Kingdom,44,CFL Communications
-234,564,99,2463,gb,United Kingdom,44,Citrus
-234,564,18,399,gb,United Kingdom,44,Cloud9
-234,564,99,2463,gb,United Kingdom,44,Compatel
-234,564,99,2463,gb,United Kingdom,44,Confabulate
-234,564,99,2463,gb,United Kingdom,44,Core
-234,564,99,2463,gb,United Kingdom,44,Core Telecom
-234,564,99,2463,gb,United Kingdom,44,Core Telecom Ltd
-234,564,99,2463,gb,United Kingdom,44,DMB
-235,565,02,47,gb,United Kingdom,44,Everyth. Ev.wh.
-234,564,32,815,gb,United Kingdom,44,T-Mobile
-234,564,31,799,gb,United Kingdom,44,T-Mobile
-234,564,30,783,gb,United Kingdom,44,T-Mobile
-234,564,999,2457,gb,United Kingdom,44,Fix Line
-234,564,17,383,gb,United Kingdom,44,FlexTel
-234,564,04,79,gb,United Kingdom,44,FMS Solutions
-234,564,99,2463,gb,United Kingdom,44,Fogg
-234,564,39,927,gb,United Kingdom,44,Gamma Mobile
-234,564,99,2463,gb,United Kingdom,44,Global Reach Networks
-234,564,24,591,gb,United Kingdom,44,Greenfone
-234,564,72,1839,gb,United Kingdom,44,Hanhaa Mobile
-234,564,71,1823,gb,United Kingdom,44,Home Office
-234,564,20,527,gb,United Kingdom,44,3
-234,564,94,2383,gb,United Kingdom,44,3
-234,564,23,575,gb,United Kingdom,44,Icron Network
-234,564,99,2463,gb,United Kingdom,44,IPV6
-234,564,99,2463,gb,United Kingdom,44,IV Response
-234,564,03,63,gb,United Kingdom,44,Jersey Airtel
-234,564,35,863,gb,United Kingdom,44,JSC Ingenicum
-234,564,50,1295,gb,United Kingdom,44,JT Mobile
-234,564,99,2463,gb,United Kingdom,44,Kontakt Mobile
-234,564,99,2463,gb,United Kingdom,44,Lanonyx Telecom
-234,564,14,335,gb,United Kingdom,44,LINK Mobility
-234,564,99,2463,gb,United Kingdom,44,Lleida.net
-234,564,26,623,gb,United Kingdom,44,Lycamobile
-234,564,99,2463,gb,United Kingdom,44,Magrathea Telecommunications
-234,564,58,1423,gb,United Kingdom,44,Manx Telecom Mobile
-234,564,28,655,gb,United Kingdom,44,Marathon Telecom
-234,564,99,2463,gb,United Kingdom,44,Mars Communications
-234,564,75,1887,gb,United Kingdom,44,Mass Response Service GmbH
-234,564,99,2463,gb,United Kingdom,44,Mobiweb
-234,564,56,1391,gb,United Kingdom,44,NCSC
-234,564,95,2399,gb,United Kingdom,44,Network Rail
-234,564,12,303,gb,United Kingdom,44,Network Rail
-234,564,13,319,gb,United Kingdom,44,Network Rail
-234,564,99,2463,gb,United Kingdom,44,Nodemax
-234,564,51,1311,gb,United Kingdom,44,now broadband
-234,564,99,2463,gb,United Kingdom,44,NTA
-234,564,34,847,gb,United Kingdom,44,Orange
-234,564,33,831,gb,United Kingdom,44,Orange
-234,564,74,1871,gb,United Kingdom,44,Pareteum
-234,564,99,2463,gb,United Kingdom,44,Premium Routing
-234,564,99,2463,gb,United Kingdom,44,QX
-234,564,99,2463,gb,United Kingdom,44,Resilient
-234,564,99,2463,gb,United Kingdom,44,Sark Telecom
-234,564,99,2463,gb,United Kingdom,44,Simwood eSMS
-234,564,57,1407,gb,United Kingdom,44,Sky
-234,564,99,2463,gb,United Kingdom,44,Sound Advertising
-234,564,99,2463,gb,United Kingdom,44,Spacetel
-234,564,40,1039,gb,United Kingdom,44,spusu
-234,564,55,1375,gb,United Kingdom,44,Sure Guernsey
-234,564,36,879,gb,United Kingdom,44,Sure Isle of Man
-234,564,99,2463,gb,United Kingdom,44,Sure Jersey
-234,564,99,2463,gb,United Kingdom,44,Swiftnet
-234,564,37,895,gb,United Kingdom,44,Synectiv
-234,564,16,367,gb,United Kingdom,44,Talk Talk
-234,564,99,2463,gb,United Kingdom,44,Tango Networks
-234,564,27,639,gb,United Kingdom,44,Tata Communications Ltd
-234,564,99,2463,gb,United Kingdom,44,Telecom 10
-234,564,99,2463,gb,United Kingdom,44,Telecom2
-234,564,27,639,gb,United Kingdom,44,Vodafone
-234,564,02,47,gb,United Kingdom,44,O2
-234,564,11,287,gb,United Kingdom,44,O2
-234,564,10,271,gb,United Kingdom,44,O2
-234,564,22,559,gb,United Kingdom,44,Telesign Mobile
-234,564,19,415,gb,United Kingdom,44,TeleWare
-234,564,99,2463,gb,United Kingdom,44,telna Mobile
-234,564,99,2463,gb,United Kingdom,44,TGL Services
-234,564,09,159,gb,United Kingdom,44,Tismi
-234,564,25,607,gb,United Kingdom,44,Truphone
-234,564,01,31,gb,United Kingdom,44,Vectone Mobile
-234,564,998,2456,gb,United Kingdom,44,Virgin Mobile
-234,564,38,911,gb,United Kingdom,44,Virgin Mobile
-234,564,07,127,gb,United Kingdom,44,Vodafone
-234,564,92,2351,gb,United Kingdom,44,Vodafone
-234,564,89,2207,gb,United Kingdom,44,Vodafone
-234,564,15,351,gb,United Kingdom,44,Vodafone
-234,564,91,2335,gb,United Kingdom,44,Vodafone
-234,564,77,1919,gb,United Kingdom,44,Vodafone
-234,564,99,2463,gb,United Kingdom,44,Voicetec Systems
-234,564,99,2463,gb,United Kingdom,44,Ziron
-310,784,050,80,us,United States of America,1,
-310,784,880,2176,us,United States of America,1,
-310,784,850,2128,us,United States of America,1,Aeris Comm. Inc.
-310,784,640,1600,us,United States of America,1,
-310,784,510,1296,us,United States of America,1,Airtel Wireless LLC
-310,784,190,400,us,United States of America,1,Unknown
-312,786,090,144,us,United States of America,1,Allied Wireless Communications Corporation
-311,785,130,304,us,United States of America,1,
-310,784,710,1808,us,United States of America,1,Arctic Slope Telephone Association Cooperative Inc.
-310,784,410,1040,us,United States of America,1,AT&T Wireless Inc.
-310,784,380,896,us,United States of America,1,AT&T Wireless Inc.
-310,784,170,368,us,United States of America,1,AT&T Wireless Inc.
-310,784,150,336,us,United States of America,1,AT&T Wireless Inc.
-310,784,680,1664,us,United States of America,1,AT&T Wireless Inc.
-310,784,070,112,us,United States of America,1,AT&T Wireless Inc.
-310,784,560,1376,us,United States of America,1,AT&T Wireless Inc.
-310,784,980,2432,us,United States of America,1,AT&T Wireless Inc.
-311,785,810,2064,us,United States of America,1,Bluegrass Wireless LLC
-311,785,800,2048,us,United States of America,1,Bluegrass Wireless LLC
-311,785,440,1088,us,United States of America,1,Bluegrass Wireless LLC
-310,784,900,2304,us,United States of America,1,Cable & Communications Corp.
-311,785,590,1424,us,United States of America,1,California RSA No. 3 Limited Partnership
-311,785,500,1280,us,United States of America,1,Cambridge Telephone Company Inc.
-310,784,830,2096,us,United States of America,1,Caprock Cellular Ltd.
-311,785,483,1155,us,United States of America,1,Verizon Wireless
-311,785,110,272,us,United States of America,1,Verizon Wireless
-311,785,285,645,us,United States of America,1,Verizon Wireless
-311,785,488,1160,us,United States of America,1,Verizon Wireless
-311,785,274,628,us,United States of America,1,Verizon Wireless
-310,784,010,16,us,United States of America,1,Verizon Wireless
-311,785,279,633,us,United States of America,1,Verizon Wireless
-311,785,288,648,us,United States of America,1,Verizon Wireless
-310,784,910,2320,us,United States of America,1,Verizon Wireless
-311,785,284,644,us,United States of America,1,Verizon Wireless
-311,785,482,1154,us,United States of America,1,Verizon Wireless
-311,785,487,1159,us,United States of America,1,Verizon Wireless
-311,785,273,627,us,United States of America,1,Verizon Wireless
-310,784,004,4,us,United States of America,1,Verizon Wireless
-311,785,278,632,us,United States of America,1,Verizon Wireless
-311,785,287,647,us,United States of America,1,Verizon Wireless
-310,784,890,2192,us,United States of America,1,Verizon Wireless
-311,785,283,643,us,United States of America,1,Verizon Wireless
-311,785,481,1153,us,United States of America,1,Verizon Wireless
-311,785,486,1158,us,United States of America,1,Verizon Wireless
-311,785,272,626,us,United States of America,1,Verizon Wireless
-311,785,277,631,us,United States of America,1,Verizon Wireless
-310,784,590,1424,us,United States of America,1,Verizon Wireless
-311,785,282,642,us,United States of America,1,Verizon Wireless
-311,785,480,1152,us,United States of America,1,Verizon Wireless
-311,785,485,1157,us,United States of America,1,Verizon Wireless
-311,785,271,625,us,United States of America,1,Verizon Wireless
-311,785,276,630,us,United States of America,1,Verizon Wireless
-310,784,013,19,us,United States of America,1,Verizon Wireless
-311,785,281,641,us,United States of America,1,Verizon Wireless
-311,785,390,912,us,United States of America,1,Verizon Wireless
-311,785,484,1156,us,United States of America,1,Verizon Wireless
-311,785,270,624,us,United States of America,1,Verizon Wireless
-311,785,286,646,us,United States of America,1,Verizon Wireless
-311,785,489,1161,us,United States of America,1,Verizon Wireless
-311,785,275,629,us,United States of America,1,Verizon Wireless
-310,784,012,18,us,United States of America,1,Verizon Wireless
-311,785,280,640,us,United States of America,1,Verizon Wireless
-311,785,289,649,us,United States of America,1,Verizon Wireless
-312,786,280,640,us,United States of America,1,Cellular Network Partnership LLC
-312,786,270,624,us,United States of America,1,Cellular Network Partnership LLC
-310,784,360,864,us,United States of America,1,Cellular Network Partnership LLC
-311,785,190,400,us,United States of America,1,
-310,784,030,48,us,United States of America,1,
-311,785,120,288,us,United States of America,1,Choice Phone LLC
-310,784,480,1152,us,United States of America,1,Choice Phone LLC
-310,784,630,1584,us,United States of America,1,
-310,784,420,1056,us,United States of America,1,Cincinnati Bell Wireless LLC
-310,784,180,384,us,United States of America,1,Cingular Wireless
-310,784,620,1568,us,United States of America,1,Coleman County Telco /Trans TX
-311,785,040,64,us,United States of America,1,
-310,784,06,111,us,United States of America,1,Consolidated Telcom
-310,784,60,1551,us,United States of America,1,Consolidated Telcom
-310,784,26,623,us,United States of America,1,
-312,786,380,896,us,United States of America,1,
-310,784,930,2352,us,United States of America,1,
-311,785,240,576,us,United States of America,1,
-310,784,080,128,us,United States of America,1,
-310,784,700,1792,us,United States of America,1,Cross Valliant Cellular Partnership
-312,786,030,48,us,United States of America,1,Cross Wireless Telephone Co.
-311,785,140,320,us,United States of America,1,Cross Wireless Telephone Co.
-311,785,520,1312,us,United States of America,1,
-312,786,040,64,us,United States of America,1,Custer Telephone Cooperative Inc.
-310,784,440,1088,us,United States of America,1,Dobson Cellular Systems
-310,784,990,2448,us,United States of America,1,E.N.M.R. Telephone Coop.
-312,786,130,304,us,United States of America,1,East Kentucky Network LLC
-312,786,120,288,us,United States of America,1,East Kentucky Network LLC
-310,784,750,1872,us,United States of America,1,East Kentucky Network LLC
-310,784,090,144,us,United States of America,1,Edge Wireless LLC
-310,784,610,1552,us,United States of America,1,Elkhart TelCo. / Epic Touch Co.
-311,785,210,528,us,United States of America,1,
-311,785,311,785,us,United States of America,1,Farmers
-311,785,460,1120,us,United States of America,1,Fisher Wireless Services Inc.
-311,785,370,880,us,United States of America,1,GCI Communication Corp.
-310,784,430,1072,us,United States of America,1,GCI Communication Corp.
-310,784,920,2336,us,United States of America,1,Get Mobile Inc.
-310,784,970,2416,us,United States of America,1,
-311,785,340,832,us,United States of America,1,Illinois Valley Cellular RSA 2 Partnership
-311,785,030,48,us,United States of America,1,
-312,786,170,368,us,United States of America,1,Iowa RSA No. 2 Limited Partnership
-311,785,410,1040,us,United States of America,1,Iowa RSA No. 2 Limited Partnership
-310,784,770,1904,us,United States of America,1,Iowa Wireless Services LLC
-310,784,650,1616,us,United States of America,1,Jasper
-310,784,870,2160,us,United States of America,1,Kaplan Telephone Company Inc.
-312,786,180,384,us,United States of America,1,Keystone Wireless LLC
-310,784,690,1680,us,United States of America,1,Keystone Wireless LLC
-311,785,310,784,us,United States of America,1,Lamar County Cellular
-310,784,016,22,us,United States of America,1,Leap Wireless International Inc.
-311,785,090,144,us,United States of America,1,
-310,784,040,64,us,United States of America,1,Matanuska Tel. Assn. Inc.
-310,784,780,1920,us,United States of America,1,Message Express Co. / Airlink PCS
-311,785,660,1632,us,United States of America,1,
-311,785,330,816,us,United States of America,1,Michigan Wireless LLC
-311,785,000,0,us,United States of America,1,
-310,784,400,1024,us,United States of America,1,Minnesota South. Wirel. Co. / Hickory
-311,785,020,32,us,United States of America,1,Missouri RSA No 5 Partnership
-311,785,010,16,us,United States of America,1,Missouri RSA No 5 Partnership
-312,786,220,544,us,United States of America,1,Missouri RSA No 5 Partnership
-312,786,010,16,us,United States of America,1,Missouri RSA No 5 Partnership
-311,785,920,2336,us,United States of America,1,Missouri RSA No 5 Partnership
-310,784,350,848,us,United States of America,1,Mohave Cellular LP
-310,784,570,1392,us,United States of America,1,MTPCS LLC
-310,784,290,656,us,United States of America,1,NEP Cellcorp Inc.
-310,784,34,847,us,United States of America,1,Nevada Wireless LLC
-311,785,380,896,us,United States of America,1,
-310,784,600,1536,us,United States of America,1,New-Cell Inc.
-311,785,100,256,us,United States of America,1,
-311,785,300,768,us,United States of America,1,Nexus Communications Inc.
-310,784,130,304,us,United States of America,1,North Carolina RSA 3 Cellular Tel. Co.
-312,786,230,560,us,United States of America,1,North Dakota Network Company
-311,785,610,1552,us,United States of America,1,North Dakota Network Company
-310,784,450,1104,us,United States of America,1,Northeast Colorado Cellular Inc.
-311,785,710,1808,us,United States of America,1,Northeast Wireless Networks LLC
-310,784,670,1648,us,United States of America,1,Northstar
-310,784,011,17,us,United States of America,1,Northstar
-311,785,420,1056,us,United States of America,1,Northwest Missouri Cellular Limited Partnership
-310,784,540,1344,us,United States of America,1,
-310,784,999,2457,us,United States of America,1,Various Networks
-310,784,760,1888,us,United States of America,1,Panhandle Telephone Cooperative Inc.
-310,784,580,1408,us,United States of America,1,PCS ONE
-311,785,170,368,us,United States of America,1,PetroCom
-311,785,670,1648,us,United States of America,1,Pine Belt Cellular Inc.
-311,785,080,128,us,United States of America,1,
-310,784,790,1936,us,United States of America,1,
-310,784,100,256,us,United States of America,1,Plateau Telecommunications Inc.
-310,784,940,2368,us,United States of America,1,Poka Lambro Telco Ltd.
-311,785,730,1840,us,United States of America,1,
-311,785,540,1344,us,United States of America,1,
-310,784,500,1280,us,United States of America,1,Public Service Cellular Inc.
-312,786,160,352,us,United States of America,1,RSA 1 Limited Partnership
-311,785,430,1072,us,United States of America,1,RSA 1 Limited Partnership
-311,785,350,848,us,United States of America,1,Sagebrush Cellular Inc.
-311,785,910,2320,us,United States of America,1,
-310,784,46,1135,us,United States of America,1,SIMMETRY
-311,785,260,608,us,United States of America,1,SLO Cellular Inc / Cellular One of San Luis
-310,784,320,800,us,United States of America,1,Smith Bagley Inc.
-310,784,15,351,us,United States of America,1,Unknown
-316,790,011,17,us,United States of America,1,Southern Communications Services Inc.
-312,786,530,1328,us,United States of America,1,Sprint Spectrum
-310,784,120,288,us,United States of America,1,Sprint Spectrum
-316,790,010,16,us,United States of America,1,Sprint Spectrum
-312,786,190,400,us,United States of America,1,Sprint Spectrum
-311,785,880,2176,us,United States of America,1,Sprint Spectrum
-311,785,870,2160,us,United States of America,1,Sprint Spectrum
-311,785,490,1168,us,United States of America,1,Sprint Spectrum
-310,784,240,576,us,United States of America,1,T-Mobile
-310,784,660,1632,us,United States of America,1,T-Mobile
-310,784,230,560,us,United States of America,1,T-Mobile
-310,784,31,799,us,United States of America,1,T-Mobile
-310,784,220,544,us,United States of America,1,T-Mobile
-310,784,270,624,us,United States of America,1,T-Mobile
-310,784,210,528,us,United States of America,1,T-Mobile
-310,784,260,608,us,United States of America,1,T-Mobile
-310,784,200,512,us,United States of America,1,T-Mobile
-310,784,250,592,us,United States of America,1,T-Mobile
-310,784,160,352,us,United States of America,1,T-Mobile
-310,784,800,2048,us,United States of America,1,T-Mobile
-310,784,300,768,us,United States of America,1,T-Mobile
-310,784,280,640,us,United States of America,1,T-Mobile
-310,784,330,816,us,United States of America,1,T-Mobile
-310,784,310,784,us,United States of America,1,T-Mobile
-311,785,740,1856,us,United States of America,1,
-310,784,740,1856,us,United States of America,1,Telemetrix Inc.
-310,784,14,335,us,United States of America,1,Testing
-310,784,950,2384,us,United States of America,1,Unknown
-310,784,860,2144,us,United States of America,1,Texas RSA 15B2 Limited Partnership
-311,785,830,2096,us,United States of America,1,Thumb Cellular Limited Partnership
-311,785,050,80,us,United States of America,1,Thumb Cellular Limited Partnership
-310,784,460,1120,us,United States of America,1,TMP Corporation
-310,784,490,1168,us,United States of America,1,Triton PCS
-311,785,860,2144,us,United States of America,1,Uintah Basin Electronics Telecommunications Inc.
-310,784,960,2400,us,United States of America,1,Uintah Basin Electronics Telecommunications Inc.
-312,786,290,656,us,United States of America,1,Uintah Basin Electronics Telecommunications Inc.
-310,784,020,32,us,United States of America,1,Union Telephone Co.
-311,785,220,544,us,United States of America,1,United States Cellular Corp.
-310,784,730,1840,us,United States of America,1,United States Cellular Corp.
-311,785,650,1616,us,United States of America,1,United Wireless Communications Inc.
-310,784,38,911,us,United States of America,1,USA 3650 AT&T
-310,784,520,1312,us,United States of America,1,VeriSign
-310,784,003,3,us,United States of America,1,Unknown
-310,784,23,575,us,United States of America,1,Unknown
-310,784,24,591,us,United States of America,1,Unknown
-310,784,25,607,us,United States of America,1,Unknown
-310,784,530,1328,us,United States of America,1,West Virginia Wireless
-310,784,26,623,us,United States of America,1,Unknown
-310,784,340,832,us,United States of America,1,Westlink Communications LLC
-311,785,150,336,us,United States of America,1,
-311,785,070,112,us,United States of America,1,Wisconsin RSA #7 Limited Partnership
-310,784,390,912,us,United States of America,1,Yorkville Telephone Cooperative
-748,1864,03,63,uy,Uruguay,598,Ancel/Antel
-748,1864,00,15,uy,Uruguay,598,Ancel/Antel
-748,1864,01,31,uy,Uruguay,598,Ancel/Antel
-748,1864,10,271,uy,Uruguay,598,Claro/AM Wireless
-748,1864,07,127,uy,Uruguay,598,MOVISTAR
-434,1076,04,79,uz,Uzbekistan,998,Bee Line/Unitel
-434,1076,01,31,uz,Uzbekistan,998,Buztel
-434,1076,07,127,uz,Uzbekistan,998,MTS/Uzdunrobita
-434,1076,05,95,uz,Uzbekistan,998,Ucell/Coscom
-434,1076,02,47,uz,Uzbekistan,998,Uzmacom
-541,1345,05,95,vu,Vanuatu,678,DigiCel
-541,1345,01,31,vu,Vanuatu,678,SMILE
-225,549,299,665,va,Vatican,,Failed Calls
-734,1844,03,63,ve,Venezuela,58,DigiTel C.A.
-734,1844,02,47,ve,Venezuela,58,DigiTel C.A.
-734,1844,01,31,ve,Venezuela,58,DigiTel C.A.
-734,1844,06,111,ve,Venezuela,58,Movilnet C.A.
-734,1844,04,79,ve,Venezuela,58,Movistar/TelCel
-452,1106,07,127,vn,Vietnam,84,Gmobile
-452,1106,08,143,vn,Vietnam,84,I-Telecom
-452,1106,08,143,vn,Vietnam,84,I-Telecom
-452,1106,08,143,vn,Vietnam,84,I-Telecom
-452,1106,01,31,vn,Vietnam,84,MobiFone
-452,1106,09,159,vn,Vietnam,84,Reddi
-452,1106,03,63,vn,Vietnam,84,S-Fone/Telecom
-452,1106,05,95,vn,Vietnam,84,Vietnamobile
-452,1106,06,111,vn,Vietnam,84,Viettel
-452,1106,04,79,vn,Vietnam,84,Viettel
-452,1106,02,47,vn,Vietnam,84,VinaPhone
-376,886,50,1295,vi,Virgin Islands,1340,Digicel
-543,1347,299,665,wf,Wallis and Futuna,,Failed Calls
-543,1347,01,31,wf,Wallis and Futuna,,Manuia
-421,1057,999,2457,ye,Yemen,967,Fix Line
-421,1057,04,79,ye,Yemen,967,HITS/Y Unitel
-421,1057,02,47,ye,Yemen,967,MTN/Spacetel
-421,1057,01,31,ye,Yemen,967,Sabaphone
-421,1057,03,63,ye,Yemen,967,Yemen Mob. CDMA
-645,1605,01,31,zm,Zambia,260,Airtel
-645,1605,299,665,zm,Zambia,260,Failed Calls
-645,1605,02,47,zm,Zambia,260,MTN
-645,1605,03,63,zm,Zambia,260,Zamtel
-648,1608,04,79,zw,Zimbabwe,263,Econet
-648,1608,01,31,zw,Zimbabwe,263,NetOne
-648,1608,03,63,zw,Zimbabwe,263,Telecel
+289,88,ge,Abkhazia,7,A-Mobile
+289,68,ge,Abkhazia,7,A-Mobile
+289,67,ge,Abkhazia,7,Aquafon
+289,299,ge,Abkhazia,7,Failed Calls
+289,999,ge,Abkhazia,7,Fix Line
+412,01,af,Afghanistan,93,AWCC
+412,50,af,Afghanistan,93,Etisalat
+412,299,af,Afghanistan,93,Failed Calls
+412,999,af,Afghanistan,93,Fix Line
+412,88,af,Afghanistan,93,Mobifone
+412,80,af,Afghanistan,93,Mobifone
+412,40,af,Afghanistan,93,MTN
+412,20,af,Afghanistan,93,Roshan
+276,03,al,Albania,355,ALBtelecom Mobile / Eagle
+276,299,al,Albania,355,Failed Calls
+276,999,al,Albania,355,Fix Line
+276,01,al,Albania,355,One / AMC
+276,02,al,Albania,355,Vodafone
+603,02,dz,Algeria,213,Djezzy
+603,299,dz,Algeria,213,Failed Calls
+603,999,dz,Algeria,213,Fix Line
+603,01,dz,Algeria,213,Mobilis
+603,03,dz,Algeria,213,Ooredoo
+544,780,as,American Samoa,684,ASTCA Mobile
+544,11,as,American Samoa,684,BlueSky
+544,299,as,American Samoa,684,Failed Calls
+544,999,as,American Samoa,684,Fix Line
+213,03,ad,Andorra,376,Andorra Telecom / Mobiland
+213,299,ad,Andorra,376,Failed Calls
+213,999,ad,Andorra,376,Fix Line
+631,299,ao,Angola,244,Failed Calls
+631,999,ao,Angola,244,Fix Line
+631,04,ao,Angola,244,MoviCel
+631,02,ao,Angola,244,Unitel
+365,850,ai,Anguilla,1264,Digicel
+365,299,ai,Anguilla,1264,Failed Calls
+365,999,ai,Anguilla,1264,Fix Line
+365,840,ai,Anguilla,1264,Flow
+344,93,ag,Antigua and Barbuda,1268,Digicel
+344,930,ag,Antigua and Barbuda,1268,Digicel
+344,299,ag,Antigua and Barbuda,1268,Failed Calls
+344,999,ag,Antigua and Barbuda,1268,Fix Line
+344,920,ag,Antigua and Barbuda,1268,Flow
+344,92,ag,Antigua and Barbuda,1268,Flow
+344,03,ag,Antigua and Barbuda,1268,imobile / APUA
+344,030,ag,Antigua and Barbuda,1268,imobile / APUA
+722,330,ar,Argentina,54,Claro
+722,031,ar,Argentina,54,Claro
+722,320,ar,Argentina,54,Claro
+722,310,ar,Argentina,54,Claro
+722,299,ar,Argentina,54,Express
+722,999,ar,Argentina,54,Fix Line
+722,299,ar,Argentina,54,Imowi
+722,299,ar,Argentina,54,IPLAN
+722,299,ar,Argentina,54,Kallofer
+722,007,ar,Argentina,54,Movistar
+722,070,ar,Argentina,54,Movistar
+722,010,ar,Argentina,54,Movistar
+722,299,ar,Argentina,54,Nuestro
+722,034,ar,Argentina,54,Personal
+722,299,ar,Argentina,54,Telecentro
+722,341,ar,Argentina,54,Personal
+722,340,ar,Argentina,54,Personal
+283,01,am,Armenia,374,Beeline
+283,299,am,Armenia,374,Failed Calls
+283,999,am,Armenia,374,Fix Line
+283,04,am,Armenia,374,KT
+283,10,am,Armenia,374,Orange
+283,05,am,Armenia,374,Viva-MTS
+363,02,aw,Aruba,297,Digicel
+363,299,aw,Aruba,297,Failed Calls
+363,999,aw,Aruba,297,Fix Line
+363,299,aw,Aruba,297,MIO
+363,01,aw,Aruba,297,SETAR
+505,299,au,Australia,61,ACMA
+505,30,au,Australia,61,Compatel
+505,999,au,Australia,61,Fix Line
+505,299,au,Australia,61,Get SIM
+505,19,au,Australia,61,Lycamobile
+505,35,au,Australia,61,MessageBird
+505,10,au,Australia,61,Norfolk Telecom
+505,90,au,Australia,61,Optus
+505,50,au,Australia,61,Pivotel
+505,88,au,Australia,61,Pivotel
+505,13,au,Australia,61,RailCorp
+505,26,au,Australia,61,Sinch
+505,02,au,Australia,61,Optus
+505,299,au,Australia,61,Symbio
+505,72,au,Australia,61,Telstra
+505,01,au,Australia,61,Telstra
+505,11,au,Australia,61,Telstra
+505,39,au,Australia,61,Telstra
+505,71,au,Australia,61,Telstra
+505,16,au,Australia,61,VicTrack
+505,03,au,Australia,61,Vodafone
+505,06,au,Australia,61,Vodafone
+505,12,au,Australia,61,Vodafone
+505,07,au,Australia,61,Vodafone
+232,14,at,Austria,43,3
+232,05,at,Austria,43,3
+232,19,at,Austria,43,3
+232,16,at,Austria,43,3
+232,10,at,Austria,43,3
+232,09,at,Austria,43,A1 Telekom
+232,12,at,Austria,43,A1 Telekom
+232,02,at,Austria,43,A1 Telekom
+232,01,at,Austria,43,A1 Telekom
+232,11,at,Austria,43,A1 Telekom
+232,299,at,Austria,43,ArgoNET
+232,299,at,Austria,43,DIALOG telekom
+232,299,at,Austria,43,Digital Privacy
+232,299,at,Austria,43,DIMOCO
+232,299,at,Austria,43,educom
+232,999,at,Austria,43,Fix Line
+232,25,at,Austria,43,Holding Graz
+232,299,at,Austria,43,Innsbrucker Kommunalbetriebe
+232,299,at,Austria,43,kabelplus
+232,299,at,Austria,43,Lenovo Connect
+232,299,at,Austria,43,LINK Mobility
+232,26,at,Austria,43,LIWEST Mobil
+232,17,at,Austria,43,MRS
+232,20,at,Austria,43,Mtel
+232,91,at,Austria,43,OBB Infrastruktur
+232,22,at,Austria,43,Plintron
+232,299,at,Austria,43,Simple SMS
+232,299,at,Austria,43,Skymond Mobile
+232,24,at,Austria,43,Smartel Services
+232,18,at,Austria,43,smartspace
+232,13,at,Austria,43,T-Mobile / Magenta
+232,23,at,Austria,43,T-Mobile / Magenta
+232,04,at,Austria,43,T-Mobile / Magenta
+232,03,at,Austria,43,T-Mobile / Magenta
+232,299,at,Austria,43,Telfoni
+232,27,at,Austria,43,Tismi
+232,07,at,Austria,43,Ventocom
+400,01,az,Azerbaijan,994,Azercell
+400,02,az,Azerbaijan,994,Bakcell
+400,299,az,Azerbaijan,994,Failed Calls
+400,999,az,Azerbaijan,994,Fix Line
+400,03,az,Azerbaijan,994,FONEX
+400,04,az,Azerbaijan,994,Nar Mobile
+400,06,az,Azerbaijan,994,Naxtel
+364,490,bs,Bahamas,1242,Aliv
+364,390,bs,Bahamas,1242,Cybercell / BaTelCo
+364,39,bs,Bahamas,1242,Cybercell / BaTelCo
+364,30,bs,Bahamas,1242,Cybercell / BaTelCo
+364,299,bs,Bahamas,1242,Failed Calls
+364,999,bs,Bahamas,1242,Fix Line
+426,01,bh,Bahrain,973,Batelco
+426,299,bh,Bahrain,973,Failed Calls
+426,999,bh,Bahrain,973,Fix Line
+426,05,bh,Bahrain,973,Royal Court
+426,04,bh,Bahrain,973,VIVA
+426,02,bh,Bahrain,973,Zain
+470,07,bd,Bangladesh,880,Airtel
+470,02,bd,Bangladesh,880,Airtel
+470,03,bd,Bangladesh,880,Banglalink
+470,299,bd,Bangladesh,880,Failed Calls
+470,999,bd,Bangladesh,880,Fix Line
+470,01,bd,Bangladesh,880,GrameenPhone
+470,04,bd,Bangladesh,880,TeleTalk
+342,050,bb,Barbados,1246,Digicel
+342,299,bb,Barbados,1246,Failed Calls
+342,999,bb,Barbados,1246,Fix Line
+342,600,bb,Barbados,1246,Flow / Lime
+342,299,bb,Barbados,1246,Ozone
+257,04,by,Belarus,375,life:)
+257,299,by,Belarus,375,Failed Calls
+257,999,by,Belarus,375,Fix Line
+257,02,by,Belarus,375,MTS
+257,01,by,Belarus,375,velcom A1
+206,20,be,Belgium,32,Base
+206,28,be,Belgium,32,BICS
+206,25,be,Belgium,32,Dense Air
+206,23,be,Belgium,32,Dust Mobile
+206,33,be,Belgium,32,Ericsson
+206,299,be,Belgium,32,FEBO
+206,999,be,Belgium,32,Fix Line
+206,299,be,Belgium,32,GianCom
+206,02,be,Belgium,32,Infrabel
+206,299,be,Belgium,32,interactive digital media / IDM
+206,299,be,Belgium,32,L-mobi
+206,99,be,Belgium,32,Lancelot
+206,299,be,Belgium,32,Legos
+206,06,be,Belgium,32,Lycamobile
+206,30,be,Belgium,32,Mobile Vikings
+206,10,be,Belgium,32,Mobistar / Orange
+206,299,be,Belgium,32,Nord Connect
+206,34,be,Belgium,32,onoff
+206,299,be,Belgium,32,PM Factory
+206,01,be,Belgium,32,Proximus
+206,04,be,Belgium,32,Proximus
+206,00,be,Belgium,32,Proximus
+206,05,be,Belgium,32,Telenet
+206,07,be,Belgium,32,Vectone Mobile
+206,08,be,Belgium,32,VOOmobile
+206,299,be,Belgium,32,Voxbone / Bandwidth
+702,67,bz,Belize,501,DigiCell
+702,299,bz,Belize,501,Failed Calls
+702,999,bz,Belize,501,Fix Line
+702,69,bz,Belize,501,Smart
+702,099,bz,Belize,501,Smart
+616,299,bj,Benin,229,Failed Calls
+616,999,bj,Benin,229,Fix Line
+616,02,bj,Benin,229,Moov
+616,03,bj,Benin,229,MTN
+350,01,bm,Bermuda,1441,Digicel
+350,299,bm,Bermuda,1441,Failed Calls
+350,999,bm,Bermuda,1441,Fix Line
+350,000,bm,Bermuda,1441,One
+402,11,bt,Bhutan,975,B-Mobile
+402,17,bt,Bhutan,975,B-Mobile
+402,999,bt,Bhutan,975,Fix Line
+402,77,bt,Bhutan,975,TashiCell
+736,02,bo,Bolivia,591,Entel Movil
+736,299,bo,Bolivia,591,Failed Calls
+736,999,bo,Bolivia,591,Fix Line
+736,03,bo,Bolivia,591,Tigo
+736,01,bo,Bolivia,591,Viva
+218,90,ba,Bosnia and Herzegovina,387,BH Mobile
+218,03,ba,Bosnia and Herzegovina,387,Eronet
+218,299,ba,Bosnia and Herzegovina,387,Failed Calls
+218,999,ba,Bosnia and Herzegovina,387,Fix Line
+218,05,ba,Bosnia and Herzegovina,387,m:tel
+652,04,bw,Botswana,267,beMobile
+652,299,bw,Botswana,267,Failed Calls
+652,999,bw,Botswana,267,Fix Line
+652,01,bw,Botswana,267,Mascom
+652,02,bw,Botswana,267,Orange
+724,32,br,Brazil,55,Algar Telecom
+724,33,br,Brazil,55,Algar Telecom
+724,34,br,Brazil,55,Algar Telecom
+724,26,br,Brazil,55,Americanet
+724,299,br,Brazil,55,ARQIA
+724,299,br,Brazil,55,Bbs Options
+724,299,br,Brazil,55,Cinco
+724,05,br,Brazil,55,Claro
+724,38,br,Brazil,55,Claro
+724,299,br,Brazil,55,Failed Calls
+724,999,br,Brazil,55,Fix Line
+724,21,br,Brazil,55,Ligue
+724,00,br,Brazil,55,Nextel
+724,39,br,Brazil,55,Nextel
+724,299,br,Brazil,55,NLT
+724,16,br,Brazil,55,Oi Movel
+724,31,br,Brazil,55,Oi Movel
+724,15,br,Brazil,55,Sercomtel
+724,17,br,Brazil,55,Surf
+724,299,br,Brazil,55,Telecall
+724,04,br,Brazil,55,TIM
+724,03,br,Brazil,55,TIM
+724,02,br,Brazil,55,TIM
+724,54,br,Brazil,55,TIM
+724,299,br,Brazil,55,Vecto Mobile
+724,11,br,Brazil,55,Vivo
+724,23,br,Brazil,55,Vivo
+724,06,br,Brazil,55,Vivo
+724,10,br,Brazil,55,Vivo
+348,570,vg,British Virgin Islands,284,CCT
+348,770,vg,British Virgin Islands,284,Digicel
+348,299,vg,British Virgin Islands,284,Failed Calls
+348,999,vg,British Virgin Islands,284,Fix Line
+348,170,vg,British Virgin Islands,284,Flow
+528,02,bn,Brunei,673,B-Mobile
+528,03,bn,Brunei,673,DST
+528,11,bn,Brunei,673,DST
+528,299,bn,Brunei,673,Failed Calls
+528,999,bn,Brunei,673,Fix Line
+284,01,bg,Bulgaria,359,A1
+284,11,bg,Bulgaria,359,Bulsatcom
+284,299,bg,Bulgaria,359,Failed Calls
+284,999,bg,Bulgaria,359,Fix Line
+284,13,bg,Bulgaria,359,T.com
+284,05,bg,Bulgaria,359,Telenor
+284,03,bg,Bulgaria,359,Vivacom
+613,299,bf,Burkina Faso,226,Failed Calls
+613,999,bf,Burkina Faso,226,Fix Line
+613,02,bf,Burkina Faso,226,Orange
+613,03,bf,Burkina Faso,226,Telecel
+613,01,bf,Burkina Faso,226,Telmob
+642,999,bi,Burundi,257,Fix Line
+642,01,bi,Burundi,257,Leo
+642,82,bi,Burundi,257,Leo
+642,08,bi,Burundi,257,Lumitel
+642,03,bi,Burundi,257,ONAMOB
+642,07,bi,Burundi,257,Smart
+456,04,kh,Cambodia,855,QB
+456,01,kh,Cambodia,855,Cellcard
+456,299,kh,Cambodia,855,CooTel
+456,299,kh,Cambodia,855,Failed Calls
+456,999,kh,Cambodia,855,Fix Line
+456,08,kh,Cambodia,855,Metfone
+456,299,kh,Cambodia,855,MPTC
+456,11,kh,Cambodia,855,Seatel
+456,05,kh,Cambodia,855,Smart
+456,02,kh,Cambodia,855,Smart
+456,06,kh,Cambodia,855,Smart
+624,299,cm,Cameroon,237,Failed Calls
+624,999,cm,Cameroon,237,Fix Line
+624,01,cm,Cameroon,237,MTN
+624,04,cm,Cameroon,237,Nextel
+624,02,cm,Cameroon,237,Orange
+302,61,ca,Canada,1,Bell Mobility
+302,630,ca,Canada,1,Bell Mobility
+302,660,ca,Canada,1,Bell Mobility
+302,64,ca,Canada,1,Bell Mobility
+302,69,ca,Canada,1,Bell Mobility
+302,640,ca,Canada,1,Bell Mobility
+302,690,ca,Canada,1,Bell Mobility
+302,66,ca,Canada,1,Bell Mobility
+302,610,ca,Canada,1,Bell Mobility
+302,63,ca,Canada,1,Bell Mobility
+302,270,ca,Canada,1,eastlink
+302,299,ca,Canada,1,Failed Calls
+302,370,ca,Canada,1,Fido
+302,37,ca,Canada,1,Fido
+302,999,ca,Canada,1,Fix Line
+302,49,ca,Canada,1,Freedom Mobile
+302,491,ca,Canada,1,Freedom Mobile
+302,490,ca,Canada,1,Freedom Mobile
+302,62,ca,Canada,1,Ice Wireless
+302,620,ca,Canada,1,Ice Wireless
+302,380,ca,Canada,1,K-Net Mobile
+302,530,ca,Canada,1,K-Net Mobile
+302,53,ca,Canada,1,K-Net Mobile
+302,38,ca,Canada,1,K-Net Mobile
+302,720,ca,Canada,1,Rogers
+302,721,ca,Canada,1,Rogers
+302,32,ca,Canada,1,Rogers
+302,82,ca,Canada,1,Rogers
+302,320,ca,Canada,1,Rogers
+302,820,ca,Canada,1,Rogers
+302,72,ca,Canada,1,Rogers
+302,750,ca,Canada,1,SaskTel Mobility
+302,75,ca,Canada,1,SaskTel Mobility
+302,78,ca,Canada,1,SaskTel Mobility
+302,680,ca,Canada,1,SaskTel Mobility
+302,681,ca,Canada,1,SaskTel Mobility
+302,780,ca,Canada,1,SaskTel Mobility
+302,68,ca,Canada,1,SaskTel Mobility
+302,781,ca,Canada,1,SaskTel Mobility
+302,22,ca,Canada,1,Telus Mobility
+302,860,ca,Canada,1,Telus Mobility
+302,86,ca,Canada,1,Telus Mobility
+302,360,ca,Canada,1,Telus Mobility
+302,221,ca,Canada,1,Telus Mobility
+302,760,ca,Canada,1,Telus Mobility
+302,36,ca,Canada,1,Telus Mobility
+302,220,ca,Canada,1,Telus Mobility
+302,22,ca,Canada,1,Telus Mobility
+302,76,ca,Canada,1,Telus Mobility
+302,520,ca,Canada,1,Videotron
+302,51,ca,Canada,1,Videotron
+302,50,ca,Canada,1,Videotron
+302,500,ca,Canada,1,Videotron
+302,510,ca,Canada,1,Videotron
+302,299,ca,Canada,1,Xplore Mobile
+625,01,cv,Cape Verde,238,CVMovel
+625,299,cv,Cape Verde,238,Failed Calls
+625,999,cv,Cape Verde,238,Fix Line
+625,02,cv,Cape Verde,238,Unitel T+
+346,050,ky,Cayman Islands,1345,Digicel
+346,299,ky,Cayman Islands,1345,Failed Calls
+346,999,ky,Cayman Islands,1345,Fix Line
+346,140,ky,Cayman Islands,1345,Flow / Lime
+346,001,ky,Cayman Islands,1345,Logic
+623,04,cf,Central African Republic,236,Azur
+623,299,cf,Central African Republic,236,Failed Calls
+623,999,cf,Central African Republic,236,Fix Line
+623,01,cf,Central African Republic,236,Moov
+623,03,cf,Central African Republic,236,Orange
+623,299,cf,Central African Republic,236,Socatel
+623,02,cf,Central African Republic,236,Telecel
+622,01,td,Chad,235,Airtel
+622,299,td,Chad,235,Failed Calls
+622,999,td,Chad,235,Fix Line
+622,03,td,Chad,235,Moov
+622,04,td,Chad,235,Salam
+730,299,cl,Chile,56,Boby
+730,299,cl,Chile,56,CellOPS
+730,22,cl,Chile,56,Cellplus
+730,11,cl,Chile,56,Celupago
+730,15,cl,Chile,56,Cibeles Telecom
+730,27,cl,Chile,56,Cibeles Telecom
+730,03,cl,Chile,56,Claro
+730,23,cl,Chile,56,Claro
+730,17,cl,Chile,56,Compatel
+730,299,cl,Chile,56,Dotcom
+730,18,cl,Chile,56,Empresas Bunker
+730,10,cl,Chile,56,Entel
+730,01,cl,Chile,56,Entel
+730,299,cl,Chile,56,Failed Calls
+730,999,cl,Chile,56,Fix Line
+730,299,cl,Chile,56,GTD Movil
+730,299,cl,Chile,56,Industel
+730,06,cl,Chile,56,INNET
+730,20,cl,Chile,56,Inversiones Santa Fe
+730,299,cl,Chile,56,Mavi
+730,299,cl,Chile,56,Mobilink
+730,19,cl,Chile,56,Movil Falabella
+730,07,cl,Chile,56,Movistar
+730,02,cl,Chile,56,Movistar
+730,299,cl,Chile,56,Mundo Pacifico
+730,14,cl,Chile,56,Netline
+730,299,cl,Chile,56,NetUno
+730,16,cl,Chile,56,Nomade Telecomunicaciones
+730,299,cl,Chile,56,Quantax
+730,299,cl,Chile,56,RedVoiss
+730,299,cl,Chile,56,Simple
+730,299,cl,Chile,56,Swedcom
+730,299,cl,Chile,56,Telcomax
+730,299,cl,Chile,56,Telefonica Uno Uno Cuatro
+730,12,cl,Chile,56,Telestar
+730,299,cl,Chile,56,Television Interactiva
+730,13,cl,Chile,56,Virgin Mobile
+730,299,cl,Chile,56,VOIP Analysis
+730,08,cl,Chile,56,VTR Movil
+730,04,cl,Chile,56,WOM
+730,09,cl,Chile,56,WOM
+730,05,cl,Chile,56,WOM
+460,04,cn,China,86,China Mobile
+460,07,cn,China,86,China Mobile
+460,02,cn,China,86,China Mobile
+460,08,cn,China,86,China Mobile
+460,00,cn,China,86,China Mobile
+460,11,cn,China,86,China Telecom
+460,03,cn,China,86,China Telecom
+460,12,cn,China,86,China Telecom
+460,06,cn,China,86,China Unicom
+460,01,cn,China,86,China Unicom
+460,10,cn,China,86,China Unicom
+460,09,cn,China,86,China Unicom
+460,299,cn,China,86,Failed Calls
+460,999,cn,China,86,Fix Line
+732,299,co,Colombia,57,ATnet
+732,130,co,Colombia,57,Avantel
+732,666,co,Colombia,57,Claro
+732,101,co,Colombia,57,Claro
+732,002,co,Colombia,57,Edatel
+732,187,co,Colombia,57,eTb
+732,299,co,Colombia,57,Eztalk Mobile
+732,999,co,Colombia,57,Fix Line
+732,240,co,Colombia,57,Flash Mobile
+732,299,co,Colombia,57,Gomobile
+732,220,co,Colombia,57,Libre Tecnologias
+732,299,co,Colombia,57,Movil Exito
+732,123,co,Colombia,57,Movistar
+732,001,co,Colombia,57,Movistar
+732,299,co,Colombia,57,Plintron
+732,230,co,Colombia,57,Setroc Mobile
+732,199,co,Colombia,57,SUMA movil
+732,165,co,Colombia,57,Tigo
+732,103,co,Colombia,57,Tigo
+732,111,co,Colombia,57,Tigo
+732,299,co,Colombia,57,TuCEL
+732,142,co,Colombia,57,UNE
+732,020,co,Colombia,57,UNE
+732,299,co,Colombia,57,Vilacom Mobile
+732,154,co,Colombia,57,Virgin Mobile
+732,360,co,Colombia,57,WOM
+654,299,km,Comoros,269,Failed Calls
+654,999,km,Comoros,269,Fix Line
+654,01,km,Comoros,269,HURI
+654,02,km,Comoros,269,Telma
+629,01,cg,Congo,242,Airtel
+629,299,cg,Congo,242,Failed Calls
+629,999,cg,Congo,242,Fix Line
+629,10,cg,Congo,242,MTN
+629,07,cg,Congo,242,Warid
+548,01,ck,Cook Islands,682,Vodafone / Bluesky
+548,299,ck,Cook Islands,682,Failed Calls
+548,999,ck,Cook Islands,682,Fix Line
+712,03,cr,Costa Rica,506,Claro
+712,299,cr,Costa Rica,506,Failed Calls
+712,999,cr,Costa Rica,506,Fix Line
+712,02,cr,Costa Rica,506,Kolbi / ICE
+712,01,cr,Costa Rica,506,Kolbi / ICE
+712,04,cr,Costa Rica,506,Movistar
+712,299,cr,Costa Rica,506,MultiCom
+712,299,cr,Costa Rica,506,racsa
+712,299,cr,Costa Rica,506,Tuyo Movil
+219,10,hr,Croatia,385,A1 / VIP
+219,299,hr,Croatia,385,Failed Calls
+219,999,hr,Croatia,385,Fix Line
+219,01,hr,Croatia,385,T-Mobile
+219,12,hr,Croatia,385,TELE FOCUS
+219,02,hr,Croatia,385,Telemach / Tele2
+368,01,cu,Cuba,53,Cubacel
+368,299,cu,Cuba,53,Failed Calls
+368,999,cu,Cuba,53,Fix Line
+368,299,cu,Cuba,53,MoviTel
+280,22,cy,Cyprus,357,Cablenet / Lemontel
+280,01,cy,Cyprus,357,Cytamobile-Vodafone
+280,02,cy,Cyprus,357,Cytamobile-Vodafone
+280,10,cy,Cyprus,357,Epic / MTN
+280,299,cy,Cyprus,357,Failed Calls
+280,999,cy,Cyprus,357,Fix Line
+280,20,cy,Cyprus,357,PrimeTel
+230,299,cz,Czech Republic,420,+4U Mobile
+230,299,cz,Czech Republic,420,3ton
+230,299,cz,Czech Republic,420,CEZ
+230,08,cz,Czech Republic,420,Compatel
+230,299,cz,Czech Republic,420,Dragon
+230,299,cz,Czech Republic,420,EriMobile
+230,299,cz,Czech Republic,420,Failed Calls
+230,299,cz,Czech Republic,420,Fayn
+230,999,cz,Czech Republic,420,Fix Line
+230,299,cz,Czech Republic,420,GoMobil
+230,299,cz,Czech Republic,420,ha-loo mobil
+230,299,cz,Czech Republic,420,Laudatio
+230,299,cz,Czech Republic,420,METRONET
+230,299,cz,Czech Republic,420,MOBIL21
+230,299,cz,Czech Republic,420,Nej Mobil
+230,299,cz,Czech Republic,420,NETBOX Mobil
+230,04,cz,Czech Republic,420,Nordic Telecom
+230,02,cz,Czech Republic,420,O2
+230,299,cz,Czech Republic,420,Odorik
+230,05,cz,Czech Republic,420,PODA
+230,299,cz,Czech Republic,420,SAZKA
+230,299,cz,Czech Republic,420,SZDC
+230,98,cz,Czech Republic,420,SZDC
+230,01,cz,Czech Republic,420,T-Mobile
+230,07,cz,Czech Republic,420,T-Mobile
+230,299,cz,Czech Republic,420,Tesco Mobile
+230,299,cz,Czech Republic,420,TOPefekt
+230,299,cz,Czech Republic,420,TT Quality
+230,299,cz,Czech Republic,420,Uniphone
+230,09,cz,Czech Republic,420,Uniphone
+230,03,cz,Czech Republic,420,Vodafone
+630,90,cd,Democratic Republic of Congo,243,Africell
+630,02,cd,Democratic Republic of Congo,243,Airtel
+630,299,cd,Democratic Republic of Congo,243,Failed Calls
+630,999,cd,Democratic Republic of Congo,243,Fix Line
+630,86,cd,Democratic Republic of Congo,243,Orange
+630,05,cd,Democratic Republic of Congo,243,Supercell
+630,299,cd,Democratic Republic of Congo,243,Tatem
+630,01,cd,Democratic Republic of Congo,243,Vodacom
+630,88,cd,Democratic Republic of Congo,243,Yozma Timeturns
+238,06,dk,Denmark,45,3
+238,299,dk,Denmark,45,42 Telecom
+238,299,dk,Denmark,45,5Tel
+238,23,dk,Denmark,45,Banedanmark
+238,299,dk,Denmark,45,Benemen
+238,299,dk,Denmark,45,Bolignet-Aarhus
+238,299,dk,Denmark,45,CBB Mobil
+238,299,dk,Denmark,45,celfon
+238,88,dk,Denmark,45,Cobira
+238,299,dk,Denmark,45,Companymobile
+238,13,dk,Denmark,45,Compatel
+238,299,dk,Denmark,45,Comtalk
+238,299,dk,Denmark,45,Evercall
+238,299,dk,Denmark,45,Failed Calls
+238,299,dk,Denmark,45,Firmafon
+238,299,dk,Denmark,45,Firstcom
+238,999,dk,Denmark,45,Fix Line
+238,17,dk,Denmark,45,Gotanet
+238,42,dk,Denmark,45,Greenwave
+238,299,dk,Denmark,45,ipnordic
+238,299,dk,Denmark,45,Ipvision
+238,299,dk,Denmark,45,Lancelot
+238,299,dk,Denmark,45,Lebara
+238,28,dk,Denmark,45,LINK Mobility
+238,12,dk,Denmark,45,Lycamobile
+238,299,dk,Denmark,45,Maxtel.dk
+238,299,dk,Denmark,45,MI Carrier Services
+238,299,dk,Denmark,45,Mitto
+238,299,dk,Denmark,45,Mobiweb
+238,14,dk,Denmark,45,Monty Mobile
+238,15,dk,Denmark,45,Net 1
+238,04,dk,Denmark,45,Nexcon.io
+238,299,dk,Denmark,45,NextM2M
+238,73,dk,Denmark,45,Onomondo
+238,30,dk,Denmark,45,Pareteum
+238,299,dk,Denmark,45,SimService
+238,03,dk,Denmark,45,Syniverse
+238,10,dk,Denmark,45,TDC
+238,01,dk,Denmark,45,TDC
+238,02,dk,Denmark,45,Telenor
+238,77,dk,Denmark,45,Telenor
+238,299,dk,Denmark,45,Telenor Connexion
+238,20,dk,Denmark,45,Telia
+238,96,dk,Denmark,45,Telia
+238,16,dk,Denmark,45,Tismi
+238,299,dk,Denmark,45,Tripple Track
+238,299,dk,Denmark,45,Uni-tel
+238,25,dk,Denmark,45,Viahub
+238,299,dk,Denmark,45,Viptel
+238,08,dk,Denmark,45,Voxbone / Bandwidth
+310,299,dg,Diego Garcia,246,Failed Calls
+310,999,dg,Diego Garcia,246,Fix Line
+310,299,dg,Diego Garcia,246,Sure
+638,01,dj,Djibouti,253,Evatis
+638,299,dj,Djibouti,253,Failed Calls
+638,999,dj,Djibouti,253,Fix Line
+366,050,dm,Dominica,1767,Digicel
+366,299,dm,Dominica,1767,Failed Calls
+366,999,dm,Dominica,1767,Fix Line
+366,110,dm,Dominica,1767,Flow
+370,02,do,Dominican Republic,1809,Claro
+370,299,do,Dominican Republic,1809,Failed Calls
+370,999,do,Dominican Republic,1809,Fix Line
+370,01,do,Dominican Republic,1809,Orange / Altice
+370,299,do,Dominican Republic,1809,Satel
+370,04,do,Dominican Republic,1809,Viva
+514,299,tl,East Timor,670,Failed Calls
+514,999,tl,East Timor,670,Fix Line
+514,03,tl,East Timor,670,Telemor
+514,01,tl,East Timor,670,Telkomcel
+514,02,tl,East Timor,670,Timor Telecom
+740,01,ec,Ecuador,593,Claro
+740,02,ec,Ecuador,593,CNT movil
+740,299,ec,Ecuador,593,Failed Calls
+740,999,ec,Ecuador,593,Fix Line
+740,00,ec,Ecuador,593,Movistar
+602,03,eg,Egypt,20,Etisalat
+602,299,eg,Egypt,20,Failed Calls
+602,999,eg,Egypt,20,Fix Line
+602,01,eg,Egypt,20,Orange
+602,02,eg,Egypt,20,Vodafone
+602,04,eg,Egypt,20,WE
+706,01,sv,El Salvador,503,Claro
+706,02,sv,El Salvador,503,Digicel
+706,299,sv,El Salvador,503,Failed Calls
+706,999,sv,El Salvador,503,Fix Line
+706,04,sv,El Salvador,503,Movistar
+706,05,sv,El Salvador,503,RED
+706,03,sv,El Salvador,503,Tigo
+627,299,gq,Equatorial Guinea,240,Failed Calls
+627,999,gq,Equatorial Guinea,240,Fix Line
+627,03,gq,Equatorial Guinea,240,Muni
+627,01,gq,Equatorial Guinea,240,Orange
+657,01,er,Eritrea,291,Eritel
+657,299,er,Eritrea,291,Failed Calls
+657,999,er,Eritrea,291,Fix Line
+248,02,ee,Estonia,372,Elisa
+248,299,ee,Estonia,372,Failed Calls
+248,999,ee,Estonia,372,Fix Line
+248,03,ee,Estonia,372,Tele2
+248,01,ee,Estonia,372,Telia
+248,13,ee,Estonia,372,Telia
+248,04,ee,Estonia,372,TravelSim
+636,01,et,Ethiopia,251,Ethio Mobile
+636,299,et,Ethiopia,251,Failed Calls
+636,999,et,Ethiopia,251,Fix Line
+750,299,fk,Falkland Islands,500,Failed Calls
+750,999,fk,Falkland Islands,500,Fix Line
+750,001,fk,Falkland Islands,500,Sure
+288,299,fo,Faroe Islands,298,Failed Calls
+288,01,fo,Faroe Islands,298,Faroese Telecom
+288,999,fo,Faroe Islands,298,Fix Line
+288,02,fo,Faroe Islands,298,Hey / Kall
+288,03,fo,Faroe Islands,298,Tosa
+542,02,fj,Fiji,679,DigiCell
+542,299,fj,Fiji,679,Failed Calls
+542,999,fj,Fiji,679,Fix Line
+542,01,fj,Fiji,679,Vodafone
+244,14,fi,Finland,358,Alcom
+244,299,fi,Finland,358,Benemen
+244,26,fi,Finland,358,Compatel
+244,299,fi,Finland,358,Cuuma
+244,12,fi,Finland,358,DNA
+244,13,fi,Finland,358,DNA
+244,04,fi,Finland,358,DNA
+244,03,fi,Finland,358,DNA
+244,06,fi,Finland,358,Elisa
+244,21,fi,Finland,358,Elisa
+244,05,fi,Finland,358,Elisa
+244,299,fi,Finland,358,Failed Calls
+244,999,fi,Finland,358,Fix Line
+244,299,fi,Finland,358,interactive digital media / IDM
+244,299,fi,Finland,358,IPIFY
+244,299,fi,Finland,358,Lancelot
+244,299,fi,Finland,358,MI Carrier Services
+244,299,fi,Finland,358,MobiWeb
+244,24,fi,Finland,358,Nord Connect
+244,09,fi,Finland,358,NSN
+244,07,fi,Finland,358,NSN
+244,39,fi,Finland,358,NSN
+244,38,fi,Finland,358,NSN
+244,41,fi,Finland,358,NSN
+244,08,fi,Finland,358,NSN
+244,40,fi,Finland,358,NSN
+244,299,fi,Finland,358,RAILI
+244,43,fi,Finland,358,Telavox
+244,36,fi,Finland,358,Telia
+244,91,fi,Finland,358,Telia
+244,15,fi,Finland,358,Telit
+244,37,fi,Finland,358,Tismi
+244,299,fi,Finland,358,TravelSim
+244,299,fi,Finland,358,Twilio
+244,35,fi,Finland,358,Ukko Mobile
+244,42,fi,Finland,358,Viahub
+244,45,fi,Finland,358,VIRVE
+244,47,fi,Finland,358,VIRVE
+244,33,fi,Finland,358,VIRVE
+244,46,fi,Finland,358,VIRVE
+244,32,fi,Finland,358,Voxbone / Bandwidth
+208,299,fr,France,33,Add-On Multimedia
+208,299,fr,France,33,Afone Mobile
+208,28,fr,France,33,Airmob
+208,299,fr,France,33,Alphalink
+208,299,fr,France,33,Alphalink
+208,299,fr,France,33,Annatel
+208,299,fr,France,33,Atlas
+208,299,fr,France,33,Auchan
+208,299,fr,France,33,Auchan
+208,299,fr,France,33,Axialys
+208,299,fr,France,33,Bazile
+208,299,fr,France,33,BJT
+208,299,fr,France,33,BJT
+208,88,fr,France,33,Bouygues Telecom
+208,21,fr,France,33,Bouygues Telecom
+208,20,fr,France,33,Bouygues Telecom
+208,299,fr,France,33,Bretagne Telecom
+208,299,fr,France,33,CAT
+208,299,fr,France,33,CELESTE
+208,34,fr,France,33,Cellhire
+208,299,fr,France,33,Codepi
+208,299,fr,France,33,Coolwave
+208,27,fr,France,33,Coriolis
+208,299,fr,France,33,CPRO
+208,299,fr,France,33,CRH
+208,299,fr,France,33,CRT
+208,299,fr,France,33,CTExcel
+208,299,fr,France,33,Doctolib
+208,299,fr,France,33,Failed Calls
+208,999,fr,France,33,Fix Line
+208,299,fr,France,33,Foliateam
+208,15,fr,France,33,Free Mobile
+208,36,fr,France,33,Free Mobile
+208,35,fr,France,33,Free Mobile
+208,16,fr,France,33,Free Mobile
+208,94,fr,France,33,Halys
+208,299,fr,France,33,Happy Telecom
+208,299,fr,France,33,Hexatel
+208,89,fr,France,33,Hub One
+208,299,fr,France,33,i-via
+208,37,fr,France,33,IP Directions
+208,299,fr,France,33,IP Telecom
+208,299,fr,France,33,Iptis
+208,299,fr,France,33,JOi
+208,299,fr,France,33,Kertel
+208,299,fr,France,33,Keyyo Mobile
+208,299,fr,France,33,La Poste Mobile
+208,299,fr,France,33,La Poste Mobile
+208,299,fr,France,33,LASOTEL
+208,38,fr,France,33,Lebara
+208,17,fr,France,33,Legos
+208,299,fr,France,33,Linkt
+208,299,fr,France,33,LITEYEAR
+208,25,fr,France,33,Lycamobile
+208,03,fr,France,33,MobiquiThings
+208,24,fr,France,33,MobiquiThings
+208,299,fr,France,33,Netcom
+208,39,fr,France,33,Networth Telecom
+208,299,fr,France,33,Nordnet
+208,26,fr,France,33,NRJ
+208,299,fr,France,33,onoff
+208,299,fr,France,33,OpenIP
+208,01,fr,France,33,Orange
+208,32,fr,France,33,Orange
+208,91,fr,France,33,Orange
+208,02,fr,France,33,Orange
+208,299,fr,France,33,Paritel
+208,299,fr,France,33,Prixtel
+208,299,fr,France,33,Prixtel
+208,299,fr,France,33,SCT TELECOM
+208,299,fr,France,33,SCT TELECOM
+208,299,fr,France,33,Sewan Communications
+208,13,fr,France,33,SFR
+208,09,fr,France,33,SFR
+208,08,fr,France,33,SFR
+208,11,fr,France,33,SFR
+208,10,fr,France,33,SFR
+208,299,fr,France,33,SIMbioz
+208,30,fr,France,33,Syma Mobile
+208,299,fr,France,33,TDF
+208,299,fr,France,33,Tismi
+208,22,fr,France,33,Transatel
+208,299,fr,France,33,Trunkline
+208,12,fr,France,33,Truphone
+208,299,fr,France,33,unyc
+208,299,fr,France,33,VA SOLUTIONS
+208,31,fr,France,33,Vectone Mobile
+208,299,fr,France,33,VOIP Telecom
+547,299,pf,French Polynesia,689,Failed Calls
+547,999,pf,French Polynesia,689,Fix Line
+547,299,pf,French Polynesia,689,Ora
+547,20,pf,French Polynesia,689,Vini
+547,15,pf,French Polynesia,689,Vodafone
+628,03,ga,Gabon,241,Airtel
+628,299,ga,Gabon,241,Failed Calls
+628,999,ga,Gabon,241,Fix Line
+628,01,ga,Gabon,241,Libertis
+607,02,gm,Gambia,220,Africel
+607,03,gm,Gambia,220,Comium
+607,299,gm,Gambia,220,Failed Calls
+607,999,gm,Gambia,220,Fix Line
+607,01,gm,Gambia,220,Gamcel
+607,04,gm,Gambia,220,QCell
+282,04,ge,Georgia,995,Beeline
+282,299,ge,Georgia,995,Failed Calls
+282,999,ge,Georgia,995,Fix Line
+282,01,ge,Georgia,995,Geocell
+282,07,ge,Georgia,995,GlobalCell
+282,02,ge,Georgia,995,MagtiCom
+282,11,ge,Georgia,995,Mobilive
+282,22,ge,Georgia,995,MyPhone
+282,10,ge,Georgia,995,Premium Net
+282,08,ge,Georgia,995,Silknet
+282,12,ge,Georgia,995,Telecom 1
+262,23,de,Germany,49,1&1
+262,299,de,Germany,49,Argon Networks
+262,10,de,Germany,49,DB Netz
+262,20,de,Germany,49,Telefonica / E-Plus
+262,999,de,Germany,49,Fix Line
+262,14,de,Germany,49,Lebara
+262,43,de,Germany,49,Lycamobile
+262,21,de,Germany,49,Multiconnect
+262,22,de,Germany,49,sipgate
+262,12,de,Germany,49,sipgate
+262,78,de,Germany,49,T-mobile
+262,06,de,Germany,49,T-mobile
+262,01,de,Germany,49,T-mobile
+262,24,de,Germany,49,TelcoVillage
+262,03,de,Germany,49,Telefonica / E-Plus
+262,05,de,Germany,49,Telefonica / E-Plus
+262,17,de,Germany,49,Telefonica / E-Plus
+262,16,de,Germany,49,Telefonica / O2
+262,07,de,Germany,49,Telefonica / O2
+262,11,de,Germany,49,Telefonica / O2
+262,08,de,Germany,49,Telefonica / O2
+262,299,de,Germany,49,Tismi
+262,299,de,Germany,49,Truphone
+262,42,de,Germany,49,Vodafone
+262,09,de,Germany,49,Vodafone
+262,04,de,Germany,49,Vodafone
+262,02,de,Germany,49,Vodafone
+620,03,gh,Ghana,233,Airtel
+620,06,gh,Ghana,233,Airtel
+620,299,gh,Ghana,233,Comsys
+620,299,gh,Ghana,233,Failed Calls
+620,999,gh,Ghana,233,Fix Line
+620,07,gh,Ghana,233,Glo
+620,01,gh,Ghana,233,MTN
+620,05,gh,Ghana,233,National Security
+620,08,gh,Ghana,233,Surfline
+620,02,gh,Ghana,233,Vodafone
+266,299,gi,Gibraltar,350,Failed Calls
+266,999,gi,Gibraltar,350,Fix Line
+266,299,gi,Gibraltar,350,GibFibreSpeed
+266,01,gi,Gibraltar,350,Gibtel
+202,299,gr,Greece,30,AMD Telecom
+202,299,gr,Greece,30,Apifon
+202,15,gr,Greece,30,BWS
+202,02,gr,Greece,30,Cosmote
+202,01,gr,Greece,30,Cosmote
+202,999,gr,Greece,30,Fix Line
+202,16,gr,Greece,30,Inter Telecom
+202,299,gr,Greece,30,Interconnect
+202,299,gr,Greece,30,M-STAT
+202,299,gr,Greece,30,Nova
+202,04,gr,Greece,30,OSE
+202,03,gr,Greece,30,OTE
+202,299,gr,Greece,30,OTEGLOBE
+202,299,gr,Greece,30,Premium Net
+202,05,gr,Greece,30,Vodafone
+202,09,gr,Greece,30,Wind
+202,10,gr,Greece,30,Wind
+202,12,gr,Greece,30,Yuboto
+290,299,gl,Greenland,299,Failed Calls
+290,999,gl,Greenland,299,Fix Line
+290,01,gl,Greenland,299,Tele Greenland
+352,050,gd,Grenada,1473,Digicel
+352,299,gd,Grenada,1473,Failed Calls
+352,999,gd,Grenada,1473,Fix Line
+352,110,gd,Grenada,1473,Flow
+352,299,gd,Grenada,1473,Spice Mobile
+340,08,gf,Guadeloupe and Martinique and French Guiana,594,Amigo
+340,20,gf,Guadeloupe and Martinique and French Guiana,594,Digicel
+340,299,gf,Guadeloupe and Martinique and French Guiana,594,Failed Calls
+340,999,gf,Guadeloupe and Martinique and French Guiana,594,Fix Line
+340,04,gf,Guadeloupe and Martinique and French Guiana,594,Free
+340,01,gf,Guadeloupe and Martinique and French Guiana,594,Orange
+340,02,gf,Guadeloupe and Martinique and French Guiana,594,SFR
+310,370,gu,Guam,1671,Docomo Pacific
+310,470,gu,Guam,1671,Docomo Pacific
+310,299,gu,Guam,1671,Failed Calls
+310,999,gu,Guam,1671,Fix Line
+310,140,gu,Guam,1671,GTA
+310,110,gu,Guam,1671,IT&E
+704,01,gt,Guatemala,502,Claro
+704,299,gt,Guatemala,502,Failed Calls
+704,999,gt,Guatemala,502,Fix Line
+704,03,gt,Guatemala,502,Movistar
+704,02,gt,Guatemala,502,Tigo
+611,05,gn,Guinea,224,Cellcom
+611,299,gn,Guinea,224,Failed Calls
+611,999,gn,Guinea,224,Fix Line
+611,04,gn,Guinea,224,MTN
+611,01,gn,Guinea,224,Orange
+632,299,gw,Guinea-Bissau,245,Failed Calls
+632,999,gw,Guinea-Bissau,245,Fix Line
+632,01,gw,Guinea-Bissau,245,Guinetel
+632,02,gw,Guinea-Bissau,245,MTN
+632,03,gw,Guinea-Bissau,245,Orange
+738,02,gy,Guyana,592,Cellink
+738,01,gy,Guyana,592,Digicel
+738,299,gy,Guyana,592,Failed Calls
+738,999,gy,Guyana,592,Fix Line
+372,02,ht,Haiti,509,Digicel
+372,299,ht,Haiti,509,Failed Calls
+372,999,ht,Haiti,509,Fix Line
+372,03,ht,Haiti,509,Natcom
+708,01,hn,Honduras,504,Claro
+708,001,hn,Honduras,504,Claro
+708,299,hn,Honduras,504,Failed Calls
+708,999,hn,Honduras,504,Fix Line
+708,030,hn,Honduras,504,HonduTel
+708,30,hn,Honduras,504,HonduTel
+708,02,hn,Honduras,504,Tigo
+708,002,hn,Honduras,504,Tigo
+454,14,hk,Hong Kong,852,3
+454,05,hk,Hong Kong,852,3
+454,04,hk,Hong Kong,852,3
+454,03,hk,Hong Kong,852,3
+454,13,hk,Hong Kong,852,China Mobile
+454,12,hk,Hong Kong,852,China Mobile
+454,30,hk,Hong Kong,852,China Mobile
+454,32,hk,Hong Kong,852,HKBN
+454,07,hk,Hong Kong,852,China Unicom
+454,11,hk,Hong Kong,852,CHKTL
+454,01,hk,Hong Kong,852,Citic
+454,31,hk,Hong Kong,852,CTExcel
+454,36,hk,Hong Kong,852,Eascotel
+454,999,hk,Hong Kong,852,Fix Line
+454,393,hk,Hong Kong,852,Government
+454,27,hk,Hong Kong,852,Government
+454,397,hk,Hong Kong,852,Government
+454,392,hk,Hong Kong,852,Government
+454,25,hk,Hong Kong,852,Government
+454,396,hk,Hong Kong,852,Government
+454,391,hk,Hong Kong,852,Government
+454,395,hk,Hong Kong,852,Government
+454,390,hk,Hong Kong,852,Government
+454,28,hk,Hong Kong,852,Government
+454,26,hk,Hong Kong,852,Government
+454,394,hk,Hong Kong,852,Government
+454,398,hk,Hong Kong,852,Government
+454,24,hk,Hong Kong,852,Multibyte
+454,15,hk,Hong Kong,852,SmarTone
+454,17,hk,Hong Kong,852,SmarTone
+454,06,hk,Hong Kong,852,SmarTone
+454,02,hk,Hong Kong,852,SUN Mobile / CSL
+454,00,hk,Hong Kong,852,SUN Mobile / CSL
+454,10,hk,Hong Kong,852,SUN Mobile / CSL
+454,16,hk,Hong Kong,852,SUN Mobile / CSL
+454,20,hk,Hong Kong,852,SUN Mobile / CSL
+454,18,hk,Hong Kong,852,SUN Mobile / CSL
+454,19,hk,Hong Kong,852,SUN Mobile / CSL
+454,08,hk,Hong Kong,852,Tru
+454,35,hk,Hong Kong,852,Webbing
+216,299,hu,Hungary,36,Antenna
+216,03,hu,Hungary,36,Digi
+216,999,hu,Hungary,36,Fix line
+216,299,hu,Hungary,36,Invitech
+216,299,hu,Hungary,36,Mobil4
+216,02,hu,Hungary,36,MVM NET
+216,299,hu,Hungary,36,Netfone
+216,299,hu,Hungary,36,TARR
+216,30,hu,Hungary,36,Telekom
+216,01,hu,Hungary,36,Telenor
+216,299,hu,Hungary,36,Vidanet
+216,71,hu,Hungary,36,Vodafone
+216,70,hu,Hungary,36,Vodafone
+274,299,is,Iceland,354,Failed Calls
+274,999,is,Iceland,354,Fix Line
+274,11,is,Iceland,354,NOVA
+274,31,is,Iceland,354,Siminn
+274,08,is,Iceland,354,Siminn
+274,01,is,Iceland,354,Siminn
+274,16,is,Iceland,354,Tismi
+274,04,is,Iceland,354,Viking Wireless
+274,12,is,Iceland,354,Vodafone
+274,03,is,Iceland,354,Vodafone
+274,02,is,Iceland,354,Vodafone
+404,91,in,India,91,Aircel
+404,33,in,India,91,Aircel
+404,42,in,India,91,Aircel
+404,29,in,India,91,Aircel
+404,25,in,India,91,Aircel
+404,41,in,India,91,Aircel
+404,28,in,India,91,Aircel
+404,37,in,India,91,Aircel
+404,35,in,India,91,Aircel
+404,17,in,India,91,Aircel
+404,16,in,India,91,Airtel
+404,95,in,India,91,Airtel
+404,70,in,India,91,Airtel
+404,10,in,India,91,Airtel
+404,94,in,India,91,Airtel
+404,98,in,India,91,Airtel
+404,06,in,India,91,Airtel
+404,93,in,India,91,Airtel
+404,49,in,India,91,Airtel
+404,97,in,India,91,Airtel
+404,03,in,India,91,Airtel
+404,92,in,India,91,Airtel
+404,31,in,India,91,Airtel
+404,96,in,India,91,Airtel
+404,02,in,India,91,Airtel
+404,90,in,India,91,Airtel
+404,55,in,India,91,BSNL Mobile
+404,73,in,India,91,BSNL Mobile
+404,34,in,India,91,BSNL Mobile
+404,62,in,India,91,BSNL Mobile
+404,77,in,India,91,BSNL Mobile
+404,54,in,India,91,BSNL Mobile
+404,72,in,India,91,BSNL Mobile
+404,59,in,India,91,BSNL Mobile
+404,76,in,India,91,BSNL Mobile
+404,81,in,India,91,BSNL Mobile
+404,53,in,India,91,BSNL Mobile
+404,71,in,India,91,BSNL Mobile
+404,58,in,India,91,BSNL Mobile
+404,75,in,India,91,BSNL Mobile
+404,80,in,India,91,BSNL Mobile
+404,51,in,India,91,BSNL Mobile
+404,66,in,India,91,BSNL Mobile
+404,57,in,India,91,BSNL Mobile
+404,74,in,India,91,BSNL Mobile
+404,38,in,India,91,BSNL Mobile
+404,64,in,India,91,BSNL Mobile
+404,69,in,India,91,Dolphin
+404,299,in,India,91,Failed Calls
+404,999,in,India,91,Fix Line
+404,68,in,India,91,Garuda
+404,89,in,India,91,Idea
+404,22,in,India,91,Idea
+404,849,in,India,91,Idea
+404,04,in,India,91,Idea
+404,78,in,India,91,Idea
+404,87,in,India,91,Idea
+404,19,in,India,91,Idea
+404,848,in,India,91,Idea
+404,56,in,India,91,Idea
+404,853,in,India,91,Idea
+404,14,in,India,91,Idea
+404,846,in,India,91,Idea
+404,44,in,India,91,Idea
+404,852,in,India,91,Idea
+404,12,in,India,91,Idea
+404,845,in,India,91,Idea
+404,24,in,India,91,Idea
+404,850,in,India,91,Idea
+404,07,in,India,91,Idea
+404,82,in,India,91,Idea
+404,869,in,India,91,Jio
+404,860,in,India,91,Jio
+404,865,in,India,91,Jio
+404,857,in,India,91,Jio
+404,870,in,India,91,Jio
+404,861,in,India,91,Jio
+404,854,in,India,91,Jio
+404,874,in,India,91,Jio
+404,866,in,India,91,Jio
+404,871,in,India,91,Jio
+404,862,in,India,91,Jio
+404,855,in,India,91,Jio
+404,867,in,India,91,Jio
+404,858,in,India,91,Jio
+404,872,in,India,91,Jio
+404,863,in,India,91,Jio
+404,868,in,India,91,Jio
+404,859,in,India,91,Jio
+404,873,in,India,91,Jio
+404,864,in,India,91,Jio
+404,856,in,India,91,Jio
+404,21,in,India,91,Loop Mobile
+404,50,in,India,91,Reliance Mobile
+404,52,in,India,91,Reliance Mobile
+404,08,in,India,91,Reliance Mobile
+404,18,in,India,91,Reliance Mobile
+404,67,in,India,91,Reliance Mobile
+404,09,in,India,91,Reliance Mobile
+404,23,in,India,91,Reliance Mobile
+404,83,in,India,91,Reliance Mobile
+404,36,in,India,91,Reliance Mobile
+404,85,in,India,91,Reliance Mobile
+404,20,in,India,91,Vodafone
+404,01,in,India,91,Vodafone
+404,46,in,India,91,Vodafone
+404,15,in,India,91,Vodafone
+404,88,in,India,91,Vodafone
+404,43,in,India,91,Vodafone
+404,13,in,India,91,Vodafone
+404,86,in,India,91,Vodafone
+404,30,in,India,91,Vodafone
+404,11,in,India,91,Vodafone
+404,84,in,India,91,Vodafone
+404,27,in,India,91,Vodafone
+404,05,in,India,91,Vodafone
+404,60,in,India,91,Vodafone
+510,89,id,Indonesia,62,3
+510,299,id,Indonesia,62,Failed Calls
+510,999,id,Indonesia,62,Fix Line
+510,01,id,Indonesia,62,Indosat Ooredoo
+510,62,id,Indonesia,62,Indosat Ooredoo
+510,21,id,Indonesia,62,Indosat Ooredoo
+510,27,id,Indonesia,62,Net1
+510,99,id,Indonesia,62,Smartfren
+510,09,id,Indonesia,62,Smartfren
+510,28,id,Indonesia,62,Smartfren
+510,10,id,Indonesia,62,Telkomsel
+510,20,id,Indonesia,62,Telkomsel
+510,08,id,Indonesia,62,XL
+510,11,id,Indonesia,62,XL
+901,67,n/a,International Networks,882,1NCE
+901,76,n/a,International Networks,882,A1
+901,14,n/a,International Networks,882,AeroMobile
+901,299,n/a,International Networks,882,Afinna One
+901,81,n/a,International Networks,882,Airnity
+901,82,n/a,International Networks,882,AnyNet
+901,24,n/a,International Networks,882,Bandwidth
+901,55,n/a,International Networks,882,Beezz
+901,58,n/a,International Networks,882,BICS
+901,70,n/a,International Networks,882,Bubbletone
+901,18,n/a,International Networks,882,Cingular Wireless Network
+901,16,n/a,International Networks,882,Cisco Jasper
+901,48,n/a,International Networks,882,Com4 Sweden
+901,73,n/a,International Networks,882,Cubic
+901,42,n/a,International Networks,882,DCN Hub
+901,40,n/a,International Networks,882,Deutsche Telekom
+901,299,n/a,International Networks,882,DIDWW
+901,50,n/a,International Networks,882,EchoStar Mobile
+901,299,n/a,International Networks,882,Ellipsat
+901,43,n/a,International Networks,882,EMnify
+901,299,n/a,International Networks,882,EMSAT
+901,299,n/a,International Networks,882,Failed Calls
+901,999,n/a,International Networks,882,Fix Line
+901,299,n/a,International Networks,882,Global Access Services
+901,299,n/a,International Networks,882,Globalstar
+901,13,n/a,International Networks,882,GSM.AQ
+901,22,n/a,International Networks,882,i-lincc
+901,11,n/a,International Networks,882,Inmarsat
+901,20,n/a,International Networks,882,Intermatica
+901,03,n/a,International Networks,882,Iridium
+901,69,n/a,International Networks,882,Legos
+901,66,n/a,International Networks,882,Limitless
+901,52,n/a,International Networks,882,Manx Telecom
+901,19,n/a,International Networks,882,Maritime Roaming Service
+901,299,n/a,International Networks,882,MCNtelecom
+901,12,n/a,International Networks,882,MCP
+901,59,n/a,International Networks,882,MessageBird
+901,27,n/a,International Networks,882,Monaco Telecom
+901,84,n/a,International Networks,882,Movistar
+901,38,n/a,International Networks,882,MTT
+901,39,n/a,International Networks,882,MTX Connect
+901,17,n/a,International Networks,882,Navitas Telecom
+901,79,n/a,International Networks,882,Nokia
+901,85,n/a,International Networks,882,O2
+901,15,n/a,International Networks,882,OnAir
+901,41,n/a,International Networks,882,One Network
+901,47,n/a,International Networks,882,Ooredoo
+901,31,n/a,International Networks,882,Orange
+901,299,n/a,International Networks,882,Oration Technologies
+901,299,n/a,International Networks,882,Phonegroup
+901,65,n/a,International Networks,882,Plintron
+901,75,n/a,International Networks,882,Pod
+901,299,n/a,International Networks,882,republic wireless
+901,57,n/a,International Networks,882,SAP
+901,299,n/a,International Networks,882,Sipme
+901,33,n/a,International Networks,882,SMART
+901,78,n/a,International Networks,882,Sparkle
+901,64,n/a,International Networks,882,Syniverse
+901,72,n/a,International Networks,882,Tele2
+901,299,n/a,International Networks,882,Telecom26
+901,299,n/a,International Networks,882,Telekom Malaysia
+901,29,n/a,International Networks,882,Telenor Connexion
+901,05,n/a,International Networks,882,Thuraya RMSS
+901,37,n/a,International Networks,882,Transatel
+901,62,n/a,International Networks,882,Twilio
+901,34,n/a,International Networks,882,tyntec
+901,51,n/a,International Networks,882,VisionNG
+901,21,n/a,International Networks,882,Wins
+901,299,n/a,International Networks,882,Zain
+432,299,ir,Iran,98,Anarestan
+432,299,ir,Iran,98,ApTel
+432,299,ir,Iran,98,Arian Tel
+432,299,ir,Iran,98,Failed Calls
+432,999,ir,Iran,98,Fix Line
+432,299,ir,Iran,98,LotusTel
+432,11,ir,Iran,98,MCI
+432,19,ir,Iran,98,MTCE
+432,35,ir,Iran,98,MTN IranCell
+432,20,ir,Iran,98,RighTel
+432,01,ir,Iran,98,SamanTel
+432,08,ir,Iran,98,Shatel Mobile
+432,32,ir,Iran,98,Taliya
+432,14,ir,Iran,98,Telekish
+418,05,iq,Iraq,964,Asia Cell
+418,299,iq,Iraq,964,Failed Calls
+418,999,iq,Iraq,964,Fix Line
+418,40,iq,Iraq,964,Korek
+418,45,iq,Iraq,964,Mobitel
+418,20,iq,Iraq,964,Zain
+418,30,iq,Iraq,964,Zain
+272,05,ie,Ireland,353,3
+272,02,ie,Ireland,353,3
+272,17,ie,Ireland,353,3
+272,299,ie,Ireland,353,BT
+272,299,ie,Ireland,353,Cubic Telecom
+272,299,ie,Ireland,353,Failed Calls
+272,999,ie,Ireland,353,Fix Line
+272,13,ie,Ireland,353,Lycamobile
+272,07,ie,Ireland,353,Meteor
+272,08,ie,Ireland,353,Meteor
+272,03,ie,Ireland,353,Meteor
+272,299,ie,Ireland,353,Net Feasa
+272,299,ie,Ireland,353,OGCIO
+272,11,ie,Ireland,353,Tesco Mobile
+272,15,ie,Ireland,353,Virgin Media
+272,01,ie,Ireland,353,Vodafone
+425,19,il,Israel,972,019 Mobile
+425,299,il,Israel,972,Annatel Mobile
+425,23,il,Israel,972,Beezz
+425,299,il,Israel,972,Bynet
+425,299,il,Israel,972,Cellact
+425,02,il,Israel,972,Cellcom
+425,299,il,Israel,972,Failed Calls
+425,999,il,Israel,972,Fix Line
+425,08,il,Israel,972,Golan Telecom
+425,15,il,Israel,972,Home Cellular
+425,77,il,Israel,972,Hot Mobile
+425,07,il,Israel,972,Hot Mobile
+425,13,il,Israel,972,Ituran
+425,22,il,Israel,972,Maskyoo
+425,01,il,Israel,972,Orange
+425,12,il,Israel,972,Pelephone
+425,03,il,Israel,972,Pelephone
+425,16,il,Israel,972,Rami Levy Communications
+425,299,il,Israel,972,T2T
+425,17,il,Israel,972,Von waves
+425,09,il,Israel,972,We4G
+425,14,il,Israel,972,YouPhone
+222,299,it,Italy,39,1Mobile
+222,299,it,Italy,39,A-Tono
+222,40,it,Italy,39,Agile Telecom
+222,34,it,Italy,39,BT mobile
+222,299,it,Italy,39,Esendex
+222,299,it,Italy,39,Compatel
+222,53,it,Italy,39,CoopVoce
+222,299,it,Italy,39,Daily Telecom Mobile
+222,36,it,Italy,39,Digi
+222,299,it,Italy,39,DireQ
+222,42,it,Italy,39,Enel
+222,299,it,Italy,39,Failed Calls
+222,08,it,Italy,39,Fastweb
+222,999,it,Italy,39,Fix Line
+222,99,it,Italy,39,WindTre / Hi3G
+222,50,it,Italy,39,Iliad
+222,299,it,Italy,39,Kaleyra
+222,39,it,Italy,39,SMS.it / LINK Mobility
+222,35,it,Italy,39,Lycamobile
+222,07,it,Italy,39,Noverca Italia
+222,54,it,Italy,39,Plintron
+222,33,it,Italy,39,Poste Mobile
+222,999,it,Italy,39,Premium Numbers
+222,58,it,Italy,39,rdcom
+222,30,it,Italy,39,RFI
+222,56,it,Italy,39,spusu
+222,48,it,Italy,39,Telecom Italia Mobile
+222,43,it,Italy,39,Telecom Italia Mobile
+222,01,it,Italy,39,TIM
+222,299,it,Italy,39,Sparkle
+222,299,it,Italy,39,Tiscali
+222,44,it,Italy,39,Mundio
+222,51,it,Italy,39,ho.
+222,49,it,Italy,39,Vianova Mobile
+222,06,it,Italy,39,Vodafone
+222,10,it,Italy,39,Vodafone
+222,299,it,Italy,39,Vola
+222,299,it,Italy,39,Webcom
+222,88,it,Italy,39,WindTre / WIND
+222,37,it,Italy,39,WindTre / Hi3G
+612,299,ci,Ivory Coast,225,Failed Calls
+612,999,ci,Ivory Coast,225,Fix Line
+612,02,ci,Ivory Coast,225,Moov
+612,05,ci,Ivory Coast,225,MTN
+612,03,ci,Ivory Coast,225,Orange
+338,050,jm,Jamaica,1876,Digicel
+338,299,jm,Jamaica,1876,Failed Calls
+338,999,jm,Jamaica,1876,Fix Line
+338,180,jm,Jamaica,1876,Flow
+338,110,jm,Jamaica,1876,Flow
+440,299,jp,Japan,81,Failed Calls
+440,999,jp,Japan,81,Fix Line
+440,74,jp,Japan,81,KDDI
+440,52,jp,Japan,81,KDDI
+440,75,jp,Japan,81,KDDI
+440,53,jp,Japan,81,KDDI
+440,71,jp,Japan,81,KDDI
+440,76,jp,Japan,81,KDDI
+440,54,jp,Japan,81,KDDI
+440,72,jp,Japan,81,KDDI
+440,50,jp,Japan,81,KDDI
+440,73,jp,Japan,81,KDDI
+440,51,jp,Japan,81,KDDI
+440,70,jp,Japan,81,KDDI
+440,10,jp,Japan,81,NTT DoCoMo
+440,78,jp,Japan,81,Okinawa Cellular
+440,11,jp,Japan,81,Rakuten Mobile
+440,01,jp,Japan,81,SoftBank
+440,00,jp,Japan,81,SoftBank
+440,20,jp,Japan,81,SoftBank
+440,21,jp,Japan,81,SoftBank
+440,05,jp,Japan,81,SoftBank
+416,299,jo,Jordan,962,Failed Calls
+416,999,jo,Jordan,962,Fix Line
+416,77,jo,Jordan,962,Orange
+416,03,jo,Jordan,962,Umniah
+416,01,jo,Jordan,962,Zain
+401,07,kz,Kazakhstan,7,Altel
+401,299,kz,Kazakhstan,7,Arna
+401,01,kz,Kazakhstan,7,Beeline
+401,299,kz,Kazakhstan,7,Failed Call(s)
+401,999,kz,Kazakhstan,7,Fix Line
+401,08,kz,Kazakhstan,7,Kazakhstan Online
+401,02,kz,Kazakhstan,7,Kcell
+401,77,kz,Kazakhstan,7,Tele2
+639,03,ke,Kenya,254,Airtel
+639,05,ke,Kenya,254,Airtel
+639,299,ke,Kenya,254,eferio
+639,299,ke,Kenya,254,Failed Calls
+639,06,ke,Kenya,254,Finserve Africa
+639,999,ke,Kenya,254,Fix Line
+639,09,ke,Kenya,254,Homeland Media
+639,12,ke,Kenya,254,Infura
+639,11,ke,Kenya,254,Jambo Telcoms
+639,10,ke,Kenya,254,Jamii Telecommunications
+639,04,ke,Kenya,254,Mobile Pay
+639,02,ke,Kenya,254,Safaricom
+639,01,ke,Kenya,254,Safaricom
+639,07,ke,Kenya,254,Telkom
+545,299,ki,Kiribati,686,Failed Calls
+545,999,ki,Kiribati,686,Fix Line
+545,01,ki,Kiribati,686,FrigateNet
+545,09,ki,Kiribati,686,FrigateNet
+545,299,ki,Kiribati,686,Ocean Link
+221,07,xk,Kosovo,383,D3 mobile
+221,299,xk,Kosovo,383,Failed Calls
+221,999,xk,Kosovo,383,Fix Line
+221,02,xk,Kosovo,383,IPKO
+221,299,xk,Kosovo,383,MTS
+221,01,xk,Kosovo,383,Vala
+419,299,kw,Kuwait,965,Failed Calls
+419,999,kw,Kuwait,965,Fix Line
+419,03,kw,Kuwait,965,Ooredoo
+419,299,kw,Kuwait,965,Virgin Mobile
+419,04,kw,Kuwait,965,Viva
+419,02,kw,Kuwait,965,Zain
+437,01,kg,Kyrgyzstan,996,Beeline
+437,299,kg,Kyrgyzstan,996,Failed Calls
+437,999,kg,Kyrgyzstan,996,Fix Line
+437,02,kg,Kyrgyzstan,996,KT Mobile
+437,05,kg,Kyrgyzstan,996,MegaCom
+437,09,kg,Kyrgyzstan,996,O!
+437,10,kg,Kyrgyzstan,996,Saima
+437,03,kg,Kyrgyzstan,996,Sem Mobile
+457,08,la,Laos,856,Beeline
+457,02,la,Laos,856,ETL Mobile
+457,299,la,Laos,856,Failed Calls
+457,999,la,Laos,856,Fix Line
+457,01,la,Laos,856,LTC
+457,03,la,Laos,856,Unitel
+247,05,lv,Latvia,371,Bite
+247,299,lv,Latvia,371,Failed Calls
+247,999,lv,Latvia,371,Fix Line
+247,10,lv,Latvia,371,LMT
+247,01,lv,Latvia,371,LMT
+247,299,lv,Latvia,371,Premium Numbers
+247,02,lv,Latvia,371,Tele2
+247,04,lv,Latvia,371,Tet
+247,03,lv,Latvia,371,TRIATEL
+247,08,lv,Latvia,371,VENTA Mobile
+247,09,lv,Latvia,371,XOmobile
+415,01,lb,Lebanon,961,Alfa
+415,299,lb,Lebanon,961,Failed Calls
+415,999,lb,Lebanon,961,Fix Line
+415,03,lb,Lebanon,961,Touch
+651,02,ls,Lesotho,266,Econet
+651,299,ls,Lesotho,266,Failed Calls
+651,999,ls,Lesotho,266,Fix Line
+651,01,ls,Lesotho,266,Vodacom
+618,299,lr,Liberia,231,Failed Calls
+618,999,lr,Liberia,231,Fix Line
+618,01,lr,Liberia,231,MTN / Lonestar
+618,04,lr,Liberia,231,Novafone
+618,07,lr,Liberia,231,Orange
+606,01,ly,Libya,218,Al-Madar
+606,299,ly,Libya,218,Failed Calls
+606,999,ly,Libya,218,Fix Line
+606,00,ly,Libya,218,Libyana
+606,03,ly,Libya,218,LibyaPhone Mobile
+295,02,li,Liechtenstein,423,7acht
+295,06,li,Liechtenstein,423,CUBIC
+295,299,li,Liechtenstein,423,Datamobile
+295,299,li,Liechtenstein,423,Dimoco
+295,09,li,Liechtenstein,423,EMnify
+295,299,li,Liechtenstein,423,Failed Calls
+295,999,li,Liechtenstein,423,Fix Line
+246,999,li,Liechtenstein,423,Fix Line
+295,01,li,Liechtenstein,423,FL GSM
+295,05,li,Liechtenstein,423,FL1
+295,299,li,Liechtenstein,423,SORACOM
+295,299,li,Liechtenstein,423,Telna
+246,02,lt,Lithuania,370,Bite
+246,299,lt,Lithuania,370,Failed Calls
+246,05,lt,Lithuania,370,LTG
+246,06,lt,Lithuania,370,Mediafon
+246,299,lt,Lithuania,370,SkyCall
+246,03,lt,Lithuania,370,Tele2
+246,299,lt,Lithuania,370,Teletel
+246,01,lt,Lithuania,370,Telia
+270,10,lu,Luxembourg,352,Blue Communications
+270,299,lu,Luxembourg,352,Bouygues Telecom
+270,81,lu,Luxembourg,352,e-LUX Mobile
+270,299,lu,Luxembourg,352,Eltrona
+270,299,lu,Luxembourg,352,Failed Calls
+270,999,lu,Luxembourg,352,Fix Line
+270,05,lu,Luxembourg,352,Luxembourg Online
+270,299,lu,Luxembourg,352,MTX Connect
+270,99,lu,Luxembourg,352,Orange
+270,01,lu,Luxembourg,352,Post
+270,77,lu,Luxembourg,352,Tango
+455,05,mo,Macao,853,3
+455,03,mo,Macao,853,3
+455,07,mo,Macao,853,China Telecom
+455,02,mo,Macao,853,China Telecom
+455,04,mo,Macao,853,CTM
+455,01,mo,Macao,853,CTM
+455,299,mo,Macao,853,Failed Calls
+455,999,mo,Macao,853,Fix Line
+455,06,mo,Macao,853,SmarTone
+455,00,mo,Macao,853,SmarTone
+646,01,mg,Madagascar,261,Airtel
+646,299,mg,Madagascar,261,Bip
+646,299,mg,Madagascar,261,Failed Calls
+646,999,mg,Madagascar,261,Fix Line
+646,02,mg,Madagascar,261,Orange
+646,04,mg,Madagascar,261,Telma
+650,10,mw,Malawi,265,Airtel
+650,299,mw,Malawi,265,Failed Calls
+650,999,mw,Malawi,265,Fix Line
+650,01,mw,Malawi,265,TNM
+502,156,my,Malaysia,60,Altel Communications
+502,11,my,Malaysia,60,Telekom Malaysia
+502,14,my,Malaysia,60,Telekom Malaysia
+502,19,my,Malaysia,60,Celcom
+502,13,my,Malaysia,60,Celcom
+502,10,my,Malaysia,60,DiGi
+502,16,my,Malaysia,60,DiGi
+502,299,my,Malaysia,60,Failed Calls
+502,999,my,Malaysia,60,Fix Line
+502,299,my,Malaysia,60,MKN
+502,17,my,Malaysia,60,Maxis
+502,12,my,Malaysia,60,Maxis
+502,299,my,Malaysia,60,Maxis Broadband
+502,299,my,Malaysia,60,OCESB
+502,299,my,Malaysia,60,REDtone Mobile
+502,299,my,Malaysia,60,REDtone
+502,299,my,Malaysia,60,TT dotCom
+502,150,my,Malaysia,60,Tune Talk
+502,18,my,Malaysia,60,U Mobile
+502,153,my,Malaysia,60,Webe Digital
+502,195,my,Malaysia,60,XOX Com
+502,299,my,Malaysia,60,Y-Max
+502,152,my,Malaysia,60,Yes
+472,01,mv,Maldives,960,DhiMobile
+472,299,mv,Maldives,960,Failed Calls
+472,999,mv,Maldives,960,Fix Line
+472,02,mv,Maldives,960,Ooredoo
+610,299,ml,Mali,223,Failed Calls
+610,999,ml,Mali,223,Fix Line
+610,01,ml,Mali,223,Malitel
+610,02,ml,Mali,223,Orange
+610,03,ml,Mali,223,Telecel
+278,01,mt,Malta,356,Vodafone
+278,299,mt,Malta,356,Failed Calls
+278,999,mt,Malta,356,Fix Line
+278,21,mt,Malta,356,GO Mobile
+278,30,mt,Malta,356,GO Mobile
+278,77,mt,Malta,356,Melita
+551,299,mh,Marshall Islands,692,Failed Calls
+551,999,mh,Marshall Islands,692,Fix Line
+551,299,mh,Marshall Islands,692,MINTA
+609,02,mr,Mauritania,222,Chinguitel
+609,299,mr,Mauritania,222,Failed Calls
+609,999,mr,Mauritania,222,Fix Line
+609,01,mr,Mauritania,222,Mattel
+609,10,mr,Mauritania,222,Mauritel
+617,02,mu,Mauritius,230,Chili
+617,03,mu,Mauritius,230,Chili
+617,10,mu,Mauritius,230,Emtel
+617,299,mu,Mauritius,230,Failed Calls
+617,999,mu,Mauritius,230,Fix Line
+617,01,mu,Mauritius,230,my.t mobile
+647,299,yt,Mayotte,262,Failed Calls
+647,999,yt,Mayotte,262,Fix Line
+647,01,yt,Mayotte,262,Maore Mobile
+647,10,yt,Mayotte,262,SFR
+334,140,mx,Mexico,52,ALTAN Redes
+334,299,mx,Mexico,52,Altcel
+334,050,mx,Mexico,52,AT&T / IUSACell
+334,299,mx,Mexico,52,Failed Call(s)
+334,999,mx,Mexico,52,Fix Line
+334,299,mx,Mexico,52,FreedomPop
+334,299,mx,Mexico,52,Ibo Cell
+334,299,mx,Mexico,52,Maxcom
+334,299,mx,Mexico,52,MegaTel
+334,03,mx,Mexico,52,Movistar
+334,030,mx,Mexico,52,Movistar
+334,299,mx,Mexico,52,NEUS Mobile
+334,01,mx,Mexico,52,Nextel
+334,010,mx,Mexico,52,Nextel
+334,90,mx,Mexico,52,Nextel
+334,299,mx,Mexico,52,QBOcel
+334,060,mx,Mexico,52,SAI PCS
+334,299,mx,Mexico,52,Servitron
+334,02,mx,Mexico,52,Telcel
+334,020,mx,Mexico,52,Telcel
+334,299,mx,Mexico,52,Telecomunicaciones 360
+334,80,mx,Mexico,52,Unefon
+334,70,mx,Mexico,52,Unefon
+550,299,fm,Micronesia,691,Failed Calls
+550,999,fm,Micronesia,691,Fix Line
+550,01,fm,Micronesia,691,FSMTCeLL
+259,299,md,Moldova,373,Failed Calls
+259,02,md,Moldova,373,Moldcell
+259,01,md,Moldova,373,Orange
+259,03,md,Moldova,373,Unite
+259,99,md,Moldova,373,Unite
+259,05,md,Moldova,373,Unite
+212,299,mc,Monaco,377,Failed Calls
+212,999,mc,Monaco,377,Fix Line
+212,10,mc,Monaco,377,Monaco Telecom
+212,01,mc,Monaco,377,Monaco Telecom
+428,299,mn,Mongolia,976,Failed Calls
+428,999,mn,Mongolia,976,Fix Line
+428,98,mn,Mongolia,976,G-Mobile
+428,99,mn,Mongolia,976,Mobicom
+428,00,mn,Mongolia,976,Skytel
+428,88,mn,Mongolia,976,Unitel
+297,299,me,Montenegro,382,Failed Calls
+297,999,me,Montenegro,382,Fix Line
+297,03,me,Montenegro,382,Mtel
+297,02,me,Montenegro,382,Telekom / T-mobile
+297,01,me,Montenegro,382,Telenor
+354,299,ms,Montserrat,1664,Digicel
+354,299,ms,Montserrat,1664,Failed Calls
+354,999,ms,Montserrat,1664,Fix Line
+354,860,ms,Montserrat,1664,Flow
+604,299,ma,Morocco,212,Failed Calls
+604,999,ma,Morocco,212,Fix Line
+604,01,ma,Morocco,212,IAM
+604,05,ma,Morocco,212,inwi
+604,02,ma,Morocco,212,inwi
+604,00,ma,Morocco,212,Orange
+643,299,mz,Mozambique,258,Failed Calls
+643,999,mz,Mozambique,258,Fix Line
+643,03,mz,Mozambique,258,Movitel
+643,01,mz,Mozambique,258,TMCEL
+643,04,mz,Mozambique,258,Vodacom
+414,999,mm,Myanmar,95,Failed Calls
+414,999,mm,Myanmar,95,Fix Line
+414,03,mm,Myanmar,95,MecTel
+414,00,mm,Myanmar,95,MPT
+414,01,mm,Myanmar,95,MPT
+414,09,mm,Myanmar,95,Mytel
+414,05,mm,Myanmar,95,Ooredoo
+414,06,mm,Myanmar,95,Telenor
+649,299,na,Namibia,264,Demshi
+649,299,na,Namibia,264,Failed Calls
+649,999,na,Namibia,264,Fix Line
+649,01,na,Namibia,264,MTC
+649,03,na,Namibia,264,TN Mobile
+536,02,nr,Nauru,674,Digicel
+536,299,nr,Nauru,674,Failed Calls
+536,999,nr,Nauru,674,Fix Line
+429,299,np,Nepal,977,CG Telecom
+429,299,np,Nepal,977,Failed Calls
+429,999,np,Nepal,977,Fix Line
+429,03,np,Nepal,977,Hello Nepal
+429,02,np,Nepal,977,Ncell
+429,01,np,Nepal,977,Nepal Telecom
+429,04,np,Nepal,977,Smart
+429,00,np,Nepal,977,UTL
+204,299,nl,Netherlands,31,88 mobile
+204,299,nl,Netherlands,31,AGMS
+204,30,nl,Netherlands,31,ASPIDER Solutions
+204,299,nl,Netherlands,31,Belcentrale
+204,299,nl,Netherlands,31,BodyTrace
+204,299,nl,Netherlands,31,Combird Mobile
+204,299,nl,Netherlands,31,Dean Mobile
+204,299,nl,Netherlands,31,Eazit
+204,05,nl,Netherlands,31,ElephantTalk
+204,299,nl,Netherlands,31,EziMobile
+204,299,nl,Netherlands,31,Failed Calls
+204,999,nl,Netherlands,31,Fix Line
+204,999,nl,Netherlands,31,Fix Line
+204,299,nl,Netherlands,31,interactive digital media / IDM
+204,00,nl,Netherlands,31,Intovoice
+204,299,nl,Netherlands,31,KeenMobile
+204,23,nl,Netherlands,31,KORE
+204,69,nl,Netherlands,31,KPN
+204,12,nl,Netherlands,31,KPN
+204,08,nl,Netherlands,31,KPN
+204,10,nl,Netherlands,31,KPN
+204,27,nl,Netherlands,31,L-mobi
+204,28,nl,Netherlands,31,Lancelot
+204,98,nl,Netherlands,31,Lancelot
+204,09,nl,Netherlands,31,Lycamobile
+204,63,nl,Netherlands,31,MessageBird
+204,299,nl,Netherlands,31,mGage
+204,299,nl,Netherlands,31,Motto
+204,07,nl,Netherlands,31,Move / Teleena
+204,299,nl,Netherlands,31,Okta8
+204,299,nl,Netherlands,31,Premium Numbers
+204,299,nl,Netherlands,31,Premium Routing
+204,24,nl,Netherlands,31,Private Mobility
+204,21,nl,Netherlands,31,ProRail
+204,299,nl,Netherlands,31,Redworks
+204,26,nl,Netherlands,31,SpeakUp
+204,20,nl,Netherlands,31,T-Mobile
+204,02,nl,Netherlands,31,T-Mobile
+204,16,nl,Netherlands,31,T-Mobile
+204,29,nl,Netherlands,31,Tismi
+204,33,nl,Netherlands,31,Truphone
+204,299,nl,Netherlands,31,Vectone Mobile
+204,04,nl,Netherlands,31,Vodafone
+204,03,nl,Netherlands,31,Voiceworks Mobile
+204,15,nl,Netherlands,31,Ziggo
+204,18,nl,Netherlands,31,Ziggo Services
+362,91,an,Netherlands Antilles,599,Chippie
+362,69,an,Netherlands Antilles,599,Digicel
+362,299,an,Netherlands Antilles,599,Failed Calls
+362,999,an,Netherlands Antilles,599,Fix Line
+362,299,an,Netherlands Antilles,599,Premium Numbers
+362,51,an,Netherlands Antilles,599,TelCell
+546,299,nc,New Caledonia,687,Failed Calls
+546,999,nc,New Caledonia,687,Fix Line
+546,01,nc,New Caledonia,687,Mobilis
+530,24,nz,New Zealand,64,2degrees
+530,299,nz,New Zealand,64,Compass Mobile
+530,299,nz,New Zealand,64,Devoli
+530,299,nz,New Zealand,64,Failed Calls
+530,999,nz,New Zealand,64,Fix Line
+530,299,nz,New Zealand,64,LinkTel
+530,06,nz,New Zealand,64,Skinny Mobile
+530,05,nz,New Zealand,64,Spark Mobile
+530,02,nz,New Zealand,64,Spark Mobile
+530,299,nz,New Zealand,64,Symbio
+530,299,nz,New Zealand,64,Vocus
+530,01,nz,New Zealand,64,Vodafone
+530,299,nz,New Zealand,64,Voxbone / Bandwidth
+530,299,nz,New Zealand,64,Voyager Internet
+530,299,nz,New Zealand,64,WXC
+710,73,ni,Nicaragua,505,Claro
+710,21,ni,Nicaragua,505,Claro
+710,299,ni,Nicaragua,505,CooTel
+710,299,ni,Nicaragua,505,Failed Calls
+710,999,ni,Nicaragua,505,Fix Line
+710,30,ni,Nicaragua,505,Movistar
+614,02,ne,Niger,227,Airtel
+614,299,ne,Niger,227,Failed Calls
+614,999,ne,Niger,227,Fix Line
+614,03,ne,Niger,227,Moov
+614,01,ne,Niger,227,Niger Telecoms
+614,04,ne,Niger,227,Orange
+621,60,ng,Nigeria,234,9mobile
+621,20,ng,Nigeria,234,Airtel
+621,299,ng,Nigeria,234,Alpha Technologies
+621,299,ng,Nigeria,234,Failed Calls
+621,999,ng,Nigeria,234,Fix Line
+621,50,ng,Nigeria,234,Glo Mobile
+621,30,ng,Nigeria,234,MTN
+621,40,ng,Nigeria,234,ntel
+621,27,ng,Nigeria,234,Smile
+621,299,ng,Nigeria,234,Zodafones
+555,299,nu,Niue,683,Failed Calls
+555,999,nu,Niue,683,Fix Line
+555,01,nu,Niue,683,Telecom Niue
+467,299,kp,North Korea,850,Failed Calls
+467,999,kp,North Korea,850,Fix Line
+467,299,kp,North Korea,850,Kangsung Net
+467,192,kp,North Korea,850,Koryolink
+294,03,mk,North Macedonia,389,A1
+294,02,mk,North Macedonia,389,A1
+294,299,mk,North Macedonia,389,Failed Calls
+259,999,mk,North Macedonia,389,Fix Line
+294,999,mk,North Macedonia,389,Fix Line
+294,299,mk,North Macedonia,389,LATRON
+294,04,mk,North Macedonia,389,Lycamobile
+294,11,mk,North Macedonia,389,Mobik
+294,299,mk,North Macedonia,389,Telekabel
+294,01,mk,North Macedonia,389,Telekom
+534,299,mp,Northern Mariana Islands,1670,Failed Calls
+534,999,mp,Northern Mariana Islands,1670,Fix Line
+242,22,no,Norway,47,Altibox Mobil
+242,20,no,Norway,47,BANE NOR
+242,21,no,Norway,47,BANE NOR
+242,299,no,Norway,47,bigblu
+242,299,no,Norway,47,Chilimobil
+242,09,no,Norway,47,Com4
+242,15,no,Norway,47,eRate
+242,299,no,Norway,47,Failed Calls
+242,999,no,Norway,47,Fix Line
+242,299,no,Norway,47,GlobalConnect
+242,299,no,Norway,47
+242,14,no,Norway,47,ICE
+242,299,no,Norway,47,intility
+242,16,no,Norway,47,Iristel
+242,299,no,Norway,47,JetNett
+242,23,no,Norway,47,Lycamobile
+242,05,no,Norway,47,Network Norway
+242,299,no,Norway,47,NextGenTel
+242,10,no,Norway,47,Nkom
+242,299,no,Norway,47,Nodnett
+242,06,no,Norway,47,ICE
+242,299,no,Norway,47,Puzzel
+242,299,no,Norway,47,Sierra Wireless
+242,299,no,Norway,47,Svea
+242,299,no,Norway,47,Telavox
+242,12,no,Norway,47,Telenor
+242,01,no,Norway,47,Telenor
+242,08,no,Norway,47,Telia / NetCom
+242,02,no,Norway,47,Telia / NetCom
+242,299,no,Norway,47,unifon
+422,299,om,Oman,968,Failed Calls
+422,999,om,Oman,968,Fix Line
+422,02,om,Oman,968,Omantel Mobile
+422,03,om,Oman,968,Ooredoo / Nawras
+410,299,pk,Pakistan,92,Failed Calls
+410,999,pk,Pakistan,92,Fix Line
+410,07,pk,Pakistan,92,Jazz
+410,01,pk,Pakistan,92,Jazz
+410,05,pk,Pakistan,92,SCOM
+410,06,pk,Pakistan,92,Telenor
+410,03,pk,Pakistan,92,Ufone
+410,299,pk,Pakistan,92,Warid
+410,04,pk,Pakistan,92,Zong
+552,299,pw,Palau,680,Failed Calls
+552,999,pw,Palau,680,Fix Line
+552,99,pw,Palau,680,Palau Mobile
+552,01,pw,Palau,680,PalauCel
+552,02,pw,Palau,680,PT Waves
+425,299,ps,Palestinian Territory,970,Failed Calls
+425,999,ps,Palestinian Territory,970,Fix Line
+425,05,ps,Palestinian Territory,970,Jawwal
+425,06,ps,Palestinian Territory,970,Ooredoo
+714,01,pa,Panama,507,+Movil
+714,03,pa,Panama,507,Claro
+714,04,pa,Panama,507,Digicel
+714,299,pa,Panama,507,Failed Calls
+714,999,pa,Panama,507,Fix Line
+714,020,pa,Panama,507,Movistar
+714,02,pa,Panama,507,Movistar
+537,01,pg,Papua New Guinea,675,BeMobile Vodafone
+537,02,pg,Papua New Guinea,675,Citifon
+537,03,pg,Papua New Guinea,675,Digicel
+537,299,pg,Papua New Guinea,675,DIGIVOIP
+537,299,pg,Papua New Guinea,675,Failed Calls
+537,999,pg,Papua New Guinea,675,Fix Line
+744,02,py,Paraguay,595,Claro
+744,299,py,Paraguay,595,Failed Calls
+744,999,py,Paraguay,595,Fix Line
+744,03,py,Paraguay,595,Personal
+744,04,py,Paraguay,595,Tigo
+744,01,py,Paraguay,595,VOX
+716,70,pe,Peru,51,Claro
+716,20,pe,Peru,51,Claro
+716,10,pe,Peru,51,Claro
+716,299,pe,Peru,51,Dolphin
+716,17,pe,Peru,51,Entel
+716,299,pe,Peru,51,Failed Calls
+716,999,pe,Peru,51,Fix Line
+716,06,pe,Peru,51,Movistar
+716,07,pe,Peru,51,Entel
+716,30,pe,Peru,51,Tuyo
+716,15,pe,Peru,51,Viettel
+515,66,ph,Philippines,63,DITO
+515,299,ph,Philippines,63,Failed Calls
+515,999,ph,Philippines,63,Fix Line
+515,01,ph,Philippines,63,Globe
+515,02,ph,Philippines,63,Globe
+515,03,ph,Philippines,63,Smart
+515,05,ph,Philippines,63,Sun Cellular
+260,299,pl,Poland,48,3S
+260,15,pl,Poland,48,Aero2
+260,04,pl,Poland,48,Aero2
+260,17,pl,Poland,48,Aero2
+260,16,pl,Poland,48,Aero2
+260,48,pl,Poland,48,Agile Telecom
+260,18,pl,Poland,48,AMD Telecom
+260,299,pl,Poland,48,Benemen
+260,299,pl,Poland,48,BSG
+260,299,pl,Poland,48,Caritas Laczy
+260,299,pl,Poland,48,Cludo
+260,32,pl,Poland,48,Compatel
+260,12,pl,Poland,48,Cyfrowy Polsat
+260,299,pl,Poland,48,e-Telko
+260,41,pl,Poland,48,EZ Mobile
+260,299,pl,Poland,48,Failed Calls
+260,999,pl,Poland,48,Fix Line
+260,299,pl,Poland,48,I.M. Consulting
+260,299,pl,Poland,48,Inea
+260,299,pl,Poland,48,IZZI
+260,299,pl,Poland,48,JMDI J. Maleszko
+260,299,pl,Poland,48,Klucz Mobile
+260,299,pl,Poland,48,lajt mobile
+260,299,pl,Poland,48,LoVo
+260,09,pl,Poland,48,Lycamobile
+260,49,pl,Poland,48,Messagebird
+260,299,pl,Poland,48,Metro Mobile
+260,299,pl,Poland,48,Mobile Vikings
+260,299,pl,Poland,48,Mobiledata
+260,42,pl,Poland,48,MobiWeb
+260,299,pl,Poland,48,Moja GSM
+260,13,pl,Poland,48,Move
+260,299,pl,Poland,48,multiMOBILE
+260,299,pl,Poland,48,Nasza Wizja
+260,299,pl,Poland,48,NAU Mobile
+260,299,pl,Poland,48,nc+ Mobile
+260,19,pl,Poland,48,NetBalt
+260,07,pl,Poland,48,Netia
+260,299,pl,Poland,48,Next Mobile
+260,299,pl,Poland,48,NIMBOW
+260,27,pl,Poland,48,Ntel Solutions
+260,05,pl,Poland,48,Orange
+260,03,pl,Poland,48,Orange
+260,35,pl,Poland,48,PKP
+260,06,pl,Poland,48,Play
+260,98,pl,Poland,48,Play
+260,11,pl,Poland,48,Plus
+260,01,pl,Poland,48,Plus
+260,97,pl,Poland,48,Politechnika Lodzka Uczelniane
+260,90,pl,Poland,48,Polska Spolka Gazownictwa
+260,299,pl,Poland,48,Polvoice
+260,299,pl,Poland,48,Pomagacz
+260,299,pl,Poland,48,Premium Mobile
+260,299,pl,Poland,48,Premium Numbers
+260,299,pl,Poland,48,SAT FILM
+260,14,pl,Poland,48,Move
+260,299,pl,Poland,48,SGT
+260,47,pl,Poland,48,SMSHIGHWAY
+260,299,pl,Poland,48,Softelnet
+260,34,pl,Poland,48,T-Mobile
+260,02,pl,Poland,48,T-Mobile
+260,10,pl,Poland,48,T-Mobile
+260,14,pl,Poland,48,Telco Leaders
+260,299,pl,Poland,48,Tele GO
+260,299,pl,Poland,48,TeleCube
+260,299,pl,Poland,48,Telenabler
+260,299,pl,Poland,48,TELGAM
+260,20,pl,Poland,48,Tismi
+260,299,pl,Poland,48,TOYAmobilna
+260,22,pl,Poland,48,Twilio
+260,299,pl,Poland,48,UPC
+260,299,pl,Poland,48,Vectra
+260,45,pl,Poland,48,Virgin Mobile
+260,45,pl,Poland,48,Virgin Mobile
+260,299,pl,Poland,48,Vonage
+260,39,pl,Poland,48,Voxbone / Bandwidth
+260,299,pl,Poland,48,w naszej Rodzinie
+268,299,pt,Portugal,351,Failed Calls
+268,999,pt,Portugal,351,Fix Line
+268,04,pt,Portugal,351,Lycamobile
+268,08,pt,Portugal,351,MEO
+268,06,pt,Portugal,351,MEO
+268,80,pt,Portugal,351,MEO
+268,03,pt,Portugal,351,NOS
+268,93,pt,Portugal,351,NOS
+268,299,pt,Portugal,351,NOWO
+268,299,pt,Portugal,351,Oni
+410,299,pt,Portugal,351,Premium Numbers
+268,01,pt,Portugal,351,Vodafone
+268,91,pt,Portugal,351,Vodafone
+330,30,pr,Puerto Rico,AT&T Mobility
+330,11,pr,Puerto Rico,Claro
+330,110,pr,Puerto Rico,Claro
+330,299,pr,Puerto Rico,Failed Calls
+330,999,pr,Puerto Rico,Fix Line
+330,490,pr,Puerto Rico,T-Mobile
+427,299,qa,Qatar,974,Failed Calls
+427,999,qa,Qatar,974,Fix Line
+427,01,qa,Qatar,974,Ooredoo
+427,06,qa,Qatar,974,Ooredoo
+427,02,qa,Qatar,974,Vodafone
+647,299,re,Reunion,262,Failed Calls
+647,999,re,Reunion,262,Fix Line
+647,02,re,Reunion,262,Only
+647,03,re,Reunion,262,Only
+647,00,re,Reunion,262,Orange
+647,04,re,Reunion,262,ZEOP Mobile
+226,05,ro,Romania,40,Digi Mobil
+226,299,ro,Romania,40,Failed Calls
+226,999,ro,Romania,40,Fix Line
+226,299,ro,Romania,40,Iristel
+226,16,ro,Romania,40,Lycamobile
+226,10,ro,Romania,40,Orange
+226,03,ro,Romania,40,Telekom
+226,02,ro,Romania,40,Telekom
+226,01,ro,Romania,40,Vodafone
+250,299,ru,Russia,79,Antares
+250,299,ru,Russia,79,Arktur
+250,299,ru,Russia,79,Astran
+250,299,ru,Russia,79,ASVT
+250,299,ru,Russia,79,Aurora Telecom
+250,99,ru,Russia,79,Beeline
+250,299,ru,Russia,79,Beliton
+250,299,ru,Russia,79,BIT-CENTR
+250,299,ru,Russia,79,Center 2M
+250,299,ru,Russia,79,Cifra 1
+250,299,ru,Russia,79,CountryCom
+250,299,ru,Russia,79,ECO Networks
+250,299,ru,Russia,79,Elemte
+250,299,ru,Russia,79,ER-Telecom
+250,299,ru,Russia,79,Failed Calls
+250,999,ru,Russia,79,Fix Line
+250,299,ru,Russia,79,Gazprom Telecom
+250,48,ru,Russia,79,Global Telecom
+250,55,ru,Russia,79,Glonass
+250,299,ru,Russia,79,GLONASS MOBILE
+250,299,ru,Russia,79,Integral
+250,299,ru,Russia,79,Internod
+250,299,ru,Russia,79,Intersvyaz-2
+250,34,ru,Russia,79,Krymtelecom
+250,299,ru,Russia,79,KvatroPlus
+250,299,ru,Russia,79,Lardex
+250,54,ru,Russia,79,Letai Mobile
+250,299,ru,Russia,79,Lycamobile
+250,57,ru,Russia,79,Matrix Mobile
+250,299,ru,Russia,79,Media-Market
+250,02,ru,Russia,79,Megafon
+250,299,ru,Russia,79,Metro-Pei
+250,299,ru,Russia,79,MGTS
+250,299,ru,Russia,79,Miatel
+250,299,ru,Russia,79,MOSTELECOM
+250,35,ru,Russia,79,Motiv
+250,299,ru,Russia,79,MSN Telekom
+250,01,ru,Russia,79,MTS
+250,42,ru,Russia,79,MTT
+250,299,ru,Russia,79,NCI
+250,299,ru,Russia,79,NETBYNET
+250,299,ru,Russia,79,New Mobile Communications
+250,299,ru,Russia,79,OBIT
+250,299,ru,Russia,79,Orange Business Services
+250,299,ru,Russia,79,PIN
+250,299,ru,Russia,79,Plintron
+250,299,ru,Russia,79,Quantech
+250,299,ru,Russia,79,RECONN
+250,299,ru,Russia,79,Reteyl Innovatsii
+250,299,ru,Russia,79,Sberbank-Telecom
+250,33,ru,Russia,79,SEVTELECOM
+250,299,ru,Russia,79,Sim Sim
+250,299,ru,Russia,79,Sintonik
+250,299,ru,Russia,79,Sky Networks
+250,09,ru,Russia,79,Skylink
+250,299,ru,Russia,79,SkyNet
+250,299,ru,Russia,79,Sonet
+250,299,ru,Russia,79,Sprint
+250,299,ru,Russia,79,Start
+250,299,ru,Russia,79,SunSIM
+250,299,ru,Russia,79,Surgutneftegaz
+250,299,ru,Russia,79,Svyazresurs-Mobile
+250,299,ru,Russia,79,Tander
+250,12,ru,Russia,79,Tele2
+250,20,ru,Russia,79,Tele2
+250,299,ru,Russia,79,Tinkoff Mobile
+250,299,ru,Russia,79,TMT
+250,299,ru,Russia,79,TransMobilCom
+250,299,ru,Russia,79,TRASTEL
+250,299,ru,Russia,79,TRN-telecom
+250,299,ru,Russia,79,TTK
+250,299,ru,Russia,79,TTK-Svyaz
+250,299,ru,Russia,79,TVE
+250,299,ru,Russia,79,UnitTelecom
+250,299,ru,Russia,79,Unycel
+250,299,ru,Russia,79,Vainah Telecom
+250,299,ru,Russia,79,ViKom
+250,299,ru,Russia,79,Virgin Connect
+250,299,ru,Russia,79,Voentelecom
+250,77,ru,Russia,79,Glonass
+250,60,ru,Russia,79,Volna Mobile
+250,299,ru,Russia,79,VTB Mobile
+250,32,ru,Russia,79,Win Mobile
+250,11,ru,Russia,79,Yota
+635,13,rw,Rwanda,250,Airtel
+635,299,rw,Rwanda,250,Failed Calls
+635,999,rw,Rwanda,250,Fix Line
+635,10,rw,Rwanda,250,MTN
+658,299,sh,Saint Helena and Ascension and Tristan da Cunha,290,Failed Calls
+658,999,sh,Saint Helena and Ascension and Tristan da Cunha,290,Fix Line
+356,70,kn,Saint Kitts and Nevis,1869,Chippie
+356,070,kn,Saint Kitts and Nevis,1869,Chippie
+356,50,kn,Saint Kitts and Nevis,1869,Digicel
+356,050,kn,Saint Kitts and Nevis,1869,Digicel
+356,299,kn,Saint Kitts and Nevis,1869,Failed Calls
+356,999,kn,Saint Kitts and Nevis,1869,Fix Line
+356,110,kn,Saint Kitts and Nevis,1869,Flow
+356,11,kn,Saint Kitts and Nevis,1869,Flow
+356,299,kn,Saint Kitts and Nevis,1869,The Cable
+358,05,lc,Saint Lucia,1758,Digicel
+358,050,lc,Saint Lucia,1758,Digicel
+358,299,lc,Saint Lucia,1758,Failed Calls
+358,999,lc,Saint Lucia,1758,Fix Line
+358,110,lc,Saint Lucia,1758,Flow
+358,11,lc,Saint Lucia,1758,Flow
+308,01,pm,Saint Pierre and Miquelon,508,Ameris
+308,03,pm,Saint Pierre and Miquelon,508,Ameris
+308,299,pm,Saint Pierre and Miquelon,508,Failed Calls
+308,999,pm,Saint Pierre and Miquelon,508,Fix Line
+308,02,pm,Saint Pierre and Miquelon,508,Globaltel
+360,050,vc,Saint Vincent and the Grenadines,1784,Digicel
+360,299,vc,Saint Vincent and the Grenadines,1784,Failed Calls
+360,999,vc,Saint Vincent and the Grenadines,1784,Fix Line
+360,110,vc,Saint Vincent and the Grenadines,1784,Flow
+549,27,ws,Samoa,685,BlueSky
+549,01,ws,Samoa,685,Digicel
+549,299,ws,Samoa,685,Failed Calls
+549,999,ws,Samoa,685,Fix Line
+292,299,sm,San Marino,378,Failed Calls
+292,999,sm,San Marino,378,Fix Line
+292,01,sm,San Marino,378,Prima
+292,299,sm,San Marino,378,TeleneT
+626,01,st,Sao Tome and Principe,239,CSTmovel
+626,299,st,Sao Tome and Principe,239,Failed Calls
+626,999,st,Sao Tome and Principe,239,Fix Line
+626,02,st,Sao Tome and Principe,239,Unitel
+901,299,n/a,Satellite Networks,870,Failed Calls
+901,999,n/a,Satellite Networks,870,Fix Line
+420,299,sa,Saudi Arabia,966,Failed Calls
+420,999,sa,Saudi Arabia,966,Fix Line
+420,06,sa,Saudi Arabia,966,Lebara Mobile
+420,03,sa,Saudi Arabia,966,Mobily
+420,299,sa,Saudi Arabia,966,Red Bull MOBILE
+420,299,sa,Saudi Arabia,966,Salam
+420,01,sa,Saudi Arabia,966,STC / Al Jawal
+420,05,sa,Saudi Arabia,966,Virgin Mobile
+420,04,sa,Saudi Arabia,966,Zain
+608,299,sn,Senegal,221,2s Mobile
+608,03,sn,Senegal,221,Expresso
+608,299,sn,Senegal,221,Failed Calls
+608,999,sn,Senegal,221,Fix Line
+608,02,sn,Senegal,221,Free
+608,04,sn,Senegal,221,HAYO
+608,01,sn,Senegal,221,Orange
+608,299,sn,Senegal,221,Promobile
+220,299,rs,Serbia,381,Failed Calls
+220,999,rs,Serbia,381,Fix Line
+220,11,rs,Serbia,381,Globaltel
+220,03,rs,Serbia,381,MTS
+220,01,rs,Serbia,381,Telenor
+220,05,rs,Serbia,381,VIP
+220,20,rs,Serbia,381,VIP
+633,10,sc,Seychelles,248,Airtel
+633,01,sc,Seychelles,248,Cable & Wireless
+633,299,sc,Seychelles,248,Failed Calls
+633,999,sc,Seychelles,248,Fix Line
+633,05,sc,Seychelles,248,Intelvision
+619,03,sl,Sierra Leone,232,Africell
+619,299,sl,Sierra Leone,232,Failed Calls
+619,999,sl,Sierra Leone,232,Fix Line
+619,299,sl,Sierra Leone,232,IPTel
+619,299,sl,Sierra Leone,232,Onlime
+619,01,sl,Sierra Leone,232,Orange
+619,07,sl,Sierra Leone,232,Qcell
+619,299,sl,Sierra Leone,232,SierraTel
+525,09,sg,Singapore,65,Circles.Life
+525,299,sg,Singapore,65,Failed Calls
+525,999,sg,Singapore,65,Fix Line
+525,12,sg,Singapore,65,GRID
+525,11,sg,Singapore,65,M1
+525,03,sg,Singapore,65,M1
+525,299,sg,Singapore,65,MyRepublic
+525,299,sg,Singapore,65,Nexwave
+525,299,sg,Singapore,65,redONE
+525,07,sg,Singapore,65,SingTel
+525,02,sg,Singapore,65,SingTel
+525,01,sg,Singapore,65,SingTel
+525,299,sg,Singapore,65,Smart Pinoy
+525,05,sg,Singapore,65,Starhub
+525,08,sg,Singapore,65,Starhub
+525,06,sg,Singapore,65,Starhub
+525,10,sg,Singapore,65,TPG Telecom
+525,299,sg,Singapore,65,VivoBee
+525,299,sg,Singapore,65,Zero1
+231,299,sk,Slovakia,421,Failed Calls
+231,999,sk,Slovakia,421,Fix Line
+231,06,sk,Slovakia,421,O2
+231,01,sk,Slovakia,421,Orange
+231,07,sk,Slovakia,421,Orange
+231,05,sk,Slovakia,421,Orange
+231,03,sk,Slovakia,421,Swan / 4ka
+231,02,sk,Slovakia,421,Telekom
+231,50,sk,Slovakia,421,Telekom
+231,04,sk,Slovakia,421,Telekom
+231,08,sk,Slovakia,421,Uniphone
+231,299,sk,Slovakia,421,Vonage
+231,99,sk,Slovakia,421,ZSR
+293,40,si,Slovenia,386,A1 / Si.mobil
+293,20,si,Slovenia,386,Compatel
+293,86,si,Slovenia,386,Elektro Gorenjska
+293,299,si,Slovenia,386,Failed Calls
+293,999,si,Slovenia,386,Fix Line
+293,299,si,Slovenia,386,HOT mobil
+293,299,si,Slovenia,386,Me2
+293,41,si,Slovenia,386,Mobitel
+293,299,si,Slovenia,386,Novatel
+293,10,si,Slovenia,386,Slovenske zeleznice
+293,299,si,Slovenia,386,SoftNET
+293,64,si,Slovenia,386,T-2
+293,70,si,Slovenia,386,Telemach / Tusmobil
+540,02,sb,Solomon Islands,677,bemobile
+540,01,sb,Solomon Islands,677,Breeze
+540,299,sb,Solomon Islands,677,Failed Calls
+540,999,sb,Solomon Islands,677,Fix Line
+540,299,sb,Solomon Islands,677,Satsol
+540,299,sb,Solomon Islands,677,Smile
+637,299,so,Somalia,252,AirSom
+637,299,so,Somalia,252,Failed Calls
+637,999,so,Somalia,252,Fix Line
+637,30,so,Somalia,252,Golis
+637,19,so,Somalia,252,Hormuud
+637,10,so,Somalia,252,Nationlink
+637,299,so,Somalia,252,NETCO
+637,70,so,Somalia,252,Onkod
+637,04,so,Somalia,252,Somafone
+637,299,so,Somalia,252,SomNetworks
+637,71,so,Somalia,252,Somtel
+637,299,so,Somalia,252,STG
+637,82,so,Somalia,252,Telcom Mobile
+637,01,so,Somalia,252,Telesom
+655,07,za,South Africa,27,Cell C
+655,299,za,South Africa,27,Failed Calls
+655,999,za,South Africa,27,Fix Line
+655,299,za,South Africa,27,Lycamobile
+655,10,za,South Africa,27,MTN
+655,12,za,South Africa,27,MTN
+655,73,za,South Africa,27,Rain
+655,19,za,South Africa,27,Rain
+655,38,za,South Africa,27,Rain
+655,74,za,South Africa,27,Rain
+655,05,za,South Africa,27,Telkom
+655,02,za,South Africa,27,Telkom
+655,299,za,South Africa,27,Virgin Mobile
+655,01,za,South Africa,27,Vodacom
+450,299,kr,South Korea,82,Failed Calls
+450,999,kr,South Korea,82,Fix Line
+450,07,kr,South Korea,82,KT Powertel
+450,06,kr,South Korea,82,LG U+
+450,08,kr,South Korea,82,olleh / KT
+450,02,kr,South Korea,82,olleh / KT
+450,04,kr,South Korea,82,olleh / KT
+450,11,kr,South Korea,82,SK Telecom
+450,12,kr,South Korea,82,SK Telecom
+450,05,kr,South Korea,82,SK Telecom
+659,299,ss,South Sudan,Digitel
+659,299,ss,South Sudan,Failed Calls
+659,999,ss,South Sudan,Fix Line
+659,02,ss,South Sudan,MTN
+659,06,ss,South Sudan,Zain
+214,299,es,Spain,34,ACN
+214,299,es,Spain,34,Adamo Telecom
+214,36,es,Spain,34,Alai
+214,02,es,Spain,34,Alta Tecnologia en Comunicacions
+214,299,es,Spain,34,Aurea
+214,14,es,Spain,34,Avatel Movil
+214,299,es,Spain,34,Billing Financial
+214,299,es,Spain,34,Bluephone
+214,299,es,Spain,34,CloudComms
+214,299,es,Spain,34,Dialoga
+214,22,es,Spain,34,Digi.Mobil
+214,299,es,Spain,34,Dragonet
+214,08,es,Spain,34,Euskaltel Movil
+214,299,es,Spain,34,Evolutio
+214,299,es,Spain,34,Failed Calls
+214,999,es,Spain,34,Fix Line
+214,299,es,Spain,34,Global
+214,299,es,Spain,34,GNET
+214,34,es,Spain,34,ION MOBILE
+214,299,es,Spain,34,Jetnet
+214,299,es,Spain,34,Lemonvil
+214,25,es,Spain,34,Lycamobile
+214,17,es,Spain,34,mobil R
+214,38,es,Spain,34,Movistar
+214,07,es,Spain,34,Movistar
+214,05,es,Spain,34,Movistar
+214,299,es,Spain,34,Olephone
+214,299,es,Spain,34,On Movil
+214,299,es,Spain,34,Oniti Telecom
+214,299,es,Spain,34,OperadorsCat
+214,09,es,Spain,34,Orange
+214,21,es,Spain,34,Orange
+214,03,es,Spain,34,Orange
+214,299,es,Spain,34,Pepephone
+214,299,es,Spain,34,Premium Numbers
+214,299,es,Spain,34,PTV Telecom movil
+214,299,es,Spain,34,Quattre
+214,299,es,Spain,34,Sarenet
+214,299,es,Spain,34,SEWAN
+214,19,es,Spain,34,Simyo
+214,35,es,Spain,34,SUMA movil
+214,299,es,Spain,34,Suop
+214,299,es,Spain,34,Syma
+214,16,es,Spain,34,mobil R
+214,299,es,Spain,34,Telsome
+214,299,es,Spain,34,The Telecom Boutique
+214,27,es,Spain,34,Truphone
+214,12,es,Spain,34,Venus Movil
+214,06,es,Spain,34,Vodafone
+214,01,es,Spain,34,Vodafone
+214,37,es,Spain,34,Vodafone
+214,23,es,Spain,34,Yoigo
+214,33,es,Spain,34,Yoigo
+214,29,es,Spain,34,Yoigo
+214,04,es,Spain,34,Yoigo
+214,299,es,Spain,34,You Mobile
+214,10,es,Spain,34,Zinnia
+413,05,lk,Sri Lanka,94,Airtel
+413,02,lk,Sri Lanka,94,Dialog
+413,299,lk,Sri Lanka,94,Failed Calls
+413,999,lk,Sri Lanka,94,Fix Line
+413,08,lk,Sri Lanka,94,Hutch
+413,01,lk,Sri Lanka,94,Mobitel
+634,299,sd,Sudan,249,Failed Calls
+634,999,sd,Sudan,249,Fix Line
+634,03,sd,Sudan,249,MTN
+634,02,sd,Sudan,249,MTN
+634,07,sd,Sudan,249,Sudani One
+634,06,sd,Sudan,249,Zain
+634,01,sd,Sudan,249,Zain
+746,03,sr,Suriname,597,Digicel
+746,299,sr,Suriname,597,Failed Calls
+746,999,sr,Suriname,597,Fix Line
+746,02,sr,Suriname,597,Telesur
+653,02,sz,Swaziland,268,Eswatini Mobile
+653,01,sz,Swaziland,268,EswatiniTelecom
+653,299,sz,Swaziland,268,Failed Calls
+653,999,sz,Swaziland,268,Fix Line
+653,10,sz,Swaziland,268,Swazi MTN
+240,16,se,Sweden,46
+240,35,se,Sweden,46,42 Telecom
+240,13,se,Sweden,46,A3
+240,299,se,Sweden,46,Advoco
+240,299,se,Sweden,46
+240,299,se,Sweden,46,Allo Telecom
+240,299,se,Sweden,46,Bahnhof
+240,299,se,Sweden,46,Benemen
+240,299,se,Sweden,46,Biztel
+240,299,se,Sweden,46,BM Sverige
+240,299,se,Sweden,46,Bredband 2
+240,299,se,Sweden,46,Bredbandsson
+240,299,se,Sweden,46,BSG
+240,299,se,Sweden,46,Chilimobil
+240,11,se,Sweden,46,Com Hem
+240,09,se,Sweden,46,Com4
+240,32,se,Sweden,46,Compatel
+240,299,se,Sweden,46,Connectel
+240,299,se,Sweden,46,Core Telecom
+240,299,se,Sweden,46,easy pbx
+240,299,se,Sweden,46,EasyTelecom
+240,22,se,Sweden,46,EUtel
+240,299,se,Sweden,46,Failed Calls
+240,299,se,Sweden,46,Fastcom
+240,299,se,Sweden,46,Febo Telecom
+240,299,se,Sweden,46,Fello
+240,299,se,Sweden,46,Fibio
+240,63,se,Sweden,46,Fink Telecom
+240,299,se,Sweden,46,Firstcom
+240,999,se,Sweden,46,Fix Line
+240,299,se,Sweden,46,Fonia
+240,18,se,Sweden,46,Messit / Minicall
+240,299,se,Sweden,46,Global Telefoni
+240,299,se,Sweden,46,GlobalConnect
+240,27,se,Sweden,46,Globetouch
+240,17,se,Sweden,46,Gotanet
+240,02,se,Sweden,46,3
+240,299,se,Sweden,46,Horisen
+240,299,se,Sweden,46,iCentrex
+240,23,se,Sweden,46,Infobip
+240,299,se,Sweden,46,InfraCom
+240,36,se,Sweden,46,interactive digital media / IDM
+240,299,se,Sweden,46,Ipify
+240,299,se,Sweden,46,Junyverse
+240,299,se,Sweden,46,Karma Mobil
+240,299,se,Sweden,46,Lancelot
+240,28,se,Sweden,46,LINK Mobility
+240,299,se,Sweden,46,Loxysoft
+240,12,se,Sweden,46,Lycamobile
+240,299,se,Sweden,46,Maingate
+240,299,se,Sweden,46,Megaphone
+240,299,se,Sweden,46,MessageBird
+240,29,se,Sweden,46,MI Carrier Services
+240,299,se,Sweden,46,miniTel
+240,299,se,Sweden,46,Mitto
+240,33,se,Sweden,46,Mobile Arts
+240,43,se,Sweden,46,MobiWeb
+240,299,se,Sweden,46,Molnstruktur
+240,25,se,Sweden,46,Monty Mobile
+240,299,se,Sweden,46,My Beat
+240,299,se,Sweden,46,Net at Once
+240,40,se,Sweden,46,Netmore
+240,299,se,Sweden,46,Netsize
+240,299,se,Sweden,46,Bixia AB
+240,299,se,Sweden,46,onoff
+240,299,se,Sweden,46,Premium Numbers
+240,39,se,Sweden,46,Primlight
+240,31,se,Sweden,46,Rebtel
+240,20,se,Sweden,46,Sierra Wireless
+240,15,se,Sweden,46
+240,37,se,Sweden,46,Sinch
+240,299,se,Sweden,46,soatso
+240,299,se,Sweden,46,Soluno
+240,45,se,Sweden,46,Spirius
+240,299,se,Sweden,46,SSTNet
+240,299,se,Sweden,46,Svea Billing Services
+240,299,se,Sweden,46,Svensk Konsumentmobil
+240,299,se,Sweden,46,TelaVox
+240,14,se,Sweden,46,Tele2
+240,07,se,Sweden,46,Tele2
+240,05,se,Sweden,46,Tele2
+240,299,se,Sweden,46,Telecom3 Sverige AB
+240,299,se,Sweden,46,Teledigit Scandinavia AB
+240,299,se,Sweden,46,Telekometen
+240,44,se,Sweden,46,Telenabler
+240,42,se,Sweden,46,Telenor Connexion
+240,08,se,Sweden,46,Telenor
+240,04,se,Sweden,46,Telenor
+240,01,se,Sweden,46,Telia
+240,299,se,Sweden,46,Tell it to Mi
+240,299,se,Sweden,46,Telness
+240,03,se,Sweden,46,Net 1
+240,48,se,Sweden,46,Tismi
+240,299,se,Sweden,46,Tolv Mobil
+240,21,se,Sweden,46,Trafikverket
+240,26,se,Sweden,46,Twilio
+240,299,se,Sweden,46,Unicorn Telecom
+240,19,se,Sweden,46,Vectone Mobile
+240,299,se,Sweden,46,Verbal
+240,46,se,Sweden,46,Viahub
+240,47,se,Sweden,46,Viatel
+240,299,se,Sweden,46,Vobbiz
+240,299,se,Sweden,46,Voice Integrate
+240,299,se,Sweden,46,Voicetech
+240,38,se,Sweden,46,Voxbone / Bandwidth
+240,299,se,Sweden,46,Weelia
+240,299,se,Sweden,46,Wifi.se
+240,299,se,Sweden,46,Wifog Sverige
+240,299,se,Sweden,46,XPLORA
+228,58,ch,Switzerland,41,Beeone
+228,09,ch,Switzerland,41,Comfone
+228,05,ch,Switzerland,41,Comfone
+228,999,ch,Switzerland,41,Fix Line
+228,66,ch,Switzerland,41,Inovia
+228,54,ch,Switzerland,41,Lycamobile
+228,69,ch,Switzerland,41,MTEL
+228,65,ch,Switzerland,41,Nexphone
+228,51,ch,Switzerland,41,relario
+228,03,ch,Switzerland,41,Salt Mobile
+228,06,ch,Switzerland,41,SBB
+228,08,ch,Switzerland,41,Sunrise
+228,02,ch,Switzerland,41,Sunrise
+228,53,ch,Switzerland,41,Sunrise
+228,07,ch,Switzerland,41,Sunrise
+228,60,ch,Switzerland,41,Sunrise
+228,12,ch,Switzerland,41,Sunrise
+228,01,ch,Switzerland,41,Swisscom
+228,62,ch,Switzerland,41,Telecom26
+228,70,ch,Switzerland,41,Tismi
+228,59,ch,Switzerland,41,Vectone Mobile
+417,299,sy,Syria,963,Failed Calls
+417,999,sy,Syria,963,Fix Line
+417,02,sy,Syria,963,MTN
+417,01,sy,Syria,963,Syriatel
+466,05,tw,Taiwan,886,APT
+466,12,tw,Taiwan,886,APT
+466,11,tw,Taiwan,886,Chunghwa Telecom
+466,92,tw,Taiwan,886,Chunghwa Telecom
+466,299,tw,Taiwan,886,Failed Calls
+466,03,tw,Taiwan,886,Far EasTone
+466,88,tw,Taiwan,886,Far EasTone
+466,01,tw,Taiwan,886,Far EasTone
+466,999,tw,Taiwan,886,Fix Line
+466,89,tw,Taiwan,886,T Star
+466,97,tw,Taiwan,886,Taiwan Mobile
+436,04,tj,Tajikistan,992,Babilon-Mobile
+436,05,tj,Tajikistan,992,Beeline
+436,299,tj,Tajikistan,992,Failed Calls
+436,999,tj,Tajikistan,992,Fix Line
+436,03,tj,Tajikistan,992,Megafon
+436,299,tj,Tajikistan,992,Premium Numbers
+436,01,tj,Tajikistan,992,Tcell
+436,02,tj,Tajikistan,992,Tcell
+640,05,tz,Tanzania,255,Airtel
+640,299,tz,Tanzania,255,Failed Calls
+640,999,tz,Tanzania,255,Fix Line
+640,09,tz,Tanzania,255,Halotel / Viettel
+640,99,tz,Tanzania,255,Mkulima African Telecommunication
+640,14,tz,Tanzania,255,MO Mobile
+640,11,tz,Tanzania,255,Smile Communications
+640,07,tz,Tanzania,255,Tanzania Telecommunication Corporation
+640,02,tz,Tanzania,255,Tigo / MIC
+640,04,tz,Tanzania,255,Vodacom
+640,13,tz,Tanzania,255,WiAfrica
+640,03,tz,Tanzania,255,Zanzibar Telecom / Zantel
+520,03,th,Thailand,66,AIS
+520,01,th,Thailand,66,AIS
+520,18,th,Thailand,66,dtac
+520,05,th,Thailand,66,dtac TriNet
+520,299,th,Thailand,66,Failed Calls
+520,999,th,Thailand,66,Fix Line
+520,00,th,Thailand,66,my
+520,47,th,Thailand,66,TOTmobile
+520,15,th,Thailand,66,TOTmobile
+520,04,th,Thailand,66,TrueMove H
+615,03,tg,Togo,228,Atlantique Telecom / Moov
+615,299,tg,Togo,228,Failed Calls
+615,999,tg,Togo,228,Fix Line
+615,01,tg,Togo,228,Togo Cellulaire / TogoCel
+539,43,to,Tonga,676,Digicel
+539,88,to,Tonga,676,Digicel
+539,299,to,Tonga,676,Failed Calls
+539,999,to,Tonga,676,Fix Line
+539,01,to,Tonga,676,U-Call
+539,299,to,Tonga,676,WanTok
+374,12,tt,Trinidad and Tobago,1868,bmobile
+374,130,tt,Trinidad and Tobago,1868,Digicel
+374,299,tt,Trinidad and Tobago,1868,Failed Calls
+374,999,tt,Trinidad and Tobago,1868,Fix Line
+605,299,tn,Tunisia,216,Failed Calls
+605,999,tn,Tunisia,216,Fix Line
+605,06,tn,Tunisia,216,Lycamobile
+605,03,tn,Tunisia,216,Ooredoo
+605,01,tn,Tunisia,216,Orange
+605,02,tn,Tunisia,216,TT Mobile
+286,299,tr,Turkiye,90,Asistan Telekom
+286,03,tr,Turkiye,90,Avea
+286,04,tr,Turkiye,90,Avea
+286,299,tr,Turkiye,90,BasakCell
+286,299,tr,Turkiye,90,Compatel
+286,299,tr,Turkiye,90,Fenix Telekom
+286,999,tr,Turkiye,90,Fix Line
+286,299,tr,Turkiye,90,Foniva
+286,299,tr,Turkiye,90,IsNet
+286,299,tr,Turkiye,90,Maxiphone
+286,299,tr,Turkiye,90,Medium Telekom
+286,299,tr,Turkiye,90,Mobilisim
+286,299,tr,Turkiye,90,Netgsm
+286,299,tr,Turkiye,90,Nida
+286,299,tr,Turkiye,90,Oris
+286,299,tr,Turkiye,90,Pelicell
+286,299,tr,Turkiye,90,Plus Telekom
+286,299,tr,Turkiye,90,Roitel
+286,299,tr,Turkiye,90,SesNet
+286,299,tr,Turkiye,90,TCDD
+286,299,tr,Turkiye,90,TTM
+286,01,tr,Turkiye,90,Turkcell
+286,02,tr,Turkiye,90,Vodafone
+438,01,tm,Turkmenistan,993,MTS
+438,299,tm,Turkmenistan,993,Failed Calls
+438,999,tm,Turkmenistan,993,Fix Line
+438,02,tm,Turkmenistan,993,TMCELL
+376,360,tc,Turks and Caicos Islands,Digicel
+376,050,tc,Turks and Caicos Islands,Digicel
+376,299,tc,Turks and Caicos Islands,Failed Calls
+376,999,tc,Turks and Caicos Islands,Fix Line
+376,350,tc,Turks and Caicos Islands,Flow
+553,299,tv,Tuvalu,Failed Calls
+553,999,tv,Tuvalu,Fix Line
+553,01,tv,Tuvalu,Tuvalu Telecom
+641,22,ug,Uganda,256,Airtel
+641,01,ug,Uganda,256,Airtel
+641,299,ug,Uganda,256,Failed Calls
+641,999,ug,Uganda,256,Fix Line
+641,04,ug,Uganda,256,Lycamobile
+641,11,ug,Uganda,256,Mango
+641,10,ug,Uganda,256,MTN
+641,33,ug,Uganda,256,Smile
+255,07,ua,Ukraine,380,3Mob
+255,299,ua,Ukraine,380,Failed Calls
+255,999,ua,Ukraine,380,Fix Line
+255,04,ua,Ukraine,380,IT
+255,02,ua,Ukraine,380,Kyivstar
+255,03,ua,Ukraine,380,Kyivstar
+255,06,ua,Ukraine,380,lifecell
+255,21,ua,Ukraine,380,PEOPLEnet
+255,99,ua,Ukraine,380,Phoenix
+255,01,ua,Ukraine,380,Vodafone
+424,03,ae,United Arab Emirates,971,DU
+424,02,ae,United Arab Emirates,971,Etisalat
+424,299,ae,United Arab Emirates,971,Failed Calls
+424,999,ae,United Arab Emirates,971,Fix Line
+234,78,gb,United Kingdom,44,Airwave
+234,29,gb,United Kingdom,44,aql
+234,76,gb,United Kingdom,44,BT Group
+234,00,gb,United Kingdom,44,BT Group
+234,08,gb,United Kingdom,44,BT OnePhone
+234,18,gb,United Kingdom,44,Cloud9
+234,30,gb,United Kingdom,44,T-Mobile
+234,32,gb,United Kingdom,44,T-Mobile
+234,31,gb,United Kingdom,44,T-Mobile
+234,999,gb,United Kingdom,44,Fix Line
+234,17,gb,United Kingdom,44,FlexTel
+234,04,gb,United Kingdom,44,FMS Solutions
+234,39,gb,United Kingdom,44,Gamma Mobile
+234,24,gb,United Kingdom,44,Greenfone
+234,72,gb,United Kingdom,44,Hanhaa Mobile
+234,71,gb,United Kingdom,44,Home Office
+234,20,gb,United Kingdom,44,3
+234,94,gb,United Kingdom,44,3
+234,23,gb,United Kingdom,44,Icron Network
+234,03,gb,United Kingdom,44,Jersey Airtel
+234,35,gb,United Kingdom,44,JSC Ingenicum
+234,50,gb,United Kingdom,44,JT Mobile
+234,14,gb,United Kingdom,44,LINK Mobility
+234,26,gb,United Kingdom,44,Lycamobile
+234,58,gb,United Kingdom,44,Manx Telecom Mobile
+234,28,gb,United Kingdom,44,Marathon Telecom
+234,75,gb,United Kingdom,44,Mass Response Service GmbH
+234,56,gb,United Kingdom,44,NCSC
+234,95,gb,United Kingdom,44,Network Rail
+234,12,gb,United Kingdom,44,Network Rail
+234,13,gb,United Kingdom,44,Network Rail
+234,51,gb,United Kingdom,44,now broadband
+234,34,gb,United Kingdom,44,Orange
+234,33,gb,United Kingdom,44,Orange
+234,74,gb,United Kingdom,44,Pareteum
+234,57,gb,United Kingdom,44,Sky
+234,40,gb,United Kingdom,44,spusu
+234,55,gb,United Kingdom,44,Sure Guernsey
+234,36,gb,United Kingdom,44,Sure Isle of Man
+234,99,gb,United Kingdom,44,Sure Jersey
+234,37,gb,United Kingdom,44,Synectiv
+234,16,gb,United Kingdom,44,Talk Talk
+234,27,gb,United Kingdom,44,Tata Communications Ltd
+234,11,gb,United Kingdom,44,O2
+234,10,gb,United Kingdom,44,O2
+234,02,gb,United Kingdom,44,O2
+234,22,gb,United Kingdom,44,Telesign Mobile
+234,19,gb,United Kingdom,44,TeleWare
+234,09,gb,United Kingdom,44,Tismi
+234,25,gb,United Kingdom,44,Truphone
+234,01,gb,United Kingdom,44,Vectone Mobile
+234,38,gb,United Kingdom,44,Virgin Mobile
+234,92,gb,United Kingdom,44,Vodafone
+234,07,gb,United Kingdom,44,Vodafone
+234,15,gb,United Kingdom,44,Vodafone
+234,89,gb,United Kingdom,44,Vodafone
+234,91,gb,United Kingdom,44,Vodafone
+234,77,gb,United Kingdom,44,Vodafone
+312,130,us,United States of America,1,Appalachian Wireless
+312,750,us,United States of America,1,Appalachian Wireless
+310,130,us,United States of America,1,Appalachian Wireless
+310,750,us,United States of America,1,Appalachian Wireless
+312,710,us,United States of America,1,ASTAC Cellular
+310,710,us,United States of America,1,ASTAC Cellular
+310,760,us,United States of America,1,ASTAC Cellular
+312,760,us,United States of America,1,ASTAC Cellular
+313,030,us,United States of America,1,AT&T Mobility
+312,180,us,United States of America,1,AT&T Mobility
+311,680,us,United States of America,1,AT&T Mobility
+310,680,us,United States of America,1,AT&T Mobility
+313,170,us,United States of America,1,AT&T Mobility
+311,090,us,United States of America,1,AT&T Mobility
+310,016,us,United States of America,1,AT&T Mobility
+310,150,us,United States of America,1,AT&T Mobility
+312,670,us,United States of America,1,AT&T Mobility
+312,080,us,United States of America,1,AT&T Mobility
+311,280,us,United States of America,1,AT&T Mobility
+310,280,us,United States of America,1,AT&T Mobility
+313,670,us,United States of America,1,AT&T Mobility
+313,070,us,United States of America,1,AT&T Mobility
+311,016,us,United States of America,1,AT&T Mobility
+312,210,us,United States of America,1,AT&T Mobility
+311,950,us,United States of America,1,AT&T Mobility
+310,950,us,United States of America,1,AT&T Mobility
+313,180,us,United States of America,1,AT&T Mobility
+311,150,us,United States of America,1,AT&T Mobility
+310,170,us,United States of America,1,AT&T Mobility
+312,680,us,United States of America,1,AT&T Mobility
+312,090,us,United States of America,1,AT&T Mobility
+311,380,us,United States of America,1,AT&T Mobility
+310,380,us,United States of America,1,AT&T Mobility
+313,680,us,United States of America,1,AT&T Mobility
+313,080,us,United States of America,1,AT&T Mobility
+311,030,us,United States of America,1,AT&T Mobility
+310,070,us,United States of America,1,AT&T Mobility
+312,280,us,United States of America,1,AT&T Mobility
+312,016,us,United States of America,1,AT&T Mobility
+313,210,us,United States of America,1,AT&T Mobility
+311,170,us,United States of America,1,AT&T Mobility
+310,180,us,United States of America,1,AT&T Mobility
+312,950,us,United States of America,1,AT&T Mobility
+312,150,us,United States of America,1,AT&T Mobility
+311,410,us,United States of America,1,AT&T Mobility
+310,410,us,United States of America,1,AT&T Mobility
+313,950,us,United States of America,1,AT&T Mobility
+313,090,us,United States of America,1,AT&T Mobility
+311,070,us,United States of America,1,AT&T Mobility
+310,080,us,United States of America,1,AT&T Mobility
+312,380,us,United States of America,1,AT&T Mobility
+312,030,us,United States of America,1,AT&T Mobility
+311,180,us,United States of America,1,AT&T Mobility
+313,280,us,United States of America,1,AT&T Mobility
+313,380,us,United States of America,1,AT&T Mobility
+313,016,us,United States of America,1,AT&T Mobility
+312,170,us,United States of America,1,AT&T Mobility
+311,670,us,United States of America,1,AT&T Mobility
+310,670,us,United States of America,1,AT&T Mobility
+313,150,us,United States of America,1,AT&T Mobility
+311,080,us,United States of America,1,AT&T Mobility
+310,090,us,United States of America,1,AT&T Mobility
+312,410,us,United States of America,1,AT&T Mobility
+310,030,us,United States of America,1,AT&T Mobility
+312,070,us,United States of America,1,AT&T Mobility
+311,210,us,United States of America,1,AT&T Mobility
+310,210,us,United States of America,1,AT&T Mobility
+313,410,us,United States of America,1,AT&T Mobility
+310,600,us,United States of America,1,Cellcom
+310,630,us,United States of America,1,Choice Wireless
+310,700,us,United States of America,1,cv cellular
+310,880,us,United States of America,1,DTC Wireless
+310,035,us,United States of America,1,ETEX
+310,990,us,United States of America,1,Evolve
+310,299,us,United States of America,1,Failed Calls
+310,999,us,United States of America,1,Fix Line
+311,370,us,United States of America,1,GCI Wireless
+310,430,us,United States of America,1,GCI Wireless
+311,430,us,United States of America,1,GCI Wireless
+311,690,us,United States of America,1,Limitless
+312,340,us,United States of America,1,Limitless
+310,340,us,United States of America,1,Limitless
+312,690,us,United States of America,1,Limitless
+310,690,us,United States of America,1,Limitless
+311,340,us,United States of America,1,Limitless
+313,299,us,United States of America,1,Northstar Technology
+314,299,us,United States of America,1,Northstar Technology
+310,299,us,United States of America,1,Northstar Technology
+315,299,us,United States of America,1,Northstar Technology
+311,299,us,United States of America,1,Northstar Technology
+316,299,us,United States of America,1,Northstar Technology
+312,299,us,United States of America,1,Northstar Technology
+310,540,us,United States of America,1,OWTC
+310,570,us,United States of America,1,Pioneer Cellular
+313,360,us,United States of America,1,Pioneer Cellular
+310,280,us,United States of America,1,Pioneer Cellular
+311,280,us,United States of America,1,Pioneer Cellular
+313,570,us,United States of America,1,Pioneer Cellular
+311,360,us,United States of America,1,Pioneer Cellular
+310,360,us,United States of America,1,Pioneer Cellular
+311,570,us,United States of America,1,Pioneer Cellular
+313,280,us,United States of America,1,Pioneer Cellular
+316,660,us,United States of America,1,T-Mobile
+310,270,us,United States of America,1,T-Mobile
+311,940,us,United States of America,1,T-Mobile
+316,190,us,United States of America,1,T-Mobile
+310,190,us,United States of America,1,T-Mobile
+311,311,us,United States of America,1,T-Mobile
+312,800,us,United States of America,1,T-Mobile
+311,120,us,United States of America,1,T-Mobile
+316,882,us,United States of America,1,T-Mobile
+310,800,us,United States of America,1,T-Mobile
+312,200,us,United States of America,1,T-Mobile
+316,260,us,United States of America,1,T-Mobile
+310,230,us,United States of America,1,T-Mobile
+311,830,us,United States of America,1,T-Mobile
+312,940,us,United States of America,1,T-Mobile
+311,240,us,United States of America,1,T-Mobile
+310,940,us,United States of America,1,T-Mobile
+312,270,us,United States of America,1,T-Mobile
+316,800,us,United States of America,1,T-Mobile
+310,310,us,United States of America,1,T-Mobile
+312,010,us,United States of America,1,T-Mobile
+316,200,us,United States of America,1,T-Mobile
+310,160,us,United States of America,1,T-Mobile
+311,490,us,United States of America,1,T-Mobile
+312,830,us,United States of America,1,T-Mobile
+311,160,us,United States of America,1,T-Mobile
+316,940,us,United States of America,1,T-Mobile
+310,830,us,United States of America,1,T-Mobile
+312,230,us,United States of America,1,T-Mobile
+316,270,us,United States of America,1,T-Mobile
+310,240,us,United States of America,1,T-Mobile
+311,870,us,United States of America,1,T-Mobile
+316,010,us,United States of America,1,T-Mobile
+311,250,us,United States of America,1,T-Mobile
+312,490,us,United States of America,1,T-Mobile
+316,830,us,United States of America,1,T-Mobile
+310,490,us,United States of America,1,T-Mobile
+312,120,us,United States of America,1,T-Mobile
+316,230,us,United States of America,1,T-Mobile
+310,120,us,United States of America,1,T-Mobile
+311,530,us,United States of America,1,T-Mobile
+312,870,us,United States of America,1,T-Mobile
+311,190,us,United States of America,1,T-Mobile
+310,870,us,United States of America,1,T-Mobile
+312,240,us,United States of America,1,T-Mobile
+316,490,us,United States of America,1,T-Mobile
+310,250,us,United States of America,1,T-Mobile
+311,880,us,United States of America,1,T-Mobile
+316,120,us,United States of America,1,T-Mobile
+311,260,us,United States of America,1,T-Mobile
+312,530,us,United States of America,1,T-Mobile
+316,870,us,United States of America,1,T-Mobile
+310,530,us,United States of America,1,T-Mobile
+312,160,us,United States of America,1,T-Mobile
+316,240,us,United States of America,1,T-Mobile
+310,010,us,United States of America,1,T-Mobile
+311,660,us,United States of America,1,T-Mobile
+312,880,us,United States of America,1,T-Mobile
+311,200,us,United States of America,1,T-Mobile
+310,880,us,United States of America,1,T-Mobile
+312,250,us,United States of America,1,T-Mobile
+316,530,us,United States of America,1,T-Mobile
+310,260,us,United States of America,1,T-Mobile
+311,882,us,United States of America,1,T-Mobile
+316,160,us,United States of America,1,T-Mobile
+311,270,us,United States of America,1,T-Mobile
+312,660,us,United States of America,1,T-Mobile
+311,010,us,United States of America,1,T-Mobile
+316,880,us,United States of America,1,T-Mobile
+310,660,us,United States of America,1,T-Mobile
+312,190,us,United States of America,1,T-Mobile
+316,250,us,United States of America,1,T-Mobile
+310,200,us,United States of America,1,T-Mobile
+311,800,us,United States of America,1,T-Mobile
+312,882,us,United States of America,1,T-Mobile
+311,230,us,United States of America,1,T-Mobile
+310,882,us,United States of America,1,T-Mobile
+312,260,us,United States of America,1,T-Mobile
+310,020,us,United States of America,1,Union Wireless
+310,595,us,United States of America,1,Verizon Wireless
+311,820,us,United States of America,1,Verizon Wireless
+312,895,us,United States of America,1,Verizon Wireless
+311,281,us,United States of America,1,Verizon Wireless
+312,287,us,United States of America,1,Verizon Wireless
+310,486,us,United States of America,1,Verizon Wireless
+311,592,us,United States of America,1,Verizon Wireless
+312,598,us,United States of America,1,Verizon Wireless
+311,272,us,United States of America,1,Verizon Wireless
+312,278,us,United States of America,1,Verizon Wireless
+310,289,us,United States of America,1,Verizon Wireless
+311,483,us,United States of America,1,Verizon Wireless
+312,489,us,United States of America,1,Verizon Wireless
+310,897,us,United States of America,1,Verizon Wireless
+310,274,us,United States of America,1,Verizon Wireless
+312,110,us,United States of America,1,Verizon Wireless
+310,770,us,United States of America,1,Verizon Wireless
+311,894,us,United States of America,1,Verizon Wireless
+312,910,us,United States of America,1,Verizon Wireless
+311,286,us,United States of America,1,Verizon Wireless
+312,480,us,United States of America,1,Verizon Wireless
+310,591,us,United States of America,1,Verizon Wireless
+311,597,us,United States of America,1,Verizon Wireless
+312,891,us,United States of America,1,Verizon Wireless
+311,277,us,United States of America,1,Verizon Wireless
+312,283,us,United States of America,1,Verizon Wireless
+310,482,us,United States of America,1,Verizon Wireless
+311,488,us,United States of America,1,Verizon Wireless
+312,594,us,United States of America,1,Verizon Wireless
+311,013,us,United States of America,1,Verizon Wireless
+310,279,us,United States of America,1,Verizon Wireless
+312,274,us,United States of America,1,Verizon Wireless
+311,899,us,United States of America,1,Verizon Wireless
+310,285,us,United States of America,1,Verizon Wireless
+311,390,us,United States of America,1,Verizon Wireless
+312,485,us,United States of America,1,Verizon Wireless
+310,893,us,United States of America,1,Verizon Wireless
+310,596,us,United States of America,1,Verizon Wireless
+311,890,us,United States of America,1,Verizon Wireless
+312,896,us,United States of America,1,Verizon Wireless
+311,282,us,United States of America,1,Verizon Wireless
+312,288,us,United States of America,1,Verizon Wireless
+310,487,us,United States of America,1,Verizon Wireless
+311,593,us,United States of America,1,Verizon Wireless
+312,599,us,United States of America,1,Verizon Wireless
+311,273,us,United States of America,1,Verizon Wireless
+312,279,us,United States of America,1,Verizon Wireless
+310,350,us,United States of America,1,Verizon Wireless
+311,484,us,United States of America,1,Verizon Wireless
+312,590,us,United States of America,1,Verizon Wireless
+310,898,us,United States of America,1,Verizon Wireless
+310,275,us,United States of America,1,Verizon Wireless
+310,820,us,United States of America,1,Verizon Wireless
+311,895,us,United States of America,1,Verizon Wireless
+311,287,us,United States of America,1,Verizon Wireless
+312,481,us,United States of America,1,Verizon Wireless
+310,592,us,United States of America,1,Verizon Wireless
+311,598,us,United States of America,1,Verizon Wireless
+312,892,us,United States of America,1,Verizon Wireless
+311,278,us,United States of America,1,Verizon Wireless
+312,284,us,United States of America,1,Verizon Wireless
+310,483,us,United States of America,1,Verizon Wireless
+311,489,us,United States of America,1,Verizon Wireless
+312,595,us,United States of America,1,Verizon Wireless
+311,110,us,United States of America,1,Verizon Wireless
+310,280,us,United States of America,1,Verizon Wireless
+312,275,us,United States of America,1,Verizon Wireless
+310,271,us,United States of America,1,Verizon Wireless
+311,910,us,United States of America,1,Verizon Wireless
+310,286,us,United States of America,1,Verizon Wireless
+311,480,us,United States of America,1,Verizon Wireless
+312,486,us,United States of America,1,Verizon Wireless
+310,894,us,United States of America,1,Verizon Wireless
+310,597,us,United States of America,1,Verizon Wireless
+311,891,us,United States of America,1,Verizon Wireless
+312,897,us,United States of America,1,Verizon Wireless
+311,283,us,United States of America,1,Verizon Wireless
+312,289,us,United States of America,1,Verizon Wireless
+310,488,us,United States of America,1,Verizon Wireless
+311,594,us,United States of America,1,Verizon Wireless
+312,770,us,United States of America,1,Verizon Wireless
+311,274,us,United States of America,1,Verizon Wireless
+312,280,us,United States of America,1,Verizon Wireless
+310,390,us,United States of America,1,Verizon Wireless
+311,485,us,United States of America,1,Verizon Wireless
+312,591,us,United States of America,1,Verizon Wireless
+310,899,us,United States of America,1,Verizon Wireless
+310,276,us,United States of America,1,Verizon Wireless
+312,271,us,United States of America,1,Verizon Wireless
+310,890,us,United States of America,1,Verizon Wireless
+310,012,us,United States of America,1,Verizon Wireless
+311,896,us,United States of America,1,Verizon Wireless
+310,282,us,United States of America,1,Verizon Wireless
+311,288,us,United States of America,1,Verizon Wireless
+312,482,us,United States of America,1,Verizon Wireless
+310,593,us,United States of America,1,Verizon Wireless
+311,599,us,United States of America,1,Verizon Wireless
+312,893,us,United States of America,1,Verizon Wireless
+311,279,us,United States of America,1,Verizon Wireless
+312,285,us,United States of America,1,Verizon Wireless
+310,484,us,United States of America,1,Verizon Wireless
+311,590,us,United States of America,1,Verizon Wireless
+312,596,us,United States of America,1,Verizon Wireless
+310,281,us,United States of America,1,Verizon Wireless
+312,276,us,United States of America,1,Verizon Wireless
+310,287,us,United States of America,1,Verizon Wireless
+311,481,us,United States of America,1,Verizon Wireless
+312,487,us,United States of America,1,Verizon Wireless
+310,895,us,United States of America,1,Verizon Wireless
+310,272,us,United States of America,1,Verizon Wireless
+312,012,us,United States of America,1,Verizon Wireless
+310,598,us,United States of America,1,Verizon Wireless
+311,892,us,United States of America,1,Verizon Wireless
+312,898,us,United States of America,1,Verizon Wireless
+311,284,us,United States of America,1,Verizon Wireless
+312,350,us,United States of America,1,Verizon Wireless
+310,489,us,United States of America,1,Verizon Wireless
+311,595,us,United States of America,1,Verizon Wireless
+312,820,us,United States of America,1,Verizon Wireless
+311,275,us,United States of America,1,Verizon Wireless
+312,281,us,United States of America,1,Verizon Wireless
+310,480,us,United States of America,1,Verizon Wireless
+311,486,us,United States of America,1,Verizon Wireless
+312,592,us,United States of America,1,Verizon Wireless
+310,910,us,United States of America,1,Verizon Wireless
+310,277,us,United States of America,1,Verizon Wireless
+312,272,us,United States of America,1,Verizon Wireless
+310,891,us,United States of America,1,Verizon Wireless
+310,013,us,United States of America,1,Verizon Wireless
+311,897,us,United States of America,1,Verizon Wireless
+310,283,us,United States of America,1,Verizon Wireless
+311,289,us,United States of America,1,Verizon Wireless
+312,483,us,United States of America,1,Verizon Wireless
+310,594,us,United States of America,1,Verizon Wireless
+311,770,us,United States of America,1,Verizon Wireless
+312,894,us,United States of America,1,Verizon Wireless
+311,280,us,United States of America,1,Verizon Wireless
+312,286,us,United States of America,1,Verizon Wireless
+310,485,us,United States of America,1,Verizon Wireless
+311,591,us,United States of America,1,Verizon Wireless
+312,597,us,United States of America,1,Verizon Wireless
+311,271,us,United States of America,1,Verizon Wireless
+312,277,us,United States of America,1,Verizon Wireless
+310,288,us,United States of America,1,Verizon Wireless
+311,482,us,United States of America,1,Verizon Wireless
+312,488,us,United States of America,1,Verizon Wireless
+310,896,us,United States of America,1,Verizon Wireless
+310,273,us,United States of America,1,Verizon Wireless
+312,013,us,United States of America,1,Verizon Wireless
+310,599,us,United States of America,1,Verizon Wireless
+311,893,us,United States of America,1,Verizon Wireless
+312,899,us,United States of America,1,Verizon Wireless
+311,285,us,United States of America,1,Verizon Wireless
+312,390,us,United States of America,1,Verizon Wireless
+310,590,us,United States of America,1,Verizon Wireless
+311,596,us,United States of America,1,Verizon Wireless
+312,890,us,United States of America,1,Verizon Wireless
+311,276,us,United States of America,1,Verizon Wireless
+312,282,us,United States of America,1,Verizon Wireless
+310,481,us,United States of America,1,Verizon Wireless
+311,487,us,United States of America,1,Verizon Wireless
+312,593,us,United States of America,1,Verizon Wireless
+311,012,us,United States of America,1,Verizon Wireless
+310,278,us,United States of America,1,Verizon Wireless
+312,273,us,United States of America,1,Verizon Wireless
+310,110,us,United States of America,1,Verizon Wireless
+311,898,us,United States of America,1,Verizon Wireless
+310,284,us,United States of America,1,Verizon Wireless
+311,350,us,United States of America,1,Verizon Wireless
+312,484,us,United States of America,1,Verizon Wireless
+310,892,us,United States of America,1,Verizon Wireless
+310,740,us,United States of America,1,Viaero Wireless
+310,450,us,United States of America,1,Viaero Wireless
+310,860,us,United States of America,1,West Central Wireless
+748,01,uy,Uruguay,598,Antel Movil
+748,10,uy,Uruguay,598,Claro
+748,299,uy,Uruguay,598,Failed Calls
+748,999,uy,Uruguay,598,Fix Line
+748,07,uy,Uruguay,598,Movistar
+434,04,uz,Uzbekistan,998,Beeline
+434,299,uz,Uzbekistan,998,Failed Calls
+434,999,uz,Uzbekistan,998,Fix Line
+434,06,uz,Uzbekistan,998,Perfectum Mobile
+434,05,uz,Uzbekistan,998,Ucell
+434,07,uz,Uzbekistan,998,UMS
+434,03,uz,Uzbekistan,998,UzMobile
+541,05,vu,Vanuatu,678,Digicel
+541,299,vu,Vanuatu,678,Failed Calls
+541,999,vu,Vanuatu,678,Fix Line
+541,01,vu,Vanuatu,678,Smile
+225,299,va,Vatican,Failed Calls
+225,999,va,Vatican,Fix Line
+734,02,ve,Venezuela,58,Digitel
+734,299,ve,Venezuela,58,Failed Calls
+734,999,ve,Venezuela,58,Fix Line
+734,06,ve,Venezuela,58,Movilnet
+734,04,ve,Venezuela,58,Movistar
+452,299,vn,Vietnam,84,Failed Calls
+452,999,vn,Vietnam,84,Fix Line
+452,07,vn,Vietnam,84,Gmobile
+452,08,vn,Vietnam,84,I-Telecom
+452,01,vn,Vietnam,84,MobiFone
+452,09,vn,Vietnam,84,Reddi
+452,05,vn,Vietnam,84,Vietnamobile
+452,06,vn,Vietnam,84,Viettel
+452,04,vn,Vietnam,84,Viettel
+452,02,vn,Vietnam,84,VinaPhone
+376,299,vi,Virgin Islands,1340,Failed Calls
+376,999,vi,Virgin Islands,1340,Fix Line
+543,299,wf,Wallis and Futuna,Failed Calls
+543,999,wf,Wallis and Futuna,Fix Line
+543,01,wf,Wallis and Futuna,Manuia
+421,299,ye,Yemen,967,Failed Calls
+421,999,ye,Yemen,967,Fix Line
+421,01,ye,Yemen,967,SabaFon
+421,02,ye,Yemen,967,Spacetel
+421,04,ye,Yemen,967,Y
+421,03,ye,Yemen,967,Yemen Mobile
+645,01,zm,Zambia,260,Airtel
+645,299,zm,Zambia,260,Failed Calls
+645,999,zm,Zambia,260,Fix Line
+645,02,zm,Zambia,260,MTN
+645,03,zm,Zambia,260,Zamtel
+648,04,zw,Zimbabwe,263,Econet
+648,299,zw,Zimbabwe,263,Failed Calls
+648,999,zw,Zimbabwe,263,Fix Line
+648,01,zw,Zimbabwe,263,NetOne
+648,03,zw,Zimbabwe,263,Telecel
diff --git a/mcc-mnc-table.json b/mcc-mnc-table.json
index 89a3293c..7592837a 100644
--- a/mcc-mnc-table.json
+++ b/mcc-mnc-table.json
@@ -1,20794 +1,23538 @@
[
{
- "mcc": "289",
- "mnc": "88",
+ "mcc": 289,
+ "mnc": 88,
"iso": "ge",
"country": "Abkhazia",
- "country_code": "7",
+ "country_code": 7,
"network": "A-Mobile"
},
{
- "mcc": "289",
- "mnc": "68",
+ "mcc": 289,
+ "mnc": 68,
"iso": "ge",
"country": "Abkhazia",
- "country_code": "7",
+ "country_code": 7,
"network": "A-Mobile"
},
{
- "mcc": "289",
- "mnc": "67",
+ "mcc": 289,
+ "mnc": 67,
"iso": "ge",
"country": "Abkhazia",
- "country_code": "7",
+ "country_code": 7,
"network": "Aquafon"
},
{
- "mcc": "412",
- "mnc": "01",
+ "mcc": 289,
+ "mnc": 299,
+ "iso": "ge",
+ "country": "Abkhazia",
+ "country_code": 7,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 289,
+ "mnc": 999,
+ "iso": "ge",
+ "country": "Abkhazia",
+ "country_code": 7,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 412,
+ "mnc": 1,
"iso": "af",
"country": "Afghanistan",
- "country_code": "93",
+ "country_code": 93,
"network": "AWCC"
},
{
- "mcc": "412",
- "mnc": "50",
+ "mcc": 412,
+ "mnc": 50,
"iso": "af",
"country": "Afghanistan",
- "country_code": "93",
- "network": "Etisalat "
+ "country_code": 93,
+ "network": "Etisalat"
},
{
- "mcc": "412",
- "mnc": "30",
+ "mcc": 412,
+ "mnc": 299,
"iso": "af",
"country": "Afghanistan",
- "country_code": "93",
- "network": "Etisalat "
+ "country_code": 93,
+ "network": "Failed Calls"
},
{
- "mcc": "412",
- "mnc": "80",
+ "mcc": 412,
+ "mnc": 999,
"iso": "af",
"country": "Afghanistan",
- "country_code": "93",
- "network": "Mobifone"
+ "country_code": 93,
+ "network": "Fix Line"
},
{
- "mcc": "412",
- "mnc": "88",
+ "mcc": 412,
+ "mnc": 88,
"iso": "af",
"country": "Afghanistan",
- "country_code": "93",
+ "country_code": 93,
"network": "Mobifone"
},
{
- "mcc": "412",
- "mnc": "40",
+ "mcc": 412,
+ "mnc": 80,
"iso": "af",
"country": "Afghanistan",
- "country_code": "93",
- "network": "MTN"
+ "country_code": 93,
+ "network": "Mobifone"
},
{
- "mcc": "412",
- "mnc": "20",
+ "mcc": 412,
+ "mnc": 40,
"iso": "af",
"country": "Afghanistan",
- "country_code": "93",
- "network": "Roshan"
+ "country_code": 93,
+ "network": "MTN"
},
{
- "mcc": "412",
- "mnc": "03",
+ "mcc": 412,
+ "mnc": 20,
"iso": "af",
"country": "Afghanistan",
- "country_code": "93",
- "network": "WaselTelecom (WT)"
+ "country_code": 93,
+ "network": "Roshan"
},
{
- "mcc": "276",
- "mnc": "03",
+ "mcc": 276,
+ "mnc": 3,
"iso": "al",
"country": "Albania",
- "country_code": "355",
+ "country_code": 355,
"network": "ALBtelecom Mobile / Eagle"
},
{
- "mcc": "276",
- "mnc": "01",
+ "mcc": 276,
+ "mnc": 299,
"iso": "al",
"country": "Albania",
- "country_code": "355",
- "network": "One / AMC"
+ "country_code": 355,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 276,
+ "mnc": 999,
+ "iso": "al",
+ "country": "Albania",
+ "country_code": 355,
+ "network": "Fix Line"
},
{
- "mcc": "276",
- "mnc": "04",
+ "mcc": 276,
+ "mnc": 1,
"iso": "al",
"country": "Albania",
- "country_code": "355",
- "network": "PLUS Communication Sh.a"
+ "country_code": 355,
+ "network": "One / AMC"
},
{
- "mcc": "276",
- "mnc": "02",
+ "mcc": 276,
+ "mnc": 2,
"iso": "al",
"country": "Albania",
- "country_code": "355",
- "network": "Vodafone "
+ "country_code": 355,
+ "network": "Vodafone"
},
{
- "mcc": "603",
- "mnc": "02",
+ "mcc": 603,
+ "mnc": 2,
"iso": "dz",
"country": "Algeria",
- "country_code": "213",
+ "country_code": 213,
"network": "Djezzy"
},
{
- "mcc": "603",
- "mnc": "01",
+ "mcc": 603,
+ "mnc": 299,
+ "iso": "dz",
+ "country": "Algeria",
+ "country_code": 213,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 603,
+ "mnc": 999,
+ "iso": "dz",
+ "country": "Algeria",
+ "country_code": 213,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 603,
+ "mnc": 1,
"iso": "dz",
"country": "Algeria",
- "country_code": "213",
+ "country_code": 213,
"network": "Mobilis"
},
{
- "mcc": "603",
- "mnc": "03",
+ "mcc": 603,
+ "mnc": 3,
"iso": "dz",
"country": "Algeria",
- "country_code": "213",
+ "country_code": 213,
"network": "Ooredoo"
},
{
- "mcc": "544",
- "mnc": "780",
+ "mcc": 544,
+ "mnc": 780,
"iso": "as",
"country": "American Samoa",
- "country_code": "684",
+ "country_code": 684,
"network": "ASTCA Mobile"
},
{
- "mcc": "544",
- "mnc": "11",
+ "mcc": 544,
+ "mnc": 11,
"iso": "as",
"country": "American Samoa",
- "country_code": "684",
+ "country_code": 684,
"network": "BlueSky"
},
{
- "mcc": "213",
- "mnc": "03",
+ "mcc": 544,
+ "mnc": 299,
+ "iso": "as",
+ "country": "American Samoa",
+ "country_code": 684,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 544,
+ "mnc": 999,
+ "iso": "as",
+ "country": "American Samoa",
+ "country_code": 684,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 213,
+ "mnc": 3,
"iso": "ad",
"country": "Andorra",
- "country_code": "376",
+ "country_code": 376,
"network": "Andorra Telecom / Mobiland"
},
{
- "mcc": "631",
- "mnc": "04",
+ "mcc": 213,
+ "mnc": 299,
+ "iso": "ad",
+ "country": "Andorra",
+ "country_code": 376,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 213,
+ "mnc": 999,
+ "iso": "ad",
+ "country": "Andorra",
+ "country_code": 376,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 631,
+ "mnc": 299,
+ "iso": "ao",
+ "country": "Angola",
+ "country_code": 244,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 631,
+ "mnc": 999,
+ "iso": "ao",
+ "country": "Angola",
+ "country_code": 244,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 631,
+ "mnc": 4,
"iso": "ao",
"country": "Angola",
- "country_code": "244",
+ "country_code": 244,
"network": "MoviCel"
},
{
- "mcc": "631",
- "mnc": "02",
+ "mcc": 631,
+ "mnc": 2,
"iso": "ao",
"country": "Angola",
- "country_code": "244",
+ "country_code": 244,
"network": "Unitel"
},
{
- "mcc": "365",
- "mnc": "850",
+ "mcc": 365,
+ "mnc": 850,
"iso": "ai",
"country": "Anguilla",
- "country_code": "1264",
+ "country_code": 1264,
"network": "Digicel"
},
{
- "mcc": "365",
- "mnc": "840",
+ "mcc": 365,
+ "mnc": 299,
+ "iso": "ai",
+ "country": "Anguilla",
+ "country_code": 1264,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 365,
+ "mnc": 999,
+ "iso": "ai",
+ "country": "Anguilla",
+ "country_code": 1264,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 365,
+ "mnc": 840,
"iso": "ai",
"country": "Anguilla",
- "country_code": "1264",
+ "country_code": 1264,
"network": "Flow"
},
{
- "mcc": "344",
- "mnc": "93",
+ "mcc": 344,
+ "mnc": 93,
"iso": "ag",
"country": "Antigua and Barbuda",
- "country_code": "1268",
+ "country_code": 1268,
"network": "Digicel"
},
{
- "mcc": "344",
- "mnc": "930",
+ "mcc": 344,
+ "mnc": 930,
"iso": "ag",
"country": "Antigua and Barbuda",
- "country_code": "1268",
+ "country_code": 1268,
"network": "Digicel"
},
{
- "mcc": "344",
- "mnc": "92",
+ "mcc": 344,
+ "mnc": 299,
+ "iso": "ag",
+ "country": "Antigua and Barbuda",
+ "country_code": 1268,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 344,
+ "mnc": 999,
+ "iso": "ag",
+ "country": "Antigua and Barbuda",
+ "country_code": 1268,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 344,
+ "mnc": 920,
"iso": "ag",
"country": "Antigua and Barbuda",
- "country_code": "1268",
+ "country_code": 1268,
"network": "Flow"
},
{
- "mcc": "344",
- "mnc": "920",
+ "mcc": 344,
+ "mnc": 92,
"iso": "ag",
"country": "Antigua and Barbuda",
- "country_code": "1268",
+ "country_code": 1268,
"network": "Flow"
},
{
- "mcc": "344",
- "mnc": "03",
+ "mcc": 344,
+ "mnc": 3,
"iso": "ag",
"country": "Antigua and Barbuda",
- "country_code": "1268",
+ "country_code": 1268,
"network": "imobile / APUA"
},
{
- "mcc": "344",
- "mnc": "030",
+ "mcc": 344,
+ "mnc": 30,
"iso": "ag",
"country": "Antigua and Barbuda",
- "country_code": "1268",
+ "country_code": 1268,
"network": "imobile / APUA"
},
{
- "mcc": "722",
- "mnc": "310",
+ "mcc": 722,
+ "mnc": 330,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Claro"
},
{
- "mcc": "722",
- "mnc": "330",
+ "mcc": 722,
+ "mnc": 31,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Claro"
},
{
- "mcc": "722",
- "mnc": "031",
+ "mcc": 722,
+ "mnc": 320,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Claro"
},
{
- "mcc": "722",
- "mnc": "320",
+ "mcc": 722,
+ "mnc": 310,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Claro"
},
{
- "mcc": "722",
- "mnc": "299",
+ "mcc": 722,
+ "mnc": 299,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Express"
},
{
- "mcc": "722",
- "mnc": "999",
+ "mcc": 722,
+ "mnc": 999,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Fix Line"
},
{
- "mcc": "722",
- "mnc": "299",
+ "mcc": 722,
+ "mnc": 299,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Imowi"
},
{
- "mcc": "722",
- "mnc": "299",
+ "mcc": 722,
+ "mnc": 299,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "IPLAN"
},
{
- "mcc": "722",
- "mnc": "299",
+ "mcc": 722,
+ "mnc": 299,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Kallofer"
},
{
- "mcc": "722",
- "mnc": "010",
+ "mcc": 722,
+ "mnc": 7,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Movistar"
},
{
- "mcc": "722",
- "mnc": "007",
+ "mcc": 722,
+ "mnc": 70,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Movistar"
},
{
- "mcc": "722",
- "mnc": "070",
+ "mcc": 722,
+ "mnc": 10,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Movistar"
},
{
- "mcc": "722",
- "mnc": "007",
- "iso": "ar",
- "country": "Argentina",
- "country_code": "54",
- "network": "Movistar/Telefonica"
- },
- {
- "mcc": "722",
- "mnc": "070",
- "iso": "ar",
- "country": "Argentina",
- "country_code": "54",
- "network": "Movistar/Telefonica"
- },
- {
- "mcc": "722",
- "mnc": "020",
+ "mcc": 722,
+ "mnc": 299,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
- "network": "Nextel"
- },
- {
- "mcc": "722",
- "mnc": "299",
- "iso": "ar",
- "country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Nuestro"
},
{
- "mcc": "722",
- "mnc": "034",
+ "mcc": 722,
+ "mnc": 34,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Personal"
},
{
- "mcc": "722",
- "mnc": "299",
+ "mcc": 722,
+ "mnc": 299,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Telecentro"
},
{
- "mcc": "722",
- "mnc": "341",
+ "mcc": 722,
+ "mnc": 341,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Personal"
},
{
- "mcc": "722",
- "mnc": "340",
+ "mcc": 722,
+ "mnc": 340,
"iso": "ar",
"country": "Argentina",
- "country_code": "54",
+ "country_code": 54,
"network": "Personal"
},
{
- "mcc": "283",
- "mnc": "01",
+ "mcc": 283,
+ "mnc": 1,
"iso": "am",
"country": "Armenia",
- "country_code": "374",
+ "country_code": 374,
"network": "Beeline"
},
{
- "mcc": "283",
- "mnc": "04",
+ "mcc": 283,
+ "mnc": 299,
+ "iso": "am",
+ "country": "Armenia",
+ "country_code": 374,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 283,
+ "mnc": 999,
+ "iso": "am",
+ "country": "Armenia",
+ "country_code": 374,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 283,
+ "mnc": 4,
"iso": "am",
"country": "Armenia",
- "country_code": "374",
+ "country_code": 374,
"network": "KT"
},
{
- "mcc": "283",
- "mnc": "10",
+ "mcc": 283,
+ "mnc": 10,
"iso": "am",
"country": "Armenia",
- "country_code": "374",
+ "country_code": 374,
"network": "Orange"
},
{
- "mcc": "283",
- "mnc": "05",
+ "mcc": 283,
+ "mnc": 5,
"iso": "am",
"country": "Armenia",
- "country_code": "374",
+ "country_code": 374,
"network": "Viva-MTS"
},
{
- "mcc": "363",
- "mnc": "02",
+ "mcc": 363,
+ "mnc": 2,
"iso": "aw",
"country": "Aruba",
- "country_code": "297",
+ "country_code": 297,
"network": "Digicel"
},
{
- "mcc": "363",
- "mnc": "20",
+ "mcc": 363,
+ "mnc": 299,
"iso": "aw",
"country": "Aruba",
- "country_code": "297",
- "network": "Digicel"
+ "country_code": 297,
+ "network": "Failed Calls"
},
{
- "mcc": "363",
- "mnc": "299",
+ "mcc": 363,
+ "mnc": 999,
"iso": "aw",
"country": "Aruba",
- "country_code": "297",
- "network": "MIO"
+ "country_code": 297,
+ "network": "Fix Line"
},
{
- "mcc": "363",
- "mnc": "01",
+ "mcc": 363,
+ "mnc": 299,
"iso": "aw",
"country": "Aruba",
- "country_code": "297",
- "network": "SETAR"
+ "country_code": 297,
+ "network": "MIO"
},
{
- "mcc": "505",
- "mnc": "14",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "AAPT Ltd. "
+ "mcc": 363,
+ "mnc": 1,
+ "iso": "aw",
+ "country": "Aruba",
+ "country_code": 297,
+ "network": "SETAR"
},
{
- "mcc": "505",
- "mnc": "299",
+ "mcc": 505,
+ "mnc": 299,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "ACMA"
},
{
- "mcc": "505",
- "mnc": "24",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "Advanced Comm Tech Pty."
- },
- {
- "mcc": "505",
- "mnc": "09",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "Airnet Commercial Australia Ltd.."
- },
- {
- "mcc": "505",
- "mnc": "30",
+ "mcc": 505,
+ "mnc": 30,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Compatel"
},
{
- "mcc": "505",
- "mnc": "04",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "Department of Defense"
- },
- {
- "mcc": "505",
- "mnc": "999",
+ "mcc": 505,
+ "mnc": 999,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Fix Line"
},
{
- "mcc": "505",
- "mnc": "299",
+ "mcc": 505,
+ "mnc": 299,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Get SIM"
},
{
- "mcc": "505",
- "mnc": "12",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "H3G Ltd."
- },
- {
- "mcc": "505",
- "mnc": "06",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "H3G Ltd."
- },
- {
- "mcc": "505",
- "mnc": "88",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "Pivotel Group Ltd"
- },
- {
- "mcc": "505",
- "mnc": "19",
+ "mcc": 505,
+ "mnc": 19,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Lycamobile"
},
{
- "mcc": "505",
- "mnc": "35",
+ "mcc": 505,
+ "mnc": 35,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "MessageBird"
},
{
- "mcc": "505",
- "mnc": "10",
+ "mcc": 505,
+ "mnc": 10,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Norfolk Telecom"
},
{
- "mcc": "505",
- "mnc": "08",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "Railcorp/Vodafone"
- },
- {
- "mcc": "505",
- "mnc": "99",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "Railcorp/Vodafone"
- },
- {
- "mcc": "505",
- "mnc": "90",
+ "mcc": 505,
+ "mnc": 90,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Optus"
},
{
- "mcc": "505",
- "mnc": "50",
+ "mcc": 505,
+ "mnc": 50,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Pivotel"
},
{
- "mcc": "505",
- "mnc": "88",
+ "mcc": 505,
+ "mnc": 88,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Pivotel"
},
{
- "mcc": "505",
- "mnc": "13",
+ "mcc": 505,
+ "mnc": 13,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "RailCorp"
},
{
- "mcc": "505",
- "mnc": "13",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "Railcorp/Vodafone"
- },
- {
- "mcc": "505",
- "mnc": "26",
+ "mcc": 505,
+ "mnc": 26,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Sinch"
},
{
- "mcc": "505",
- "mnc": "02",
+ "mcc": 505,
+ "mnc": 2,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Optus"
},
{
- "mcc": "505",
- "mnc": "299",
+ "mcc": 505,
+ "mnc": 299,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Symbio"
},
{
- "mcc": "505",
- "mnc": "11",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "Telstra"
- },
- {
- "mcc": "505",
- "mnc": "72",
+ "mcc": 505,
+ "mnc": 72,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Telstra"
},
{
- "mcc": "505",
- "mnc": "01",
+ "mcc": 505,
+ "mnc": 1,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Telstra"
},
{
- "mcc": "505",
- "mnc": "39",
+ "mcc": 505,
+ "mnc": 11,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Telstra"
},
{
- "mcc": "505",
- "mnc": "71",
+ "mcc": 505,
+ "mnc": 39,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Telstra"
},
{
- "mcc": "505",
- "mnc": "01",
+ "mcc": 505,
+ "mnc": 71,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Telstra"
},
{
- "mcc": "505",
- "mnc": "05",
- "iso": "au",
- "country": "Australia",
- "country_code": "61",
- "network": "The Ozitel Network Pty."
- },
- {
- "mcc": "505",
- "mnc": "16",
+ "mcc": 505,
+ "mnc": 16,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "VicTrack"
},
{
- "mcc": "505",
- "mnc": "03",
+ "mcc": 505,
+ "mnc": 3,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Vodafone"
},
{
- "mcc": "505",
- "mnc": "06",
+ "mcc": 505,
+ "mnc": 6,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Vodafone"
},
{
- "mcc": "505",
- "mnc": "12",
+ "mcc": 505,
+ "mnc": 12,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Vodafone"
},
{
- "mcc": "505",
- "mnc": "07",
+ "mcc": 505,
+ "mnc": 7,
"iso": "au",
"country": "Australia",
- "country_code": "61",
+ "country_code": 61,
"network": "Vodafone"
},
{
- "mcc": "232",
- "mnc": "11",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "A1 Telekom"
- },
- {
- "mcc": "232",
- "mnc": "01",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "A1 Telekom"
- },
- {
- "mcc": "232",
- "mnc": "09",
+ "mcc": 232,
+ "mnc": 14,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "A1 Telekom"
+ "country_code": 43,
+ "network": "3"
},
{
- "mcc": "232",
- "mnc": "12",
+ "mcc": 232,
+ "mnc": 5,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "A1 Telekom"
+ "country_code": 43,
+ "network": "3"
},
{
- "mcc": "232",
- "mnc": "02",
+ "mcc": 232,
+ "mnc": 19,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "A1 Telekom"
+ "country_code": 43,
+ "network": "3"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 16,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "ArgoNET"
+ "country_code": 43,
+ "network": "3"
},
{
- "mcc": "232",
- "mnc": "15",
+ "mcc": 232,
+ "mnc": 10,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "T-Mobile / Magenta"
+ "country_code": 43,
+ "network": "3"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 9,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "DIALOG telekom"
+ "country_code": 43,
+ "network": "A1 Telekom"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 12,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Digital Privacy"
+ "country_code": 43,
+ "network": "A1 Telekom"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 2,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "DIMOCO"
+ "country_code": 43,
+ "network": "A1 Telekom"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 1,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "educom"
+ "country_code": 43,
+ "network": "A1 Telekom"
},
{
- "mcc": "232",
- "mnc": "999",
+ "mcc": 232,
+ "mnc": 11,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Fix Line"
+ "country_code": 43,
+ "network": "A1 Telekom"
},
{
- "mcc": "232",
- "mnc": "25",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Holding Graz"
+ "country_code": 43,
+ "network": "ArgoNET"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Holding Graz"
+ "country_code": 43,
+ "network": "DIALOG telekom"
},
{
- "mcc": "232",
- "mnc": "19",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Hutchinson Drei"
+ "country_code": 43,
+ "network": "Digital Privacy"
},
{
- "mcc": "232",
- "mnc": "14",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Hutchinson Drei"
+ "country_code": 43,
+ "network": "DIMOCO"
},
{
- "mcc": "232",
- "mnc": "16",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Hutchinson Drei"
+ "country_code": 43,
+ "network": "educom"
},
{
- "mcc": "232",
- "mnc": "10",
+ "mcc": 232,
+ "mnc": 999,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Hutchinson Drei"
+ "country_code": 43,
+ "network": "Fix Line"
},
{
- "mcc": "232",
- "mnc": "05",
+ "mcc": 232,
+ "mnc": 25,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Hutchinson Drei"
+ "country_code": 43,
+ "network": "Holding Graz"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Innsbrucker Kommunalbetriebe"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "kabelplus"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Lenovo Connect"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "LINK Mobility"
},
{
- "mcc": "232",
- "mnc": "26",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "LIWEST Mobil"
- },
- {
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 26,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "LIWEST Mobil"
},
{
- "mcc": "232",
- "mnc": "17",
+ "mcc": 232,
+ "mnc": 17,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "Mass Response Service"
+ "country_code": 43,
+ "network": "MRS"
},
{
- "mcc": "232",
- "mnc": "20",
+ "mcc": 232,
+ "mnc": 20,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Mtel"
},
{
- "mcc": "232",
- "mnc": "91",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "OBB Infrastruktur"
- },
- {
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 91,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "OBB Infrastruktur"
},
{
- "mcc": "232",
- "mnc": "06",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "Hutchison Drei / 3"
- },
- {
- "mcc": "232",
- "mnc": "22",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "Plintron"
- },
- {
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 22,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Plintron"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Simple SMS"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Skymond Mobile"
},
{
- "mcc": "232",
- "mnc": "299",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "Smartel Services"
- },
- {
- "mcc": "232",
- "mnc": "24",
+ "mcc": 232,
+ "mnc": 24,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Smartel Services"
},
{
- "mcc": "232",
- "mnc": "299",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "smartspace"
- },
- {
- "mcc": "232",
- "mnc": "18",
+ "mcc": 232,
+ "mnc": 18,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "smartspace"
},
{
- "mcc": "232",
- "mnc": "07",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "T-Mobile / Magenta"
- },
- {
- "mcc": "232",
- "mnc": "04",
+ "mcc": 232,
+ "mnc": 13,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "T-Mobile / Magenta"
},
{
- "mcc": "232",
- "mnc": "03",
+ "mcc": 232,
+ "mnc": 23,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "T-Mobile / Magenta"
},
{
- "mcc": "232",
- "mnc": "13",
+ "mcc": 232,
+ "mnc": 4,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "T-Mobile / Magenta"
},
{
- "mcc": "232",
- "mnc": "23",
+ "mcc": 232,
+ "mnc": 3,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "T-Mobile / Magenta"
},
{
- "mcc": "232",
- "mnc": "08",
+ "mcc": 232,
+ "mnc": 299,
"iso": "at",
"country": "Austria",
- "country_code": "43",
- "network": "A1 Telekom"
- },
- {
- "mcc": "232",
- "mnc": "299",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Telfoni"
},
{
- "mcc": "232",
- "mnc": "27",
- "iso": "at",
- "country": "Austria",
- "country_code": "43",
- "network": "Tismi"
- },
- {
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 27,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Tismi"
},
{
- "mcc": "232",
- "mnc": "299",
+ "mcc": 232,
+ "mnc": 7,
"iso": "at",
"country": "Austria",
- "country_code": "43",
+ "country_code": 43,
"network": "Ventocom"
},
{
- "mcc": "400",
- "mnc": "01",
+ "mcc": 400,
+ "mnc": 1,
"iso": "az",
"country": "Azerbaijan",
- "country_code": "994",
+ "country_code": 994,
"network": "Azercell"
},
{
- "mcc": "400",
- "mnc": "02",
+ "mcc": 400,
+ "mnc": 2,
"iso": "az",
"country": "Azerbaijan",
- "country_code": "994",
+ "country_code": 994,
"network": "Bakcell"
},
{
- "mcc": "400",
- "mnc": "03",
+ "mcc": 400,
+ "mnc": 299,
"iso": "az",
"country": "Azerbaijan",
- "country_code": "994",
- "network": "FONEX"
+ "country_code": 994,
+ "network": "Failed Calls"
},
{
- "mcc": "400",
- "mnc": "04",
+ "mcc": 400,
+ "mnc": 999,
"iso": "az",
"country": "Azerbaijan",
- "country_code": "994",
- "network": "Nar Mobile"
+ "country_code": 994,
+ "network": "Fix Line"
},
{
- "mcc": "400",
- "mnc": "06",
+ "mcc": 400,
+ "mnc": 3,
"iso": "az",
"country": "Azerbaijan",
- "country_code": "994",
- "network": "Naxtel"
+ "country_code": 994,
+ "network": "FONEX"
},
{
- "mcc": "364",
- "mnc": "490",
+ "mcc": 400,
+ "mnc": 4,
+ "iso": "az",
+ "country": "Azerbaijan",
+ "country_code": 994,
+ "network": "Nar Mobile"
+ },
+ {
+ "mcc": 400,
+ "mnc": 6,
+ "iso": "az",
+ "country": "Azerbaijan",
+ "country_code": 994,
+ "network": "Naxtel"
+ },
+ {
+ "mcc": 364,
+ "mnc": 490,
"iso": "bs",
"country": "Bahamas",
- "country_code": "1242",
+ "country_code": 1242,
"network": "Aliv"
},
{
- "mcc": "364",
- "mnc": "390",
+ "mcc": 364,
+ "mnc": 390,
"iso": "bs",
"country": "Bahamas",
- "country_code": "1242",
+ "country_code": 1242,
"network": "Cybercell / BaTelCo"
},
{
- "mcc": "364",
- "mnc": "30",
+ "mcc": 364,
+ "mnc": 39,
"iso": "bs",
"country": "Bahamas",
- "country_code": "1242",
+ "country_code": 1242,
"network": "Cybercell / BaTelCo"
},
{
- "mcc": "364",
- "mnc": "39",
+ "mcc": 364,
+ "mnc": 30,
"iso": "bs",
"country": "Bahamas",
- "country_code": "1242",
+ "country_code": 1242,
"network": "Cybercell / BaTelCo"
},
{
- "mcc": "364",
- "mnc": "03",
+ "mcc": 364,
+ "mnc": 299,
+ "iso": "bs",
+ "country": "Bahamas",
+ "country_code": 1242,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 364,
+ "mnc": 999,
"iso": "bs",
"country": "Bahamas",
- "country_code": "1242",
- "network": "Smart Communications"
+ "country_code": 1242,
+ "network": "Fix Line"
},
{
- "mcc": "426",
- "mnc": "01",
+ "mcc": 426,
+ "mnc": 1,
"iso": "bh",
"country": "Bahrain",
- "country_code": "973",
+ "country_code": 973,
"network": "Batelco"
},
{
- "mcc": "426",
- "mnc": "299",
+ "mcc": 426,
+ "mnc": 299,
"iso": "bh",
"country": "Bahrain",
- "country_code": "973",
+ "country_code": 973,
"network": "Failed Calls"
},
{
- "mcc": "426",
- "mnc": "999",
+ "mcc": 426,
+ "mnc": 999,
"iso": "bh",
"country": "Bahrain",
- "country_code": "973",
+ "country_code": 973,
"network": "Fix Line"
},
{
- "mcc": "426",
- "mnc": "05",
+ "mcc": 426,
+ "mnc": 5,
"iso": "bh",
"country": "Bahrain",
- "country_code": "973",
+ "country_code": 973,
"network": "Royal Court"
},
{
- "mcc": "426",
- "mnc": "04",
+ "mcc": 426,
+ "mnc": 4,
"iso": "bh",
"country": "Bahrain",
- "country_code": "973",
+ "country_code": 973,
"network": "VIVA"
},
{
- "mcc": "426",
- "mnc": "02",
+ "mcc": 426,
+ "mnc": 2,
"iso": "bh",
"country": "Bahrain",
- "country_code": "973",
+ "country_code": 973,
"network": "Zain"
},
{
- "mcc": "470",
- "mnc": "07",
+ "mcc": 470,
+ "mnc": 7,
"iso": "bd",
"country": "Bangladesh",
- "country_code": "880",
+ "country_code": 880,
"network": "Airtel"
},
{
- "mcc": "470",
- "mnc": "02",
+ "mcc": 470,
+ "mnc": 2,
"iso": "bd",
"country": "Bangladesh",
- "country_code": "880",
+ "country_code": 880,
"network": "Airtel"
},
{
- "mcc": "470",
- "mnc": "03",
+ "mcc": 470,
+ "mnc": 3,
"iso": "bd",
"country": "Bangladesh",
- "country_code": "880",
+ "country_code": 880,
"network": "Banglalink"
},
{
- "mcc": "470",
- "mnc": "06",
+ "mcc": 470,
+ "mnc": 299,
"iso": "bd",
"country": "Bangladesh",
- "country_code": "880",
- "network": "Citycell"
+ "country_code": 880,
+ "network": "Failed Calls"
},
{
- "mcc": "470",
- "mnc": "05",
+ "mcc": 470,
+ "mnc": 999,
"iso": "bd",
"country": "Bangladesh",
- "country_code": "880",
- "network": "Citycell"
+ "country_code": 880,
+ "network": "Fix Line"
},
{
- "mcc": "470",
- "mnc": "01",
+ "mcc": 470,
+ "mnc": 1,
"iso": "bd",
"country": "Bangladesh",
- "country_code": "880",
+ "country_code": 880,
"network": "GrameenPhone"
},
{
- "mcc": "470",
- "mnc": "04",
+ "mcc": 470,
+ "mnc": 4,
"iso": "bd",
"country": "Bangladesh",
- "country_code": "880",
+ "country_code": 880,
"network": "TeleTalk"
},
{
- "mcc": "470",
- "mnc": "07",
- "iso": "bd",
- "country": "Bangladesh",
- "country_code": "880",
- "network": "Airtel/Warid"
- },
- {
- "mcc": "342",
- "mnc": "810",
- "iso": "bb",
- "country": "Barbados",
- "country_code": "1246",
- "network": "Cingular Wireless"
- },
- {
- "mcc": "342",
- "mnc": "750",
+ "mcc": 342,
+ "mnc": 50,
"iso": "bb",
"country": "Barbados",
- "country_code": "1246",
+ "country_code": 1246,
"network": "Digicel"
},
{
- "mcc": "342",
- "mnc": "050",
+ "mcc": 342,
+ "mnc": 299,
"iso": "bb",
"country": "Barbados",
- "country_code": "1246",
- "network": "Digicel"
+ "country_code": 1246,
+ "network": "Failed Calls"
},
{
- "mcc": "342",
- "mnc": "299",
+ "mcc": 342,
+ "mnc": 999,
"iso": "bb",
"country": "Barbados",
- "country_code": "1246",
- "network": "Failed Calls"
+ "country_code": 1246,
+ "network": "Fix Line"
},
{
- "mcc": "342",
- "mnc": "600",
+ "mcc": 342,
+ "mnc": 600,
"iso": "bb",
"country": "Barbados",
- "country_code": "1246",
+ "country_code": 1246,
"network": "Flow / Lime"
},
{
- "mcc": "342",
- "mnc": "299",
+ "mcc": 342,
+ "mnc": 299,
"iso": "bb",
"country": "Barbados",
- "country_code": "1246",
+ "country_code": 1246,
"network": "Ozone"
},
{
- "mcc": "342",
- "mnc": "820",
- "iso": "bb",
- "country": "Barbados",
- "country_code": "1246",
- "network": "Sunbeach"
- },
- {
- "mcc": "257",
- "mnc": "03",
+ "mcc": 257,
+ "mnc": 4,
"iso": "by",
"country": "Belarus",
- "country_code": "375",
- "network": "BelCel JV"
+ "country_code": 375,
+ "network": "life:)"
},
{
- "mcc": "257",
- "mnc": "04",
+ "mcc": 257,
+ "mnc": 299,
"iso": "by",
"country": "Belarus",
- "country_code": "375",
- "network": "life:)"
+ "country_code": 375,
+ "network": "Failed Calls"
},
{
- "mcc": "257",
- "mnc": "01",
+ "mcc": 257,
+ "mnc": 999,
"iso": "by",
"country": "Belarus",
- "country_code": "375",
- "network": "MDC/Velcom"
+ "country_code": 375,
+ "network": "Fix Line"
},
{
- "mcc": "257",
- "mnc": "02",
+ "mcc": 257,
+ "mnc": 2,
"iso": "by",
"country": "Belarus",
- "country_code": "375",
+ "country_code": 375,
"network": "MTS"
},
{
- "mcc": "257",
- "mnc": "01",
+ "mcc": 257,
+ "mnc": 1,
"iso": "by",
"country": "Belarus",
- "country_code": "375",
+ "country_code": 375,
"network": "velcom A1"
},
{
- "mcc": "206",
- "mnc": "20",
- "iso": "be",
- "country": "Belgium",
- "country_code": "32",
- "network": "Base"
- },
- {
- "mcc": "206",
- "mnc": "05",
+ "mcc": 206,
+ "mnc": 20,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Base"
},
{
- "mcc": "206",
- "mnc": "28",
+ "mcc": 206,
+ "mnc": 28,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "BICS"
},
{
- "mcc": "206",
- "mnc": "25",
+ "mcc": 206,
+ "mnc": 25,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Dense Air"
},
{
- "mcc": "206",
- "mnc": "23",
+ "mcc": 206,
+ "mnc": 23,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Dust Mobile"
},
{
- "mcc": "206",
- "mnc": "33",
+ "mcc": 206,
+ "mnc": 33,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Ericsson"
},
{
- "mcc": "206",
- "mnc": "299",
+ "mcc": 206,
+ "mnc": 299,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "FEBO"
},
{
- "mcc": "206",
- "mnc": "999",
+ "mcc": 206,
+ "mnc": 999,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Fix Line"
},
{
- "mcc": "206",
- "mnc": "299",
+ "mcc": 206,
+ "mnc": 299,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "GianCom"
},
{
- "mcc": "206",
- "mnc": "02",
+ "mcc": 206,
+ "mnc": 2,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Infrabel"
},
{
- "mcc": "206",
- "mnc": "299",
+ "mcc": 206,
+ "mnc": 299,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "interactive digital media / IDM"
},
{
- "mcc": "206",
- "mnc": "299",
+ "mcc": 206,
+ "mnc": 299,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "L-mobi"
},
{
- "mcc": "206",
- "mnc": "99",
+ "mcc": 206,
+ "mnc": 99,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Lancelot"
},
{
- "mcc": "206",
- "mnc": "299",
+ "mcc": 206,
+ "mnc": 299,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Legos"
},
{
- "mcc": "206",
- "mnc": "06",
+ "mcc": 206,
+ "mnc": 6,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Lycamobile"
},
{
- "mcc": "206",
- "mnc": "30",
+ "mcc": 206,
+ "mnc": 30,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Mobile Vikings"
},
{
- "mcc": "206",
- "mnc": "10",
+ "mcc": 206,
+ "mnc": 10,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Mobistar / Orange"
},
{
- "mcc": "206",
- "mnc": "299",
+ "mcc": 206,
+ "mnc": 299,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Nord Connect"
},
{
- "mcc": "206",
- "mnc": "34",
+ "mcc": 206,
+ "mnc": 34,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "onoff"
},
{
- "mcc": "206",
- "mnc": "299",
+ "mcc": 206,
+ "mnc": 299,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "PM Factory"
},
{
- "mcc": "206",
- "mnc": "01",
+ "mcc": 206,
+ "mnc": 1,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Proximus"
},
{
- "mcc": "206",
- "mnc": "04",
+ "mcc": 206,
+ "mnc": 4,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Proximus"
},
{
- "mcc": "206",
- "mnc": "00",
+ "mcc": 206,
+ "mnc": 0,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Proximus"
},
{
- "mcc": "206",
- "mnc": "05",
+ "mcc": 206,
+ "mnc": 5,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
- "network": "Telenet Mobile"
+ "country_code": 32,
+ "network": "Telenet"
},
{
- "mcc": "206",
- "mnc": "07",
+ "mcc": 206,
+ "mnc": 7,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Vectone Mobile"
},
{
- "mcc": "206",
- "mnc": "08",
+ "mcc": 206,
+ "mnc": 8,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "VOOmobile"
},
{
- "mcc": "206",
- "mnc": "299",
+ "mcc": 206,
+ "mnc": 299,
"iso": "be",
"country": "Belgium",
- "country_code": "32",
+ "country_code": 32,
"network": "Voxbone / Bandwidth"
},
{
- "mcc": "702",
- "mnc": "67",
+ "mcc": 702,
+ "mnc": 67,
"iso": "bz",
"country": "Belize",
- "country_code": "501",
+ "country_code": 501,
"network": "DigiCell"
},
{
- "mcc": "702",
- "mnc": "299",
+ "mcc": 702,
+ "mnc": 299,
"iso": "bz",
"country": "Belize",
- "country_code": "501",
+ "country_code": 501,
"network": "Failed Calls"
},
{
- "mcc": "702",
- "mnc": "68",
+ "mcc": 702,
+ "mnc": 999,
"iso": "bz",
"country": "Belize",
- "country_code": "501",
- "network": "International Telco (INTELCO)"
+ "country_code": 501,
+ "network": "Fix Line"
},
{
- "mcc": "702",
- "mnc": "099",
+ "mcc": 702,
+ "mnc": 69,
"iso": "bz",
"country": "Belize",
- "country_code": "501",
+ "country_code": 501,
"network": "Smart"
},
{
- "mcc": "702",
- "mnc": "69",
+ "mcc": 702,
+ "mnc": 99,
"iso": "bz",
"country": "Belize",
- "country_code": "501",
+ "country_code": 501,
"network": "Smart"
},
{
- "mcc": "616",
- "mnc": "04",
- "iso": "bj",
- "country": "Benin",
- "country_code": "229",
- "network": "Bell Benin/BBCOM"
- },
- {
- "mcc": "616",
- "mnc": "05",
+ "mcc": 616,
+ "mnc": 299,
"iso": "bj",
"country": "Benin",
- "country_code": "229",
- "network": "GloMobile"
+ "country_code": 229,
+ "network": "Failed Calls"
},
{
- "mcc": "616",
- "mnc": "01",
+ "mcc": 616,
+ "mnc": 999,
"iso": "bj",
"country": "Benin",
- "country_code": "229",
- "network": "Libercom"
+ "country_code": 229,
+ "network": "Fix Line"
},
{
- "mcc": "616",
- "mnc": "02",
+ "mcc": 616,
+ "mnc": 2,
"iso": "bj",
"country": "Benin",
- "country_code": "229",
+ "country_code": 229,
"network": "Moov"
},
{
- "mcc": "616",
- "mnc": "03",
+ "mcc": 616,
+ "mnc": 3,
"iso": "bj",
"country": "Benin",
- "country_code": "229",
+ "country_code": 229,
"network": "MTN"
},
{
- "mcc": "350",
- "mnc": "000",
- "iso": "bm",
- "country": "Bermuda",
- "country_code": "1441",
- "network": "Bermuda Digital Communications Ltd (BDC)"
- },
- {
- "mcc": "350",
- "mnc": "99",
- "iso": "bm",
- "country": "Bermuda",
- "country_code": "1441",
- "network": "CellOne Ltd"
- },
- {
- "mcc": "350",
- "mnc": "01",
+ "mcc": 350,
+ "mnc": 1,
"iso": "bm",
"country": "Bermuda",
- "country_code": "1441",
+ "country_code": 1441,
"network": "Digicel"
},
{
- "mcc": "350",
- "mnc": "299",
+ "mcc": 350,
+ "mnc": 299,
"iso": "bm",
"country": "Bermuda",
- "country_code": "1441",
+ "country_code": 1441,
"network": "Failed Calls"
},
{
- "mcc": "350",
- "mnc": "02",
+ "mcc": 350,
+ "mnc": 999,
"iso": "bm",
"country": "Bermuda",
- "country_code": "1441",
- "network": "M3 Wireless Ltd"
+ "country_code": 1441,
+ "network": "Fix Line"
},
{
- "mcc": "350",
- "mnc": "000",
+ "mcc": 350,
+ "mnc": 0,
"iso": "bm",
"country": "Bermuda",
- "country_code": "1441",
+ "country_code": 1441,
"network": "One"
},
{
- "mcc": "350",
- "mnc": "01",
- "iso": "bm",
- "country": "Bermuda",
- "country_code": "1441",
- "network": "Telecommunications (Bermuda & West Indies) Ltd (Digicel Bermuda)"
+ "mcc": 402,
+ "mnc": 11,
+ "iso": "bt",
+ "country": "Bhutan",
+ "country_code": 975,
+ "network": "B-Mobile"
},
{
- "mcc": "402",
- "mnc": "11",
+ "mcc": 402,
+ "mnc": 17,
"iso": "bt",
"country": "Bhutan",
- "country_code": "975",
+ "country_code": 975,
"network": "B-Mobile"
},
{
- "mcc": "402",
- "mnc": "17",
+ "mcc": 402,
+ "mnc": 999,
"iso": "bt",
"country": "Bhutan",
- "country_code": "975",
- "network": "Bhutan Telecom Ltd (BTL)"
+ "country_code": 975,
+ "network": "Fix Line"
},
{
- "mcc": "402",
- "mnc": "77",
+ "mcc": 402,
+ "mnc": 77,
"iso": "bt",
"country": "Bhutan",
- "country_code": "975",
+ "country_code": 975,
"network": "TashiCell"
},
{
- "mcc": "736",
- "mnc": "02",
+ "mcc": 736,
+ "mnc": 2,
+ "iso": "bo",
+ "country": "Bolivia",
+ "country_code": 591,
+ "network": "Entel Movil"
+ },
+ {
+ "mcc": 736,
+ "mnc": 299,
"iso": "bo",
"country": "Bolivia",
- "country_code": "591",
- "network": "Entel Pcs"
+ "country_code": 591,
+ "network": "Failed Calls"
},
{
- "mcc": "736",
- "mnc": "01",
+ "mcc": 736,
+ "mnc": 999,
"iso": "bo",
"country": "Bolivia",
- "country_code": "591",
- "network": "Viva/Nuevatel"
+ "country_code": 591,
+ "network": "Fix Line"
},
{
- "mcc": "736",
- "mnc": "03",
+ "mcc": 736,
+ "mnc": 3,
"iso": "bo",
"country": "Bolivia",
- "country_code": "591",
+ "country_code": 591,
"network": "Tigo"
},
{
- "mcc": "362",
- "mnc": "999",
- "iso": "bq",
- "country": "Bonaire, Sint Eustatius and Saba",
- "country_code": "599",
- "network": "Fix Line"
+ "mcc": 736,
+ "mnc": 1,
+ "iso": "bo",
+ "country": "Bolivia",
+ "country_code": 591,
+ "network": "Viva"
},
{
- "mcc": "218",
- "mnc": "90",
+ "mcc": 218,
+ "mnc": 90,
"iso": "ba",
"country": "Bosnia and Herzegovina",
- "country_code": "387",
+ "country_code": 387,
"network": "BH Mobile"
},
{
- "mcc": "218",
- "mnc": "03",
+ "mcc": 218,
+ "mnc": 3,
"iso": "ba",
"country": "Bosnia and Herzegovina",
- "country_code": "387",
+ "country_code": 387,
"network": "Eronet"
},
{
- "mcc": "218",
- "mnc": "05",
+ "mcc": 218,
+ "mnc": 299,
+ "iso": "ba",
+ "country": "Bosnia and Herzegovina",
+ "country_code": 387,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 218,
+ "mnc": 999,
"iso": "ba",
"country": "Bosnia and Herzegovina",
- "country_code": "387",
+ "country_code": 387,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 218,
+ "mnc": 5,
+ "iso": "ba",
+ "country": "Bosnia and Herzegovina",
+ "country_code": 387,
"network": "m:tel"
},
{
- "mcc": "652",
- "mnc": "04",
+ "mcc": 652,
+ "mnc": 4,
"iso": "bw",
"country": "Botswana",
- "country_code": "267",
+ "country_code": 267,
"network": "beMobile"
},
{
- "mcc": "652",
- "mnc": "01",
+ "mcc": 652,
+ "mnc": 299,
+ "iso": "bw",
+ "country": "Botswana",
+ "country_code": 267,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 652,
+ "mnc": 999,
+ "iso": "bw",
+ "country": "Botswana",
+ "country_code": 267,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 652,
+ "mnc": 1,
"iso": "bw",
"country": "Botswana",
- "country_code": "267",
+ "country_code": 267,
"network": "Mascom"
},
{
- "mcc": "652",
- "mnc": "02",
+ "mcc": 652,
+ "mnc": 2,
"iso": "bw",
"country": "Botswana",
- "country_code": "267",
+ "country_code": 267,
"network": "Orange"
},
{
- "mcc": "724",
- "mnc": "26",
+ "mcc": 724,
+ "mnc": 32,
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": 55,
+ "network": "Algar Telecom"
+ },
+ {
+ "mcc": 724,
+ "mnc": 33,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "AmericaNet"
+ "country_code": 55,
+ "network": "Algar Telecom"
},
{
- "mcc": "724",
- "mnc": "12",
+ "mcc": 724,
+ "mnc": 34,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Claro/Albra/America Movil"
+ "country_code": 55,
+ "network": "Algar Telecom"
},
{
- "mcc": "724",
- "mnc": "38",
+ "mcc": 724,
+ "mnc": 26,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Claro/Albra/America Movil"
+ "country_code": 55,
+ "network": "Americanet"
},
{
- "mcc": "724",
- "mnc": "05",
+ "mcc": 724,
+ "mnc": 299,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Claro/Albra/America Movil"
+ "country_code": 55,
+ "network": "ARQIA"
},
{
- "mcc": "724",
- "mnc": "01",
+ "mcc": 724,
+ "mnc": 299,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Vivo S.A./Telemig "
+ "country_code": 55,
+ "network": "Bbs Options"
},
{
- "mcc": "724",
- "mnc": "34",
+ "mcc": 724,
+ "mnc": 299,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "CTBC Celular SA (CTBC)"
+ "country_code": 55,
+ "network": "Cinco"
},
{
- "mcc": "724",
- "mnc": "33",
+ "mcc": 724,
+ "mnc": 5,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "CTBC Celular SA (CTBC)"
+ "country_code": 55,
+ "network": "Claro"
},
{
- "mcc": "724",
- "mnc": "32",
+ "mcc": 724,
+ "mnc": 38,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "CTBC Celular SA (CTBC)"
+ "country_code": 55,
+ "network": "Claro"
},
{
- "mcc": "724",
- "mnc": "08",
+ "mcc": 724,
+ "mnc": 299,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "TIM"
+ "country_code": 55,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 724,
+ "mnc": 999,
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": 55,
+ "network": "Fix Line"
},
{
- "mcc": "724",
- "mnc": "39",
+ "mcc": 724,
+ "mnc": 21,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Nextel (Telet)"
+ "country_code": 55,
+ "network": "Ligue"
},
{
- "mcc": "724",
- "mnc": "00",
+ "mcc": 724,
+ "mnc": 0,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Nextel (Telet)"
+ "country_code": 55,
+ "network": "Nextel"
},
{
- "mcc": "724",
- "mnc": "16",
+ "mcc": 724,
+ "mnc": 39,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Brazil Telcom"
+ "country_code": 55,
+ "network": "Nextel"
},
{
- "mcc": "724",
- "mnc": "24",
+ "mcc": 724,
+ "mnc": 299,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Amazonia Celular S/A"
+ "country_code": 55,
+ "network": "NLT"
},
{
- "mcc": "724",
- "mnc": "30",
+ "mcc": 724,
+ "mnc": 16,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Oi (TNL PCS / Oi)"
+ "country_code": 55,
+ "network": "Oi Movel"
},
{
- "mcc": "724",
- "mnc": "31",
+ "mcc": 724,
+ "mnc": 31,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Oi (TNL PCS / Oi)"
+ "country_code": 55,
+ "network": "Oi Movel"
},
{
- "mcc": "724",
- "mnc": "54",
+ "mcc": 724,
+ "mnc": 15,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "PORTO SEGURO TELECOMUNICACOES"
+ "country_code": 55,
+ "network": "Sercomtel"
},
{
- "mcc": "724",
- "mnc": "15",
+ "mcc": 724,
+ "mnc": 17,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Sercontel Cel"
+ "country_code": 55,
+ "network": "Surf"
},
{
- "mcc": "724",
- "mnc": "07",
+ "mcc": 724,
+ "mnc": 299,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "CTBC/Triangulo "
+ "country_code": 55,
+ "network": "Telecall"
},
{
- "mcc": "724",
- "mnc": "19",
+ "mcc": 724,
+ "mnc": 4,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Vivo S.A./Telemig "
+ "country_code": 55,
+ "network": "TIM"
},
{
- "mcc": "724",
- "mnc": "03",
+ "mcc": 724,
+ "mnc": 3,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
+ "country_code": 55,
"network": "TIM"
},
{
- "mcc": "724",
- "mnc": "02",
+ "mcc": 724,
+ "mnc": 2,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
+ "country_code": 55,
"network": "TIM"
},
{
- "mcc": "724",
- "mnc": "04",
+ "mcc": 724,
+ "mnc": 54,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
+ "country_code": 55,
"network": "TIM"
},
{
- "mcc": "724",
- "mnc": "37",
+ "mcc": 724,
+ "mnc": 299,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Unicel do Brasil Telecomunicacoes Ltda"
+ "country_code": 55,
+ "network": "Vecto Mobile"
},
{
- "mcc": "724",
- "mnc": "10",
+ "mcc": 724,
+ "mnc": 11,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Vivo S.A./Telemig "
+ "country_code": 55,
+ "network": "Vivo"
},
{
- "mcc": "724",
- "mnc": "06",
+ "mcc": 724,
+ "mnc": 23,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Vivo S.A./Telemig "
+ "country_code": 55,
+ "network": "Vivo"
},
{
- "mcc": "724",
- "mnc": "23",
+ "mcc": 724,
+ "mnc": 6,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Vivo S.A./Telemig "
+ "country_code": 55,
+ "network": "Vivo"
},
{
- "mcc": "724",
- "mnc": "11",
+ "mcc": 724,
+ "mnc": 10,
"iso": "br",
"country": "Brazil",
- "country_code": "55",
- "network": "Vivo S.A./Telemig "
+ "country_code": 55,
+ "network": "Vivo"
},
{
- "mcc": "348",
- "mnc": "570",
+ "mcc": 348,
+ "mnc": 570,
"iso": "vg",
"country": "British Virgin Islands",
- "country_code": "284",
- "network": "Caribbean Cellular"
+ "country_code": 284,
+ "network": "CCT"
},
{
- "mcc": "348",
- "mnc": "770",
+ "mcc": 348,
+ "mnc": 770,
"iso": "vg",
"country": "British Virgin Islands",
- "country_code": "284",
+ "country_code": 284,
"network": "Digicel"
},
{
- "mcc": "348",
- "mnc": "170",
+ "mcc": 348,
+ "mnc": 299,
+ "iso": "vg",
+ "country": "British Virgin Islands",
+ "country_code": 284,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 348,
+ "mnc": 999,
+ "iso": "vg",
+ "country": "British Virgin Islands",
+ "country_code": 284,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 348,
+ "mnc": 170,
"iso": "vg",
"country": "British Virgin Islands",
- "country_code": "284",
- "network": "LIME"
+ "country_code": 284,
+ "network": "Flow"
+ },
+ {
+ "mcc": 528,
+ "mnc": 2,
+ "iso": "bn",
+ "country": "Brunei",
+ "country_code": 673,
+ "network": "B-Mobile"
+ },
+ {
+ "mcc": 528,
+ "mnc": 3,
+ "iso": "bn",
+ "country": "Brunei",
+ "country_code": 673,
+ "network": "DST"
},
{
- "mcc": "528",
- "mnc": "02",
+ "mcc": 528,
+ "mnc": 11,
"iso": "bn",
"country": "Brunei",
- "country_code": "673",
- "network": "b-mobile"
+ "country_code": 673,
+ "network": "DST"
},
{
- "mcc": "528",
- "mnc": "11",
+ "mcc": 528,
+ "mnc": 299,
"iso": "bn",
"country": "Brunei",
- "country_code": "673",
- "network": "Datastream (DTSCom)"
+ "country_code": 673,
+ "network": "Failed Calls"
},
{
- "mcc": "528",
- "mnc": "01",
+ "mcc": 528,
+ "mnc": 999,
"iso": "bn",
"country": "Brunei",
- "country_code": "673",
- "network": "Telekom Brunei Bhd (TelBru)"
+ "country_code": 673,
+ "network": "Fix Line"
},
{
- "mcc": "284",
- "mnc": "01",
+ "mcc": 284,
+ "mnc": 1,
"iso": "bg",
"country": "Bulgaria",
- "country_code": "359",
+ "country_code": 359,
"network": "A1"
},
{
- "mcc": "284",
- "mnc": "06",
+ "mcc": 284,
+ "mnc": 11,
"iso": "bg",
"country": "Bulgaria",
- "country_code": "359",
- "network": "Vivacom"
+ "country_code": 359,
+ "network": "Bulsatcom"
},
{
- "mcc": "284",
- "mnc": "03",
+ "mcc": 284,
+ "mnc": 299,
"iso": "bg",
"country": "Bulgaria",
- "country_code": "359",
- "network": "Vivacom"
+ "country_code": 359,
+ "network": "Failed Calls"
},
{
- "mcc": "284",
- "mnc": "11",
+ "mcc": 284,
+ "mnc": 999,
"iso": "bg",
"country": "Bulgaria",
- "country_code": "359",
- "network": "Bulsatcom"
+ "country_code": 359,
+ "network": "Fix Line"
},
{
- "mcc": "284",
- "mnc": "13",
+ "mcc": 284,
+ "mnc": 13,
"iso": "bg",
"country": "Bulgaria",
- "country_code": "359",
+ "country_code": 359,
"network": "T.com"
},
{
- "mcc": "284",
- "mnc": "05",
+ "mcc": 284,
+ "mnc": 5,
"iso": "bg",
"country": "Bulgaria",
- "country_code": "359",
+ "country_code": 359,
"network": "Telenor"
},
{
- "mcc": "284",
- "mnc": "03",
+ "mcc": 284,
+ "mnc": 3,
"iso": "bg",
"country": "Bulgaria",
- "country_code": "359",
+ "country_code": 359,
"network": "Vivacom"
},
{
- "mcc": "613",
- "mnc": "02",
+ "mcc": 613,
+ "mnc": 299,
+ "iso": "bf",
+ "country": "Burkina Faso",
+ "country_code": 226,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 613,
+ "mnc": 999,
"iso": "bf",
"country": "Burkina Faso",
- "country_code": "226",
+ "country_code": 226,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 613,
+ "mnc": 2,
+ "iso": "bf",
+ "country": "Burkina Faso",
+ "country_code": 226,
"network": "Orange"
},
{
- "mcc": "613",
- "mnc": "03",
+ "mcc": 613,
+ "mnc": 3,
"iso": "bf",
"country": "Burkina Faso",
- "country_code": "226",
+ "country_code": 226,
"network": "Telecel"
},
{
- "mcc": "613",
- "mnc": "01",
+ "mcc": 613,
+ "mnc": 1,
"iso": "bf",
"country": "Burkina Faso",
- "country_code": "226",
+ "country_code": 226,
"network": "Telmob"
},
{
- "mcc": "642",
- "mnc": "02",
- "iso": "bi",
- "country": "Burundi",
- "country_code": "257",
- "network": "Africel / Safaris"
- },
- {
- "mcc": "642",
- "mnc": "999",
+ "mcc": 642,
+ "mnc": 999,
"iso": "bi",
"country": "Burundi",
- "country_code": "257",
+ "country_code": 257,
"network": "Fix\tLine"
},
{
- "mcc": "642",
- "mnc": "82",
+ "mcc": 642,
+ "mnc": 1,
"iso": "bi",
"country": "Burundi",
- "country_code": "257",
+ "country_code": 257,
"network": "Leo"
},
{
- "mcc": "642",
- "mnc": "01",
+ "mcc": 642,
+ "mnc": 82,
"iso": "bi",
"country": "Burundi",
- "country_code": "257",
+ "country_code": 257,
"network": "Leo"
},
{
- "mcc": "642",
- "mnc": "08",
+ "mcc": 642,
+ "mnc": 8,
"iso": "bi",
"country": "Burundi",
- "country_code": "257",
+ "country_code": 257,
"network": "Lumitel"
},
{
- "mcc": "642",
- "mnc": "03",
+ "mcc": 642,
+ "mnc": 3,
"iso": "bi",
"country": "Burundi",
- "country_code": "257",
+ "country_code": 257,
"network": "ONAMOB"
},
{
- "mcc": "642",
- "mnc": "07",
+ "mcc": 642,
+ "mnc": 7,
"iso": "bi",
"country": "Burundi",
- "country_code": "257",
+ "country_code": 257,
"network": "Smart"
},
{
- "mcc": "456",
- "mnc": "04",
+ "mcc": 456,
+ "mnc": 4,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
+ "country_code": 855,
"network": "QB"
},
{
- "mcc": "456",
- "mnc": "01",
+ "mcc": 456,
+ "mnc": 1,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
+ "country_code": 855,
"network": "Cellcard"
},
{
- "mcc": "456",
- "mnc": "299",
+ "mcc": 456,
+ "mnc": 299,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
+ "country_code": 855,
"network": "CooTel"
},
{
- "mcc": "456",
- "mnc": "08",
+ "mcc": 456,
+ "mnc": 299,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
- "network": "Metfone"
+ "country_code": 855,
+ "network": "Failed Calls"
},
{
- "mcc": "456",
- "mnc": "18",
+ "mcc": 456,
+ "mnc": 999,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
- "network": "Cellcard"
+ "country_code": 855,
+ "network": "Fix Line"
},
{
- "mcc": "456",
- "mnc": "299",
+ "mcc": 456,
+ "mnc": 8,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
- "network": "MPTC"
+ "country_code": 855,
+ "network": "Metfone"
},
{
- "mcc": "456",
- "mnc": "03",
+ "mcc": 456,
+ "mnc": 299,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
- "network": "QB/Cambodia Adv. Comms."
+ "country_code": 855,
+ "network": "MPTC"
},
{
- "mcc": "456",
- "mnc": "11",
+ "mcc": 456,
+ "mnc": 11,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
+ "country_code": 855,
"network": "Seatel"
},
{
- "mcc": "456",
- "mnc": "06",
+ "mcc": 456,
+ "mnc": 5,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
+ "country_code": 855,
"network": "Smart"
},
{
- "mcc": "456",
- "mnc": "05",
+ "mcc": 456,
+ "mnc": 2,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
+ "country_code": 855,
"network": "Smart"
},
{
- "mcc": "456",
- "mnc": "02",
+ "mcc": 456,
+ "mnc": 6,
"iso": "kh",
"country": "Cambodia",
- "country_code": "855",
+ "country_code": 855,
"network": "Smart"
},
{
- "mcc": "456",
- "mnc": "09",
- "iso": "kh",
- "country": "Cambodia",
- "country_code": "855",
- "network": "Sotelco/Beeline"
+ "mcc": 624,
+ "mnc": 299,
+ "iso": "cm",
+ "country": "Cameroon",
+ "country_code": 237,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 624,
+ "mnc": 999,
+ "iso": "cm",
+ "country": "Cameroon",
+ "country_code": 237,
+ "network": "Fix Line"
},
{
- "mcc": "624",
- "mnc": "01",
+ "mcc": 624,
+ "mnc": 1,
"iso": "cm",
"country": "Cameroon",
- "country_code": "237",
+ "country_code": 237,
"network": "MTN"
},
{
- "mcc": "624",
- "mnc": "04",
+ "mcc": 624,
+ "mnc": 4,
"iso": "cm",
"country": "Cameroon",
- "country_code": "237",
- "network": "Nexttel"
+ "country_code": 237,
+ "network": "Nextel"
},
{
- "mcc": "624",
- "mnc": "02",
+ "mcc": 624,
+ "mnc": 2,
"iso": "cm",
"country": "Cameroon",
- "country_code": "237",
+ "country_code": 237,
"network": "Orange"
},
{
- "mcc": "302",
- "mnc": "652",
+ "mcc": 302,
+ "mnc": 61,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "BC Tel Mobility"
+ "country_code": 1,
+ "network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "630",
+ "mcc": 302,
+ "mnc": 630,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Bell Aliant"
+ "country_code": 1,
+ "network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "610",
+ "mcc": 302,
+ "mnc": 660,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
+ "country_code": 1,
"network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "651",
+ "mcc": 302,
+ "mnc": 64,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
+ "country_code": 1,
"network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "670",
+ "mcc": 302,
+ "mnc": 69,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "CityWest Mobility"
+ "country_code": 1,
+ "network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "361",
+ "mcc": 302,
+ "mnc": 640,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Clearnet"
+ "country_code": 1,
+ "network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "360",
+ "mcc": 302,
+ "mnc": 690,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Clearnet"
+ "country_code": 1,
+ "network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "380",
+ "mcc": 302,
+ "mnc": 66,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "DMTS Mobility"
+ "country_code": 1,
+ "network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "710",
+ "mcc": 302,
+ "mnc": 610,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Globalstar Canada"
+ "country_code": 1,
+ "network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "640",
+ "mcc": 302,
+ "mnc": 63,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Latitude Wireless"
+ "country_code": 1,
+ "network": "Bell Mobility"
},
{
- "mcc": "302",
- "mnc": "370",
+ "mcc": 302,
+ "mnc": 270,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "FIDO (Rogers AT&T/ Microcell)"
+ "country_code": 1,
+ "network": "eastlink"
},
{
- "mcc": "302",
- "mnc": "320",
+ "mcc": 302,
+ "mnc": 299,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "mobilicity"
+ "country_code": 1,
+ "network": "Failed Calls"
},
{
- "mcc": "302",
- "mnc": "702",
+ "mcc": 302,
+ "mnc": 370,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "MT&T Mobility"
+ "country_code": 1,
+ "network": "Fido"
},
{
- "mcc": "302",
- "mnc": "660",
+ "mcc": 302,
+ "mnc": 37,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "MTS Mobility"
+ "country_code": 1,
+ "network": "Fido"
},
{
- "mcc": "302",
- "mnc": "655",
+ "mcc": 302,
+ "mnc": 999,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "MTS Mobility"
+ "country_code": 1,
+ "network": "Fix Line"
},
{
- "mcc": "302",
- "mnc": "701",
+ "mcc": 302,
+ "mnc": 49,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "NB Tel Mobility"
+ "country_code": 1,
+ "network": "Freedom Mobile"
},
{
- "mcc": "302",
- "mnc": "703",
+ "mcc": 302,
+ "mnc": 491,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "New Tel Mobility"
+ "country_code": 1,
+ "network": "Freedom Mobile"
},
{
- "mcc": "302",
- "mnc": "760",
+ "mcc": 302,
+ "mnc": 490,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Public Mobile"
+ "country_code": 1,
+ "network": "Freedom Mobile"
},
{
- "mcc": "302",
- "mnc": "657",
+ "mcc": 302,
+ "mnc": 62,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Quebectel Mobility"
+ "country_code": 1,
+ "network": "Ice Wireless"
},
{
- "mcc": "302",
- "mnc": "720",
+ "mcc": 302,
+ "mnc": 620,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Rogers AT&T Wireless"
+ "country_code": 1,
+ "network": "Ice Wireless"
},
{
- "mcc": "302",
- "mnc": "680",
+ "mcc": 302,
+ "mnc": 380,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Sask Tel Mobility"
+ "country_code": 1,
+ "network": "K-Net Mobile"
},
{
- "mcc": "302",
- "mnc": "780",
+ "mcc": 302,
+ "mnc": 530,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Sask Tel Mobility"
+ "country_code": 1,
+ "network": "K-Net Mobile"
},
{
- "mcc": "302",
- "mnc": "654",
+ "mcc": 302,
+ "mnc": 53,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Sask Tel Mobility"
+ "country_code": 1,
+ "network": "K-Net Mobile"
},
{
- "mcc": "302",
- "mnc": "656",
+ "mcc": 302,
+ "mnc": 38,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Tbay Mobility"
+ "country_code": 1,
+ "network": "K-Net Mobile"
},
{
- "mcc": "302",
- "mnc": "653",
+ "mcc": 302,
+ "mnc": 720,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Telus Mobility"
+ "country_code": 1,
+ "network": "Rogers"
},
{
- "mcc": "302",
- "mnc": "220",
+ "mcc": 302,
+ "mnc": 721,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Telus Mobility"
+ "country_code": 1,
+ "network": "Rogers"
},
{
- "mcc": "302",
- "mnc": "500",
+ "mcc": 302,
+ "mnc": 32,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "Videotron"
+ "country_code": 1,
+ "network": "Rogers"
},
{
- "mcc": "302",
- "mnc": "490",
+ "mcc": 302,
+ "mnc": 82,
"iso": "ca",
"country": "Canada",
- "country_code": "1",
- "network": "WIND"
+ "country_code": 1,
+ "network": "Rogers"
},
{
- "mcc": "625",
- "mnc": "01",
- "iso": "cv",
- "country": "Cape Verde",
- "country_code": "238",
- "network": "CVMovel"
+ "mcc": 302,
+ "mnc": 320,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Rogers"
},
{
- "mcc": "625",
- "mnc": "02",
- "iso": "cv",
- "country": "Cape Verde",
- "country_code": "238",
- "network": "Unitel T+"
+ "mcc": 302,
+ "mnc": 820,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Rogers"
},
{
- "mcc": "346",
- "mnc": "050",
- "iso": "ky",
- "country": "Cayman Islands",
- "country_code": "1345",
- "network": "Digicel"
+ "mcc": 302,
+ "mnc": 72,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Rogers"
},
{
- "mcc": "346",
- "mnc": "006",
- "iso": "ky",
- "country": "Cayman Islands",
- "country_code": "1345",
- "network": "Digicel Ltd."
+ "mcc": 302,
+ "mnc": 750,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "SaskTel Mobility"
},
{
- "mcc": "346",
- "mnc": "140",
- "iso": "ky",
- "country": "Cayman Islands",
- "country_code": "1345",
- "network": "Flow / Lime"
+ "mcc": 302,
+ "mnc": 75,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "SaskTel Mobility"
},
{
- "mcc": "346",
- "mnc": "001",
- "iso": "ky",
- "country": "Cayman Islands",
- "country_code": "1345",
- "network": "Logic"
+ "mcc": 302,
+ "mnc": 78,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "SaskTel Mobility"
},
{
- "mcc": "623",
- "mnc": "04",
- "iso": "cf",
- "country": "Central African Republic",
- "country_code": "236",
- "network": "Azur"
+ "mcc": 302,
+ "mnc": 680,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "SaskTel Mobility"
},
{
- "mcc": "623",
- "mnc": "299",
- "iso": "cf",
- "country": "Central African Republic",
- "country_code": "236",
- "network": "Failed Calls"
+ "mcc": 302,
+ "mnc": 681,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "SaskTel Mobility"
},
{
- "mcc": "623",
- "mnc": "01",
- "iso": "cf",
- "country": "Central African Republic",
- "country_code": "236",
- "network": "Moov"
+ "mcc": 302,
+ "mnc": 780,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "SaskTel Mobility"
},
{
- "mcc": "623",
- "mnc": "03",
- "iso": "cf",
- "country": "Central African Republic",
- "country_code": "236",
- "network": "Orange"
+ "mcc": 302,
+ "mnc": 68,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "SaskTel Mobility"
},
{
- "mcc": "623",
- "mnc": "299",
- "iso": "cf",
- "country": "Central African Republic",
- "country_code": "236",
- "network": "Socatel"
+ "mcc": 302,
+ "mnc": 781,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "SaskTel Mobility"
},
{
- "mcc": "623",
- "mnc": "02",
- "iso": "cf",
- "country": "Central African Republic",
- "country_code": "236",
- "network": "Telecel"
+ "mcc": 302,
+ "mnc": 22,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
},
{
- "mcc": "622",
- "mnc": "01",
- "iso": "td",
- "country": "Chad",
- "country_code": "235",
- "network": "Airtel"
+ "mcc": 302,
+ "mnc": 860,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
},
{
- "mcc": "622",
- "mnc": "03",
- "iso": "td",
- "country": "Chad",
- "country_code": "235",
- "network": "Moov"
+ "mcc": 302,
+ "mnc": 86,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
},
{
- "mcc": "622",
- "mnc": "04",
+ "mcc": 302,
+ "mnc": 360,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
+ },
+ {
+ "mcc": 302,
+ "mnc": 221,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
+ },
+ {
+ "mcc": 302,
+ "mnc": 760,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
+ },
+ {
+ "mcc": 302,
+ "mnc": 36,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
+ },
+ {
+ "mcc": 302,
+ "mnc": 220,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
+ },
+ {
+ "mcc": 302,
+ "mnc": 22,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
+ },
+ {
+ "mcc": 302,
+ "mnc": 76,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Telus Mobility"
+ },
+ {
+ "mcc": 302,
+ "mnc": 520,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Videotron"
+ },
+ {
+ "mcc": 302,
+ "mnc": 51,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Videotron"
+ },
+ {
+ "mcc": 302,
+ "mnc": 50,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Videotron"
+ },
+ {
+ "mcc": 302,
+ "mnc": 500,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Videotron"
+ },
+ {
+ "mcc": 302,
+ "mnc": 510,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Videotron"
+ },
+ {
+ "mcc": 302,
+ "mnc": 299,
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": 1,
+ "network": "Xplore Mobile"
+ },
+ {
+ "mcc": 625,
+ "mnc": 1,
+ "iso": "cv",
+ "country": "Cape Verde",
+ "country_code": 238,
+ "network": "CVMovel"
+ },
+ {
+ "mcc": 625,
+ "mnc": 299,
+ "iso": "cv",
+ "country": "Cape Verde",
+ "country_code": 238,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 625,
+ "mnc": 999,
+ "iso": "cv",
+ "country": "Cape Verde",
+ "country_code": 238,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 625,
+ "mnc": 2,
+ "iso": "cv",
+ "country": "Cape Verde",
+ "country_code": 238,
+ "network": "Unitel T+"
+ },
+ {
+ "mcc": 346,
+ "mnc": 50,
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": 1345,
+ "network": "Digicel"
+ },
+ {
+ "mcc": 346,
+ "mnc": 299,
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": 1345,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 346,
+ "mnc": 999,
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": 1345,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 346,
+ "mnc": 140,
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": 1345,
+ "network": "Flow / Lime"
+ },
+ {
+ "mcc": 346,
+ "mnc": 1,
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": 1345,
+ "network": "Logic"
+ },
+ {
+ "mcc": 623,
+ "mnc": 4,
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": 236,
+ "network": "Azur"
+ },
+ {
+ "mcc": 623,
+ "mnc": 299,
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": 236,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 623,
+ "mnc": 999,
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": 236,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 623,
+ "mnc": 1,
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": 236,
+ "network": "Moov"
+ },
+ {
+ "mcc": 623,
+ "mnc": 3,
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": 236,
+ "network": "Orange"
+ },
+ {
+ "mcc": 623,
+ "mnc": 299,
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": 236,
+ "network": "Socatel"
+ },
+ {
+ "mcc": 623,
+ "mnc": 2,
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": 236,
+ "network": "Telecel"
+ },
+ {
+ "mcc": 622,
+ "mnc": 1,
"iso": "td",
"country": "Chad",
- "country_code": "235",
- "network": "Salam"
+ "country_code": 235,
+ "network": "Airtel"
+ },
+ {
+ "mcc": 622,
+ "mnc": 299,
+ "iso": "td",
+ "country": "Chad",
+ "country_code": 235,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 622,
+ "mnc": 999,
+ "iso": "td",
+ "country": "Chad",
+ "country_code": 235,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 622,
+ "mnc": 3,
+ "iso": "td",
+ "country": "Chad",
+ "country_code": 235,
+ "network": "Moov"
},
{
- "mcc": "622",
- "mnc": "02",
+ "mcc": 622,
+ "mnc": 4,
"iso": "td",
"country": "Chad",
- "country_code": "235",
- "network": "Tchad Mobile"
+ "country_code": 235,
+ "network": "Salam"
},
{
- "mcc": "730",
- "mnc": "06",
+ "mcc": 730,
+ "mnc": 299,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Blue Two Chile SA"
+ "country_code": 56,
+ "network": "Boby"
},
{
- "mcc": "730",
- "mnc": "11",
+ "mcc": 730,
+ "mnc": 299,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Celupago SA"
+ "country_code": 56,
+ "network": "CellOPS"
},
{
- "mcc": "730",
- "mnc": "15",
+ "mcc": 730,
+ "mnc": 22,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Cibeles Telecom SA"
+ "country_code": 56,
+ "network": "Cellplus"
},
{
- "mcc": "730",
- "mnc": "03",
+ "mcc": 730,
+ "mnc": 11,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Claro"
+ "country_code": 56,
+ "network": "Celupago"
},
{
- "mcc": "730",
- "mnc": "10",
+ "mcc": 730,
+ "mnc": 15,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Entel Telefonia"
+ "country_code": 56,
+ "network": "Cibeles Telecom"
},
{
- "mcc": "730",
- "mnc": "01",
+ "mcc": 730,
+ "mnc": 27,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Entel Telefonia Mov"
+ "country_code": 56,
+ "network": "Cibeles Telecom"
},
{
- "mcc": "730",
- "mnc": "14",
+ "mcc": 730,
+ "mnc": 3,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Netline Telefonica Movil Ltda"
+ "country_code": 56,
+ "network": "Claro"
},
{
- "mcc": "730",
- "mnc": "09",
+ "mcc": 730,
+ "mnc": 23,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Nextel SA"
+ "country_code": 56,
+ "network": "Claro"
},
{
- "mcc": "730",
- "mnc": "05",
+ "mcc": 730,
+ "mnc": 17,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Nextel SA"
+ "country_code": 56,
+ "network": "Compatel"
},
{
- "mcc": "730",
- "mnc": "04",
+ "mcc": 730,
+ "mnc": 299,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Nextel SA"
+ "country_code": 56,
+ "network": "Dotcom"
},
{
- "mcc": "730",
- "mnc": "19",
+ "mcc": 730,
+ "mnc": 18,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Sociedad Falabella Movil SPA"
+ "country_code": 56,
+ "network": "Empresas Bunker"
},
{
- "mcc": "730",
- "mnc": "07",
+ "mcc": 730,
+ "mnc": 10,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "TELEFONICA"
+ "country_code": 56,
+ "network": "Entel"
},
{
- "mcc": "730",
- "mnc": "02",
+ "mcc": 730,
+ "mnc": 1,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "TELEFONICA"
+ "country_code": 56,
+ "network": "Entel"
},
{
- "mcc": "730",
- "mnc": "12",
+ "mcc": 730,
+ "mnc": 299,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Telestar Movil SA"
+ "country_code": 56,
+ "network": "Failed Calls"
},
{
- "mcc": "730",
- "mnc": "00",
+ "mcc": 730,
+ "mnc": 999,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "TESAM SA"
+ "country_code": 56,
+ "network": "Fix Line"
},
{
- "mcc": "730",
- "mnc": "13",
+ "mcc": 730,
+ "mnc": 299,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "Tribe Mobile SPA"
+ "country_code": 56,
+ "network": "GTD Movil"
},
{
- "mcc": "730",
- "mnc": "08",
+ "mcc": 730,
+ "mnc": 299,
"iso": "cl",
"country": "Chile",
- "country_code": "56",
- "network": "VTR Banda Ancha SA"
+ "country_code": 56,
+ "network": "Industel"
},
{
- "mcc": "460",
- "mnc": "07",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "China Mobile GSM"
+ "mcc": 730,
+ "mnc": 6,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "INNET"
},
{
- "mcc": "460",
- "mnc": "00",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "China Mobile GSM"
+ "mcc": 730,
+ "mnc": 20,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Inversiones Santa Fe"
},
{
- "mcc": "460",
- "mnc": "02",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "China Mobile GSM"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Mavi"
},
{
- "mcc": "460",
- "mnc": "04",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "China Space Mobile Satellite Telecommunications Co. Ltd (China Spacecom)"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Mobilink"
},
{
- "mcc": "460",
- "mnc": "03",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "China Telecom"
+ "mcc": 730,
+ "mnc": 19,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Movil Falabella"
},
{
- "mcc": "460",
- "mnc": "05",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "China Telecom"
+ "mcc": 730,
+ "mnc": 7,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Movistar"
},
{
- "mcc": "460",
- "mnc": "06",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "China Unicom"
+ "mcc": 730,
+ "mnc": 2,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Movistar"
},
{
- "mcc": "460",
- "mnc": "01",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "China Unicom"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Mundo Pacifico"
},
{
- "mcc": "460",
- "mnc": "999",
- "iso": "cn",
- "country": "China",
- "country_code": "86",
- "network": "Fix Line"
+ "mcc": 730,
+ "mnc": 14,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Netline"
},
{
- "mcc": "732",
- "mnc": "299",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "ATnet"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "NetUno"
},
{
- "mcc": "732",
- "mnc": "130",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "Avantel"
+ "mcc": 730,
+ "mnc": 16,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Nomade Telecomunicaciones"
},
{
- "mcc": "732",
- "mnc": "102",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "Movistar"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Quantax"
},
{
- "mcc": "732",
- "mnc": "666",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "Claro"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "RedVoiss"
},
{
- "mcc": "732",
- "mnc": "101",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "Claro"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Simple"
},
{
- "mcc": "732",
- "mnc": "002",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "Edatel"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Swedcom"
},
{
- "mcc": "732",
- "mnc": "187",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "eTb"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Telcomax"
},
{
- "mcc": "732",
- "mnc": "299",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "Eztalk Mobile"
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Telefonica Uno Uno Cuatro"
},
{
- "mcc": "732",
- "mnc": "999",
- "iso": "co",
- "country": "Colombia",
- "country_code": "57",
- "network": "Fix Line"
+ "mcc": 730,
+ "mnc": 12,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Telestar"
},
{
- "mcc": "732",
- "mnc": "240",
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Television Interactiva"
+ },
+ {
+ "mcc": 730,
+ "mnc": 13,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "Virgin Mobile"
+ },
+ {
+ "mcc": 730,
+ "mnc": 299,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "VOIP Analysis"
+ },
+ {
+ "mcc": 730,
+ "mnc": 8,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "VTR Movil"
+ },
+ {
+ "mcc": 730,
+ "mnc": 4,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "WOM"
+ },
+ {
+ "mcc": 730,
+ "mnc": 9,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "WOM"
+ },
+ {
+ "mcc": 730,
+ "mnc": 5,
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": 56,
+ "network": "WOM"
+ },
+ {
+ "mcc": 460,
+ "mnc": 4,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Mobile"
+ },
+ {
+ "mcc": 460,
+ "mnc": 7,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Mobile"
+ },
+ {
+ "mcc": 460,
+ "mnc": 2,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Mobile"
+ },
+ {
+ "mcc": 460,
+ "mnc": 8,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Mobile"
+ },
+ {
+ "mcc": 460,
+ "mnc": 0,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Mobile"
+ },
+ {
+ "mcc": 460,
+ "mnc": 11,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Telecom"
+ },
+ {
+ "mcc": 460,
+ "mnc": 3,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Telecom"
+ },
+ {
+ "mcc": 460,
+ "mnc": 12,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Telecom"
+ },
+ {
+ "mcc": 460,
+ "mnc": 6,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Unicom"
+ },
+ {
+ "mcc": 460,
+ "mnc": 1,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Unicom"
+ },
+ {
+ "mcc": 460,
+ "mnc": 10,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Unicom"
+ },
+ {
+ "mcc": 460,
+ "mnc": 9,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "China Unicom"
+ },
+ {
+ "mcc": 460,
+ "mnc": 299,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 460,
+ "mnc": 999,
+ "iso": "cn",
+ "country": "China",
+ "country_code": 86,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 732,
+ "mnc": 299,
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": 57,
+ "network": "ATnet"
+ },
+ {
+ "mcc": 732,
+ "mnc": 130,
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": 57,
+ "network": "Avantel"
+ },
+ {
+ "mcc": 732,
+ "mnc": 666,
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": 57,
+ "network": "Claro"
+ },
+ {
+ "mcc": 732,
+ "mnc": 101,
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": 57,
+ "network": "Claro"
+ },
+ {
+ "mcc": 732,
+ "mnc": 2,
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": 57,
+ "network": "Edatel"
+ },
+ {
+ "mcc": 732,
+ "mnc": 187,
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": 57,
+ "network": "eTb"
+ },
+ {
+ "mcc": 732,
+ "mnc": 299,
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": 57,
+ "network": "Eztalk Mobile"
+ },
+ {
+ "mcc": 732,
+ "mnc": 999,
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": 57,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 732,
+ "mnc": 240,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Flash Mobile"
},
{
- "mcc": "732",
- "mnc": "299",
+ "mcc": 732,
+ "mnc": 299,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Gomobile"
},
{
- "mcc": "732",
- "mnc": "220",
+ "mcc": 732,
+ "mnc": 220,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Libre Tecnologias"
},
{
- "mcc": "732",
- "mnc": "299",
+ "mcc": 732,
+ "mnc": 299,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Movil Exito"
},
{
- "mcc": "732",
- "mnc": "123",
+ "mcc": 732,
+ "mnc": 123,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Movistar"
},
{
- "mcc": "732",
- "mnc": "001",
+ "mcc": 732,
+ "mnc": 1,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Movistar"
},
{
- "mcc": "732",
- "mnc": "299",
+ "mcc": 732,
+ "mnc": 299,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Plintron"
},
{
- "mcc": "732",
- "mnc": "230",
+ "mcc": 732,
+ "mnc": 230,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Setroc Mobile"
},
{
- "mcc": "732",
- "mnc": "199",
+ "mcc": 732,
+ "mnc": 199,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "SUMA movil"
},
{
- "mcc": "732",
- "mnc": "165",
+ "mcc": 732,
+ "mnc": 165,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Tigo"
},
{
- "mcc": "732",
- "mnc": "103",
+ "mcc": 732,
+ "mnc": 103,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Tigo"
},
{
- "mcc": "732",
- "mnc": "111",
+ "mcc": 732,
+ "mnc": 111,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Tigo"
},
{
- "mcc": "732",
- "mnc": "299",
+ "mcc": 732,
+ "mnc": 299,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "TuCEL"
},
{
- "mcc": "732",
- "mnc": "142",
+ "mcc": 732,
+ "mnc": 142,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "UNE"
},
{
- "mcc": "732",
- "mnc": "020",
+ "mcc": 732,
+ "mnc": 20,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "UNE"
},
{
- "mcc": "732",
- "mnc": "299",
+ "mcc": 732,
+ "mnc": 299,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Vilacom Mobile"
},
{
- "mcc": "732",
- "mnc": "154",
+ "mcc": 732,
+ "mnc": 154,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "Virgin Mobile"
},
{
- "mcc": "732",
- "mnc": "360",
+ "mcc": 732,
+ "mnc": 360,
"iso": "co",
"country": "Colombia",
- "country_code": "57",
+ "country_code": 57,
"network": "WOM"
},
{
- "mcc": "654",
- "mnc": "299",
+ "mcc": 654,
+ "mnc": 299,
"iso": "km",
"country": "Comoros",
- "country_code": "269",
+ "country_code": 269,
"network": "Failed Calls"
},
{
- "mcc": "654",
- "mnc": "01",
+ "mcc": 654,
+ "mnc": 999,
+ "iso": "km",
+ "country": "Comoros",
+ "country_code": 269,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 654,
+ "mnc": 1,
"iso": "km",
"country": "Comoros",
- "country_code": "269",
+ "country_code": 269,
"network": "HURI"
},
{
- "mcc": "654",
- "mnc": "02",
+ "mcc": 654,
+ "mnc": 2,
"iso": "km",
"country": "Comoros",
- "country_code": "269",
+ "country_code": 269,
"network": "Telma"
},
{
- "mcc": "629",
- "mnc": "01",
+ "mcc": 629,
+ "mnc": 1,
"iso": "cg",
"country": "Congo",
- "country_code": "242",
+ "country_code": 242,
"network": "Airtel"
},
{
- "mcc": "629",
- "mnc": "02",
+ "mcc": 629,
+ "mnc": 299,
+ "iso": "cg",
+ "country": "Congo",
+ "country_code": 242,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 629,
+ "mnc": 999,
"iso": "cg",
"country": "Congo",
- "country_code": "242",
- "network": "Azur SA (ETC)"
+ "country_code": 242,
+ "network": "Fix Line"
},
{
- "mcc": "629",
- "mnc": "10",
+ "mcc": 629,
+ "mnc": 10,
"iso": "cg",
"country": "Congo",
- "country_code": "242",
+ "country_code": 242,
"network": "MTN"
},
{
- "mcc": "629",
- "mnc": "07",
+ "mcc": 629,
+ "mnc": 7,
"iso": "cg",
"country": "Congo",
- "country_code": "242",
+ "country_code": 242,
"network": "Warid"
},
{
- "mcc": "548",
- "mnc": "01",
+ "mcc": 548,
+ "mnc": 1,
"iso": "ck",
"country": "Cook Islands",
- "country_code": "682",
+ "country_code": 682,
"network": "Vodafone / Bluesky"
},
{
- "mcc": "712",
- "mnc": "03",
+ "mcc": 548,
+ "mnc": 299,
+ "iso": "ck",
+ "country": "Cook Islands",
+ "country_code": 682,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 548,
+ "mnc": 999,
+ "iso": "ck",
+ "country": "Cook Islands",
+ "country_code": 682,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 712,
+ "mnc": 3,
"iso": "cr",
"country": "Costa Rica",
- "country_code": "506",
+ "country_code": 506,
"network": "Claro"
},
{
- "mcc": "712",
- "mnc": "999",
+ "mcc": 712,
+ "mnc": 299,
"iso": "cr",
"country": "Costa Rica",
- "country_code": "506",
- "network": "Fix Line"
+ "country_code": 506,
+ "network": "Failed Calls"
},
{
- "mcc": "712",
- "mnc": "999",
+ "mcc": 712,
+ "mnc": 999,
"iso": "cr",
"country": "Costa Rica",
- "country_code": "506",
+ "country_code": 506,
"network": "Fix Line"
},
{
- "mcc": "712",
- "mnc": "02",
+ "mcc": 712,
+ "mnc": 2,
"iso": "cr",
"country": "Costa Rica",
- "country_code": "506",
- "network": "ICE"
+ "country_code": 506,
+ "network": "Kolbi / ICE"
},
{
- "mcc": "712",
- "mnc": "01",
+ "mcc": 712,
+ "mnc": 1,
"iso": "cr",
"country": "Costa Rica",
- "country_code": "506",
- "network": "ICE"
+ "country_code": 506,
+ "network": "Kolbi / ICE"
},
{
- "mcc": "712",
- "mnc": "04",
+ "mcc": 712,
+ "mnc": 4,
"iso": "cr",
"country": "Costa Rica",
- "country_code": "506",
+ "country_code": 506,
"network": "Movistar"
},
{
- "mcc": "712",
- "mnc": "20",
+ "mcc": 712,
+ "mnc": 299,
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": 506,
+ "network": "MultiCom"
+ },
+ {
+ "mcc": 712,
+ "mnc": 299,
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": 506,
+ "network": "racsa"
+ },
+ {
+ "mcc": 712,
+ "mnc": 299,
"iso": "cr",
"country": "Costa Rica",
- "country_code": "506",
- "network": "Virtualis"
+ "country_code": 506,
+ "network": "Tuyo Movil"
},
{
- "mcc": "219",
- "mnc": "10",
+ "mcc": 219,
+ "mnc": 10,
"iso": "hr",
"country": "Croatia",
- "country_code": "385",
+ "country_code": 385,
"network": "A1 / VIP"
},
{
- "mcc": "219",
- "mnc": "999",
+ "mcc": 219,
+ "mnc": 299,
+ "iso": "hr",
+ "country": "Croatia",
+ "country_code": 385,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 219,
+ "mnc": 999,
"iso": "hr",
"country": "Croatia",
- "country_code": "385",
+ "country_code": 385,
"network": "Fix Line"
},
{
- "mcc": "219",
- "mnc": "01",
+ "mcc": 219,
+ "mnc": 1,
"iso": "hr",
"country": "Croatia",
- "country_code": "385",
+ "country_code": 385,
"network": "T-Mobile"
},
{
- "mcc": "219",
- "mnc": "12",
+ "mcc": 219,
+ "mnc": 12,
"iso": "hr",
"country": "Croatia",
- "country_code": "385",
+ "country_code": 385,
"network": "TELE FOCUS"
},
{
- "mcc": "219",
- "mnc": "02",
+ "mcc": 219,
+ "mnc": 2,
"iso": "hr",
"country": "Croatia",
- "country_code": "385",
+ "country_code": 385,
"network": "Telemach / Tele2"
},
{
- "mcc": "368",
- "mnc": "01",
+ "mcc": 368,
+ "mnc": 1,
"iso": "cu",
"country": "Cuba",
- "country_code": "53",
- "network": "CubaCel/C-COM"
+ "country_code": 53,
+ "network": "Cubacel"
},
{
- "mcc": "368",
- "mnc": "999",
+ "mcc": 368,
+ "mnc": 299,
"iso": "cu",
"country": "Cuba",
- "country_code": "53",
- "network": "Fix Line"
- },
- {
- "mcc": "362",
- "mnc": "95",
- "iso": "cw",
- "country": "Curacao",
- "country_code": "599",
- "network": "EOCG Wireless NV"
+ "country_code": 53,
+ "network": "Failed Calls"
},
{
- "mcc": "362",
- "mnc": "999",
- "iso": "cw",
- "country": "Curacao",
- "country_code": "599",
+ "mcc": 368,
+ "mnc": 999,
+ "iso": "cu",
+ "country": "Cuba",
+ "country_code": 53,
"network": "Fix Line"
},
{
- "mcc": "362",
- "mnc": "69",
- "iso": "cw",
- "country": "Curacao",
- "country_code": "599",
- "network": "Polycom N.V./ Digicel"
+ "mcc": 368,
+ "mnc": 299,
+ "iso": "cu",
+ "country": "Cuba",
+ "country_code": 53,
+ "network": "MoviTel"
},
{
- "mcc": "280",
- "mnc": "22",
+ "mcc": 280,
+ "mnc": 22,
"iso": "cy",
"country": "Cyprus",
- "country_code": "357",
+ "country_code": 357,
"network": "Cablenet / Lemontel"
},
{
- "mcc": "280",
- "mnc": "02",
+ "mcc": 280,
+ "mnc": 1,
"iso": "cy",
"country": "Cyprus",
- "country_code": "357",
+ "country_code": 357,
"network": "Cytamobile-Vodafone"
},
{
- "mcc": "280",
- "mnc": "01",
+ "mcc": 280,
+ "mnc": 2,
"iso": "cy",
"country": "Cyprus",
- "country_code": "357",
+ "country_code": 357,
"network": "Cytamobile-Vodafone"
},
{
- "mcc": "280",
- "mnc": "10",
+ "mcc": 280,
+ "mnc": 10,
"iso": "cy",
"country": "Cyprus",
- "country_code": "357",
+ "country_code": 357,
"network": "Epic / MTN"
},
{
- "mcc": "280",
- "mnc": "999",
+ "mcc": 280,
+ "mnc": 299,
+ "iso": "cy",
+ "country": "Cyprus",
+ "country_code": 357,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 280,
+ "mnc": 999,
"iso": "cy",
"country": "Cyprus",
- "country_code": "357",
+ "country_code": 357,
"network": "Fix Line"
},
{
- "mcc": "280",
- "mnc": "20",
+ "mcc": 280,
+ "mnc": 20,
"iso": "cy",
"country": "Cyprus",
- "country_code": "357",
+ "country_code": 357,
"network": "PrimeTel"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "+4U Mobile"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "3ton"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "CEZ"
},
{
- "mcc": "230",
- "mnc": "08",
+ "mcc": 230,
+ "mnc": 8,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Compatel"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Dragon"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "EriMobile"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": 420,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Fayn"
},
{
- "mcc": "230",
- "mnc": "999",
+ "mcc": 230,
+ "mnc": 999,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Fix Line"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "GoMobil"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "ha-loo mobil"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Laudatio"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "METRONET"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "MOBIL21"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Nej Mobil"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "NETBOX Mobil"
},
{
- "mcc": "230",
- "mnc": "04",
+ "mcc": 230,
+ "mnc": 4,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Nordic Telecom"
},
{
- "mcc": "230",
- "mnc": "02",
+ "mcc": 230,
+ "mnc": 2,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "O2"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Odorik"
},
{
- "mcc": "230",
- "mnc": "05",
+ "mcc": 230,
+ "mnc": 5,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "PODA"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "SAZKA"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "SZDC"
},
{
- "mcc": "230",
- "mnc": "98",
+ "mcc": 230,
+ "mnc": 98,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "SZDC"
},
{
- "mcc": "230",
- "mnc": "07",
+ "mcc": 230,
+ "mnc": 1,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "T-Mobile"
},
{
- "mcc": "230",
- "mnc": "01",
+ "mcc": 230,
+ "mnc": 7,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "T-Mobile"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Tesco Mobile"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "TOPefekt"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "TT Quality"
},
{
- "mcc": "230",
- "mnc": "09",
+ "mcc": 230,
+ "mnc": 299,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Uniphone"
},
{
- "mcc": "230",
- "mnc": "299",
+ "mcc": 230,
+ "mnc": 9,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Uniphone"
},
{
- "mcc": "230",
- "mnc": "03",
- "iso": "cz",
- "country": "Czech Republic",
- "country_code": "420",
- "network": "Vodafone"
- },
- {
- "mcc": "230",
- "mnc": "03",
- "iso": "cz",
- "country": "Czech Republic",
- "country_code": "420",
- "network": "Vodafone"
- },
- {
- "mcc": "230",
- "mnc": "99",
+ "mcc": 230,
+ "mnc": 3,
"iso": "cz",
"country": "Czech Republic",
- "country_code": "420",
+ "country_code": 420,
"network": "Vodafone"
},
{
- "mcc": "630",
- "mnc": "90",
+ "mcc": 630,
+ "mnc": 90,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
+ "country_code": 243,
"network": "Africell"
},
{
- "mcc": "630",
- "mnc": "02",
+ "mcc": 630,
+ "mnc": 2,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
+ "country_code": 243,
"network": "Airtel"
},
{
- "mcc": "630",
- "mnc": "299",
+ "mcc": 630,
+ "mnc": 299,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
+ "country_code": 243,
"network": "Failed Calls"
},
{
- "mcc": "630",
- "mnc": "86",
+ "mcc": 630,
+ "mnc": 999,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
- "network": "Orange"
+ "country_code": 243,
+ "network": "Fix Line"
},
{
- "mcc": "630",
- "mnc": "05",
+ "mcc": 630,
+ "mnc": 86,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
- "network": "Supercell"
+ "country_code": 243,
+ "network": "Orange"
},
{
- "mcc": "630",
- "mnc": "299",
+ "mcc": 630,
+ "mnc": 5,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
- "network": "Tatem"
+ "country_code": 243,
+ "network": "Supercell"
},
{
- "mcc": "630",
- "mnc": "89",
+ "mcc": 630,
+ "mnc": 299,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
- "network": "TIGO/Oasis"
+ "country_code": 243,
+ "network": "Tatem"
},
{
- "mcc": "630",
- "mnc": "01",
+ "mcc": 630,
+ "mnc": 1,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
+ "country_code": 243,
"network": "Vodacom"
},
{
- "mcc": "630",
- "mnc": "88",
+ "mcc": 630,
+ "mnc": 88,
"iso": "cd",
"country": "Democratic Republic of Congo",
- "country_code": "243",
+ "country_code": 243,
"network": "Yozma Timeturns"
},
{
- "mcc": "238",
- "mnc": "23",
+ "mcc": 238,
+ "mnc": 6,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Banedanmark"
+ "country_code": 45,
+ "network": "3"
},
{
- "mcc": "238",
- "mnc": "15",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Net 1"
+ "country_code": 45,
+ "network": "42 Telecom"
},
{
- "mcc": "238",
- "mnc": "88",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Cobira"
+ "country_code": 45,
+ "network": "5Tel"
},
{
- "mcc": "238",
- "mnc": "13",
+ "mcc": 238,
+ "mnc": 23,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Compatel"
+ "country_code": 45,
+ "network": "Banedanmark"
},
{
- "mcc": "238",
- "mnc": "05",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": ""
+ "country_code": 45,
+ "network": "Benemen"
},
{
- "mcc": "238",
- "mnc": "999",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Fix Line"
+ "country_code": 45,
+ "network": "Bolignet-Aarhus"
},
{
- "mcc": "238",
- "mnc": "17",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Gotanet"
+ "country_code": 45,
+ "network": "CBB Mobil"
},
{
- "mcc": "238",
- "mnc": "42",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Greenwave"
+ "country_code": 45,
+ "network": "celfon"
},
{
- "mcc": "238",
- "mnc": "06",
+ "mcc": 238,
+ "mnc": 88,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "3"
+ "country_code": 45,
+ "network": "Cobira"
},
{
- "mcc": "238",
- "mnc": "28",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "LINK Mobility"
+ "country_code": 45,
+ "network": "Companymobile"
},
{
- "mcc": "238",
- "mnc": "12",
+ "mcc": 238,
+ "mnc": 13,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Lycamobile"
+ "country_code": 45,
+ "network": "Compatel"
},
{
- "mcc": "238",
- "mnc": "14",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Monty Mobile"
+ "country_code": 45,
+ "network": "Comtalk"
},
{
- "mcc": "238",
- "mnc": "07",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Mundio Mobile"
+ "country_code": 45,
+ "network": "Evercall"
},
{
- "mcc": "238",
- "mnc": "04",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Nexcon.io"
+ "country_code": 45,
+ "network": "Failed Calls"
},
{
- "mcc": "238",
- "mnc": "73",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Onomondo"
+ "country_code": 45,
+ "network": "Firmafon"
},
{
- "mcc": "238",
- "mnc": "30",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Pareteum"
+ "country_code": 45,
+ "network": "Firstcom"
},
{
- "mcc": "238",
- "mnc": "03",
+ "mcc": 238,
+ "mnc": 999,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Syniverse Technologies"
+ "country_code": 45,
+ "network": "Fix Line"
},
{
- "mcc": "238",
- "mnc": "10",
+ "mcc": 238,
+ "mnc": 17,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "TDC"
+ "country_code": 45,
+ "network": "Gotanet"
},
{
- "mcc": "238",
- "mnc": "01",
+ "mcc": 238,
+ "mnc": 42,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "TDC"
+ "country_code": 45,
+ "network": "Greenwave"
},
{
- "mcc": "238",
- "mnc": "77",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Telenor"
+ "country_code": 45,
+ "network": "ipnordic"
},
{
- "mcc": "238",
- "mnc": "02",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Telenor"
+ "country_code": 45,
+ "network": "Ipvision"
},
{
- "mcc": "238",
- "mnc": "96",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Telia"
+ "country_code": 45,
+ "network": "Lancelot"
},
{
- "mcc": "238",
- "mnc": "20",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Telia"
+ "country_code": 45,
+ "network": "Lebara"
},
{
- "mcc": "238",
- "mnc": "30",
+ "mcc": 238,
+ "mnc": 28,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Telia"
+ "country_code": 45,
+ "network": "LINK Mobility"
},
{
- "mcc": "238",
- "mnc": "16",
+ "mcc": 238,
+ "mnc": 12,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Tismi"
+ "country_code": 45,
+ "network": "Lycamobile"
},
{
- "mcc": "238",
- "mnc": "25",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Viahub"
+ "country_code": 45,
+ "network": "Maxtel.dk"
},
{
- "mcc": "238",
- "mnc": "08",
+ "mcc": 238,
+ "mnc": 299,
"iso": "dk",
"country": "Denmark",
- "country_code": "45",
- "network": "Voxbone / Bandwidth"
+ "country_code": 45,
+ "network": "MI Carrier Services"
},
{
- "mcc": "638",
- "mnc": "01",
- "iso": "dj",
- "country": "Djibouti",
- "country_code": "253",
- "network": "Evatis"
+ "mcc": 238,
+ "mnc": 299,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Mitto"
},
{
- "mcc": "366",
- "mnc": "110",
- "iso": "dm",
- "country": "Dominica",
- "country_code": "1767",
- "network": "C & W"
+ "mcc": 238,
+ "mnc": 299,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Mobiweb"
+ },
+ {
+ "mcc": 238,
+ "mnc": 14,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Monty Mobile"
+ },
+ {
+ "mcc": 238,
+ "mnc": 15,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Net 1"
+ },
+ {
+ "mcc": 238,
+ "mnc": 4,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Nexcon.io"
+ },
+ {
+ "mcc": 238,
+ "mnc": 299,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "NextM2M"
+ },
+ {
+ "mcc": 238,
+ "mnc": 73,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Onomondo"
+ },
+ {
+ "mcc": 238,
+ "mnc": 30,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Pareteum"
+ },
+ {
+ "mcc": 238,
+ "mnc": 299,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "SimService"
+ },
+ {
+ "mcc": 238,
+ "mnc": 3,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Syniverse"
+ },
+ {
+ "mcc": 238,
+ "mnc": 10,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "TDC"
+ },
+ {
+ "mcc": 238,
+ "mnc": 1,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "TDC"
+ },
+ {
+ "mcc": 238,
+ "mnc": 2,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Telenor"
+ },
+ {
+ "mcc": 238,
+ "mnc": 77,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Telenor"
+ },
+ {
+ "mcc": 238,
+ "mnc": 299,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Telenor Connexion"
+ },
+ {
+ "mcc": 238,
+ "mnc": 20,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Telia"
+ },
+ {
+ "mcc": 238,
+ "mnc": 96,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Telia"
+ },
+ {
+ "mcc": 238,
+ "mnc": 16,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Tismi"
+ },
+ {
+ "mcc": 238,
+ "mnc": 299,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Tripple Track"
+ },
+ {
+ "mcc": 238,
+ "mnc": 299,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Uni-tel"
+ },
+ {
+ "mcc": 238,
+ "mnc": 25,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Viahub"
+ },
+ {
+ "mcc": 238,
+ "mnc": 299,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Viptel"
+ },
+ {
+ "mcc": 238,
+ "mnc": 8,
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": 45,
+ "network": "Voxbone / Bandwidth"
+ },
+ {
+ "mcc": 310,
+ "mnc": 299,
+ "iso": "dg",
+ "country": "Diego Garcia",
+ "country_code": 246,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 310,
+ "mnc": 999,
+ "iso": "dg",
+ "country": "Diego Garcia",
+ "country_code": 246,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 310,
+ "mnc": 299,
+ "iso": "dg",
+ "country": "Diego Garcia",
+ "country_code": 246,
+ "network": "Sure"
+ },
+ {
+ "mcc": 638,
+ "mnc": 1,
+ "iso": "dj",
+ "country": "Djibouti",
+ "country_code": 253,
+ "network": "Evatis"
+ },
+ {
+ "mcc": 638,
+ "mnc": 299,
+ "iso": "dj",
+ "country": "Djibouti",
+ "country_code": 253,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 638,
+ "mnc": 999,
+ "iso": "dj",
+ "country": "Djibouti",
+ "country_code": 253,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 366,
+ "mnc": 50,
+ "iso": "dm",
+ "country": "Dominica",
+ "country_code": 1767,
+ "network": "Digicel"
+ },
+ {
+ "mcc": 366,
+ "mnc": 299,
+ "iso": "dm",
+ "country": "Dominica",
+ "country_code": 1767,
+ "network": "Failed Calls"
},
{
- "mcc": "366",
- "mnc": "020",
+ "mcc": 366,
+ "mnc": 999,
"iso": "dm",
"country": "Dominica",
- "country_code": "1767",
- "network": "Cingular Wireless/Digicel"
+ "country_code": 1767,
+ "network": "Fix Line"
},
{
- "mcc": "366",
- "mnc": "050",
+ "mcc": 366,
+ "mnc": 110,
"iso": "dm",
"country": "Dominica",
- "country_code": "1767",
- "network": "Wireless Ventures (Dominica) Ltd (Digicel Dominica)"
+ "country_code": 1767,
+ "network": "Flow"
},
{
- "mcc": "370",
- "mnc": "02",
+ "mcc": 370,
+ "mnc": 2,
"iso": "do",
"country": "Dominican Republic",
- "country_code": "1809",
+ "country_code": 1809,
"network": "Claro"
},
{
- "mcc": "370",
- "mnc": "01",
+ "mcc": 370,
+ "mnc": 299,
"iso": "do",
"country": "Dominican Republic",
- "country_code": "1809",
- "network": "Orange"
+ "country_code": 1809,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 370,
+ "mnc": 999,
+ "iso": "do",
+ "country": "Dominican Republic",
+ "country_code": 1809,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 370,
+ "mnc": 1,
+ "iso": "do",
+ "country": "Dominican Republic",
+ "country_code": 1809,
+ "network": "Orange / Altice"
},
{
- "mcc": "370",
- "mnc": "03",
+ "mcc": 370,
+ "mnc": 299,
"iso": "do",
"country": "Dominican Republic",
- "country_code": "1809",
- "network": "TRIcom"
+ "country_code": 1809,
+ "network": "Satel"
},
{
- "mcc": "370",
- "mnc": "04",
+ "mcc": 370,
+ "mnc": 4,
"iso": "do",
"country": "Dominican Republic",
- "country_code": "1809",
+ "country_code": 1809,
"network": "Viva"
},
{
- "mcc": "514",
- "mnc": "299",
+ "mcc": 514,
+ "mnc": 299,
"iso": "tl",
"country": "East Timor",
- "country_code": "670",
+ "country_code": 670,
"network": "Failed Calls"
},
{
- "mcc": "514",
- "mnc": "999",
+ "mcc": 514,
+ "mnc": 999,
"iso": "tl",
"country": "East Timor",
- "country_code": "670",
+ "country_code": 670,
"network": "Fix Line"
},
{
- "mcc": "514",
- "mnc": "03",
+ "mcc": 514,
+ "mnc": 3,
"iso": "tl",
"country": "East Timor",
- "country_code": "670",
+ "country_code": 670,
"network": "Telemor"
},
{
- "mcc": "514",
- "mnc": "01",
+ "mcc": 514,
+ "mnc": 1,
"iso": "tl",
"country": "East Timor",
- "country_code": "670",
+ "country_code": 670,
"network": "Telkomcel"
},
{
- "mcc": "514",
- "mnc": "02",
+ "mcc": 514,
+ "mnc": 2,
"iso": "tl",
"country": "East Timor",
- "country_code": "670",
+ "country_code": 670,
"network": "Timor Telecom"
},
{
- "mcc": "740",
- "mnc": "01",
+ "mcc": 740,
+ "mnc": 1,
"iso": "ec",
"country": "Ecuador",
- "country_code": "593",
- "network": "Claro/Port"
+ "country_code": 593,
+ "network": "Claro"
},
{
- "mcc": "740",
- "mnc": "02",
+ "mcc": 740,
+ "mnc": 2,
"iso": "ec",
"country": "Ecuador",
- "country_code": "593",
- "network": "CNT Mobile"
+ "country_code": 593,
+ "network": "CNT movil"
},
{
- "mcc": "740",
- "mnc": "000",
+ "mcc": 740,
+ "mnc": 299,
"iso": "ec",
"country": "Ecuador",
- "country_code": "593",
- "network": "Failed Call(s)"
+ "country_code": 593,
+ "network": "Failed Calls"
},
{
- "mcc": "740",
- "mnc": "00",
+ "mcc": 740,
+ "mnc": 999,
"iso": "ec",
"country": "Ecuador",
- "country_code": "593",
- "network": "MOVISTAR/OteCel"
+ "country_code": 593,
+ "network": "Fix Line"
},
{
- "mcc": "740",
- "mnc": "03",
+ "mcc": 740,
+ "mnc": 0,
"iso": "ec",
"country": "Ecuador",
- "country_code": "593",
- "network": "Tuenti"
+ "country_code": 593,
+ "network": "Movistar"
},
{
- "mcc": "602",
- "mnc": "03",
+ "mcc": 602,
+ "mnc": 3,
"iso": "eg",
"country": "Egypt",
- "country_code": "20",
+ "country_code": 20,
"network": "Etisalat"
},
{
- "mcc": "602",
- "mnc": "299",
+ "mcc": 602,
+ "mnc": 299,
"iso": "eg",
"country": "Egypt",
- "country_code": "20",
+ "country_code": 20,
"network": "Failed Calls"
},
{
- "mcc": "602",
- "mnc": "01",
+ "mcc": 602,
+ "mnc": 999,
+ "iso": "eg",
+ "country": "Egypt",
+ "country_code": 20,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 602,
+ "mnc": 1,
"iso": "eg",
"country": "Egypt",
- "country_code": "20",
+ "country_code": 20,
"network": "Orange"
},
{
- "mcc": "602",
- "mnc": "02",
+ "mcc": 602,
+ "mnc": 2,
"iso": "eg",
"country": "Egypt",
- "country_code": "20",
+ "country_code": 20,
"network": "Vodafone"
},
{
- "mcc": "602",
- "mnc": "04",
+ "mcc": 602,
+ "mnc": 4,
"iso": "eg",
"country": "Egypt",
- "country_code": "20",
+ "country_code": 20,
"network": "WE"
},
{
- "mcc": "706",
- "mnc": "01",
+ "mcc": 706,
+ "mnc": 1,
"iso": "sv",
"country": "El Salvador",
- "country_code": "503",
- "network": "CLARO/CTE"
+ "country_code": 503,
+ "network": "Claro"
},
{
- "mcc": "706",
- "mnc": "02",
+ "mcc": 706,
+ "mnc": 2,
"iso": "sv",
"country": "El Salvador",
- "country_code": "503",
+ "country_code": 503,
"network": "Digicel"
},
{
- "mcc": "706",
- "mnc": "05",
+ "mcc": 706,
+ "mnc": 299,
"iso": "sv",
"country": "El Salvador",
- "country_code": "503",
- "network": "INTELFON SA de CV"
+ "country_code": 503,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 706,
+ "mnc": 999,
+ "iso": "sv",
+ "country": "El Salvador",
+ "country_code": 503,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 706,
+ "mnc": 4,
+ "iso": "sv",
+ "country": "El Salvador",
+ "country_code": 503,
+ "network": "Movistar"
},
{
- "mcc": "706",
- "mnc": "04",
+ "mcc": 706,
+ "mnc": 5,
"iso": "sv",
"country": "El Salvador",
- "country_code": "503",
- "network": "Telefonica"
+ "country_code": 503,
+ "network": "RED"
},
{
- "mcc": "706",
- "mnc": "03",
+ "mcc": 706,
+ "mnc": 3,
"iso": "sv",
"country": "El Salvador",
- "country_code": "503",
- "network": "Telemovil"
+ "country_code": 503,
+ "network": "Tigo"
},
{
- "mcc": "627",
- "mnc": "299",
+ "mcc": 627,
+ "mnc": 299,
"iso": "gq",
"country": "Equatorial Guinea",
- "country_code": "240",
+ "country_code": 240,
"network": "Failed Calls"
},
{
- "mcc": "627",
- "mnc": "03",
+ "mcc": 627,
+ "mnc": 999,
+ "iso": "gq",
+ "country": "Equatorial Guinea",
+ "country_code": 240,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 627,
+ "mnc": 3,
"iso": "gq",
"country": "Equatorial Guinea",
- "country_code": "240",
+ "country_code": 240,
"network": "Muni"
},
{
- "mcc": "627",
- "mnc": "01",
+ "mcc": 627,
+ "mnc": 1,
"iso": "gq",
"country": "Equatorial Guinea",
- "country_code": "240",
+ "country_code": 240,
"network": "Orange"
},
{
- "mcc": "657",
- "mnc": "01",
+ "mcc": 657,
+ "mnc": 1,
"iso": "er",
"country": "Eritrea",
- "country_code": "291",
+ "country_code": 291,
"network": "Eritel"
},
{
- "mcc": "248",
- "mnc": "02",
+ "mcc": 657,
+ "mnc": 299,
+ "iso": "er",
+ "country": "Eritrea",
+ "country_code": 291,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 657,
+ "mnc": 999,
+ "iso": "er",
+ "country": "Eritrea",
+ "country_code": 291,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 248,
+ "mnc": 2,
"iso": "ee",
"country": "Estonia",
- "country_code": "372",
+ "country_code": 372,
"network": "Elisa"
},
{
- "mcc": "248",
- "mnc": "03",
+ "mcc": 248,
+ "mnc": 299,
+ "iso": "ee",
+ "country": "Estonia",
+ "country_code": 372,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 248,
+ "mnc": 999,
"iso": "ee",
"country": "Estonia",
- "country_code": "372",
+ "country_code": 372,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 248,
+ "mnc": 3,
+ "iso": "ee",
+ "country": "Estonia",
+ "country_code": 372,
"network": "Tele2"
},
{
- "mcc": "248",
- "mnc": "13",
+ "mcc": 248,
+ "mnc": 1,
"iso": "ee",
"country": "Estonia",
- "country_code": "372",
+ "country_code": 372,
"network": "Telia"
},
{
- "mcc": "248",
- "mnc": "01",
+ "mcc": 248,
+ "mnc": 13,
"iso": "ee",
"country": "Estonia",
- "country_code": "372",
+ "country_code": 372,
"network": "Telia"
},
{
- "mcc": "248",
- "mnc": "04",
+ "mcc": 248,
+ "mnc": 4,
"iso": "ee",
"country": "Estonia",
- "country_code": "372",
+ "country_code": 372,
"network": "TravelSim"
},
{
- "mcc": "636",
- "mnc": "01",
+ "mcc": 636,
+ "mnc": 1,
"iso": "et",
"country": "Ethiopia",
- "country_code": "251",
+ "country_code": 251,
"network": "Ethio Mobile"
},
{
- "mcc": "750",
- "mnc": "001",
+ "mcc": 636,
+ "mnc": 299,
+ "iso": "et",
+ "country": "Ethiopia",
+ "country_code": 251,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 636,
+ "mnc": 999,
+ "iso": "et",
+ "country": "Ethiopia",
+ "country_code": 251,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 750,
+ "mnc": 299,
+ "iso": "fk",
+ "country": "Falkland Islands",
+ "country_code": 500,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 750,
+ "mnc": 999,
+ "iso": "fk",
+ "country": "Falkland Islands",
+ "country_code": 500,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 750,
+ "mnc": 1,
"iso": "fk",
"country": "Falkland Islands",
- "country_code": "500",
+ "country_code": 500,
"network": "Sure"
},
{
- "mcc": "288",
- "mnc": "01",
+ "mcc": 288,
+ "mnc": 299,
+ "iso": "fo",
+ "country": "Faroe Islands",
+ "country_code": 298,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 288,
+ "mnc": 1,
"iso": "fo",
"country": "Faroe Islands",
- "country_code": "298",
+ "country_code": 298,
"network": "Faroese Telecom"
},
{
- "mcc": "288",
- "mnc": "02",
+ "mcc": 288,
+ "mnc": 999,
+ "iso": "fo",
+ "country": "Faroe Islands",
+ "country_code": 298,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 288,
+ "mnc": 2,
"iso": "fo",
"country": "Faroe Islands",
- "country_code": "298",
+ "country_code": 298,
"network": "Hey / Kall"
},
{
- "mcc": "288",
- "mnc": "03",
+ "mcc": 288,
+ "mnc": 3,
"iso": "fo",
"country": "Faroe Islands",
- "country_code": "298",
+ "country_code": 298,
"network": "Tosa"
},
{
- "mcc": "542",
- "mnc": "02",
+ "mcc": 542,
+ "mnc": 2,
"iso": "fj",
"country": "Fiji",
- "country_code": "679",
+ "country_code": 679,
"network": "DigiCell"
},
{
- "mcc": "542",
- "mnc": "01",
+ "mcc": 542,
+ "mnc": 299,
+ "iso": "fj",
+ "country": "Fiji",
+ "country_code": 679,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 542,
+ "mnc": 999,
"iso": "fj",
"country": "Fiji",
- "country_code": "679",
+ "country_code": 679,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 542,
+ "mnc": 1,
+ "iso": "fj",
+ "country": "Fiji",
+ "country_code": 679,
"network": "Vodafone"
},
{
- "mcc": "244",
- "mnc": "14",
+ "mcc": 244,
+ "mnc": 14,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Alcom"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Benemen"
},
{
- "mcc": "244",
- "mnc": "26",
+ "mcc": 244,
+ "mnc": 26,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Compatel"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Cuuma"
},
{
- "mcc": "244",
- "mnc": "03",
- "iso": "fi",
- "country": "Finland",
- "country_code": "358",
- "network": "DNA"
- },
- {
- "mcc": "244",
- "mnc": "12",
+ "mcc": 244,
+ "mnc": 12,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "DNA"
},
{
- "mcc": "244",
- "mnc": "13",
+ "mcc": 244,
+ "mnc": 13,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "DNA"
},
{
- "mcc": "244",
- "mnc": "04",
+ "mcc": 244,
+ "mnc": 4,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "DNA"
},
{
- "mcc": "244",
- "mnc": "12",
+ "mcc": 244,
+ "mnc": 3,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "DNA"
},
{
- "mcc": "244",
- "mnc": "21",
+ "mcc": 244,
+ "mnc": 6,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Elisa"
},
{
- "mcc": "244",
- "mnc": "06",
+ "mcc": 244,
+ "mnc": 21,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Elisa"
},
{
- "mcc": "244",
- "mnc": "05",
+ "mcc": 244,
+ "mnc": 5,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Elisa"
},
{
- "mcc": "244",
- "mnc": "05",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
- "network": "Elisa"
+ "country_code": 358,
+ "network": "Failed Calls"
},
{
- "mcc": "244",
- "mnc": "82",
+ "mcc": 244,
+ "mnc": 999,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
- "network": "interactive digital media / IDM"
+ "country_code": 358,
+ "network": "Fix Line"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "interactive digital media / IDM"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "IPIFY"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Lancelot"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "MI Carrier Services"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "MobiWeb"
},
{
- "mcc": "244",
- "mnc": "11",
- "iso": "fi",
- "country": "Finland",
- "country_code": "358",
- "network": "Viahub"
- },
- {
- "mcc": "244",
- "mnc": "24",
+ "mcc": 244,
+ "mnc": 24,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Nord Connect"
},
{
- "mcc": "244",
- "mnc": "41",
+ "mcc": 244,
+ "mnc": 9,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "NSN"
},
{
- "mcc": "244",
- "mnc": "09",
+ "mcc": 244,
+ "mnc": 7,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "NSN"
},
{
- "mcc": "244",
- "mnc": "08",
+ "mcc": 244,
+ "mnc": 39,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "NSN"
},
{
- "mcc": "244",
- "mnc": "38",
+ "mcc": 244,
+ "mnc": 38,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "NSN"
},
{
- "mcc": "244",
- "mnc": "39",
+ "mcc": 244,
+ "mnc": 41,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "NSN"
},
{
- "mcc": "244",
- "mnc": "40",
+ "mcc": 244,
+ "mnc": 8,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "NSN"
},
{
- "mcc": "244",
- "mnc": "07",
+ "mcc": 244,
+ "mnc": 40,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "NSN"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "RAILI"
},
{
- "mcc": "244",
- "mnc": "10",
- "iso": "fi",
- "country": "Finland",
- "country_code": "358",
- "network": "TDC Oy Finland"
- },
- {
- "mcc": "244",
- "mnc": "43",
+ "mcc": 244,
+ "mnc": 43,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Telavox"
},
{
- "mcc": "244",
- "mnc": "36",
+ "mcc": 244,
+ "mnc": 36,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Telia"
},
{
- "mcc": "244",
- "mnc": "91",
+ "mcc": 244,
+ "mnc": 91,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Telia"
},
{
- "mcc": "244",
- "mnc": "15",
+ "mcc": 244,
+ "mnc": 15,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Telit"
},
{
- "mcc": "244",
- "mnc": "37",
+ "mcc": 244,
+ "mnc": 37,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Tismi"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "TravelSim"
},
{
- "mcc": "244",
- "mnc": "299",
+ "mcc": 244,
+ "mnc": 299,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Twilio"
},
{
- "mcc": "244",
- "mnc": "35",
+ "mcc": 244,
+ "mnc": 35,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Ukko Mobile"
},
{
- "mcc": "244",
- "mnc": "42",
+ "mcc": 244,
+ "mnc": 42,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Viahub"
},
{
- "mcc": "244",
- "mnc": "47",
+ "mcc": 244,
+ "mnc": 45,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "VIRVE"
},
{
- "mcc": "244",
- "mnc": "46",
+ "mcc": 244,
+ "mnc": 47,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "VIRVE"
},
{
- "mcc": "244",
- "mnc": "45",
+ "mcc": 244,
+ "mnc": 33,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "VIRVE"
},
{
- "mcc": "244",
- "mnc": "33",
+ "mcc": 244,
+ "mnc": 46,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "VIRVE"
},
{
- "mcc": "244",
- "mnc": "32",
+ "mcc": 244,
+ "mnc": 32,
"iso": "fi",
"country": "Finland",
- "country_code": "358",
+ "country_code": 358,
"network": "Voxbone / Bandwidth"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Add-On Multimedia"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Afone Mobile"
},
{
- "mcc": "208",
- "mnc": "28",
+ "mcc": 208,
+ "mnc": 28,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Airmob"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Alphalink"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Alphalink"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Annatel"
},
{
- "mcc": "208",
- "mnc": "92",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
- "network": "IP Directions"
- },
- {
- "mcc": "208",
- "mnc": "299",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Atlas"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Auchan"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Auchan"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Axialys"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Bazile"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "BJT"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "BJT"
},
{
- "mcc": "208",
- "mnc": "88",
+ "mcc": 208,
+ "mnc": 88,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Bouygues Telecom"
},
{
- "mcc": "208",
- "mnc": "21",
+ "mcc": 208,
+ "mnc": 21,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Bouygues Telecom"
},
{
- "mcc": "208",
- "mnc": "20",
+ "mcc": 208,
+ "mnc": 20,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Bouygues Telecom"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Bretagne Telecom"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "CAT"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "CELESTE"
},
{
- "mcc": "208",
- "mnc": "34",
+ "mcc": 208,
+ "mnc": 34,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Cellhire"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Codepi"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Coolwave"
},
{
- "mcc": "208",
- "mnc": "27",
+ "mcc": 208,
+ "mnc": 27,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Coriolis"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "CPRO"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "CRH"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "CRT"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "CTExcel"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Doctolib"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Failed Calls"
},
{
- "mcc": "208",
- "mnc": "999",
+ "mcc": 208,
+ "mnc": 999,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Fix Line"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Foliateam"
},
{
- "mcc": "208",
- "mnc": "36",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "Free Mobile"
- },
- {
- "mcc": "208",
- "mnc": "15",
+ "mcc": 208,
+ "mnc": 15,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Free Mobile"
},
{
- "mcc": "208",
- "mnc": "14",
+ "mcc": 208,
+ "mnc": 36,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Free Mobile"
},
{
- "mcc": "208",
- "mnc": "35",
+ "mcc": 208,
+ "mnc": 35,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Free Mobile"
},
{
- "mcc": "208",
- "mnc": "16",
+ "mcc": 208,
+ "mnc": 16,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Free Mobile"
},
{
- "mcc": "208",
- "mnc": "07",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "GlobalStar"
- },
- {
- "mcc": "208",
- "mnc": "06",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "GlobalStar"
- },
- {
- "mcc": "208",
- "mnc": "05",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "GlobalStar"
- },
- {
- "mcc": "208",
- "mnc": "94",
+ "mcc": 208,
+ "mnc": 94,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Halys"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Happy Telecom"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Hexatel"
},
{
- "mcc": "208",
- "mnc": "89",
+ "mcc": 208,
+ "mnc": 89,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Hub One"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "i-via"
},
{
- "mcc": "208",
- "mnc": "29",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "Orange"
- },
- {
- "mcc": "208",
- "mnc": "37",
+ "mcc": 208,
+ "mnc": 37,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "IP Directions"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "IP Telecom"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Iptis"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "JOi"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Kertel"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Keyyo Mobile"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "La Poste Mobile"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "La Poste Mobile"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "LASOTEL"
},
{
- "mcc": "208",
- "mnc": "38",
+ "mcc": 208,
+ "mnc": 38,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Lebara"
},
{
- "mcc": "208",
- "mnc": "17",
+ "mcc": 208,
+ "mnc": 17,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Legos"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Linkt"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "LITEYEAR"
},
{
- "mcc": "208",
- "mnc": "15",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "Free Mobile"
- },
- {
- "mcc": "208",
- "mnc": "25",
+ "mcc": 208,
+ "mnc": 25,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Lycamobile"
},
{
- "mcc": "208",
- "mnc": "24",
+ "mcc": 208,
+ "mnc": 3,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "MobiquiThings"
},
{
- "mcc": "208",
- "mnc": "03",
+ "mcc": 208,
+ "mnc": 24,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "MobiquiThings"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Netcom"
},
{
- "mcc": "208",
- "mnc": "39",
+ "mcc": 208,
+ "mnc": 39,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Networth Telecom"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Nordnet"
},
{
- "mcc": "208",
- "mnc": "26",
+ "mcc": 208,
+ "mnc": 26,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "NRJ"
},
{
- "mcc": "208",
- "mnc": "23",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "Hub One"
- },
- {
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "onoff"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "OpenIP"
},
{
- "mcc": "208",
- "mnc": "01",
+ "mcc": 208,
+ "mnc": 1,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Orange"
},
{
- "mcc": "208",
- "mnc": "32",
+ "mcc": 208,
+ "mnc": 32,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Orange"
},
{
- "mcc": "208",
- "mnc": "91",
+ "mcc": 208,
+ "mnc": 91,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Orange"
},
{
- "mcc": "208",
- "mnc": "02",
+ "mcc": 208,
+ "mnc": 2,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Orange"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Paritel"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Prixtel"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Prixtel"
},
{
- "mcc": "208",
- "mnc": "10",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "SFR"
- },
- {
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "SCT TELECOM"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "SCT TELECOM"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Sewan Communications"
},
{
- "mcc": "208",
- "mnc": "11",
+ "mcc": 208,
+ "mnc": 13,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "SFR"
},
{
- "mcc": "208",
- "mnc": "13",
+ "mcc": 208,
+ "mnc": 9,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "SFR"
},
{
- "mcc": "208",
- "mnc": "09",
+ "mcc": 208,
+ "mnc": 8,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "SFR"
},
{
- "mcc": "208",
- "mnc": "10",
+ "mcc": 208,
+ "mnc": 11,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "SFR"
},
{
- "mcc": "208",
- "mnc": "08",
+ "mcc": 208,
+ "mnc": 10,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "SFR"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "SIMbioz"
},
{
- "mcc": "208",
- "mnc": "04",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "Axialys"
- },
- {
- "mcc": "208",
- "mnc": "30",
+ "mcc": 208,
+ "mnc": 30,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Syma Mobile"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "TDF"
},
{
- "mcc": "208",
- "mnc": "00",
- "iso": "fr",
- "country": "France",
- "country_code": "33",
- "network": "Tel/Te"
- },
- {
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Tismi"
},
{
- "mcc": "208",
- "mnc": "22",
+ "mcc": 208,
+ "mnc": 22,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Transatel"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Trunkline"
},
{
- "mcc": "208",
- "mnc": "12",
+ "mcc": 208,
+ "mnc": 12,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Truphone"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "unyc"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "VA SOLUTIONS"
},
{
- "mcc": "208",
- "mnc": "31",
+ "mcc": 208,
+ "mnc": 31,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "Vectone Mobile"
},
{
- "mcc": "208",
- "mnc": "299",
+ "mcc": 208,
+ "mnc": 299,
"iso": "fr",
"country": "France",
- "country_code": "33",
+ "country_code": 33,
"network": "VOIP Telecom"
},
{
- "mcc": "340",
- "mnc": "20",
- "iso": "gf",
- "country": "French Guiana",
- "country_code": "594",
- "network": "Bouygues/DigiCel"
- },
- {
- "mcc": "340",
- "mnc": "01",
- "iso": "gf",
- "country": "French Guiana",
- "country_code": "594",
- "network": "Orange Caribe"
- },
- {
- "mcc": "340",
- "mnc": "02",
- "iso": "gf",
- "country": "French Guiana",
- "country_code": "594",
- "network": "Outremer Telecom"
+ "mcc": 547,
+ "mnc": 299,
+ "iso": "pf",
+ "country": "French Polynesia",
+ "country_code": 689,
+ "network": "Failed Calls"
},
{
- "mcc": "340",
- "mnc": "11",
- "iso": "gf",
- "country": "French Guiana",
- "country_code": "594",
- "network": "TelCell GSM"
+ "mcc": 547,
+ "mnc": 999,
+ "iso": "pf",
+ "country": "French Polynesia",
+ "country_code": 689,
+ "network": "Fix Line"
},
{
- "mcc": "340",
- "mnc": "03",
- "iso": "gf",
- "country": "French Guiana",
- "country_code": "594",
- "network": "TelCell GSM"
+ "mcc": 547,
+ "mnc": 299,
+ "iso": "pf",
+ "country": "French Polynesia",
+ "country_code": 689,
+ "network": "Ora"
},
{
- "mcc": "547",
- "mnc": "15",
+ "mcc": 547,
+ "mnc": 20,
"iso": "pf",
"country": "French Polynesia",
- "country_code": "689",
- "network": "Pacific Mobile Telecom (PMT)"
+ "country_code": 689,
+ "network": "Vini"
},
{
- "mcc": "547",
- "mnc": "20",
+ "mcc": 547,
+ "mnc": 15,
"iso": "pf",
"country": "French Polynesia",
- "country_code": "689",
- "network": "Vini/Tikiphone"
+ "country_code": 689,
+ "network": "Vodafone"
},
{
- "mcc": "628",
- "mnc": "03",
+ "mcc": 628,
+ "mnc": 3,
"iso": "ga",
"country": "Gabon",
- "country_code": "241",
+ "country_code": 241,
"network": "Airtel"
},
{
- "mcc": "628",
- "mnc": "04",
- "iso": "ga",
- "country": "Gabon",
- "country_code": "241",
- "network": "Azur/Usan S.A."
- },
- {
- "mcc": "628",
- "mnc": "299",
+ "mcc": 628,
+ "mnc": 299,
"iso": "ga",
"country": "Gabon",
- "country_code": "241",
+ "country_code": 241,
"network": "Failed Calls"
},
{
- "mcc": "628",
- "mnc": "01",
+ "mcc": 628,
+ "mnc": 999,
"iso": "ga",
"country": "Gabon",
- "country_code": "241",
- "network": "Libertis"
+ "country_code": 241,
+ "network": "Fix Line"
},
{
- "mcc": "628",
- "mnc": "02",
+ "mcc": 628,
+ "mnc": 1,
"iso": "ga",
"country": "Gabon",
- "country_code": "241",
- "network": "MOOV/Telecel"
+ "country_code": 241,
+ "network": "Libertis"
},
{
- "mcc": "607",
- "mnc": "02",
+ "mcc": 607,
+ "mnc": 2,
"iso": "gm",
"country": "Gambia",
- "country_code": "220",
+ "country_code": 220,
"network": "Africel"
},
{
- "mcc": "607",
- "mnc": "03",
+ "mcc": 607,
+ "mnc": 3,
"iso": "gm",
"country": "Gambia",
- "country_code": "220",
+ "country_code": 220,
"network": "Comium"
},
{
- "mcc": "607",
- "mnc": "01",
+ "mcc": 607,
+ "mnc": 299,
+ "iso": "gm",
+ "country": "Gambia",
+ "country_code": 220,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 607,
+ "mnc": 999,
"iso": "gm",
"country": "Gambia",
- "country_code": "220",
+ "country_code": 220,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 607,
+ "mnc": 1,
+ "iso": "gm",
+ "country": "Gambia",
+ "country_code": 220,
"network": "Gamcel"
},
{
- "mcc": "607",
- "mnc": "04",
+ "mcc": 607,
+ "mnc": 4,
"iso": "gm",
"country": "Gambia",
- "country_code": "220",
+ "country_code": 220,
"network": "QCell"
},
{
- "mcc": "282",
- "mnc": "04",
+ "mcc": 282,
+ "mnc": 4,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
+ "country_code": 995,
"network": "Beeline"
},
{
- "mcc": "282",
- "mnc": "01",
+ "mcc": 282,
+ "mnc": 299,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
- "network": "Geocell"
+ "country_code": 995,
+ "network": "Failed Calls"
},
{
- "mcc": "282",
- "mnc": "07",
+ "mcc": 282,
+ "mnc": 999,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
- "network": "GlobalCell"
+ "country_code": 995,
+ "network": "Fix Line"
},
{
- "mcc": "282",
- "mnc": "03",
+ "mcc": 282,
+ "mnc": 1,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
- "network": "Iberiatel Ltd."
+ "country_code": 995,
+ "network": "Geocell"
},
{
- "mcc": "282",
- "mnc": "02",
+ "mcc": 282,
+ "mnc": 7,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
- "network": "MagtiCom"
+ "country_code": 995,
+ "network": "GlobalCell"
},
{
- "mcc": "282",
- "mnc": "11",
+ "mcc": 282,
+ "mnc": 2,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
- "network": "Mobilive"
+ "country_code": 995,
+ "network": "MagtiCom"
},
{
- "mcc": "282",
- "mnc": "22",
+ "mcc": 282,
+ "mnc": 11,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
- "network": "MyPhone"
+ "country_code": 995,
+ "network": "Mobilive"
},
{
- "mcc": "282",
- "mnc": "10",
+ "mcc": 282,
+ "mnc": 22,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
- "network": "Premium Net"
+ "country_code": 995,
+ "network": "MyPhone"
},
{
- "mcc": "282",
- "mnc": "05",
+ "mcc": 282,
+ "mnc": 10,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
- "network": "Silknet"
+ "country_code": 995,
+ "network": "Premium Net"
},
{
- "mcc": "282",
- "mnc": "08",
+ "mcc": 282,
+ "mnc": 8,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
+ "country_code": 995,
"network": "Silknet"
},
{
- "mcc": "282",
- "mnc": "12",
+ "mcc": 282,
+ "mnc": 12,
"iso": "ge",
"country": "Georgia",
- "country_code": "995",
+ "country_code": 995,
"network": "Telecom 1"
},
{
- "mcc": "262",
- "mnc": "23",
- "iso": "de",
- "country": "Germany",
- "country_code": "49",
- "network": "1&1"
- },
- {
- "mcc": "262",
- "mnc": "299",
+ "mcc": 262,
+ "mnc": 23,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "1&1"
},
{
- "mcc": "262",
- "mnc": "299",
+ "mcc": 262,
+ "mnc": 299,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Argon Networks"
},
{
- "mcc": "262",
- "mnc": "13",
- "iso": "de",
- "country": "Germany",
- "country_code": "49",
- "network": "Bundesamt f\u00fcr Ausr\u00fcstung, Informationstechnik und Nutzung der Bundeswehr"
- },
- {
- "mcc": "262",
- "mnc": "10",
+ "mcc": 262,
+ "mnc": 10,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "DB Netz"
},
{
- "mcc": "262",
- "mnc": "77",
- "iso": "de",
- "country": "Germany",
- "country_code": "49",
- "network": "Telefonica / E-Plus"
- },
- {
- "mcc": "262",
- "mnc": "20",
+ "mcc": 262,
+ "mnc": 20,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Telefonica / E-Plus"
},
{
- "mcc": "262",
- "mnc": "999",
+ "mcc": 262,
+ "mnc": 999,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Fix Line"
},
{
- "mcc": "262",
- "mnc": "14",
+ "mcc": 262,
+ "mnc": 14,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Lebara"
},
{
- "mcc": "262",
- "mnc": "43",
+ "mcc": 262,
+ "mnc": 43,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Lycamobile"
},
{
- "mcc": "262",
- "mnc": "21",
+ "mcc": 262,
+ "mnc": 21,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Multiconnect"
},
{
- "mcc": "262",
- "mnc": "299",
+ "mcc": 262,
+ "mnc": 22,
"iso": "de",
"country": "Germany",
- "country_code": "49",
- "network": "Multiconnect"
+ "country_code": 49,
+ "network": "sipgate"
},
{
- "mcc": "262",
- "mnc": "22",
+ "mcc": 262,
+ "mnc": 12,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "sipgate"
},
{
- "mcc": "262",
- "mnc": "33",
+ "mcc": 262,
+ "mnc": 78,
"iso": "de",
"country": "Germany",
- "country_code": "49",
- "network": "sipgate"
+ "country_code": 49,
+ "network": "T-mobile"
},
{
- "mcc": "262",
- "mnc": "299",
+ "mcc": 262,
+ "mnc": 6,
"iso": "de",
"country": "Germany",
- "country_code": "49",
- "network": "TelcoVillage"
+ "country_code": 49,
+ "network": "T-mobile"
},
{
- "mcc": "262",
- "mnc": "24",
+ "mcc": 262,
+ "mnc": 1,
"iso": "de",
"country": "Germany",
- "country_code": "49",
- "network": "TelcoVillage"
+ "country_code": 49,
+ "network": "T-mobile"
},
{
- "mcc": "262",
- "mnc": "05",
+ "mcc": 262,
+ "mnc": 24,
"iso": "de",
"country": "Germany",
- "country_code": "49",
- "network": "Telefonica / E-Plus"
+ "country_code": 49,
+ "network": "TelcoVillage"
},
{
- "mcc": "262",
- "mnc": "17",
+ "mcc": 262,
+ "mnc": 3,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Telefonica / E-Plus"
},
{
- "mcc": "262",
- "mnc": "12",
+ "mcc": 262,
+ "mnc": 5,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Telefonica / E-Plus"
},
{
- "mcc": "262",
- "mnc": "03",
+ "mcc": 262,
+ "mnc": 17,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Telefonica / E-Plus"
},
{
- "mcc": "262",
- "mnc": "11",
+ "mcc": 262,
+ "mnc": 16,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Telefonica / O2"
},
{
- "mcc": "262",
- "mnc": "08",
+ "mcc": 262,
+ "mnc": 7,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Telefonica / O2"
},
{
- "mcc": "262",
- "mnc": "16",
+ "mcc": 262,
+ "mnc": 11,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Telefonica / O2"
},
{
- "mcc": "262",
- "mnc": "07",
+ "mcc": 262,
+ "mnc": 8,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Telefonica / O2"
},
{
- "mcc": "262",
- "mnc": "78",
- "iso": "de",
- "country": "Germany",
- "country_code": "49",
- "network": "Telekom / T-mobile"
- },
- {
- "mcc": "262",
- "mnc": "06",
- "iso": "de",
- "country": "Germany",
- "country_code": "49",
- "network": "Telekom / T-mobile"
- },
- {
- "mcc": "262",
- "mnc": "01",
- "iso": "de",
- "country": "Germany",
- "country_code": "49",
- "network": "Telekom / T-mobile"
- },
- {
- "mcc": "262",
- "mnc": "299",
+ "mcc": 262,
+ "mnc": 299,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Tismi"
},
{
- "mcc": "262",
- "mnc": "299",
+ "mcc": 262,
+ "mnc": 299,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Truphone"
},
{
- "mcc": "262",
- "mnc": "09",
+ "mcc": 262,
+ "mnc": 42,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Vodafone"
},
{
- "mcc": "262",
- "mnc": "04",
+ "mcc": 262,
+ "mnc": 9,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Vodafone"
},
{
- "mcc": "262",
- "mnc": "02",
+ "mcc": 262,
+ "mnc": 4,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Vodafone"
},
{
- "mcc": "262",
- "mnc": "42",
+ "mcc": 262,
+ "mnc": 2,
"iso": "de",
"country": "Germany",
- "country_code": "49",
+ "country_code": 49,
"network": "Vodafone"
},
{
- "mcc": "620",
- "mnc": "06",
+ "mcc": 620,
+ "mnc": 3,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
+ "country_code": 233,
"network": "Airtel"
},
{
- "mcc": "620",
- "mnc": "03",
+ "mcc": 620,
+ "mnc": 6,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
+ "country_code": 233,
"network": "Airtel"
},
{
- "mcc": "620",
- "mnc": "299",
+ "mcc": 620,
+ "mnc": 299,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
+ "country_code": 233,
"network": "Comsys"
},
{
- "mcc": "620",
- "mnc": "04",
+ "mcc": 620,
+ "mnc": 299,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
- "network": "Expresso Ghana Ltd"
+ "country_code": 233,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 620,
+ "mnc": 999,
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": 233,
+ "network": "Fix Line"
},
{
- "mcc": "620",
- "mnc": "07",
+ "mcc": 620,
+ "mnc": 7,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
+ "country_code": 233,
"network": "Glo"
},
{
- "mcc": "620",
- "mnc": "01",
+ "mcc": 620,
+ "mnc": 1,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
+ "country_code": 233,
"network": "MTN"
},
{
- "mcc": "620",
- "mnc": "05",
+ "mcc": 620,
+ "mnc": 5,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
+ "country_code": 233,
"network": "National Security"
},
{
- "mcc": "620",
- "mnc": "08",
+ "mcc": 620,
+ "mnc": 8,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
+ "country_code": 233,
"network": "Surfline"
},
{
- "mcc": "620",
- "mnc": "02",
+ "mcc": 620,
+ "mnc": 2,
"iso": "gh",
"country": "Ghana",
- "country_code": "233",
+ "country_code": 233,
"network": "Vodafone"
},
{
- "mcc": "266",
- "mnc": "06",
- "iso": "gi",
- "country": "Gibraltar",
- "country_code": "350",
- "network": "CTS Mobile"
- },
- {
- "mcc": "266",
- "mnc": "09",
+ "mcc": 266,
+ "mnc": 299,
"iso": "gi",
"country": "Gibraltar",
- "country_code": "350",
- "network": "eazi telecom"
+ "country_code": 350,
+ "network": "Failed Calls"
},
{
- "mcc": "266",
- "mnc": "999",
+ "mcc": 266,
+ "mnc": 999,
"iso": "gi",
"country": "Gibraltar",
- "country_code": "350",
+ "country_code": 350,
"network": "Fix Line"
},
{
- "mcc": "266",
- "mnc": "299",
+ "mcc": 266,
+ "mnc": 299,
"iso": "gi",
"country": "Gibraltar",
- "country_code": "350",
+ "country_code": 350,
"network": "GibFibreSpeed"
},
{
- "mcc": "266",
- "mnc": "01",
+ "mcc": 266,
+ "mnc": 1,
"iso": "gi",
"country": "Gibraltar",
- "country_code": "350",
+ "country_code": 350,
"network": "Gibtel"
},
{
- "mcc": "202",
- "mnc": "299",
- "iso": "gr",
- "country": "Greece",
- "country_code": "30",
- "network": "AMD Telecom"
- },
- {
- "mcc": "202",
- "mnc": "07",
+ "mcc": 202,
+ "mnc": 299,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "AMD Telecom"
},
{
- "mcc": "202",
- "mnc": "299",
+ "mcc": 202,
+ "mnc": 299,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Apifon"
},
{
- "mcc": "202",
- "mnc": "15",
+ "mcc": 202,
+ "mnc": 15,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "BWS"
},
{
- "mcc": "202",
- "mnc": "02",
+ "mcc": 202,
+ "mnc": 2,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Cosmote"
},
{
- "mcc": "202",
- "mnc": "01",
+ "mcc": 202,
+ "mnc": 1,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Cosmote"
},
{
- "mcc": "202",
- "mnc": "14",
+ "mcc": 202,
+ "mnc": 999,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
- "network": "CyTa Mobile"
- },
- {
- "mcc": "202",
- "mnc": "999",
- "iso": "gr",
- "country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Fix Line"
},
{
- "mcc": "202",
- "mnc": "16",
+ "mcc": 202,
+ "mnc": 16,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Inter Telecom"
},
{
- "mcc": "202",
- "mnc": "299",
+ "mcc": 202,
+ "mnc": 299,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Interconnect"
},
{
- "mcc": "202",
- "mnc": "299",
+ "mcc": 202,
+ "mnc": 299,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "M-STAT"
},
{
- "mcc": "202",
- "mnc": "299",
+ "mcc": 202,
+ "mnc": 299,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Nova"
},
{
- "mcc": "202",
- "mnc": "04",
- "iso": "gr",
- "country": "Greece",
- "country_code": "30",
- "network": "OSE"
- },
- {
- "mcc": "202",
- "mnc": "04",
+ "mcc": 202,
+ "mnc": 4,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "OSE"
},
{
- "mcc": "202",
- "mnc": "03",
- "iso": "gr",
- "country": "Greece",
- "country_code": "30",
- "network": "OTE"
- },
- {
- "mcc": "202",
- "mnc": "03",
+ "mcc": 202,
+ "mnc": 3,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "OTE"
},
{
- "mcc": "202",
- "mnc": "299",
+ "mcc": 202,
+ "mnc": 299,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "OTEGLOBE"
},
{
- "mcc": "202",
- "mnc": "299",
+ "mcc": 202,
+ "mnc": 299,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Premium Net"
},
{
- "mcc": "202",
- "mnc": "10",
- "iso": "gr",
- "country": "Greece",
- "country_code": "30",
- "network": "Wind"
- },
- {
- "mcc": "202",
- "mnc": "05",
+ "mcc": 202,
+ "mnc": 5,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Vodafone"
},
{
- "mcc": "202",
- "mnc": "09",
+ "mcc": 202,
+ "mnc": 9,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Wind"
},
{
- "mcc": "202",
- "mnc": "10",
+ "mcc": 202,
+ "mnc": 10,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Wind"
},
{
- "mcc": "202",
- "mnc": "12",
+ "mcc": 202,
+ "mnc": 12,
"iso": "gr",
"country": "Greece",
- "country_code": "30",
+ "country_code": 30,
"network": "Yuboto"
},
{
- "mcc": "290",
- "mnc": "01",
+ "mcc": 290,
+ "mnc": 299,
+ "iso": "gl",
+ "country": "Greenland",
+ "country_code": 299,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 290,
+ "mnc": 999,
"iso": "gl",
"country": "Greenland",
- "country_code": "299",
+ "country_code": 299,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 290,
+ "mnc": 1,
+ "iso": "gl",
+ "country": "Greenland",
+ "country_code": 299,
"network": "Tele Greenland"
},
{
- "mcc": "352",
- "mnc": "110",
+ "mcc": 352,
+ "mnc": 50,
"iso": "gd",
"country": "Grenada",
- "country_code": "1473",
- "network": "Cable & Wireless"
+ "country_code": 1473,
+ "network": "Digicel"
},
{
- "mcc": "352",
- "mnc": "030",
+ "mcc": 352,
+ "mnc": 299,
"iso": "gd",
"country": "Grenada",
- "country_code": "1473",
- "network": "Digicel"
+ "country_code": 1473,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 352,
+ "mnc": 999,
+ "iso": "gd",
+ "country": "Grenada",
+ "country_code": 1473,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 352,
+ "mnc": 110,
+ "iso": "gd",
+ "country": "Grenada",
+ "country_code": 1473,
+ "network": "Flow"
},
{
- "mcc": "352",
- "mnc": "050",
+ "mcc": 352,
+ "mnc": 299,
"iso": "gd",
"country": "Grenada",
- "country_code": "1473",
+ "country_code": 1473,
+ "network": "Spice Mobile"
+ },
+ {
+ "mcc": 340,
+ "mnc": 8,
+ "iso": "gf",
+ "country": "Guadeloupe and Martinique and French Guiana",
+ "country_code": 594,
+ "network": "Amigo"
+ },
+ {
+ "mcc": 340,
+ "mnc": 20,
+ "iso": "gf",
+ "country": "Guadeloupe and Martinique and French Guiana",
+ "country_code": 594,
"network": "Digicel"
},
{
- "mcc": "340",
- "mnc": "08",
- "iso": "gp",
- "country": "Guadeloupe ",
- "country_code": "590",
- "network": "Dauphin Telecom SU (Guadeloupe Telecom)"
+ "mcc": 340,
+ "mnc": 299,
+ "iso": "gf",
+ "country": "Guadeloupe and Martinique and French Guiana",
+ "country_code": 594,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 340,
+ "mnc": 999,
+ "iso": "gf",
+ "country": "Guadeloupe and Martinique and French Guiana",
+ "country_code": 594,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 340,
+ "mnc": 4,
+ "iso": "gf",
+ "country": "Guadeloupe and Martinique and French Guiana",
+ "country_code": 594,
+ "network": "Free"
+ },
+ {
+ "mcc": 340,
+ "mnc": 1,
+ "iso": "gf",
+ "country": "Guadeloupe and Martinique and French Guiana",
+ "country_code": 594,
+ "network": "Orange"
},
{
- "mcc": "340",
- "mnc": "10",
- "iso": "gp",
- "country": "Guadeloupe ",
- "country_code": "590",
- "network": ""
+ "mcc": 340,
+ "mnc": 2,
+ "iso": "gf",
+ "country": "Guadeloupe and Martinique and French Guiana",
+ "country_code": 594,
+ "network": "SFR"
},
{
- "mcc": "310",
- "mnc": "370",
+ "mcc": 310,
+ "mnc": 370,
"iso": "gu",
"country": "Guam",
- "country_code": "1671",
- "network": "Docomo"
+ "country_code": 1671,
+ "network": "Docomo Pacific"
},
{
- "mcc": "310",
- "mnc": "470",
+ "mcc": 310,
+ "mnc": 470,
"iso": "gu",
"country": "Guam",
- "country_code": "1671",
- "network": "Docomo"
+ "country_code": 1671,
+ "network": "Docomo Pacific"
},
{
- "mcc": "310",
- "mnc": "140",
+ "mcc": 310,
+ "mnc": 299,
"iso": "gu",
"country": "Guam",
- "country_code": "1671",
- "network": "GTA Wireless"
+ "country_code": 1671,
+ "network": "Failed Calls"
},
{
- "mcc": "310",
- "mnc": "033",
+ "mcc": 310,
+ "mnc": 999,
"iso": "gu",
"country": "Guam",
- "country_code": "1671",
- "network": "Guam Teleph. Auth"
+ "country_code": 1671,
+ "network": "Fix Line"
},
{
- "mcc": "310",
- "mnc": "032",
+ "mcc": 310,
+ "mnc": 140,
"iso": "gu",
"country": "Guam",
- "country_code": "1671",
- "network": "IT&E OverSeas"
+ "country_code": 1671,
+ "network": "GTA"
},
{
- "mcc": "311",
- "mnc": "250",
+ "mcc": 310,
+ "mnc": 110,
"iso": "gu",
"country": "Guam",
- "country_code": "1671",
- "network": "Wave Runner LLC"
+ "country_code": 1671,
+ "network": "IT&E"
},
{
- "mcc": "704",
- "mnc": "01",
+ "mcc": 704,
+ "mnc": 1,
"iso": "gt",
"country": "Guatemala",
- "country_code": "502",
+ "country_code": 502,
"network": "Claro"
},
{
- "mcc": "704",
- "mnc": "03",
+ "mcc": 704,
+ "mnc": 299,
+ "iso": "gt",
+ "country": "Guatemala",
+ "country_code": 502,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 704,
+ "mnc": 999,
"iso": "gt",
"country": "Guatemala",
- "country_code": "502",
- "network": "Telefonica"
+ "country_code": 502,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 704,
+ "mnc": 3,
+ "iso": "gt",
+ "country": "Guatemala",
+ "country_code": 502,
+ "network": "Movistar"
},
{
- "mcc": "704",
- "mnc": "02",
+ "mcc": 704,
+ "mnc": 2,
"iso": "gt",
"country": "Guatemala",
- "country_code": "502",
- "network": "TIGO/COMCEL"
+ "country_code": 502,
+ "network": "Tigo"
},
{
- "mcc": "611",
- "mnc": "05",
+ "mcc": 611,
+ "mnc": 5,
"iso": "gn",
"country": "Guinea",
- "country_code": "224",
+ "country_code": 224,
"network": "Cellcom"
},
{
- "mcc": "611",
- "mnc": "03",
+ "mcc": 611,
+ "mnc": 299,
+ "iso": "gn",
+ "country": "Guinea",
+ "country_code": 224,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 611,
+ "mnc": 999,
"iso": "gn",
"country": "Guinea",
- "country_code": "224",
- "network": "Intercel"
+ "country_code": 224,
+ "network": "Fix Line"
},
{
- "mcc": "611",
- "mnc": "04",
+ "mcc": 611,
+ "mnc": 4,
"iso": "gn",
"country": "Guinea",
- "country_code": "224",
+ "country_code": 224,
"network": "MTN"
},
{
- "mcc": "611",
- "mnc": "01",
+ "mcc": 611,
+ "mnc": 1,
"iso": "gn",
"country": "Guinea",
- "country_code": "224",
+ "country_code": 224,
"network": "Orange"
},
{
- "mcc": "611",
- "mnc": "02",
- "iso": "gn",
- "country": "Guinea",
- "country_code": "224",
- "network": "SotelGui"
+ "mcc": 632,
+ "mnc": 299,
+ "iso": "gw",
+ "country": "Guinea-Bissau",
+ "country_code": 245,
+ "network": "Failed Calls"
},
{
- "mcc": "632",
- "mnc": "999",
+ "mcc": 632,
+ "mnc": 999,
"iso": "gw",
"country": "Guinea-Bissau",
- "country_code": "245",
+ "country_code": 245,
"network": "Fix\tLine"
},
{
- "mcc": "632",
- "mnc": "01",
+ "mcc": 632,
+ "mnc": 1,
"iso": "gw",
"country": "Guinea-Bissau",
- "country_code": "245",
+ "country_code": 245,
"network": "Guinetel"
},
{
- "mcc": "632",
- "mnc": "02",
+ "mcc": 632,
+ "mnc": 2,
"iso": "gw",
"country": "Guinea-Bissau",
- "country_code": "245",
+ "country_code": 245,
"network": "MTN"
},
{
- "mcc": "632",
- "mnc": "03",
+ "mcc": 632,
+ "mnc": 3,
"iso": "gw",
"country": "Guinea-Bissau",
- "country_code": "245",
+ "country_code": 245,
"network": "Orange"
},
{
- "mcc": "738",
- "mnc": "02",
+ "mcc": 738,
+ "mnc": 2,
"iso": "gy",
"country": "Guyana",
- "country_code": "592",
- "network": "Cellink Plus"
+ "country_code": 592,
+ "network": "Cellink"
},
{
- "mcc": "738",
- "mnc": "01",
+ "mcc": 738,
+ "mnc": 1,
"iso": "gy",
"country": "Guyana",
- "country_code": "592",
- "network": "DigiCel"
+ "country_code": 592,
+ "network": "Digicel"
},
{
- "mcc": "372",
- "mnc": "01",
- "iso": "ht",
- "country": "Haiti",
- "country_code": "509",
- "network": "Comcel"
+ "mcc": 738,
+ "mnc": 299,
+ "iso": "gy",
+ "country": "Guyana",
+ "country_code": 592,
+ "network": "Failed Calls"
},
{
- "mcc": "372",
- "mnc": "02",
+ "mcc": 738,
+ "mnc": 999,
+ "iso": "gy",
+ "country": "Guyana",
+ "country_code": 592,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 372,
+ "mnc": 2,
"iso": "ht",
"country": "Haiti",
- "country_code": "509",
+ "country_code": 509,
"network": "Digicel"
},
{
- "mcc": "372",
- "mnc": "03",
+ "mcc": 372,
+ "mnc": 299,
"iso": "ht",
"country": "Haiti",
- "country_code": "509",
- "network": "Natcom"
+ "country_code": 509,
+ "network": "Failed Calls"
},
{
- "mcc": "708",
- "mnc": "040",
- "iso": "hn",
+ "mcc": 372,
+ "mnc": 999,
+ "iso": "ht",
+ "country": "Haiti",
+ "country_code": 509,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 372,
+ "mnc": 3,
+ "iso": "ht",
+ "country": "Haiti",
+ "country_code": 509,
+ "network": "Natcom"
+ },
+ {
+ "mcc": 708,
+ "mnc": 1,
+ "iso": "hn",
"country": "Honduras",
- "country_code": "504",
- "network": "Digicel"
+ "country_code": 504,
+ "network": "Claro"
+ },
+ {
+ "mcc": 708,
+ "mnc": 1,
+ "iso": "hn",
+ "country": "Honduras",
+ "country_code": 504,
+ "network": "Claro"
+ },
+ {
+ "mcc": 708,
+ "mnc": 299,
+ "iso": "hn",
+ "country": "Honduras",
+ "country_code": 504,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 708,
+ "mnc": 999,
+ "iso": "hn",
+ "country": "Honduras",
+ "country_code": 504,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 708,
+ "mnc": 30,
+ "iso": "hn",
+ "country": "Honduras",
+ "country_code": 504,
+ "network": "HonduTel"
},
{
- "mcc": "708",
- "mnc": "030",
+ "mcc": 708,
+ "mnc": 30,
"iso": "hn",
"country": "Honduras",
- "country_code": "504",
+ "country_code": 504,
"network": "HonduTel"
},
{
- "mcc": "708",
- "mnc": "001",
+ "mcc": 708,
+ "mnc": 2,
"iso": "hn",
"country": "Honduras",
- "country_code": "504",
- "network": "SERCOM/CLARO"
+ "country_code": 504,
+ "network": "Tigo"
},
{
- "mcc": "708",
- "mnc": "002",
+ "mcc": 708,
+ "mnc": 2,
"iso": "hn",
"country": "Honduras",
- "country_code": "504",
- "network": "Telefonica/CELTEL"
+ "country_code": 504,
+ "network": "Tigo"
},
{
- "mcc": "454",
- "mnc": "12",
+ "mcc": 454,
+ "mnc": 14,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "China Mobile/Peoples"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "3"
},
{
- "mcc": "454",
- "mnc": "28",
+ "mcc": 454,
+ "mnc": 5,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "China Mobile/Peoples"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "3"
},
{
- "mcc": "454",
- "mnc": "13",
+ "mcc": 454,
+ "mnc": 4,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "China Mobile/Peoples"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "3"
},
{
- "mcc": "454",
- "mnc": "09",
+ "mcc": 454,
+ "mnc": 3,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "China Motion"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "3"
},
{
- "mcc": "454",
- "mnc": "07",
+ "mcc": 454,
+ "mnc": 13,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "China Unicom Ltd"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "China Mobile"
},
{
- "mcc": "454",
- "mnc": "11",
+ "mcc": 454,
+ "mnc": 12,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "China-HongKong Telecom Ltd (CHKTL)"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "China Mobile"
},
{
- "mcc": "454",
- "mnc": "01",
+ "mcc": 454,
+ "mnc": 30,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "Citic Telecom Ltd."
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "China Mobile"
},
{
- "mcc": "454",
- "mnc": "02",
+ "mcc": 454,
+ "mnc": 32,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "CSL Ltd."
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "HKBN"
},
{
- "mcc": "454",
- "mnc": "00",
+ "mcc": 454,
+ "mnc": 7,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "CSL Ltd."
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "China Unicom"
},
{
- "mcc": "454",
- "mnc": "18",
+ "mcc": 454,
+ "mnc": 11,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "CSL Ltd."
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "CHKTL"
},
{
- "mcc": "454",
- "mnc": "10",
+ "mcc": 454,
+ "mnc": 1,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "CSL/New World PCS Ltd."
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Citic"
},
{
- "mcc": "454",
- "mnc": "31",
+ "mcc": 454,
+ "mnc": 31,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
+ "country": "Hong Kong",
+ "country_code": 852,
"network": "CTExcel"
},
{
- "mcc": "454",
- "mnc": "14",
+ "mcc": 454,
+ "mnc": 36,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Eascotel"
+ },
+ {
+ "mcc": 454,
+ "mnc": 999,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 454,
+ "mnc": 393,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 27,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 397,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 392,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 25,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 396,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 391,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 395,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 390,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 28,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 26,
+ "iso": "hk",
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
+ },
+ {
+ "mcc": 454,
+ "mnc": 394,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "H3G/Hutchinson"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
},
{
- "mcc": "454",
- "mnc": "05",
+ "mcc": 454,
+ "mnc": 398,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "H3G/Hutchinson"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Government"
},
{
- "mcc": "454",
- "mnc": "04",
+ "mcc": 454,
+ "mnc": 24,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "H3G/Hutchinson"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Multibyte"
},
{
- "mcc": "454",
- "mnc": "03",
+ "mcc": 454,
+ "mnc": 15,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "H3G/Hutchinson"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SmarTone"
},
{
- "mcc": "454",
- "mnc": "20",
+ "mcc": 454,
+ "mnc": 17,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "HKT/PCCW"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SmarTone"
},
{
- "mcc": "454",
- "mnc": "19",
+ "mcc": 454,
+ "mnc": 6,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "HKT/PCCW"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SmarTone"
},
{
- "mcc": "454",
- "mnc": "29",
+ "mcc": 454,
+ "mnc": 2,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "HKT/PCCW"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SUN Mobile / CSL"
},
{
- "mcc": "454",
- "mnc": "16",
+ "mcc": 454,
+ "mnc": 0,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "HKT/PCCW"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SUN Mobile / CSL"
},
{
- "mcc": "454",
- "mnc": "47",
+ "mcc": 454,
+ "mnc": 10,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "shared by private TETRA systems"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SUN Mobile / CSL"
},
{
- "mcc": "454",
- "mnc": "24",
+ "mcc": 454,
+ "mnc": 16,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "Multibyte Info Technology Ltd"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SUN Mobile / CSL"
},
{
- "mcc": "454",
- "mnc": "40",
+ "mcc": 454,
+ "mnc": 20,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "shared by private TETRA systems"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SUN Mobile / CSL"
},
{
- "mcc": "454",
- "mnc": "08",
+ "mcc": 454,
+ "mnc": 18,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "Truephone"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SUN Mobile / CSL"
},
{
- "mcc": "454",
- "mnc": "17",
+ "mcc": 454,
+ "mnc": 19,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "Vodafone/SmarTone"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "SUN Mobile / CSL"
},
{
- "mcc": "454",
- "mnc": "15",
+ "mcc": 454,
+ "mnc": 8,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "Vodafone/SmarTone"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Tru"
},
{
- "mcc": "454",
- "mnc": "06",
+ "mcc": 454,
+ "mnc": 35,
"iso": "hk",
- "country": "Hongkong",
- "country_code": "852",
- "network": "Vodafone/SmarTone"
+ "country": "Hong Kong",
+ "country_code": 852,
+ "network": "Webbing"
},
{
- "mcc": "216",
- "mnc": "299",
+ "mcc": 216,
+ "mnc": 299,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Antenna"
},
{
- "mcc": "216",
- "mnc": "03",
+ "mcc": 216,
+ "mnc": 3,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Digi"
},
{
- "mcc": "216",
- "mnc": "999",
+ "mcc": 216,
+ "mnc": 999,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Fix line"
},
{
- "mcc": "216",
- "mnc": "299",
+ "mcc": 216,
+ "mnc": 299,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Invitech"
},
{
- "mcc": "216",
- "mnc": "299",
+ "mcc": 216,
+ "mnc": 299,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Mobil4"
},
{
- "mcc": "216",
- "mnc": "02",
+ "mcc": 216,
+ "mnc": 2,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "MVM NET"
},
{
- "mcc": "216",
- "mnc": "299",
+ "mcc": 216,
+ "mnc": 299,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Netfone"
},
{
- "mcc": "216",
- "mnc": "299",
+ "mcc": 216,
+ "mnc": 299,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "TARR"
},
{
- "mcc": "216",
- "mnc": "30",
+ "mcc": 216,
+ "mnc": 30,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Telekom"
},
{
- "mcc": "216",
- "mnc": "01",
+ "mcc": 216,
+ "mnc": 1,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Telenor"
},
{
- "mcc": "216",
- "mnc": "71",
+ "mcc": 216,
+ "mnc": 299,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
- "network": "UPC Magyarorszag Kft."
- },
- {
- "mcc": "216",
- "mnc": "299",
- "iso": "hu",
- "country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Vidanet"
},
{
- "mcc": "216",
- "mnc": "71",
+ "mcc": 216,
+ "mnc": 71,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Vodafone"
},
{
- "mcc": "216",
- "mnc": "70",
+ "mcc": 216,
+ "mnc": 70,
"iso": "hu",
"country": "Hungary",
- "country_code": "36",
+ "country_code": 36,
"network": "Vodafone"
},
{
- "mcc": "274",
- "mnc": "09",
+ "mcc": 274,
+ "mnc": 299,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
- "network": "Amitelo"
+ "country_code": 354,
+ "network": "Failed Calls"
},
{
- "mcc": "274",
- "mnc": "07",
+ "mcc": 274,
+ "mnc": 999,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
- "network": "IceCell"
+ "country_code": 354,
+ "network": "Fix Line"
},
{
- "mcc": "274",
- "mnc": "11",
+ "mcc": 274,
+ "mnc": 11,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "NOVA"
},
{
- "mcc": "274",
- "mnc": "31",
+ "mcc": 274,
+ "mnc": 31,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "Siminn"
},
{
- "mcc": "274",
- "mnc": "08",
+ "mcc": 274,
+ "mnc": 8,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "Siminn"
},
{
- "mcc": "274",
- "mnc": "01",
+ "mcc": 274,
+ "mnc": 1,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "Siminn"
},
{
- "mcc": "274",
- "mnc": "16",
+ "mcc": 274,
+ "mnc": 16,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "Tismi"
},
{
- "mcc": "274",
- "mnc": "04",
+ "mcc": 274,
+ "mnc": 4,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "Viking Wireless"
},
{
- "mcc": "274",
- "mnc": "12",
+ "mcc": 274,
+ "mnc": 12,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "Vodafone"
},
{
- "mcc": "274",
- "mnc": "02",
+ "mcc": 274,
+ "mnc": 3,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "Vodafone"
},
{
- "mcc": "274",
- "mnc": "03",
+ "mcc": 274,
+ "mnc": 2,
"iso": "is",
"country": "Iceland",
- "country_code": "354",
+ "country_code": 354,
"network": "Vodafone"
},
{
- "mcc": "274",
- "mnc": "05",
- "iso": "is",
- "country": "Iceland",
- "country_code": "354",
- "network": "Vodafone"
+ "mcc": 404,
+ "mnc": 91,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "17",
+ "mcc": 404,
+ "mnc": 33,
"iso": "in",
"country": "India",
- "country_code": "91",
+ "country_code": 91,
"network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "42",
+ "mcc": 404,
+ "mnc": 42,
"iso": "in",
"country": "India",
- "country_code": "91",
+ "country_code": 91,
"network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "33",
+ "mcc": 404,
+ "mnc": 29,
"iso": "in",
"country": "India",
- "country_code": "91",
+ "country_code": 91,
"network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "29",
+ "mcc": 404,
+ "mnc": 25,
"iso": "in",
"country": "India",
- "country_code": "91",
+ "country_code": 91,
"network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "28",
+ "mcc": 404,
+ "mnc": 41,
"iso": "in",
"country": "India",
- "country_code": "91",
+ "country_code": 91,
"network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "25",
+ "mcc": 404,
+ "mnc": 28,
"iso": "in",
"country": "India",
- "country_code": "91",
+ "country_code": 91,
"network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "01",
+ "mcc": 404,
+ "mnc": 37,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Aircel Digilink India"
+ "country_code": 91,
+ "network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "15",
+ "mcc": 404,
+ "mnc": 35,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Aircel Digilink India"
+ "country_code": 91,
+ "network": "Aircel"
},
{
- "mcc": "404",
- "mnc": "60",
+ "mcc": 404,
+ "mnc": 17,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Aircel Digilink India"
+ "country_code": 91,
+ "network": "Aircel"
},
{
- "mcc": "405",
- "mnc": "53",
+ "mcc": 404,
+ "mnc": 16,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "AirTel"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "86",
+ "mcc": 404,
+ "mnc": 95,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Barakhamba Sales & Serv."
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "13",
+ "mcc": 404,
+ "mnc": 70,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Barakhamba Sales & Serv."
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "58",
+ "mcc": 404,
+ "mnc": 10,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "81",
+ "mcc": 404,
+ "mnc": 94,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "74",
+ "mcc": 404,
+ "mnc": 98,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "38",
+ "mcc": 404,
+ "mnc": 6,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "57",
+ "mcc": 404,
+ "mnc": 93,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "80",
+ "mcc": 404,
+ "mnc": 49,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "73",
+ "mcc": 404,
+ "mnc": 97,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "34",
+ "mcc": 404,
+ "mnc": 3,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "66",
+ "mcc": 404,
+ "mnc": 92,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "55",
+ "mcc": 404,
+ "mnc": 31,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "72",
+ "mcc": 404,
+ "mnc": 96,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "77",
+ "mcc": 404,
+ "mnc": 2,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "64",
+ "mcc": 404,
+ "mnc": 90,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "Airtel"
},
{
- "mcc": "404",
- "mnc": "54",
+ "mcc": 404,
+ "mnc": 55,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "71",
+ "mcc": 404,
+ "mnc": 73,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "76",
+ "mcc": 404,
+ "mnc": 34,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "62",
+ "mcc": 404,
+ "mnc": 62,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "53",
+ "mcc": 404,
+ "mnc": 77,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "59",
+ "mcc": 404,
+ "mnc": 54,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "75",
+ "mcc": 404,
+ "mnc": 72,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "51",
+ "mcc": 404,
+ "mnc": 59,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "BSNL"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "10",
+ "mcc": 404,
+ "mnc": 76,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Bharti Airtel Limited (Delhi)"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "045",
+ "mcc": 404,
+ "mnc": 81,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Bharti Airtel Limited (Karnataka) (India)"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "79",
+ "mcc": 404,
+ "mnc": 53,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "CellOne A&N"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "87",
+ "mcc": 404,
+ "mnc": 71,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Escorts Telecom Ltd."
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "82",
+ "mcc": 404,
+ "mnc": 58,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Escorts Telecom Ltd."
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "89",
+ "mcc": 404,
+ "mnc": 75,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Escorts Telecom Ltd."
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "88",
+ "mcc": 404,
+ "mnc": 80,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Escorts Telecom Ltd."
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "12",
+ "mcc": 404,
+ "mnc": 51,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Escotel Mobile Communications"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "19",
+ "mcc": 404,
+ "mnc": 66,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Escotel Mobile Communications"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "56",
+ "mcc": 404,
+ "mnc": 57,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Escotel Mobile Communications"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "405",
- "mnc": "05",
+ "mcc": 404,
+ "mnc": 74,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Fascel Limited"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "05",
+ "mcc": 404,
+ "mnc": 38,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Fascel"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "998",
+ "mcc": 404,
+ "mnc": 64,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Fix Line"
+ "country_code": 91,
+ "network": "BSNL Mobile"
},
{
- "mcc": "404",
- "mnc": "70",
+ "mcc": 404,
+ "mnc": 69,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Hexacom India"
+ "country_code": 91,
+ "network": "Dolphin"
},
{
- "mcc": "404",
- "mnc": "16",
+ "mcc": 404,
+ "mnc": 299,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Hexcom India"
+ "country_code": 91,
+ "network": "Failed Calls"
},
{
- "mcc": "404",
- "mnc": "78",
+ "mcc": 404,
+ "mnc": 999,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Idea Cellular Ltd."
+ "country_code": 91,
+ "network": "Fix Line"
},
{
- "mcc": "404",
- "mnc": "07",
+ "mcc": 404,
+ "mnc": 68,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Idea Cellular Ltd."
+ "country_code": 91,
+ "network": "Garuda"
},
{
- "mcc": "404",
- "mnc": "04",
+ "mcc": 404,
+ "mnc": 89,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Idea Cellular Ltd."
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "24",
+ "mcc": 404,
+ "mnc": 22,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Idea Cellular Ltd."
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "22",
+ "mcc": 404,
+ "mnc": 849,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Idea Cellular Ltd."
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "69",
+ "mcc": 404,
+ "mnc": 4,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Mahanagar Telephone Nigam"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "68",
+ "mcc": 404,
+ "mnc": 78,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Mahanagar Telephone Nigam"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "83",
+ "mcc": 404,
+ "mnc": 87,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliable Internet Services"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "50",
+ "mcc": 404,
+ "mnc": 19,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliance Telecom Private"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "67",
+ "mcc": 404,
+ "mnc": 848,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliance Telecom Private"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "18",
+ "mcc": 404,
+ "mnc": 56,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliance Telecom Private"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "85",
+ "mcc": 404,
+ "mnc": 853,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliance Telecom Private"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "09",
+ "mcc": 404,
+ "mnc": 14,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliance Telecom Private"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "405",
- "mnc": "87",
+ "mcc": 404,
+ "mnc": 846,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliance Telecom Private"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "36",
+ "mcc": 404,
+ "mnc": 44,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliance Telecom Private"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "52",
+ "mcc": 404,
+ "mnc": 852,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Reliance Telecom Private"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "41",
+ "mcc": 404,
+ "mnc": 12,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "RPG Cellular"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "14",
+ "mcc": 404,
+ "mnc": 845,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Spice"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "44",
+ "mcc": 404,
+ "mnc": 24,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Spice"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "11",
+ "mcc": 404,
+ "mnc": 850,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Sterling Cellular Ltd."
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "405",
- "mnc": "034",
+ "mcc": 404,
+ "mnc": 7,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "TATA / Karnataka"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "30",
+ "mcc": 404,
+ "mnc": 82,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Usha Martin Telecom"
+ "country_code": 91,
+ "network": "Idea"
},
{
- "mcc": "404",
- "mnc": "999",
+ "mcc": 404,
+ "mnc": 869,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Various Networks"
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "404",
- "mnc": "27",
+ "mcc": 404,
+ "mnc": 860,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Unknown"
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "404",
- "mnc": "43",
+ "mcc": 404,
+ "mnc": 865,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Vodafone/Essar/Hutch"
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "404",
- "mnc": "20",
+ "mcc": 404,
+ "mnc": 857,
"iso": "in",
"country": "India",
- "country_code": "91",
- "network": "Unknown"
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "08",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "Axis/Natrindo"
+ "mcc": 404,
+ "mnc": 870,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "99",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "Esia (PT Bakrie Telecom) (CDMA)"
+ "mcc": 404,
+ "mnc": 861,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "999",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "Fix Line"
+ "mcc": 404,
+ "mnc": 854,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "07",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "Flexi (PT Telkom) (CDMA)"
+ "mcc": 404,
+ "mnc": 874,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "89",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "H3G CP"
+ "mcc": 404,
+ "mnc": 866,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "21",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "Indosat/Satelindo/M3"
+ "mcc": 404,
+ "mnc": 871,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "01",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "Indosat/Satelindo/M3"
+ "mcc": 404,
+ "mnc": 862,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "00",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "PT Pasifik Satelit Nusantara (PSN)"
+ "mcc": 404,
+ "mnc": 855,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "27",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "PT Sampoerna Telekomunikasi Indonesia (STI)"
+ "mcc": 404,
+ "mnc": 867,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "28",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "PT Smartfren Telecom Tbk"
+ "mcc": 404,
+ "mnc": 858,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "09",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "PT Smartfren Telecom Tbk"
+ "mcc": 404,
+ "mnc": 872,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "11",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "PT. Excelcom"
+ "mcc": 404,
+ "mnc": 863,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "10",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "Telkomsel"
+ "mcc": 404,
+ "mnc": 868,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "510",
- "mnc": "07",
- "iso": "id",
- "country": "Indonesia",
- "country_code": "62",
- "network": "Telkomsel"
+ "mcc": 404,
+ "mnc": 859,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "901",
- "mnc": "13",
- "iso": "n/a",
- "country": "International Networks",
- "country_code": "882",
- "network": "Antarctica"
+ "mcc": 404,
+ "mnc": 873,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "432",
- "mnc": "999",
- "iso": "ir",
- "country": "Iran ",
- "country_code": "98",
- "network": "Fix Line"
+ "mcc": 404,
+ "mnc": 864,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "432",
- "mnc": "19",
- "iso": "ir",
- "country": "Iran ",
- "country_code": "98",
- "network": "Mobile Telecommunications Company of Esfahan JV-PJS (MTCE)"
+ "mcc": 404,
+ "mnc": 856,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Jio"
},
{
- "mcc": "432",
- "mnc": "70",
- "iso": "ir",
- "country": "Iran ",
- "country_code": "98",
- "network": "MTCE"
+ "mcc": 404,
+ "mnc": 21,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Loop Mobile"
},
{
- "mcc": "432",
- "mnc": "35",
- "iso": "ir",
- "country": "Iran ",
- "country_code": "98",
- "network": "MTN/IranCell"
+ "mcc": 404,
+ "mnc": 50,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "432",
- "mnc": "20",
- "iso": "ir",
- "country": "Iran ",
- "country_code": "98",
- "network": "Rightel"
+ "mcc": 404,
+ "mnc": 52,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "432",
- "mnc": "32",
- "iso": "ir",
- "country": "Iran ",
- "country_code": "98",
- "network": "Taliya"
+ "mcc": 404,
+ "mnc": 8,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "432",
- "mnc": "11",
- "iso": "ir",
- "country": "Iran ",
- "country_code": "98",
- "network": "MCI/TCI"
+ "mcc": 404,
+ "mnc": 18,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "432",
- "mnc": "14",
- "iso": "ir",
- "country": "Iran ",
- "country_code": "98",
- "network": "TKC/KFZO"
+ "mcc": 404,
+ "mnc": 67,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "418",
- "mnc": "05",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Asia Cell"
+ "mcc": 404,
+ "mnc": 9,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "418",
- "mnc": "66",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Fastlink"
+ "mcc": 404,
+ "mnc": 23,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "418",
- "mnc": "92",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Itisaluna and Kalemat"
+ "mcc": 404,
+ "mnc": 83,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "418",
- "mnc": "82",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Korek"
+ "mcc": 404,
+ "mnc": 36,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "418",
- "mnc": "40",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Korek"
+ "mcc": 404,
+ "mnc": 85,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Reliance Mobile"
},
{
- "mcc": "418",
- "mnc": "45",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Mobitel"
+ "mcc": 404,
+ "mnc": 20,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "418",
- "mnc": "30",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Orascom Telecom"
+ "mcc": 404,
+ "mnc": 1,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "418",
- "mnc": "08",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Sanatel"
+ "mcc": 404,
+ "mnc": 46,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "418",
- "mnc": "20",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Zain"
+ "mcc": 404,
+ "mnc": 15,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "418",
- "mnc": "30",
- "iso": "iq",
- "country": "Iraq",
- "country_code": "964",
- "network": "Zain"
+ "mcc": 404,
+ "mnc": 88,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "04",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "Access Telecom Ltd."
+ "mcc": 404,
+ "mnc": 43,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "03",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "Meteor / eir mobile"
+ "mcc": 404,
+ "mnc": 13,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "07",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "Meteor / eir mobile"
+ "mcc": 404,
+ "mnc": 86,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "08",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "Meteor / eir mobile"
+ "mcc": 404,
+ "mnc": 30,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "13",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "Lycamobile"
+ "mcc": 404,
+ "mnc": 11,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "11",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "Tesco Mobile"
+ "mcc": 404,
+ "mnc": 84,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "17",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "3"
+ "mcc": 404,
+ "mnc": 27,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "02",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "3"
+ "mcc": 404,
+ "mnc": 5,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
},
{
- "mcc": "272",
- "mnc": "05",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
+ "mcc": 404,
+ "mnc": 60,
+ "iso": "in",
+ "country": "India",
+ "country_code": 91,
+ "network": "Vodafone"
+ },
+ {
+ "mcc": 510,
+ "mnc": 89,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
"network": "3"
},
{
- "mcc": "272",
- "mnc": "15",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "Virgin Media"
+ "mcc": 510,
+ "mnc": 299,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Failed Calls"
},
{
- "mcc": "272",
- "mnc": "01",
- "iso": "ie",
- "country": "Ireland",
- "country_code": "353",
- "network": "Vodafone"
+ "mcc": 510,
+ "mnc": 999,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Fix Line"
},
{
- "mcc": "425",
- "mnc": "19",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "019 Mobile"
+ "mcc": 510,
+ "mnc": 1,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Indosat Ooredoo"
},
{
- "mcc": "425",
- "mnc": "299",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Annatel Mobile"
+ "mcc": 510,
+ "mnc": 62,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Indosat Ooredoo"
},
{
- "mcc": "425",
- "mnc": "23",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Beezz"
+ "mcc": 510,
+ "mnc": 21,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Indosat Ooredoo"
},
{
- "mcc": "425",
- "mnc": "299",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Bynet"
+ "mcc": 510,
+ "mnc": 27,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Net1"
},
{
- "mcc": "425",
- "mnc": "299",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Cellact"
+ "mcc": 510,
+ "mnc": 99,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Smartfren"
},
{
- "mcc": "425",
- "mnc": "02",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Cellcom"
+ "mcc": 510,
+ "mnc": 9,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Smartfren"
},
{
- "mcc": "425",
- "mnc": "299",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Failed Calls"
+ "mcc": 510,
+ "mnc": 28,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Smartfren"
},
{
- "mcc": "425",
- "mnc": "08",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Golan Telecom"
+ "mcc": 510,
+ "mnc": 10,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Telkomsel"
},
{
- "mcc": "425",
- "mnc": "15",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Home Cellular"
+ "mcc": 510,
+ "mnc": 20,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "Telkomsel"
},
{
- "mcc": "425",
- "mnc": "77",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Hot Mobile"
+ "mcc": 510,
+ "mnc": 8,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "XL"
},
{
- "mcc": "425",
- "mnc": "07",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Hot Mobile"
+ "mcc": 510,
+ "mnc": 11,
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": 62,
+ "network": "XL"
},
{
- "mcc": "425",
- "mnc": "07",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Hot Mobile"
+ "mcc": 901,
+ "mnc": 67,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "1NCE"
},
{
- "mcc": "425",
- "mnc": "13",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Ituran"
+ "mcc": 901,
+ "mnc": 76,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "A1"
},
{
- "mcc": "425",
- "mnc": "22",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Maskyoo"
+ "mcc": 901,
+ "mnc": 14,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "AeroMobile"
},
{
- "mcc": "425",
- "mnc": "01",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Orange"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Afinna One"
},
{
- "mcc": "425",
- "mnc": "03",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Pelephone"
+ "mcc": 901,
+ "mnc": 81,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Airnity"
},
{
- "mcc": "425",
- "mnc": "12",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Pelephone"
+ "mcc": 901,
+ "mnc": 82,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "AnyNet"
},
{
- "mcc": "425",
- "mnc": "16",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Rami Levy Communications"
+ "mcc": 901,
+ "mnc": 24,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Bandwidth"
},
{
- "mcc": "425",
- "mnc": "299",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "T2T"
+ "mcc": 901,
+ "mnc": 55,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Beezz"
},
{
- "mcc": "425",
- "mnc": "19",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Telzar/AZI "
+ "mcc": 901,
+ "mnc": 58,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "BICS"
},
{
- "mcc": "425",
- "mnc": "17",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "Von waves"
+ "mcc": 901,
+ "mnc": 70,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Bubbletone"
},
{
- "mcc": "425",
- "mnc": "09",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "We4G"
+ "mcc": 901,
+ "mnc": 18,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Cingular Wireless Network"
},
{
- "mcc": "425",
- "mnc": "14",
- "iso": "il",
- "country": "Israel",
- "country_code": "972",
- "network": "YouPhone"
+ "mcc": 901,
+ "mnc": 16,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Cisco Jasper"
},
{
- "mcc": "222",
- "mnc": "299",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "A-Tono"
+ "mcc": 901,
+ "mnc": 48,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Com4 Sweden"
},
{
- "mcc": "222",
- "mnc": "40",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Agile Telecom"
+ "mcc": 901,
+ "mnc": 73,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Cubic"
},
{
- "mcc": "222",
- "mnc": "34",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "BT mobile"
+ "mcc": 901,
+ "mnc": 42,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "DCN Hub"
},
{
- "mcc": "222",
- "mnc": "299",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Esendex"
+ "mcc": 901,
+ "mnc": 40,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Deutsche Telekom"
},
{
- "mcc": "222",
- "mnc": "299",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Compatel"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "DIDWW"
},
{
- "mcc": "222",
- "mnc": "53",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "CoopVoce"
+ "mcc": 901,
+ "mnc": 50,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "EchoStar Mobile"
},
{
- "mcc": "222",
- "mnc": "36",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Digi"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Ellipsat"
},
{
- "mcc": "222",
- "mnc": "36",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Digi"
+ "mcc": 901,
+ "mnc": 43,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "EMnify"
},
{
- "mcc": "222",
- "mnc": "299",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "DireQ"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "EMSAT"
},
{
- "mcc": "222",
- "mnc": "02",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Elsacom"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Failed Calls"
},
{
- "mcc": "222",
- "mnc": "42",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Enel"
+ "mcc": 901,
+ "mnc": 999,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Fix Line"
},
{
- "mcc": "222",
- "mnc": "08",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Fastweb"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Global Access Services"
},
{
- "mcc": "222",
- "mnc": "999",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Fix Line"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Globalstar"
},
{
- "mcc": "222",
- "mnc": "99",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "WindTre / Hi3G"
+ "mcc": 901,
+ "mnc": 13,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "GSM.AQ"
},
{
- "mcc": "222",
- "mnc": "50",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Iliad"
+ "mcc": 901,
+ "mnc": 22,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "i-lincc"
},
{
- "mcc": "222",
- "mnc": "77",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "IPSE 2000"
+ "mcc": 901,
+ "mnc": 11,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Inmarsat"
},
{
- "mcc": "222",
- "mnc": "299",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Kaleyra"
+ "mcc": 901,
+ "mnc": 20,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Intermatica"
},
{
- "mcc": "222",
- "mnc": "39",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "SMS.it / LINK Mobility"
+ "mcc": 901,
+ "mnc": 3,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Iridium"
},
{
- "mcc": "222",
- "mnc": "35",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Lycamobile"
+ "mcc": 901,
+ "mnc": 69,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Legos"
},
{
- "mcc": "222",
- "mnc": "07",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Noverca Italia"
+ "mcc": 901,
+ "mnc": 66,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Limitless"
},
{
- "mcc": "222",
- "mnc": "54",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Plintron"
+ "mcc": 901,
+ "mnc": 52,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Manx Telecom"
},
{
- "mcc": "222",
- "mnc": "33",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Poste Mobile"
+ "mcc": 901,
+ "mnc": 19,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Maritime Roaming Service"
},
{
- "mcc": "222",
- "mnc": "00",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Premium Numbers"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "MCNtelecom"
},
{
- "mcc": "222",
- "mnc": "58",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "rdcom"
+ "mcc": 901,
+ "mnc": 12,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "MCP"
},
{
- "mcc": "222",
- "mnc": "30",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "RFI"
+ "mcc": 901,
+ "mnc": 59,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "MessageBird"
},
{
- "mcc": "222",
- "mnc": "56",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "spusu"
+ "mcc": 901,
+ "mnc": 27,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Monaco Telecom"
},
{
- "mcc": "222",
- "mnc": "43",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Telecom Italia Mobile"
+ "mcc": 901,
+ "mnc": 84,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Movistar"
},
{
- "mcc": "222",
- "mnc": "01",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "TIM"
+ "mcc": 901,
+ "mnc": 38,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "MTT"
},
{
- "mcc": "222",
- "mnc": "48",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Telecom Italia Mobile"
+ "mcc": 901,
+ "mnc": 39,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "MTX Connect"
},
{
- "mcc": "222",
- "mnc": "299",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Sparkle"
+ "mcc": 901,
+ "mnc": 17,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Navitas Telecom"
},
{
- "mcc": "222",
- "mnc": "44",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Mundio"
+ "mcc": 901,
+ "mnc": 79,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Nokia"
},
{
- "mcc": "222",
- "mnc": "51",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "ho."
+ "mcc": 901,
+ "mnc": 85,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "O2"
},
{
- "mcc": "222",
- "mnc": "49",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Vianova Mobile"
+ "mcc": 901,
+ "mnc": 15,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "OnAir"
},
{
- "mcc": "222",
- "mnc": "10",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Vodafone"
+ "mcc": 901,
+ "mnc": 41,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "One Network"
},
{
- "mcc": "222",
- "mnc": "06",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Vodafone"
+ "mcc": 901,
+ "mnc": 47,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Ooredoo"
},
{
- "mcc": "222",
- "mnc": "06",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Vodafone"
+ "mcc": 901,
+ "mnc": 31,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Orange"
},
{
- "mcc": "222",
- "mnc": "00",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "VOIP Line"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Oration Technologies"
},
{
- "mcc": "222",
- "mnc": "299",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Vola"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Phonegroup"
},
{
- "mcc": "222",
- "mnc": "299",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Webcom"
+ "mcc": 901,
+ "mnc": 65,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Plintron"
},
{
- "mcc": "222",
- "mnc": "44",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "Mundio"
+ "mcc": 901,
+ "mnc": 75,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Pod"
},
{
- "mcc": "222",
- "mnc": "88",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "WindTre / WIND"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "republic wireless"
},
{
- "mcc": "222",
- "mnc": "37",
- "iso": "it",
- "country": "Italy",
- "country_code": "39",
- "network": "WindTre / Hi3G"
+ "mcc": 901,
+ "mnc": 57,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "SAP"
},
{
- "mcc": "612",
- "mnc": "07",
- "iso": "ci",
- "country": "Ivory Coast",
- "country_code": "225",
- "network": "Aircomm SA"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Sipme"
},
{
- "mcc": "612",
- "mnc": "04",
- "iso": "ci",
- "country": "Ivory Coast",
- "country_code": "225",
- "network": "Comium"
+ "mcc": 901,
+ "mnc": 33,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "SMART"
},
{
- "mcc": "612",
- "mnc": "01",
- "iso": "ci",
- "country": "Ivory Coast",
- "country_code": "225",
- "network": "Comstar"
+ "mcc": 901,
+ "mnc": 78,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Sparkle"
},
{
- "mcc": "612",
- "mnc": "02",
- "iso": "ci",
- "country": "Ivory Coast",
- "country_code": "225",
- "network": "Moov"
+ "mcc": 901,
+ "mnc": 64,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Syniverse"
},
{
- "mcc": "612",
- "mnc": "05",
- "iso": "ci",
- "country": "Ivory Coast",
- "country_code": "225",
- "network": "MTN"
+ "mcc": 901,
+ "mnc": 72,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Tele2"
},
{
- "mcc": "612",
- "mnc": "03",
- "iso": "ci",
- "country": "Ivory Coast",
- "country_code": "225",
- "network": "Orange"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Telecom26"
},
{
- "mcc": "612",
- "mnc": "06",
- "iso": "ci",
- "country": "Ivory Coast",
- "country_code": "225",
- "network": "OriCell"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Telekom Malaysia"
},
{
- "mcc": "338",
- "mnc": "020",
- "iso": "jm",
- "country": "Jamaica",
- "country_code": "1876",
- "network": "Cable & Wireless"
+ "mcc": 901,
+ "mnc": 29,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Telenor Connexion"
},
{
- "mcc": "338",
- "mnc": "110",
- "iso": "jm",
- "country": "Jamaica",
- "country_code": "1876",
- "network": "Cable & Wireless"
+ "mcc": 901,
+ "mnc": 5,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Thuraya RMSS"
},
{
- "mcc": "338",
- "mnc": "180",
- "iso": "jm",
- "country": "Jamaica",
- "country_code": "1876",
- "network": "Cable & Wireless"
+ "mcc": 901,
+ "mnc": 37,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Transatel"
},
{
- "mcc": "338",
- "mnc": "050",
- "iso": "jm",
- "country": "Jamaica",
- "country_code": "1876",
- "network": "DIGICEL/Mossel"
+ "mcc": 901,
+ "mnc": 62,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Twilio"
},
{
- "mcc": "440",
- "mnc": "00",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "Y-Mobile"
+ "mcc": 901,
+ "mnc": 34,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "tyntec"
},
{
- "mcc": "440",
- "mnc": "89",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 901,
+ "mnc": 51,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "VisionNG"
},
{
- "mcc": "440",
- "mnc": "51",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 901,
+ "mnc": 21,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Wins"
},
{
- "mcc": "440",
- "mnc": "75",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": 882,
+ "network": "Zain"
},
{
- "mcc": "440",
- "mnc": "70",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 299,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "Anarestan"
},
{
- "mcc": "440",
- "mnc": "56",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 299,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "ApTel"
},
{
- "mcc": "441",
- "mnc": "70",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 299,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "Arian Tel"
},
{
- "mcc": "440",
- "mnc": "52",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 299,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "76",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 999,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "71",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 299,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "LotusTel"
},
{
- "mcc": "440",
- "mnc": "53",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 11,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "MCI"
},
{
- "mcc": "440",
- "mnc": "77",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
- },
- {
- "mcc": "440",
- "mnc": "08",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 19,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "MTCE"
},
{
- "mcc": "440",
- "mnc": "72",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 35,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "MTN IranCell"
},
{
- "mcc": "440",
- "mnc": "54",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 20,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "RighTel"
},
{
- "mcc": "440",
- "mnc": "79",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 1,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "SamanTel"
},
{
- "mcc": "440",
- "mnc": "07",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 8,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "Shatel Mobile"
},
{
- "mcc": "440",
- "mnc": "73",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 32,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "Taliya"
},
{
- "mcc": "440",
- "mnc": "55",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 432,
+ "mnc": 14,
+ "iso": "ir",
+ "country": "Iran",
+ "country_code": 98,
+ "network": "Telekish"
},
{
- "mcc": "440",
- "mnc": "88",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 418,
+ "mnc": 5,
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": 964,
+ "network": "Asia Cell"
},
{
- "mcc": "440",
- "mnc": "50",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 418,
+ "mnc": 299,
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": 964,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "74",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 418,
+ "mnc": 999,
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": 964,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "70",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 418,
+ "mnc": 40,
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": 964,
+ "network": "Korek"
},
{
- "mcc": "440",
- "mnc": "02",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 418,
+ "mnc": 45,
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": 964,
+ "network": "Mobitel"
},
{
- "mcc": "440",
- "mnc": "22",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 418,
+ "mnc": 20,
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": 964,
+ "network": "Zain"
},
{
- "mcc": "441",
- "mnc": "43",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 418,
+ "mnc": 30,
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": 964,
+ "network": "Zain"
},
{
- "mcc": "440",
- "mnc": "27",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 5,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "3"
},
{
- "mcc": "440",
- "mnc": "87",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 2,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "3"
},
{
- "mcc": "440",
- "mnc": "17",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 17,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "3"
},
{
- "mcc": "440",
- "mnc": "31",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 299,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "BT"
},
{
- "mcc": "440",
- "mnc": "65",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 299,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Cubic Telecom"
},
{
- "mcc": "440",
- "mnc": "36",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 299,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Failed Calls"
},
{
- "mcc": "441",
- "mnc": "92",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 999,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "03",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 13,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Lycamobile"
},
{
- "mcc": "440",
- "mnc": "12",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 7,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Meteor"
},
{
- "mcc": "440",
- "mnc": "58",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 8,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Meteor"
},
{
- "mcc": "440",
- "mnc": "28",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 3,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Meteor"
},
{
- "mcc": "440",
- "mnc": "61",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 299,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Net Feasa"
},
{
- "mcc": "440",
- "mnc": "18",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 299,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "OGCIO"
},
{
- "mcc": "441",
- "mnc": "91",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 11,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Tesco Mobile"
},
{
- "mcc": "440",
- "mnc": "32",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 15,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Virgin Media"
},
{
- "mcc": "440",
- "mnc": "66",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 272,
+ "mnc": 1,
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": 353,
+ "network": "Vodafone"
},
{
- "mcc": "440",
- "mnc": "35",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 19,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "019 Mobile"
},
{
- "mcc": "441",
- "mnc": "93",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 299,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Annatel Mobile"
},
{
- "mcc": "441",
- "mnc": "40",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 23,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Beezz"
},
{
- "mcc": "440",
- "mnc": "09",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 299,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Bynet"
},
{
- "mcc": "440",
- "mnc": "49",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 299,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Cellact"
},
{
- "mcc": "440",
- "mnc": "29",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 2,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Cellcom"
},
{
- "mcc": "440",
- "mnc": "60",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 299,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "19",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 999,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Fix Line"
},
{
- "mcc": "441",
- "mnc": "90",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 8,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Golan Telecom"
},
{
- "mcc": "440",
- "mnc": "33",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 15,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Home Cellular"
},
{
- "mcc": "440",
- "mnc": "67",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 77,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Hot Mobile"
},
{
- "mcc": "440",
- "mnc": "14",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 7,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Hot Mobile"
},
{
- "mcc": "441",
- "mnc": "94",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 13,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Ituran"
},
{
- "mcc": "441",
- "mnc": "41",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 22,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Maskyoo"
},
{
- "mcc": "440",
- "mnc": "10",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 425,
+ "mnc": 1,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Orange"
},
{
- "mcc": "440",
- "mnc": "62",
+ "mcc": 425,
+ "mnc": 12,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Pelephone"
+ },
+ {
+ "mcc": 425,
+ "mnc": 3,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Pelephone"
+ },
+ {
+ "mcc": 425,
+ "mnc": 16,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Rami Levy Communications"
+ },
+ {
+ "mcc": 425,
+ "mnc": 299,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "T2T"
+ },
+ {
+ "mcc": 425,
+ "mnc": 17,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "Von waves"
+ },
+ {
+ "mcc": 425,
+ "mnc": 9,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "We4G"
+ },
+ {
+ "mcc": 425,
+ "mnc": 14,
+ "iso": "il",
+ "country": "Israel",
+ "country_code": 972,
+ "network": "YouPhone"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "1Mobile"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "A-Tono"
+ },
+ {
+ "mcc": 222,
+ "mnc": 40,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Agile Telecom"
+ },
+ {
+ "mcc": 222,
+ "mnc": 34,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "BT mobile"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Esendex"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Compatel"
+ },
+ {
+ "mcc": 222,
+ "mnc": 53,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "CoopVoce"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Daily Telecom Mobile"
+ },
+ {
+ "mcc": 222,
+ "mnc": 36,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Digi"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "DireQ"
+ },
+ {
+ "mcc": 222,
+ "mnc": 42,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Enel"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 222,
+ "mnc": 8,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Fastweb"
+ },
+ {
+ "mcc": 222,
+ "mnc": 999,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 222,
+ "mnc": 99,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "WindTre / Hi3G"
+ },
+ {
+ "mcc": 222,
+ "mnc": 50,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Iliad"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Kaleyra"
+ },
+ {
+ "mcc": 222,
+ "mnc": 39,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "SMS.it / LINK Mobility"
+ },
+ {
+ "mcc": 222,
+ "mnc": 35,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": 222,
+ "mnc": 7,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Noverca Italia"
+ },
+ {
+ "mcc": 222,
+ "mnc": 54,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Plintron"
+ },
+ {
+ "mcc": 222,
+ "mnc": 33,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Poste Mobile"
+ },
+ {
+ "mcc": 222,
+ "mnc": 999,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Premium Numbers"
+ },
+ {
+ "mcc": 222,
+ "mnc": 58,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "rdcom"
+ },
+ {
+ "mcc": 222,
+ "mnc": 30,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "RFI"
+ },
+ {
+ "mcc": 222,
+ "mnc": 56,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "spusu"
+ },
+ {
+ "mcc": 222,
+ "mnc": 48,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Telecom Italia Mobile"
+ },
+ {
+ "mcc": 222,
+ "mnc": 43,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Telecom Italia Mobile"
+ },
+ {
+ "mcc": 222,
+ "mnc": 1,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "TIM"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Sparkle"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Tiscali"
+ },
+ {
+ "mcc": 222,
+ "mnc": 44,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Mundio"
+ },
+ {
+ "mcc": 222,
+ "mnc": 51,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "ho."
+ },
+ {
+ "mcc": 222,
+ "mnc": 49,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Vianova Mobile"
+ },
+ {
+ "mcc": 222,
+ "mnc": 6,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Vodafone"
+ },
+ {
+ "mcc": 222,
+ "mnc": 10,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Vodafone"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Vola"
+ },
+ {
+ "mcc": 222,
+ "mnc": 299,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "Webcom"
+ },
+ {
+ "mcc": 222,
+ "mnc": 88,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "WindTre / WIND"
+ },
+ {
+ "mcc": 222,
+ "mnc": 37,
+ "iso": "it",
+ "country": "Italy",
+ "country_code": 39,
+ "network": "WindTre / Hi3G"
+ },
+ {
+ "mcc": 612,
+ "mnc": 299,
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": 225,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 612,
+ "mnc": 999,
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": 225,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 612,
+ "mnc": 2,
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": 225,
+ "network": "Moov"
+ },
+ {
+ "mcc": 612,
+ "mnc": 5,
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": 225,
+ "network": "MTN"
+ },
+ {
+ "mcc": 612,
+ "mnc": 3,
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": 225,
+ "network": "Orange"
+ },
+ {
+ "mcc": 338,
+ "mnc": 50,
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": 1876,
+ "network": "Digicel"
+ },
+ {
+ "mcc": 338,
+ "mnc": 299,
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": 1876,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 338,
+ "mnc": 999,
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": 1876,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 338,
+ "mnc": 180,
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": 1876,
+ "network": "Flow"
+ },
+ {
+ "mcc": 338,
+ "mnc": 110,
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": 1876,
+ "network": "Flow"
+ },
+ {
+ "mcc": 440,
+ "mnc": 299,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 440,
+ "mnc": 999,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 440,
+ "mnc": 74,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 52,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 75,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 53,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 71,
"iso": "jp",
"country": "Japan",
- "country_code": "81",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 76,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 54,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 72,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 50,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 73,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 51,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 70,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "KDDI"
+ },
+ {
+ "mcc": 440,
+ "mnc": 10,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
"network": "NTT DoCoMo"
},
{
- "mcc": "440",
- "mnc": "39",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 440,
+ "mnc": 78,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "Okinawa Cellular"
+ },
+ {
+ "mcc": 440,
+ "mnc": 11,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "Rakuten Mobile"
+ },
+ {
+ "mcc": 440,
+ "mnc": 1,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "SoftBank"
+ },
+ {
+ "mcc": 440,
+ "mnc": 0,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "SoftBank"
+ },
+ {
+ "mcc": 440,
+ "mnc": 20,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "SoftBank"
+ },
+ {
+ "mcc": 440,
+ "mnc": 21,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "SoftBank"
+ },
+ {
+ "mcc": 440,
+ "mnc": 5,
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": 81,
+ "network": "SoftBank"
+ },
+ {
+ "mcc": 416,
+ "mnc": 299,
+ "iso": "jo",
+ "country": "Jordan",
+ "country_code": 962,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 416,
+ "mnc": 999,
+ "iso": "jo",
+ "country": "Jordan",
+ "country_code": 962,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 416,
+ "mnc": 77,
+ "iso": "jo",
+ "country": "Jordan",
+ "country_code": 962,
+ "network": "Orange"
+ },
+ {
+ "mcc": 416,
+ "mnc": 3,
+ "iso": "jo",
+ "country": "Jordan",
+ "country_code": 962,
+ "network": "Umniah"
+ },
+ {
+ "mcc": 416,
+ "mnc": 1,
+ "iso": "jo",
+ "country": "Jordan",
+ "country_code": 962,
+ "network": "Zain"
+ },
+ {
+ "mcc": 401,
+ "mnc": 7,
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": 7,
+ "network": "Altel"
+ },
+ {
+ "mcc": 401,
+ "mnc": 299,
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": 7,
+ "network": "Arna"
+ },
+ {
+ "mcc": 401,
+ "mnc": 1,
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": 7,
+ "network": "Beeline"
+ },
+ {
+ "mcc": 401,
+ "mnc": 299,
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": 7,
+ "network": "Failed Call(s)"
+ },
+ {
+ "mcc": 401,
+ "mnc": 999,
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": 7,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 401,
+ "mnc": 8,
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": 7,
+ "network": "Kazakhstan Online"
+ },
+ {
+ "mcc": 401,
+ "mnc": 2,
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": 7,
+ "network": "Kcell"
+ },
+ {
+ "mcc": 401,
+ "mnc": 77,
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": 7,
+ "network": "Tele2"
+ },
+ {
+ "mcc": 639,
+ "mnc": 3,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Airtel"
+ },
+ {
+ "mcc": 639,
+ "mnc": 5,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Airtel"
+ },
+ {
+ "mcc": 639,
+ "mnc": 299,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "eferio"
+ },
+ {
+ "mcc": 639,
+ "mnc": 299,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 639,
+ "mnc": 6,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Finserve Africa"
+ },
+ {
+ "mcc": 639,
+ "mnc": 999,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 639,
+ "mnc": 9,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Homeland Media"
+ },
+ {
+ "mcc": 639,
+ "mnc": 12,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Infura"
+ },
+ {
+ "mcc": 639,
+ "mnc": 11,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Jambo Telcoms"
+ },
+ {
+ "mcc": 639,
+ "mnc": 10,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Jamii Telecommunications"
+ },
+ {
+ "mcc": 639,
+ "mnc": 4,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Mobile Pay"
+ },
+ {
+ "mcc": 639,
+ "mnc": 2,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Safaricom"
+ },
+ {
+ "mcc": 639,
+ "mnc": 1,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Safaricom"
+ },
+ {
+ "mcc": 639,
+ "mnc": 7,
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": 254,
+ "network": "Telkom"
+ },
+ {
+ "mcc": 545,
+ "mnc": 299,
+ "iso": "ki",
+ "country": "Kiribati",
+ "country_code": 686,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 545,
+ "mnc": 999,
+ "iso": "ki",
+ "country": "Kiribati",
+ "country_code": 686,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 545,
+ "mnc": 1,
+ "iso": "ki",
+ "country": "Kiribati",
+ "country_code": 686,
+ "network": "FrigateNet"
+ },
+ {
+ "mcc": 545,
+ "mnc": 9,
+ "iso": "ki",
+ "country": "Kiribati",
+ "country_code": 686,
+ "network": "FrigateNet"
+ },
+ {
+ "mcc": 545,
+ "mnc": 299,
+ "iso": "ki",
+ "country": "Kiribati",
+ "country_code": 686,
+ "network": "Ocean Link"
+ },
+ {
+ "mcc": 221,
+ "mnc": 7,
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": 383,
+ "network": "D3 mobile"
+ },
+ {
+ "mcc": 221,
+ "mnc": 299,
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": 383,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 221,
+ "mnc": 999,
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": 383,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 221,
+ "mnc": 2,
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": 383,
+ "network": "IPKO"
+ },
+ {
+ "mcc": 221,
+ "mnc": 299,
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": 383,
+ "network": "MTS"
+ },
+ {
+ "mcc": 221,
+ "mnc": 1,
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": 383,
+ "network": "Vala"
+ },
+ {
+ "mcc": 419,
+ "mnc": 299,
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": 965,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 419,
+ "mnc": 999,
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": 965,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 419,
+ "mnc": 3,
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": 965,
+ "network": "Ooredoo"
+ },
+ {
+ "mcc": 419,
+ "mnc": 299,
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": 965,
+ "network": "Virgin Mobile"
+ },
+ {
+ "mcc": 419,
+ "mnc": 4,
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": 965,
+ "network": "Viva"
+ },
+ {
+ "mcc": 419,
+ "mnc": 2,
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": 965,
+ "network": "Zain"
+ },
+ {
+ "mcc": 437,
+ "mnc": 1,
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": 996,
+ "network": "Beeline"
+ },
+ {
+ "mcc": 437,
+ "mnc": 299,
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": 996,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 437,
+ "mnc": 999,
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": 996,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 437,
+ "mnc": 2,
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": 996,
+ "network": "KT Mobile"
+ },
+ {
+ "mcc": 437,
+ "mnc": 5,
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": 996,
+ "network": "MegaCom"
+ },
+ {
+ "mcc": 437,
+ "mnc": 9,
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": 996,
+ "network": "O!"
+ },
+ {
+ "mcc": 437,
+ "mnc": 10,
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": 996,
+ "network": "Saima"
+ },
+ {
+ "mcc": 437,
+ "mnc": 3,
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": 996,
+ "network": "Sem Mobile"
+ },
+ {
+ "mcc": 457,
+ "mnc": 8,
+ "iso": "la",
+ "country": "Laos",
+ "country_code": 856,
+ "network": "Beeline"
+ },
+ {
+ "mcc": 457,
+ "mnc": 2,
+ "iso": "la",
+ "country": "Laos",
+ "country_code": 856,
+ "network": "ETL Mobile"
+ },
+ {
+ "mcc": 457,
+ "mnc": 299,
+ "iso": "la",
+ "country": "Laos",
+ "country_code": 856,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 457,
+ "mnc": 999,
+ "iso": "la",
+ "country": "Laos",
+ "country_code": 856,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 457,
+ "mnc": 1,
+ "iso": "la",
+ "country": "Laos",
+ "country_code": 856,
+ "network": "LTC"
+ },
+ {
+ "mcc": 457,
+ "mnc": 3,
+ "iso": "la",
+ "country": "Laos",
+ "country_code": 856,
+ "network": "Unitel"
+ },
+ {
+ "mcc": 247,
+ "mnc": 5,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "Bite"
+ },
+ {
+ "mcc": 247,
+ "mnc": 299,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 247,
+ "mnc": 999,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 247,
+ "mnc": 10,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "LMT"
+ },
+ {
+ "mcc": 247,
+ "mnc": 1,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "LMT"
+ },
+ {
+ "mcc": 247,
+ "mnc": 299,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "Premium Numbers"
+ },
+ {
+ "mcc": 247,
+ "mnc": 2,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "Tele2"
+ },
+ {
+ "mcc": 247,
+ "mnc": 4,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "Tet"
+ },
+ {
+ "mcc": 247,
+ "mnc": 3,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "TRIATEL"
+ },
+ {
+ "mcc": 247,
+ "mnc": 8,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "VENTA Mobile"
+ },
+ {
+ "mcc": 247,
+ "mnc": 9,
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": 371,
+ "network": "XOmobile"
+ },
+ {
+ "mcc": 415,
+ "mnc": 1,
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": 961,
+ "network": "Alfa"
+ },
+ {
+ "mcc": 415,
+ "mnc": 299,
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": 961,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 415,
+ "mnc": 999,
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": 961,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 415,
+ "mnc": 3,
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": 961,
+ "network": "Touch"
+ },
+ {
+ "mcc": 651,
+ "mnc": 2,
+ "iso": "ls",
+ "country": "Lesotho",
+ "country_code": 266,
+ "network": "Econet"
+ },
+ {
+ "mcc": 651,
+ "mnc": 299,
+ "iso": "ls",
+ "country": "Lesotho",
+ "country_code": 266,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 651,
+ "mnc": 999,
+ "iso": "ls",
+ "country": "Lesotho",
+ "country_code": 266,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 651,
+ "mnc": 1,
+ "iso": "ls",
+ "country": "Lesotho",
+ "country_code": 266,
+ "network": "Vodacom"
+ },
+ {
+ "mcc": 618,
+ "mnc": 299,
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": 231,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 618,
+ "mnc": 999,
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": 231,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 618,
+ "mnc": 1,
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": 231,
+ "network": "MTN / Lonestar"
+ },
+ {
+ "mcc": 618,
+ "mnc": 4,
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": 231,
+ "network": "Novafone"
+ },
+ {
+ "mcc": 618,
+ "mnc": 7,
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": 231,
+ "network": "Orange"
+ },
+ {
+ "mcc": 606,
+ "mnc": 1,
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": 218,
+ "network": "Al-Madar"
+ },
+ {
+ "mcc": 606,
+ "mnc": 299,
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": 218,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 606,
+ "mnc": 999,
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": 218,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 606,
+ "mnc": 0,
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": 218,
+ "network": "Libyana"
+ },
+ {
+ "mcc": 606,
+ "mnc": 3,
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": 218,
+ "network": "LibyaPhone Mobile"
+ },
+ {
+ "mcc": 295,
+ "mnc": 2,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "7acht"
+ },
+ {
+ "mcc": 295,
+ "mnc": 6,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "CUBIC"
+ },
+ {
+ "mcc": 295,
+ "mnc": 299,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "Datamobile"
+ },
+ {
+ "mcc": 295,
+ "mnc": 299,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "Dimoco"
+ },
+ {
+ "mcc": 295,
+ "mnc": 9,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "EMnify"
+ },
+ {
+ "mcc": 295,
+ "mnc": 299,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 295,
+ "mnc": 999,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 246,
+ "mnc": 999,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 295,
+ "mnc": 1,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "FL GSM"
+ },
+ {
+ "mcc": 295,
+ "mnc": 5,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "FL1"
+ },
+ {
+ "mcc": 295,
+ "mnc": 299,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "SORACOM"
+ },
+ {
+ "mcc": 295,
+ "mnc": 299,
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": 423,
+ "network": "Telna"
+ },
+ {
+ "mcc": 246,
+ "mnc": 2,
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": 370,
+ "network": "Bite"
+ },
+ {
+ "mcc": 246,
+ "mnc": 299,
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": 370,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 246,
+ "mnc": 5,
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": 370,
+ "network": "LTG"
+ },
+ {
+ "mcc": 246,
+ "mnc": 6,
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": 370,
+ "network": "Mediafon"
+ },
+ {
+ "mcc": 246,
+ "mnc": 299,
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": 370,
+ "network": "SkyCall"
+ },
+ {
+ "mcc": 246,
+ "mnc": 3,
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": 370,
+ "network": "Tele2"
+ },
+ {
+ "mcc": 246,
+ "mnc": 299,
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": 370,
+ "network": "Teletel"
+ },
+ {
+ "mcc": 246,
+ "mnc": 1,
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": 370,
+ "network": "Telia"
+ },
+ {
+ "mcc": 270,
+ "mnc": 10,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Blue Communications"
+ },
+ {
+ "mcc": 270,
+ "mnc": 299,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Bouygues Telecom"
+ },
+ {
+ "mcc": 270,
+ "mnc": 81,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "e-LUX Mobile"
+ },
+ {
+ "mcc": 270,
+ "mnc": 299,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Eltrona"
+ },
+ {
+ "mcc": 270,
+ "mnc": 299,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "30",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 270,
+ "mnc": 999,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Fix Line"
},
{
- "mcc": "441",
- "mnc": "45",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 270,
+ "mnc": 5,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Luxembourg Online"
},
{
- "mcc": "440",
- "mnc": "01",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 270,
+ "mnc": 299,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "MTX Connect"
},
{
- "mcc": "440",
- "mnc": "24",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 270,
+ "mnc": 99,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Orange"
},
{
- "mcc": "440",
- "mnc": "68",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 270,
+ "mnc": 1,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Post"
},
{
- "mcc": "440",
- "mnc": "15",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 270,
+ "mnc": 77,
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": 352,
+ "network": "Tango"
},
{
- "mcc": "441",
- "mnc": "98",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 5,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "3"
},
{
- "mcc": "441",
- "mnc": "42",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 3,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "3"
},
{
- "mcc": "440",
- "mnc": "11",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 7,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "China Telecom"
},
{
- "mcc": "440",
- "mnc": "63",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 2,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "China Telecom"
},
{
- "mcc": "440",
- "mnc": "38",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 4,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "CTM"
},
{
- "mcc": "440",
- "mnc": "26",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 1,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "CTM"
},
{
- "mcc": "440",
- "mnc": "23",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 299,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "21",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 999,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "Fix Line"
},
{
- "mcc": "441",
- "mnc": "44",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 6,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "SmarTone"
},
{
- "mcc": "440",
- "mnc": "13",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 455,
+ "mnc": 0,
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": 853,
+ "network": "SmarTone"
},
{
- "mcc": "440",
- "mnc": "69",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 646,
+ "mnc": 1,
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": 261,
+ "network": "Airtel"
},
{
- "mcc": "440",
- "mnc": "16",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 646,
+ "mnc": 299,
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": 261,
+ "network": "Bip"
},
{
- "mcc": "441",
- "mnc": "99",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 646,
+ "mnc": 299,
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": 261,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "34",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 646,
+ "mnc": 999,
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": 261,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 646,
+ "mnc": 2,
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": 261,
+ "network": "Orange"
+ },
+ {
+ "mcc": 646,
+ "mnc": 4,
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": 261,
+ "network": "Telma"
+ },
+ {
+ "mcc": 650,
+ "mnc": 10,
+ "iso": "mw",
+ "country": "Malawi",
+ "country_code": 265,
+ "network": "Airtel"
+ },
+ {
+ "mcc": 650,
+ "mnc": 299,
+ "iso": "mw",
+ "country": "Malawi",
+ "country_code": 265,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 650,
+ "mnc": 999,
+ "iso": "mw",
+ "country": "Malawi",
+ "country_code": 265,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 650,
+ "mnc": 1,
+ "iso": "mw",
+ "country": "Malawi",
+ "country_code": 265,
+ "network": "TNM"
+ },
+ {
+ "mcc": 502,
+ "mnc": 156,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Altel Communications"
+ },
+ {
+ "mcc": 502,
+ "mnc": 11,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Telekom Malaysia"
+ },
+ {
+ "mcc": 502,
+ "mnc": 14,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Telekom Malaysia"
+ },
+ {
+ "mcc": 502,
+ "mnc": 19,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Celcom"
+ },
+ {
+ "mcc": 502,
+ "mnc": 13,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Celcom"
+ },
+ {
+ "mcc": 502,
+ "mnc": 10,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "DiGi"
+ },
+ {
+ "mcc": 502,
+ "mnc": 16,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "DiGi"
+ },
+ {
+ "mcc": 502,
+ "mnc": 299,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 502,
+ "mnc": 999,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 502,
+ "mnc": 299,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "MKN"
+ },
+ {
+ "mcc": 502,
+ "mnc": 17,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Maxis"
+ },
+ {
+ "mcc": 502,
+ "mnc": 12,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Maxis"
+ },
+ {
+ "mcc": 502,
+ "mnc": 299,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Maxis Broadband"
+ },
+ {
+ "mcc": 502,
+ "mnc": 299,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "OCESB"
+ },
+ {
+ "mcc": 502,
+ "mnc": 299,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "REDtone Mobile"
+ },
+ {
+ "mcc": 502,
+ "mnc": 299,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "REDtone"
+ },
+ {
+ "mcc": 502,
+ "mnc": 299,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "TT dotCom"
+ },
+ {
+ "mcc": 502,
+ "mnc": 150,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Tune Talk"
+ },
+ {
+ "mcc": 502,
+ "mnc": 18,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "U Mobile"
+ },
+ {
+ "mcc": 502,
+ "mnc": 153,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Webe Digital"
},
{
- "mcc": "440",
- "mnc": "64",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 502,
+ "mnc": 195,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "XOX Com"
},
{
- "mcc": "440",
- "mnc": "37",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 502,
+ "mnc": 299,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Y-Max"
},
{
- "mcc": "440",
- "mnc": "25",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 502,
+ "mnc": 152,
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": 60,
+ "network": "Yes"
},
{
- "mcc": "440",
- "mnc": "99",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "NTT DoCoMo"
+ "mcc": 472,
+ "mnc": 1,
+ "iso": "mv",
+ "country": "Maldives",
+ "country_code": 960,
+ "network": "DhiMobile"
},
{
- "mcc": "440",
- "mnc": "78",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "Okinawa Cellular"
+ "mcc": 472,
+ "mnc": 299,
+ "iso": "mv",
+ "country": "Maldives",
+ "country_code": 960,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "11",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "Rakuten Mobile"
+ "mcc": 472,
+ "mnc": 999,
+ "iso": "mv",
+ "country": "Maldives",
+ "country_code": 960,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "00",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 472,
+ "mnc": 2,
+ "iso": "mv",
+ "country": "Maldives",
+ "country_code": 960,
+ "network": "Ooredoo"
},
{
- "mcc": "440",
- "mnc": "20",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 610,
+ "mnc": 299,
+ "iso": "ml",
+ "country": "Mali",
+ "country_code": 223,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "21",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 610,
+ "mnc": 999,
+ "iso": "ml",
+ "country": "Mali",
+ "country_code": 223,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "05",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 610,
+ "mnc": 1,
+ "iso": "ml",
+ "country": "Mali",
+ "country_code": 223,
+ "network": "Malitel"
},
{
- "mcc": "440",
- "mnc": "01",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 610,
+ "mnc": 2,
+ "iso": "ml",
+ "country": "Mali",
+ "country_code": 223,
+ "network": "Orange"
},
{
- "mcc": "440",
- "mnc": "94",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 610,
+ "mnc": 3,
+ "iso": "ml",
+ "country": "Mali",
+ "country_code": 223,
+ "network": "Telecel"
},
{
- "mcc": "440",
- "mnc": "46",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 278,
+ "mnc": 1,
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": 356,
+ "network": "Vodafone"
},
{
- "mcc": "440",
- "mnc": "97",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 278,
+ "mnc": 299,
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": 356,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "42",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 278,
+ "mnc": 999,
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": 356,
+ "network": "Fix Line"
},
{
- "mcc": "441",
- "mnc": "65",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 278,
+ "mnc": 21,
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": 356,
+ "network": "GO Mobile"
},
{
- "mcc": "440",
- "mnc": "90",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 278,
+ "mnc": 30,
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": 356,
+ "network": "GO Mobile"
},
{
- "mcc": "440",
- "mnc": "96",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 278,
+ "mnc": 77,
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": 356,
+ "network": "Melita"
},
{
- "mcc": "440",
- "mnc": "92",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 551,
+ "mnc": 299,
+ "iso": "mh",
+ "country": "Marshall Islands",
+ "country_code": 692,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "98",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 551,
+ "mnc": 999,
+ "iso": "mh",
+ "country": "Marshall Islands",
+ "country_code": 692,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "43",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 551,
+ "mnc": 299,
+ "iso": "mh",
+ "country": "Marshall Islands",
+ "country_code": 692,
+ "network": "MINTA"
},
{
- "mcc": "440",
- "mnc": "48",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 609,
+ "mnc": 2,
+ "iso": "mr",
+ "country": "Mauritania",
+ "country_code": 222,
+ "network": "Chinguitel"
},
{
- "mcc": "440",
- "mnc": "06",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 609,
+ "mnc": 299,
+ "iso": "mr",
+ "country": "Mauritania",
+ "country_code": 222,
+ "network": "Failed Calls"
},
{
- "mcc": "441",
- "mnc": "61",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 609,
+ "mnc": 999,
+ "iso": "mr",
+ "country": "Mauritania",
+ "country_code": 222,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "44",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 609,
+ "mnc": 1,
+ "iso": "mr",
+ "country": "Mauritania",
+ "country_code": 222,
+ "network": "Mattel"
},
{
- "mcc": "440",
- "mnc": "04",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 609,
+ "mnc": 10,
+ "iso": "mr",
+ "country": "Mauritania",
+ "country_code": 222,
+ "network": "Mauritel"
},
{
- "mcc": "441",
- "mnc": "62",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 617,
+ "mnc": 2,
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": 230,
+ "network": "Chili"
},
{
- "mcc": "440",
- "mnc": "45",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 617,
+ "mnc": 3,
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": 230,
+ "network": "Chili"
},
{
- "mcc": "440",
- "mnc": "20",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 617,
+ "mnc": 10,
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": 230,
+ "network": "Emtel"
},
{
- "mcc": "440",
- "mnc": "40",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 617,
+ "mnc": 299,
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": 230,
+ "network": "Failed Calls"
},
{
- "mcc": "441",
- "mnc": "63",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 617,
+ "mnc": 999,
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": 230,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "93",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 617,
+ "mnc": 1,
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": 230,
+ "network": "my.t mobile"
},
{
- "mcc": "440",
- "mnc": "47",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 647,
+ "mnc": 299,
+ "iso": "yt",
+ "country": "Mayotte",
+ "country_code": 262,
+ "network": "Failed Calls"
},
{
- "mcc": "440",
- "mnc": "95",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 647,
+ "mnc": 999,
+ "iso": "yt",
+ "country": "Mayotte",
+ "country_code": 262,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "41",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 647,
+ "mnc": 1,
+ "iso": "yt",
+ "country": "Mayotte",
+ "country_code": 262,
+ "network": "Maore Mobile"
},
{
- "mcc": "441",
- "mnc": "64",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "SoftBank"
+ "mcc": 647,
+ "mnc": 10,
+ "iso": "yt",
+ "country": "Mayotte",
+ "country_code": 262,
+ "network": "SFR"
},
{
- "mcc": "440",
- "mnc": "85",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 334,
+ "mnc": 140,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "ALTAN Redes"
},
{
- "mcc": "440",
- "mnc": "83",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Altcel"
},
{
- "mcc": "440",
- "mnc": "80",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 334,
+ "mnc": 50,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "AT&T / IUSACell"
},
{
- "mcc": "440",
- "mnc": "86",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Failed Call(s)"
},
{
- "mcc": "440",
- "mnc": "81",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 334,
+ "mnc": 999,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Fix Line"
},
{
- "mcc": "440",
- "mnc": "84",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "FreedomPop"
},
{
- "mcc": "440",
- "mnc": "82",
- "iso": "jp",
- "country": "Japan",
- "country_code": "81",
- "network": "KDDI"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Ibo Cell"
},
{
- "mcc": "416",
- "mnc": "999",
- "iso": "jo",
- "country": "Jordan",
- "country_code": "962",
- "network": "Fix Line"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Maxcom"
},
{
- "mcc": "416",
- "mnc": "77",
- "iso": "jo",
- "country": "Jordan",
- "country_code": "962",
- "network": "Orange"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "MegaTel"
},
{
- "mcc": "416",
- "mnc": "03",
- "iso": "jo",
- "country": "Jordan",
- "country_code": "962",
- "network": "Umniah"
+ "mcc": 334,
+ "mnc": 3,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Movistar"
},
{
- "mcc": "416",
- "mnc": "02",
- "iso": "jo",
- "country": "Jordan",
- "country_code": "962",
- "network": "Xpress"
+ "mcc": 334,
+ "mnc": 30,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Movistar"
},
{
- "mcc": "416",
- "mnc": "01",
- "iso": "jo",
- "country": "Jordan",
- "country_code": "962",
- "network": "Zain"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "NEUS Mobile"
},
{
- "mcc": "401",
- "mnc": "01",
- "iso": "kz",
- "country": "Kazakhstan",
- "country_code": "7",
- "network": "Beeline/KaR-Tel LLP"
+ "mcc": 334,
+ "mnc": 1,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Nextel"
},
{
- "mcc": "401",
- "mnc": "07",
- "iso": "kz",
- "country": "Kazakhstan",
- "country_code": "7",
- "network": "Dalacom/Altel"
+ "mcc": 334,
+ "mnc": 10,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Nextel"
},
{
- "mcc": "401",
- "mnc": "02",
- "iso": "kz",
- "country": "Kazakhstan",
- "country_code": "7",
- "network": "K-Cell"
+ "mcc": 334,
+ "mnc": 90,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Nextel"
},
{
- "mcc": "401",
- "mnc": "77",
- "iso": "kz",
- "country": "Kazakhstan",
- "country_code": "7",
- "network": "Tele2/NEO/MTS"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "QBOcel"
},
{
- "mcc": "639",
- "mnc": "03",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Airtel"
+ "mcc": 334,
+ "mnc": 60,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "SAI PCS"
},
{
- "mcc": "639",
- "mnc": "05",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Airtel"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Servitron"
},
{
- "mcc": "639",
- "mnc": "299",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "eferio"
+ "mcc": 334,
+ "mnc": 2,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Telcel"
},
{
- "mcc": "639",
- "mnc": "06",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Finserve Africa"
+ "mcc": 334,
+ "mnc": 20,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Telcel"
},
{
- "mcc": "639",
- "mnc": "09",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Homeland Media"
+ "mcc": 334,
+ "mnc": 299,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Telecomunicaciones 360"
},
{
- "mcc": "639",
- "mnc": "12",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Infura"
+ "mcc": 334,
+ "mnc": 80,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Unefon"
},
{
- "mcc": "639",
- "mnc": "11",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Jambo Telcoms"
+ "mcc": 334,
+ "mnc": 70,
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": 52,
+ "network": "Unefon"
},
{
- "mcc": "639",
- "mnc": "10",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Jamii Telecommunications"
+ "mcc": 550,
+ "mnc": 299,
+ "iso": "fm",
+ "country": "Micronesia",
+ "country_code": 691,
+ "network": "Failed Calls"
},
{
- "mcc": "639",
- "mnc": "04",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Mobile Pay"
+ "mcc": 550,
+ "mnc": 999,
+ "iso": "fm",
+ "country": "Micronesia",
+ "country_code": 691,
+ "network": "Fix Line"
},
{
- "mcc": "639",
- "mnc": "01",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Safaricom"
+ "mcc": 550,
+ "mnc": 1,
+ "iso": "fm",
+ "country": "Micronesia",
+ "country_code": 691,
+ "network": "FSMTCeLL"
},
{
- "mcc": "639",
- "mnc": "02",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Safaricom"
+ "mcc": 259,
+ "mnc": 299,
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": 373,
+ "network": "Failed Calls"
},
{
- "mcc": "639",
- "mnc": "07",
- "iso": "ke",
- "country": "Kenya",
- "country_code": "254",
- "network": "Telkom"
+ "mcc": 259,
+ "mnc": 2,
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": 373,
+ "network": "Moldcell"
},
{
- "mcc": "545",
- "mnc": "09",
- "iso": "ki",
- "country": "Kiribati",
- "country_code": "686",
- "network": "Kiribati Frigate"
+ "mcc": 259,
+ "mnc": 1,
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": 373,
+ "network": "Orange"
},
{
- "mcc": "221",
- "mnc": "07",
- "iso": "xk",
- "country": "Kosovo",
- "country_code": "383",
- "network": "D3 mobile"
+ "mcc": 259,
+ "mnc": 3,
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": 373,
+ "network": "Unite"
},
{
- "mcc": "221",
- "mnc": "06",
- "iso": "xk",
- "country": "Kosovo",
- "country_code": "383",
- "network": "Dardafon.Net LLC"
+ "mcc": 259,
+ "mnc": 99,
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": 373,
+ "network": "Unite"
},
{
- "mcc": "221",
- "mnc": "02",
- "iso": "xk",
- "country": "Kosovo",
- "country_code": "383",
- "network": "IPKO"
+ "mcc": 259,
+ "mnc": 5,
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": 373,
+ "network": "Unite"
},
{
- "mcc": "221",
- "mnc": "299",
- "iso": "xk",
- "country": "Kosovo",
- "country_code": "383",
- "network": "MTS"
+ "mcc": 212,
+ "mnc": 299,
+ "iso": "mc",
+ "country": "Monaco",
+ "country_code": 377,
+ "network": "Failed Calls"
},
{
- "mcc": "221",
- "mnc": "03",
- "iso": "xk",
- "country": "Kosovo",
- "country_code": "383",
- "network": "MTS"
+ "mcc": 212,
+ "mnc": 999,
+ "iso": "mc",
+ "country": "Monaco",
+ "country_code": 377,
+ "network": "Fix Line"
},
{
- "mcc": "221",
- "mnc": "01",
- "iso": "xk",
- "country": "Kosovo",
- "country_code": "383",
- "network": "Vala"
+ "mcc": 212,
+ "mnc": 10,
+ "iso": "mc",
+ "country": "Monaco",
+ "country_code": 377,
+ "network": "Monaco Telecom"
},
{
- "mcc": "419",
- "mnc": "999",
- "iso": "kw",
- "country": "Kuwait",
- "country_code": "965",
- "network": "Fix Line"
+ "mcc": 212,
+ "mnc": 1,
+ "iso": "mc",
+ "country": "Monaco",
+ "country_code": 377,
+ "network": "Monaco Telecom"
},
{
- "mcc": "419",
- "mnc": "02",
- "iso": "kw",
- "country": "Kuwait",
- "country_code": "965",
- "network": "Zain"
+ "mcc": 428,
+ "mnc": 299,
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": 976,
+ "network": "Failed Calls"
},
{
- "mcc": "419",
- "mnc": "04",
- "iso": "kw",
- "country": "Kuwait",
- "country_code": "965",
- "network": "Viva"
+ "mcc": 428,
+ "mnc": 999,
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": 976,
+ "network": "Fix Line"
},
{
- "mcc": "419",
- "mnc": "03",
- "iso": "kw",
- "country": "Kuwait",
- "country_code": "965",
- "network": "Ooredoo"
+ "mcc": 428,
+ "mnc": 98,
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": 976,
+ "network": "G-Mobile"
},
{
- "mcc": "437",
- "mnc": "01",
- "iso": "kg",
- "country": "Kyrgyzstan",
- "country_code": "996",
- "network": "Beeline"
+ "mcc": 428,
+ "mnc": 99,
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": 976,
+ "network": "Mobicom"
},
{
- "mcc": "437",
- "mnc": "299",
- "iso": "kg",
- "country": "Kyrgyzstan",
- "country_code": "996",
- "network": "Failed Calls"
+ "mcc": 428,
+ "mnc": 0,
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": 976,
+ "network": "Skytel"
},
{
- "mcc": "437",
- "mnc": "02",
- "iso": "kg",
- "country": "Kyrgyzstan",
- "country_code": "996",
- "network": "KT Mobile"
+ "mcc": 428,
+ "mnc": 88,
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": 976,
+ "network": "Unitel"
},
{
- "mcc": "437",
- "mnc": "05",
- "iso": "kg",
- "country": "Kyrgyzstan",
- "country_code": "996",
- "network": "MegaCom"
+ "mcc": 297,
+ "mnc": 299,
+ "iso": "me",
+ "country": "Montenegro",
+ "country_code": 382,
+ "network": "Failed Calls"
},
{
- "mcc": "437",
- "mnc": "09",
- "iso": "kg",
- "country": "Kyrgyzstan",
- "country_code": "996",
- "network": "O!"
+ "mcc": 297,
+ "mnc": 999,
+ "iso": "me",
+ "country": "Montenegro",
+ "country_code": 382,
+ "network": "Fix Line"
},
{
- "mcc": "437",
- "mnc": "10",
- "iso": "kg",
- "country": "Kyrgyzstan",
- "country_code": "996",
- "network": "Saima"
+ "mcc": 297,
+ "mnc": 3,
+ "iso": "me",
+ "country": "Montenegro",
+ "country_code": 382,
+ "network": "Mtel"
},
{
- "mcc": "437",
- "mnc": "03",
- "iso": "kg",
- "country": "Kyrgyzstan",
- "country_code": "996",
- "network": "Sem Mobile"
+ "mcc": 297,
+ "mnc": 2,
+ "iso": "me",
+ "country": "Montenegro",
+ "country_code": 382,
+ "network": "Telekom / T-mobile"
},
{
- "mcc": "457",
- "mnc": "02",
- "iso": "la",
- "country": "Laos",
- "country_code": "856",
- "network": "ETL Mobile"
+ "mcc": 297,
+ "mnc": 1,
+ "iso": "me",
+ "country": "Montenegro",
+ "country_code": 382,
+ "network": "Telenor"
},
{
- "mcc": "457",
- "mnc": "01",
- "iso": "la",
- "country": "Laos",
- "country_code": "856",
- "network": "Lao Tel"
+ "mcc": 354,
+ "mnc": 299,
+ "iso": "ms",
+ "country": "Montserrat",
+ "country_code": 1664,
+ "network": "Digicel"
},
{
- "mcc": "457",
- "mnc": "08",
- "iso": "la",
- "country": "Laos",
- "country_code": "856",
- "network": "Beeline/Tigo/Millicom"
+ "mcc": 354,
+ "mnc": 299,
+ "iso": "ms",
+ "country": "Montserrat",
+ "country_code": 1664,
+ "network": "Failed Calls"
},
{
- "mcc": "457",
- "mnc": "03",
- "iso": "la",
- "country": "Laos",
- "country_code": "856",
- "network": "UNITEL/LAT"
+ "mcc": 354,
+ "mnc": 999,
+ "iso": "ms",
+ "country": "Montserrat",
+ "country_code": 1664,
+ "network": "Fix Line"
},
{
- "mcc": "247",
- "mnc": "05",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "Bite"
+ "mcc": 354,
+ "mnc": 860,
+ "iso": "ms",
+ "country": "Montserrat",
+ "country_code": 1664,
+ "network": "Flow"
},
{
- "mcc": "247",
- "mnc": "10",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "LMT"
+ "mcc": 604,
+ "mnc": 299,
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": 212,
+ "network": "Failed Calls"
},
{
- "mcc": "247",
- "mnc": "01",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "LMT"
+ "mcc": 604,
+ "mnc": 999,
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": 212,
+ "network": "Fix Line"
},
{
- "mcc": "247",
- "mnc": "299",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "Premium Numbers"
+ "mcc": 604,
+ "mnc": 1,
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": 212,
+ "network": "IAM"
},
{
- "mcc": "247",
- "mnc": "07",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "SIA Master Telecom"
+ "mcc": 604,
+ "mnc": 5,
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": 212,
+ "network": "inwi"
},
{
- "mcc": "247",
- "mnc": "06",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "SIA Rigatta"
+ "mcc": 604,
+ "mnc": 2,
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": 212,
+ "network": "inwi"
},
{
- "mcc": "247",
- "mnc": "02",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "Tele2"
+ "mcc": 604,
+ "mnc": 0,
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": 212,
+ "network": "Orange"
},
{
- "mcc": "247",
- "mnc": "04",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "Tet"
+ "mcc": 643,
+ "mnc": 299,
+ "iso": "mz",
+ "country": "Mozambique",
+ "country_code": 258,
+ "network": "Failed Calls"
},
{
- "mcc": "247",
- "mnc": "03",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "TRIATEL"
+ "mcc": 643,
+ "mnc": 999,
+ "iso": "mz",
+ "country": "Mozambique",
+ "country_code": 258,
+ "network": "Fix Line"
},
{
- "mcc": "247",
- "mnc": "08",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "VENTA Mobile"
+ "mcc": 643,
+ "mnc": 3,
+ "iso": "mz",
+ "country": "Mozambique",
+ "country_code": 258,
+ "network": "Movitel"
},
{
- "mcc": "247",
- "mnc": "09",
- "iso": "lv",
- "country": "Latvia",
- "country_code": "371",
- "network": "XOmobile"
+ "mcc": 643,
+ "mnc": 1,
+ "iso": "mz",
+ "country": "Mozambique",
+ "country_code": 258,
+ "network": "TMCEL"
},
{
- "mcc": "415",
- "mnc": "35",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "Cellis"
+ "mcc": 643,
+ "mnc": 4,
+ "iso": "mz",
+ "country": "Mozambique",
+ "country_code": 258,
+ "network": "Vodacom"
},
{
- "mcc": "415",
- "mnc": "33",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "Cellis"
+ "mcc": 414,
+ "mnc": 999,
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": 95,
+ "network": "Failed Calls"
},
{
- "mcc": "415",
- "mnc": "32",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "Cellis"
+ "mcc": 414,
+ "mnc": 999,
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": 95,
+ "network": "Fix Line"
},
{
- "mcc": "415",
- "mnc": "34",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "FTML Cellis"
+ "mcc": 414,
+ "mnc": 3,
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": 95,
+ "network": "MecTel"
},
{
- "mcc": "415",
- "mnc": "39",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "MIC2/LibanCell/MTC"
+ "mcc": 414,
+ "mnc": 0,
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": 95,
+ "network": "MPT"
},
{
- "mcc": "415",
- "mnc": "38",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "MIC2/LibanCell/MTC"
+ "mcc": 414,
+ "mnc": 1,
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": 95,
+ "network": "MPT"
},
{
- "mcc": "415",
- "mnc": "37",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "MIC2/LibanCell/MTC"
+ "mcc": 414,
+ "mnc": 9,
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": 95,
+ "network": "Mytel"
},
{
- "mcc": "415",
- "mnc": "01",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "MIC1 (Alfa)"
+ "mcc": 414,
+ "mnc": 5,
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": 95,
+ "network": "Ooredoo"
},
{
- "mcc": "415",
- "mnc": "03",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "MIC2/LibanCell/MTC"
+ "mcc": 414,
+ "mnc": 6,
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": 95,
+ "network": "Telenor"
},
{
- "mcc": "415",
- "mnc": "36",
- "iso": "lb",
- "country": "Lebanon",
- "country_code": "961",
- "network": "MIC2/LibanCell/MTC"
+ "mcc": 649,
+ "mnc": 299,
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": 264,
+ "network": "Demshi"
},
{
- "mcc": "651",
- "mnc": "02",
- "iso": "ls",
- "country": "Lesotho",
- "country_code": "266",
- "network": "Econet"
+ "mcc": 649,
+ "mnc": 299,
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": 264,
+ "network": "Failed Calls"
},
{
- "mcc": "651",
- "mnc": "01",
- "iso": "ls",
- "country": "Lesotho",
- "country_code": "266",
- "network": "Vodacom"
+ "mcc": 649,
+ "mnc": 999,
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": 264,
+ "network": "Fix Line"
},
{
- "mcc": "618",
- "mnc": "02",
- "iso": "lr",
- "country": "Liberia",
- "country_code": "231",
- "network": "Libercell"
+ "mcc": 649,
+ "mnc": 1,
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": 264,
+ "network": "MTC"
},
{
- "mcc": "618",
- "mnc": "20",
- "iso": "lr",
- "country": "Liberia",
- "country_code": "231",
- "network": "LibTelco"
+ "mcc": 649,
+ "mnc": 3,
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": 264,
+ "network": "TN Mobile"
},
{
- "mcc": "618",
- "mnc": "01",
- "iso": "lr",
- "country": "Liberia",
- "country_code": "231",
- "network": "MTN / Lonestar"
+ "mcc": 536,
+ "mnc": 2,
+ "iso": "nr",
+ "country": "Nauru",
+ "country_code": 674,
+ "network": "Digicel"
},
{
- "mcc": "618",
- "mnc": "04",
- "iso": "lr",
- "country": "Liberia",
- "country_code": "231",
- "network": "Novafone"
+ "mcc": 536,
+ "mnc": 299,
+ "iso": "nr",
+ "country": "Nauru",
+ "country_code": 674,
+ "network": "Failed Calls"
},
{
- "mcc": "618",
- "mnc": "07",
- "iso": "lr",
- "country": "Liberia",
- "country_code": "231",
- "network": "Orange"
+ "mcc": 536,
+ "mnc": 999,
+ "iso": "nr",
+ "country": "Nauru",
+ "country_code": 674,
+ "network": "Fix Line"
},
{
- "mcc": "606",
- "mnc": "02",
- "iso": "ly",
- "country": "Libya",
- "country_code": "218",
- "network": "Al-Madar"
+ "mcc": 429,
+ "mnc": 299,
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": 977,
+ "network": "CG Telecom"
},
{
- "mcc": "606",
- "mnc": "01",
- "iso": "ly",
- "country": "Libya",
- "country_code": "218",
- "network": "Al-Madar"
+ "mcc": 429,
+ "mnc": 299,
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": 977,
+ "network": "Failed Calls"
},
{
- "mcc": "606",
- "mnc": "06",
- "iso": "ly",
- "country": "Libya",
- "country_code": "218",
- "network": "Hatef"
+ "mcc": 429,
+ "mnc": 999,
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": 977,
+ "network": "Fix Line"
},
{
- "mcc": "606",
- "mnc": "00",
- "iso": "ly",
- "country": "Libya",
- "country_code": "218",
- "network": "Libyana"
+ "mcc": 429,
+ "mnc": 3,
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": 977,
+ "network": "Hello Nepal"
},
{
- "mcc": "606",
- "mnc": "00",
- "iso": "ly",
- "country": "Libya",
- "country_code": "218",
- "network": "Libyana"
+ "mcc": 429,
+ "mnc": 2,
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": 977,
+ "network": "Ncell"
},
{
- "mcc": "606",
- "mnc": "03",
- "iso": "ly",
- "country": "Libya",
- "country_code": "218",
- "network": "LibyaPhone Mobile"
+ "mcc": 429,
+ "mnc": 1,
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": 977,
+ "network": "Nepal Telecom"
},
{
- "mcc": "295",
- "mnc": "02",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "7acht"
+ "mcc": 429,
+ "mnc": 4,
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": 977,
+ "network": "Smart"
},
{
- "mcc": "295",
- "mnc": "06",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "CUBIC"
+ "mcc": 429,
+ "mnc": 0,
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": 977,
+ "network": "UTL"
},
{
- "mcc": "295",
- "mnc": "299",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "Datamobile"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "88 mobile"
},
{
- "mcc": "295",
- "mnc": "299",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "Dimoco"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "AGMS"
},
{
- "mcc": "295",
- "mnc": "09",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "EMnify"
+ "mcc": 204,
+ "mnc": 30,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "ASPIDER Solutions"
},
{
- "mcc": "295",
- "mnc": "07",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "First Mobile AG"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Belcentrale"
},
{
- "mcc": "295",
- "mnc": "01",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "FL GSM"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "BodyTrace"
},
{
- "mcc": "295",
- "mnc": "05",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "FL1"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Combird Mobile"
},
{
- "mcc": "295",
- "mnc": "299",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "SORACOM"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Dean Mobile"
},
{
- "mcc": "295",
- "mnc": "77",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "Alpmobile/Tele2"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Eazit"
},
{
- "mcc": "295",
- "mnc": "299",
- "iso": "li",
- "country": "Liechtenstein",
- "country_code": "423",
- "network": "Telna"
+ "mcc": 204,
+ "mnc": 5,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "ElephantTalk"
},
{
- "mcc": "246",
- "mnc": "02",
- "iso": "lt",
- "country": "Lithuania",
- "country_code": "370",
- "network": "Bite"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "EziMobile"
},
{
- "mcc": "246",
- "mnc": "05",
- "iso": "lt",
- "country": "Lithuania",
- "country_code": "370",
- "network": "LTG"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Failed Calls"
},
{
- "mcc": "246",
- "mnc": "06",
- "iso": "lt",
- "country": "Lithuania",
- "country_code": "370",
- "network": "Mediafon"
+ "mcc": 204,
+ "mnc": 999,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Fix Line"
},
{
- "mcc": "246",
- "mnc": "299",
- "iso": "lt",
- "country": "Lithuania",
- "country_code": "370",
- "network": "SkyCall"
+ "mcc": 204,
+ "mnc": 999,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Fix Line"
},
{
- "mcc": "246",
- "mnc": "03",
- "iso": "lt",
- "country": "Lithuania",
- "country_code": "370",
- "network": "Tele2"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "interactive digital media / IDM"
},
{
- "mcc": "246",
- "mnc": "299",
- "iso": "lt",
- "country": "Lithuania",
- "country_code": "370",
- "network": "Teletel"
+ "mcc": 204,
+ "mnc": 0,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Intovoice"
},
{
- "mcc": "246",
- "mnc": "01",
- "iso": "lt",
- "country": "Lithuania",
- "country_code": "370",
- "network": "Telia"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "KeenMobile"
},
{
- "mcc": "270",
- "mnc": "10",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "Blue Communications"
+ "mcc": 204,
+ "mnc": 23,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "KORE"
},
{
- "mcc": "270",
- "mnc": "299",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "Bouygues Telecom"
+ "mcc": 204,
+ "mnc": 69,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "KPN"
},
{
- "mcc": "270",
- "mnc": "81",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "e-LUX Mobile"
+ "mcc": 204,
+ "mnc": 12,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "KPN"
},
{
- "mcc": "270",
- "mnc": "299",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "Eltrona"
+ "mcc": 204,
+ "mnc": 8,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "KPN"
},
{
- "mcc": "270",
- "mnc": "999",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "Fix Line"
+ "mcc": 204,
+ "mnc": 10,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "KPN"
},
{
- "mcc": "270",
- "mnc": "05",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "Luxembourg Online"
+ "mcc": 204,
+ "mnc": 27,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "L-mobi"
},
{
- "mcc": "270",
- "mnc": "299",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "MTX Connect"
+ "mcc": 204,
+ "mnc": 28,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Lancelot"
},
{
- "mcc": "270",
- "mnc": "99",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "Orange"
+ "mcc": 204,
+ "mnc": 98,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Lancelot"
},
{
- "mcc": "270",
- "mnc": "01",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "Post"
+ "mcc": 204,
+ "mnc": 9,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Lycamobile"
},
{
- "mcc": "270",
- "mnc": "77",
- "iso": "lu",
- "country": "Luxembourg",
- "country_code": "352",
- "network": "Tango"
+ "mcc": 204,
+ "mnc": 63,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "MessageBird"
},
{
- "mcc": "455",
- "mnc": "01",
- "iso": "mo",
- "country": "Macao",
- "country_code": "853",
- "network": "C.T.M. TELEMOVEL+"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "mGage"
},
{
- "mcc": "455",
- "mnc": "04",
- "iso": "mo",
- "country": "Macao",
- "country_code": "853",
- "network": "C.T.M. TELEMOVEL+"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Motto"
},
{
- "mcc": "455",
- "mnc": "02",
- "iso": "mo",
- "country": "Macao",
- "country_code": "853",
- "network": "China Telecom"
+ "mcc": 204,
+ "mnc": 7,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Move / Teleena"
},
{
- "mcc": "455",
- "mnc": "05",
- "iso": "mo",
- "country": "Macao",
- "country_code": "853",
- "network": "Hutchison Telephone Co. Ltd"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Okta8"
},
{
- "mcc": "455",
- "mnc": "03",
- "iso": "mo",
- "country": "Macao",
- "country_code": "853",
- "network": "Hutchison Telephone Co. Ltd"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Premium Numbers"
},
{
- "mcc": "455",
- "mnc": "06",
- "iso": "mo",
- "country": "Macao",
- "country_code": "853",
- "network": "Smartone Mobile"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Premium Routing"
},
{
- "mcc": "455",
- "mnc": "00",
- "iso": "mo",
- "country": "Macao",
- "country_code": "853",
- "network": "Smartone Mobile"
+ "mcc": 204,
+ "mnc": 24,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Private Mobility"
},
{
- "mcc": "646",
- "mnc": "01",
- "iso": "mg",
- "country": "Madagascar",
- "country_code": "261",
- "network": "Airtel"
+ "mcc": 204,
+ "mnc": 21,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "ProRail"
},
{
- "mcc": "646",
- "mnc": "299",
- "iso": "mg",
- "country": "Madagascar",
- "country_code": "261",
- "network": "Bip"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Redworks"
},
{
- "mcc": "646",
- "mnc": "02",
- "iso": "mg",
- "country": "Madagascar",
- "country_code": "261",
- "network": "Orange"
+ "mcc": 204,
+ "mnc": 26,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "SpeakUp"
},
{
- "mcc": "646",
- "mnc": "03",
- "iso": "mg",
- "country": "Madagascar",
- "country_code": "261",
- "network": "Sacel"
+ "mcc": 204,
+ "mnc": 20,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "T-Mobile"
},
{
- "mcc": "646",
- "mnc": "04",
- "iso": "mg",
- "country": "Madagascar",
- "country_code": "261",
- "network": "Telma"
+ "mcc": 204,
+ "mnc": 2,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "T-Mobile"
},
{
- "mcc": "650",
- "mnc": "10",
- "iso": "mw",
- "country": "Malawi",
- "country_code": "265",
- "network": "Airtel"
+ "mcc": 204,
+ "mnc": 16,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "T-Mobile"
},
{
- "mcc": "650",
- "mnc": "01",
- "iso": "mw",
- "country": "Malawi",
- "country_code": "265",
- "network": "TNM"
+ "mcc": 204,
+ "mnc": 29,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Tismi"
},
{
- "mcc": "502",
- "mnc": "156",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Altel Communications"
+ "mcc": 204,
+ "mnc": 33,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Truphone"
},
{
- "mcc": "502",
- "mnc": "01",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Art900"
+ "mcc": 204,
+ "mnc": 299,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Vectone Mobile"
},
{
- "mcc": "502",
- "mnc": "14",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Telekom Malaysia"
+ "mcc": 204,
+ "mnc": 4,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Vodafone"
},
{
- "mcc": "502",
- "mnc": "11",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Telekom Malaysia"
+ "mcc": 204,
+ "mnc": 3,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Voiceworks Mobile"
},
{
- "mcc": "502",
- "mnc": "151",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Baraka Telecom Sdn Bhd"
+ "mcc": 204,
+ "mnc": 15,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Ziggo"
},
{
- "mcc": "502",
- "mnc": "19",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Celcom"
+ "mcc": 204,
+ "mnc": 18,
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": 31,
+ "network": "Ziggo Services"
},
{
- "mcc": "502",
- "mnc": "13",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Celcom"
+ "mcc": 362,
+ "mnc": 91,
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": 599,
+ "network": "Chippie"
},
{
- "mcc": "502",
- "mnc": "198",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Celcom"
+ "mcc": 362,
+ "mnc": 69,
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": 599,
+ "network": "Digicel"
},
{
- "mcc": "502",
- "mnc": "10",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "DiGi"
+ "mcc": 362,
+ "mnc": 299,
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": 599,
+ "network": "Failed Calls"
},
{
- "mcc": "502",
- "mnc": "16",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "DiGi"
+ "mcc": 362,
+ "mnc": 999,
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": 599,
+ "network": "Fix Line"
},
{
- "mcc": "502",
- "mnc": "20",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Electcoms Wireless Sdn Bhd"
+ "mcc": 362,
+ "mnc": 299,
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": 599,
+ "network": "Premium Numbers"
},
{
- "mcc": "502",
- "mnc": "999",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Fix Line"
+ "mcc": 362,
+ "mnc": 51,
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": 599,
+ "network": "TelCell"
},
{
- "mcc": "502",
- "mnc": "299",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "MKN"
+ "mcc": 546,
+ "mnc": 299,
+ "iso": "nc",
+ "country": "New Caledonia",
+ "country_code": 687,
+ "network": "Failed Calls"
},
{
- "mcc": "502",
- "mnc": "17",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Maxis"
+ "mcc": 546,
+ "mnc": 999,
+ "iso": "nc",
+ "country": "New Caledonia",
+ "country_code": 687,
+ "network": "Fix Line"
},
{
- "mcc": "502",
- "mnc": "12",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Maxis"
+ "mcc": 546,
+ "mnc": 1,
+ "iso": "nc",
+ "country": "New Caledonia",
+ "country_code": 687,
+ "network": "Mobilis"
},
{
- "mcc": "502",
- "mnc": "299",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Maxis Broadband"
+ "mcc": 530,
+ "mnc": 24,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "2degrees"
},
{
- "mcc": "502",
- "mnc": "299",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "OCESB"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Compass Mobile"
},
{
- "mcc": "502",
- "mnc": "299",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "REDtone Mobile"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Devoli"
},
{
- "mcc": "502",
- "mnc": "299",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "REDtone"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Failed Calls"
},
{
- "mcc": "502",
- "mnc": "155",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Samata Communications Sdn Bhd"
+ "mcc": 530,
+ "mnc": 999,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Fix Line"
},
{
- "mcc": "502",
- "mnc": "154",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "TT dotCom"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "LinkTel"
},
{
- "mcc": "502",
- "mnc": "299",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "TT dotCom"
+ "mcc": 530,
+ "mnc": 6,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Skinny Mobile"
},
{
- "mcc": "502",
- "mnc": "150",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Tune Talk"
+ "mcc": 530,
+ "mnc": 5,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Spark Mobile"
},
{
- "mcc": "502",
- "mnc": "18",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "U Mobile"
+ "mcc": 530,
+ "mnc": 2,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Spark Mobile"
},
{
- "mcc": "502",
- "mnc": "153",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Webe Digital"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Symbio"
},
{
- "mcc": "502",
- "mnc": "195",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "XOX Com"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Vocus"
},
{
- "mcc": "502",
- "mnc": "299",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Y-Max"
+ "mcc": 530,
+ "mnc": 1,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Vodafone"
},
{
- "mcc": "502",
- "mnc": "152",
- "iso": "my",
- "country": "Malaysia",
- "country_code": "60",
- "network": "Yes"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Voxbone / Bandwidth"
},
{
- "mcc": "472",
- "mnc": "01",
- "iso": "mv",
- "country": "Maldives",
- "country_code": "960",
- "network": "Dhiraagu/C&W"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "Voyager Internet"
},
{
- "mcc": "472",
- "mnc": "02",
- "iso": "mv",
- "country": "Maldives",
- "country_code": "960",
- "network": "Ooredo/Wataniya"
+ "mcc": 530,
+ "mnc": 299,
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": 64,
+ "network": "WXC"
},
{
- "mcc": "610",
- "mnc": "01",
- "iso": "ml",
- "country": "Mali",
- "country_code": "223",
- "network": "Malitel"
+ "mcc": 710,
+ "mnc": 73,
+ "iso": "ni",
+ "country": "Nicaragua",
+ "country_code": 505,
+ "network": "Claro"
},
{
- "mcc": "610",
- "mnc": "02",
- "iso": "ml",
- "country": "Mali",
- "country_code": "223",
- "network": "Orange"
+ "mcc": 710,
+ "mnc": 21,
+ "iso": "ni",
+ "country": "Nicaragua",
+ "country_code": 505,
+ "network": "Claro"
},
{
- "mcc": "610",
- "mnc": "03",
- "iso": "ml",
- "country": "Mali",
- "country_code": "223",
- "network": "Telecel"
+ "mcc": 710,
+ "mnc": 299,
+ "iso": "ni",
+ "country": "Nicaragua",
+ "country_code": 505,
+ "network": "CooTel"
},
{
- "mcc": "278",
- "mnc": "01",
- "iso": "mt",
- "country": "Malta",
- "country_code": "356",
- "network": "Vodafone"
+ "mcc": 710,
+ "mnc": 299,
+ "iso": "ni",
+ "country": "Nicaragua",
+ "country_code": 505,
+ "network": "Failed Calls"
},
{
- "mcc": "278",
- "mnc": "999",
- "iso": "mt",
- "country": "Malta",
- "country_code": "356",
+ "mcc": 710,
+ "mnc": 999,
+ "iso": "ni",
+ "country": "Nicaragua",
+ "country_code": 505,
"network": "Fix Line"
},
{
- "mcc": "278",
- "mnc": "21",
- "iso": "mt",
- "country": "Malta",
- "country_code": "356",
- "network": "GO Mobile"
+ "mcc": 710,
+ "mnc": 30,
+ "iso": "ni",
+ "country": "Nicaragua",
+ "country_code": 505,
+ "network": "Movistar"
},
{
- "mcc": "278",
- "mnc": "30",
- "iso": "mt",
- "country": "Malta",
- "country_code": "356",
- "network": "GO Mobile"
+ "mcc": 614,
+ "mnc": 2,
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": 227,
+ "network": "Airtel"
},
{
- "mcc": "278",
- "mnc": "77",
- "iso": "mt",
- "country": "Malta",
- "country_code": "356",
- "network": "Melita"
+ "mcc": 614,
+ "mnc": 299,
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": 227,
+ "network": "Failed Calls"
},
{
- "mcc": "551",
- "mnc": "299",
- "iso": "mh",
- "country": "Marshall Islands",
- "country_code": "692",
- "network": "Failed Calls"
+ "mcc": 614,
+ "mnc": 999,
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": 227,
+ "network": "Fix Line"
},
{
- "mcc": "551",
- "mnc": "299",
- "iso": "mh",
- "country": "Marshall Islands",
- "country_code": "692",
- "network": "MINTA"
+ "mcc": 614,
+ "mnc": 3,
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": 227,
+ "network": "Moov"
},
{
- "mcc": "340",
- "mnc": "12",
- "iso": "mq",
- "country": "Martinique",
- "country_code": "596",
- "network": "UTS Caraibe"
+ "mcc": 614,
+ "mnc": 1,
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": 227,
+ "network": "Niger Telecoms"
},
{
- "mcc": "609",
- "mnc": "02",
- "iso": "mr",
- "country": "Mauritania",
- "country_code": "222",
- "network": "Chinguitel"
+ "mcc": 614,
+ "mnc": 4,
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": 227,
+ "network": "Orange"
},
{
- "mcc": "609",
- "mnc": "01",
- "iso": "mr",
- "country": "Mauritania",
- "country_code": "222",
- "network": "Mattel"
+ "mcc": 621,
+ "mnc": 60,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "9mobile"
},
{
- "mcc": "609",
- "mnc": "10",
- "iso": "mr",
- "country": "Mauritania",
- "country_code": "222",
- "network": "Mauritel"
+ "mcc": 621,
+ "mnc": 20,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "Airtel"
},
{
- "mcc": "617",
- "mnc": "03",
- "iso": "mu",
- "country": "Mauritius",
- "country_code": "230",
- "network": "Chili"
+ "mcc": 621,
+ "mnc": 299,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "Alpha Technologies"
},
{
- "mcc": "617",
- "mnc": "02",
- "iso": "mu",
- "country": "Mauritius",
- "country_code": "230",
- "network": "Chili"
+ "mcc": 621,
+ "mnc": 299,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "Failed Calls"
},
{
- "mcc": "617",
- "mnc": "10",
- "iso": "mu",
- "country": "Mauritius",
- "country_code": "230",
- "network": "Emtel"
+ "mcc": 621,
+ "mnc": 999,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "Fix Line"
},
{
- "mcc": "617",
- "mnc": "01",
- "iso": "mu",
- "country": "Mauritius",
- "country_code": "230",
- "network": "my.t mobile"
+ "mcc": 621,
+ "mnc": 50,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "Glo Mobile"
},
{
- "mcc": "647",
- "mnc": "01",
- "iso": "yt",
- "country": "Mayotte",
- "country_code": "262",
- "network": "Maore Mobile"
+ "mcc": 621,
+ "mnc": 30,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "MTN"
},
{
- "mcc": "647",
- "mnc": "10",
- "iso": "yt",
- "country": "Mayotte",
- "country_code": "262",
- "network": "SFR"
+ "mcc": 621,
+ "mnc": 40,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "ntel"
},
{
- "mcc": "334",
- "mnc": "050",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "AT&T/IUSACell"
+ "mcc": 621,
+ "mnc": 27,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "Smile"
},
{
- "mcc": "334",
- "mnc": "040",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "AT&T/IUSACell"
+ "mcc": 621,
+ "mnc": 299,
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": 234,
+ "network": "Zodafones"
},
{
- "mcc": "334",
- "mnc": "05",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "AT&T/IUSACell"
+ "mcc": 555,
+ "mnc": 299,
+ "iso": "nu",
+ "country": "Niue",
+ "country_code": 683,
+ "network": "Failed Calls"
},
{
- "mcc": "334",
- "mnc": "04",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "AT&T/IUSACell"
+ "mcc": 555,
+ "mnc": 999,
+ "iso": "nu",
+ "country": "Niue",
+ "country_code": 683,
+ "network": "Fix Line"
},
{
- "mcc": "334",
- "mnc": "50",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "AT&T/IUSACell"
+ "mcc": 555,
+ "mnc": 1,
+ "iso": "nu",
+ "country": "Niue",
+ "country_code": 683,
+ "network": "Telecom Niue"
},
{
- "mcc": "334",
- "mnc": "03",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "Movistar/Pegaso"
+ "mcc": 467,
+ "mnc": 299,
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": 850,
+ "network": "Failed Calls"
},
{
- "mcc": "334",
- "mnc": "030",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "Movistar/Pegaso"
+ "mcc": 467,
+ "mnc": 999,
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": 850,
+ "network": "Fix Line"
},
{
- "mcc": "334",
- "mnc": "090",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "NEXTEL"
+ "mcc": 467,
+ "mnc": 299,
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": 850,
+ "network": "Kangsung Net"
},
{
- "mcc": "334",
- "mnc": "010",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "NEXTEL"
+ "mcc": 467,
+ "mnc": 192,
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": 850,
+ "network": "Koryolink"
},
{
- "mcc": "334",
- "mnc": "01",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "NEXTEL"
+ "mcc": 294,
+ "mnc": 3,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "A1"
},
{
- "mcc": "334",
- "mnc": "09",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "NEXTEL"
+ "mcc": 294,
+ "mnc": 2,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "A1"
},
{
- "mcc": "334",
- "mnc": "070",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "Operadora Unefon SA de CV"
+ "mcc": 294,
+ "mnc": 299,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "Failed Calls"
},
{
- "mcc": "334",
- "mnc": "080",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "Operadora Unefon SA de CV"
+ "mcc": 259,
+ "mnc": 999,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "Fix Line"
},
{
- "mcc": "334",
- "mnc": "060",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "SAI PCS"
+ "mcc": 294,
+ "mnc": 999,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "Fix Line"
},
{
- "mcc": "334",
- "mnc": "020",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "TelCel/America Movil"
+ "mcc": 294,
+ "mnc": 299,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "LATRON"
},
{
- "mcc": "334",
- "mnc": "02",
- "iso": "mx",
- "country": "Mexico",
- "country_code": "52",
- "network": "TelCel/America Movil"
+ "mcc": 294,
+ "mnc": 4,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "Lycamobile"
},
{
- "mcc": "550",
- "mnc": "01",
- "iso": "fm",
- "country": "Micronesia",
- "country_code": "691",
- "network": "FSM Telecommunications Corp."
+ "mcc": 294,
+ "mnc": 11,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "Mobik"
},
{
- "mcc": "259",
- "mnc": "04",
- "iso": "md",
- "country": "Moldova",
- "country_code": "373",
- "network": "Eventis Mobile"
+ "mcc": 294,
+ "mnc": 299,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "Telekabel"
},
{
- "mcc": "259",
- "mnc": "03",
- "iso": "md",
- "country": "Moldova",
- "country_code": "373",
- "network": "Unite "
+ "mcc": 294,
+ "mnc": 1,
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": 389,
+ "network": "Telekom"
+ },
+ {
+ "mcc": 534,
+ "mnc": 299,
+ "iso": "mp",
+ "country": "Northern Mariana Islands",
+ "country_code": 1670,
+ "network": "Failed Calls"
},
{
- "mcc": "259",
- "mnc": "02",
- "iso": "md",
- "country": "Moldova",
- "country_code": "373",
- "network": "Moldcell"
+ "mcc": 534,
+ "mnc": 999,
+ "iso": "mp",
+ "country": "Northern Mariana Islands",
+ "country_code": 1670,
+ "network": "Fix Line"
},
{
- "mcc": "259",
- "mnc": "01",
- "iso": "md",
- "country": "Moldova",
- "country_code": "373",
- "network": "Orange"
+ "mcc": 242,
+ "mnc": 22,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Altibox Mobil"
},
{
- "mcc": "259",
- "mnc": "03",
- "iso": "md",
- "country": "Moldova",
- "country_code": "373",
- "network": "Unite "
+ "mcc": 242,
+ "mnc": 20,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "BANE NOR"
},
{
- "mcc": "259",
- "mnc": "99",
- "iso": "md",
- "country": "Moldova",
- "country_code": "373",
- "network": "Unite "
+ "mcc": 242,
+ "mnc": 21,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "BANE NOR"
},
{
- "mcc": "259",
- "mnc": "05",
- "iso": "md",
- "country": "Moldova",
- "country_code": "373",
- "network": "Unite "
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "bigblu"
},
{
- "mcc": "212",
- "mnc": "10",
- "iso": "mc",
- "country": "Monaco",
- "country_code": "377",
- "network": "Monaco Telecom"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Chilimobil"
},
{
- "mcc": "212",
- "mnc": "01",
- "iso": "mc",
- "country": "Monaco",
- "country_code": "377",
- "network": "Monaco Telecom"
+ "mcc": 242,
+ "mnc": 9,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Com4"
},
{
- "mcc": "428",
- "mnc": "98",
- "iso": "mn",
- "country": "Mongolia",
- "country_code": "976",
- "network": "G-Mobile Corporation Ltd"
+ "mcc": 242,
+ "mnc": 15,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "eRate"
},
{
- "mcc": "428",
- "mnc": "99",
- "iso": "mn",
- "country": "Mongolia",
- "country_code": "976",
- "network": "Mobicom"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Failed Calls"
},
{
- "mcc": "428",
- "mnc": "91",
- "iso": "mn",
- "country": "Mongolia",
- "country_code": "976",
- "network": "Skytel Co. Ltd"
+ "mcc": 242,
+ "mnc": 999,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Fix Line"
},
{
- "mcc": "428",
- "mnc": "00",
- "iso": "mn",
- "country": "Mongolia",
- "country_code": "976",
- "network": "Skytel Co. Ltd"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "GlobalConnect"
},
{
- "mcc": "428",
- "mnc": "88",
- "iso": "mn",
- "country": "Mongolia",
- "country_code": "976",
- "network": "Unitel"
+ "mcc": 242,
+ "mnc": 14,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "ICE"
},
{
- "mcc": "297",
- "mnc": "03",
- "iso": "me",
- "country": "Montenegro",
- "country_code": "382",
- "network": "Mtel"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "intility"
},
{
- "mcc": "297",
- "mnc": "02",
- "iso": "me",
- "country": "Montenegro",
- "country_code": "382",
- "network": "Telekom / T-mobile"
+ "mcc": 242,
+ "mnc": 16,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Iristel"
},
{
- "mcc": "297",
- "mnc": "01",
- "iso": "me",
- "country": "Montenegro",
- "country_code": "382",
- "network": "Telenor"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "JetNett"
},
{
- "mcc": "354",
- "mnc": "860",
- "iso": "ms",
- "country": "Montserrat",
- "country_code": "1664",
- "network": "Cable & Wireless "
+ "mcc": 242,
+ "mnc": 23,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Lycamobile"
},
{
- "mcc": "604",
- "mnc": "04",
- "iso": "ma",
- "country": "Morocco",
- "country_code": "212",
- "network": "Al Houria Telecom"
+ "mcc": 242,
+ "mnc": 5,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Network Norway"
},
{
- "mcc": "604",
- "mnc": "99",
- "iso": "ma",
- "country": "Morocco",
- "country_code": "212",
- "network": "Al Houria Telecom"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "NextGenTel"
},
{
- "mcc": "604",
- "mnc": "01",
- "iso": "ma",
- "country": "Morocco",
- "country_code": "212",
- "network": "IAM"
+ "mcc": 242,
+ "mnc": 10,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Nkom"
},
{
- "mcc": "604",
- "mnc": "06",
- "iso": "ma",
- "country": "Morocco",
- "country_code": "212",
- "network": "IAM"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Nodnett"
},
{
- "mcc": "604",
- "mnc": "02",
- "iso": "ma",
- "country": "Morocco",
- "country_code": "212",
- "network": "inwi"
+ "mcc": 242,
+ "mnc": 6,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "ICE"
},
{
- "mcc": "604",
- "mnc": "05",
- "iso": "ma",
- "country": "Morocco",
- "country_code": "212",
- "network": "inwi"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Puzzel"
},
{
- "mcc": "604",
- "mnc": "00",
- "iso": "ma",
- "country": "Morocco",
- "country_code": "212",
- "network": "Orange"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Sierra Wireless"
},
{
- "mcc": "643",
- "mnc": "03",
- "iso": "mz",
- "country": "Mozambique",
- "country_code": "258",
- "network": "Movitel"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Svea"
},
{
- "mcc": "643",
- "mnc": "01",
- "iso": "mz",
- "country": "Mozambique",
- "country_code": "258",
- "network": "TMCEL"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Telavox"
},
{
- "mcc": "643",
- "mnc": "04",
- "iso": "mz",
- "country": "Mozambique",
- "country_code": "258",
- "network": "Vodacom"
+ "mcc": 242,
+ "mnc": 12,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Telenor"
},
{
- "mcc": "414",
- "mnc": "999",
- "iso": "mm",
- "country": "Myanmar",
- "country_code": "95",
- "network": "Fix Line (Myanmar"
+ "mcc": 242,
+ "mnc": 1,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Telenor"
},
{
- "mcc": "414",
- "mnc": "01",
- "iso": "mm",
- "country": "Myanmar",
- "country_code": "95",
- "network": "Myanmar Post & Teleco."
+ "mcc": 242,
+ "mnc": 8,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Telia / NetCom"
},
{
- "mcc": "414",
- "mnc": "09",
- "iso": "mm",
- "country": "Myanmar",
- "country_code": "95",
- "network": "Mytel (Myanmar"
+ "mcc": 242,
+ "mnc": 2,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "Telia / NetCom"
},
{
- "mcc": "414",
- "mnc": "05",
- "iso": "mm",
- "country": "Myanmar",
- "country_code": "95",
- "network": "Oreedoo"
+ "mcc": 242,
+ "mnc": 299,
+ "iso": "no",
+ "country": "Norway",
+ "country_code": 47,
+ "network": "unifon"
},
{
- "mcc": "414",
- "mnc": "06",
- "iso": "mm",
- "country": "Myanmar",
- "country_code": "95",
- "network": "Telenor"
+ "mcc": 422,
+ "mnc": 299,
+ "iso": "om",
+ "country": "Oman",
+ "country_code": 968,
+ "network": "Failed Calls"
},
{
- "mcc": "649",
- "mnc": "299",
- "iso": "na",
- "country": "Namibia",
- "country_code": "264",
- "network": "Demshi"
+ "mcc": 422,
+ "mnc": 999,
+ "iso": "om",
+ "country": "Oman",
+ "country_code": 968,
+ "network": "Fix Line"
},
{
- "mcc": "649",
- "mnc": "01",
- "iso": "na",
- "country": "Namibia",
- "country_code": "264",
- "network": "MTC"
+ "mcc": 422,
+ "mnc": 2,
+ "iso": "om",
+ "country": "Oman",
+ "country_code": 968,
+ "network": "Omantel Mobile"
},
{
- "mcc": "649",
- "mnc": "02",
- "iso": "na",
- "country": "Namibia",
- "country_code": "264",
- "network": "Switch/Nam. Telec."
+ "mcc": 422,
+ "mnc": 3,
+ "iso": "om",
+ "country": "Oman",
+ "country_code": 968,
+ "network": "Ooredoo / Nawras"
},
{
- "mcc": "649",
- "mnc": "03",
- "iso": "na",
- "country": "Namibia",
- "country_code": "264",
- "network": "TN Mobile"
+ "mcc": 410,
+ "mnc": 299,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
+ "network": "Failed Calls"
},
{
- "mcc": "429",
- "mnc": "999",
- "iso": "np",
- "country": "Nepal",
- "country_code": "977",
+ "mcc": 410,
+ "mnc": 999,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
"network": "Fix Line"
},
{
- "mcc": "429",
- "mnc": "02",
- "iso": "np",
- "country": "Nepal",
- "country_code": "977",
- "network": "Ncell"
+ "mcc": 410,
+ "mnc": 7,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
+ "network": "Jazz"
},
{
- "mcc": "429",
- "mnc": "01",
- "iso": "np",
- "country": "Nepal",
- "country_code": "977",
- "network": "NT Mobile / Namaste"
+ "mcc": 410,
+ "mnc": 1,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
+ "network": "Jazz"
},
{
- "mcc": "429",
- "mnc": "04",
- "iso": "np",
- "country": "Nepal",
- "country_code": "977",
- "network": "Smart Cell"
+ "mcc": 410,
+ "mnc": 5,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
+ "network": "SCOM"
},
{
- "mcc": "204",
- "mnc": "14",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "6GMOBILE BV"
+ "mcc": 410,
+ "mnc": 6,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
+ "network": "Telenor"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "88 mobile"
+ "mcc": 410,
+ "mnc": 3,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
+ "network": "Ufone"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "AGMS"
+ "mcc": 410,
+ "mnc": 299,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
+ "network": "Warid"
},
{
- "mcc": "204",
- "mnc": "30",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "ASPIDER Solutions"
+ "mcc": 410,
+ "mnc": 4,
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": 92,
+ "network": "Zong"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Belcentrale"
+ "mcc": 552,
+ "mnc": 299,
+ "iso": "pw",
+ "country": "Palau",
+ "country_code": 680,
+ "network": "Failed Calls"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "BodyTrace"
+ "mcc": 552,
+ "mnc": 999,
+ "iso": "pw",
+ "country": "Palau",
+ "country_code": 680,
+ "network": "Fix Line"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Combird Mobile"
+ "mcc": 552,
+ "mnc": 99,
+ "iso": "pw",
+ "country": "Palau",
+ "country_code": 680,
+ "network": "Palau Mobile"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Dean Mobile"
+ "mcc": 552,
+ "mnc": 1,
+ "iso": "pw",
+ "country": "Palau",
+ "country_code": 680,
+ "network": "PalauCel"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Eazit"
+ "mcc": 552,
+ "mnc": 2,
+ "iso": "pw",
+ "country": "Palau",
+ "country_code": 680,
+ "network": "PT Waves"
},
{
- "mcc": "204",
- "mnc": "05",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "ElephantTalk"
+ "mcc": 425,
+ "mnc": 299,
+ "iso": "ps",
+ "country": "Palestinian Territory",
+ "country_code": 970,
+ "network": "Failed Calls"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "EziMobile"
+ "mcc": 425,
+ "mnc": 999,
+ "iso": "ps",
+ "country": "Palestinian Territory",
+ "country_code": 970,
+ "network": "Fix Line"
},
{
- "mcc": "204",
- "mnc": "999",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Fix Line"
+ "mcc": 425,
+ "mnc": 5,
+ "iso": "ps",
+ "country": "Palestinian Territory",
+ "country_code": 970,
+ "network": "Jawwal"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "interactive digital media / IDM"
+ "mcc": 425,
+ "mnc": 6,
+ "iso": "ps",
+ "country": "Palestinian Territory",
+ "country_code": 970,
+ "network": "Ooredoo"
},
{
- "mcc": "204",
- "mnc": "17",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Intercity Mobile Communications BV"
+ "mcc": 714,
+ "mnc": 1,
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": 507,
+ "network": "+Movil"
},
{
- "mcc": "204",
- "mnc": "00",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Intovoice"
+ "mcc": 714,
+ "mnc": 3,
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": 507,
+ "network": "Claro"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "KeenMobile"
+ "mcc": 714,
+ "mnc": 4,
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": 507,
+ "network": "Digicel"
},
{
- "mcc": "204",
- "mnc": "23",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "KORE"
+ "mcc": 714,
+ "mnc": 299,
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": 507,
+ "network": "Failed Calls"
},
{
- "mcc": "204",
- "mnc": "08",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "KPN"
+ "mcc": 714,
+ "mnc": 999,
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": 507,
+ "network": "Fix Line"
},
{
- "mcc": "204",
- "mnc": "10",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "KPN"
+ "mcc": 714,
+ "mnc": 20,
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": 507,
+ "network": "Movistar"
},
{
- "mcc": "204",
- "mnc": "69",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "KPN"
+ "mcc": 714,
+ "mnc": 2,
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": 507,
+ "network": "Movistar"
},
{
- "mcc": "204",
- "mnc": "12",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "KPN"
+ "mcc": 537,
+ "mnc": 1,
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": 675,
+ "network": "BeMobile Vodafone"
},
{
- "mcc": "204",
- "mnc": "08",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "KPN"
+ "mcc": 537,
+ "mnc": 2,
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": 675,
+ "network": "Citifon"
},
{
- "mcc": "204",
- "mnc": "12",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "KPN/Telfort"
+ "mcc": 537,
+ "mnc": 3,
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": 675,
+ "network": "Digicel"
},
{
- "mcc": "204",
- "mnc": "27",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "L-mobi"
+ "mcc": 537,
+ "mnc": 299,
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": 675,
+ "network": "DIGIVOIP"
},
{
- "mcc": "204",
- "mnc": "28",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Lancelot"
+ "mcc": 537,
+ "mnc": 299,
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": 675,
+ "network": "Failed Calls"
},
{
- "mcc": "204",
- "mnc": "98",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Lancelot"
+ "mcc": 537,
+ "mnc": 999,
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": 675,
+ "network": "Fix Line"
},
{
- "mcc": "204",
- "mnc": "09",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Lycamobile"
+ "mcc": 744,
+ "mnc": 2,
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": 595,
+ "network": "Claro"
},
{
- "mcc": "204",
- "mnc": "63",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "MessageBird"
+ "mcc": 744,
+ "mnc": 299,
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": 595,
+ "network": "Failed Calls"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "mGage"
+ "mcc": 744,
+ "mnc": 999,
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": 595,
+ "network": "Fix Line"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Motto"
+ "mcc": 744,
+ "mnc": 3,
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": 595,
+ "network": "Personal"
},
{
- "mcc": "204",
- "mnc": "07",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Move / Teleena"
+ "mcc": 744,
+ "mnc": 4,
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": 595,
+ "network": "Tigo"
},
{
- "mcc": "204",
- "mnc": "06",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Vectone Mobile"
+ "mcc": 744,
+ "mnc": 1,
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": 595,
+ "network": "VOX"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Okta8"
+ "mcc": 716,
+ "mnc": 70,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Claro"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Premium Routing"
+ "mcc": 716,
+ "mnc": 20,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Claro"
},
{
- "mcc": "204",
- "mnc": "24",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Private Mobility"
+ "mcc": 716,
+ "mnc": 10,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Claro"
},
{
- "mcc": "204",
- "mnc": "21",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "ProRail"
+ "mcc": 716,
+ "mnc": 299,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Dolphin"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Redworks"
+ "mcc": 716,
+ "mnc": 17,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Entel"
},
{
- "mcc": "204",
- "mnc": "26",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "SpeakUp"
+ "mcc": 716,
+ "mnc": 299,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Failed Calls"
},
{
- "mcc": "204",
- "mnc": "98",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "T-Mobile"
+ "mcc": 716,
+ "mnc": 999,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Fix Line"
},
{
- "mcc": "204",
- "mnc": "02",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "T-Mobile"
+ "mcc": 716,
+ "mnc": 6,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Movistar"
},
{
- "mcc": "204",
- "mnc": "20",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "T-Mobile"
+ "mcc": 716,
+ "mnc": 7,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Entel"
},
{
- "mcc": "204",
- "mnc": "16",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "T-Mobile"
+ "mcc": 716,
+ "mnc": 30,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Tuyo"
},
{
- "mcc": "204",
- "mnc": "20",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "T-mobile/former Orange"
+ "mcc": 716,
+ "mnc": 15,
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": 51,
+ "network": "Viettel"
},
{
- "mcc": "204",
- "mnc": "02",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Tele2"
+ "mcc": 515,
+ "mnc": 66,
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": 63,
+ "network": "DITO"
},
{
- "mcc": "204",
- "mnc": "29",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Tismi"
+ "mcc": 515,
+ "mnc": 299,
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": 63,
+ "network": "Failed Calls"
},
{
- "mcc": "204",
- "mnc": "33",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Truphone"
+ "mcc": 515,
+ "mnc": 999,
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": 63,
+ "network": "Fix Line"
},
{
- "mcc": "204",
- "mnc": "68",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Unify Mobile"
+ "mcc": 515,
+ "mnc": 1,
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": 63,
+ "network": "Globe"
},
{
- "mcc": "204",
- "mnc": "299",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Vectone Mobile"
+ "mcc": 515,
+ "mnc": 2,
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": 63,
+ "network": "Globe"
},
{
- "mcc": "204",
- "mnc": "04",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Vodafone"
+ "mcc": 515,
+ "mnc": 3,
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": 63,
+ "network": "Smart"
},
{
- "mcc": "204",
- "mnc": "03",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Voiceworks Mobile"
+ "mcc": 515,
+ "mnc": 5,
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": 63,
+ "network": "Sun Cellular"
},
{
- "mcc": "204",
- "mnc": "15",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Ziggo"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "3S"
},
{
- "mcc": "204",
- "mnc": "18",
- "iso": "nl",
- "country": "Netherlands",
- "country_code": "31",
- "network": "Ziggo Services"
+ "mcc": 260,
+ "mnc": 15,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Aero2"
},
{
- "mcc": "362",
- "mnc": "630",
- "iso": "an",
- "country": "Netherlands Antilles",
- "country_code": "599",
- "network": "Cingular Wireless"
+ "mcc": 260,
+ "mnc": 4,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Aero2"
},
{
- "mcc": "362",
- "mnc": "51",
- "iso": "an",
- "country": "Netherlands Antilles",
- "country_code": "599",
- "network": "TELCELL GSM"
+ "mcc": 260,
+ "mnc": 17,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Aero2"
},
{
- "mcc": "362",
- "mnc": "91",
- "iso": "an",
- "country": "Netherlands Antilles",
- "country_code": "599",
- "network": "SETEL GSM"
+ "mcc": 260,
+ "mnc": 16,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Aero2"
},
{
- "mcc": "362",
- "mnc": "951",
- "iso": "an",
- "country": "Netherlands Antilles",
- "country_code": "599",
- "network": "UTS Wireless"
+ "mcc": 260,
+ "mnc": 48,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Agile Telecom"
},
{
- "mcc": "546",
- "mnc": "01",
- "iso": "nc",
- "country": "New Caledonia",
- "country_code": "687",
- "network": "OPT Mobilis"
+ "mcc": 260,
+ "mnc": 18,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "AMD Telecom"
},
{
- "mcc": "530",
- "mnc": "28",
- "iso": "nz",
- "country": "New Zealand",
- "country_code": "64",
- "network": "2degrees"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Benemen"
},
{
- "mcc": "530",
- "mnc": "999",
- "iso": "nz",
- "country": "New Zealand",
- "country_code": "64",
- "network": "Fix Line"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "BSG"
},
{
- "mcc": "530",
- "mnc": "05",
- "iso": "nz",
- "country": "New Zealand",
- "country_code": "64",
- "network": "Spark Mobile"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Caritas Laczy"
},
{
- "mcc": "530",
- "mnc": "02",
- "iso": "nz",
- "country": "New Zealand",
- "country_code": "64",
- "network": "Spark Mobile"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Cludo"
},
{
- "mcc": "530",
- "mnc": "04",
- "iso": "nz",
- "country": "New Zealand",
- "country_code": "64",
- "network": "Telstra"
+ "mcc": 260,
+ "mnc": 32,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Compatel"
},
{
- "mcc": "530",
- "mnc": "24",
- "iso": "nz",
- "country": "New Zealand",
- "country_code": "64",
- "network": "2degrees"
+ "mcc": 260,
+ "mnc": 12,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Cyfrowy Polsat"
},
{
- "mcc": "530",
- "mnc": "01",
- "iso": "nz",
- "country": "New Zealand",
- "country_code": "64",
- "network": "Vodafone"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "e-Telko"
},
{
- "mcc": "530",
- "mnc": "03",
- "iso": "nz",
- "country": "New Zealand",
- "country_code": "64",
- "network": "Walker Wireless Ltd."
+ "mcc": 260,
+ "mnc": 41,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "EZ Mobile"
},
{
- "mcc": "710",
- "mnc": "21",
- "iso": "ni",
- "country": "Nicaragua",
- "country_code": "505",
- "network": "Empresa Nicaraguense de Telecomunicaciones SA (ENITEL)"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Failed Calls"
},
{
- "mcc": "710",
- "mnc": "999",
- "iso": "ni",
- "country": "Nicaragua",
- "country_code": "505",
+ "mcc": 260,
+ "mnc": 999,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
"network": "Fix Line"
},
{
- "mcc": "710",
- "mnc": "30",
- "iso": "ni",
- "country": "Nicaragua",
- "country_code": "505",
- "network": "Movistar"
- },
- {
- "mcc": "710",
- "mnc": "73",
- "iso": "ni",
- "country": "Nicaragua",
- "country_code": "505",
- "network": "Claro"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "I.M. Consulting"
},
{
- "mcc": "614",
- "mnc": "02",
- "iso": "ne",
- "country": "Niger",
- "country_code": "227",
- "network": "Airtel"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Inea"
},
{
- "mcc": "614",
- "mnc": "03",
- "iso": "ne",
- "country": "Niger",
- "country_code": "227",
- "network": "Moov"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "IZZI"
},
{
- "mcc": "614",
- "mnc": "01",
- "iso": "ne",
- "country": "Niger",
- "country_code": "227",
- "network": "Niger Telecoms"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "JMDI J. Maleszko"
},
{
- "mcc": "614",
- "mnc": "04",
- "iso": "ne",
- "country": "Niger",
- "country_code": "227",
- "network": "Orange"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Klucz Mobile"
},
{
- "mcc": "621",
- "mnc": "60",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "9mobile"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "lajt mobile"
},
{
- "mcc": "621",
- "mnc": "20",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "Airtel"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "LoVo"
},
{
- "mcc": "621",
- "mnc": "299",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "Alpha Technologies"
+ "mcc": 260,
+ "mnc": 9,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Lycamobile"
},
{
- "mcc": "621",
- "mnc": "50",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "Glo Mobile"
+ "mcc": 260,
+ "mnc": 49,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Messagebird"
},
{
- "mcc": "621",
- "mnc": "30",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "MTN"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Metro Mobile"
},
{
- "mcc": "621",
- "mnc": "40",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "ntel"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Mobile Vikings"
},
{
- "mcc": "621",
- "mnc": "27",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "Smile"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Mobiledata"
},
{
- "mcc": "621",
- "mnc": "99",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "Starcomms"
+ "mcc": 260,
+ "mnc": 42,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "MobiWeb"
},
{
- "mcc": "621",
- "mnc": "01",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "Visafone"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Moja GSM"
},
{
- "mcc": "621",
- "mnc": "25",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "Visafone"
+ "mcc": 260,
+ "mnc": 13,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Move"
},
{
- "mcc": "621",
- "mnc": "299",
- "iso": "ng",
- "country": "Nigeria",
- "country_code": "234",
- "network": "Zodafones"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "multiMOBILE"
},
{
- "mcc": "555",
- "mnc": "01",
- "iso": "nu",
- "country": "Niue",
- "country_code": "683",
- "network": "Niue Telecom"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Nasza Wizja"
},
{
- "mcc": "467",
- "mnc": "299",
- "iso": "kp",
- "country": "North Korea",
- "country_code": "850",
- "network": "Failed Calls"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "NAU Mobile"
},
{
- "mcc": "467",
- "mnc": "299",
- "iso": "kp",
- "country": "North Korea",
- "country_code": "850",
- "network": "Kangsung Net"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "nc+ Mobile"
},
{
- "mcc": "467",
- "mnc": "192",
- "iso": "kp",
- "country": "North Korea",
- "country_code": "850",
- "network": "Koryolink"
+ "mcc": 260,
+ "mnc": 19,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "NetBalt"
},
{
- "mcc": "467",
- "mnc": "192",
- "iso": "kp",
- "country": "North Korea",
- "country_code": "850",
- "network": "Koryolink"
+ "mcc": 260,
+ "mnc": 7,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Netia"
},
{
- "mcc": "467",
- "mnc": "193",
- "iso": "kp",
- "country": "North Korea",
- "country_code": "850",
- "network": "Sun Net"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Next Mobile"
},
{
- "mcc": "294",
- "mnc": "02",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "A1"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "NIMBOW"
},
{
- "mcc": "294",
- "mnc": "03",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "A1"
+ "mcc": 260,
+ "mnc": 27,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Ntel Solutions"
},
{
- "mcc": "294",
- "mnc": "75",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "A1"
+ "mcc": 260,
+ "mnc": 5,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Orange"
},
{
- "mcc": "294",
- "mnc": "299",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "Failed Calls"
+ "mcc": 260,
+ "mnc": 3,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Orange"
},
{
- "mcc": "294",
- "mnc": "299",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "LATRON"
+ "mcc": 260,
+ "mnc": 35,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "PKP"
},
{
- "mcc": "294",
- "mnc": "04",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "Lycamobile"
+ "mcc": 260,
+ "mnc": 6,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Play"
},
{
- "mcc": "294",
- "mnc": "11",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "Mobik"
+ "mcc": 260,
+ "mnc": 98,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Play"
},
{
- "mcc": "294",
- "mnc": "02",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "A1"
+ "mcc": 260,
+ "mnc": 11,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Plus"
},
{
- "mcc": "294",
- "mnc": "299",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "Telekabel"
+ "mcc": 260,
+ "mnc": 1,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Plus"
},
{
- "mcc": "294",
- "mnc": "01",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "Telekom"
+ "mcc": 260,
+ "mnc": 97,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Politechnika Lodzka Uczelniane"
},
{
- "mcc": "294",
- "mnc": "03",
- "iso": "mk",
- "country": "North Macedonia",
- "country_code": "389",
- "network": "VIP Mobile"
+ "mcc": 260,
+ "mnc": 90,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Polska Spolka Gazownictwa"
},
{
- "mcc": "242",
- "mnc": "22",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Altibox Mobil"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Polvoice"
},
{
- "mcc": "242",
- "mnc": "21",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "BANE NOR"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Pomagacz"
},
{
- "mcc": "242",
- "mnc": "20",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "BANE NOR"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Premium Mobile"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "bigblu"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Premium Numbers"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Chilimobil"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "SAT FILM"
},
{
- "mcc": "242",
- "mnc": "09",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Com4"
+ "mcc": 260,
+ "mnc": 14,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Move"
},
{
- "mcc": "242",
- "mnc": "15",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "eRate"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "SGT"
},
{
- "mcc": "242",
- "mnc": "999",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Fix Line"
+ "mcc": 260,
+ "mnc": 47,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "SMSHIGHWAY"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "GlobalConnect"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Softelnet"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Ibidium"
+ "mcc": 260,
+ "mnc": 34,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "T-Mobile"
},
{
- "mcc": "242",
- "mnc": "14",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "ICE"
+ "mcc": 260,
+ "mnc": 2,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "T-Mobile"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "intility"
+ "mcc": 260,
+ "mnc": 10,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "T-Mobile"
},
{
- "mcc": "242",
- "mnc": "16",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Iristel"
+ "mcc": 260,
+ "mnc": 14,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Telco Leaders"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "JetNett"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Tele GO"
},
{
- "mcc": "242",
- "mnc": "23",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Lycamobile"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "TeleCube"
},
{
- "mcc": "242",
- "mnc": "05",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Network Norway"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Telenabler"
},
{
- "mcc": "242",
- "mnc": "05",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Altibox Mobil"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "TELGAM"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "NextGenTel"
+ "mcc": 260,
+ "mnc": 20,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Tismi"
},
{
- "mcc": "242",
- "mnc": "10",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Nkom"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "TOYAmobilna"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Nodnett"
+ "mcc": 260,
+ "mnc": 22,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Twilio"
},
{
- "mcc": "242",
- "mnc": "06",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "ICE"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "UPC"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Puzzel"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Vectra"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Sierra Wireless"
+ "mcc": 260,
+ "mnc": 45,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Virgin Mobile"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Svea"
+ "mcc": 260,
+ "mnc": 45,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Virgin Mobile"
},
{
- "mcc": "242",
- "mnc": "08",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "TDC Mobil A/S"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Vonage"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Telavox"
+ "mcc": 260,
+ "mnc": 39,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "Voxbone / Bandwidth"
},
{
- "mcc": "242",
- "mnc": "04",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Tele2"
+ "mcc": 260,
+ "mnc": 299,
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": 48,
+ "network": "w naszej Rodzinie"
},
{
- "mcc": "242",
- "mnc": "12",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Telenor"
+ "mcc": 268,
+ "mnc": 299,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "Failed Calls"
},
{
- "mcc": "242",
- "mnc": "01",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Telenor"
+ "mcc": 268,
+ "mnc": 999,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "Fix Line"
},
{
- "mcc": "242",
- "mnc": "03",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Teletopia"
+ "mcc": 268,
+ "mnc": 4,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "Lycamobile"
},
{
- "mcc": "242",
- "mnc": "08",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Telia / NetCom"
+ "mcc": 268,
+ "mnc": 8,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "MEO"
},
{
- "mcc": "242",
- "mnc": "02",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Telia / NetCom"
+ "mcc": 268,
+ "mnc": 6,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "MEO"
},
{
- "mcc": "242",
- "mnc": "299",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "unifon"
+ "mcc": 268,
+ "mnc": 80,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "MEO"
},
{
- "mcc": "242",
- "mnc": "017",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Ventelo AS"
+ "mcc": 268,
+ "mnc": 3,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "NOS"
},
{
- "mcc": "242",
- "mnc": "07",
- "iso": "no",
- "country": "Norway",
- "country_code": "47",
- "network": "Ventelo AS"
+ "mcc": 268,
+ "mnc": 93,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "NOS"
},
{
- "mcc": "422",
- "mnc": "03",
- "iso": "om",
- "country": "Oman",
- "country_code": "968",
- "network": "Nawras"
+ "mcc": 268,
+ "mnc": 299,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "NOWO"
},
{
- "mcc": "422",
- "mnc": "02",
- "iso": "om",
- "country": "Oman",
- "country_code": "968",
- "network": "Oman Mobile/GTO"
+ "mcc": 268,
+ "mnc": 299,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "Oni"
},
{
- "mcc": "410",
- "mnc": "299",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "Failed Calls"
+ "mcc": 410,
+ "mnc": 299,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "Premium Numbers"
},
{
- "mcc": "410",
- "mnc": "08",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "Instaphone"
+ "mcc": 268,
+ "mnc": 1,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "Vodafone"
},
{
- "mcc": "410",
- "mnc": "01",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "Jazz"
+ "mcc": 268,
+ "mnc": 91,
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": 351,
+ "network": "Vodafone"
},
{
- "mcc": "410",
- "mnc": "07",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "Jazz"
+ "mcc": 427,
+ "mnc": 299,
+ "iso": "qa",
+ "country": "Qatar",
+ "country_code": 974,
+ "network": "Failed Calls"
},
{
- "mcc": "410",
- "mnc": "05",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "SCOM"
+ "mcc": 427,
+ "mnc": 999,
+ "iso": "qa",
+ "country": "Qatar",
+ "country_code": 974,
+ "network": "Fix Line"
},
{
- "mcc": "410",
- "mnc": "06",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "Telenor"
+ "mcc": 427,
+ "mnc": 1,
+ "iso": "qa",
+ "country": "Qatar",
+ "country_code": 974,
+ "network": "Ooredoo"
},
{
- "mcc": "410",
- "mnc": "03",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "Ufone"
+ "mcc": 427,
+ "mnc": 6,
+ "iso": "qa",
+ "country": "Qatar",
+ "country_code": 974,
+ "network": "Ooredoo"
},
{
- "mcc": "410",
- "mnc": "299",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "Warid"
+ "mcc": 427,
+ "mnc": 2,
+ "iso": "qa",
+ "country": "Qatar",
+ "country_code": 974,
+ "network": "Vodafone"
},
{
- "mcc": "410",
- "mnc": "04",
- "iso": "pk",
- "country": "Pakistan",
- "country_code": "92",
- "network": "Zong"
+ "mcc": 647,
+ "mnc": 299,
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": 262,
+ "network": "Failed Calls"
},
{
- "mcc": "552",
- "mnc": "80",
- "iso": "pw",
- "country": "Palau",
- "country_code": "680",
- "network": "Palau Mobile Corp. (PMC) (Palau"
+ "mcc": 647,
+ "mnc": 999,
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": 262,
+ "network": "Fix Line"
},
{
- "mcc": "552",
- "mnc": "01",
- "iso": "pw",
- "country": "Palau",
- "country_code": "680",
- "network": "Palau National Communications Corp. (PNCC) (Palau"
+ "mcc": 647,
+ "mnc": 2,
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": 262,
+ "network": "Only"
},
{
- "mcc": "552",
- "mnc": "02",
- "iso": "pw",
- "country": "Palau",
- "country_code": "680",
- "network": "PECI/PalauTel (Palau"
+ "mcc": 647,
+ "mnc": 3,
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": 262,
+ "network": "Only"
},
{
- "mcc": "425",
- "mnc": "05",
- "iso": "ps",
- "country": "Palestinian Territory",
- "country_code": "970",
- "network": "Jawwal"
+ "mcc": 647,
+ "mnc": 0,
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": 262,
+ "network": "Orange"
},
{
- "mcc": "425",
- "mnc": "06",
- "iso": "ps",
- "country": "Palestinian Territory",
- "country_code": "970",
- "network": "Ooredoo"
+ "mcc": 647,
+ "mnc": 4,
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": 262,
+ "network": "ZEOP Mobile"
},
{
- "mcc": "714",
- "mnc": "01",
- "iso": "pa",
- "country": "Panama",
- "country_code": "507",
- "network": "Cable & W./Mas Movil"
+ "mcc": 226,
+ "mnc": 5,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Digi Mobil"
},
{
- "mcc": "714",
- "mnc": "03",
- "iso": "pa",
- "country": "Panama",
- "country_code": "507",
- "network": "Claro"
+ "mcc": 226,
+ "mnc": 299,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Failed Calls"
},
{
- "mcc": "714",
- "mnc": "04",
- "iso": "pa",
- "country": "Panama",
- "country_code": "507",
- "network": "Digicel"
+ "mcc": 226,
+ "mnc": 999,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Fix Line"
},
{
- "mcc": "714",
- "mnc": "999",
- "iso": "pa",
- "country": "Panama",
- "country_code": "507",
- "network": "Fix Line"
+ "mcc": 226,
+ "mnc": 299,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Iristel"
},
{
- "mcc": "714",
- "mnc": "020",
- "iso": "pa",
- "country": "Panama",
- "country_code": "507",
- "network": "Movistar"
+ "mcc": 226,
+ "mnc": 16,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Lycamobile"
},
{
- "mcc": "714",
- "mnc": "02",
- "iso": "pa",
- "country": "Panama",
- "country_code": "507",
- "network": "Movistar"
+ "mcc": 226,
+ "mnc": 10,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Orange"
},
{
- "mcc": "537",
- "mnc": "03",
- "iso": "pg",
- "country": "Papua New Guinea",
- "country_code": "675",
- "network": "Digicel"
+ "mcc": 226,
+ "mnc": 3,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Telekom"
},
{
- "mcc": "537",
- "mnc": "999",
- "iso": "pg",
- "country": "Papua New Guinea",
- "country_code": "675",
- "network": "Fix Line"
+ "mcc": 226,
+ "mnc": 2,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Telekom"
},
{
- "mcc": "537",
- "mnc": "02",
- "iso": "pg",
- "country": "Papua New Guinea",
- "country_code": "675",
- "network": "GreenCom PNG Ltd"
+ "mcc": 226,
+ "mnc": 1,
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": 40,
+ "network": "Vodafone"
},
{
- "mcc": "537",
- "mnc": "01",
- "iso": "pg",
- "country": "Papua New Guinea",
- "country_code": "675",
- "network": "Pacific Mobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Antares"
},
{
- "mcc": "744",
- "mnc": "02",
- "iso": "py",
- "country": "Paraguay",
- "country_code": "595",
- "network": "Claro/Hutchison"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Arktur"
},
{
- "mcc": "744",
- "mnc": "03",
- "iso": "py",
- "country": "Paraguay",
- "country_code": "595",
- "network": "Compa"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Astran"
},
{
- "mcc": "744",
- "mnc": "01",
- "iso": "py",
- "country": "Paraguay",
- "country_code": "595",
- "network": "Hola/VOX"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "ASVT"
},
{
- "mcc": "744",
- "mnc": "05",
- "iso": "py",
- "country": "Paraguay",
- "country_code": "595",
- "network": "TIM/Nucleo/Personal"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Aurora Telecom"
},
{
- "mcc": "744",
- "mnc": "04",
- "iso": "py",
- "country": "Paraguay",
- "country_code": "595",
- "network": "Tigo/Telecel"
+ "mcc": 250,
+ "mnc": 99,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Beeline"
},
{
- "mcc": "716",
- "mnc": "20",
- "iso": "pe",
- "country": "Peru",
- "country_code": "51",
- "network": "Claro /Amer.Mov./TIM"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Beliton"
},
{
- "mcc": "716",
- "mnc": "10",
- "iso": "pe",
- "country": "Peru",
- "country_code": "51",
- "network": "Claro /Amer.Mov./TIM"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "BIT-CENTR"
},
{
- "mcc": "716",
- "mnc": "02",
- "iso": "pe",
- "country": "Peru",
- "country_code": "51",
- "network": "GlobalStar"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Center 2M"
},
{
- "mcc": "716",
- "mnc": "01",
- "iso": "pe",
- "country": "Peru",
- "country_code": "51",
- "network": "GlobalStar"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Cifra 1"
},
{
- "mcc": "716",
- "mnc": "06",
- "iso": "pe",
- "country": "Peru",
- "country_code": "51",
- "network": "Movistar"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "CountryCom"
},
{
- "mcc": "716",
- "mnc": "07",
- "iso": "pe",
- "country": "Peru",
- "country_code": "51",
- "network": "Nextel"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "ECO Networks"
},
{
- "mcc": "716",
- "mnc": "17",
- "iso": "pe",
- "country": "Peru",
- "country_code": "51",
- "network": "Nextel"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Elemte"
},
{
- "mcc": "716",
- "mnc": "15",
- "iso": "pe",
- "country": "Peru",
- "country_code": "51",
- "network": "Viettel Mobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "ER-Telecom"
},
{
- "mcc": "515",
- "mnc": "999",
- "iso": "ph",
- "country": "Philippines",
- "country_code": "63",
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 250,
+ "mnc": 999,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
"network": "Fix Line"
},
{
- "mcc": "515",
- "mnc": "02",
- "iso": "ph",
- "country": "Philippines",
- "country_code": "63",
- "network": "Globe Telecom"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Gazprom Telecom"
},
{
- "mcc": "515",
- "mnc": "01",
- "iso": "ph",
- "country": "Philippines",
- "country_code": "63",
- "network": "Globe Telecom"
+ "mcc": 250,
+ "mnc": 48,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Global Telecom"
},
{
- "mcc": "515",
- "mnc": "88",
- "iso": "ph",
- "country": "Philippines",
- "country_code": "63",
- "network": "Next Mobile"
+ "mcc": 250,
+ "mnc": 55,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Glonass"
},
{
- "mcc": "515",
- "mnc": "18",
- "iso": "ph",
- "country": "Philippines",
- "country_code": "63",
- "network": "RED Mobile/Cure"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "GLONASS MOBILE"
},
{
- "mcc": "515",
- "mnc": "03",
- "iso": "ph",
- "country": "Philippines",
- "country_code": "63",
- "network": "Smart"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Integral"
},
{
- "mcc": "515",
- "mnc": "05",
- "iso": "ph",
- "country": "Philippines",
- "country_code": "63",
- "network": "SUN/Digitel"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Internod"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "3S"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Intersvyaz-2"
},
{
- "mcc": "260",
- "mnc": "04",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Aero2"
+ "mcc": 250,
+ "mnc": 34,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Krymtelecom"
},
{
- "mcc": "260",
- "mnc": "16",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Aero2"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "KvatroPlus"
},
{
- "mcc": "260",
- "mnc": "15",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Aero2"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Lardex"
},
{
- "mcc": "260",
- "mnc": "17",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Aero2"
+ "mcc": 250,
+ "mnc": 54,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Letai Mobile"
},
{
- "mcc": "260",
- "mnc": "17",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Aero2 SP"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Lycamobile"
},
{
- "mcc": "260",
- "mnc": "48",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Agile Telecom"
+ "mcc": 250,
+ "mnc": 57,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Matrix Mobile"
},
{
- "mcc": "260",
- "mnc": "18",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "AMD Telecom"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Media-Market"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Benemen"
+ "mcc": 250,
+ "mnc": 2,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Megafon"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "BSG"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Metro-Pei"
},
{
- "mcc": "260",
- "mnc": "38",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "CallFreedom Sp. z o.o."
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "MGTS"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Caritas Laczy"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Miatel"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Cludo"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "MOSTELECOM"
},
{
- "mcc": "260",
- "mnc": "32",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Compatel"
+ "mcc": 250,
+ "mnc": 35,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Motiv"
},
{
- "mcc": "260",
- "mnc": "12",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Cyfrowy Polsat"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "MSN Telekom"
},
{
- "mcc": "260",
- "mnc": "08",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "e-Telko"
+ "mcc": 250,
+ "mnc": 1,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "MTS"
},
{
- "mcc": "260",
- "mnc": "41",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "EZ Mobile"
+ "mcc": 250,
+ "mnc": 42,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "MTT"
},
{
- "mcc": "260",
- "mnc": "999",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Fix Line"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "NCI"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "I.M. Consulting"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "NETBYNET"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Inea"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "New Mobile Communications"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "IZZI"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "OBIT"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "JMDI J. Maleszko"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Orange Business Services"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Klucz Mobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "PIN"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "lajt mobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Plintron"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "LoVo"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Quantech"
},
{
- "mcc": "260",
- "mnc": "09",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Lycamobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "RECONN"
},
{
- "mcc": "260",
- "mnc": "49",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Messagebird"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Reteyl Innovatsii"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Metro Mobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Sberbank-Telecom"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Mobile Vikings"
+ "mcc": 250,
+ "mnc": 33,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "SEVTELECOM"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Mobiledata"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Sim Sim"
},
{
- "mcc": "260",
- "mnc": "42",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "MobiWeb"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Sintonik"
},
{
- "mcc": "260",
- "mnc": "16",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Mobyland"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Sky Networks"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Moja GSM"
+ "mcc": 250,
+ "mnc": 9,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Skylink"
},
{
- "mcc": "260",
- "mnc": "13",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Move"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "SkyNet"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "multiMOBILE"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Sonet"
},
{
- "mcc": "260",
- "mnc": "36",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Mundio Mobile Sp. z o.o."
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Sprint"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Nasza Wizja"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Start"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "NAU Mobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "SunSIM"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "nc+ Mobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Surgutneftegaz"
},
{
- "mcc": "260",
- "mnc": "19",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "NetBalt"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Svyazresurs-Mobile"
},
{
- "mcc": "260",
- "mnc": "07",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Netia"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Tander"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Next Mobile"
+ "mcc": 250,
+ "mnc": 12,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Tele2"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "NIMBOW"
+ "mcc": 250,
+ "mnc": 20,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Tele2"
},
{
- "mcc": "260",
- "mnc": "11",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "NORDISK Polska"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Tinkoff Mobile"
},
{
- "mcc": "260",
- "mnc": "27",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Ntel Solutions"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "TMT"
},
{
- "mcc": "260",
- "mnc": "03",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Orange"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "TransMobilCom"
},
{
- "mcc": "260",
- "mnc": "05",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Orange"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "TRASTEL"
},
{
- "mcc": "260",
- "mnc": "35",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "PKP"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "TRN-telecom"
},
{
- "mcc": "260",
- "mnc": "98",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Play"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "TTK"
},
{
- "mcc": "260",
- "mnc": "06",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Play"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "TTK-Svyaz"
},
{
- "mcc": "260",
- "mnc": "01",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Plus"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "TVE"
},
{
- "mcc": "260",
- "mnc": "11",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Plus"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "UnitTelecom"
},
{
- "mcc": "260",
- "mnc": "97",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Politechnika Lodzka Uczelniane"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Unycel"
},
{
- "mcc": "260",
- "mnc": "90",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Polska Spolka Gazownictwa"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Vainah Telecom"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Polvoice"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "ViKom"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Pomagacz"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Virgin Connect"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Premium Mobile"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Voentelecom"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "SAT FILM"
+ "mcc": 250,
+ "mnc": 77,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Glonass"
},
{
- "mcc": "260",
- "mnc": "14",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Move"
+ "mcc": 250,
+ "mnc": 60,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Volna Mobile"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "SGT"
+ "mcc": 250,
+ "mnc": 299,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "VTB Mobile"
},
{
- "mcc": "260",
- "mnc": "47",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "SMSHIGHWAY"
+ "mcc": 250,
+ "mnc": 32,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Win Mobile"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Softelnet"
+ "mcc": 250,
+ "mnc": 11,
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": 79,
+ "network": "Yota"
},
{
- "mcc": "260",
- "mnc": "34",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "T-Mobile"
+ "mcc": 635,
+ "mnc": 13,
+ "iso": "rw",
+ "country": "Rwanda",
+ "country_code": 250,
+ "network": "Airtel"
},
{
- "mcc": "260",
- "mnc": "02",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "T-Mobile"
+ "mcc": 635,
+ "mnc": 299,
+ "iso": "rw",
+ "country": "Rwanda",
+ "country_code": 250,
+ "network": "Failed Calls"
},
{
- "mcc": "260",
- "mnc": "10",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "T-Mobile"
+ "mcc": 635,
+ "mnc": 999,
+ "iso": "rw",
+ "country": "Rwanda",
+ "country_code": 250,
+ "network": "Fix Line"
},
{
- "mcc": "260",
- "mnc": "14",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Telco Leaders"
+ "mcc": 635,
+ "mnc": 10,
+ "iso": "rw",
+ "country": "Rwanda",
+ "country_code": 250,
+ "network": "MTN"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Tele GO"
+ "mcc": 658,
+ "mnc": 299,
+ "iso": "sh",
+ "country": "Saint Helena and Ascension and Tristan da Cunha",
+ "country_code": 290,
+ "network": "Failed Calls"
},
{
- "mcc": "260",
- "mnc": "15",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Aero2"
+ "mcc": 658,
+ "mnc": 999,
+ "iso": "sh",
+ "country": "Saint Helena and Ascension and Tristan da Cunha",
+ "country_code": 290,
+ "network": "Fix Line"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "TeleCube"
+ "mcc": 356,
+ "mnc": 70,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "Chippie"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Telenabler"
+ "mcc": 356,
+ "mnc": 70,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "Chippie"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "TELGAM"
+ "mcc": 356,
+ "mnc": 50,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "Digicel"
},
{
- "mcc": "260",
- "mnc": "20",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Tismi"
+ "mcc": 356,
+ "mnc": 50,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "Digicel"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "TOYAmobilna"
+ "mcc": 356,
+ "mnc": 299,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "Failed Calls"
},
{
- "mcc": "260",
- "mnc": "22",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Twilio"
+ "mcc": 356,
+ "mnc": 999,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "Fix Line"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "UPC"
+ "mcc": 356,
+ "mnc": 110,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "Flow"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Vectra"
+ "mcc": 356,
+ "mnc": 11,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "Flow"
},
{
- "mcc": "260",
- "mnc": "45",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Virgin Mobile"
+ "mcc": 356,
+ "mnc": 299,
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": 1869,
+ "network": "The Cable"
},
{
- "mcc": "260",
- "mnc": "45",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Virgin Mobile"
+ "mcc": 358,
+ "mnc": 5,
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": 1758,
+ "network": "Digicel"
},
{
- "mcc": "260",
- "mnc": "299",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Vonage"
+ "mcc": 358,
+ "mnc": 50,
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": 1758,
+ "network": "Digicel"
},
{
- "mcc": "260",
- "mnc": "39",
- "iso": "pl",
- "country": "Poland",
- "country_code": "48",
- "network": "Voxbone / Bandwidth"
+ "mcc": 358,
+ "mnc": 299,
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": 1758,
+ "network": "Failed Calls"
},
{
- "mcc": "268",
- "mnc": "999",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
+ "mcc": 358,
+ "mnc": 999,
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": 1758,
"network": "Fix Line"
},
{
- "mcc": "268",
- "mnc": "04",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "Lycamobile"
+ "mcc": 358,
+ "mnc": 110,
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": 1758,
+ "network": "Flow"
},
{
- "mcc": "268",
- "mnc": "80",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "MEO"
+ "mcc": 358,
+ "mnc": 11,
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": 1758,
+ "network": "Flow"
},
{
- "mcc": "268",
- "mnc": "08",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "MEO"
+ "mcc": 308,
+ "mnc": 1,
+ "iso": "pm",
+ "country": "Saint Pierre and Miquelon",
+ "country_code": 508,
+ "network": "Ameris"
},
{
- "mcc": "268",
- "mnc": "06",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "MEO"
+ "mcc": 308,
+ "mnc": 3,
+ "iso": "pm",
+ "country": "Saint Pierre and Miquelon",
+ "country_code": 508,
+ "network": "Ameris"
},
{
- "mcc": "268",
- "mnc": "03",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "NOS"
+ "mcc": 308,
+ "mnc": 299,
+ "iso": "pm",
+ "country": "Saint Pierre and Miquelon",
+ "country_code": 508,
+ "network": "Failed Calls"
},
{
- "mcc": "268",
- "mnc": "93",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "NOS"
+ "mcc": 308,
+ "mnc": 999,
+ "iso": "pm",
+ "country": "Saint Pierre and Miquelon",
+ "country_code": 508,
+ "network": "Fix Line"
},
{
- "mcc": "268",
- "mnc": "299",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "NOWO"
+ "mcc": 308,
+ "mnc": 2,
+ "iso": "pm",
+ "country": "Saint Pierre and Miquelon",
+ "country_code": 508,
+ "network": "Globaltel"
},
{
- "mcc": "268",
- "mnc": "299",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "Oni"
+ "mcc": 360,
+ "mnc": 50,
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": 1784,
+ "network": "Digicel"
},
{
- "mcc": "268",
- "mnc": "03",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "NOS"
+ "mcc": 360,
+ "mnc": 299,
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": 1784,
+ "network": "Failed Calls"
},
{
- "mcc": "268",
- "mnc": "07",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "NOS"
+ "mcc": 360,
+ "mnc": 999,
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": 1784,
+ "network": "Fix Line"
},
{
- "mcc": "268",
- "mnc": "91",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "Vodafone"
+ "mcc": 360,
+ "mnc": 110,
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": 1784,
+ "network": "Flow"
},
{
- "mcc": "268",
- "mnc": "01",
- "iso": "pt",
- "country": "Portugal",
- "country_code": "351",
- "network": "Vodafone"
+ "mcc": 549,
+ "mnc": 27,
+ "iso": "ws",
+ "country": "Samoa",
+ "country_code": 685,
+ "network": "BlueSky"
},
{
- "mcc": "330",
- "mnc": "11",
- "iso": "pr",
- "country": "Puerto Rico",
- "country_code": "",
- "network": "Puerto Rico Telephone Company Inc. (PRTC)"
+ "mcc": 549,
+ "mnc": 1,
+ "iso": "ws",
+ "country": "Samoa",
+ "country_code": 685,
+ "network": "Digicel"
},
{
- "mcc": "330",
- "mnc": "110",
- "iso": "pr",
- "country": "Puerto Rico",
- "country_code": "",
- "network": "Puerto Rico Telephone Company Inc. (PRTC)"
+ "mcc": 549,
+ "mnc": 299,
+ "iso": "ws",
+ "country": "Samoa",
+ "country_code": 685,
+ "network": "Failed Calls"
},
{
- "mcc": "427",
- "mnc": "01",
- "iso": "qa",
- "country": "Qatar",
- "country_code": "974",
- "network": "Ooredoo/Qtel"
+ "mcc": 549,
+ "mnc": 999,
+ "iso": "ws",
+ "country": "Samoa",
+ "country_code": 685,
+ "network": "Fix Line"
},
{
- "mcc": "427",
- "mnc": "02",
- "iso": "qa",
- "country": "Qatar",
- "country_code": "974",
- "network": "Vodafone"
+ "mcc": 292,
+ "mnc": 299,
+ "iso": "sm",
+ "country": "San Marino",
+ "country_code": 378,
+ "network": "Failed Calls"
},
{
- "mcc": "647",
- "mnc": "03",
- "iso": "re",
- "country": "Reunion",
- "country_code": "262",
- "network": "Only"
+ "mcc": 292,
+ "mnc": 999,
+ "iso": "sm",
+ "country": "San Marino",
+ "country_code": 378,
+ "network": "Fix Line"
},
{
- "mcc": "647",
- "mnc": "02",
- "iso": "re",
- "country": "Reunion",
- "country_code": "262",
- "network": "Only"
+ "mcc": 292,
+ "mnc": 1,
+ "iso": "sm",
+ "country": "San Marino",
+ "country_code": 378,
+ "network": "Prima"
},
{
- "mcc": "647",
- "mnc": "00",
- "iso": "re",
- "country": "Reunion",
- "country_code": "262",
- "network": "Orange"
+ "mcc": 292,
+ "mnc": 299,
+ "iso": "sm",
+ "country": "San Marino",
+ "country_code": 378,
+ "network": "TeleneT"
},
{
- "mcc": "647",
- "mnc": "10",
- "iso": "re",
- "country": "Reunion",
- "country_code": "262",
- "network": "SFR"
+ "mcc": 626,
+ "mnc": 1,
+ "iso": "st",
+ "country": "Sao Tome and Principe",
+ "country_code": 239,
+ "network": "CSTmovel"
},
{
- "mcc": "647",
- "mnc": "04",
- "iso": "re",
- "country": "Reunion",
- "country_code": "262",
- "network": "ZEOP Mobile"
+ "mcc": 626,
+ "mnc": 299,
+ "iso": "st",
+ "country": "Sao Tome and Principe",
+ "country_code": 239,
+ "network": "Failed Calls"
},
{
- "mcc": "226",
- "mnc": "05",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Digi Mobil"
+ "mcc": 626,
+ "mnc": 999,
+ "iso": "st",
+ "country": "Sao Tome and Principe",
+ "country_code": 239,
+ "network": "Fix Line"
},
{
- "mcc": "226",
- "mnc": "11",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Enigma Systems"
+ "mcc": 626,
+ "mnc": 2,
+ "iso": "st",
+ "country": "Sao Tome and Principe",
+ "country_code": 239,
+ "network": "Unitel"
},
{
- "mcc": "226",
- "mnc": "299",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Iristel"
+ "mcc": 901,
+ "mnc": 299,
+ "iso": "n/a",
+ "country": "Satellite Networks",
+ "country_code": 870,
+ "network": "Failed Calls"
},
{
- "mcc": "226",
- "mnc": "16",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Lycamobile"
+ "mcc": 901,
+ "mnc": 999,
+ "iso": "n/a",
+ "country": "Satellite Networks",
+ "country_code": 870,
+ "network": "Fix Line"
},
{
- "mcc": "226",
- "mnc": "10",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Orange"
+ "mcc": 420,
+ "mnc": 299,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "Failed Calls"
},
{
- "mcc": "226",
- "mnc": "02",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Romtelecom SA"
+ "mcc": 420,
+ "mnc": 999,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "Fix Line"
},
{
- "mcc": "226",
- "mnc": "03",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Telekom"
+ "mcc": 420,
+ "mnc": 6,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "Lebara Mobile"
},
{
- "mcc": "226",
- "mnc": "02",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Telekom"
+ "mcc": 420,
+ "mnc": 3,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "Mobily"
},
{
- "mcc": "226",
- "mnc": "06",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Telekom Romania"
+ "mcc": 420,
+ "mnc": 299,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "Red Bull MOBILE"
},
{
- "mcc": "226",
- "mnc": "01",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Vodafone"
+ "mcc": 420,
+ "mnc": 299,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "Salam"
},
{
- "mcc": "226",
- "mnc": "04",
- "iso": "ro",
- "country": "Romania",
- "country_code": "40",
- "network": "Telekom Romania"
+ "mcc": 420,
+ "mnc": 1,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "STC / Al Jawal"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "A-Mobile"
+ "mcc": 420,
+ "mnc": 5,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "Virgin Mobile"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Antares"
+ "mcc": 420,
+ "mnc": 4,
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": 966,
+ "network": "Zain"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Aquafon"
+ "mcc": 608,
+ "mnc": 299,
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": 221,
+ "network": "2s Mobile"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Arktur"
+ "mcc": 608,
+ "mnc": 3,
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": 221,
+ "network": "Expresso"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Astran"
+ "mcc": 608,
+ "mnc": 299,
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": 221,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "ASVT"
+ "mcc": 608,
+ "mnc": 999,
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": 221,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Aurora Telecom"
+ "mcc": 608,
+ "mnc": 2,
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": 221,
+ "network": "Free"
},
{
- "mcc": "250",
- "mnc": "99",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Beeline"
+ "mcc": 608,
+ "mnc": 4,
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": 221,
+ "network": "HAYO"
},
{
- "mcc": "250",
- "mnc": "99",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "BeeLine/VimpelCom"
+ "mcc": 608,
+ "mnc": 1,
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": 221,
+ "network": "Orange"
},
{
- "mcc": "250",
- "mnc": "28",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "BeeLine/VimpelCom"
+ "mcc": 608,
+ "mnc": 299,
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": 221,
+ "network": "Promobile"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Beliton"
+ "mcc": 220,
+ "mnc": 299,
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": 381,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "BIT-CENTR"
+ "mcc": 220,
+ "mnc": 999,
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": 381,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Center 2M"
+ "mcc": 220,
+ "mnc": 11,
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": 381,
+ "network": "Globaltel"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Cifra 1"
+ "mcc": 220,
+ "mnc": 3,
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": 381,
+ "network": "MTS"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "CountryCom"
+ "mcc": 220,
+ "mnc": 1,
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": 381,
+ "network": "Telenor"
},
{
- "mcc": "250",
- "mnc": "10",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "DTC/Don Telecom"
+ "mcc": 220,
+ "mnc": 5,
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": 381,
+ "network": "VIP"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "ECO Networks"
+ "mcc": 220,
+ "mnc": 20,
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": 381,
+ "network": "VIP"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Elemte"
+ "mcc": 633,
+ "mnc": 10,
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": 248,
+ "network": "Airtel"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "ER-Telecom"
+ "mcc": 633,
+ "mnc": 1,
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": 248,
+ "network": "Cable & Wireless"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
+ "mcc": 633,
+ "mnc": 299,
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": 248,
"network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "999",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
+ "mcc": 633,
+ "mnc": 999,
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": 248,
"network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Gazprom Telecom"
- },
- {
- "mcc": "250",
- "mnc": "48",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Global Telecom"
+ "mcc": 633,
+ "mnc": 5,
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": 248,
+ "network": "Intelvision"
},
{
- "mcc": "250",
- "mnc": "55",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Glonass"
+ "mcc": 619,
+ "mnc": 3,
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": 232,
+ "network": "Africell"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "GLONASS MOBILE"
+ "mcc": 619,
+ "mnc": 299,
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": 232,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Integral"
+ "mcc": 619,
+ "mnc": 999,
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": 232,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Internod"
+ "mcc": 619,
+ "mnc": 299,
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": 232,
+ "network": "IPTel"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Intersvyaz-2"
+ "mcc": 619,
+ "mnc": 299,
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": 232,
+ "network": "Onlime"
},
{
- "mcc": "250",
- "mnc": "34",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Krymtelecom"
+ "mcc": 619,
+ "mnc": 1,
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": 232,
+ "network": "Orange"
},
{
- "mcc": "250",
- "mnc": "13",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Kuban GSM"
+ "mcc": 619,
+ "mnc": 7,
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": 232,
+ "network": "Qcell"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "KvatroPlus"
+ "mcc": 619,
+ "mnc": 299,
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": 232,
+ "network": "SierraTel"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Lardex"
+ "mcc": 525,
+ "mnc": 9,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Circles.Life"
},
{
- "mcc": "250",
- "mnc": "54",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Letai Mobile"
+ "mcc": 525,
+ "mnc": 299,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Lycamobile"
+ "mcc": 525,
+ "mnc": 999,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "57",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Matrix Mobile"
+ "mcc": 525,
+ "mnc": 12,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "GRID"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Media-Market"
+ "mcc": 525,
+ "mnc": 11,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "M1"
},
{
- "mcc": "250",
- "mnc": "02",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Megafon"
+ "mcc": 525,
+ "mnc": 3,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "M1"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Metro-Pei"
+ "mcc": 525,
+ "mnc": 299,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "MyRepublic"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "MGTS"
+ "mcc": 525,
+ "mnc": 299,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Nexwave"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Miatel"
+ "mcc": 525,
+ "mnc": 299,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "redONE"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "MOSTELECOM"
+ "mcc": 525,
+ "mnc": 7,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "SingTel"
},
{
- "mcc": "250",
- "mnc": "35",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Motiv"
+ "mcc": 525,
+ "mnc": 2,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "SingTel"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "MSN Telekom"
+ "mcc": 525,
+ "mnc": 1,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "SingTel"
},
{
- "mcc": "250",
- "mnc": "01",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "MTS"
+ "mcc": 525,
+ "mnc": 299,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Smart Pinoy"
},
{
- "mcc": "250",
- "mnc": "42",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "MTT"
+ "mcc": 525,
+ "mnc": 5,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Starhub"
},
{
- "mcc": "250",
- "mnc": "03",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "NCC"
+ "mcc": 525,
+ "mnc": 8,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Starhub"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "NCI"
+ "mcc": 525,
+ "mnc": 6,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Starhub"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "NETBYNET"
+ "mcc": 525,
+ "mnc": 10,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "TPG Telecom"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "New Mobile Communications"
+ "mcc": 525,
+ "mnc": 299,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "VivoBee"
},
{
- "mcc": "250",
- "mnc": "16",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "NTC"
+ "mcc": 525,
+ "mnc": 299,
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": 65,
+ "network": "Zero1"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "OBIT"
+ "mcc": 231,
+ "mnc": 299,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "19",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "OJSC Altaysvyaz"
+ "mcc": 231,
+ "mnc": 999,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Orange Business Services"
+ "mcc": 231,
+ "mnc": 6,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "O2"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "PIN"
+ "mcc": 231,
+ "mnc": 1,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Orange"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Plintron"
+ "mcc": 231,
+ "mnc": 7,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Orange"
},
{
- "mcc": "250",
- "mnc": "92",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Printelefone"
+ "mcc": 231,
+ "mnc": 5,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Orange"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Quantech"
+ "mcc": 231,
+ "mnc": 3,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Swan / 4ka"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "RECONN"
+ "mcc": 231,
+ "mnc": 2,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Telekom"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Reteyl Innovatsii"
+ "mcc": 231,
+ "mnc": 50,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Telekom"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Sberbank-Telecom"
+ "mcc": 231,
+ "mnc": 4,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Telekom"
},
{
- "mcc": "250",
- "mnc": "33",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "SEVTELECOM"
+ "mcc": 231,
+ "mnc": 8,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Uniphone"
},
{
- "mcc": "250",
- "mnc": "04",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Sibchallenge"
+ "mcc": 231,
+ "mnc": 299,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "Vonage"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Sim Sim"
+ "mcc": 231,
+ "mnc": 99,
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": 421,
+ "network": "ZSR"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Sintonik"
+ "mcc": 293,
+ "mnc": 40,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "A1 / Si.mobil"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Sky Networks"
+ "mcc": 293,
+ "mnc": 20,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Compatel"
},
{
- "mcc": "250",
- "mnc": "09",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Skylink"
+ "mcc": 293,
+ "mnc": 86,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Elektro Gorenjska"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "SkyNet"
+ "mcc": 293,
+ "mnc": 299,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Sonet"
+ "mcc": 293,
+ "mnc": 999,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Sprint"
+ "mcc": 293,
+ "mnc": 299,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "HOT mobil"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Start"
+ "mcc": 293,
+ "mnc": 299,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Me2"
},
{
- "mcc": "250",
- "mnc": "44",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "StavTelesot"
+ "mcc": 293,
+ "mnc": 41,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Mobitel"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "SunSIM"
+ "mcc": 293,
+ "mnc": 299,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Novatel"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Surgutneftegaz"
+ "mcc": 293,
+ "mnc": 10,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Slovenske zeleznice"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Svyazresurs-Mobile"
+ "mcc": 293,
+ "mnc": 299,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "SoftNET"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Tander"
+ "mcc": 293,
+ "mnc": 64,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "T-2"
},
{
- "mcc": "250",
- "mnc": "20",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Tele2"
+ "mcc": 293,
+ "mnc": 70,
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": 386,
+ "network": "Telemach / Tusmobil"
},
{
- "mcc": "250",
- "mnc": "12",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Tele2"
+ "mcc": 540,
+ "mnc": 2,
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": 677,
+ "network": "bemobile"
},
{
- "mcc": "250",
- "mnc": "20",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Tele2/ECC/Volgogr."
+ "mcc": 540,
+ "mnc": 1,
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": 677,
+ "network": "Breeze"
},
{
- "mcc": "250",
- "mnc": "93",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Telecom XXL"
+ "mcc": 540,
+ "mnc": 299,
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": 677,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Tinkoff Mobile"
+ "mcc": 540,
+ "mnc": 999,
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": 677,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "TMT"
+ "mcc": 540,
+ "mnc": 299,
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": 677,
+ "network": "Satsol"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "TransMobilCom"
+ "mcc": 540,
+ "mnc": 299,
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": 677,
+ "network": "Smile"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "TRASTEL"
+ "mcc": 637,
+ "mnc": 299,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "AirSom"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "TRN-telecom"
+ "mcc": 637,
+ "mnc": 299,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "TTK"
+ "mcc": 637,
+ "mnc": 999,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "TTK-Svyaz"
+ "mcc": 637,
+ "mnc": 30,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Golis"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "TVE"
+ "mcc": 637,
+ "mnc": 19,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Hormuud"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "UnitTelecom"
+ "mcc": 637,
+ "mnc": 10,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Nationlink"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Unycel"
+ "mcc": 637,
+ "mnc": 299,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "NETCO"
},
{
- "mcc": "250",
- "mnc": "39",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "UralTel"
+ "mcc": 637,
+ "mnc": 70,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Onkod"
},
{
- "mcc": "250",
- "mnc": "17",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "UralTel"
+ "mcc": 637,
+ "mnc": 4,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Somafone"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Vainah Telecom"
+ "mcc": 637,
+ "mnc": 299,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "SomNetworks"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "ViKom"
+ "mcc": 637,
+ "mnc": 71,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Somtel"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Virgin Connect"
+ "mcc": 637,
+ "mnc": 299,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "STG"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Voentelecom"
+ "mcc": 637,
+ "mnc": 82,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Telcom Mobile"
},
{
- "mcc": "250",
- "mnc": "77",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Glonass"
+ "mcc": 637,
+ "mnc": 1,
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": 252,
+ "network": "Telesom"
},
{
- "mcc": "250",
- "mnc": "60",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Volna Mobile"
+ "mcc": 655,
+ "mnc": 7,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Cell C"
},
{
- "mcc": "250",
- "mnc": "299",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "VTB Mobile"
+ "mcc": 655,
+ "mnc": 299,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Failed Calls"
},
{
- "mcc": "250",
- "mnc": "32",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Win Mobile"
+ "mcc": 655,
+ "mnc": 999,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Fix Line"
},
{
- "mcc": "250",
- "mnc": "05",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Tele2/ECC/Volgogr."
+ "mcc": 655,
+ "mnc": 299,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Lycamobile"
},
{
- "mcc": "250",
- "mnc": "11",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "Yota"
+ "mcc": 655,
+ "mnc": 10,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "MTN"
},
{
- "mcc": "250",
- "mnc": "15",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "ZAO SMARTS"
+ "mcc": 655,
+ "mnc": 12,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "MTN"
},
{
- "mcc": "250",
- "mnc": "07",
- "iso": "ru",
- "country": "Russia",
- "country_code": "79",
- "network": "ZAO SMARTS"
+ "mcc": 655,
+ "mnc": 73,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Rain"
},
{
- "mcc": "635",
- "mnc": "13",
- "iso": "rw",
- "country": "Rwanda",
- "country_code": "250",
- "network": "Airtel"
+ "mcc": 655,
+ "mnc": 19,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Rain"
},
{
- "mcc": "635",
- "mnc": "14",
- "iso": "rw",
- "country": "Rwanda",
- "country_code": "250",
- "network": "Airtel"
+ "mcc": 655,
+ "mnc": 38,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Rain"
},
{
- "mcc": "635",
- "mnc": "10",
- "iso": "rw",
- "country": "Rwanda",
- "country_code": "250",
- "network": "MTN"
+ "mcc": 655,
+ "mnc": 74,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Rain"
},
{
- "mcc": "658",
- "mnc": "299",
- "iso": "sh",
- "country": "Saint Helena and Ascension and Tristan da Cunha",
- "country_code": "290",
- "network": "Failed Calls"
+ "mcc": 655,
+ "mnc": 5,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Telkom"
},
{
- "mcc": "356",
- "mnc": "110",
- "iso": "kn",
- "country": "Saint Kitts and Nevis",
- "country_code": "1869",
- "network": "Cable & Wireless"
+ "mcc": 655,
+ "mnc": 2,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Telkom"
},
{
- "mcc": "356",
- "mnc": "50",
- "iso": "kn",
- "country": "Saint Kitts and Nevis",
- "country_code": "1869",
- "network": "Digicel"
+ "mcc": 655,
+ "mnc": 299,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Virgin Mobile"
},
{
- "mcc": "356",
- "mnc": "70",
- "iso": "kn",
- "country": "Saint Kitts and Nevis",
- "country_code": "1869",
- "network": "UTS Cariglobe"
+ "mcc": 655,
+ "mnc": 1,
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": 27,
+ "network": "Vodacom"
},
{
- "mcc": "358",
- "mnc": "110",
- "iso": "lc",
- "country": "Saint Lucia",
- "country_code": "1758",
- "network": "Cable & Wireless"
+ "mcc": 450,
+ "mnc": 299,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "Failed Calls"
},
{
- "mcc": "358",
- "mnc": "30",
- "iso": "lc",
- "country": "Saint Lucia",
- "country_code": "1758",
- "network": "Cingular Wireless"
+ "mcc": 450,
+ "mnc": 999,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "Fix Line"
},
{
- "mcc": "358",
- "mnc": "50",
- "iso": "lc",
- "country": "Saint Lucia",
- "country_code": "1758",
- "network": "Digicel (St Lucia) Limited"
+ "mcc": 450,
+ "mnc": 7,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "KT Powertel"
},
{
- "mcc": "308",
- "mnc": "01",
- "iso": "pm",
- "country": "Saint Pierre and Miquelon",
- "country_code": "508",
- "network": "Ameris"
+ "mcc": 450,
+ "mnc": 6,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "LG U+"
},
{
- "mcc": "360",
- "mnc": "110",
- "iso": "vc",
- "country": "Saint Vincent and the Grenadines",
- "country_code": "1784",
- "network": "C & W"
+ "mcc": 450,
+ "mnc": 8,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "olleh / KT"
},
{
- "mcc": "360",
- "mnc": "10",
- "iso": "vc",
- "country": "Saint Vincent and the Grenadines",
- "country_code": "1784",
- "network": "Cingular"
+ "mcc": 450,
+ "mnc": 2,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "olleh / KT"
},
{
- "mcc": "360",
- "mnc": "100",
- "iso": "vc",
- "country": "Saint Vincent and the Grenadines",
- "country_code": "1784",
- "network": "Cingular"
+ "mcc": 450,
+ "mnc": 4,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "olleh / KT"
},
{
- "mcc": "360",
- "mnc": "050",
- "iso": "vc",
- "country": "Saint Vincent and the Grenadines",
- "country_code": "1784",
- "network": "Digicel"
+ "mcc": 450,
+ "mnc": 11,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "SK Telecom"
+ },
+ {
+ "mcc": 450,
+ "mnc": 12,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "SK Telecom"
},
{
- "mcc": "360",
- "mnc": "70",
- "iso": "vc",
- "country": "Saint Vincent and the Grenadines",
- "country_code": "1784",
- "network": "Digicel"
+ "mcc": 450,
+ "mnc": 5,
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": 82,
+ "network": "SK Telecom"
},
{
- "mcc": "549",
- "mnc": "999",
- "iso": "ws",
- "country": "Samoa",
- "country_code": "685",
- "network": "Fix Line"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "ACN"
},
{
- "mcc": "549",
- "mnc": "27",
- "iso": "ws",
- "country": "Samoa",
- "country_code": "685",
- "network": "Samoatel Mobile"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Adamo Telecom"
},
{
- "mcc": "549",
- "mnc": "01",
- "iso": "ws",
- "country": "Samoa",
- "country_code": "685",
- "network": "Telecom Samoa Cellular Ltd."
+ "mcc": 214,
+ "mnc": 36,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Alai"
},
{
- "mcc": "292",
- "mnc": "01",
- "iso": "sm",
- "country": "San Marino",
- "country_code": "378",
- "network": "Prima"
+ "mcc": 214,
+ "mnc": 2,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Alta Tecnologia en Comunicacions"
},
{
- "mcc": "292",
- "mnc": "299",
- "iso": "sm",
- "country": "San Marino",
- "country_code": "378",
- "network": "TeleneT"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Aurea"
},
{
- "mcc": "626",
- "mnc": "01",
- "iso": "st",
- "country": "Sao Tome and Principe",
- "country_code": "239",
- "network": "CSTmovel"
+ "mcc": 214,
+ "mnc": 14,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Avatel Movil"
},
{
- "mcc": "626",
- "mnc": "02",
- "iso": "st",
- "country": "Sao Tome and Principe",
- "country_code": "239",
- "network": "Unitel"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Billing Financial"
},
{
- "mcc": "901",
- "mnc": "14",
- "iso": "n/a",
- "country": "Satellite Networks",
- "country_code": "870",
- "network": "AeroMobile"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Bluephone"
},
{
- "mcc": "901",
- "mnc": "11",
- "iso": "n/a",
- "country": "Satellite Networks",
- "country_code": "870",
- "network": "InMarSAT"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "CloudComms"
},
{
- "mcc": "901",
- "mnc": "12",
- "iso": "n/a",
- "country": "Satellite Networks",
- "country_code": "870",
- "network": "Maritime Communications Partner AS"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Dialoga"
},
{
- "mcc": "901",
- "mnc": "05",
- "iso": "n/a",
- "country": "Satellite Networks",
- "country_code": "870",
- "network": "Thuraya Satellite"
+ "mcc": 214,
+ "mnc": 22,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Digi.Mobil"
},
{
- "mcc": "420",
- "mnc": "07",
- "iso": "sa",
- "country": "Saudi Arabia",
- "country_code": "966",
- "network": "Zain"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Dragonet"
},
{
- "mcc": "420",
- "mnc": "03",
- "iso": "sa",
- "country": "Saudi Arabia",
- "country_code": "966",
- "network": "Etihad/Etisalat/Mobily"
+ "mcc": 214,
+ "mnc": 8,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Euskaltel Movil"
},
{
- "mcc": "420",
- "mnc": "06",
- "iso": "sa",
- "country": "Saudi Arabia",
- "country_code": "966",
- "network": "Lebara Mobile"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Evolutio"
},
{
- "mcc": "420",
- "mnc": "01",
- "iso": "sa",
- "country": "Saudi Arabia",
- "country_code": "966",
- "network": "STC/Al Jawal"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Failed Calls"
},
{
- "mcc": "420",
- "mnc": "05",
- "iso": "sa",
- "country": "Saudi Arabia",
- "country_code": "966",
- "network": "Virgin Mobile"
+ "mcc": 214,
+ "mnc": 999,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Fix Line"
},
{
- "mcc": "420",
- "mnc": "04",
- "iso": "sa",
- "country": "Saudi Arabia",
- "country_code": "966",
- "network": "Zain"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Global"
},
{
- "mcc": "608",
- "mnc": "299",
- "iso": "sn",
- "country": "Senegal",
- "country_code": "221",
- "network": "2s Mobile"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "GNET"
},
{
- "mcc": "608",
- "mnc": "03",
- "iso": "sn",
- "country": "Senegal",
- "country_code": "221",
- "network": "Expresso"
+ "mcc": 214,
+ "mnc": 34,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "ION MOBILE"
},
{
- "mcc": "608",
- "mnc": "02",
- "iso": "sn",
- "country": "Senegal",
- "country_code": "221",
- "network": "Free"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Jetnet"
},
{
- "mcc": "608",
- "mnc": "04",
- "iso": "sn",
- "country": "Senegal",
- "country_code": "221",
- "network": "HAYO"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Lemonvil"
},
{
- "mcc": "608",
- "mnc": "01",
- "iso": "sn",
- "country": "Senegal",
- "country_code": "221",
- "network": "Orange"
+ "mcc": 214,
+ "mnc": 25,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Lycamobile"
},
{
- "mcc": "608",
- "mnc": "299",
- "iso": "sn",
- "country": "Senegal",
- "country_code": "221",
- "network": "Promobile"
+ "mcc": 214,
+ "mnc": 17,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "mobil R"
},
{
- "mcc": "220",
- "mnc": "299",
- "iso": "rs",
- "country": "Serbia",
- "country_code": "381",
- "network": "Failed Calls"
+ "mcc": 214,
+ "mnc": 38,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Movistar"
},
{
- "mcc": "220",
- "mnc": "11",
- "iso": "rs",
- "country": "Serbia",
- "country_code": "381",
- "network": "Globaltel"
+ "mcc": 214,
+ "mnc": 7,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Movistar"
},
{
- "mcc": "220",
- "mnc": "03",
- "iso": "rs",
- "country": "Serbia",
- "country_code": "381",
- "network": "MTS"
+ "mcc": 214,
+ "mnc": 5,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Movistar"
},
{
- "mcc": "220",
- "mnc": "01",
- "iso": "rs",
- "country": "Serbia",
- "country_code": "381",
- "network": "Telenor"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Olephone"
},
{
- "mcc": "220",
- "mnc": "02",
- "iso": "rs",
- "country": "Serbia",
- "country_code": "381",
- "network": "Telenor"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "On Movil"
},
{
- "mcc": "220",
- "mnc": "05",
- "iso": "rs",
- "country": "Serbia",
- "country_code": "381",
- "network": "VIP"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Oniti Telecom"
},
{
- "mcc": "220",
- "mnc": "20",
- "iso": "rs",
- "country": "Serbia",
- "country_code": "381",
- "network": "VIP"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "OperadorsCat"
},
{
- "mcc": "633",
- "mnc": "10",
- "iso": "sc",
- "country": "Seychelles",
- "country_code": "248",
- "network": "Airtel"
+ "mcc": 214,
+ "mnc": 9,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Orange"
},
{
- "mcc": "633",
- "mnc": "01",
- "iso": "sc",
- "country": "Seychelles",
- "country_code": "248",
- "network": "Cable & Wireless"
+ "mcc": 214,
+ "mnc": 21,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Orange"
},
{
- "mcc": "633",
- "mnc": "05",
- "iso": "sc",
- "country": "Seychelles",
- "country_code": "248",
- "network": "Intelvision"
+ "mcc": 214,
+ "mnc": 3,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Orange"
},
{
- "mcc": "633",
- "mnc": "02",
- "iso": "sc",
- "country": "Seychelles",
- "country_code": "248",
- "network": "Smartcom"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Pepephone"
},
{
- "mcc": "619",
- "mnc": "03",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "Africell"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Premium Numbers"
},
{
- "mcc": "619",
- "mnc": "04",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "Comium"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "PTV Telecom movil"
},
{
- "mcc": "619",
- "mnc": "299",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "IPTel"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Quattre"
},
{
- "mcc": "619",
- "mnc": "05",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "Africell"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Sarenet"
},
{
- "mcc": "619",
- "mnc": "02",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "Tigo/Millicom"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "SEWAN"
},
{
- "mcc": "619",
- "mnc": "25",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "Mobitel"
+ "mcc": 214,
+ "mnc": 19,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Simyo"
},
{
- "mcc": "619",
- "mnc": "299",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "Onlime"
+ "mcc": 214,
+ "mnc": 35,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "SUMA movil"
},
{
- "mcc": "619",
- "mnc": "01",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "Orange"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Suop"
},
{
- "mcc": "619",
- "mnc": "07",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "Qcell"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Syma"
},
{
- "mcc": "619",
- "mnc": "299",
- "iso": "sl",
- "country": "Sierra Leone",
- "country_code": "232",
- "network": "SierraTel"
+ "mcc": 214,
+ "mnc": 16,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "mobil R"
},
{
- "mcc": "525",
- "mnc": "999",
- "iso": "sg",
- "country": "Singapore",
- "country_code": "65",
- "network": "Fix Line"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Telsome"
},
{
- "mcc": "525",
- "mnc": "12",
- "iso": "sg",
- "country": "Singapore",
- "country_code": "65",
- "network": "GRID Communications Pte Ltd"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "The Telecom Boutique"
},
{
- "mcc": "525",
- "mnc": "03",
- "iso": "sg",
- "country": "Singapore",
- "country_code": "65",
- "network": "MobileOne Ltd"
+ "mcc": 214,
+ "mnc": 27,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Truphone"
},
{
- "mcc": "525",
- "mnc": "02",
- "iso": "sg",
- "country": "Singapore",
- "country_code": "65",
- "network": "Singtel"
+ "mcc": 214,
+ "mnc": 12,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Venus Movil"
},
{
- "mcc": "525",
- "mnc": "01",
- "iso": "sg",
- "country": "Singapore",
- "country_code": "65",
- "network": "Singtel"
+ "mcc": 214,
+ "mnc": 6,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Vodafone"
},
{
- "mcc": "525",
- "mnc": "07",
- "iso": "sg",
- "country": "Singapore",
- "country_code": "65",
- "network": "Singtel"
+ "mcc": 214,
+ "mnc": 1,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Vodafone"
},
{
- "mcc": "525",
- "mnc": "06",
- "iso": "sg",
- "country": "Singapore",
- "country_code": "65",
- "network": "Starhub"
+ "mcc": 214,
+ "mnc": 37,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Vodafone"
},
{
- "mcc": "525",
- "mnc": "05",
- "iso": "sg",
- "country": "Singapore",
- "country_code": "65",
- "network": "Starhub"
+ "mcc": 214,
+ "mnc": 23,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Yoigo"
},
{
- "mcc": "231",
- "mnc": "06",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "O2"
+ "mcc": 214,
+ "mnc": 33,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Yoigo"
},
{
- "mcc": "231",
- "mnc": "05",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Orange"
+ "mcc": 214,
+ "mnc": 29,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Yoigo"
},
{
- "mcc": "231",
- "mnc": "07",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Orange"
+ "mcc": 214,
+ "mnc": 4,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Yoigo"
},
{
- "mcc": "231",
- "mnc": "01",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Orange"
+ "mcc": 214,
+ "mnc": 299,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "You Mobile"
},
{
- "mcc": "231",
- "mnc": "15",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Orange"
+ "mcc": 214,
+ "mnc": 10,
+ "iso": "es",
+ "country": "Spain",
+ "country_code": 34,
+ "network": "Zinnia"
},
{
- "mcc": "231",
- "mnc": "03",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Swan / 4ka"
+ "mcc": 413,
+ "mnc": 5,
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": 94,
+ "network": "Airtel"
},
{
- "mcc": "231",
- "mnc": "02",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Telekom"
+ "mcc": 413,
+ "mnc": 2,
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": 94,
+ "network": "Dialog"
},
{
- "mcc": "231",
- "mnc": "04",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Telekom"
+ "mcc": 413,
+ "mnc": 299,
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": 94,
+ "network": "Failed Calls"
},
{
- "mcc": "231",
- "mnc": "02",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Telekom"
+ "mcc": 413,
+ "mnc": 999,
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": 94,
+ "network": "Fix Line"
},
{
- "mcc": "231",
- "mnc": "50",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Telekom"
+ "mcc": 413,
+ "mnc": 8,
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": 94,
+ "network": "Hutch"
},
{
- "mcc": "231",
- "mnc": "08",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Uniphone"
+ "mcc": 413,
+ "mnc": 1,
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": 94,
+ "network": "Mobitel"
},
{
- "mcc": "231",
- "mnc": "299",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "Vonage"
+ "mcc": 634,
+ "mnc": 299,
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": 249,
+ "network": "Failed Calls"
},
{
- "mcc": "231",
- "mnc": "99",
- "iso": "sk",
- "country": "Slovakia",
- "country_code": "421",
- "network": "ZSR"
+ "mcc": 634,
+ "mnc": 999,
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": 249,
+ "network": "Fix Line"
},
{
- "mcc": "293",
- "mnc": "40",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "A1 / Si.mobil"
+ "mcc": 634,
+ "mnc": 3,
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": 249,
+ "network": "MTN"
},
{
- "mcc": "293",
- "mnc": "20",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "Compatel"
+ "mcc": 634,
+ "mnc": 2,
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": 249,
+ "network": "MTN"
},
{
- "mcc": "293",
- "mnc": "86",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "Elektro Gorenjska"
+ "mcc": 634,
+ "mnc": 7,
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": 249,
+ "network": "Sudani One"
},
{
- "mcc": "293",
- "mnc": "999",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "Fix Line"
+ "mcc": 634,
+ "mnc": 6,
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": 249,
+ "network": "Zain"
},
{
- "mcc": "293",
- "mnc": "299",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "HOT mobil"
+ "mcc": 634,
+ "mnc": 1,
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": 249,
+ "network": "Zain"
},
{
- "mcc": "293",
- "mnc": "299",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "Me2"
+ "mcc": 746,
+ "mnc": 3,
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": 597,
+ "network": "Digicel"
},
{
- "mcc": "293",
- "mnc": "41",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "Mobitel"
+ "mcc": 746,
+ "mnc": 299,
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": 597,
+ "network": "Failed Calls"
},
{
- "mcc": "293",
- "mnc": "299",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "Novatel"
+ "mcc": 746,
+ "mnc": 999,
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": 597,
+ "network": "Fix Line"
},
{
- "mcc": "293",
- "mnc": "10",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "Slovenske zeleznice"
+ "mcc": 746,
+ "mnc": 2,
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": 597,
+ "network": "Telesur"
},
{
- "mcc": "293",
- "mnc": "299",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "SoftNET"
+ "mcc": 653,
+ "mnc": 2,
+ "iso": "sz",
+ "country": "Swaziland",
+ "country_code": 268,
+ "network": "Eswatini Mobile"
},
{
- "mcc": "293",
- "mnc": "64",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "T-2"
+ "mcc": 653,
+ "mnc": 1,
+ "iso": "sz",
+ "country": "Swaziland",
+ "country_code": 268,
+ "network": "EswatiniTelecom"
},
{
- "mcc": "293",
- "mnc": "70",
- "iso": "si",
- "country": "Slovenia",
- "country_code": "386",
- "network": "Telemach / Tusmobil"
+ "mcc": 653,
+ "mnc": 299,
+ "iso": "sz",
+ "country": "Swaziland",
+ "country_code": 268,
+ "network": "Failed Calls"
},
{
- "mcc": "540",
- "mnc": "02",
- "iso": "sb",
- "country": "Solomon Islands",
- "country_code": "677",
- "network": "bemobile"
+ "mcc": 653,
+ "mnc": 999,
+ "iso": "sz",
+ "country": "Swaziland",
+ "country_code": 268,
+ "network": "Fix Line"
},
{
- "mcc": "540",
- "mnc": "10",
- "iso": "sb",
- "country": "Solomon Islands",
- "country_code": "677",
- "network": "BREEZE"
+ "mcc": 653,
+ "mnc": 10,
+ "iso": "sz",
+ "country": "Swaziland",
+ "country_code": 268,
+ "network": "Swazi MTN"
},
{
- "mcc": "540",
- "mnc": "01",
- "iso": "sb",
- "country": "Solomon Islands",
- "country_code": "677",
- "network": "BREEZE"
+ "mcc": 240,
+ "mnc": 35,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "42 Telecom"
},
{
- "mcc": "637",
- "mnc": "299",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "AirSom"
+ "mcc": 240,
+ "mnc": 13,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "A3"
},
{
- "mcc": "637",
- "mnc": "30",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Golis"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Advoco"
},
{
- "mcc": "637",
- "mnc": "19",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Hormuud"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Allo Telecom"
},
{
- "mcc": "637",
- "mnc": "50",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Hormuud"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Bahnhof"
},
{
- "mcc": "637",
- "mnc": "60",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Nationlink"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Benemen"
},
{
- "mcc": "637",
- "mnc": "10",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Nationlink"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Biztel"
},
{
- "mcc": "637",
- "mnc": "299",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "NETCO"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "BM Sverige"
},
{
- "mcc": "637",
- "mnc": "70",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Onkod"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Bredband 2"
},
{
- "mcc": "637",
- "mnc": "04",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Somafone"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Bredbandsson"
},
{
- "mcc": "637",
- "mnc": "299",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "SomNetworks"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "BSG"
},
{
- "mcc": "637",
- "mnc": "71",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Somtel"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Chilimobil"
},
{
- "mcc": "637",
- "mnc": "299",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "STG"
+ "mcc": 240,
+ "mnc": 11,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Com Hem"
},
{
- "mcc": "637",
- "mnc": "82",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Telcom Mobile"
+ "mcc": 240,
+ "mnc": 9,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Com4"
},
{
- "mcc": "637",
- "mnc": "01",
- "iso": "so",
- "country": "Somalia",
- "country_code": "252",
- "network": "Telesom "
+ "mcc": 240,
+ "mnc": 32,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Compatel"
},
{
- "mcc": "655",
- "mnc": "21",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Cape Town Metropolitan"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Connectel"
},
{
- "mcc": "655",
- "mnc": "07",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Cell C"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Core Telecom"
},
{
- "mcc": "655",
- "mnc": "299",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Lycamobile"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "easy pbx"
},
{
- "mcc": "655",
- "mnc": "10",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "MTN"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "EasyTelecom"
},
{
- "mcc": "655",
- "mnc": "12",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "MTN"
+ "mcc": 240,
+ "mnc": 22,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "EUtel"
},
{
- "mcc": "655",
- "mnc": "38",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Rain"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Failed Calls"
},
{
- "mcc": "655",
- "mnc": "19",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Rain"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Fastcom"
},
{
- "mcc": "655",
- "mnc": "73",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Rain"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Febo Telecom"
},
{
- "mcc": "655",
- "mnc": "74",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Rain"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Fello"
},
{
- "mcc": "655",
- "mnc": "06",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Sentech"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Fibio"
},
{
- "mcc": "655",
- "mnc": "02",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Telkom"
+ "mcc": 240,
+ "mnc": 63,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Fink Telecom"
},
{
- "mcc": "655",
- "mnc": "05",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Telkom"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Firstcom"
},
{
- "mcc": "655",
- "mnc": "01",
- "iso": "za",
- "country": "South Africa",
- "country_code": "27",
- "network": "Vodacom"
+ "mcc": 240,
+ "mnc": 999,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Fix Line"
},
{
- "mcc": "450",
- "mnc": "299",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "Failed Calls"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Fonia"
},
{
- "mcc": "450",
- "mnc": "02",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "olleh / KT"
+ "mcc": 240,
+ "mnc": 18,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Messit / Minicall"
},
{
- "mcc": "450",
- "mnc": "07",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "KT Powertel"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Global Telefoni"
},
{
- "mcc": "450",
- "mnc": "06",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "LG U+"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "GlobalConnect"
},
{
- "mcc": "450",
- "mnc": "08",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "olleh / KT"
+ "mcc": 240,
+ "mnc": 27,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Globetouch"
},
{
- "mcc": "450",
- "mnc": "02",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "olleh / KT"
+ "mcc": 240,
+ "mnc": 17,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Gotanet"
},
{
- "mcc": "450",
- "mnc": "04",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "olleh / KT"
+ "mcc": 240,
+ "mnc": 2,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "3"
},
{
- "mcc": "450",
- "mnc": "03",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "SK Telecom"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Horisen"
},
{
- "mcc": "450",
- "mnc": "05",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "SK Telecom"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "iCentrex"
},
{
- "mcc": "450",
- "mnc": "12",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "SK Telecom"
+ "mcc": 240,
+ "mnc": 23,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Infobip"
},
{
- "mcc": "450",
- "mnc": "11",
- "iso": "kr",
- "country": "South Korea",
- "country_code": "82",
- "network": "SK Telecom"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "InfraCom"
},
{
- "mcc": "659",
- "mnc": "299",
- "iso": "ss",
- "country": "South Sudan",
- "country_code": "",
- "network": "Digitel"
+ "mcc": 240,
+ "mnc": 36,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "interactive digital media / IDM"
},
{
- "mcc": "659",
- "mnc": "299",
- "iso": "ss",
- "country": "South Sudan",
- "country_code": "",
- "network": "Failed Calls"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Ipify"
},
{
- "mcc": "659",
- "mnc": "03",
- "iso": "ss",
- "country": "South Sudan",
- "country_code": "",
- "network": "Gemtel Ltd (South Sudan"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Junyverse"
},
{
- "mcc": "659",
- "mnc": "02",
- "iso": "ss",
- "country": "South Sudan",
- "country_code": "",
- "network": "MTN"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Karma Mobil"
},
{
- "mcc": "659",
- "mnc": "04",
- "iso": "ss",
- "country": "South Sudan",
- "country_code": "",
- "network": "Network of The World Ltd (NOW) (South Sudan"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Lancelot"
},
{
- "mcc": "659",
- "mnc": "06",
- "iso": "ss",
- "country": "South Sudan",
- "country_code": "",
- "network": "Zain"
+ "mcc": 240,
+ "mnc": 28,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "LINK Mobility"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "ACN"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Loxysoft"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Adamo Telecom"
+ "mcc": 240,
+ "mnc": 12,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Lycamobile"
},
{
- "mcc": "214",
- "mnc": "36",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Alai"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Maingate"
},
{
- "mcc": "214",
- "mnc": "02",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Alta Tecnologia en Comunicacions"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Megaphone"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Aurea"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "MessageBird"
},
{
- "mcc": "214",
- "mnc": "14",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Avatel Movil"
+ "mcc": 240,
+ "mnc": 29,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "MI Carrier Services"
},
{
- "mcc": "214",
- "mnc": "22",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Digi.Mobil"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "miniTel"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Billing Financial"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Mitto"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Bluephone"
+ "mcc": 240,
+ "mnc": 33,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Mobile Arts"
},
{
- "mcc": "214",
- "mnc": "15",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "BT Espana SAU"
+ "mcc": 240,
+ "mnc": 43,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "MobiWeb"
},
{
- "mcc": "214",
- "mnc": "18",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Cableuropa SAU (ONO)"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Molnstruktur"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "CloudComms"
+ "mcc": 240,
+ "mnc": 25,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Monty Mobile"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Dialoga"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "My Beat"
},
- {
- "mcc": "214",
- "mnc": "22",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Digi.Mobil"
+ {
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Net at Once"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Dragonet"
+ "mcc": 240,
+ "mnc": 40,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Netmore"
},
{
- "mcc": "214",
- "mnc": "08",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Euskaltel Movil"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Netsize"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Evolutio"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Bixia AB"
},
{
- "mcc": "214",
- "mnc": "999",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Fix Line"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "onoff"
},
{
- "mcc": "214",
- "mnc": "20",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "fonYou Wireless SL"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Premium Numbers"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Global"
+ "mcc": 240,
+ "mnc": 39,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Primlight"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "GNET"
+ "mcc": 240,
+ "mnc": 31,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Rebtel"
},
{
- "mcc": "214",
- "mnc": "32",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "ION Mobile"
+ "mcc": 240,
+ "mnc": 20,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Sierra Wireless"
},
{
- "mcc": "214",
- "mnc": "34",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "ION MOBILE"
+ "mcc": 240,
+ "mnc": 37,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Sinch"
},
{
- "mcc": "214",
- "mnc": "21",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Jazz Telecom SAU"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "soatso"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Jetnet"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Soluno"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Lemonvil"
+ "mcc": 240,
+ "mnc": 45,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Spirius"
},
{
- "mcc": "214",
- "mnc": "26",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Lleida"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "SSTNet"
},
{
- "mcc": "214",
- "mnc": "25",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Lycamobile"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Svea Billing Services"
},
{
- "mcc": "214",
- "mnc": "25",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Lycamobile"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Svensk Konsumentmobil"
},
{
- "mcc": "214",
- "mnc": "17",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "mobil R"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "TelaVox"
},
{
- "mcc": "214",
- "mnc": "38",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Movistar"
+ "mcc": 240,
+ "mnc": 14,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Tele2"
},
{
- "mcc": "214",
- "mnc": "07",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Movistar"
+ "mcc": 240,
+ "mnc": 7,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Tele2"
},
{
- "mcc": "214",
- "mnc": "05",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Movistar"
+ "mcc": 240,
+ "mnc": 5,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Tele2"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Olephone"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Telecom3 Sverige AB"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "On Movil"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Teledigit Scandinavia AB"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Oniti Telecom"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Telekometen"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "OperadorsCat"
+ "mcc": 240,
+ "mnc": 44,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Telenabler"
},
{
- "mcc": "214",
- "mnc": "11",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Orange"
+ "mcc": 240,
+ "mnc": 42,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Telenor Connexion"
},
{
- "mcc": "214",
- "mnc": "21",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Orange"
+ "mcc": 240,
+ "mnc": 8,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Telenor"
},
{
- "mcc": "214",
- "mnc": "03",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Orange"
+ "mcc": 240,
+ "mnc": 4,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Telenor"
},
{
- "mcc": "214",
- "mnc": "09",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Orange"
+ "mcc": 240,
+ "mnc": 1,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Telia"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Pepephone"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Tell it to Mi"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "PTV Telecom movil"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Telness"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Quattre"
+ "mcc": 240,
+ "mnc": 3,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Net 1"
},
{
- "mcc": "214",
- "mnc": "17",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "R Cable y Telec. Galicia SA"
+ "mcc": 240,
+ "mnc": 48,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Tismi"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Sarenet"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Tolv Mobil"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "SEWAN"
+ "mcc": 240,
+ "mnc": 21,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Trafikverket"
},
{
- "mcc": "214",
- "mnc": "19",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Simyo"
+ "mcc": 240,
+ "mnc": 26,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Twilio"
},
{
- "mcc": "214",
- "mnc": "35",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "SUMA movil"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Unicorn Telecom"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Suop"
+ "mcc": 240,
+ "mnc": 19,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Vectone Mobile"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Syma"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Verbal"
},
{
- "mcc": "214",
- "mnc": "16",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "mobil R"
+ "mcc": 240,
+ "mnc": 46,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Viahub"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Telsome"
+ "mcc": 240,
+ "mnc": 47,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Viatel"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "The Telecom Boutique"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Vobbiz"
},
{
- "mcc": "214",
- "mnc": "27",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Truphone"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Voice Integrate"
},
{
- "mcc": "214",
- "mnc": "12",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Venus Movil"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Voicetech"
},
{
- "mcc": "214",
- "mnc": "01",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Vodafone"
+ "mcc": 240,
+ "mnc": 38,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Voxbone / Bandwidth"
},
{
- "mcc": "214",
- "mnc": "37",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Vodafone"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Weelia"
},
{
- "mcc": "214",
- "mnc": "06",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Vodafone"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Wifi.se"
},
{
- "mcc": "214",
- "mnc": "29",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Yoigo"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "Wifog Sverige"
},
{
- "mcc": "214",
- "mnc": "04",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Yoigo"
+ "mcc": 240,
+ "mnc": 299,
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": 46,
+ "network": "XPLORA"
},
{
- "mcc": "214",
- "mnc": "23",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Yoigo"
+ "mcc": 228,
+ "mnc": 58,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Beeone"
},
{
- "mcc": "214",
- "mnc": "33",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Yoigo"
+ "mcc": 228,
+ "mnc": 9,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Comfone"
},
{
- "mcc": "214",
- "mnc": "299",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "You Mobile"
+ "mcc": 228,
+ "mnc": 5,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Comfone"
},
{
- "mcc": "214",
- "mnc": "10",
- "iso": "es",
- "country": "Spain",
- "country_code": "34",
- "network": "Zinnia"
+ "mcc": 228,
+ "mnc": 999,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Fix Line"
},
{
- "mcc": "413",
- "mnc": "05",
- "iso": "lk",
- "country": "Sri Lanka",
- "country_code": "94",
- "network": "Airtel"
+ "mcc": 228,
+ "mnc": 66,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Inovia"
},
{
- "mcc": "413",
- "mnc": "03",
- "iso": "lk",
- "country": "Sri Lanka",
- "country_code": "94",
- "network": "Etisalat/Tigo"
+ "mcc": 228,
+ "mnc": 54,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Lycamobile"
},
{
- "mcc": "413",
- "mnc": "08",
- "iso": "lk",
- "country": "Sri Lanka",
- "country_code": "94",
- "network": "H3G Hutchison "
+ "mcc": 228,
+ "mnc": 69,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "MTEL"
},
{
- "mcc": "413",
- "mnc": "01",
- "iso": "lk",
- "country": "Sri Lanka",
- "country_code": "94",
- "network": "Mobitel Ltd."
+ "mcc": 228,
+ "mnc": 65,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Nexphone"
},
{
- "mcc": "413",
- "mnc": "02",
- "iso": "lk",
- "country": "Sri Lanka",
- "country_code": "94",
- "network": "MTN/Dialog"
+ "mcc": 228,
+ "mnc": 51,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "relario"
},
{
- "mcc": "634",
- "mnc": "00",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "Canar Telecom"
+ "mcc": 228,
+ "mnc": 3,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Salt Mobile"
},
{
- "mcc": "634",
- "mnc": "999",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "Fix Line"
+ "mcc": 228,
+ "mnc": 6,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "SBB"
},
{
- "mcc": "634",
- "mnc": "22",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "MTN"
+ "mcc": 228,
+ "mnc": 8,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Sunrise"
},
{
- "mcc": "634",
- "mnc": "03",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "MTN"
+ "mcc": 228,
+ "mnc": 2,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Sunrise"
},
{
- "mcc": "634",
- "mnc": "02",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "MTN"
+ "mcc": 228,
+ "mnc": 53,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Sunrise"
},
{
- "mcc": "634",
- "mnc": "07",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "Sudani One"
+ "mcc": 228,
+ "mnc": 7,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Sunrise"
},
{
- "mcc": "634",
- "mnc": "15",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "Sudani One"
+ "mcc": 228,
+ "mnc": 60,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Sunrise"
},
{
- "mcc": "634",
- "mnc": "05",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "Canar Telecom"
+ "mcc": 228,
+ "mnc": 12,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Sunrise"
},
{
- "mcc": "634",
- "mnc": "08",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "Canar Telecom"
+ "mcc": 228,
+ "mnc": 1,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Swisscom"
},
{
- "mcc": "634",
- "mnc": "01",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "Zain"
+ "mcc": 228,
+ "mnc": 62,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Telecom26"
},
{
- "mcc": "634",
- "mnc": "06",
- "iso": "sd",
- "country": "Sudan",
- "country_code": "249",
- "network": "Zain"
+ "mcc": 228,
+ "mnc": 70,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Tismi"
},
{
- "mcc": "746",
- "mnc": "03",
- "iso": "sr",
- "country": "Suriname",
- "country_code": "597",
- "network": "Digicel"
+ "mcc": 228,
+ "mnc": 59,
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": 41,
+ "network": "Vectone Mobile"
},
{
- "mcc": "746",
- "mnc": "999",
- "iso": "sr",
- "country": "Suriname",
- "country_code": "597",
- "network": "Fix Line"
+ "mcc": 417,
+ "mnc": 299,
+ "iso": "sy",
+ "country": "Syria",
+ "country_code": 963,
+ "network": "Failed Calls"
},
{
- "mcc": "746",
- "mnc": "01",
- "iso": "sr",
- "country": "Suriname",
- "country_code": "597",
- "network": "Telesur"
+ "mcc": 417,
+ "mnc": 999,
+ "iso": "sy",
+ "country": "Syria",
+ "country_code": 963,
+ "network": "Fix Line"
},
{
- "mcc": "746",
- "mnc": "02",
- "iso": "sr",
- "country": "Suriname",
- "country_code": "597",
- "network": "Telecommunicatiebedrijf Suriname (TELESUR)"
+ "mcc": 417,
+ "mnc": 2,
+ "iso": "sy",
+ "country": "Syria",
+ "country_code": 963,
+ "network": "MTN"
},
{
- "mcc": "746",
- "mnc": "04",
- "iso": "sr",
- "country": "Suriname",
- "country_code": "597",
- "network": "UNIQA"
+ "mcc": 417,
+ "mnc": 1,
+ "iso": "sy",
+ "country": "Syria",
+ "country_code": 963,
+ "network": "Syriatel"
},
{
- "mcc": "653",
- "mnc": "02",
- "iso": "sz",
- "country": "Swaziland",
- "country_code": "268",
- "network": "Eswatini Mobile"
+ "mcc": 466,
+ "mnc": 5,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "APT"
},
{
- "mcc": "653",
- "mnc": "01",
- "iso": "sz",
- "country": "Swaziland",
- "country_code": "268",
- "network": "EswatiniTelecom"
+ "mcc": 466,
+ "mnc": 12,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "APT"
},
{
- "mcc": "653",
- "mnc": "10",
- "iso": "sz",
- "country": "Swaziland",
- "country_code": "268",
- "network": "Swazi MTN"
+ "mcc": 466,
+ "mnc": 11,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "Chunghwa Telecom"
},
{
- "mcc": "240",
- "mnc": "16",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "42 Telecom AB"
+ "mcc": 466,
+ "mnc": 92,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "Chunghwa Telecom"
},
{
- "mcc": "240",
- "mnc": "35",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "42 Telecom"
+ "mcc": 466,
+ "mnc": 299,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "Failed Calls"
},
{
- "mcc": "240",
- "mnc": "13",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "A3"
+ "mcc": 466,
+ "mnc": 3,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "Far EasTone"
},
{
- "mcc": "240",
- "mnc": "30",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "NextGen Mobile Ltd (CardBoardFish)"
+ "mcc": 466,
+ "mnc": 88,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "Far EasTone"
},
{
- "mcc": "240",
- "mnc": "11",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Com Hem"
+ "mcc": 466,
+ "mnc": 1,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "Far EasTone"
},
{
- "mcc": "240",
- "mnc": "09",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Com4"
+ "mcc": 466,
+ "mnc": 999,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "Fix Line"
},
{
- "mcc": "240",
- "mnc": "32",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Compatel"
+ "mcc": 466,
+ "mnc": 89,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "T Star"
},
{
- "mcc": "240",
- "mnc": "22",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "EUtel"
+ "mcc": 466,
+ "mnc": 97,
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": 886,
+ "network": "Taiwan Mobile"
},
{
- "mcc": "240",
- "mnc": "63",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Fink Telecom"
+ "mcc": 436,
+ "mnc": 4,
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": 992,
+ "network": "Babilon-Mobile"
},
{
- "mcc": "240",
- "mnc": "999",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Fix Line"
+ "mcc": 436,
+ "mnc": 5,
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": 992,
+ "network": "Beeline"
},
{
- "mcc": "240",
- "mnc": "18",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Messit / Minicall"
+ "mcc": 436,
+ "mnc": 299,
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": 992,
+ "network": "Failed Calls"
},
{
- "mcc": "240",
- "mnc": "27",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Globetouch"
+ "mcc": 436,
+ "mnc": 999,
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": 992,
+ "network": "Fix Line"
},
{
- "mcc": "240",
- "mnc": "17",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Gotanet"
+ "mcc": 436,
+ "mnc": 3,
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": 992,
+ "network": "Megafon"
},
{
- "mcc": "240",
- "mnc": "02",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "3"
+ "mcc": 436,
+ "mnc": 299,
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": 992,
+ "network": "Premium Numbers"
},
{
- "mcc": "240",
- "mnc": "23",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Infobip"
+ "mcc": 436,
+ "mnc": 1,
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": 992,
+ "network": "Tcell"
},
{
- "mcc": "240",
- "mnc": "36",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "interactive digital media / IDM"
+ "mcc": 436,
+ "mnc": 2,
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": 992,
+ "network": "Tcell"
},
{
- "mcc": "240",
- "mnc": "28",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "LINK Mobility"
+ "mcc": 640,
+ "mnc": 5,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Airtel"
},
{
- "mcc": "240",
- "mnc": "12",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Lycamobile"
+ "mcc": 640,
+ "mnc": 299,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Failed Calls"
},
{
- "mcc": "240",
- "mnc": "29",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "MI Carrier Services"
+ "mcc": 640,
+ "mnc": 999,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Fix Line"
},
{
- "mcc": "240",
- "mnc": "33",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Mobile Arts"
+ "mcc": 640,
+ "mnc": 9,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Halotel / Viettel"
},
{
- "mcc": "240",
- "mnc": "43",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "MobiWeb"
+ "mcc": 640,
+ "mnc": 99,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Mkulima African Telecommunication"
},
{
- "mcc": "240",
- "mnc": "25",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Monty Mobile"
+ "mcc": 640,
+ "mnc": 14,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "MO Mobile"
},
{
- "mcc": "240",
- "mnc": "40",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Netmore"
+ "mcc": 640,
+ "mnc": 11,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Smile Communications"
},
{
- "mcc": "240",
- "mnc": "39",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Primlight"
+ "mcc": 640,
+ "mnc": 7,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Tanzania Telecommunication Corporation"
},
{
- "mcc": "240",
- "mnc": "31",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Rebtel"
+ "mcc": 640,
+ "mnc": 2,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Tigo / MIC"
},
{
- "mcc": "240",
- "mnc": "20",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Sierra Wireless"
+ "mcc": 640,
+ "mnc": 4,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Vodacom"
},
{
- "mcc": "240",
- "mnc": "15",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Sierra Wireless Sweden AB"
+ "mcc": 640,
+ "mnc": 13,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "WiAfrica"
},
{
- "mcc": "240",
- "mnc": "37",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Sinch"
+ "mcc": 640,
+ "mnc": 3,
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": 255,
+ "network": "Zanzibar Telecom / Zantel"
},
{
- "mcc": "240",
- "mnc": "45",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Spirius"
+ "mcc": 520,
+ "mnc": 3,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "AIS"
},
{
- "mcc": "240",
- "mnc": "10",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Spring Mobil AB"
+ "mcc": 520,
+ "mnc": 1,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "AIS"
},
{
- "mcc": "240",
- "mnc": "07",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Tele2"
+ "mcc": 520,
+ "mnc": 18,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "dtac"
},
{
- "mcc": "240",
- "mnc": "05",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Tele2"
+ "mcc": 520,
+ "mnc": 5,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "dtac TriNet"
},
{
- "mcc": "240",
- "mnc": "14",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Tele2"
+ "mcc": 520,
+ "mnc": 299,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "Failed Calls"
},
{
- "mcc": "240",
- "mnc": "44",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Telenabler"
+ "mcc": 520,
+ "mnc": 999,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "Fix Line"
},
{
- "mcc": "240",
- "mnc": "24",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Telenor"
+ "mcc": 520,
+ "mnc": 0,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "my"
},
{
- "mcc": "240",
- "mnc": "06",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Telenor"
+ "mcc": 520,
+ "mnc": 47,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "TOTmobile"
},
{
- "mcc": "240",
- "mnc": "42",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Telenor Connexion"
+ "mcc": 520,
+ "mnc": 15,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "TOTmobile"
},
{
- "mcc": "240",
- "mnc": "08",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Telenor"
+ "mcc": 520,
+ "mnc": 4,
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": 66,
+ "network": "TrueMove H"
},
{
- "mcc": "240",
- "mnc": "04",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Telenor"
+ "mcc": 615,
+ "mnc": 3,
+ "iso": "tg",
+ "country": "Togo",
+ "country_code": 228,
+ "network": "Atlantique Telecom / Moov"
},
{
- "mcc": "240",
- "mnc": "01",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Telia"
+ "mcc": 615,
+ "mnc": 299,
+ "iso": "tg",
+ "country": "Togo",
+ "country_code": 228,
+ "network": "Failed Calls"
},
{
- "mcc": "240",
- "mnc": "03",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Net 1"
+ "mcc": 615,
+ "mnc": 999,
+ "iso": "tg",
+ "country": "Togo",
+ "country_code": 228,
+ "network": "Fix Line"
},
{
- "mcc": "240",
- "mnc": "48",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Tismi"
+ "mcc": 615,
+ "mnc": 1,
+ "iso": "tg",
+ "country": "Togo",
+ "country_code": 228,
+ "network": "Togo Cellulaire / TogoCel"
},
{
- "mcc": "240",
- "mnc": "21",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Trafikverket"
+ "mcc": 539,
+ "mnc": 43,
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": 676,
+ "network": "Digicel"
},
{
- "mcc": "240",
- "mnc": "26",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Twilio"
+ "mcc": 539,
+ "mnc": 88,
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": 676,
+ "network": "Digicel"
},
{
- "mcc": "240",
- "mnc": "19",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Vectone Mobile"
+ "mcc": 539,
+ "mnc": 299,
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": 676,
+ "network": "Failed Calls"
},
{
- "mcc": "240",
- "mnc": "46",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Viahub"
+ "mcc": 539,
+ "mnc": 999,
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": 676,
+ "network": "Fix Line"
},
{
- "mcc": "240",
- "mnc": "47",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Viatel"
+ "mcc": 539,
+ "mnc": 1,
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": 676,
+ "network": "U-Call"
},
{
- "mcc": "240",
- "mnc": "38",
- "iso": "se",
- "country": "Sweden",
- "country_code": "46",
- "network": "Voxbone / Bandwidth"
+ "mcc": 539,
+ "mnc": 299,
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": 676,
+ "network": "WanTok"
},
{
- "mcc": "228",
- "mnc": "58",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Beeone"
+ "mcc": 374,
+ "mnc": 12,
+ "iso": "tt",
+ "country": "Trinidad and Tobago",
+ "country_code": 1868,
+ "network": "bmobile"
},
{
- "mcc": "228",
- "mnc": "09",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Comfone"
+ "mcc": 374,
+ "mnc": 130,
+ "iso": "tt",
+ "country": "Trinidad and Tobago",
+ "country_code": 1868,
+ "network": "Digicel"
},
{
- "mcc": "228",
- "mnc": "05",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Comfone"
+ "mcc": 374,
+ "mnc": 299,
+ "iso": "tt",
+ "country": "Trinidad and Tobago",
+ "country_code": 1868,
+ "network": "Failed Calls"
},
{
- "mcc": "228",
- "mnc": "999",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
+ "mcc": 374,
+ "mnc": 999,
+ "iso": "tt",
+ "country": "Trinidad and Tobago",
+ "country_code": 1868,
"network": "Fix Line"
},
{
- "mcc": "228",
- "mnc": "07",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Sunrise"
+ "mcc": 605,
+ "mnc": 299,
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": 216,
+ "network": "Failed Calls"
},
{
- "mcc": "228",
- "mnc": "66",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Inovia"
+ "mcc": 605,
+ "mnc": 999,
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": 216,
+ "network": "Fix Line"
},
{
- "mcc": "228",
- "mnc": "54",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
+ "mcc": 605,
+ "mnc": 6,
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": 216,
"network": "Lycamobile"
},
{
- "mcc": "228",
- "mnc": "69",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "MTEL"
+ "mcc": 605,
+ "mnc": 3,
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": 216,
+ "network": "Ooredoo"
},
{
- "mcc": "228",
- "mnc": "52",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Mundio Mobile AG"
+ "mcc": 605,
+ "mnc": 1,
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": 216,
+ "network": "Orange"
},
{
- "mcc": "228",
- "mnc": "65",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Nexphone"
+ "mcc": 605,
+ "mnc": 2,
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": 216,
+ "network": "TT Mobile"
},
{
- "mcc": "228",
- "mnc": "51",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "relario"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Asistan Telekom"
},
{
- "mcc": "228",
- "mnc": "03",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Salt Mobile"
+ "mcc": 286,
+ "mnc": 3,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Avea"
},
{
- "mcc": "228",
- "mnc": "06",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "SBB"
+ "mcc": 286,
+ "mnc": 4,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Avea"
},
{
- "mcc": "228",
- "mnc": "53",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Sunrise"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "BasakCell"
},
{
- "mcc": "228",
- "mnc": "12",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Sunrise"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Compatel"
+ },
+ {
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Fenix Telekom"
},
{
- "mcc": "228",
- "mnc": "08",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Sunrise"
+ "mcc": 286,
+ "mnc": 999,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Fix Line"
},
{
- "mcc": "228",
- "mnc": "02",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Sunrise"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Foniva"
},
{
- "mcc": "228",
- "mnc": "60",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Sunrise"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "IsNet"
},
{
- "mcc": "228",
- "mnc": "01",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Swisscom"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Maxiphone"
},
{
- "mcc": "228",
- "mnc": "02",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Sunrise"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Medium Telekom"
},
{
- "mcc": "228",
- "mnc": "62",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Telecom26"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Mobilisim"
},
{
- "mcc": "228",
- "mnc": "70",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Tismi"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Netgsm"
},
{
- "mcc": "228",
- "mnc": "53",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "upc cablecom GmbH"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Nida"
},
{
- "mcc": "228",
- "mnc": "59",
- "iso": "ch",
- "country": "Switzerland",
- "country_code": "41",
- "network": "Vectone Mobile"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Oris"
},
{
- "mcc": "417",
- "mnc": "02",
- "iso": "sy",
- "country": "Syria",
- "country_code": "963",
- "network": "MTN/Spacetel"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Pelicell"
},
{
- "mcc": "417",
- "mnc": "09",
- "iso": "sy",
- "country": "Syria",
- "country_code": "963",
- "network": "Syriatel Holdings"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Plus Telekom"
},
{
- "mcc": "417",
- "mnc": "01",
- "iso": "sy",
- "country": "Syria",
- "country_code": "963",
- "network": "Syriatel Holdings"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Roitel"
},
{
- "mcc": "466",
- "mnc": "68",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "ACeS Taiwan - ACeS Taiwan Telecommunications Co Ltd"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "SesNet"
},
{
- "mcc": "466",
- "mnc": "05",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Asia Pacific Telecom Co. Ltd (APT)"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "TCDD"
},
{
- "mcc": "466",
- "mnc": "11",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Chunghwa Telecom LDM"
+ "mcc": 286,
+ "mnc": 299,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "TTM"
},
{
- "mcc": "466",
- "mnc": "92",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Chunghwa Telecom LDM"
+ "mcc": 286,
+ "mnc": 1,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Turkcell"
},
{
- "mcc": "466",
- "mnc": "02",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Far EasTone"
+ "mcc": 286,
+ "mnc": 2,
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": 90,
+ "network": "Vodafone"
},
{
- "mcc": "466",
- "mnc": "07",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Far EasTone"
+ "mcc": 438,
+ "mnc": 1,
+ "iso": "tm",
+ "country": "Turkmenistan",
+ "country_code": 993,
+ "network": "MTS"
},
{
- "mcc": "466",
- "mnc": "06",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Far EasTone"
+ "mcc": 438,
+ "mnc": 299,
+ "iso": "tm",
+ "country": "Turkmenistan",
+ "country_code": 993,
+ "network": "Failed Calls"
},
{
- "mcc": "466",
- "mnc": "03",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Far EasTone"
+ "mcc": 438,
+ "mnc": 999,
+ "iso": "tm",
+ "country": "Turkmenistan",
+ "country_code": 993,
+ "network": "Fix Line"
},
{
- "mcc": "466",
- "mnc": "01",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Far EasTone"
+ "mcc": 438,
+ "mnc": 2,
+ "iso": "tm",
+ "country": "Turkmenistan",
+ "country_code": 993,
+ "network": "TMCELL"
},
{
- "mcc": "466",
- "mnc": "10",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Global Mobile Corp."
+ "mcc": 641,
+ "mnc": 22,
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": 256,
+ "network": "Airtel"
},
{
- "mcc": "466",
- "mnc": "56",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "International Telecom Co. Ltd (FITEL)"
+ "mcc": 641,
+ "mnc": 1,
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": 256,
+ "network": "Airtel"
},
{
- "mcc": "466",
- "mnc": "88",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "KG Telecom"
+ "mcc": 641,
+ "mnc": 299,
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": 256,
+ "network": "Failed Calls"
},
{
- "mcc": "466",
- "mnc": "90",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "T-Star/VIBO"
+ "mcc": 641,
+ "mnc": 999,
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": 256,
+ "network": "Fix Line"
},
{
- "mcc": "466",
- "mnc": "99",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "TransAsia"
+ "mcc": 641,
+ "mnc": 4,
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": 256,
+ "network": "Lycamobile"
},
{
- "mcc": "466",
- "mnc": "97",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Taiwan Cellular"
+ "mcc": 641,
+ "mnc": 11,
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": 256,
+ "network": "Mango"
},
{
- "mcc": "466",
- "mnc": "93",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "Mobitai"
+ "mcc": 641,
+ "mnc": 10,
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": 256,
+ "network": "MTN"
},
{
- "mcc": "466",
- "mnc": "89",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "T-Star/VIBO"
+ "mcc": 641,
+ "mnc": 33,
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": 256,
+ "network": "Smile"
},
{
- "mcc": "466",
- "mnc": "09",
- "iso": "tw",
- "country": "Taiwan",
- "country_code": "886",
- "network": "VMAX Telecom Co. Ltd"
+ "mcc": 255,
+ "mnc": 7,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "3Mob"
},
{
- "mcc": "436",
- "mnc": "04",
- "iso": "tj",
- "country": "Tajikistan",
- "country_code": "992",
- "network": "Babilon-M"
+ "mcc": 255,
+ "mnc": 299,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "Failed Calls"
},
{
- "mcc": "436",
- "mnc": "05",
- "iso": "tj",
- "country": "Tajikistan",
- "country_code": "992",
- "network": "Bee Line"
+ "mcc": 255,
+ "mnc": 999,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "Fix Line"
},
{
- "mcc": "436",
- "mnc": "02",
- "iso": "tj",
- "country": "Tajikistan",
- "country_code": "992",
- "network": "CJSC Indigo Tajikistan"
+ "mcc": 255,
+ "mnc": 4,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "IT"
},
{
- "mcc": "436",
- "mnc": "12",
- "iso": "tj",
- "country": "Tajikistan",
- "country_code": "992",
- "network": "Tcell/JC Somoncom"
+ "mcc": 255,
+ "mnc": 2,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "Kyivstar"
},
{
- "mcc": "436",
- "mnc": "03",
- "iso": "tj",
- "country": "Tajikistan",
- "country_code": "992",
- "network": "Megafon"
+ "mcc": 255,
+ "mnc": 3,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "Kyivstar"
},
{
- "mcc": "436",
- "mnc": "01",
- "iso": "tj",
- "country": "Tajikistan",
- "country_code": "992",
- "network": "Tcell/JC Somoncom"
+ "mcc": 255,
+ "mnc": 6,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "lifecell"
},
{
- "mcc": "640",
- "mnc": "05",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Airtel"
+ "mcc": 255,
+ "mnc": 21,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "PEOPLEnet"
},
{
- "mcc": "640",
- "mnc": "08",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Benson Informatics Ltd"
+ "mcc": 255,
+ "mnc": 99,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "Phoenix"
},
{
- "mcc": "640",
- "mnc": "06",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Dovetel (T) Ltd"
+ "mcc": 255,
+ "mnc": 1,
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": 380,
+ "network": "Vodafone"
},
{
- "mcc": "640",
- "mnc": "09",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Halotel / Viettel"
+ "mcc": 424,
+ "mnc": 3,
+ "iso": "ae",
+ "country": "United Arab Emirates",
+ "country_code": 971,
+ "network": "DU"
},
{
- "mcc": "640",
- "mnc": "99",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Mkulima African Telecommunication"
+ "mcc": 424,
+ "mnc": 2,
+ "iso": "ae",
+ "country": "United Arab Emirates",
+ "country_code": 971,
+ "network": "Etisalat"
},
{
- "mcc": "640",
- "mnc": "14",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "MO Mobile"
+ "mcc": 424,
+ "mnc": 299,
+ "iso": "ae",
+ "country": "United Arab Emirates",
+ "country_code": 971,
+ "network": "Failed Calls"
},
{
- "mcc": "640",
- "mnc": "11",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Smile Communications"
+ "mcc": 424,
+ "mnc": 999,
+ "iso": "ae",
+ "country": "United Arab Emirates",
+ "country_code": 971,
+ "network": "Fix Line"
},
{
- "mcc": "640",
- "mnc": "07",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Tanzania Telecommunication Corporation"
+ "mcc": 234,
+ "mnc": 78,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Airwave"
},
{
- "mcc": "640",
- "mnc": "02",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Tigo / MIC"
+ "mcc": 234,
+ "mnc": 29,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "aql"
},
{
- "mcc": "640",
- "mnc": "01",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Tri Telecomm. Ltd."
+ "mcc": 234,
+ "mnc": 76,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "BT Group"
},
{
- "mcc": "640",
- "mnc": "04",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Vodacom"
+ "mcc": 234,
+ "mnc": 0,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "BT Group"
},
{
- "mcc": "640",
- "mnc": "13",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "WiAfrica"
+ "mcc": 234,
+ "mnc": 8,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "BT OnePhone"
},
{
- "mcc": "640",
- "mnc": "03",
- "iso": "tz",
- "country": "Tanzania",
- "country_code": "255",
- "network": "Zanzibar Telecom / Zantel"
+ "mcc": 234,
+ "mnc": 18,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Cloud9"
},
{
- "mcc": "520",
- "mnc": "20",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "ACeS Thailand - ACeS Regional Services Co Ltd"
+ "mcc": 234,
+ "mnc": 30,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "T-Mobile"
},
{
- "mcc": "520",
- "mnc": "15",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "ACT Mobile"
+ "mcc": 234,
+ "mnc": 32,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "T-Mobile"
},
{
- "mcc": "520",
- "mnc": "03",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "AIS/Advanced Info Service"
+ "mcc": 234,
+ "mnc": 31,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "T-Mobile"
},
{
- "mcc": "520",
- "mnc": "01",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "AIS/Advanced Info Service"
+ "mcc": 234,
+ "mnc": 999,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Fix Line"
},
{
- "mcc": "520",
- "mnc": "23",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "Digital Phone Co."
+ "mcc": 234,
+ "mnc": 17,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "FlexTel"
},
{
- "mcc": "520",
- "mnc": "999",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "Fix Line"
+ "mcc": 234,
+ "mnc": 4,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "FMS Solutions"
},
{
- "mcc": "520",
- "mnc": "00",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "Hutch/CAT CDMA"
+ "mcc": 234,
+ "mnc": 39,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Gamma Mobile"
},
{
- "mcc": "520",
- "mnc": "05",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "Total Access (DTAC)"
+ "mcc": 234,
+ "mnc": 24,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Greenfone"
},
{
- "mcc": "520",
- "mnc": "18",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "Total Access (DTAC)"
+ "mcc": 234,
+ "mnc": 72,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Hanhaa Mobile"
},
{
- "mcc": "520",
- "mnc": "04",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "True Move/Orange"
+ "mcc": 234,
+ "mnc": 71,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Home Office"
},
{
- "mcc": "520",
- "mnc": "99",
- "iso": "th",
- "country": "Thailand",
- "country_code": "66",
- "network": "True Move/Orange"
+ "mcc": 234,
+ "mnc": 20,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "3"
},
{
- "mcc": "615",
- "mnc": "03",
- "iso": "tg",
- "country": "Togo",
- "country_code": "228",
- "network": "Atlantique Telecom / Moov"
+ "mcc": 234,
+ "mnc": 94,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "3"
},
{
- "mcc": "615",
- "mnc": "02",
- "iso": "tg",
- "country": "Togo",
- "country_code": "228",
- "network": "Telecel/MOOV"
+ "mcc": 234,
+ "mnc": 23,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Icron Network"
},
{
- "mcc": "615",
- "mnc": "03",
- "iso": "tg",
- "country": "Togo",
- "country_code": "228",
- "network": "Telecel/MOOV"
+ "mcc": 234,
+ "mnc": 3,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Jersey Airtel"
},
{
- "mcc": "615",
- "mnc": "01",
- "iso": "tg",
- "country": "Togo",
- "country_code": "228",
- "network": "Togo Cellulaire / TogoCel"
+ "mcc": 234,
+ "mnc": 35,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "JSC Ingenicum"
},
{
- "mcc": "539",
- "mnc": "88",
- "iso": "to",
- "country": "Tonga",
- "country_code": "676",
- "network": "Digicel"
+ "mcc": 234,
+ "mnc": 50,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "JT Mobile"
},
{
- "mcc": "539",
- "mnc": "999",
- "iso": "to",
- "country": "Tonga",
- "country_code": "676",
- "network": "Fix Line"
+ "mcc": 234,
+ "mnc": 14,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "LINK Mobility"
},
{
- "mcc": "539",
- "mnc": "43",
- "iso": "to",
- "country": "Tonga",
- "country_code": "676",
- "network": "Shoreline Communication"
+ "mcc": 234,
+ "mnc": 26,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Lycamobile"
},
{
- "mcc": "539",
- "mnc": "01",
- "iso": "to",
- "country": "Tonga",
- "country_code": "676",
- "network": "Tonga Communications"
+ "mcc": 234,
+ "mnc": 58,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Manx Telecom Mobile"
},
{
- "mcc": "374",
- "mnc": "12",
- "iso": "tt",
- "country": "Trinidad and Tobago",
- "country_code": "1868",
- "network": "Bmobile/TSTT"
+ "mcc": 234,
+ "mnc": 28,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Marathon Telecom"
},
{
- "mcc": "374",
- "mnc": "120",
- "iso": "tt",
- "country": "Trinidad and Tobago",
- "country_code": "1868",
- "network": "Bmobile/TSTT"
+ "mcc": 234,
+ "mnc": 75,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Mass Response Service GmbH"
},
{
- "mcc": "374",
- "mnc": "130",
- "iso": "tt",
- "country": "Trinidad and Tobago",
- "country_code": "1868",
- "network": "Digicel"
+ "mcc": 234,
+ "mnc": 56,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "NCSC"
},
{
- "mcc": "374",
- "mnc": "140",
- "iso": "tt",
- "country": "Trinidad and Tobago",
- "country_code": "1868",
- "network": "LaqTel Ltd."
+ "mcc": 234,
+ "mnc": 95,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Network Rail"
},
{
- "mcc": "605",
- "mnc": "999",
- "iso": "tn",
- "country": "Tunisia",
- "country_code": "216",
- "network": "Fix Line"
+ "mcc": 234,
+ "mnc": 12,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Network Rail"
},
{
- "mcc": "605",
- "mnc": "06",
- "iso": "tn",
- "country": "Tunisia",
- "country_code": "216",
- "network": "Lycamobile"
+ "mcc": 234,
+ "mnc": 13,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Network Rail"
},
{
- "mcc": "605",
- "mnc": "03",
- "iso": "tn",
- "country": "Tunisia",
- "country_code": "216",
- "network": "Ooredoo"
+ "mcc": 234,
+ "mnc": 51,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "now broadband"
},
{
- "mcc": "605",
- "mnc": "01",
- "iso": "tn",
- "country": "Tunisia",
- "country_code": "216",
+ "mcc": 234,
+ "mnc": 34,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
"network": "Orange"
},
{
- "mcc": "605",
- "mnc": "02",
- "iso": "tn",
- "country": "Tunisia",
- "country_code": "216",
- "network": "TT Mobile"
+ "mcc": 234,
+ "mnc": 33,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Orange"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Asistan Telekom"
+ "mcc": 234,
+ "mnc": 74,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Pareteum"
},
{
- "mcc": "286",
- "mnc": "04",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Avea"
+ "mcc": 234,
+ "mnc": 57,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Sky"
},
{
- "mcc": "286",
- "mnc": "03",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Avea"
+ "mcc": 234,
+ "mnc": 40,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "spusu"
},
{
- "mcc": "286",
- "mnc": "03",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Avea"
+ "mcc": 234,
+ "mnc": 55,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Sure Guernsey"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "BasakCell"
+ "mcc": 234,
+ "mnc": 36,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Sure Isle of Man"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Compatel"
+ "mcc": 234,
+ "mnc": 99,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Sure Jersey"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Fenix Telekom"
+ "mcc": 234,
+ "mnc": 37,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Synectiv"
},
{
- "mcc": "286",
- "mnc": "999",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Fix Line"
+ "mcc": 234,
+ "mnc": 16,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Talk Talk"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Foniva"
+ "mcc": 234,
+ "mnc": 27,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Tata Communications Ltd"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "IsNet"
+ "mcc": 234,
+ "mnc": 11,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "O2"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Maxiphone"
+ "mcc": 234,
+ "mnc": 10,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "O2"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Medium Telekom"
+ "mcc": 234,
+ "mnc": 2,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "O2"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Mobilisim"
+ "mcc": 234,
+ "mnc": 22,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Telesign Mobile"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Netgsm"
+ "mcc": 234,
+ "mnc": 19,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "TeleWare"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Nida"
+ "mcc": 234,
+ "mnc": 9,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Tismi"
},
- {
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Oris"
+ {
+ "mcc": 234,
+ "mnc": 25,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Truphone"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Pelicell"
+ "mcc": 234,
+ "mnc": 1,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Vectone Mobile"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Plus Telekom"
+ "mcc": 234,
+ "mnc": 38,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Virgin Mobile"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Roitel"
+ "mcc": 234,
+ "mnc": 92,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Vodafone"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "SesNet"
+ "mcc": 234,
+ "mnc": 7,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Vodafone"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "TCDD"
+ "mcc": 234,
+ "mnc": 15,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Vodafone"
},
{
- "mcc": "286",
- "mnc": "299",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "TTM"
+ "mcc": 234,
+ "mnc": 89,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Vodafone"
},
{
- "mcc": "286",
- "mnc": "01",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
- "network": "Turkcell"
+ "mcc": 234,
+ "mnc": 91,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
+ "network": "Vodafone"
},
{
- "mcc": "286",
- "mnc": "02",
- "iso": "tr",
- "country": "Turkiye",
- "country_code": "90",
+ "mcc": 234,
+ "mnc": 77,
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": 44,
"network": "Vodafone"
},
{
- "mcc": "438",
- "mnc": "01",
- "iso": "tm",
- "country": "Turkmenistan",
- "country_code": "993",
- "network": "MTS/Barash Communication"
+ "mcc": 312,
+ "mnc": 130,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Appalachian Wireless"
},
{
- "mcc": "438",
- "mnc": "02",
- "iso": "tm",
- "country": "Turkmenistan",
- "country_code": "993",
- "network": "Altyn Asyr/TM-Cell"
+ "mcc": 312,
+ "mnc": 750,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Appalachian Wireless"
},
{
- "mcc": "376",
- "mnc": "350",
- "iso": "tc",
- "country": "Turks and Caicos Islands",
- "country_code": "",
- "network": "Cable & Wireless (TCI) Ltd"
+ "mcc": 310,
+ "mnc": 130,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Appalachian Wireless"
},
{
- "mcc": "376",
- "mnc": "050",
- "iso": "tc",
- "country": "Turks and Caicos Islands",
- "country_code": "",
- "network": "Digicel TCI Ltd"
+ "mcc": 310,
+ "mnc": 750,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Appalachian Wireless"
},
{
- "mcc": "376",
- "mnc": "352",
- "iso": "tc",
- "country": "Turks and Caicos Islands",
- "country_code": "",
- "network": "IslandCom Communications Ltd."
+ "mcc": 312,
+ "mnc": 710,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "ASTAC Cellular"
},
{
- "mcc": "553",
- "mnc": "01",
- "iso": "tv",
- "country": "Tuvalu",
- "country_code": "",
- "network": "Tuvalu Telecommunication Corporation (TTC)"
+ "mcc": 310,
+ "mnc": 710,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "ASTAC Cellular"
},
{
- "mcc": "641",
- "mnc": "01",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "Airtel"
+ "mcc": 310,
+ "mnc": 760,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "ASTAC Cellular"
},
{
- "mcc": "641",
- "mnc": "22",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "Airtel"
+ "mcc": 312,
+ "mnc": 760,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "ASTAC Cellular"
},
{
- "mcc": "641",
- "mnc": "999",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "Fix Line"
+ "mcc": 313,
+ "mnc": 30,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "641",
- "mnc": "66",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "i-Tel Ltd"
+ "mcc": 312,
+ "mnc": 180,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "641",
- "mnc": "30",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "K2 Telecom Ltd"
+ "mcc": 311,
+ "mnc": 680,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "641",
- "mnc": "04",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "Lycamobile"
+ "mcc": 310,
+ "mnc": 680,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "641",
- "mnc": "11",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "Mango"
+ "mcc": 313,
+ "mnc": 170,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "641",
- "mnc": "10",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "MTN"
+ "mcc": 311,
+ "mnc": 90,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "641",
- "mnc": "14",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "Orange"
+ "mcc": 310,
+ "mnc": 16,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "641",
- "mnc": "33",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "Smile"
+ "mcc": 310,
+ "mnc": 150,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "641",
- "mnc": "18",
- "iso": "ug",
- "country": "Uganda",
- "country_code": "256",
- "network": "Suretelecom Uganda Ltd"
+ "mcc": 312,
+ "mnc": 670,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "07",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "3Mob"
+ "mcc": 312,
+ "mnc": 80,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "05",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Golden Telecom"
+ "mcc": 311,
+ "mnc": 280,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "39",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Golden Telecom"
+ "mcc": 310,
+ "mnc": 280,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "04",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "IT"
+ "mcc": 313,
+ "mnc": 670,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "67",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "KyivStar"
+ "mcc": 313,
+ "mnc": 70,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "02",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Kyivstar"
+ "mcc": 311,
+ "mnc": 16,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "03",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Kyivstar"
+ "mcc": 312,
+ "mnc": 210,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "03",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "KyivStar"
+ "mcc": 311,
+ "mnc": 950,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "06",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "lifecell"
+ "mcc": 310,
+ "mnc": 950,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "21",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "PEOPLEnet"
+ "mcc": 313,
+ "mnc": 180,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "99",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Phoenix"
+ "mcc": 311,
+ "mnc": 150,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "50",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Vodafone"
+ "mcc": 310,
+ "mnc": 170,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "02",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Kyivstar"
+ "mcc": 312,
+ "mnc": 680,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "01",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Vodafone"
+ "mcc": 312,
+ "mnc": 90,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "01",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Vodafone"
+ "mcc": 311,
+ "mnc": 380,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "255",
- "mnc": "68",
- "iso": "ua",
- "country": "Ukraine",
- "country_code": "380",
- "network": "Kyivstar"
+ "mcc": 310,
+ "mnc": 380,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "424",
- "mnc": "03",
- "iso": "ae",
- "country": "United Arab Emirates",
- "country_code": "971",
- "network": "DU"
+ "mcc": 313,
+ "mnc": 680,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "424",
- "mnc": "02",
- "iso": "ae",
- "country": "United Arab Emirates",
- "country_code": "971",
- "network": "Etisalat"
+ "mcc": 313,
+ "mnc": 80,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "431",
- "mnc": "02",
- "iso": "ae",
- "country": "United Arab Emirates",
- "country_code": "971",
- "network": "Etisalat"
+ "mcc": 311,
+ "mnc": 30,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "430",
- "mnc": "02",
- "iso": "ae",
- "country": "United Arab Emirates",
- "country_code": "971",
- "network": "Etisalat"
+ "mcc": 310,
+ "mnc": 70,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "08Direct"
+ "mcc": 312,
+ "mnc": 280,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "24Seven"
+ "mcc": 312,
+ "mnc": 16,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "ACE Call"
+ "mcc": 313,
+ "mnc": 210,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "78",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Airwave"
+ "mcc": 311,
+ "mnc": 170,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Andrews & Arnold"
+ "mcc": 310,
+ "mnc": 180,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Anywhere Sim"
+ "mcc": 312,
+ "mnc": 950,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "29",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "aql"
+ "mcc": 312,
+ "mnc": 150,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "aql Wholesale"
+ "mcc": 311,
+ "mnc": 410,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Voxbone / Bandwidth"
+ "mcc": 310,
+ "mnc": 410,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Bellingham Telecommunications"
+ "mcc": 313,
+ "mnc": 950,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "76",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "BT Group"
+ "mcc": 313,
+ "mnc": 90,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "00",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "BT Group"
+ "mcc": 311,
+ "mnc": 70,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "08",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "BT OnePhone"
+ "mcc": 310,
+ "mnc": 80,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "CFL Communications"
+ "mcc": 312,
+ "mnc": 380,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Citrus"
+ "mcc": 312,
+ "mnc": 30,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "18",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Cloud9"
+ "mcc": 311,
+ "mnc": 180,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Compatel"
+ "mcc": 313,
+ "mnc": 280,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Confabulate"
+ "mcc": 313,
+ "mnc": 380,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Core"
+ "mcc": 313,
+ "mnc": 16,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Core Telecom"
+ "mcc": 312,
+ "mnc": 170,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Core Telecom Ltd"
+ "mcc": 311,
+ "mnc": 670,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "DMB"
+ "mcc": 310,
+ "mnc": 670,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "235",
- "mnc": "02",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Everyth. Ev.wh."
+ "mcc": 313,
+ "mnc": 150,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "32",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "T-Mobile"
+ "mcc": 311,
+ "mnc": 80,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "31",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "T-Mobile"
+ "mcc": 310,
+ "mnc": 90,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "30",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "T-Mobile"
+ "mcc": 312,
+ "mnc": 410,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "999",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Fix Line"
+ "mcc": 310,
+ "mnc": 30,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "17",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "FlexTel"
+ "mcc": 312,
+ "mnc": 70,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "04",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "FMS Solutions"
+ "mcc": 311,
+ "mnc": 210,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Fogg"
+ "mcc": 310,
+ "mnc": 210,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "39",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Gamma Mobile"
+ "mcc": 313,
+ "mnc": 410,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "AT&T Mobility"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Global Reach Networks"
+ "mcc": 310,
+ "mnc": 600,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Cellcom"
},
{
- "mcc": "234",
- "mnc": "24",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Greenfone"
+ "mcc": 310,
+ "mnc": 630,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Choice Wireless"
},
{
- "mcc": "234",
- "mnc": "72",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Hanhaa Mobile"
+ "mcc": 310,
+ "mnc": 700,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "cv cellular"
},
{
- "mcc": "234",
- "mnc": "71",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Home Office"
+ "mcc": 310,
+ "mnc": 880,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "DTC Wireless"
},
{
- "mcc": "234",
- "mnc": "20",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "3"
+ "mcc": 310,
+ "mnc": 35,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "ETEX"
},
{
- "mcc": "234",
- "mnc": "94",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "3"
+ "mcc": 310,
+ "mnc": 990,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Evolve"
},
{
- "mcc": "234",
- "mnc": "23",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Icron Network"
+ "mcc": 310,
+ "mnc": 299,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Failed Calls"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "IPV6"
+ "mcc": 310,
+ "mnc": 999,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Fix Line"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "IV Response"
+ "mcc": 311,
+ "mnc": 370,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "GCI Wireless"
},
{
- "mcc": "234",
- "mnc": "03",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Jersey Airtel"
+ "mcc": 310,
+ "mnc": 430,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "GCI Wireless"
},
{
- "mcc": "234",
- "mnc": "35",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "JSC Ingenicum"
+ "mcc": 311,
+ "mnc": 430,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "GCI Wireless"
},
{
- "mcc": "234",
- "mnc": "50",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "JT Mobile"
+ "mcc": 311,
+ "mnc": 690,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Limitless"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Kontakt Mobile"
+ "mcc": 312,
+ "mnc": 340,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Limitless"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Lanonyx Telecom"
+ "mcc": 310,
+ "mnc": 340,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Limitless"
},
{
- "mcc": "234",
- "mnc": "14",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "LINK Mobility"
+ "mcc": 312,
+ "mnc": 690,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Limitless"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Lleida.net"
+ "mcc": 310,
+ "mnc": 690,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Limitless"
},
{
- "mcc": "234",
- "mnc": "26",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Lycamobile"
+ "mcc": 311,
+ "mnc": 340,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Limitless"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Magrathea Telecommunications"
+ "mcc": 313,
+ "mnc": 299,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Northstar Technology"
},
{
- "mcc": "234",
- "mnc": "58",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Manx Telecom Mobile"
+ "mcc": 314,
+ "mnc": 299,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Northstar Technology"
},
{
- "mcc": "234",
- "mnc": "28",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Marathon Telecom"
+ "mcc": 310,
+ "mnc": 299,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Northstar Technology"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Mars Communications"
+ "mcc": 315,
+ "mnc": 299,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Northstar Technology"
},
{
- "mcc": "234",
- "mnc": "75",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Mass Response Service GmbH"
+ "mcc": 311,
+ "mnc": 299,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Northstar Technology"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Mobiweb"
+ "mcc": 316,
+ "mnc": 299,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Northstar Technology"
},
{
- "mcc": "234",
- "mnc": "56",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "NCSC"
+ "mcc": 312,
+ "mnc": 299,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Northstar Technology"
},
{
- "mcc": "234",
- "mnc": "95",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Network Rail"
+ "mcc": 310,
+ "mnc": 540,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "OWTC"
},
{
- "mcc": "234",
- "mnc": "12",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Network Rail"
+ "mcc": 310,
+ "mnc": 570,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "13",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Network Rail"
+ "mcc": 313,
+ "mnc": 360,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Nodemax"
+ "mcc": 310,
+ "mnc": 280,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "51",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "now broadband"
+ "mcc": 311,
+ "mnc": 280,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "NTA"
+ "mcc": 313,
+ "mnc": 570,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "34",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Orange"
+ "mcc": 311,
+ "mnc": 360,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "33",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Orange"
+ "mcc": 310,
+ "mnc": 360,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "74",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Pareteum"
+ "mcc": 311,
+ "mnc": 570,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Premium Routing"
+ "mcc": 313,
+ "mnc": 280,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "Pioneer Cellular"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "QX"
+ "mcc": 316,
+ "mnc": 660,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Resilient"
+ "mcc": 310,
+ "mnc": 270,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Sark Telecom"
+ "mcc": 311,
+ "mnc": 940,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Simwood eSMS"
+ "mcc": 316,
+ "mnc": 190,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "57",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Sky"
+ "mcc": 310,
+ "mnc": 190,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Sound Advertising"
+ "mcc": 311,
+ "mnc": 311,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Spacetel"
+ "mcc": 312,
+ "mnc": 800,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "40",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "spusu"
+ "mcc": 311,
+ "mnc": 120,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "55",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Sure Guernsey"
+ "mcc": 316,
+ "mnc": 882,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "36",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Sure Isle of Man"
+ "mcc": 310,
+ "mnc": 800,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Sure Jersey"
+ "mcc": 312,
+ "mnc": 200,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Swiftnet"
+ "mcc": 316,
+ "mnc": 260,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "37",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Synectiv"
+ "mcc": 310,
+ "mnc": 230,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "16",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Talk Talk"
+ "mcc": 311,
+ "mnc": 830,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Tango Networks"
+ "mcc": 312,
+ "mnc": 940,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "27",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Tata Communications Ltd"
+ "mcc": 311,
+ "mnc": 240,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Telecom 10"
+ "mcc": 310,
+ "mnc": 940,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Telecom2"
+ "mcc": 312,
+ "mnc": 270,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "27",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Vodafone"
+ "mcc": 316,
+ "mnc": 800,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "02",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "O2"
+ "mcc": 310,
+ "mnc": 310,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "11",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "O2"
+ "mcc": 312,
+ "mnc": 10,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "10",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "O2"
+ "mcc": 316,
+ "mnc": 200,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "22",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Telesign Mobile"
+ "mcc": 310,
+ "mnc": 160,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "19",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "TeleWare"
+ "mcc": 311,
+ "mnc": 490,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "telna Mobile"
+ "mcc": 312,
+ "mnc": 830,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "TGL Services"
+ "mcc": 311,
+ "mnc": 160,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "09",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Tismi"
+ "mcc": 316,
+ "mnc": 940,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "25",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Truphone"
+ "mcc": 310,
+ "mnc": 830,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "01",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Vectone Mobile"
+ "mcc": 312,
+ "mnc": 230,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "998",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Virgin Mobile"
+ "mcc": 316,
+ "mnc": 270,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "38",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Virgin Mobile"
+ "mcc": 310,
+ "mnc": 240,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "07",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Vodafone"
+ "mcc": 311,
+ "mnc": 870,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "92",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Vodafone"
+ "mcc": 316,
+ "mnc": 10,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "89",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Vodafone"
+ "mcc": 311,
+ "mnc": 250,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "15",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Vodafone"
+ "mcc": 312,
+ "mnc": 490,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "91",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Vodafone"
+ "mcc": 316,
+ "mnc": 830,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "77",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Vodafone"
+ "mcc": 310,
+ "mnc": 490,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Voicetec Systems"
+ "mcc": 312,
+ "mnc": 120,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "234",
- "mnc": "99",
- "iso": "gb",
- "country": "United Kingdom",
- "country_code": "44",
- "network": "Ziron"
+ "mcc": 316,
+ "mnc": 230,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": 310,
+ "mnc": 120,
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "050",
+ "mcc": 311,
+ "mnc": 530,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "880",
+ "mcc": 312,
+ "mnc": 870,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "850",
+ "mcc": 311,
+ "mnc": 190,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Aeris Comm. Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "640",
+ "mcc": 310,
+ "mnc": 870,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "510",
+ "mcc": 312,
+ "mnc": 240,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Airtel Wireless LLC"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "190",
+ "mcc": 316,
+ "mnc": 490,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Unknown"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "312",
- "mnc": "090",
+ "mcc": 310,
+ "mnc": 250,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Allied Wireless Communications Corporation"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "130",
+ "mcc": 311,
+ "mnc": 880,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "710",
+ "mcc": 316,
+ "mnc": 120,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Arctic Slope Telephone Association Cooperative Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "410",
+ "mcc": 311,
+ "mnc": 260,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "AT&T Wireless Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "380",
+ "mcc": 312,
+ "mnc": 530,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "AT&T Wireless Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "170",
+ "mcc": 316,
+ "mnc": 870,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "AT&T Wireless Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "150",
+ "mcc": 310,
+ "mnc": 530,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "AT&T Wireless Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "680",
+ "mcc": 312,
+ "mnc": 160,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "AT&T Wireless Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "070",
+ "mcc": 316,
+ "mnc": 240,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "AT&T Wireless Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "560",
+ "mcc": 310,
+ "mnc": 10,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "AT&T Wireless Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "980",
+ "mcc": 311,
+ "mnc": 660,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "AT&T Wireless Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "810",
+ "mcc": 312,
+ "mnc": 880,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Bluegrass Wireless LLC"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "800",
+ "mcc": 311,
+ "mnc": 200,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Bluegrass Wireless LLC"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "440",
+ "mcc": 310,
+ "mnc": 880,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Bluegrass Wireless LLC"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "900",
+ "mcc": 312,
+ "mnc": 250,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cable & Communications Corp."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "590",
+ "mcc": 316,
+ "mnc": 530,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "California RSA No. 3 Limited Partnership"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "500",
+ "mcc": 310,
+ "mnc": 260,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cambridge Telephone Company Inc."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "830",
+ "mcc": 311,
+ "mnc": 882,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Caprock Cellular Ltd."
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "483",
+ "mcc": 316,
+ "mnc": 160,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "110",
+ "mcc": 311,
+ "mnc": 270,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "285",
+ "mcc": 312,
+ "mnc": 660,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "488",
+ "mcc": 311,
+ "mnc": 10,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "274",
+ "mcc": 316,
+ "mnc": 880,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "010",
+ "mcc": 310,
+ "mnc": 660,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "279",
+ "mcc": 312,
+ "mnc": 190,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "288",
+ "mcc": 316,
+ "mnc": 250,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "910",
+ "mcc": 310,
+ "mnc": 200,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "284",
+ "mcc": 311,
+ "mnc": 800,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "482",
+ "mcc": 312,
+ "mnc": 882,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "487",
+ "mcc": 311,
+ "mnc": 230,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "273",
+ "mcc": 310,
+ "mnc": 882,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "310",
- "mnc": "004",
+ "mcc": 312,
+ "mnc": 260,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "T-Mobile"
},
{
- "mcc": "311",
- "mnc": "278",
+ "mcc": 310,
+ "mnc": 20,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Verizon Wireless"
+ "country_code": 1,
+ "network": "Union Wireless"
},
{
- "mcc": "311",
- "mnc": "287",
+ "mcc": 310,
+ "mnc": 595,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "890",
+ "mcc": 311,
+ "mnc": 820,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "283",
+ "mcc": 312,
+ "mnc": 895,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "481",
+ "mcc": 311,
+ "mnc": 281,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "486",
+ "mcc": 312,
+ "mnc": 287,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "272",
+ "mcc": 310,
+ "mnc": 486,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "277",
+ "mcc": 311,
+ "mnc": 592,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "590",
+ "mcc": 312,
+ "mnc": 598,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "282",
+ "mcc": 311,
+ "mnc": 272,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "480",
+ "mcc": 312,
+ "mnc": 278,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "485",
+ "mcc": 310,
+ "mnc": 289,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "271",
+ "mcc": 311,
+ "mnc": 483,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "276",
+ "mcc": 312,
+ "mnc": 489,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "013",
+ "mcc": 310,
+ "mnc": 897,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "281",
+ "mcc": 310,
+ "mnc": 274,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "390",
+ "mcc": 312,
+ "mnc": 110,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "484",
+ "mcc": 310,
+ "mnc": 770,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "270",
+ "mcc": 311,
+ "mnc": 894,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "286",
+ "mcc": 312,
+ "mnc": 910,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "489",
+ "mcc": 311,
+ "mnc": 286,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "275",
+ "mcc": 312,
+ "mnc": 480,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "012",
+ "mcc": 310,
+ "mnc": 591,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "280",
+ "mcc": 311,
+ "mnc": 597,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "289",
+ "mcc": 312,
+ "mnc": 891,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
+ "country_code": 1,
"network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "280",
+ "mcc": 311,
+ "mnc": 277,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cellular Network Partnership LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "270",
+ "mcc": 312,
+ "mnc": 283,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cellular Network Partnership LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "360",
+ "mcc": 310,
+ "mnc": 482,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cellular Network Partnership LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "190",
+ "mcc": 311,
+ "mnc": 488,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "030",
+ "mcc": 312,
+ "mnc": 594,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "120",
+ "mcc": 311,
+ "mnc": 13,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Choice Phone LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "480",
+ "mcc": 310,
+ "mnc": 279,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Choice Phone LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "630",
+ "mcc": 312,
+ "mnc": 274,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "420",
+ "mcc": 311,
+ "mnc": 899,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cincinnati Bell Wireless LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "180",
+ "mcc": 310,
+ "mnc": 285,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cingular Wireless"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "620",
+ "mcc": 311,
+ "mnc": 390,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Coleman County Telco /Trans TX"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "040",
+ "mcc": 312,
+ "mnc": 485,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "06",
+ "mcc": 310,
+ "mnc": 893,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Consolidated Telcom"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "60",
+ "mcc": 310,
+ "mnc": 596,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Consolidated Telcom"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "26",
+ "mcc": 311,
+ "mnc": 890,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "380",
+ "mcc": 312,
+ "mnc": 896,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "930",
+ "mcc": 311,
+ "mnc": 282,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "240",
+ "mcc": 312,
+ "mnc": 288,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "080",
+ "mcc": 310,
+ "mnc": 487,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "700",
+ "mcc": 311,
+ "mnc": 593,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cross Valliant Cellular Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "030",
+ "mcc": 312,
+ "mnc": 599,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cross Wireless Telephone Co."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "140",
+ "mcc": 311,
+ "mnc": 273,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Cross Wireless Telephone Co."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "520",
+ "mcc": 312,
+ "mnc": 279,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "040",
+ "mcc": 310,
+ "mnc": 350,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Custer Telephone Cooperative Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "440",
+ "mcc": 311,
+ "mnc": 484,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Dobson Cellular Systems"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "990",
+ "mcc": 312,
+ "mnc": 590,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "E.N.M.R. Telephone Coop."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "130",
+ "mcc": 310,
+ "mnc": 898,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "East Kentucky Network LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "120",
+ "mcc": 310,
+ "mnc": 275,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "East Kentucky Network LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "750",
+ "mcc": 310,
+ "mnc": 820,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "East Kentucky Network LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "090",
+ "mcc": 311,
+ "mnc": 895,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Edge Wireless LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "610",
+ "mcc": 311,
+ "mnc": 287,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Elkhart TelCo. / Epic Touch Co."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "210",
+ "mcc": 312,
+ "mnc": 481,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "311",
+ "mcc": 310,
+ "mnc": 592,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Farmers"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "460",
+ "mcc": 311,
+ "mnc": 598,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Fisher Wireless Services Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "370",
+ "mcc": 312,
+ "mnc": 892,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "GCI Communication Corp."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "430",
+ "mcc": 311,
+ "mnc": 278,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "GCI Communication Corp."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "920",
+ "mcc": 312,
+ "mnc": 284,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Get Mobile Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "970",
+ "mcc": 310,
+ "mnc": 483,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "340",
+ "mcc": 311,
+ "mnc": 489,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Illinois Valley Cellular RSA 2 Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "030",
+ "mcc": 312,
+ "mnc": 595,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "170",
+ "mcc": 311,
+ "mnc": 110,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Iowa RSA No. 2 Limited Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "410",
+ "mcc": 310,
+ "mnc": 280,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Iowa RSA No. 2 Limited Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "770",
+ "mcc": 312,
+ "mnc": 275,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Iowa Wireless Services LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "650",
+ "mcc": 310,
+ "mnc": 271,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Jasper"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "870",
+ "mcc": 311,
+ "mnc": 910,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Kaplan Telephone Company Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "180",
+ "mcc": 310,
+ "mnc": 286,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Keystone Wireless LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "690",
+ "mcc": 311,
+ "mnc": 480,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Keystone Wireless LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "310",
+ "mcc": 312,
+ "mnc": 486,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Lamar County Cellular"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "016",
+ "mcc": 310,
+ "mnc": 894,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Leap Wireless International Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "090",
+ "mcc": 310,
+ "mnc": 597,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "040",
+ "mcc": 311,
+ "mnc": 891,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Matanuska Tel. Assn. Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "780",
+ "mcc": 312,
+ "mnc": 897,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Message Express Co. / Airlink PCS"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "660",
+ "mcc": 311,
+ "mnc": 283,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "330",
+ "mcc": 312,
+ "mnc": 289,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Michigan Wireless LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "000",
+ "mcc": 310,
+ "mnc": 488,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "400",
+ "mcc": 311,
+ "mnc": 594,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Minnesota South. Wirel. Co. / Hickory"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "020",
+ "mcc": 312,
+ "mnc": 770,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Missouri RSA No 5 Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "010",
+ "mcc": 311,
+ "mnc": 274,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Missouri RSA No 5 Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "220",
+ "mcc": 312,
+ "mnc": 280,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Missouri RSA No 5 Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "010",
+ "mcc": 310,
+ "mnc": 390,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Missouri RSA No 5 Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "920",
+ "mcc": 311,
+ "mnc": 485,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Missouri RSA No 5 Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "350",
+ "mcc": 312,
+ "mnc": 591,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Mohave Cellular LP"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "570",
+ "mcc": 310,
+ "mnc": 899,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "MTPCS LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "290",
+ "mcc": 310,
+ "mnc": 276,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "NEP Cellcorp Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "34",
+ "mcc": 312,
+ "mnc": 271,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Nevada Wireless LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "380",
+ "mcc": 310,
+ "mnc": 890,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "600",
+ "mcc": 310,
+ "mnc": 12,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "New-Cell Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "100",
+ "mcc": 311,
+ "mnc": 896,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "300",
+ "mcc": 310,
+ "mnc": 282,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Nexus Communications Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "130",
+ "mcc": 311,
+ "mnc": 288,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "North Carolina RSA 3 Cellular Tel. Co."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "230",
+ "mcc": 312,
+ "mnc": 482,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "North Dakota Network Company"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "610",
+ "mcc": 310,
+ "mnc": 593,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "North Dakota Network Company"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "450",
+ "mcc": 311,
+ "mnc": 599,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Northeast Colorado Cellular Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "710",
+ "mcc": 312,
+ "mnc": 893,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Northeast Wireless Networks LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "670",
+ "mcc": 311,
+ "mnc": 279,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Northstar"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "011",
+ "mcc": 312,
+ "mnc": 285,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Northstar"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "420",
+ "mcc": 310,
+ "mnc": 484,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Northwest Missouri Cellular Limited Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "540",
+ "mcc": 311,
+ "mnc": 590,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "999",
+ "mcc": 312,
+ "mnc": 596,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Various Networks"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "760",
+ "mcc": 310,
+ "mnc": 281,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Panhandle Telephone Cooperative Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "580",
+ "mcc": 312,
+ "mnc": 276,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "PCS ONE"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "170",
+ "mcc": 310,
+ "mnc": 287,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "PetroCom"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "670",
+ "mcc": 311,
+ "mnc": 481,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Pine Belt Cellular, Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "080",
+ "mcc": 312,
+ "mnc": 487,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "790",
+ "mcc": 310,
+ "mnc": 895,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "100",
+ "mcc": 310,
+ "mnc": 272,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Plateau Telecommunications Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "940",
+ "mcc": 312,
+ "mnc": 12,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Poka Lambro Telco Ltd."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "730",
+ "mcc": 310,
+ "mnc": 598,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "540",
+ "mcc": 311,
+ "mnc": 892,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "500",
+ "mcc": 312,
+ "mnc": 898,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Public Service Cellular Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "160",
+ "mcc": 311,
+ "mnc": 284,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "RSA 1 Limited Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "430",
+ "mcc": 312,
+ "mnc": 350,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "RSA 1 Limited Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "350",
+ "mcc": 310,
+ "mnc": 489,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Sagebrush Cellular Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "910",
+ "mcc": 311,
+ "mnc": 595,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "46",
+ "mcc": 312,
+ "mnc": 820,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "SIMMETRY"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "260",
+ "mcc": 311,
+ "mnc": 275,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "SLO Cellular Inc / Cellular One of San Luis"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "320",
+ "mcc": 312,
+ "mnc": 281,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Smith Bagley Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "15",
+ "mcc": 310,
+ "mnc": 480,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Unknown"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "316",
- "mnc": "011",
+ "mcc": 311,
+ "mnc": 486,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Southern Communications Services Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "530",
+ "mcc": 312,
+ "mnc": 592,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Sprint Spectrum"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "120",
+ "mcc": 310,
+ "mnc": 910,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Sprint Spectrum"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "316",
- "mnc": "010",
+ "mcc": 310,
+ "mnc": 277,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Sprint Spectrum"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "190",
+ "mcc": 312,
+ "mnc": 272,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Sprint Spectrum"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "880",
+ "mcc": 310,
+ "mnc": 891,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Sprint Spectrum"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "870",
+ "mcc": 310,
+ "mnc": 13,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Sprint Spectrum"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "490",
+ "mcc": 311,
+ "mnc": 897,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Sprint Spectrum"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "240",
+ "mcc": 310,
+ "mnc": 283,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "660",
+ "mcc": 311,
+ "mnc": 289,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "230",
+ "mcc": 312,
+ "mnc": 483,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "31",
+ "mcc": 310,
+ "mnc": 594,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "220",
+ "mcc": 311,
+ "mnc": 770,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "270",
+ "mcc": 312,
+ "mnc": 894,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "210",
+ "mcc": 311,
+ "mnc": 280,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "260",
+ "mcc": 312,
+ "mnc": 286,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "200",
+ "mcc": 310,
+ "mnc": 485,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "250",
+ "mcc": 311,
+ "mnc": 591,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "160",
+ "mcc": 312,
+ "mnc": 597,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "800",
+ "mcc": 311,
+ "mnc": 271,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "300",
+ "mcc": 312,
+ "mnc": 277,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "280",
+ "mcc": 310,
+ "mnc": 288,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "330",
+ "mcc": 311,
+ "mnc": 482,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "310",
+ "mcc": 312,
+ "mnc": 488,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "T-Mobile"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "740",
+ "mcc": 310,
+ "mnc": 896,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "740",
+ "mcc": 310,
+ "mnc": 273,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Telemetrix Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "14",
+ "mcc": 312,
+ "mnc": 13,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Testing"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "950",
+ "mcc": 310,
+ "mnc": 599,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Unknown"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "860",
+ "mcc": 311,
+ "mnc": 893,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Texas RSA 15B2 Limited Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "830",
+ "mcc": 312,
+ "mnc": 899,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Thumb Cellular Limited Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "050",
+ "mcc": 311,
+ "mnc": 285,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Thumb Cellular Limited Partnership"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "460",
+ "mcc": 312,
+ "mnc": 390,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "TMP Corporation"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "490",
+ "mcc": 310,
+ "mnc": 590,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Triton PCS"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "860",
+ "mcc": 311,
+ "mnc": 596,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Uintah Basin Electronics Telecommunications Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "960",
+ "mcc": 312,
+ "mnc": 890,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Uintah Basin Electronics Telecommunications Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "312",
- "mnc": "290",
+ "mcc": 311,
+ "mnc": 276,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Uintah Basin Electronics Telecommunications Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "020",
+ "mcc": 312,
+ "mnc": 282,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Union Telephone Co."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "220",
+ "mcc": 310,
+ "mnc": 481,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "United States Cellular Corp."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "730",
+ "mcc": 311,
+ "mnc": 487,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "United States Cellular Corp."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "650",
+ "mcc": 312,
+ "mnc": 593,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "United Wireless Communications Inc."
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "38",
+ "mcc": 311,
+ "mnc": 12,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "USA 3650 AT&T"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "520",
+ "mcc": 310,
+ "mnc": 278,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "VeriSign"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "003",
+ "mcc": 312,
+ "mnc": 273,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Unknown"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "23",
+ "mcc": 310,
+ "mnc": 110,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Unknown"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "24",
+ "mcc": 311,
+ "mnc": 898,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Unknown"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "25",
+ "mcc": 310,
+ "mnc": 284,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Unknown"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "530",
+ "mcc": 311,
+ "mnc": 350,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "West Virginia Wireless"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "26",
+ "mcc": 312,
+ "mnc": 484,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Unknown"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "310",
- "mnc": "340",
+ "mcc": 310,
+ "mnc": 892,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Westlink Communications, LLC"
+ "country_code": 1,
+ "network": "Verizon Wireless"
},
{
- "mcc": "311",
- "mnc": "150",
+ "mcc": 310,
+ "mnc": 740,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": ""
+ "country_code": 1,
+ "network": "Viaero Wireless"
},
{
- "mcc": "311",
- "mnc": "070",
+ "mcc": 310,
+ "mnc": 450,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Wisconsin RSA #7 Limited Partnership"
+ "country_code": 1,
+ "network": "Viaero Wireless"
},
{
- "mcc": "310",
- "mnc": "390",
+ "mcc": 310,
+ "mnc": 860,
"iso": "us",
"country": "United States of America",
- "country_code": "1",
- "network": "Yorkville Telephone Cooperative"
+ "country_code": 1,
+ "network": "West Central Wireless"
},
{
- "mcc": "748",
- "mnc": "03",
+ "mcc": 748,
+ "mnc": 1,
"iso": "uy",
"country": "Uruguay",
- "country_code": "598",
- "network": "Ancel/Antel"
+ "country_code": 598,
+ "network": "Antel Movil"
},
{
- "mcc": "748",
- "mnc": "00",
+ "mcc": 748,
+ "mnc": 10,
"iso": "uy",
"country": "Uruguay",
- "country_code": "598",
- "network": "Ancel/Antel"
+ "country_code": 598,
+ "network": "Claro"
},
{
- "mcc": "748",
- "mnc": "01",
+ "mcc": 748,
+ "mnc": 299,
"iso": "uy",
"country": "Uruguay",
- "country_code": "598",
- "network": "Ancel/Antel"
+ "country_code": 598,
+ "network": "Failed Calls"
},
{
- "mcc": "748",
- "mnc": "10",
+ "mcc": 748,
+ "mnc": 999,
"iso": "uy",
"country": "Uruguay",
- "country_code": "598",
- "network": "Claro/AM Wireless"
+ "country_code": 598,
+ "network": "Fix Line"
},
{
- "mcc": "748",
- "mnc": "07",
+ "mcc": 748,
+ "mnc": 7,
"iso": "uy",
"country": "Uruguay",
- "country_code": "598",
- "network": "MOVISTAR"
+ "country_code": 598,
+ "network": "Movistar"
+ },
+ {
+ "mcc": 434,
+ "mnc": 4,
+ "iso": "uz",
+ "country": "Uzbekistan",
+ "country_code": 998,
+ "network": "Beeline"
},
{
- "mcc": "434",
- "mnc": "04",
+ "mcc": 434,
+ "mnc": 299,
"iso": "uz",
"country": "Uzbekistan",
- "country_code": "998",
- "network": "Bee Line/Unitel"
+ "country_code": 998,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 434,
+ "mnc": 999,
+ "iso": "uz",
+ "country": "Uzbekistan",
+ "country_code": 998,
+ "network": "Fix Line"
},
{
- "mcc": "434",
- "mnc": "01",
+ "mcc": 434,
+ "mnc": 6,
"iso": "uz",
"country": "Uzbekistan",
- "country_code": "998",
- "network": "Buztel"
+ "country_code": 998,
+ "network": "Perfectum Mobile"
},
{
- "mcc": "434",
- "mnc": "07",
+ "mcc": 434,
+ "mnc": 5,
"iso": "uz",
"country": "Uzbekistan",
- "country_code": "998",
- "network": "MTS/Uzdunrobita"
+ "country_code": 998,
+ "network": "Ucell"
},
{
- "mcc": "434",
- "mnc": "05",
+ "mcc": 434,
+ "mnc": 7,
"iso": "uz",
"country": "Uzbekistan",
- "country_code": "998",
- "network": "Ucell/Coscom"
+ "country_code": 998,
+ "network": "UMS"
},
{
- "mcc": "434",
- "mnc": "02",
+ "mcc": 434,
+ "mnc": 3,
"iso": "uz",
"country": "Uzbekistan",
- "country_code": "998",
- "network": "Uzmacom"
+ "country_code": 998,
+ "network": "UzMobile"
+ },
+ {
+ "mcc": 541,
+ "mnc": 5,
+ "iso": "vu",
+ "country": "Vanuatu",
+ "country_code": 678,
+ "network": "Digicel"
},
{
- "mcc": "541",
- "mnc": "05",
+ "mcc": 541,
+ "mnc": 299,
"iso": "vu",
"country": "Vanuatu",
- "country_code": "678",
- "network": "DigiCel"
+ "country_code": 678,
+ "network": "Failed Calls"
},
{
- "mcc": "541",
- "mnc": "01",
+ "mcc": 541,
+ "mnc": 999,
"iso": "vu",
"country": "Vanuatu",
- "country_code": "678",
- "network": "SMILE"
+ "country_code": 678,
+ "network": "Fix Line"
},
{
- "mcc": "225",
- "mnc": "299",
- "iso": "va",
- "country": "Vatican",
- "country_code": "",
- "network": "Failed Calls"
+ "mcc": 541,
+ "mnc": 1,
+ "iso": "vu",
+ "country": "Vanuatu",
+ "country_code": 678,
+ "network": "Smile"
},
{
- "mcc": "734",
- "mnc": "03",
+ "mcc": 734,
+ "mnc": 2,
"iso": "ve",
"country": "Venezuela",
- "country_code": "58",
- "network": "DigiTel C.A."
+ "country_code": 58,
+ "network": "Digitel"
},
{
- "mcc": "734",
- "mnc": "02",
+ "mcc": 734,
+ "mnc": 299,
"iso": "ve",
"country": "Venezuela",
- "country_code": "58",
- "network": "DigiTel C.A."
+ "country_code": 58,
+ "network": "Failed Calls"
},
{
- "mcc": "734",
- "mnc": "01",
+ "mcc": 734,
+ "mnc": 999,
"iso": "ve",
"country": "Venezuela",
- "country_code": "58",
- "network": "DigiTel C.A."
+ "country_code": 58,
+ "network": "Fix Line"
},
{
- "mcc": "734",
- "mnc": "06",
+ "mcc": 734,
+ "mnc": 6,
"iso": "ve",
"country": "Venezuela",
- "country_code": "58",
- "network": "Movilnet C.A. "
+ "country_code": 58,
+ "network": "Movilnet"
},
{
- "mcc": "734",
- "mnc": "04",
+ "mcc": 734,
+ "mnc": 4,
"iso": "ve",
"country": "Venezuela",
- "country_code": "58",
- "network": "Movistar/TelCel"
+ "country_code": 58,
+ "network": "Movistar"
},
{
- "mcc": "452",
- "mnc": "07",
+ "mcc": 452,
+ "mnc": 299,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
- "network": "Gmobile"
+ "country_code": 84,
+ "network": "Failed Calls"
},
{
- "mcc": "452",
- "mnc": "08",
+ "mcc": 452,
+ "mnc": 999,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
- "network": "I-Telecom"
+ "country_code": 84,
+ "network": "Fix Line"
},
{
- "mcc": "452",
- "mnc": "08",
+ "mcc": 452,
+ "mnc": 7,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
- "network": "I-Telecom"
+ "country_code": 84,
+ "network": "Gmobile"
},
{
- "mcc": "452",
- "mnc": "08",
+ "mcc": 452,
+ "mnc": 8,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
+ "country_code": 84,
"network": "I-Telecom"
},
{
- "mcc": "452",
- "mnc": "01",
+ "mcc": 452,
+ "mnc": 1,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
+ "country_code": 84,
"network": "MobiFone"
},
{
- "mcc": "452",
- "mnc": "09",
+ "mcc": 452,
+ "mnc": 9,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
+ "country_code": 84,
"network": "Reddi"
},
{
- "mcc": "452",
- "mnc": "03",
- "iso": "vn",
- "country": "Vietnam",
- "country_code": "84",
- "network": "S-Fone/Telecom"
- },
- {
- "mcc": "452",
- "mnc": "05",
+ "mcc": 452,
+ "mnc": 5,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
+ "country_code": 84,
"network": "Vietnamobile"
},
{
- "mcc": "452",
- "mnc": "06",
+ "mcc": 452,
+ "mnc": 6,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
+ "country_code": 84,
"network": "Viettel"
},
{
- "mcc": "452",
- "mnc": "04",
+ "mcc": 452,
+ "mnc": 4,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
+ "country_code": 84,
"network": "Viettel"
},
{
- "mcc": "452",
- "mnc": "02",
+ "mcc": 452,
+ "mnc": 2,
"iso": "vn",
"country": "Vietnam",
- "country_code": "84",
+ "country_code": 84,
"network": "VinaPhone"
},
{
- "mcc": "376",
- "mnc": "50",
+ "mcc": 376,
+ "mnc": 299,
"iso": "vi",
"country": "Virgin Islands",
- "country_code": "1340",
- "network": "Digicel"
+ "country_code": 1340,
+ "network": "Failed Calls"
},
{
- "mcc": "543",
- "mnc": "299",
- "iso": "wf",
- "country": "Wallis and Futuna",
- "country_code": "",
- "network": "Failed Calls"
+ "mcc": 376,
+ "mnc": 999,
+ "iso": "vi",
+ "country": "Virgin Islands",
+ "country_code": 1340,
+ "network": "Fix Line"
},
{
- "mcc": "543",
- "mnc": "01",
- "iso": "wf",
- "country": "Wallis and Futuna",
- "country_code": "",
- "network": "Manuia"
+ "mcc": 421,
+ "mnc": 299,
+ "iso": "ye",
+ "country": "Yemen",
+ "country_code": 967,
+ "network": "Failed Calls"
},
{
- "mcc": "421",
- "mnc": "999",
+ "mcc": 421,
+ "mnc": 999,
"iso": "ye",
"country": "Yemen",
- "country_code": "967",
+ "country_code": 967,
"network": "Fix Line"
},
{
- "mcc": "421",
- "mnc": "04",
+ "mcc": 421,
+ "mnc": 1,
"iso": "ye",
"country": "Yemen",
- "country_code": "967",
- "network": "HITS/Y Unitel"
+ "country_code": 967,
+ "network": "SabaFon"
},
{
- "mcc": "421",
- "mnc": "02",
+ "mcc": 421,
+ "mnc": 2,
"iso": "ye",
"country": "Yemen",
- "country_code": "967",
- "network": "MTN/Spacetel"
+ "country_code": 967,
+ "network": "Spacetel"
},
{
- "mcc": "421",
- "mnc": "01",
+ "mcc": 421,
+ "mnc": 4,
"iso": "ye",
"country": "Yemen",
- "country_code": "967",
- "network": "Sabaphone"
+ "country_code": 967,
+ "network": "Y"
},
{
- "mcc": "421",
- "mnc": "03",
+ "mcc": 421,
+ "mnc": 3,
"iso": "ye",
"country": "Yemen",
- "country_code": "967",
- "network": "Yemen Mob. CDMA"
+ "country_code": 967,
+ "network": "Yemen Mobile"
},
{
- "mcc": "645",
- "mnc": "01",
+ "mcc": 645,
+ "mnc": 1,
"iso": "zm",
"country": "Zambia",
- "country_code": "260",
+ "country_code": 260,
"network": "Airtel"
},
{
- "mcc": "645",
- "mnc": "299",
+ "mcc": 645,
+ "mnc": 299,
"iso": "zm",
"country": "Zambia",
- "country_code": "260",
+ "country_code": 260,
"network": "Failed Calls"
},
{
- "mcc": "645",
- "mnc": "02",
+ "mcc": 645,
+ "mnc": 999,
+ "iso": "zm",
+ "country": "Zambia",
+ "country_code": 260,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 645,
+ "mnc": 2,
"iso": "zm",
"country": "Zambia",
- "country_code": "260",
+ "country_code": 260,
"network": "MTN"
},
{
- "mcc": "645",
- "mnc": "03",
+ "mcc": 645,
+ "mnc": 3,
"iso": "zm",
"country": "Zambia",
- "country_code": "260",
+ "country_code": 260,
"network": "Zamtel"
},
{
- "mcc": "648",
- "mnc": "04",
+ "mcc": 648,
+ "mnc": 4,
"iso": "zw",
"country": "Zimbabwe",
- "country_code": "263",
+ "country_code": 263,
"network": "Econet"
},
{
- "mcc": "648",
- "mnc": "01",
+ "mcc": 648,
+ "mnc": 299,
+ "iso": "zw",
+ "country": "Zimbabwe",
+ "country_code": 263,
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": 648,
+ "mnc": 999,
+ "iso": "zw",
+ "country": "Zimbabwe",
+ "country_code": 263,
+ "network": "Fix Line"
+ },
+ {
+ "mcc": 648,
+ "mnc": 1,
"iso": "zw",
"country": "Zimbabwe",
- "country_code": "263",
+ "country_code": 263,
"network": "NetOne"
},
{
- "mcc": "648",
- "mnc": "03",
+ "mcc": 648,
+ "mnc": 3,
"iso": "zw",
"country": "Zimbabwe",
- "country_code": "263",
+ "country_code": 263,
"network": "Telecel"
}
-]
+]
\ No newline at end of file
diff --git a/mcc-mnc-table.xml b/mcc-mnc-table.xml
index c5b7521b..23a3b594 100644
--- a/mcc-mnc-table.xml
+++ b/mcc-mnc-table.xml
@@ -1,20796 +1,23735 @@
-
-
- 289
- 88
- ge
- Abkhazia
- 7
- A-Mobile
-
-
- 289
- 68
- ge
- Abkhazia
- 7
- A-Mobile
-
-
- 289
- 67
- ge
- Abkhazia
- 7
- Aquafon
-
-
- 412
- 01
- af
- Afghanistan
- 93
- AWCC
-
-
- 412
- 50
- af
- Afghanistan
- 93
- Etisalat
-
-
- 412
- 30
- af
- Afghanistan
- 93
- Etisalat
-
-
- 412
- 80
- af
- Afghanistan
- 93
- Mobifone
-
-
- 412
- 88
- af
- Afghanistan
- 93
- Mobifone
-
-
- 412
- 40
- af
- Afghanistan
- 93
- MTN
-
-
- 412
- 20
- af
- Afghanistan
- 93
- Roshan
-
-
- 412
- 03
- af
- Afghanistan
- 93
- WaselTelecom (WT)
-
-
- 276
- 03
- al
- Albania
- 355
- ALBtelecom Mobile / Eagle
-
-
- 276
- 01
- al
- Albania
- 355
- One / AMC
-
-
- 276
- 04
- al
- Albania
- 355
- PLUS Communication Sh.a
-
-
- 276
- 02
- al
- Albania
- 355
- Vodafone
-
-
- 603
- 02
- dz
- Algeria
- 213
- Djezzy
-
-
- 603
- 01
- dz
- Algeria
- 213
- Mobilis
-
-
- 603
- 03
- dz
- Algeria
- 213
- Ooredoo
-
-
- 544
- 780
- as
- American Samoa
- 684
- ASTCA Mobile
-
-
- 544
- 11
- as
- American Samoa
- 684
- BlueSky
-
-
- 213
- 03
- ad
- Andorra
- 376
- Andorra Telecom / Mobiland
-
-
- 631
- 04
- ao
- Angola
- 244
- MoviCel
-
-
- 631
- 02
- ao
- Angola
- 244
- Unitel
-
-
- 365
- 850
- ai
- Anguilla
- 1264
- Digicel
-
-
- 365
- 840
- ai
- Anguilla
- 1264
- Flow
-
-
- 344
- 93
- ag
- Antigua and Barbuda
- 1268
- Digicel
-
-
- 344
- 930
- ag
- Antigua and Barbuda
- 1268
- Digicel
-
-
- 344
- 92
- ag
- Antigua and Barbuda
- 1268
- Flow
-
-
- 344
- 920
- ag
- Antigua and Barbuda
- 1268
- Flow
-
-
- 344
- 03
- ag
- Antigua and Barbuda
- 1268
- imobile / APUA
-
-
- 344
- 030
- ag
- Antigua and Barbuda
- 1268
- imobile / APUA
-
-
- 722
- 310
- ar
- Argentina
- 54
- Claro
-
-
- 722
- 330
- ar
- Argentina
- 54
- Claro
-
-
- 722
- 031
- ar
- Argentina
- 54
- Claro
-
-
- 722
- 320
- ar
- Argentina
- 54
- Claro
-
-
- 722
- 299
- ar
- Argentina
- 54
- Express
-
-
- 722
- 999
- ar
- Argentina
- 54
- Fix Line
-
-
- 722
- 299
- ar
- Argentina
- 54
- Imowi
-
-
- 722
- 299
- ar
- Argentina
- 54
- IPLAN
-
-
- 722
- 299
- ar
- Argentina
- 54
- Kallofer
-
-
- 722
- 010
- ar
- Argentina
- 54
- Movistar
-
-
- 722
- 007
- ar
- Argentina
- 54
- Movistar
-
-
- 722
- 070
- ar
- Argentina
- 54
- Movistar
-
-
- 722
- 007
- ar
- Argentina
- 54
- Movistar/Telefonica
-
-
- 722
- 070
- ar
- Argentina
- 54
- Movistar/Telefonica
-
-
- 722
- 020
- ar
- Argentina
- 54
- Nextel
-
-
- 722
- 299
- ar
- Argentina
- 54
- Nuestro
-
-
- 722
- 034
- ar
- Argentina
- 54
- Personal
-
-
- 722
- 299
- ar
- Argentina
- 54
- Telecentro
-
-
- 722
- 341
- ar
- Argentina
- 54
- Personal
-
-
- 722
- 340
- ar
- Argentina
- 54
- Personal
-
-
- 283
- 01
- am
- Armenia
- 374
- Beeline
-
-
- 283
- 04
- am
- Armenia
- 374
- KT
-
-
- 283
- 10
- am
- Armenia
- 374
- Orange
-
-
- 283
- 05
- am
- Armenia
- 374
- Viva-MTS
-
-
- 363
- 02
- aw
- Aruba
- 297
- Digicel
-
-
- 363
- 20
- aw
- Aruba
- 297
- Digicel
-
-
- 363
- 299
- aw
- Aruba
- 297
- MIO
-
-
- 363
- 01
- aw
- Aruba
- 297
- SETAR
-
-
- 505
- 14
- au
- Australia
- 61
- AAPT Ltd.
-
-
- 505
- 299
- au
- Australia
- 61
- ACMA
-
-
- 505
- 24
- au
- Australia
- 61
- Advanced Comm Tech Pty.
-
-
- 505
- 09
- au
- Australia
- 61
- Airnet Commercial Australia Ltd..
-
-
- 505
- 30
- au
- Australia
- 61
- Compatel
-
-
- 505
- 04
- au
- Australia
- 61
- Department of Defense
-
-
- 505
- 999
- au
- Australia
- 61
- Fix Line
-
-
- 505
- 299
- au
- Australia
- 61
- Get SIM
-
-
- 505
- 12
- au
- Australia
- 61
- H3G Ltd.
-
-
- 505
- 06
- au
- Australia
- 61
- H3G Ltd.
-
-
- 505
- 88
- au
- Australia
- 61
- Pivotel Group Ltd
-
-
- 505
- 19
- au
- Australia
- 61
- Lycamobile
-
-
- 505
- 35
- au
- Australia
- 61
- MessageBird
-
-
- 505
- 10
- au
- Australia
- 61
- Norfolk Telecom
-
-
- 505
- 08
- au
- Australia
- 61
- Railcorp/Vodafone
-
-
- 505
- 99
- au
- Australia
- 61
- Railcorp/Vodafone
-
-
- 505
- 90
- au
- Australia
- 61
- Optus
-
-
- 505
- 50
- au
- Australia
- 61
- Pivotel
-
-
- 505
- 88
- au
- Australia
- 61
- Pivotel
-
-
- 505
- 13
- au
- Australia
- 61
- RailCorp
-
-
- 505
- 13
- au
- Australia
- 61
- Railcorp/Vodafone
-
-
- 505
- 26
- au
- Australia
- 61
- Sinch
-
-
- 505
- 02
- au
- Australia
- 61
- Optus
-
-
- 505
- 299
- au
- Australia
- 61
- Symbio
-
-
- 505
- 11
- au
- Australia
- 61
- Telstra
-
-
- 505
- 72
- au
- Australia
- 61
- Telstra
-
-
- 505
- 01
- au
- Australia
- 61
- Telstra
-
-
- 505
- 39
- au
- Australia
- 61
- Telstra
-
-
- 505
- 71
- au
- Australia
- 61
- Telstra
-
-
- 505
- 01
- au
- Australia
- 61
- Telstra
-
-
- 505
- 05
- au
- Australia
- 61
- The Ozitel Network Pty.
-
-
- 505
- 16
- au
- Australia
- 61
- VicTrack
-
-
- 505
- 03
- au
- Australia
- 61
- Vodafone
-
-
- 505
- 06
- au
- Australia
- 61
- Vodafone
-
-
- 505
- 12
- au
- Australia
- 61
- Vodafone
-
-
- 505
- 07
- au
- Australia
- 61
- Vodafone
-
-
- 232
- 11
- at
- Austria
- 43
- A1 Telekom
-
-
- 232
- 01
- at
- Austria
- 43
- A1 Telekom
-
-
- 232
- 09
- at
- Austria
- 43
- A1 Telekom
-
-
- 232
- 12
- at
- Austria
- 43
- A1 Telekom
-
-
- 232
- 02
- at
- Austria
- 43
- A1 Telekom
-
-
- 232
- 299
- at
- Austria
- 43
- ArgoNET
-
-
- 232
- 15
- at
- Austria
- 43
- T-Mobile / Magenta
-
-
- 232
- 299
- at
- Austria
- 43
- DIALOG telekom
-
-
- 232
- 299
- at
- Austria
- 43
- Digital Privacy
-
-
- 232
- 299
- at
- Austria
- 43
- DIMOCO
-
-
- 232
- 299
- at
- Austria
- 43
- educom
-
-
- 232
- 999
- at
- Austria
- 43
- Fix Line
-
-
- 232
- 25
- at
- Austria
- 43
- Holding Graz
-
-
- 232
- 299
- at
- Austria
- 43
- Holding Graz
-
-
- 232
- 19
- at
- Austria
- 43
- Hutchinson Drei
-
-
- 232
- 14
- at
- Austria
- 43
- Hutchinson Drei
-
-
- 232
- 16
- at
- Austria
- 43
- Hutchinson Drei
-
-
- 232
- 10
- at
- Austria
- 43
- Hutchinson Drei
-
-
- 232
- 05
- at
- Austria
- 43
- Hutchinson Drei
-
-
- 232
- 299
- at
- Austria
- 43
- Innsbrucker Kommunalbetriebe
-
-
- 232
- 299
- at
- Austria
- 43
- kabelplus
-
-
- 232
- 299
- at
- Austria
- 43
- Lenovo Connect
-
-
- 232
- 299
- at
- Austria
- 43
- LINK Mobility
-
-
- 232
- 26
- at
- Austria
- 43
- LIWEST Mobil
-
-
- 232
- 299
- at
- Austria
- 43
- LIWEST Mobil
-
-
- 232
- 17
- at
- Austria
- 43
- Mass Response Service
-
-
- 232
- 20
- at
- Austria
- 43
- Mtel
-
-
- 232
- 91
- at
- Austria
- 43
- OBB Infrastruktur
-
-
- 232
- 299
- at
- Austria
- 43
- OBB Infrastruktur
-
-
- 232
- 06
- at
- Austria
- 43
- Hutchison Drei / 3
-
-
- 232
- 22
- at
- Austria
- 43
- Plintron
-
-
- 232
- 299
- at
- Austria
- 43
- Plintron
-
-
- 232
- 299
- at
- Austria
- 43
- Simple SMS
-
-
- 232
- 299
- at
- Austria
- 43
- Skymond Mobile
-
-
- 232
- 299
- at
- Austria
- 43
- Smartel Services
-
-
- 232
- 24
- at
- Austria
- 43
- Smartel Services
-
-
- 232
- 299
- at
- Austria
- 43
- smartspace
-
-
- 232
- 18
- at
- Austria
- 43
- smartspace
-
-
- 232
- 07
- at
- Austria
- 43
- T-Mobile / Magenta
-
-
- 232
- 04
- at
- Austria
- 43
- T-Mobile / Magenta
-
-
- 232
- 03
- at
- Austria
- 43
- T-Mobile / Magenta
-
-
- 232
- 13
- at
- Austria
- 43
- T-Mobile / Magenta
-
-
- 232
- 23
- at
- Austria
- 43
- T-Mobile / Magenta
-
-
- 232
- 08
- at
- Austria
- 43
- A1 Telekom
-
-
- 232
- 299
- at
- Austria
- 43
- Telfoni
-
-
- 232
- 27
- at
- Austria
- 43
- Tismi
-
-
- 232
- 299
- at
- Austria
- 43
- Tismi
-
-
- 232
- 299
- at
- Austria
- 43
- Ventocom
-
-
- 400
- 01
- az
- Azerbaijan
- 994
- Azercell
-
-
- 400
- 02
- az
- Azerbaijan
- 994
- Bakcell
-
-
- 400
- 03
- az
- Azerbaijan
- 994
- FONEX
-
-
- 400
- 04
- az
- Azerbaijan
- 994
- Nar Mobile
-
-
- 400
- 06
- az
- Azerbaijan
- 994
- Naxtel
-
-
- 364
- 490
- bs
- Bahamas
- 1242
- Aliv
-
-
- 364
- 390
- bs
- Bahamas
- 1242
- Cybercell / BaTelCo
-
-
- 364
- 30
- bs
- Bahamas
- 1242
- Cybercell / BaTelCo
-
-
- 364
- 39
- bs
- Bahamas
- 1242
- Cybercell / BaTelCo
-
-
- 364
- 03
- bs
- Bahamas
- 1242
- Smart Communications
-
-
- 426
- 01
- bh
- Bahrain
- 973
- Batelco
-
-
- 426
- 299
- bh
- Bahrain
- 973
- Failed Calls
-
-
- 426
- 999
- bh
- Bahrain
- 973
- Fix Line
-
-
- 426
- 05
- bh
- Bahrain
- 973
- Royal Court
-
-
- 426
- 04
- bh
- Bahrain
- 973
- VIVA
-
-
- 426
- 02
- bh
- Bahrain
- 973
- Zain
-
-
- 470
- 07
- bd
- Bangladesh
- 880
- Airtel
-
-
- 470
- 02
- bd
- Bangladesh
- 880
- Airtel
-
-
- 470
- 03
- bd
- Bangladesh
- 880
- Banglalink
-
-
- 470
- 06
- bd
- Bangladesh
- 880
- Citycell
-
-
- 470
- 05
- bd
- Bangladesh
- 880
- Citycell
-
-
- 470
- 01
- bd
- Bangladesh
- 880
- GrameenPhone
-
-
- 470
- 04
- bd
- Bangladesh
- 880
- TeleTalk
-
-
- 470
- 07
- bd
- Bangladesh
- 880
- Airtel/Warid
-
-
- 342
- 810
- bb
- Barbados
- 1246
- Cingular Wireless
-
-
- 342
- 750
- bb
- Barbados
- 1246
- Digicel
-
-
- 342
- 050
- bb
- Barbados
- 1246
- Digicel
-
-
- 342
- 299
- bb
- Barbados
- 1246
- Failed Calls
-
-
- 342
- 600
- bb
- Barbados
- 1246
- Flow / Lime
-
-
- 342
- 299
- bb
- Barbados
- 1246
- Ozone
-
-
- 342
- 820
- bb
- Barbados
- 1246
- Sunbeach
-
-
- 257
- 03
- by
- Belarus
- 375
- BelCel JV
-
-
- 257
- 04
- by
- Belarus
- 375
- life:)
-
-
- 257
- 01
- by
- Belarus
- 375
- MDC/Velcom
-
-
- 257
- 02
- by
- Belarus
- 375
- MTS
-
-
- 257
- 01
- by
- Belarus
- 375
- velcom A1
-
-
- 206
- 20
- be
- Belgium
- 32
- Base
-
-
- 206
- 05
- be
- Belgium
- 32
- Base
-
-
- 206
- 28
- be
- Belgium
- 32
- BICS
-
-
- 206
- 25
- be
- Belgium
- 32
- Dense Air
-
-
- 206
- 23
- be
- Belgium
- 32
- Dust Mobile
-
-
- 206
- 33
- be
- Belgium
- 32
- Ericsson
-
-
- 206
- 299
- be
- Belgium
- 32
- FEBO
-
-
- 206
- 999
- be
- Belgium
- 32
- Fix Line
-
-
- 206
- 299
- be
- Belgium
- 32
- GianCom
-
-
- 206
- 02
- be
- Belgium
- 32
- Infrabel
-
-
- 206
- 299
- be
- Belgium
- 32
- interactive digital media / IDM
-
-
- 206
- 299
- be
- Belgium
- 32
- L-mobi
-
-
- 206
- 99
- be
- Belgium
- 32
- Lancelot
-
-
- 206
- 299
- be
- Belgium
- 32
- Legos
-
-
- 206
- 06
- be
- Belgium
- 32
- Lycamobile
-
-
- 206
- 30
- be
- Belgium
- 32
- Mobile Vikings
-
-
- 206
- 10
- be
- Belgium
- 32
- Mobistar / Orange
-
-
- 206
- 299
- be
- Belgium
- 32
- Nord Connect
-
-
- 206
- 34
- be
- Belgium
- 32
- onoff
-
-
- 206
- 299
- be
- Belgium
- 32
- PM Factory
-
-
- 206
- 01
- be
- Belgium
- 32
- Proximus
-
-
- 206
- 04
- be
- Belgium
- 32
- Proximus
-
-
- 206
- 00
- be
- Belgium
- 32
- Proximus
-
-
- 206
- 05
- be
- Belgium
- 32
- Telenet Mobile
-
-
- 206
- 07
- be
- Belgium
- 32
- Vectone Mobile
-
-
- 206
- 08
- be
- Belgium
- 32
- VOOmobile
-
-
- 206
- 299
- be
- Belgium
- 32
- Voxbone / Bandwidth
-
-
- 702
- 67
- bz
- Belize
- 501
- DigiCell
-
-
- 702
- 299
- bz
- Belize
- 501
- Failed Calls
-
-
- 702
- 68
- bz
- Belize
- 501
- International Telco (INTELCO)
-
-
- 702
- 099
- bz
- Belize
- 501
- Smart
-
-
- 702
- 69
- bz
- Belize
- 501
- Smart
-
-
- 616
- 04
- bj
- Benin
- 229
- Bell Benin/BBCOM
-
-
- 616
- 05
- bj
- Benin
- 229
- GloMobile
-
-
- 616
- 01
- bj
- Benin
- 229
- Libercom
-
-
- 616
- 02
- bj
- Benin
- 229
- Moov
-
-
- 616
- 03
- bj
- Benin
- 229
- MTN
-
-
- 350
- 000
- bm
- Bermuda
- 1441
- Bermuda Digital Communications Ltd (BDC)
-
-
- 350
- 99
- bm
- Bermuda
- 1441
- CellOne Ltd
-
-
- 350
- 01
- bm
- Bermuda
- 1441
- Digicel
-
-
- 350
- 299
- bm
- Bermuda
- 1441
- Failed Calls
-
-
- 350
- 02
- bm
- Bermuda
- 1441
- M3 Wireless Ltd
-
-
- 350
- 000
- bm
- Bermuda
- 1441
- One
-
-
- 350
- 01
- bm
- Bermuda
- 1441
- Telecommunications (Bermuda & West Indies) Ltd (Digicel Bermuda)
-
-
- 402
- 11
- bt
- Bhutan
- 975
- B-Mobile
-
-
- 402
- 17
- bt
- Bhutan
- 975
- Bhutan Telecom Ltd (BTL)
-
-
- 402
- 77
- bt
- Bhutan
- 975
- TashiCell
-
-
- 736
- 02
- bo
- Bolivia
- 591
- Entel Pcs
-
-
- 736
- 01
- bo
- Bolivia
- 591
- Viva/Nuevatel
-
-
- 736
- 03
- bo
- Bolivia
- 591
- Tigo
-
-
- 362
- 999
- bq
- Bonaire, Sint Eustatius and Saba
- 599
- Fix Line
-
-
- 218
- 90
- ba
- Bosnia and Herzegovina
- 387
- BH Mobile
-
-
- 218
- 03
- ba
- Bosnia and Herzegovina
- 387
- Eronet
-
-
- 218
- 05
- ba
- Bosnia and Herzegovina
- 387
- m:tel
-
-
- 652
- 04
- bw
- Botswana
- 267
- beMobile
-
-
- 652
- 01
- bw
- Botswana
- 267
- Mascom
-
-
- 652
- 02
- bw
- Botswana
- 267
- Orange
-
-
- 724
- 26
- br
- Brazil
- 55
- AmericaNet
-
-
- 724
- 12
- br
- Brazil
- 55
- Claro/Albra/America Movil
-
-
- 724
- 38
- br
- Brazil
- 55
- Claro/Albra/America Movil
-
-
- 724
- 05
- br
- Brazil
- 55
- Claro/Albra/America Movil
-
-
- 724
- 01
- br
- Brazil
- 55
- Vivo S.A./Telemig
-
-
- 724
- 34
- br
- Brazil
- 55
- CTBC Celular SA (CTBC)
-
-
- 724
- 33
- br
- Brazil
- 55
- CTBC Celular SA (CTBC)
-
-
- 724
- 32
- br
- Brazil
- 55
- CTBC Celular SA (CTBC)
-
-
- 724
- 08
- br
- Brazil
- 55
- TIM
-
-
- 724
- 39
- br
- Brazil
- 55
- Nextel (Telet)
-
-
- 724
- 00
- br
- Brazil
- 55
- Nextel (Telet)
-
-
- 724
- 16
- br
- Brazil
- 55
- Brazil Telcom
-
-
- 724
- 24
- br
- Brazil
- 55
- Amazonia Celular S/A
-
-
- 724
- 30
- br
- Brazil
- 55
- Oi (TNL PCS / Oi)
-
-
- 724
- 31
- br
- Brazil
- 55
- Oi (TNL PCS / Oi)
-
-
- 724
- 54
- br
- Brazil
- 55
- PORTO SEGURO TELECOMUNICACOES
-
-
- 724
- 15
- br
- Brazil
- 55
- Sercontel Cel
-
-
- 724
- 07
- br
- Brazil
- 55
- CTBC/Triangulo
-
-
- 724
- 19
- br
- Brazil
- 55
- Vivo S.A./Telemig
-
-
- 724
- 03
- br
- Brazil
- 55
- TIM
-
-
- 724
- 02
- br
- Brazil
- 55
- TIM
-
-
- 724
- 04
- br
- Brazil
- 55
- TIM
-
-
- 724
- 37
- br
- Brazil
- 55
- Unicel do Brasil Telecomunicacoes Ltda
-
-
- 724
- 10
- br
- Brazil
- 55
- Vivo S.A./Telemig
-
-
- 724
- 06
- br
- Brazil
- 55
- Vivo S.A./Telemig
-
-
- 724
- 23
- br
- Brazil
- 55
- Vivo S.A./Telemig
-
-
- 724
- 11
- br
- Brazil
- 55
- Vivo S.A./Telemig
-
-
- 348
- 570
- vg
- British Virgin Islands
- 284
- Caribbean Cellular
-
-
- 348
- 770
- vg
- British Virgin Islands
- 284
- Digicel
-
-
- 348
- 170
- vg
- British Virgin Islands
- 284
- LIME
-
-
- 528
- 02
- bn
- Brunei
- 673
- b-mobile
-
-
- 528
- 11
- bn
- Brunei
- 673
- Datastream (DTSCom)
-
-
- 528
- 01
- bn
- Brunei
- 673
- Telekom Brunei Bhd (TelBru)
-
-
- 284
- 01
- bg
- Bulgaria
- 359
- A1
-
-
- 284
- 06
- bg
- Bulgaria
- 359
- Vivacom
-
-
- 284
- 03
- bg
- Bulgaria
- 359
- Vivacom
-
-
- 284
- 11
- bg
- Bulgaria
- 359
- Bulsatcom
-
-
- 284
- 13
- bg
- Bulgaria
- 359
- T.com
-
-
- 284
- 05
- bg
- Bulgaria
- 359
- Telenor
-
-
- 284
- 03
- bg
- Bulgaria
- 359
- Vivacom
-
-
- 613
- 02
- bf
- Burkina Faso
- 226
- Orange
-
-
- 613
- 03
- bf
- Burkina Faso
- 226
- Telecel
-
-
- 613
- 01
- bf
- Burkina Faso
- 226
- Telmob
-
-
- 642
- 02
- bi
- Burundi
- 257
- Africel / Safaris
-
-
- 642
- 999
- bi
- Burundi
- 257
- Fix Line
-
-
- 642
- 82
- bi
- Burundi
- 257
- Leo
-
-
- 642
- 01
- bi
- Burundi
- 257
- Leo
-
-
- 642
- 08
- bi
- Burundi
- 257
- Lumitel
-
-
- 642
- 03
- bi
- Burundi
- 257
- ONAMOB
-
-
- 642
- 07
- bi
- Burundi
- 257
- Smart
-
-
- 456
- 04
- kh
- Cambodia
- 855
- QB
-
-
- 456
- 01
- kh
- Cambodia
- 855
- Cellcard
-
-
- 456
- 299
- kh
- Cambodia
- 855
- CooTel
-
-
- 456
- 08
- kh
- Cambodia
- 855
- Metfone
-
-
- 456
- 18
- kh
- Cambodia
- 855
- Cellcard
-
-
- 456
- 299
- kh
- Cambodia
- 855
- MPTC
-
-
- 456
- 03
- kh
- Cambodia
- 855
- QB/Cambodia Adv. Comms.
-
-
- 456
- 11
- kh
- Cambodia
- 855
- Seatel
-
-
- 456
- 06
- kh
- Cambodia
- 855
- Smart
-
-
- 456
- 05
- kh
- Cambodia
- 855
- Smart
-
-
- 456
- 02
- kh
- Cambodia
- 855
- Smart
-
-
- 456
- 09
- kh
- Cambodia
- 855
- Sotelco/Beeline
-
-
- 624
- 01
- cm
- Cameroon
- 237
- MTN
-
-
- 624
- 04
- cm
- Cameroon
- 237
- Nexttel
-
-
- 624
- 02
- cm
- Cameroon
- 237
- Orange
-
-
- 302
- 652
- ca
- Canada
- 1
- BC Tel Mobility
-
-
- 302
- 630
- ca
- Canada
- 1
- Bell Aliant
-
-
- 302
- 610
- ca
- Canada
- 1
- Bell Mobility
-
-
- 302
- 651
- ca
- Canada
- 1
- Bell Mobility
-
-
- 302
- 670
- ca
- Canada
- 1
- CityWest Mobility
-
-
- 302
- 361
- ca
- Canada
- 1
- Clearnet
-
-
- 302
- 360
- ca
- Canada
- 1
- Clearnet
-
-
- 302
- 380
- ca
- Canada
- 1
- DMTS Mobility
-
-
- 302
- 710
- ca
- Canada
- 1
- Globalstar Canada
-
-
- 302
- 640
- ca
- Canada
- 1
- Latitude Wireless
-
-
- 302
- 370
- ca
- Canada
- 1
- FIDO (Rogers AT&T/ Microcell)
-
-
- 302
- 320
- ca
- Canada
- 1
- mobilicity
-
-
- 302
- 702
- ca
- Canada
- 1
- MT&T Mobility
-
-
- 302
- 660
- ca
- Canada
- 1
- MTS Mobility
-
-
- 302
- 655
- ca
- Canada
- 1
- MTS Mobility
-
-
- 302
- 701
- ca
- Canada
- 1
- NB Tel Mobility
-
-
- 302
- 703
- ca
- Canada
- 1
- New Tel Mobility
-
-
- 302
- 760
- ca
- Canada
- 1
- Public Mobile
-
-
- 302
- 657
- ca
- Canada
- 1
- Quebectel Mobility
-
-
- 302
- 720
- ca
- Canada
- 1
- Rogers AT&T Wireless
-
-
- 302
- 680
- ca
- Canada
- 1
- Sask Tel Mobility
-
-
- 302
- 780
- ca
- Canada
- 1
- Sask Tel Mobility
-
-
- 302
- 654
- ca
- Canada
- 1
- Sask Tel Mobility
-
-
- 302
- 656
- ca
- Canada
- 1
- Tbay Mobility
-
-
- 302
- 653
- ca
- Canada
- 1
- Telus Mobility
-
-
- 302
- 220
- ca
- Canada
- 1
- Telus Mobility
-
-
- 302
- 500
- ca
- Canada
- 1
- Videotron
-
-
- 302
- 490
- ca
- Canada
- 1
- WIND
-
-
- 625
- 01
- cv
- Cape Verde
- 238
- CVMovel
-
-
- 625
- 02
- cv
- Cape Verde
- 238
- Unitel T+
-
-
- 346
- 050
- ky
- Cayman Islands
- 1345
- Digicel
-
-
- 346
- 006
- ky
- Cayman Islands
- 1345
- Digicel Ltd.
-
-
- 346
- 140
- ky
- Cayman Islands
- 1345
- Flow / Lime
-
-
- 346
- 001
- ky
- Cayman Islands
- 1345
- Logic
-
-
- 623
- 04
- cf
- Central African Republic
- 236
- Azur
-
-
- 623
- 299
- cf
- Central African Republic
- 236
- Failed Calls
-
-
- 623
- 01
- cf
- Central African Republic
- 236
- Moov
-
-
- 623
- 03
- cf
- Central African Republic
- 236
- Orange
-
-
- 623
- 299
- cf
- Central African Republic
- 236
- Socatel
-
-
- 623
- 02
- cf
- Central African Republic
- 236
- Telecel
-
-
- 622
- 01
- td
- Chad
- 235
- Airtel
-
-
- 622
- 03
- td
- Chad
- 235
- Moov
-
-
- 622
- 04
- td
- Chad
- 235
- Salam
-
-
- 622
- 02
- td
- Chad
- 235
- Tchad Mobile
-
-
- 730
- 06
- cl
- Chile
- 56
- Blue Two Chile SA
-
-
- 730
- 11
- cl
- Chile
- 56
- Celupago SA
-
-
- 730
- 15
- cl
- Chile
- 56
- Cibeles Telecom SA
-
-
- 730
- 03
- cl
- Chile
- 56
- Claro
-
-
- 730
- 10
- cl
- Chile
- 56
- Entel Telefonia
-
-
- 730
- 01
- cl
- Chile
- 56
- Entel Telefonia Mov
-
-
- 730
- 14
- cl
- Chile
- 56
- Netline Telefonica Movil Ltda
-
-
- 730
- 09
- cl
- Chile
- 56
- Nextel SA
-
-
- 730
- 05
- cl
- Chile
- 56
- Nextel SA
-
-
- 730
- 04
- cl
- Chile
- 56
- Nextel SA
-
-
- 730
- 19
- cl
- Chile
- 56
- Sociedad Falabella Movil SPA
-
-
- 730
- 07
- cl
- Chile
- 56
- TELEFONICA
-
-
- 730
- 02
- cl
- Chile
- 56
- TELEFONICA
-
-
- 730
- 12
- cl
- Chile
- 56
- Telestar Movil SA
-
-
- 730
- 00
- cl
- Chile
- 56
- TESAM SA
-
-
- 730
- 13
- cl
- Chile
- 56
- Tribe Mobile SPA
-
-
- 730
- 08
- cl
- Chile
- 56
- VTR Banda Ancha SA
-
-
- 460
- 07
- cn
- China
- 86
- China Mobile GSM
-
-
- 460
- 00
- cn
- China
- 86
- China Mobile GSM
-
-
- 460
- 02
- cn
- China
- 86
- China Mobile GSM
-
-
- 460
- 04
- cn
- China
- 86
- China Space Mobile Satellite Telecommunications Co. Ltd (China Spacecom)
-
-
- 460
- 03
- cn
- China
- 86
- China Telecom
-
-
- 460
- 05
- cn
- China
- 86
- China Telecom
-
-
- 460
- 06
- cn
- China
- 86
- China Unicom
-
-
- 460
- 01
- cn
- China
- 86
- China Unicom
-
-
- 460
- 999
- cn
- China
- 86
- Fix Line
-
-
- 732
- 299
- co
- Colombia
- 57
- ATnet
-
-
- 732
- 130
- co
- Colombia
- 57
- Avantel
-
-
- 732
- 102
- co
- Colombia
- 57
- Movistar
-
-
- 732
- 666
- co
- Colombia
- 57
- Claro
-
-
- 732
- 101
- co
- Colombia
- 57
- Claro
-
-
- 732
- 002
- co
- Colombia
- 57
- Edatel
-
-
- 732
- 187
- co
- Colombia
- 57
- eTb
-
-
- 732
- 299
- co
- Colombia
- 57
- Eztalk Mobile
-
-
- 732
- 999
- co
- Colombia
- 57
- Fix Line
-
-
- 732
- 240
- co
- Colombia
- 57
- Flash Mobile
-
-
- 732
- 299
- co
- Colombia
- 57
- Gomobile
-
-
- 732
- 220
- co
- Colombia
- 57
- Libre Tecnologias
-
-
- 732
- 299
- co
- Colombia
- 57
- Movil Exito
-
-
- 732
- 123
- co
- Colombia
- 57
- Movistar
-
-
- 732
- 001
- co
- Colombia
- 57
- Movistar
-
-
- 732
- 299
- co
- Colombia
- 57
- Plintron
-
-
- 732
- 230
- co
- Colombia
- 57
- Setroc Mobile
-
-
- 732
- 199
- co
- Colombia
- 57
- SUMA movil
-
-
- 732
- 165
- co
- Colombia
- 57
- Tigo
-
-
- 732
- 103
- co
- Colombia
- 57
- Tigo
-
-
- 732
- 111
- co
- Colombia
- 57
- Tigo
-
-
- 732
- 299
- co
- Colombia
- 57
- TuCEL
-
-
- 732
- 142
- co
- Colombia
- 57
- UNE
-
-
- 732
- 020
- co
- Colombia
- 57
- UNE
-
-
- 732
- 299
- co
- Colombia
- 57
- Vilacom Mobile
-
-
- 732
- 154
- co
- Colombia
- 57
- Virgin Mobile
-
-
- 732
- 360
- co
- Colombia
- 57
- WOM
-
-
- 654
- 299
- km
- Comoros
- 269
- Failed Calls
-
-
- 654
- 01
- km
- Comoros
- 269
- HURI
-
-
- 654
- 02
- km
- Comoros
- 269
- Telma
-
-
- 629
- 01
- cg
- Congo
- 242
- Airtel
-
-
- 629
- 02
- cg
- Congo
- 242
- Azur SA (ETC)
-
-
- 629
- 10
- cg
- Congo
- 242
- MTN
-
-
- 629
- 07
- cg
- Congo
- 242
- Warid
-
-
- 548
- 01
- ck
- Cook Islands
- 682
- Vodafone / Bluesky
-
-
- 712
- 03
- cr
- Costa Rica
- 506
- Claro
-
-
- 712
- 999
- cr
- Costa Rica
- 506
- Fix Line
-
-
- 712
- 999
- cr
- Costa Rica
- 506
- Fix Line
-
-
- 712
- 02
- cr
- Costa Rica
- 506
- ICE
-
-
- 712
- 01
- cr
- Costa Rica
- 506
- ICE
-
-
- 712
- 04
- cr
- Costa Rica
- 506
- Movistar
-
-
- 712
- 20
- cr
- Costa Rica
- 506
- Virtualis
-
-
- 219
- 10
- hr
- Croatia
- 385
- A1 / VIP
-
-
- 219
- 999
- hr
- Croatia
- 385
- Fix Line
-
-
- 219
- 01
- hr
- Croatia
- 385
- T-Mobile
-
-
- 219
- 12
- hr
- Croatia
- 385
- TELE FOCUS
-
-
- 219
- 02
- hr
- Croatia
- 385
- Telemach / Tele2
-
-
- 368
- 01
- cu
- Cuba
- 53
- CubaCel/C-COM
-
-
- 368
- 999
- cu
- Cuba
- 53
- Fix Line
-
-
- 362
- 95
- cw
- Curacao
- 599
- EOCG Wireless NV
-
-
- 362
- 999
- cw
- Curacao
- 599
- Fix Line
-
-
- 362
- 69
- cw
- Curacao
- 599
- Polycom N.V./ Digicel
-
-
- 280
- 22
- cy
- Cyprus
- 357
- Cablenet / Lemontel
-
-
- 280
- 02
- cy
- Cyprus
- 357
- Cytamobile-Vodafone
-
-
- 280
- 01
- cy
- Cyprus
- 357
- Cytamobile-Vodafone
-
-
- 280
- 10
- cy
- Cyprus
- 357
- Epic / MTN
-
-
- 280
- 999
- cy
- Cyprus
- 357
- Fix Line
-
-
- 280
- 20
- cy
- Cyprus
- 357
- PrimeTel
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- +4U Mobile
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- 3ton
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- CEZ
-
-
- 230
- 08
- cz
- Czech Republic
- 420
- Compatel
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- Dragon
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- EriMobile
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- Fayn
-
-
- 230
- 999
- cz
- Czech Republic
- 420
- Fix Line
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- GoMobil
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- ha-loo mobil
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- Laudatio
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- METRONET
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- MOBIL21
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- Nej Mobil
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- NETBOX Mobil
-
-
- 230
- 04
- cz
- Czech Republic
- 420
- Nordic Telecom
-
-
- 230
- 02
- cz
- Czech Republic
- 420
- O2
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- Odorik
-
-
- 230
- 05
- cz
- Czech Republic
- 420
- PODA
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- SAZKA
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- SZDC
-
-
- 230
- 98
- cz
- Czech Republic
- 420
- SZDC
-
-
- 230
- 07
- cz
- Czech Republic
- 420
- T-Mobile
-
-
- 230
- 01
- cz
- Czech Republic
- 420
- T-Mobile
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- Tesco Mobile
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- TOPefekt
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- TT Quality
-
-
- 230
- 09
- cz
- Czech Republic
- 420
- Uniphone
-
-
- 230
- 299
- cz
- Czech Republic
- 420
- Uniphone
-
-
- 230
- 03
- cz
- Czech Republic
- 420
- Vodafone
-
-
- 230
- 03
- cz
- Czech Republic
- 420
- Vodafone
-
-
- 230
- 99
- cz
- Czech Republic
- 420
- Vodafone
-
-
- 630
- 90
- cd
- Democratic Republic of Congo
- 243
- Africell
-
-
- 630
- 02
- cd
- Democratic Republic of Congo
- 243
- Airtel
-
-
- 630
- 299
- cd
- Democratic Republic of Congo
- 243
- Failed Calls
-
-
- 630
- 86
- cd
- Democratic Republic of Congo
- 243
- Orange
-
-
- 630
- 05
- cd
- Democratic Republic of Congo
- 243
- Supercell
-
-
- 630
- 299
- cd
- Democratic Republic of Congo
- 243
- Tatem
-
-
- 630
- 89
- cd
- Democratic Republic of Congo
- 243
- TIGO/Oasis
-
-
- 630
- 01
- cd
- Democratic Republic of Congo
- 243
- Vodacom
-
-
- 630
- 88
- cd
- Democratic Republic of Congo
- 243
- Yozma Timeturns
-
-
- 238
- 23
- dk
- Denmark
- 45
- Banedanmark
-
-
- 238
- 15
- dk
- Denmark
- 45
- Net 1
-
-
- 238
- 88
- dk
- Denmark
- 45
- Cobira
-
-
- 238
- 13
- dk
- Denmark
- 45
- Compatel
-
-
- 238
- 05
- dk
- Denmark
- 45
-
-
-
- 238
- 999
- dk
- Denmark
- 45
- Fix Line
-
-
- 238
- 17
- dk
- Denmark
- 45
- Gotanet
-
-
- 238
- 42
- dk
- Denmark
- 45
- Greenwave
-
-
- 238
- 06
- dk
- Denmark
- 45
- 3
-
-
- 238
- 28
- dk
- Denmark
- 45
- LINK Mobility
-
-
- 238
- 12
- dk
- Denmark
- 45
- Lycamobile
-
-
- 238
- 14
- dk
- Denmark
- 45
- Monty Mobile
-
-
- 238
- 07
- dk
- Denmark
- 45
- Mundio Mobile
-
-
- 238
- 04
- dk
- Denmark
- 45
- Nexcon.io
-
-
- 238
- 73
- dk
- Denmark
- 45
- Onomondo
-
-
- 238
- 30
- dk
- Denmark
- 45
- Pareteum
-
-
- 238
- 03
- dk
- Denmark
- 45
- Syniverse Technologies
-
-
- 238
- 10
- dk
- Denmark
- 45
- TDC
-
-
- 238
- 01
- dk
- Denmark
- 45
- TDC
-
-
- 238
- 77
- dk
- Denmark
- 45
- Telenor
-
-
- 238
- 02
- dk
- Denmark
- 45
- Telenor
-
-
- 238
- 96
- dk
- Denmark
- 45
- Telia
-
-
- 238
- 20
- dk
- Denmark
- 45
- Telia
-
-
- 238
- 30
- dk
- Denmark
- 45
- Telia
-
-
- 238
- 16
- dk
- Denmark
- 45
- Tismi
-
-
- 238
- 25
- dk
- Denmark
- 45
- Viahub
-
-
- 238
- 08
- dk
- Denmark
- 45
- Voxbone / Bandwidth
-
-
- 638
- 01
- dj
- Djibouti
- 253
- Evatis
-
-
- 366
- 110
- dm
- Dominica
- 1767
- C & W
-
-
- 366
- 020
- dm
- Dominica
- 1767
- Cingular Wireless/Digicel
-
-
- 366
- 050
- dm
- Dominica
- 1767
- Wireless Ventures (Dominica) Ltd (Digicel Dominica)
-
-
- 370
- 02
- do
- Dominican Republic
- 1809
- Claro
-
-
- 370
- 01
- do
- Dominican Republic
- 1809
- Orange
-
-
- 370
- 03
- do
- Dominican Republic
- 1809
- TRIcom
-
-
- 370
- 04
- do
- Dominican Republic
- 1809
- Viva
-
-
- 514
- 299
- tl
- East Timor
- 670
- Failed Calls
-
-
- 514
- 999
- tl
- East Timor
- 670
- Fix Line
-
-
- 514
- 03
- tl
- East Timor
- 670
- Telemor
-
-
- 514
- 01
- tl
- East Timor
- 670
- Telkomcel
-
-
- 514
- 02
- tl
- East Timor
- 670
- Timor Telecom
-
-
- 740
- 01
- ec
- Ecuador
- 593
- Claro/Port
-
-
- 740
- 02
- ec
- Ecuador
- 593
- CNT Mobile
-
-
- 740
- 000
- ec
- Ecuador
- 593
- Failed Call(s)
-
-
- 740
- 00
- ec
- Ecuador
- 593
- MOVISTAR/OteCel
-
-
- 740
- 03
- ec
- Ecuador
- 593
- Tuenti
-
-
- 602
- 03
- eg
- Egypt
- 20
- Etisalat
-
-
- 602
- 299
- eg
- Egypt
- 20
- Failed Calls
-
-
- 602
- 01
- eg
- Egypt
- 20
- Orange
-
-
- 602
- 02
- eg
- Egypt
- 20
- Vodafone
-
-
- 602
- 04
- eg
- Egypt
- 20
- WE
-
-
- 706
- 01
- sv
- El Salvador
- 503
- CLARO/CTE
-
-
- 706
- 02
- sv
- El Salvador
- 503
- Digicel
-
-
- 706
- 05
- sv
- El Salvador
- 503
- INTELFON SA de CV
-
-
- 706
- 04
- sv
- El Salvador
- 503
- Telefonica
-
-
- 706
- 03
- sv
- El Salvador
- 503
- Telemovil
-
-
- 627
- 299
- gq
- Equatorial Guinea
- 240
- Failed Calls
-
-
- 627
- 03
- gq
- Equatorial Guinea
- 240
- Muni
-
-
- 627
- 01
- gq
- Equatorial Guinea
- 240
- Orange
-
-
- 657
- 01
- er
- Eritrea
- 291
- Eritel
-
-
- 248
- 02
- ee
- Estonia
- 372
- Elisa
-
-
- 248
- 03
- ee
- Estonia
- 372
- Tele2
-
-
- 248
- 13
- ee
- Estonia
- 372
- Telia
-
-
- 248
- 01
- ee
- Estonia
- 372
- Telia
-
-
- 248
- 04
- ee
- Estonia
- 372
- TravelSim
-
-
- 636
- 01
- et
- Ethiopia
- 251
- Ethio Mobile
-
-
- 750
- 001
- fk
- Falkland Islands
- 500
- Sure
-
-
- 288
- 01
- fo
- Faroe Islands
- 298
- Faroese Telecom
-
-
- 288
- 02
- fo
- Faroe Islands
- 298
- Hey / Kall
-
-
- 288
- 03
- fo
- Faroe Islands
- 298
- Tosa
-
-
- 542
- 02
- fj
- Fiji
- 679
- DigiCell
-
-
- 542
- 01
- fj
- Fiji
- 679
- Vodafone
-
-
- 244
- 14
- fi
- Finland
- 358
- Alcom
-
-
- 244
- 299
- fi
- Finland
- 358
- Benemen
-
-
- 244
- 26
- fi
- Finland
- 358
- Compatel
-
-
- 244
- 299
- fi
- Finland
- 358
- Cuuma
-
-
- 244
- 03
- fi
- Finland
- 358
- DNA
-
-
- 244
- 12
- fi
- Finland
- 358
- DNA
-
-
- 244
- 13
- fi
- Finland
- 358
- DNA
-
-
- 244
- 04
- fi
- Finland
- 358
- DNA
-
-
- 244
- 12
- fi
- Finland
- 358
- DNA
-
-
- 244
- 21
- fi
- Finland
- 358
- Elisa
-
-
- 244
- 06
- fi
- Finland
- 358
- Elisa
-
-
- 244
- 05
- fi
- Finland
- 358
- Elisa
-
-
- 244
- 05
- fi
- Finland
- 358
- Elisa
-
-
- 244
- 82
- fi
- Finland
- 358
- interactive digital media / IDM
-
-
- 244
- 299
- fi
- Finland
- 358
- interactive digital media / IDM
-
-
- 244
- 299
- fi
- Finland
- 358
- IPIFY
-
-
- 244
- 299
- fi
- Finland
- 358
- Lancelot
-
-
- 244
- 299
- fi
- Finland
- 358
- MI Carrier Services
-
-
- 244
- 299
- fi
- Finland
- 358
- MobiWeb
-
-
- 244
- 11
- fi
- Finland
- 358
- Viahub
-
-
- 244
- 24
- fi
- Finland
- 358
- Nord Connect
-
-
- 244
- 41
- fi
- Finland
- 358
- NSN
-
-
- 244
- 09
- fi
- Finland
- 358
- NSN
-
-
- 244
- 08
- fi
- Finland
- 358
- NSN
-
-
- 244
- 38
- fi
- Finland
- 358
- NSN
-
-
- 244
- 39
- fi
- Finland
- 358
- NSN
-
-
- 244
- 40
- fi
- Finland
- 358
- NSN
-
-
- 244
- 07
- fi
- Finland
- 358
- NSN
-
-
- 244
- 299
- fi
- Finland
- 358
- RAILI
-
-
- 244
- 10
- fi
- Finland
- 358
- TDC Oy Finland
-
-
- 244
- 43
- fi
- Finland
- 358
- Telavox
-
-
- 244
- 36
- fi
- Finland
- 358
- Telia
-
-
- 244
- 91
- fi
- Finland
- 358
- Telia
-
-
- 244
- 15
- fi
- Finland
- 358
- Telit
-
-
- 244
- 37
- fi
- Finland
- 358
- Tismi
-
-
- 244
- 299
- fi
- Finland
- 358
- TravelSim
-
-
- 244
- 299
- fi
- Finland
- 358
- Twilio
-
-
- 244
- 35
- fi
- Finland
- 358
- Ukko Mobile
-
-
- 244
- 42
- fi
- Finland
- 358
- Viahub
-
-
- 244
- 47
- fi
- Finland
- 358
- VIRVE
-
-
- 244
- 46
- fi
- Finland
- 358
- VIRVE
-
-
- 244
- 45
- fi
- Finland
- 358
- VIRVE
-
-
- 244
- 33
- fi
- Finland
- 358
- VIRVE
-
-
- 244
- 32
- fi
- Finland
- 358
- Voxbone / Bandwidth
-
-
- 208
- 299
- fr
- France
- 33
- Add-On Multimedia
-
-
- 208
- 299
- fr
- France
- 33
- Afone Mobile
-
-
- 208
- 28
- fr
- France
- 33
- Airmob
-
-
- 208
- 299
- fr
- France
- 33
- Alphalink
-
-
- 208
- 299
- fr
- France
- 33
- Alphalink
-
-
- 208
- 299
- fr
- France
- 33
- Annatel
-
-
- 208
- 92
- fr
- France
- 33
- IP Directions
-
-
- 208
- 299
- fr
- France
- 33
- Atlas
-
-
- 208
- 299
- fr
- France
- 33
- Auchan
-
-
- 208
- 299
- fr
- France
- 33
- Auchan
-
-
- 208
- 299
- fr
- France
- 33
- Axialys
-
-
- 208
- 299
- fr
- France
- 33
- Bazile
-
-
- 208
- 299
- fr
- France
- 33
- BJT
-
-
- 208
- 299
- fr
- France
- 33
- BJT
-
-
- 208
- 88
- fr
- France
- 33
- Bouygues Telecom
-
-
- 208
- 21
- fr
- France
- 33
- Bouygues Telecom
-
-
- 208
- 20
- fr
- France
- 33
- Bouygues Telecom
-
-
- 208
- 299
- fr
- France
- 33
- Bretagne Telecom
-
-
- 208
- 299
- fr
- France
- 33
- CAT
-
-
- 208
- 299
- fr
- France
- 33
- CELESTE
-
-
- 208
- 34
- fr
- France
- 33
- Cellhire
-
-
- 208
- 299
- fr
- France
- 33
- Codepi
-
-
- 208
- 299
- fr
- France
- 33
- Coolwave
-
-
- 208
- 27
- fr
- France
- 33
- Coriolis
-
-
- 208
- 299
- fr
- France
- 33
- CPRO
-
-
- 208
- 299
- fr
- France
- 33
- CRH
-
-
- 208
- 299
- fr
- France
- 33
- CRT
-
-
- 208
- 299
- fr
- France
- 33
- CTExcel
-
-
- 208
- 299
- fr
- France
- 33
- Doctolib
-
-
- 208
- 299
- fr
- France
- 33
- Failed Calls
-
-
- 208
- 999
- fr
- France
- 33
- Fix Line
-
-
- 208
- 299
- fr
- France
- 33
- Foliateam
-
-
- 208
- 36
- fr
- France
- 33
- Free Mobile
-
-
- 208
- 15
- fr
- France
- 33
- Free Mobile
-
-
- 208
- 14
- fr
- France
- 33
- Free Mobile
-
-
- 208
- 35
- fr
- France
- 33
- Free Mobile
-
-
- 208
- 16
- fr
- France
- 33
- Free Mobile
-
-
- 208
- 07
- fr
- France
- 33
- GlobalStar
-
-
- 208
- 06
- fr
- France
- 33
- GlobalStar
-
-
- 208
- 05
- fr
- France
- 33
- GlobalStar
-
-
- 208
- 94
- fr
- France
- 33
- Halys
-
-
- 208
- 299
- fr
- France
- 33
- Happy Telecom
-
-
- 208
- 299
- fr
- France
- 33
- Hexatel
-
-
- 208
- 89
- fr
- France
- 33
- Hub One
-
-
- 208
- 299
- fr
- France
- 33
- i-via
-
-
- 208
- 29
- fr
- France
- 33
- Orange
-
-
- 208
- 37
- fr
- France
- 33
- IP Directions
-
-
- 208
- 299
- fr
- France
- 33
- IP Telecom
-
-
- 208
- 299
- fr
- France
- 33
- Iptis
-
-
- 208
- 299
- fr
- France
- 33
- JOi
-
-
- 208
- 299
- fr
- France
- 33
- Kertel
-
-
- 208
- 299
- fr
- France
- 33
- Keyyo Mobile
-
-
- 208
- 299
- fr
- France
- 33
- La Poste Mobile
-
-
- 208
- 299
- fr
- France
- 33
- La Poste Mobile
-
-
- 208
- 299
- fr
- France
- 33
- LASOTEL
-
-
- 208
- 38
- fr
- France
- 33
- Lebara
-
-
- 208
- 17
- fr
- France
- 33
- Legos
-
-
- 208
- 299
- fr
- France
- 33
- Linkt
-
-
- 208
- 299
- fr
- France
- 33
- LITEYEAR
-
-
- 208
- 15
- fr
- France
- 33
- Free Mobile
-
-
- 208
- 25
- fr
- France
- 33
- Lycamobile
-
-
- 208
- 24
- fr
- France
- 33
- MobiquiThings
-
-
- 208
- 03
- fr
- France
- 33
- MobiquiThings
-
-
- 208
- 299
- fr
- France
- 33
- Netcom
-
-
- 208
- 39
- fr
- France
- 33
- Networth Telecom
-
-
- 208
- 299
- fr
- France
- 33
- Nordnet
-
-
- 208
- 26
- fr
- France
- 33
- NRJ
-
-
- 208
- 23
- fr
- France
- 33
- Hub One
-
-
- 208
- 299
- fr
- France
- 33
- onoff
-
-
- 208
- 299
- fr
- France
- 33
- OpenIP
-
-
- 208
- 01
- fr
- France
- 33
- Orange
-
-
- 208
- 32
- fr
- France
- 33
- Orange
-
-
- 208
- 91
- fr
- France
- 33
- Orange
-
-
- 208
- 02
- fr
- France
- 33
- Orange
-
-
- 208
- 299
- fr
- France
- 33
- Paritel
-
-
- 208
- 299
- fr
- France
- 33
- Prixtel
-
-
- 208
- 299
- fr
- France
- 33
- Prixtel
-
-
- 208
- 10
- fr
- France
- 33
- SFR
-
-
- 208
- 299
- fr
- France
- 33
- SCT TELECOM
-
-
- 208
- 299
- fr
- France
- 33
- SCT TELECOM
-
-
- 208
- 299
- fr
- France
- 33
- Sewan Communications
-
-
- 208
- 11
- fr
- France
- 33
- SFR
-
-
- 208
- 13
- fr
- France
- 33
- SFR
-
-
- 208
- 09
- fr
- France
- 33
- SFR
-
-
- 208
- 10
- fr
- France
- 33
- SFR
-
-
- 208
- 08
- fr
- France
- 33
- SFR
-
-
- 208
- 299
- fr
- France
- 33
- SIMbioz
-
-
- 208
- 04
- fr
- France
- 33
- Axialys
-
-
- 208
- 30
- fr
- France
- 33
- Syma Mobile
-
-
- 208
- 299
- fr
- France
- 33
- TDF
-
-
- 208
- 00
- fr
- France
- 33
- Tel/Te
-
-
- 208
- 299
- fr
- France
- 33
- Tismi
-
-
- 208
- 22
- fr
- France
- 33
- Transatel
-
-
- 208
- 299
- fr
- France
- 33
- Trunkline
-
-
- 208
- 12
- fr
- France
- 33
- Truphone
-
-
- 208
- 299
- fr
- France
- 33
- unyc
-
-
- 208
- 299
- fr
- France
- 33
- VA SOLUTIONS
-
-
- 208
- 31
- fr
- France
- 33
- Vectone Mobile
-
-
- 208
- 299
- fr
- France
- 33
- VOIP Telecom
-
-
- 340
- 20
- gf
- French Guiana
- 594
- Bouygues/DigiCel
-
-
- 340
- 01
- gf
- French Guiana
- 594
- Orange Caribe
-
-
- 340
- 02
- gf
- French Guiana
- 594
- Outremer Telecom
-
-
- 340
- 11
- gf
- French Guiana
- 594
- TelCell GSM
-
-
- 340
- 03
- gf
- French Guiana
- 594
- TelCell GSM
-
-
- 547
- 15
- pf
- French Polynesia
- 689
- Pacific Mobile Telecom (PMT)
-
-
- 547
- 20
- pf
- French Polynesia
- 689
- Vini/Tikiphone
-
-
- 628
- 03
- ga
- Gabon
- 241
- Airtel
-
-
- 628
- 04
- ga
- Gabon
- 241
- Azur/Usan S.A.
-
-
- 628
- 299
- ga
- Gabon
- 241
- Failed Calls
-
-
- 628
- 01
- ga
- Gabon
- 241
- Libertis
-
-
- 628
- 02
- ga
- Gabon
- 241
- MOOV/Telecel
-
-
- 607
- 02
- gm
- Gambia
- 220
- Africel
-
-
- 607
- 03
- gm
- Gambia
- 220
- Comium
-
-
- 607
- 01
- gm
- Gambia
- 220
- Gamcel
-
-
- 607
- 04
- gm
- Gambia
- 220
- QCell
-
-
- 282
- 04
- ge
- Georgia
- 995
- Beeline
-
-
- 282
- 01
- ge
- Georgia
- 995
- Geocell
-
-
- 282
- 07
- ge
- Georgia
- 995
- GlobalCell
-
-
- 282
- 03
- ge
- Georgia
- 995
- Iberiatel Ltd.
-
-
- 282
- 02
- ge
- Georgia
- 995
- MagtiCom
-
-
- 282
- 11
- ge
- Georgia
- 995
- Mobilive
-
-
- 282
- 22
- ge
- Georgia
- 995
- MyPhone
-
-
- 282
- 10
- ge
- Georgia
- 995
- Premium Net
-
-
- 282
- 05
- ge
- Georgia
- 995
- Silknet
-
-
- 282
- 08
- ge
- Georgia
- 995
- Silknet
-
-
- 282
- 12
- ge
- Georgia
- 995
- Telecom 1
-
-
- 262
- 23
- de
- Germany
- 49
- 1&1
-
-
- 262
- 299
- de
- Germany
- 49
- 1&1
-
-
- 262
- 299
- de
- Germany
- 49
- Argon Networks
-
-
- 262
- 13
- de
- Germany
- 49
- Bundesamt für Ausrüstung, Informationstechnik und Nutzung der Bundeswehr
-
-
- 262
- 10
- de
- Germany
- 49
- DB Netz
-
-
- 262
- 77
- de
- Germany
- 49
- Telefonica / E-Plus
-
-
- 262
- 20
- de
- Germany
- 49
- Telefonica / E-Plus
-
-
- 262
- 999
- de
- Germany
- 49
- Fix Line
-
-
- 262
- 14
- de
- Germany
- 49
- Lebara
-
-
- 262
- 43
- de
- Germany
- 49
- Lycamobile
-
-
- 262
- 21
- de
- Germany
- 49
- Multiconnect
-
-
- 262
- 299
- de
- Germany
- 49
- Multiconnect
-
-
- 262
- 22
- de
- Germany
- 49
- sipgate
-
-
- 262
- 33
- de
- Germany
- 49
- sipgate
-
-
- 262
- 299
- de
- Germany
- 49
- TelcoVillage
-
-
- 262
- 24
- de
- Germany
- 49
- TelcoVillage
-
-
- 262
- 05
- de
- Germany
- 49
- Telefonica / E-Plus
-
-
- 262
- 17
- de
- Germany
- 49
- Telefonica / E-Plus
-
-
- 262
- 12
- de
- Germany
- 49
- Telefonica / E-Plus
-
-
- 262
- 03
- de
- Germany
- 49
- Telefonica / E-Plus
-
-
- 262
- 11
- de
- Germany
- 49
- Telefonica / O2
-
-
- 262
- 08
- de
- Germany
- 49
- Telefonica / O2
-
-
- 262
- 16
- de
- Germany
- 49
- Telefonica / O2
-
-
- 262
- 07
- de
- Germany
- 49
- Telefonica / O2
-
-
- 262
- 78
- de
- Germany
- 49
- Telekom / T-mobile
-
-
- 262
- 06
- de
- Germany
- 49
- Telekom / T-mobile
-
-
- 262
- 01
- de
- Germany
- 49
- Telekom / T-mobile
-
-
- 262
- 299
- de
- Germany
- 49
- Tismi
-
-
- 262
- 299
- de
- Germany
- 49
- Truphone
-
-
- 262
- 09
- de
- Germany
- 49
- Vodafone
-
-
- 262
- 04
- de
- Germany
- 49
- Vodafone
-
-
- 262
- 02
- de
- Germany
- 49
- Vodafone
-
-
- 262
- 42
- de
- Germany
- 49
- Vodafone
-
-
- 620
- 06
- gh
- Ghana
- 233
- Airtel
-
-
- 620
- 03
- gh
- Ghana
- 233
- Airtel
-
-
- 620
- 299
- gh
- Ghana
- 233
- Comsys
-
-
- 620
- 04
- gh
- Ghana
- 233
- Expresso Ghana Ltd
-
-
- 620
- 07
- gh
- Ghana
- 233
- Glo
-
-
- 620
- 01
- gh
- Ghana
- 233
- MTN
-
-
- 620
- 05
- gh
- Ghana
- 233
- National Security
-
-
- 620
- 08
- gh
- Ghana
- 233
- Surfline
-
-
- 620
- 02
- gh
- Ghana
- 233
- Vodafone
-
-
- 266
- 06
- gi
- Gibraltar
- 350
- CTS Mobile
-
-
- 266
- 09
- gi
- Gibraltar
- 350
- eazi telecom
-
-
- 266
- 999
- gi
- Gibraltar
- 350
- Fix Line
-
-
- 266
- 299
- gi
- Gibraltar
- 350
- GibFibreSpeed
-
-
- 266
- 01
- gi
- Gibraltar
- 350
- Gibtel
-
-
- 202
- 299
- gr
- Greece
- 30
- AMD Telecom
-
-
- 202
- 07
- gr
- Greece
- 30
- AMD Telecom
-
-
- 202
- 299
- gr
- Greece
- 30
- Apifon
-
-
- 202
- 15
- gr
- Greece
- 30
- BWS
-
-
- 202
- 02
- gr
- Greece
- 30
- Cosmote
-
-
- 202
- 01
- gr
- Greece
- 30
- Cosmote
-
-
- 202
- 14
- gr
- Greece
- 30
- CyTa Mobile
-
-
- 202
- 999
- gr
- Greece
- 30
- Fix Line
-
-
- 202
- 16
- gr
- Greece
- 30
- Inter Telecom
-
-
- 202
- 299
- gr
- Greece
- 30
- Interconnect
-
-
- 202
- 299
- gr
- Greece
- 30
- M-STAT
-
-
- 202
- 299
- gr
- Greece
- 30
- Nova
-
-
- 202
- 04
- gr
- Greece
- 30
- OSE
-
-
- 202
- 04
- gr
- Greece
- 30
- OSE
-
-
- 202
- 03
- gr
- Greece
- 30
- OTE
-
-
- 202
- 03
- gr
- Greece
- 30
- OTE
-
-
- 202
- 299
- gr
- Greece
- 30
- OTEGLOBE
-
-
- 202
- 299
- gr
- Greece
- 30
- Premium Net
-
-
- 202
- 10
- gr
- Greece
- 30
- Wind
-
-
- 202
- 05
- gr
- Greece
- 30
- Vodafone
-
-
- 202
- 09
- gr
- Greece
- 30
- Wind
-
-
- 202
- 10
- gr
- Greece
- 30
- Wind
-
-
- 202
- 12
- gr
- Greece
- 30
- Yuboto
-
-
- 290
- 01
- gl
- Greenland
- 299
- Tele Greenland
-
-
- 352
- 110
- gd
- Grenada
- 1473
- Cable & Wireless
-
-
- 352
- 030
- gd
- Grenada
- 1473
- Digicel
-
-
- 352
- 050
- gd
- Grenada
- 1473
- Digicel
-
-
- 340
- 08
- gp
- Guadeloupe
- 590
- Dauphin Telecom SU (Guadeloupe Telecom)
-
-
- 340
- 10
- gp
- Guadeloupe
- 590
-
-
-
- 310
- 370
- gu
- Guam
- 1671
- Docomo
-
-
- 310
- 470
- gu
- Guam
- 1671
- Docomo
-
-
- 310
- 140
- gu
- Guam
- 1671
- GTA Wireless
-
-
- 310
- 033
- gu
- Guam
- 1671
- Guam Teleph. Auth
-
-
- 310
- 032
- gu
- Guam
- 1671
- IT&E OverSeas
-
-
- 311
- 250
- gu
- Guam
- 1671
- Wave Runner LLC
-
-
- 704
- 01
- gt
- Guatemala
- 502
- Claro
-
-
- 704
- 03
- gt
- Guatemala
- 502
- Telefonica
-
-
- 704
- 02
- gt
- Guatemala
- 502
- TIGO/COMCEL
-
-
- 611
- 05
- gn
- Guinea
- 224
- Cellcom
-
-
- 611
- 03
- gn
- Guinea
- 224
- Intercel
-
-
- 611
- 04
- gn
- Guinea
- 224
- MTN
-
-
- 611
- 01
- gn
- Guinea
- 224
- Orange
-
-
- 611
- 02
- gn
- Guinea
- 224
- SotelGui
-
-
- 632
- 999
- gw
- Guinea-Bissau
- 245
- Fix Line
-
-
- 632
- 01
- gw
- Guinea-Bissau
- 245
- Guinetel
-
-
- 632
- 02
- gw
- Guinea-Bissau
- 245
- MTN
-
-
- 632
- 03
- gw
- Guinea-Bissau
- 245
- Orange
-
-
- 738
- 02
- gy
- Guyana
- 592
- Cellink Plus
-
-
- 738
- 01
- gy
- Guyana
- 592
- DigiCel
-
-
- 372
- 01
- ht
- Haiti
- 509
- Comcel
-
-
- 372
- 02
- ht
- Haiti
- 509
- Digicel
-
-
- 372
- 03
- ht
- Haiti
- 509
- Natcom
-
-
- 708
- 040
- hn
- Honduras
- 504
- Digicel
-
-
- 708
- 030
- hn
- Honduras
- 504
- HonduTel
-
-
- 708
- 001
- hn
- Honduras
- 504
- SERCOM/CLARO
-
-
- 708
- 002
- hn
- Honduras
- 504
- Telefonica/CELTEL
-
-
- 454
- 12
- hk
- Hongkong
- 852
- China Mobile/Peoples
-
-
- 454
- 28
- hk
- Hongkong
- 852
- China Mobile/Peoples
-
-
- 454
- 13
- hk
- Hongkong
- 852
- China Mobile/Peoples
-
-
- 454
- 09
- hk
- Hongkong
- 852
- China Motion
-
-
- 454
- 07
- hk
- Hongkong
- 852
- China Unicom Ltd
-
-
- 454
- 11
- hk
- Hongkong
- 852
- China-HongKong Telecom Ltd (CHKTL)
-
-
- 454
- 01
- hk
- Hongkong
- 852
- Citic Telecom Ltd.
-
-
- 454
- 02
- hk
- Hongkong
- 852
- CSL Ltd.
-
-
- 454
- 00
- hk
- Hongkong
- 852
- CSL Ltd.
-
-
- 454
- 18
- hk
- Hongkong
- 852
- CSL Ltd.
-
-
- 454
- 10
- hk
- Hongkong
- 852
- CSL/New World PCS Ltd.
-
-
- 454
- 31
- hk
- Hongkong
- 852
- CTExcel
-
-
- 454
- 14
- hk
- Hongkong
- 852
- H3G/Hutchinson
-
-
- 454
- 05
- hk
- Hongkong
- 852
- H3G/Hutchinson
-
-
- 454
- 04
- hk
- Hongkong
- 852
- H3G/Hutchinson
-
-
- 454
- 03
- hk
- Hongkong
- 852
- H3G/Hutchinson
-
-
- 454
- 20
- hk
- Hongkong
- 852
- HKT/PCCW
-
-
- 454
- 19
- hk
- Hongkong
- 852
- HKT/PCCW
-
-
- 454
- 29
- hk
- Hongkong
- 852
- HKT/PCCW
-
-
- 454
- 16
- hk
- Hongkong
- 852
- HKT/PCCW
-
-
- 454
- 47
- hk
- Hongkong
- 852
- shared by private TETRA systems
-
-
- 454
- 24
- hk
- Hongkong
- 852
- Multibyte Info Technology Ltd
-
-
- 454
- 40
- hk
- Hongkong
- 852
- shared by private TETRA systems
-
-
- 454
- 08
- hk
- Hongkong
- 852
- Truephone
-
-
- 454
- 17
- hk
- Hongkong
- 852
- Vodafone/SmarTone
-
-
- 454
- 15
- hk
- Hongkong
- 852
- Vodafone/SmarTone
-
-
- 454
- 06
- hk
- Hongkong
- 852
- Vodafone/SmarTone
-
-
- 216
- 299
- hu
- Hungary
- 36
- Antenna
-
-
- 216
- 03
- hu
- Hungary
- 36
- Digi
-
-
- 216
- 999
- hu
- Hungary
- 36
- Fix line
-
-
- 216
- 299
- hu
- Hungary
- 36
- Invitech
-
-
- 216
- 299
- hu
- Hungary
- 36
- Mobil4
-
-
- 216
- 02
- hu
- Hungary
- 36
- MVM NET
-
-
- 216
- 299
- hu
- Hungary
- 36
- Netfone
-
-
- 216
- 299
- hu
- Hungary
- 36
- TARR
-
-
- 216
- 30
- hu
- Hungary
- 36
- Telekom
-
-
- 216
- 01
- hu
- Hungary
- 36
- Telenor
-
-
- 216
- 71
- hu
- Hungary
- 36
- UPC Magyarorszag Kft.
-
-
- 216
- 299
- hu
- Hungary
- 36
- Vidanet
-
-
- 216
- 71
- hu
- Hungary
- 36
- Vodafone
-
-
- 216
- 70
- hu
- Hungary
- 36
- Vodafone
-
-
- 274
- 09
- is
- Iceland
- 354
- Amitelo
-
-
- 274
- 07
- is
- Iceland
- 354
- IceCell
-
-
- 274
- 11
- is
- Iceland
- 354
- NOVA
-
-
- 274
- 31
- is
- Iceland
- 354
- Siminn
-
-
- 274
- 08
- is
- Iceland
- 354
- Siminn
-
-
- 274
- 01
- is
- Iceland
- 354
- Siminn
-
-
- 274
- 16
- is
- Iceland
- 354
- Tismi
-
-
- 274
- 04
- is
- Iceland
- 354
- Viking Wireless
-
-
- 274
- 12
- is
- Iceland
- 354
- Vodafone
-
-
- 274
- 02
- is
- Iceland
- 354
- Vodafone
-
-
- 274
- 03
- is
- Iceland
- 354
- Vodafone
-
-
- 274
- 05
- is
- Iceland
- 354
- Vodafone
-
-
- 404
- 17
- in
- India
- 91
- Aircel
-
-
- 404
- 42
- in
- India
- 91
- Aircel
-
-
- 404
- 33
- in
- India
- 91
- Aircel
-
-
- 404
- 29
- in
- India
- 91
- Aircel
-
-
- 404
- 28
- in
- India
- 91
- Aircel
-
-
- 404
- 25
- in
- India
- 91
- Aircel
-
-
- 404
- 01
- in
- India
- 91
- Aircel Digilink India
-
-
- 404
- 15
- in
- India
- 91
- Aircel Digilink India
-
-
- 404
- 60
- in
- India
- 91
- Aircel Digilink India
-
-
- 405
- 53
- in
- India
- 91
- AirTel
-
-
- 404
- 86
- in
- India
- 91
- Barakhamba Sales & Serv.
-
-
- 404
- 13
- in
- India
- 91
- Barakhamba Sales & Serv.
-
-
- 404
- 58
- in
- India
- 91
- BSNL
-
-
- 404
- 81
- in
- India
- 91
- BSNL
-
-
- 404
- 74
- in
- India
- 91
- BSNL
-
-
- 404
- 38
- in
- India
- 91
- BSNL
-
-
- 404
- 57
- in
- India
- 91
- BSNL
-
-
- 404
- 80
- in
- India
- 91
- BSNL
-
-
- 404
- 73
- in
- India
- 91
- BSNL
-
-
- 404
- 34
- in
- India
- 91
- BSNL
-
-
- 404
- 66
- in
- India
- 91
- BSNL
-
-
- 404
- 55
- in
- India
- 91
- BSNL
-
-
- 404
- 72
- in
- India
- 91
- BSNL
-
-
- 404
- 77
- in
- India
- 91
- BSNL
-
-
- 404
- 64
- in
- India
- 91
- BSNL
-
-
- 404
- 54
- in
- India
- 91
- BSNL
-
-
- 404
- 71
- in
- India
- 91
- BSNL
-
-
- 404
- 76
- in
- India
- 91
- BSNL
-
-
- 404
- 62
- in
- India
- 91
- BSNL
-
-
- 404
- 53
- in
- India
- 91
- BSNL
-
-
- 404
- 59
- in
- India
- 91
- BSNL
-
-
- 404
- 75
- in
- India
- 91
- BSNL
-
-
- 404
- 51
- in
- India
- 91
- BSNL
-
-
- 404
- 10
- in
- India
- 91
- Bharti Airtel Limited (Delhi)
-
-
- 404
- 045
- in
- India
- 91
- Bharti Airtel Limited (Karnataka) (India)
-
-
- 404
- 79
- in
- India
- 91
- CellOne A&N
-
-
- 404
- 87
- in
- India
- 91
- Escorts Telecom Ltd.
-
-
- 404
- 82
- in
- India
- 91
- Escorts Telecom Ltd.
-
-
- 404
- 89
- in
- India
- 91
- Escorts Telecom Ltd.
-
-
- 404
- 88
- in
- India
- 91
- Escorts Telecom Ltd.
-
-
- 404
- 12
- in
- India
- 91
- Escotel Mobile Communications
-
-
- 404
- 19
- in
- India
- 91
- Escotel Mobile Communications
-
-
- 404
- 56
- in
- India
- 91
- Escotel Mobile Communications
-
-
- 405
- 05
- in
- India
- 91
- Fascel Limited
-
-
- 404
- 05
- in
- India
- 91
- Fascel
-
-
- 404
- 998
- in
- India
- 91
- Fix Line
-
-
- 404
- 70
- in
- India
- 91
- Hexacom India
-
-
- 404
- 16
- in
- India
- 91
- Hexcom India
-
-
- 404
- 78
- in
- India
- 91
- Idea Cellular Ltd.
-
-
- 404
- 07
- in
- India
- 91
- Idea Cellular Ltd.
-
-
- 404
- 04
- in
- India
- 91
- Idea Cellular Ltd.
-
-
- 404
- 24
- in
- India
- 91
- Idea Cellular Ltd.
-
-
- 404
- 22
- in
- India
- 91
- Idea Cellular Ltd.
-
-
- 404
- 69
- in
- India
- 91
- Mahanagar Telephone Nigam
-
-
- 404
- 68
- in
- India
- 91
- Mahanagar Telephone Nigam
-
-
- 404
- 83
- in
- India
- 91
- Reliable Internet Services
-
-
- 404
- 50
- in
- India
- 91
- Reliance Telecom Private
-
-
- 404
- 67
- in
- India
- 91
- Reliance Telecom Private
-
-
- 404
- 18
- in
- India
- 91
- Reliance Telecom Private
-
-
- 404
- 85
- in
- India
- 91
- Reliance Telecom Private
-
-
- 404
- 09
- in
- India
- 91
- Reliance Telecom Private
-
-
- 405
- 87
- in
- India
- 91
- Reliance Telecom Private
-
-
- 404
- 36
- in
- India
- 91
- Reliance Telecom Private
-
-
- 404
- 52
- in
- India
- 91
- Reliance Telecom Private
-
-
- 404
- 41
- in
- India
- 91
- RPG Cellular
-
-
- 404
- 14
- in
- India
- 91
- Spice
-
-
- 404
- 44
- in
- India
- 91
- Spice
-
-
- 404
- 11
- in
- India
- 91
- Sterling Cellular Ltd.
-
-
- 405
- 034
- in
- India
- 91
- TATA / Karnataka
-
-
- 404
- 30
- in
- India
- 91
- Usha Martin Telecom
-
-
- 404
- 999
- in
- India
- 91
- Various Networks
-
-
- 404
- 27
- in
- India
- 91
- Unknown
-
-
- 404
- 43
- in
- India
- 91
- Vodafone/Essar/Hutch
-
-
- 404
- 20
- in
- India
- 91
- Unknown
-
-
- 510
- 08
- id
- Indonesia
- 62
- Axis/Natrindo
-
-
- 510
- 99
- id
- Indonesia
- 62
- Esia (PT Bakrie Telecom) (CDMA)
-
-
- 510
- 999
- id
- Indonesia
- 62
- Fix Line
-
-
- 510
- 07
- id
- Indonesia
- 62
- Flexi (PT Telkom) (CDMA)
-
-
- 510
- 89
- id
- Indonesia
- 62
- H3G CP
-
-
- 510
- 21
- id
- Indonesia
- 62
- Indosat/Satelindo/M3
-
-
- 510
- 01
- id
- Indonesia
- 62
- Indosat/Satelindo/M3
-
-
- 510
- 00
- id
- Indonesia
- 62
- PT Pasifik Satelit Nusantara (PSN)
-
-
- 510
- 27
- id
- Indonesia
- 62
- PT Sampoerna Telekomunikasi Indonesia (STI)
-
-
- 510
- 28
- id
- Indonesia
- 62
- PT Smartfren Telecom Tbk
-
-
- 510
- 09
- id
- Indonesia
- 62
- PT Smartfren Telecom Tbk
-
-
- 510
- 11
- id
- Indonesia
- 62
- PT. Excelcom
-
-
- 510
- 10
- id
- Indonesia
- 62
- Telkomsel
-
-
- 510
- 07
- id
- Indonesia
- 62
- Telkomsel
-
-
- 901
- 13
- n/a
- International Networks
- 882
- Antarctica
-
-
- 432
- 999
- ir
- Iran
- 98
- Fix Line
-
-
- 432
- 19
- ir
- Iran
- 98
- Mobile Telecommunications Company of Esfahan JV-PJS (MTCE)
-
-
- 432
- 70
- ir
- Iran
- 98
- MTCE
-
-
- 432
- 35
- ir
- Iran
- 98
- MTN/IranCell
-
-
- 432
- 20
- ir
- Iran
- 98
- Rightel
-
-
- 432
- 32
- ir
- Iran
- 98
- Taliya
-
-
- 432
- 11
- ir
- Iran
- 98
- MCI/TCI
-
-
- 432
- 14
- ir
- Iran
- 98
- TKC/KFZO
-
-
- 418
- 05
- iq
- Iraq
- 964
- Asia Cell
-
-
- 418
- 66
- iq
- Iraq
- 964
- Fastlink
-
-
- 418
- 92
- iq
- Iraq
- 964
- Itisaluna and Kalemat
-
-
- 418
- 82
- iq
- Iraq
- 964
- Korek
-
-
- 418
- 40
- iq
- Iraq
- 964
- Korek
-
-
- 418
- 45
- iq
- Iraq
- 964
- Mobitel
-
-
- 418
- 30
- iq
- Iraq
- 964
- Orascom Telecom
-
-
- 418
- 08
- iq
- Iraq
- 964
- Sanatel
-
-
- 418
- 20
- iq
- Iraq
- 964
- Zain
-
-
- 418
- 30
- iq
- Iraq
- 964
- Zain
-
-
- 272
- 04
- ie
- Ireland
- 353
- Access Telecom Ltd.
-
-
- 272
- 03
- ie
- Ireland
- 353
- Meteor / eir mobile
-
-
- 272
- 07
- ie
- Ireland
- 353
- Meteor / eir mobile
-
-
- 272
- 08
- ie
- Ireland
- 353
- Meteor / eir mobile
-
-
- 272
- 13
- ie
- Ireland
- 353
- Lycamobile
-
-
- 272
- 11
- ie
- Ireland
- 353
- Tesco Mobile
-
-
- 272
- 17
- ie
- Ireland
- 353
- 3
-
-
- 272
- 02
- ie
- Ireland
- 353
- 3
-
-
- 272
- 05
- ie
- Ireland
- 353
- 3
-
-
- 272
- 15
- ie
- Ireland
- 353
- Virgin Media
-
-
- 272
- 01
- ie
- Ireland
- 353
- Vodafone
-
-
- 425
- 19
- il
- Israel
- 972
- 019 Mobile
-
-
- 425
- 299
- il
- Israel
- 972
- Annatel Mobile
-
-
- 425
- 23
- il
- Israel
- 972
- Beezz
-
-
- 425
- 299
- il
- Israel
- 972
- Bynet
-
-
- 425
- 299
- il
- Israel
- 972
- Cellact
-
-
- 425
- 02
- il
- Israel
- 972
- Cellcom
-
-
- 425
- 299
- il
- Israel
- 972
- Failed Calls
-
-
- 425
- 08
- il
- Israel
- 972
- Golan Telecom
-
-
- 425
- 15
- il
- Israel
- 972
- Home Cellular
-
-
- 425
- 77
- il
- Israel
- 972
- Hot Mobile
-
-
- 425
- 07
- il
- Israel
- 972
- Hot Mobile
-
-
- 425
- 07
- il
- Israel
- 972
- Hot Mobile
-
-
- 425
- 13
- il
- Israel
- 972
- Ituran
-
-
- 425
- 22
- il
- Israel
- 972
- Maskyoo
-
-
- 425
- 01
- il
- Israel
- 972
- Orange
-
-
- 425
- 03
- il
- Israel
- 972
- Pelephone
-
-
- 425
- 12
- il
- Israel
- 972
- Pelephone
-
-
- 425
- 16
- il
- Israel
- 972
- Rami Levy Communications
-
-
- 425
- 299
- il
- Israel
- 972
- T2T
-
-
- 425
- 19
- il
- Israel
- 972
- Telzar/AZI
-
-
- 425
- 17
- il
- Israel
- 972
- Von waves
-
-
- 425
- 09
- il
- Israel
- 972
- We4G
-
-
- 425
- 14
- il
- Israel
- 972
- YouPhone
-
-
- 222
- 299
- it
- Italy
- 39
- A-Tono
-
-
- 222
- 40
- it
- Italy
- 39
- Agile Telecom
-
-
- 222
- 34
- it
- Italy
- 39
- BT mobile
-
-
- 222
- 299
- it
- Italy
- 39
- Esendex
-
-
- 222
- 299
- it
- Italy
- 39
- Compatel
-
-
- 222
- 53
- it
- Italy
- 39
- CoopVoce
-
-
- 222
- 36
- it
- Italy
- 39
- Digi
-
-
- 222
- 36
- it
- Italy
- 39
- Digi
-
-
- 222
- 299
- it
- Italy
- 39
- DireQ
-
-
- 222
- 02
- it
- Italy
- 39
- Elsacom
-
-
- 222
- 42
- it
- Italy
- 39
- Enel
-
-
- 222
- 08
- it
- Italy
- 39
- Fastweb
-
-
- 222
- 999
- it
- Italy
- 39
- Fix Line
-
-
- 222
- 99
- it
- Italy
- 39
- WindTre / Hi3G
-
-
- 222
- 50
- it
- Italy
- 39
- Iliad
-
-
- 222
- 77
- it
- Italy
- 39
- IPSE 2000
-
-
- 222
- 299
- it
- Italy
- 39
- Kaleyra
-
-
- 222
- 39
- it
- Italy
- 39
- SMS.it / LINK Mobility
-
-
- 222
- 35
- it
- Italy
- 39
- Lycamobile
-
-
- 222
- 07
- it
- Italy
- 39
- Noverca Italia
-
-
- 222
- 54
- it
- Italy
- 39
- Plintron
-
-
- 222
- 33
- it
- Italy
- 39
- Poste Mobile
-
-
- 222
- 00
- it
- Italy
- 39
- Premium Numbers
-
-
- 222
- 58
- it
- Italy
- 39
- rdcom
-
-
- 222
- 30
- it
- Italy
- 39
- RFI
-
-
- 222
- 56
- it
- Italy
- 39
- spusu
-
-
- 222
- 43
- it
- Italy
- 39
- Telecom Italia Mobile
-
-
- 222
- 01
- it
- Italy
- 39
- TIM
-
-
- 222
- 48
- it
- Italy
- 39
- Telecom Italia Mobile
-
-
- 222
- 299
- it
- Italy
- 39
- Sparkle
-
-
- 222
- 44
- it
- Italy
- 39
- Mundio
-
-
- 222
- 51
- it
- Italy
- 39
- ho.
-
-
- 222
- 49
- it
- Italy
- 39
- Vianova Mobile
-
-
- 222
- 10
- it
- Italy
- 39
- Vodafone
-
-
- 222
- 06
- it
- Italy
- 39
- Vodafone
-
-
- 222
- 06
- it
- Italy
- 39
- Vodafone
-
-
- 222
- 00
- it
- Italy
- 39
- VOIP Line
-
-
- 222
- 299
- it
- Italy
- 39
- Vola
-
-
- 222
- 299
- it
- Italy
- 39
- Webcom
-
-
- 222
- 44
- it
- Italy
- 39
- Mundio
-
-
- 222
- 88
- it
- Italy
- 39
- WindTre / WIND
-
-
- 222
- 37
- it
- Italy
- 39
- WindTre / Hi3G
-
-
- 612
- 07
- ci
- Ivory Coast
- 225
- Aircomm SA
-
-
- 612
- 04
- ci
- Ivory Coast
- 225
- Comium
-
-
- 612
- 01
- ci
- Ivory Coast
- 225
- Comstar
-
-
- 612
- 02
- ci
- Ivory Coast
- 225
- Moov
-
-
- 612
- 05
- ci
- Ivory Coast
- 225
- MTN
-
-
- 612
- 03
- ci
- Ivory Coast
- 225
- Orange
-
-
- 612
- 06
- ci
- Ivory Coast
- 225
- OriCell
-
-
- 338
- 020
- jm
- Jamaica
- 1876
- Cable & Wireless
-
-
- 338
- 110
- jm
- Jamaica
- 1876
- Cable & Wireless
-
-
- 338
- 180
- jm
- Jamaica
- 1876
- Cable & Wireless
-
-
- 338
- 050
- jm
- Jamaica
- 1876
- DIGICEL/Mossel
-
-
- 440
- 00
- jp
- Japan
- 81
- Y-Mobile
-
-
- 440
- 89
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 51
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 75
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 70
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 56
- jp
- Japan
- 81
- KDDI
-
-
- 441
- 70
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 52
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 76
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 71
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 53
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 77
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 08
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 72
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 54
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 79
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 07
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 73
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 55
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 88
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 50
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 74
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 70
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 02
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 22
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 43
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 27
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 87
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 17
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 31
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 65
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 36
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 92
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 03
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 12
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 58
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 28
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 61
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 18
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 91
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 32
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 66
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 35
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 93
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 40
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 09
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 49
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 29
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 60
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 19
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 90
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 33
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 67
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 14
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 94
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 41
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 10
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 62
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 39
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 30
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 45
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 01
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 24
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 68
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 15
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 98
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 42
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 11
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 63
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 38
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 26
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 23
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 21
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 44
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 13
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 69
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 16
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 441
- 99
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 34
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 64
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 37
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 25
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 99
- jp
- Japan
- 81
- NTT DoCoMo
-
-
- 440
- 78
- jp
- Japan
- 81
- Okinawa Cellular
-
-
- 440
- 11
- jp
- Japan
- 81
- Rakuten Mobile
-
-
- 440
- 00
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 20
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 21
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 05
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 01
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 94
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 46
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 97
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 42
- jp
- Japan
- 81
- SoftBank
-
-
- 441
- 65
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 90
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 96
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 92
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 98
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 43
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 48
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 06
- jp
- Japan
- 81
- SoftBank
-
-
- 441
- 61
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 44
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 04
- jp
- Japan
- 81
- SoftBank
-
-
- 441
- 62
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 45
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 20
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 40
- jp
- Japan
- 81
- SoftBank
-
-
- 441
- 63
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 93
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 47
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 95
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 41
- jp
- Japan
- 81
- SoftBank
-
-
- 441
- 64
- jp
- Japan
- 81
- SoftBank
-
-
- 440
- 85
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 83
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 80
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 86
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 81
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 84
- jp
- Japan
- 81
- KDDI
-
-
- 440
- 82
- jp
- Japan
- 81
- KDDI
-
-
- 416
- 999
- jo
- Jordan
- 962
- Fix Line
-
-
- 416
- 77
- jo
- Jordan
- 962
- Orange
-
-
- 416
- 03
- jo
- Jordan
- 962
- Umniah
-
-
- 416
- 02
- jo
- Jordan
- 962
- Xpress
-
-
- 416
- 01
- jo
- Jordan
- 962
- Zain
-
-
- 401
- 01
- kz
- Kazakhstan
- 7
- Beeline/KaR-Tel LLP
-
-
- 401
- 07
- kz
- Kazakhstan
- 7
- Dalacom/Altel
-
-
- 401
- 02
- kz
- Kazakhstan
- 7
- K-Cell
-
-
- 401
- 77
- kz
- Kazakhstan
- 7
- Tele2/NEO/MTS
-
-
- 639
- 03
- ke
- Kenya
- 254
- Airtel
-
-
- 639
- 05
- ke
- Kenya
- 254
- Airtel
-
-
- 639
- 299
- ke
- Kenya
- 254
- eferio
-
-
- 639
- 06
- ke
- Kenya
- 254
- Finserve Africa
-
-
- 639
- 09
- ke
- Kenya
- 254
- Homeland Media
-
-
- 639
- 12
- ke
- Kenya
- 254
- Infura
-
-
- 639
- 11
- ke
- Kenya
- 254
- Jambo Telcoms
-
-
- 639
- 10
- ke
- Kenya
- 254
- Jamii Telecommunications
-
-
- 639
- 04
- ke
- Kenya
- 254
- Mobile Pay
-
-
- 639
- 01
- ke
- Kenya
- 254
- Safaricom
-
-
- 639
- 02
- ke
- Kenya
- 254
- Safaricom
-
-
- 639
- 07
- ke
- Kenya
- 254
- Telkom
-
-
- 545
- 09
- ki
- Kiribati
- 686
- Kiribati Frigate
-
-
- 221
- 07
- xk
- Kosovo
- 383
- D3 mobile
-
-
- 221
- 06
- xk
- Kosovo
- 383
- Dardafon.Net LLC
-
-
- 221
- 02
- xk
- Kosovo
- 383
- IPKO
-
-
- 221
- 299
- xk
- Kosovo
- 383
- MTS
-
-
- 221
- 03
- xk
- Kosovo
- 383
- MTS
-
-
- 221
- 01
- xk
- Kosovo
- 383
- Vala
-
-
- 419
- 999
- kw
- Kuwait
- 965
- Fix Line
-
-
- 419
- 02
- kw
- Kuwait
- 965
- Zain
-
-
- 419
- 04
- kw
- Kuwait
- 965
- Viva
-
-
- 419
- 03
- kw
- Kuwait
- 965
- Ooredoo
-
-
- 437
- 01
- kg
- Kyrgyzstan
- 996
- Beeline
-
-
- 437
- 299
- kg
- Kyrgyzstan
- 996
- Failed Calls
-
-
- 437
- 02
- kg
- Kyrgyzstan
- 996
- KT Mobile
-
-
- 437
- 05
- kg
- Kyrgyzstan
- 996
- MegaCom
-
-
- 437
- 09
- kg
- Kyrgyzstan
- 996
- O!
-
-
- 437
- 10
- kg
- Kyrgyzstan
- 996
- Saima
-
-
- 437
- 03
- kg
- Kyrgyzstan
- 996
- Sem Mobile
-
-
- 457
- 02
- la
- Laos
- 856
- ETL Mobile
-
-
- 457
- 01
- la
- Laos
- 856
- Lao Tel
-
-
- 457
- 08
- la
- Laos
- 856
- Beeline/Tigo/Millicom
-
-
- 457
- 03
- la
- Laos
- 856
- UNITEL/LAT
-
-
- 247
- 05
- lv
- Latvia
- 371
- Bite
-
-
- 247
- 10
- lv
- Latvia
- 371
- LMT
-
-
- 247
- 01
- lv
- Latvia
- 371
- LMT
-
-
- 247
- 299
- lv
- Latvia
- 371
- Premium Numbers
-
-
- 247
- 07
- lv
- Latvia
- 371
- SIA Master Telecom
-
-
- 247
- 06
- lv
- Latvia
- 371
- SIA Rigatta
-
-
- 247
- 02
- lv
- Latvia
- 371
- Tele2
-
-
- 247
- 04
- lv
- Latvia
- 371
- Tet
-
-
- 247
- 03
- lv
- Latvia
- 371
- TRIATEL
-
-
- 247
- 08
- lv
- Latvia
- 371
- VENTA Mobile
-
-
- 247
- 09
- lv
- Latvia
- 371
- XOmobile
-
-
- 415
- 35
- lb
- Lebanon
- 961
- Cellis
-
-
- 415
- 33
- lb
- Lebanon
- 961
- Cellis
-
-
- 415
- 32
- lb
- Lebanon
- 961
- Cellis
-
-
- 415
- 34
- lb
- Lebanon
- 961
- FTML Cellis
-
-
- 415
- 39
- lb
- Lebanon
- 961
- MIC2/LibanCell/MTC
-
-
- 415
- 38
- lb
- Lebanon
- 961
- MIC2/LibanCell/MTC
-
-
- 415
- 37
- lb
- Lebanon
- 961
- MIC2/LibanCell/MTC
-
-
- 415
- 01
- lb
- Lebanon
- 961
- MIC1 (Alfa)
-
-
- 415
- 03
- lb
- Lebanon
- 961
- MIC2/LibanCell/MTC
-
-
- 415
- 36
- lb
- Lebanon
- 961
- MIC2/LibanCell/MTC
-
-
- 651
- 02
- ls
- Lesotho
- 266
- Econet
-
-
- 651
- 01
- ls
- Lesotho
- 266
- Vodacom
-
-
- 618
- 02
- lr
- Liberia
- 231
- Libercell
-
-
- 618
- 20
- lr
- Liberia
- 231
- LibTelco
-
-
- 618
- 01
- lr
- Liberia
- 231
- MTN / Lonestar
-
-
- 618
- 04
- lr
- Liberia
- 231
- Novafone
-
-
- 618
- 07
- lr
- Liberia
- 231
- Orange
-
-
- 606
- 02
- ly
- Libya
- 218
- Al-Madar
-
-
- 606
- 01
- ly
- Libya
- 218
- Al-Madar
-
-
- 606
- 06
- ly
- Libya
- 218
- Hatef
-
-
- 606
- 00
- ly
- Libya
- 218
- Libyana
-
-
- 606
- 00
- ly
- Libya
- 218
- Libyana
-
-
- 606
- 03
- ly
- Libya
- 218
- LibyaPhone Mobile
-
-
- 295
- 02
- li
- Liechtenstein
- 423
- 7acht
-
-
- 295
- 06
- li
- Liechtenstein
- 423
- CUBIC
-
-
- 295
- 299
- li
- Liechtenstein
- 423
- Datamobile
-
-
- 295
- 299
- li
- Liechtenstein
- 423
- Dimoco
-
-
- 295
- 09
- li
- Liechtenstein
- 423
- EMnify
-
-
- 295
- 07
- li
- Liechtenstein
- 423
- First Mobile AG
-
-
- 295
- 01
- li
- Liechtenstein
- 423
- FL GSM
-
-
- 295
- 05
- li
- Liechtenstein
- 423
- FL1
-
-
- 295
- 299
- li
- Liechtenstein
- 423
- SORACOM
-
-
- 295
- 77
- li
- Liechtenstein
- 423
- Alpmobile/Tele2
-
-
- 295
- 299
- li
- Liechtenstein
- 423
- Telna
-
-
- 246
- 02
- lt
- Lithuania
- 370
- Bite
-
-
- 246
- 05
- lt
- Lithuania
- 370
- LTG
-
-
- 246
- 06
- lt
- Lithuania
- 370
- Mediafon
-
-
- 246
- 299
- lt
- Lithuania
- 370
- SkyCall
-
-
- 246
- 03
- lt
- Lithuania
- 370
- Tele2
-
-
- 246
- 299
- lt
- Lithuania
- 370
- Teletel
-
-
- 246
- 01
- lt
- Lithuania
- 370
- Telia
-
-
- 270
- 10
- lu
- Luxembourg
- 352
- Blue Communications
-
-
- 270
- 299
- lu
- Luxembourg
- 352
- Bouygues Telecom
-
-
- 270
- 81
- lu
- Luxembourg
- 352
- e-LUX Mobile
-
-
- 270
- 299
- lu
- Luxembourg
- 352
- Eltrona
-
-
- 270
- 999
- lu
- Luxembourg
- 352
- Fix Line
-
-
- 270
- 05
- lu
- Luxembourg
- 352
- Luxembourg Online
-
-
- 270
- 299
- lu
- Luxembourg
- 352
- MTX Connect
-
-
- 270
- 99
- lu
- Luxembourg
- 352
- Orange
-
-
- 270
- 01
- lu
- Luxembourg
- 352
- Post
-
-
- 270
- 77
- lu
- Luxembourg
- 352
- Tango
-
-
- 455
- 01
- mo
- Macao
- 853
- C.T.M. TELEMOVEL+
-
-
- 455
- 04
- mo
- Macao
- 853
- C.T.M. TELEMOVEL+
-
-
- 455
- 02
- mo
- Macao
- 853
- China Telecom
-
-
- 455
- 05
- mo
- Macao
- 853
- Hutchison Telephone Co. Ltd
-
-
- 455
- 03
- mo
- Macao
- 853
- Hutchison Telephone Co. Ltd
-
-
- 455
- 06
- mo
- Macao
- 853
- Smartone Mobile
-
-
- 455
- 00
- mo
- Macao
- 853
- Smartone Mobile
-
-
- 646
- 01
- mg
- Madagascar
- 261
- Airtel
-
-
- 646
- 299
- mg
- Madagascar
- 261
- Bip
-
-
- 646
- 02
- mg
- Madagascar
- 261
- Orange
-
-
- 646
- 03
- mg
- Madagascar
- 261
- Sacel
-
-
- 646
- 04
- mg
- Madagascar
- 261
- Telma
-
-
- 650
- 10
- mw
- Malawi
- 265
- Airtel
-
-
- 650
- 01
- mw
- Malawi
- 265
- TNM
-
-
- 502
- 156
- my
- Malaysia
- 60
- Altel Communications
-
-
- 502
- 01
- my
- Malaysia
- 60
- Art900
-
-
- 502
- 14
- my
- Malaysia
- 60
- Telekom Malaysia
-
-
- 502
- 11
- my
- Malaysia
- 60
- Telekom Malaysia
-
-
- 502
- 151
- my
- Malaysia
- 60
- Baraka Telecom Sdn Bhd
-
-
- 502
- 19
- my
- Malaysia
- 60
- Celcom
-
-
- 502
- 13
- my
- Malaysia
- 60
- Celcom
-
-
- 502
- 198
- my
- Malaysia
- 60
- Celcom
-
-
- 502
- 10
- my
- Malaysia
- 60
- DiGi
-
-
- 502
- 16
- my
- Malaysia
- 60
- DiGi
-
-
- 502
- 20
- my
- Malaysia
- 60
- Electcoms Wireless Sdn Bhd
-
-
- 502
- 999
- my
- Malaysia
- 60
- Fix Line
-
-
- 502
- 299
- my
- Malaysia
- 60
- MKN
-
-
- 502
- 17
- my
- Malaysia
- 60
- Maxis
-
-
- 502
- 12
- my
- Malaysia
- 60
- Maxis
-
-
- 502
- 299
- my
- Malaysia
- 60
- Maxis Broadband
-
-
- 502
- 299
- my
- Malaysia
- 60
- OCESB
-
-
- 502
- 299
- my
- Malaysia
- 60
- REDtone Mobile
-
-
- 502
- 299
- my
- Malaysia
- 60
- REDtone
-
-
- 502
- 155
- my
- Malaysia
- 60
- Samata Communications Sdn Bhd
-
-
- 502
- 154
- my
- Malaysia
- 60
- TT dotCom
-
-
- 502
- 299
- my
- Malaysia
- 60
- TT dotCom
-
-
- 502
- 150
- my
- Malaysia
- 60
- Tune Talk
-
-
- 502
- 18
- my
- Malaysia
- 60
- U Mobile
-
-
- 502
- 153
- my
- Malaysia
- 60
- Webe Digital
-
-
- 502
- 195
- my
- Malaysia
- 60
- XOX Com
-
-
- 502
- 299
- my
- Malaysia
- 60
- Y-Max
-
-
- 502
- 152
- my
- Malaysia
- 60
- Yes
-
-
- 472
- 01
- mv
- Maldives
- 960
- Dhiraagu/C&W
-
-
- 472
- 02
- mv
- Maldives
- 960
- Ooredo/Wataniya
-
-
- 610
- 01
- ml
- Mali
- 223
- Malitel
-
-
- 610
- 02
- ml
- Mali
- 223
- Orange
-
-
- 610
- 03
- ml
- Mali
- 223
- Telecel
-
-
- 278
- 01
- mt
- Malta
- 356
- Vodafone
-
-
- 278
- 999
- mt
- Malta
- 356
- Fix Line
-
-
- 278
- 21
- mt
- Malta
- 356
- GO Mobile
-
-
- 278
- 30
- mt
- Malta
- 356
- GO Mobile
-
-
- 278
- 77
- mt
- Malta
- 356
- Melita
-
-
- 551
- 299
- mh
- Marshall Islands
- 692
- Failed Calls
-
-
- 551
- 299
- mh
- Marshall Islands
- 692
- MINTA
-
-
- 340
- 12
- mq
- Martinique
- 596
- UTS Caraibe
-
-
- 609
- 02
- mr
- Mauritania
- 222
- Chinguitel
-
-
- 609
- 01
- mr
- Mauritania
- 222
- Mattel
-
-
- 609
- 10
- mr
- Mauritania
- 222
- Mauritel
-
-
- 617
- 03
- mu
- Mauritius
- 230
- Chili
-
-
- 617
- 02
- mu
- Mauritius
- 230
- Chili
-
-
- 617
- 10
- mu
- Mauritius
- 230
- Emtel
-
-
- 617
- 01
- mu
- Mauritius
- 230
- my.t mobile
-
-
- 647
- 01
- yt
- Mayotte
- 262
- Maore Mobile
-
-
- 647
- 10
- yt
- Mayotte
- 262
- SFR
-
-
- 334
- 050
- mx
- Mexico
- 52
- AT&T/IUSACell
-
-
- 334
- 040
- mx
- Mexico
- 52
- AT&T/IUSACell
-
-
- 334
- 05
- mx
- Mexico
- 52
- AT&T/IUSACell
-
-
- 334
- 04
- mx
- Mexico
- 52
- AT&T/IUSACell
-
-
- 334
- 50
- mx
- Mexico
- 52
- AT&T/IUSACell
-
-
- 334
- 03
- mx
- Mexico
- 52
- Movistar/Pegaso
-
-
- 334
- 030
- mx
- Mexico
- 52
- Movistar/Pegaso
-
-
- 334
- 090
- mx
- Mexico
- 52
- NEXTEL
-
-
- 334
- 010
- mx
- Mexico
- 52
- NEXTEL
-
-
- 334
- 01
- mx
- Mexico
- 52
- NEXTEL
-
-
- 334
- 09
- mx
- Mexico
- 52
- NEXTEL
-
-
- 334
- 070
- mx
- Mexico
- 52
- Operadora Unefon SA de CV
-
-
- 334
- 080
- mx
- Mexico
- 52
- Operadora Unefon SA de CV
-
-
- 334
- 060
- mx
- Mexico
- 52
- SAI PCS
-
-
- 334
- 020
- mx
- Mexico
- 52
- TelCel/America Movil
-
-
- 334
- 02
- mx
- Mexico
- 52
- TelCel/America Movil
-
-
- 550
- 01
- fm
- Micronesia
- 691
- FSM Telecommunications Corp.
-
-
- 259
- 04
- md
- Moldova
- 373
- Eventis Mobile
-
-
- 259
- 03
- md
- Moldova
- 373
- Unite
-
-
- 259
- 02
- md
- Moldova
- 373
- Moldcell
-
-
- 259
- 01
- md
- Moldova
- 373
- Orange
-
-
- 259
- 03
- md
- Moldova
- 373
- Unite
-
-
- 259
- 99
- md
- Moldova
- 373
- Unite
-
-
- 259
- 05
- md
- Moldova
- 373
- Unite
-
-
- 212
- 10
- mc
- Monaco
- 377
- Monaco Telecom
-
-
- 212
- 01
- mc
- Monaco
- 377
- Monaco Telecom
-
-
- 428
- 98
- mn
- Mongolia
- 976
- G-Mobile Corporation Ltd
-
-
- 428
- 99
- mn
- Mongolia
- 976
- Mobicom
-
-
- 428
- 91
- mn
- Mongolia
- 976
- Skytel Co. Ltd
-
-
- 428
- 00
- mn
- Mongolia
- 976
- Skytel Co. Ltd
-
-
- 428
- 88
- mn
- Mongolia
- 976
- Unitel
-
-
- 297
- 03
- me
- Montenegro
- 382
- Mtel
-
-
- 297
- 02
- me
- Montenegro
- 382
- Telekom / T-mobile
-
-
- 297
- 01
- me
- Montenegro
- 382
- Telenor
-
-
- 354
- 860
- ms
- Montserrat
- 1664
- Cable & Wireless
-
-
- 604
- 04
- ma
- Morocco
- 212
- Al Houria Telecom
-
-
- 604
- 99
- ma
- Morocco
- 212
- Al Houria Telecom
-
-
- 604
- 01
- ma
- Morocco
- 212
- IAM
-
-
- 604
- 06
- ma
- Morocco
- 212
- IAM
-
-
- 604
- 02
- ma
- Morocco
- 212
- inwi
-
-
- 604
- 05
- ma
- Morocco
- 212
- inwi
-
-
- 604
- 00
- ma
- Morocco
- 212
- Orange
-
-
- 643
- 03
- mz
- Mozambique
- 258
- Movitel
-
-
- 643
- 01
- mz
- Mozambique
- 258
- TMCEL
-
-
- 643
- 04
- mz
- Mozambique
- 258
- Vodacom
-
-
- 414
- 999
- mm
- Myanmar
- 95
- Fix Line (Myanmar
-
-
- 414
- 01
- mm
- Myanmar
- 95
- Myanmar Post & Teleco.
-
-
- 414
- 09
- mm
- Myanmar
- 95
- Mytel (Myanmar
-
-
- 414
- 05
- mm
- Myanmar
- 95
- Oreedoo
-
-
- 414
- 06
- mm
- Myanmar
- 95
- Telenor
-
-
- 649
- 299
- na
- Namibia
- 264
- Demshi
-
-
- 649
- 01
- na
- Namibia
- 264
- MTC
-
-
- 649
- 02
- na
- Namibia
- 264
- Switch/Nam. Telec.
-
-
- 649
- 03
- na
- Namibia
- 264
- TN Mobile
-
-
- 429
- 999
- np
- Nepal
- 977
- Fix Line
-
-
- 429
- 02
- np
- Nepal
- 977
- Ncell
-
-
- 429
- 01
- np
- Nepal
- 977
- NT Mobile / Namaste
-
-
- 429
- 04
- np
- Nepal
- 977
- Smart Cell
-
-
- 204
- 14
- nl
- Netherlands
- 31
- 6GMOBILE BV
-
-
- 204
- 299
- nl
- Netherlands
- 31
- 88 mobile
-
-
- 204
- 299
- nl
- Netherlands
- 31
- AGMS
-
-
- 204
- 30
- nl
- Netherlands
- 31
- ASPIDER Solutions
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Belcentrale
-
-
- 204
- 299
- nl
- Netherlands
- 31
- BodyTrace
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Combird Mobile
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Dean Mobile
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Eazit
-
-
- 204
- 05
- nl
- Netherlands
- 31
- ElephantTalk
-
-
- 204
- 299
- nl
- Netherlands
- 31
- EziMobile
-
-
- 204
- 999
- nl
- Netherlands
- 31
- Fix Line
-
-
- 204
- 299
- nl
- Netherlands
- 31
- interactive digital media / IDM
-
-
- 204
- 17
- nl
- Netherlands
- 31
- Intercity Mobile Communications BV
-
-
- 204
- 00
- nl
- Netherlands
- 31
- Intovoice
-
-
- 204
- 299
- nl
- Netherlands
- 31
- KeenMobile
-
-
- 204
- 23
- nl
- Netherlands
- 31
- KORE
-
-
- 204
- 08
- nl
- Netherlands
- 31
- KPN
-
-
- 204
- 10
- nl
- Netherlands
- 31
- KPN
-
-
- 204
- 69
- nl
- Netherlands
- 31
- KPN
-
-
- 204
- 12
- nl
- Netherlands
- 31
- KPN
-
-
- 204
- 08
- nl
- Netherlands
- 31
- KPN
-
-
- 204
- 12
- nl
- Netherlands
- 31
- KPN/Telfort
-
-
- 204
- 27
- nl
- Netherlands
- 31
- L-mobi
-
-
- 204
- 28
- nl
- Netherlands
- 31
- Lancelot
-
-
- 204
- 98
- nl
- Netherlands
- 31
- Lancelot
-
-
- 204
- 09
- nl
- Netherlands
- 31
- Lycamobile
-
-
- 204
- 63
- nl
- Netherlands
- 31
- MessageBird
-
-
- 204
- 299
- nl
- Netherlands
- 31
- mGage
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Motto
-
-
- 204
- 07
- nl
- Netherlands
- 31
- Move / Teleena
-
-
- 204
- 06
- nl
- Netherlands
- 31
- Vectone Mobile
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Okta8
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Premium Routing
-
-
- 204
- 24
- nl
- Netherlands
- 31
- Private Mobility
-
-
- 204
- 21
- nl
- Netherlands
- 31
- ProRail
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Redworks
-
-
- 204
- 26
- nl
- Netherlands
- 31
- SpeakUp
-
-
- 204
- 98
- nl
- Netherlands
- 31
- T-Mobile
-
-
- 204
- 02
- nl
- Netherlands
- 31
- T-Mobile
-
-
- 204
- 20
- nl
- Netherlands
- 31
- T-Mobile
-
-
- 204
- 16
- nl
- Netherlands
- 31
- T-Mobile
-
-
- 204
- 20
- nl
- Netherlands
- 31
- T-mobile/former Orange
-
-
- 204
- 02
- nl
- Netherlands
- 31
- Tele2
-
-
- 204
- 29
- nl
- Netherlands
- 31
- Tismi
-
-
- 204
- 33
- nl
- Netherlands
- 31
- Truphone
-
-
- 204
- 68
- nl
- Netherlands
- 31
- Unify Mobile
-
-
- 204
- 299
- nl
- Netherlands
- 31
- Vectone Mobile
-
-
- 204
- 04
- nl
- Netherlands
- 31
- Vodafone
-
-
- 204
- 03
- nl
- Netherlands
- 31
- Voiceworks Mobile
-
-
- 204
- 15
- nl
- Netherlands
- 31
- Ziggo
-
-
- 204
- 18
- nl
- Netherlands
- 31
- Ziggo Services
-
-
- 362
- 630
- an
- Netherlands Antilles
- 599
- Cingular Wireless
-
-
- 362
- 51
- an
- Netherlands Antilles
- 599
- TELCELL GSM
-
-
- 362
- 91
- an
- Netherlands Antilles
- 599
- SETEL GSM
-
-
- 362
- 951
- an
- Netherlands Antilles
- 599
- UTS Wireless
-
-
- 546
- 01
- nc
- New Caledonia
- 687
- OPT Mobilis
-
-
- 530
- 28
- nz
- New Zealand
- 64
- 2degrees
-
-
- 530
- 999
- nz
- New Zealand
- 64
- Fix Line
-
-
- 530
- 05
- nz
- New Zealand
- 64
- Spark Mobile
-
-
- 530
- 02
- nz
- New Zealand
- 64
- Spark Mobile
-
-
- 530
- 04
- nz
- New Zealand
- 64
- Telstra
-
-
- 530
- 24
- nz
- New Zealand
- 64
- 2degrees
-
-
- 530
- 01
- nz
- New Zealand
- 64
- Vodafone
-
-
- 530
- 03
- nz
- New Zealand
- 64
- Walker Wireless Ltd.
-
-
- 710
- 21
- ni
- Nicaragua
- 505
- Empresa Nicaraguense de Telecomunicaciones SA (ENITEL)
-
-
- 710
- 999
- ni
- Nicaragua
- 505
- Fix Line
-
-
- 710
- 30
- ni
- Nicaragua
- 505
- Movistar
-
-
- 710
- 73
- ni
- Nicaragua
- 505
- Claro
-
-
- 614
- 02
- ne
- Niger
- 227
- Airtel
-
-
- 614
- 03
- ne
- Niger
- 227
- Moov
-
-
- 614
- 01
- ne
- Niger
- 227
- Niger Telecoms
-
-
- 614
- 04
- ne
- Niger
- 227
- Orange
-
-
- 621
- 60
- ng
- Nigeria
- 234
- 9mobile
-
-
- 621
- 20
- ng
- Nigeria
- 234
- Airtel
-
-
- 621
- 299
- ng
- Nigeria
- 234
- Alpha Technologies
-
-
- 621
- 50
- ng
- Nigeria
- 234
- Glo Mobile
-
-
- 621
- 30
- ng
- Nigeria
- 234
- MTN
-
-
- 621
- 40
- ng
- Nigeria
- 234
- ntel
-
-
- 621
- 27
- ng
- Nigeria
- 234
- Smile
-
-
- 621
- 99
- ng
- Nigeria
- 234
- Starcomms
-
-
- 621
- 01
- ng
- Nigeria
- 234
- Visafone
-
-
- 621
- 25
- ng
- Nigeria
- 234
- Visafone
-
-
- 621
- 299
- ng
- Nigeria
- 234
- Zodafones
-
-
- 555
- 01
- nu
- Niue
- 683
- Niue Telecom
-
-
- 467
- 299
- kp
- North Korea
- 850
- Failed Calls
-
-
- 467
- 299
- kp
- North Korea
- 850
- Kangsung Net
-
-
- 467
- 192
- kp
- North Korea
- 850
- Koryolink
-
-
- 467
- 192
- kp
- North Korea
- 850
- Koryolink
-
-
- 467
- 193
- kp
- North Korea
- 850
- Sun Net
-
-
- 294
- 02
- mk
- North Macedonia
- 389
- A1
-
-
- 294
- 03
- mk
- North Macedonia
- 389
- A1
-
-
- 294
- 75
- mk
- North Macedonia
- 389
- A1
-
-
- 294
- 299
- mk
- North Macedonia
- 389
- Failed Calls
-
-
- 294
- 299
- mk
- North Macedonia
- 389
- LATRON
-
-
- 294
- 04
- mk
- North Macedonia
- 389
- Lycamobile
-
-
- 294
- 11
- mk
- North Macedonia
- 389
- Mobik
-
-
- 294
- 02
- mk
- North Macedonia
- 389
- A1
-
-
- 294
- 299
- mk
- North Macedonia
- 389
- Telekabel
-
-
- 294
- 01
- mk
- North Macedonia
- 389
- Telekom
-
-
- 294
- 03
- mk
- North Macedonia
- 389
- VIP Mobile
-
-
- 242
- 22
- no
- Norway
- 47
- Altibox Mobil
-
-
- 242
- 21
- no
- Norway
- 47
- BANE NOR
-
-
- 242
- 20
- no
- Norway
- 47
- BANE NOR
-
-
- 242
- 299
- no
- Norway
- 47
- bigblu
-
-
- 242
- 299
- no
- Norway
- 47
- Chilimobil
-
-
- 242
- 09
- no
- Norway
- 47
- Com4
-
-
- 242
- 15
- no
- Norway
- 47
- eRate
-
-
- 242
- 999
- no
- Norway
- 47
- Fix Line
-
-
- 242
- 299
- no
- Norway
- 47
- GlobalConnect
-
-
- 242
- 299
- no
- Norway
- 47
- Ibidium
-
-
- 242
- 14
- no
- Norway
- 47
- ICE
-
-
- 242
- 299
- no
- Norway
- 47
- intility
-
-
- 242
- 16
- no
- Norway
- 47
- Iristel
-
-
- 242
- 299
- no
- Norway
- 47
- JetNett
-
-
- 242
- 23
- no
- Norway
- 47
- Lycamobile
-
-
- 242
- 05
- no
- Norway
- 47
- Network Norway
-
-
- 242
- 05
- no
- Norway
- 47
- Altibox Mobil
-
-
- 242
- 299
- no
- Norway
- 47
- NextGenTel
-
-
- 242
- 10
- no
- Norway
- 47
- Nkom
-
-
- 242
- 299
- no
- Norway
- 47
- Nodnett
-
-
- 242
- 06
- no
- Norway
- 47
- ICE
-
-
- 242
- 299
- no
- Norway
- 47
- Puzzel
-
-
- 242
- 299
- no
- Norway
- 47
- Sierra Wireless
-
-
- 242
- 299
- no
- Norway
- 47
- Svea
-
-
- 242
- 08
- no
- Norway
- 47
- TDC Mobil A/S
-
-
- 242
- 299
- no
- Norway
- 47
- Telavox
-
-
- 242
- 04
- no
- Norway
- 47
- Tele2
-
-
- 242
- 12
- no
- Norway
- 47
- Telenor
-
-
- 242
- 01
- no
- Norway
- 47
- Telenor
-
-
- 242
- 03
- no
- Norway
- 47
- Teletopia
-
-
- 242
- 08
- no
- Norway
- 47
- Telia / NetCom
-
-
- 242
- 02
- no
- Norway
- 47
- Telia / NetCom
-
-
- 242
- 299
- no
- Norway
- 47
- unifon
-
-
- 242
- 017
- no
- Norway
- 47
- Ventelo AS
-
-
- 242
- 07
- no
- Norway
- 47
- Ventelo AS
-
-
- 422
- 03
- om
- Oman
- 968
- Nawras
-
-
- 422
- 02
- om
- Oman
- 968
- Oman Mobile/GTO
-
-
- 410
- 299
- pk
- Pakistan
- 92
- Failed Calls
-
-
- 410
- 08
- pk
- Pakistan
- 92
- Instaphone
-
-
- 410
- 01
- pk
- Pakistan
- 92
- Jazz
-
-
- 410
- 07
- pk
- Pakistan
- 92
- Jazz
-
-
- 410
- 05
- pk
- Pakistan
- 92
- SCOM
-
-
- 410
- 06
- pk
- Pakistan
- 92
- Telenor
-
-
- 410
- 03
- pk
- Pakistan
- 92
- Ufone
-
-
- 410
- 299
- pk
- Pakistan
- 92
- Warid
-
-
- 410
- 04
- pk
- Pakistan
- 92
- Zong
-
-
- 552
- 80
- pw
- Palau
- 680
- Palau Mobile Corp. (PMC) (Palau
-
-
- 552
- 01
- pw
- Palau
- 680
- Palau National Communications Corp. (PNCC) (Palau
-
-
- 552
- 02
- pw
- Palau
- 680
- PECI/PalauTel (Palau
-
-
- 425
- 05
- ps
- Palestinian Territory
- 970
- Jawwal
-
-
- 425
- 06
- ps
- Palestinian Territory
- 970
- Ooredoo
-
-
- 714
- 01
- pa
- Panama
- 507
- Cable & W./Mas Movil
-
-
- 714
- 03
- pa
- Panama
- 507
- Claro
-
-
- 714
- 04
- pa
- Panama
- 507
- Digicel
-
-
- 714
- 999
- pa
- Panama
- 507
- Fix Line
-
-
- 714
- 020
- pa
- Panama
- 507
- Movistar
-
-
- 714
- 02
- pa
- Panama
- 507
- Movistar
-
-
- 537
- 03
- pg
- Papua New Guinea
- 675
- Digicel
-
-
- 537
- 999
- pg
- Papua New Guinea
- 675
- Fix Line
-
-
- 537
- 02
- pg
- Papua New Guinea
- 675
- GreenCom PNG Ltd
-
-
- 537
- 01
- pg
- Papua New Guinea
- 675
- Pacific Mobile
-
-
- 744
- 02
- py
- Paraguay
- 595
- Claro/Hutchison
-
-
- 744
- 03
- py
- Paraguay
- 595
- Compa
-
-
- 744
- 01
- py
- Paraguay
- 595
- Hola/VOX
-
-
- 744
- 05
- py
- Paraguay
- 595
- TIM/Nucleo/Personal
-
-
- 744
- 04
- py
- Paraguay
- 595
- Tigo/Telecel
-
-
- 716
- 20
- pe
- Peru
- 51
- Claro /Amer.Mov./TIM
-
-
- 716
- 10
- pe
- Peru
- 51
- Claro /Amer.Mov./TIM
-
-
- 716
- 02
- pe
- Peru
- 51
- GlobalStar
-
-
- 716
- 01
- pe
- Peru
- 51
- GlobalStar
-
-
- 716
- 06
- pe
- Peru
- 51
- Movistar
-
-
- 716
- 07
- pe
- Peru
- 51
- Nextel
-
-
- 716
- 17
- pe
- Peru
- 51
- Nextel
-
-
- 716
- 15
- pe
- Peru
- 51
- Viettel Mobile
-
-
- 515
- 999
- ph
- Philippines
- 63
- Fix Line
-
-
- 515
- 02
- ph
- Philippines
- 63
- Globe Telecom
-
-
- 515
- 01
- ph
- Philippines
- 63
- Globe Telecom
-
-
- 515
- 88
- ph
- Philippines
- 63
- Next Mobile
-
-
- 515
- 18
- ph
- Philippines
- 63
- RED Mobile/Cure
-
-
- 515
- 03
- ph
- Philippines
- 63
- Smart
-
-
- 515
- 05
- ph
- Philippines
- 63
- SUN/Digitel
-
-
- 260
- 299
- pl
- Poland
- 48
- 3S
-
-
- 260
- 04
- pl
- Poland
- 48
- Aero2
-
-
- 260
- 16
- pl
- Poland
- 48
- Aero2
-
-
- 260
- 15
- pl
- Poland
- 48
- Aero2
-
-
- 260
- 17
- pl
- Poland
- 48
- Aero2
-
-
- 260
- 17
- pl
- Poland
- 48
- Aero2 SP
-
-
- 260
- 48
- pl
- Poland
- 48
- Agile Telecom
-
-
- 260
- 18
- pl
- Poland
- 48
- AMD Telecom
-
-
- 260
- 299
- pl
- Poland
- 48
- Benemen
-
-
- 260
- 299
- pl
- Poland
- 48
- BSG
-
-
- 260
- 38
- pl
- Poland
- 48
- CallFreedom Sp. z o.o.
-
-
- 260
- 299
- pl
- Poland
- 48
- Caritas Laczy
-
-
- 260
- 299
- pl
- Poland
- 48
- Cludo
-
-
- 260
- 32
- pl
- Poland
- 48
- Compatel
-
-
- 260
- 12
- pl
- Poland
- 48
- Cyfrowy Polsat
-
-
- 260
- 08
- pl
- Poland
- 48
- e-Telko
-
-
- 260
- 41
- pl
- Poland
- 48
- EZ Mobile
-
-
- 260
- 999
- pl
- Poland
- 48
- Fix Line
-
-
- 260
- 299
- pl
- Poland
- 48
- I.M. Consulting
-
-
- 260
- 299
- pl
- Poland
- 48
- Inea
-
-
- 260
- 299
- pl
- Poland
- 48
- IZZI
-
-
- 260
- 299
- pl
- Poland
- 48
- JMDI J. Maleszko
-
-
- 260
- 299
- pl
- Poland
- 48
- Klucz Mobile
-
-
- 260
- 299
- pl
- Poland
- 48
- lajt mobile
-
-
- 260
- 299
- pl
- Poland
- 48
- LoVo
-
-
- 260
- 09
- pl
- Poland
- 48
- Lycamobile
-
-
- 260
- 49
- pl
- Poland
- 48
- Messagebird
-
-
- 260
- 299
- pl
- Poland
- 48
- Metro Mobile
-
-
- 260
- 299
- pl
- Poland
- 48
- Mobile Vikings
-
-
- 260
- 299
- pl
- Poland
- 48
- Mobiledata
-
-
- 260
- 42
- pl
- Poland
- 48
- MobiWeb
-
-
- 260
- 16
- pl
- Poland
- 48
- Mobyland
-
-
- 260
- 299
- pl
- Poland
- 48
- Moja GSM
-
-
- 260
- 13
- pl
- Poland
- 48
- Move
-
-
- 260
- 299
- pl
- Poland
- 48
- multiMOBILE
-
-
- 260
- 36
- pl
- Poland
- 48
- Mundio Mobile Sp. z o.o.
-
-
- 260
- 299
- pl
- Poland
- 48
- Nasza Wizja
-
-
- 260
- 299
- pl
- Poland
- 48
- NAU Mobile
-
-
- 260
- 299
- pl
- Poland
- 48
- nc+ Mobile
-
-
- 260
- 19
- pl
- Poland
- 48
- NetBalt
-
-
- 260
- 07
- pl
- Poland
- 48
- Netia
-
-
- 260
- 299
- pl
- Poland
- 48
- Next Mobile
-
-
- 260
- 299
- pl
- Poland
- 48
- NIMBOW
-
-
- 260
- 11
- pl
- Poland
- 48
- NORDISK Polska
-
-
- 260
- 27
- pl
- Poland
- 48
- Ntel Solutions
-
-
- 260
- 03
- pl
- Poland
- 48
- Orange
-
-
- 260
- 05
- pl
- Poland
- 48
- Orange
-
-
- 260
- 35
- pl
- Poland
- 48
- PKP
-
-
- 260
- 98
- pl
- Poland
- 48
- Play
-
-
- 260
- 06
- pl
- Poland
- 48
- Play
-
-
- 260
- 01
- pl
- Poland
- 48
- Plus
-
-
- 260
- 11
- pl
- Poland
- 48
- Plus
-
-
- 260
- 97
- pl
- Poland
- 48
- Politechnika Lodzka Uczelniane
-
-
- 260
- 90
- pl
- Poland
- 48
- Polska Spolka Gazownictwa
-
-
- 260
- 299
- pl
- Poland
- 48
- Polvoice
-
-
- 260
- 299
- pl
- Poland
- 48
- Pomagacz
-
-
- 260
- 299
- pl
- Poland
- 48
- Premium Mobile
-
-
- 260
- 299
- pl
- Poland
- 48
- SAT FILM
-
-
- 260
- 14
- pl
- Poland
- 48
- Move
-
-
- 260
- 299
- pl
- Poland
- 48
- SGT
-
-
- 260
- 47
- pl
- Poland
- 48
- SMSHIGHWAY
-
-
- 260
- 299
- pl
- Poland
- 48
- Softelnet
-
-
- 260
- 34
- pl
- Poland
- 48
- T-Mobile
-
-
- 260
- 02
- pl
- Poland
- 48
- T-Mobile
-
-
- 260
- 10
- pl
- Poland
- 48
- T-Mobile
-
-
- 260
- 14
- pl
- Poland
- 48
- Telco Leaders
-
-
- 260
- 299
- pl
- Poland
- 48
- Tele GO
-
-
- 260
- 15
- pl
- Poland
- 48
- Aero2
-
-
- 260
- 299
- pl
- Poland
- 48
- TeleCube
-
-
- 260
- 299
- pl
- Poland
- 48
- Telenabler
-
-
- 260
- 299
- pl
- Poland
- 48
- TELGAM
-
-
- 260
- 20
- pl
- Poland
- 48
- Tismi
-
-
- 260
- 299
- pl
- Poland
- 48
- TOYAmobilna
-
-
- 260
- 22
- pl
- Poland
- 48
- Twilio
-
-
- 260
- 299
- pl
- Poland
- 48
- UPC
-
-
- 260
- 299
- pl
- Poland
- 48
- Vectra
-
-
- 260
- 45
- pl
- Poland
- 48
- Virgin Mobile
-
-
- 260
- 45
- pl
- Poland
- 48
- Virgin Mobile
-
-
- 260
- 299
- pl
- Poland
- 48
- Vonage
-
-
- 260
- 39
- pl
- Poland
- 48
- Voxbone / Bandwidth
-
-
- 268
- 999
- pt
- Portugal
- 351
- Fix Line
-
-
- 268
- 04
- pt
- Portugal
- 351
- Lycamobile
-
-
- 268
- 80
- pt
- Portugal
- 351
- MEO
-
-
- 268
- 08
- pt
- Portugal
- 351
- MEO
-
-
- 268
- 06
- pt
- Portugal
- 351
- MEO
-
-
- 268
- 03
- pt
- Portugal
- 351
- NOS
-
-
- 268
- 93
- pt
- Portugal
- 351
- NOS
-
-
- 268
- 299
- pt
- Portugal
- 351
- NOWO
-
-
- 268
- 299
- pt
- Portugal
- 351
- Oni
-
-
- 268
- 03
- pt
- Portugal
- 351
- NOS
-
-
- 268
- 07
- pt
- Portugal
- 351
- NOS
-
-
- 268
- 91
- pt
- Portugal
- 351
- Vodafone
-
-
- 268
- 01
- pt
- Portugal
- 351
- Vodafone
-
-
- 330
- 11
- pr
- Puerto Rico
-
- Puerto Rico Telephone Company Inc. (PRTC)
-
-
- 330
- 110
- pr
- Puerto Rico
-
- Puerto Rico Telephone Company Inc. (PRTC)
-
-
- 427
- 01
- qa
- Qatar
- 974
- Ooredoo/Qtel
-
-
- 427
- 02
- qa
- Qatar
- 974
- Vodafone
-
-
- 647
- 03
- re
- Reunion
- 262
- Only
-
-
- 647
- 02
- re
- Reunion
- 262
- Only
-
-
- 647
- 00
- re
- Reunion
- 262
- Orange
-
-
- 647
- 10
- re
- Reunion
- 262
- SFR
-
-
- 647
- 04
- re
- Reunion
- 262
- ZEOP Mobile
-
-
- 226
- 05
- ro
- Romania
- 40
- Digi Mobil
-
-
- 226
- 11
- ro
- Romania
- 40
- Enigma Systems
-
-
- 226
- 299
- ro
- Romania
- 40
- Iristel
-
-
- 226
- 16
- ro
- Romania
- 40
- Lycamobile
-
-
- 226
- 10
- ro
- Romania
- 40
- Orange
-
-
- 226
- 02
- ro
- Romania
- 40
- Romtelecom SA
-
-
- 226
- 03
- ro
- Romania
- 40
- Telekom
-
-
- 226
- 02
- ro
- Romania
- 40
- Telekom
-
-
- 226
- 06
- ro
- Romania
- 40
- Telekom Romania
-
-
- 226
- 01
- ro
- Romania
- 40
- Vodafone
-
-
- 226
- 04
- ro
- Romania
- 40
- Telekom Romania
-
-
- 250
- 299
- ru
- Russia
- 79
- A-Mobile
-
-
- 250
- 299
- ru
- Russia
- 79
- Antares
-
-
- 250
- 299
- ru
- Russia
- 79
- Aquafon
-
-
- 250
- 299
- ru
- Russia
- 79
- Arktur
-
-
- 250
- 299
- ru
- Russia
- 79
- Astran
-
-
- 250
- 299
- ru
- Russia
- 79
- ASVT
-
-
- 250
- 299
- ru
- Russia
- 79
- Aurora Telecom
-
-
- 250
- 99
- ru
- Russia
- 79
- Beeline
-
-
- 250
- 99
- ru
- Russia
- 79
- BeeLine/VimpelCom
-
-
- 250
- 28
- ru
- Russia
- 79
- BeeLine/VimpelCom
-
-
- 250
- 299
- ru
- Russia
- 79
- Beliton
-
-
- 250
- 299
- ru
- Russia
- 79
- BIT-CENTR
-
-
- 250
- 299
- ru
- Russia
- 79
- Center 2M
-
-
- 250
- 299
- ru
- Russia
- 79
- Cifra 1
-
-
- 250
- 299
- ru
- Russia
- 79
- CountryCom
-
-
- 250
- 10
- ru
- Russia
- 79
- DTC/Don Telecom
-
-
- 250
- 299
- ru
- Russia
- 79
- ECO Networks
-
-
- 250
- 299
- ru
- Russia
- 79
- Elemte
-
-
- 250
- 299
- ru
- Russia
- 79
- ER-Telecom
-
-
- 250
- 299
- ru
- Russia
- 79
- Failed Calls
-
-
- 250
- 999
- ru
- Russia
- 79
- Fix Line
-
-
- 250
- 299
- ru
- Russia
- 79
- Gazprom Telecom
-
-
- 250
- 48
- ru
- Russia
- 79
- Global Telecom
-
-
- 250
- 55
- ru
- Russia
- 79
- Glonass
-
-
- 250
- 299
- ru
- Russia
- 79
- GLONASS MOBILE
-
-
- 250
- 299
- ru
- Russia
- 79
- Integral
-
-
- 250
- 299
- ru
- Russia
- 79
- Internod
-
-
- 250
- 299
- ru
- Russia
- 79
- Intersvyaz-2
-
-
- 250
- 34
- ru
- Russia
- 79
- Krymtelecom
-
-
- 250
- 13
- ru
- Russia
- 79
- Kuban GSM
-
-
- 250
- 299
- ru
- Russia
- 79
- KvatroPlus
-
-
- 250
- 299
- ru
- Russia
- 79
- Lardex
-
-
- 250
- 54
- ru
- Russia
- 79
- Letai Mobile
-
-
- 250
- 299
- ru
- Russia
- 79
- Lycamobile
-
-
- 250
- 57
- ru
- Russia
- 79
- Matrix Mobile
-
-
- 250
- 299
- ru
- Russia
- 79
- Media-Market
-
-
- 250
- 02
- ru
- Russia
- 79
- Megafon
-
-
- 250
- 299
- ru
- Russia
- 79
- Metro-Pei
-
-
- 250
- 299
- ru
- Russia
- 79
- MGTS
-
-
- 250
- 299
- ru
- Russia
- 79
- Miatel
-
-
- 250
- 299
- ru
- Russia
- 79
- MOSTELECOM
-
-
- 250
- 35
- ru
- Russia
- 79
- Motiv
-
-
- 250
- 299
- ru
- Russia
- 79
- MSN Telekom
-
-
- 250
- 01
- ru
- Russia
- 79
- MTS
-
-
- 250
- 42
- ru
- Russia
- 79
- MTT
-
-
- 250
- 03
- ru
- Russia
- 79
- NCC
-
-
- 250
- 299
- ru
- Russia
- 79
- NCI
-
-
- 250
- 299
- ru
- Russia
- 79
- NETBYNET
-
-
- 250
- 299
- ru
- Russia
- 79
- New Mobile Communications
-
-
- 250
- 16
- ru
- Russia
- 79
- NTC
-
-
- 250
- 299
- ru
- Russia
- 79
- OBIT
-
-
- 250
- 19
- ru
- Russia
- 79
- OJSC Altaysvyaz
-
-
- 250
- 299
- ru
- Russia
- 79
- Orange Business Services
-
-
- 250
- 299
- ru
- Russia
- 79
- PIN
-
-
- 250
- 299
- ru
- Russia
- 79
- Plintron
-
-
- 250
- 92
- ru
- Russia
- 79
- Printelefone
-
-
- 250
- 299
- ru
- Russia
- 79
- Quantech
-
-
- 250
- 299
- ru
- Russia
- 79
- RECONN
-
-
- 250
- 299
- ru
- Russia
- 79
- Reteyl Innovatsii
-
-
- 250
- 299
- ru
- Russia
- 79
- Sberbank-Telecom
-
-
- 250
- 33
- ru
- Russia
- 79
- SEVTELECOM
-
-
- 250
- 04
- ru
- Russia
- 79
- Sibchallenge
-
-
- 250
- 299
- ru
- Russia
- 79
- Sim Sim
-
-
- 250
- 299
- ru
- Russia
- 79
- Sintonik
-
-
- 250
- 299
- ru
- Russia
- 79
- Sky Networks
-
-
- 250
- 09
- ru
- Russia
- 79
- Skylink
-
-
- 250
- 299
- ru
- Russia
- 79
- SkyNet
-
-
- 250
- 299
- ru
- Russia
- 79
- Sonet
-
-
- 250
- 299
- ru
- Russia
- 79
- Sprint
-
-
- 250
- 299
- ru
- Russia
- 79
- Start
-
-
- 250
- 44
- ru
- Russia
- 79
- StavTelesot
-
-
- 250
- 299
- ru
- Russia
- 79
- SunSIM
-
-
- 250
- 299
- ru
- Russia
- 79
- Surgutneftegaz
-
-
- 250
- 299
- ru
- Russia
- 79
- Svyazresurs-Mobile
-
-
- 250
- 299
- ru
- Russia
- 79
- Tander
-
-
- 250
- 20
- ru
- Russia
- 79
- Tele2
-
-
- 250
- 12
- ru
- Russia
- 79
- Tele2
-
-
- 250
- 20
- ru
- Russia
- 79
- Tele2/ECC/Volgogr.
-
-
- 250
- 93
- ru
- Russia
- 79
- Telecom XXL
-
-
- 250
- 299
- ru
- Russia
- 79
- Tinkoff Mobile
-
-
- 250
- 299
- ru
- Russia
- 79
- TMT
-
-
- 250
- 299
- ru
- Russia
- 79
- TransMobilCom
-
-
- 250
- 299
- ru
- Russia
- 79
- TRASTEL
-
-
- 250
- 299
- ru
- Russia
- 79
- TRN-telecom
-
-
- 250
- 299
- ru
- Russia
- 79
- TTK
-
-
- 250
- 299
- ru
- Russia
- 79
- TTK-Svyaz
-
-
- 250
- 299
- ru
- Russia
- 79
- TVE
-
-
- 250
- 299
- ru
- Russia
- 79
- UnitTelecom
-
-
- 250
- 299
- ru
- Russia
- 79
- Unycel
-
-
- 250
- 39
- ru
- Russia
- 79
- UralTel
-
-
- 250
- 17
- ru
- Russia
- 79
- UralTel
-
-
- 250
- 299
- ru
- Russia
- 79
- Vainah Telecom
-
-
- 250
- 299
- ru
- Russia
- 79
- ViKom
-
-
- 250
- 299
- ru
- Russia
- 79
- Virgin Connect
-
-
- 250
- 299
- ru
- Russia
- 79
- Voentelecom
-
-
- 250
- 77
- ru
- Russia
- 79
- Glonass
-
-
- 250
- 60
- ru
- Russia
- 79
- Volna Mobile
-
-
- 250
- 299
- ru
- Russia
- 79
- VTB Mobile
-
-
- 250
- 32
- ru
- Russia
- 79
- Win Mobile
-
-
- 250
- 05
- ru
- Russia
- 79
- Tele2/ECC/Volgogr.
-
-
- 250
- 11
- ru
- Russia
- 79
- Yota
-
-
- 250
- 15
- ru
- Russia
- 79
- ZAO SMARTS
-
-
- 250
- 07
- ru
- Russia
- 79
- ZAO SMARTS
-
-
- 635
- 13
- rw
- Rwanda
- 250
- Airtel
-
-
- 635
- 14
- rw
- Rwanda
- 250
- Airtel
-
-
- 635
- 10
- rw
- Rwanda
- 250
- MTN
-
-
- 658
- 299
- sh
- Saint Helena and Ascension and Tristan da Cunha
- 290
- Failed Calls
-
-
- 356
- 110
- kn
- Saint Kitts and Nevis
- 1869
- Cable & Wireless
-
-
- 356
- 50
- kn
- Saint Kitts and Nevis
- 1869
- Digicel
-
-
- 356
- 70
- kn
- Saint Kitts and Nevis
- 1869
- UTS Cariglobe
-
-
- 358
- 110
- lc
- Saint Lucia
- 1758
- Cable & Wireless
-
-
- 358
- 30
- lc
- Saint Lucia
- 1758
- Cingular Wireless
-
-
- 358
- 50
- lc
- Saint Lucia
- 1758
- Digicel (St Lucia) Limited
-
-
- 308
- 01
- pm
- Saint Pierre and Miquelon
- 508
- Ameris
-
-
- 360
- 110
- vc
- Saint Vincent and the Grenadines
- 1784
- C & W
-
-
- 360
- 10
- vc
- Saint Vincent and the Grenadines
- 1784
- Cingular
-
-
- 360
- 100
- vc
- Saint Vincent and the Grenadines
- 1784
- Cingular
-
-
- 360
- 050
- vc
- Saint Vincent and the Grenadines
- 1784
- Digicel
-
-
- 360
- 70
- vc
- Saint Vincent and the Grenadines
- 1784
- Digicel
-
-
- 549
- 999
- ws
- Samoa
- 685
- Fix Line
-
-
- 549
- 27
- ws
- Samoa
- 685
- Samoatel Mobile
-
-
- 549
- 01
- ws
- Samoa
- 685
- Telecom Samoa Cellular Ltd.
-
-
- 292
- 01
- sm
- San Marino
- 378
- Prima
-
-
- 292
- 299
- sm
- San Marino
- 378
- TeleneT
-
-
- 626
- 01
- st
- Sao Tome and Principe
- 239
- CSTmovel
-
-
- 626
- 02
- st
- Sao Tome and Principe
- 239
- Unitel
-
-
- 901
- 14
- n/a
- Satellite Networks
- 870
- AeroMobile
-
-
- 901
- 11
- n/a
- Satellite Networks
- 870
- InMarSAT
-
-
- 901
- 12
- n/a
- Satellite Networks
- 870
- Maritime Communications Partner AS
-
-
- 901
- 05
- n/a
- Satellite Networks
- 870
- Thuraya Satellite
-
-
- 420
- 07
- sa
- Saudi Arabia
- 966
- Zain
-
-
- 420
- 03
- sa
- Saudi Arabia
- 966
- Etihad/Etisalat/Mobily
-
-
- 420
- 06
- sa
- Saudi Arabia
- 966
- Lebara Mobile
-
-
- 420
- 01
- sa
- Saudi Arabia
- 966
- STC/Al Jawal
-
-
- 420
- 05
- sa
- Saudi Arabia
- 966
- Virgin Mobile
-
-
- 420
- 04
- sa
- Saudi Arabia
- 966
- Zain
-
-
- 608
- 299
- sn
- Senegal
- 221
- 2s Mobile
-
-
- 608
- 03
- sn
- Senegal
- 221
- Expresso
-
-
- 608
- 02
- sn
- Senegal
- 221
- Free
-
-
- 608
- 04
- sn
- Senegal
- 221
- HAYO
-
-
- 608
- 01
- sn
- Senegal
- 221
- Orange
-
-
- 608
- 299
- sn
- Senegal
- 221
- Promobile
-
-
- 220
- 299
- rs
- Serbia
- 381
- Failed Calls
-
-
- 220
- 11
- rs
- Serbia
- 381
- Globaltel
-
-
- 220
- 03
- rs
- Serbia
- 381
- MTS
-
-
- 220
- 01
- rs
- Serbia
- 381
- Telenor
-
-
- 220
- 02
- rs
- Serbia
- 381
- Telenor
-
-
- 220
- 05
- rs
- Serbia
- 381
- VIP
-
-
- 220
- 20
- rs
- Serbia
- 381
- VIP
-
-
- 633
- 10
- sc
- Seychelles
- 248
- Airtel
-
-
- 633
- 01
- sc
- Seychelles
- 248
- Cable & Wireless
-
-
- 633
- 05
- sc
- Seychelles
- 248
- Intelvision
-
-
- 633
- 02
- sc
- Seychelles
- 248
- Smartcom
-
-
- 619
- 03
- sl
- Sierra Leone
- 232
- Africell
-
-
- 619
- 04
- sl
- Sierra Leone
- 232
- Comium
-
-
- 619
- 299
- sl
- Sierra Leone
- 232
- IPTel
-
-
- 619
- 05
- sl
- Sierra Leone
- 232
- Africell
-
-
- 619
- 02
- sl
- Sierra Leone
- 232
- Tigo/Millicom
-
-
- 619
- 25
- sl
- Sierra Leone
- 232
- Mobitel
-
-
- 619
- 299
- sl
- Sierra Leone
- 232
- Onlime
-
-
- 619
- 01
- sl
- Sierra Leone
- 232
- Orange
-
-
- 619
- 07
- sl
- Sierra Leone
- 232
- Qcell
-
-
- 619
- 299
- sl
- Sierra Leone
- 232
- SierraTel
-
-
- 525
- 999
- sg
- Singapore
- 65
- Fix Line
-
-
- 525
- 12
- sg
- Singapore
- 65
- GRID Communications Pte Ltd
-
-
- 525
- 03
- sg
- Singapore
- 65
- MobileOne Ltd
-
-
- 525
- 02
- sg
- Singapore
- 65
- Singtel
-
-
- 525
- 01
- sg
- Singapore
- 65
- Singtel
-
-
- 525
- 07
- sg
- Singapore
- 65
- Singtel
-
-
- 525
- 06
- sg
- Singapore
- 65
- Starhub
-
-
- 525
- 05
- sg
- Singapore
- 65
- Starhub
-
-
- 231
- 06
- sk
- Slovakia
- 421
- O2
-
-
- 231
- 05
- sk
- Slovakia
- 421
- Orange
-
-
- 231
- 07
- sk
- Slovakia
- 421
- Orange
-
-
- 231
- 01
- sk
- Slovakia
- 421
- Orange
-
-
- 231
- 15
- sk
- Slovakia
- 421
- Orange
-
-
- 231
- 03
- sk
- Slovakia
- 421
- Swan / 4ka
-
-
- 231
- 02
- sk
- Slovakia
- 421
- Telekom
-
-
- 231
- 04
- sk
- Slovakia
- 421
- Telekom
-
-
- 231
- 02
- sk
- Slovakia
- 421
- Telekom
-
-
- 231
- 50
- sk
- Slovakia
- 421
- Telekom
-
-
- 231
- 08
- sk
- Slovakia
- 421
- Uniphone
-
-
- 231
- 299
- sk
- Slovakia
- 421
- Vonage
-
-
- 231
- 99
- sk
- Slovakia
- 421
- ZSR
-
-
- 293
- 40
- si
- Slovenia
- 386
- A1 / Si.mobil
-
-
- 293
- 20
- si
- Slovenia
- 386
- Compatel
-
-
- 293
- 86
- si
- Slovenia
- 386
- Elektro Gorenjska
-
-
- 293
- 999
- si
- Slovenia
- 386
- Fix Line
-
-
- 293
- 299
- si
- Slovenia
- 386
- HOT mobil
-
-
- 293
- 299
- si
- Slovenia
- 386
- Me2
-
-
- 293
- 41
- si
- Slovenia
- 386
- Mobitel
-
-
- 293
- 299
- si
- Slovenia
- 386
- Novatel
-
-
- 293
- 10
- si
- Slovenia
- 386
- Slovenske zeleznice
-
-
- 293
- 299
- si
- Slovenia
- 386
- SoftNET
-
-
- 293
- 64
- si
- Slovenia
- 386
- T-2
-
-
- 293
- 70
- si
- Slovenia
- 386
- Telemach / Tusmobil
-
-
- 540
- 02
- sb
- Solomon Islands
- 677
- bemobile
-
-
- 540
- 10
- sb
- Solomon Islands
- 677
- BREEZE
-
-
- 540
- 01
- sb
- Solomon Islands
- 677
- BREEZE
-
-
- 637
- 299
- so
- Somalia
- 252
- AirSom
-
-
- 637
- 30
- so
- Somalia
- 252
- Golis
-
-
- 637
- 19
- so
- Somalia
- 252
- Hormuud
-
-
- 637
- 50
- so
- Somalia
- 252
- Hormuud
-
-
- 637
- 60
- so
- Somalia
- 252
- Nationlink
-
-
- 637
- 10
- so
- Somalia
- 252
- Nationlink
-
-
- 637
- 299
- so
- Somalia
- 252
- NETCO
-
-
- 637
- 70
- so
- Somalia
- 252
- Onkod
-
-
- 637
- 04
- so
- Somalia
- 252
- Somafone
-
-
- 637
- 299
- so
- Somalia
- 252
- SomNetworks
-
-
- 637
- 71
- so
- Somalia
- 252
- Somtel
-
-
- 637
- 299
- so
- Somalia
- 252
- STG
-
-
- 637
- 82
- so
- Somalia
- 252
- Telcom Mobile
-
-
- 637
- 01
- so
- Somalia
- 252
- Telesom
-
-
- 655
- 21
- za
- South Africa
- 27
- Cape Town Metropolitan
-
-
- 655
- 07
- za
- South Africa
- 27
- Cell C
-
-
- 655
- 299
- za
- South Africa
- 27
- Lycamobile
-
-
- 655
- 10
- za
- South Africa
- 27
- MTN
-
-
- 655
- 12
- za
- South Africa
- 27
- MTN
-
-
- 655
- 38
- za
- South Africa
- 27
- Rain
-
-
- 655
- 19
- za
- South Africa
- 27
- Rain
-
-
- 655
- 73
- za
- South Africa
- 27
- Rain
-
-
- 655
- 74
- za
- South Africa
- 27
- Rain
-
-
- 655
- 06
- za
- South Africa
- 27
- Sentech
-
-
- 655
- 02
- za
- South Africa
- 27
- Telkom
-
-
- 655
- 05
- za
- South Africa
- 27
- Telkom
-
-
- 655
- 01
- za
- South Africa
- 27
- Vodacom
-
-
- 450
- 299
- kr
- South Korea
- 82
- Failed Calls
-
-
- 450
- 02
- kr
- South Korea
- 82
- olleh / KT
-
-
- 450
- 07
- kr
- South Korea
- 82
- KT Powertel
-
-
- 450
- 06
- kr
- South Korea
- 82
- LG U+
-
-
- 450
- 08
- kr
- South Korea
- 82
- olleh / KT
-
-
- 450
- 02
- kr
- South Korea
- 82
- olleh / KT
-
-
- 450
- 04
- kr
- South Korea
- 82
- olleh / KT
-
-
- 450
- 03
- kr
- South Korea
- 82
- SK Telecom
-
-
- 450
- 05
- kr
- South Korea
- 82
- SK Telecom
-
-
- 450
- 12
- kr
- South Korea
- 82
- SK Telecom
-
-
- 450
- 11
- kr
- South Korea
- 82
- SK Telecom
-
-
- 659
- 299
- ss
- South Sudan
-
- Digitel
-
-
- 659
- 299
- ss
- South Sudan
-
- Failed Calls
-
-
- 659
- 03
- ss
- South Sudan
-
- Gemtel Ltd (South Sudan
-
-
- 659
- 02
- ss
- South Sudan
-
- MTN
-
-
- 659
- 04
- ss
- South Sudan
-
- Network of The World Ltd (NOW) (South Sudan
-
-
- 659
- 06
- ss
- South Sudan
-
- Zain
-
-
- 214
- 299
- es
- Spain
- 34
- ACN
-
-
- 214
- 299
- es
- Spain
- 34
- Adamo Telecom
-
-
- 214
- 36
- es
- Spain
- 34
- Alai
-
-
- 214
- 02
- es
- Spain
- 34
- Alta Tecnologia en Comunicacions
-
-
- 214
- 299
- es
- Spain
- 34
- Aurea
-
-
- 214
- 14
- es
- Spain
- 34
- Avatel Movil
-
-
- 214
- 22
- es
- Spain
- 34
- Digi.Mobil
-
-
- 214
- 299
- es
- Spain
- 34
- Billing Financial
-
-
- 214
- 299
- es
- Spain
- 34
- Bluephone
-
-
- 214
- 15
- es
- Spain
- 34
- BT Espana SAU
-
-
- 214
- 18
- es
- Spain
- 34
- Cableuropa SAU (ONO)
-
-
- 214
- 299
- es
- Spain
- 34
- CloudComms
-
-
- 214
- 299
- es
- Spain
- 34
- Dialoga
-
-
- 214
- 22
- es
- Spain
- 34
- Digi.Mobil
-
-
- 214
- 299
- es
- Spain
- 34
- Dragonet
-
-
- 214
- 08
- es
- Spain
- 34
- Euskaltel Movil
-
-
- 214
- 299
- es
- Spain
- 34
- Evolutio
-
-
- 214
- 999
- es
- Spain
- 34
- Fix Line
-
-
- 214
- 20
- es
- Spain
- 34
- fonYou Wireless SL
-
-
- 214
- 299
- es
- Spain
- 34
- Global
-
-
- 214
- 299
- es
- Spain
- 34
- GNET
-
-
- 214
- 32
- es
- Spain
- 34
- ION Mobile
-
-
- 214
- 34
- es
- Spain
- 34
- ION MOBILE
-
-
- 214
- 21
- es
- Spain
- 34
- Jazz Telecom SAU
-
-
- 214
- 299
- es
- Spain
- 34
- Jetnet
-
-
- 214
- 299
- es
- Spain
- 34
- Lemonvil
-
-
- 214
- 26
- es
- Spain
- 34
- Lleida
-
-
- 214
- 25
- es
- Spain
- 34
- Lycamobile
-
-
- 214
- 25
- es
- Spain
- 34
- Lycamobile
-
-
- 214
- 17
- es
- Spain
- 34
- mobil R
-
-
- 214
- 38
- es
- Spain
- 34
- Movistar
-
-
- 214
- 07
- es
- Spain
- 34
- Movistar
-
-
- 214
- 05
- es
- Spain
- 34
- Movistar
-
-
- 214
- 299
- es
- Spain
- 34
- Olephone
-
-
- 214
- 299
- es
- Spain
- 34
- On Movil
-
-
- 214
- 299
- es
- Spain
- 34
- Oniti Telecom
-
-
- 214
- 299
- es
- Spain
- 34
- OperadorsCat
-
-
- 214
- 11
- es
- Spain
- 34
- Orange
-
-
- 214
- 21
- es
- Spain
- 34
- Orange
-
-
- 214
- 03
- es
- Spain
- 34
- Orange
-
-
- 214
- 09
- es
- Spain
- 34
- Orange
-
-
- 214
- 299
- es
- Spain
- 34
- Pepephone
-
-
- 214
- 299
- es
- Spain
- 34
- PTV Telecom movil
-
-
- 214
- 299
- es
- Spain
- 34
- Quattre
-
-
- 214
- 17
- es
- Spain
- 34
- R Cable y Telec. Galicia SA
-
-
- 214
- 299
- es
- Spain
- 34
- Sarenet
-
-
- 214
- 299
- es
- Spain
- 34
- SEWAN
-
-
- 214
- 19
- es
- Spain
- 34
- Simyo
-
-
- 214
- 35
- es
- Spain
- 34
- SUMA movil
-
-
- 214
- 299
- es
- Spain
- 34
- Suop
-
-
- 214
- 299
- es
- Spain
- 34
- Syma
-
-
- 214
- 16
- es
- Spain
- 34
- mobil R
-
-
- 214
- 299
- es
- Spain
- 34
- Telsome
-
-
- 214
- 299
- es
- Spain
- 34
- The Telecom Boutique
-
-
- 214
- 27
- es
- Spain
- 34
- Truphone
-
-
- 214
- 12
- es
- Spain
- 34
- Venus Movil
-
-
- 214
- 01
- es
- Spain
- 34
- Vodafone
-
-
- 214
- 37
- es
- Spain
- 34
- Vodafone
-
-
- 214
- 06
- es
- Spain
- 34
- Vodafone
-
-
- 214
- 29
- es
- Spain
- 34
- Yoigo
-
-
- 214
- 04
- es
- Spain
- 34
- Yoigo
-
-
- 214
- 23
- es
- Spain
- 34
- Yoigo
-
-
- 214
- 33
- es
- Spain
- 34
- Yoigo
-
-
- 214
- 299
- es
- Spain
- 34
- You Mobile
-
-
- 214
- 10
- es
- Spain
- 34
- Zinnia
-
-
- 413
- 05
- lk
- Sri Lanka
- 94
- Airtel
-
-
- 413
- 03
- lk
- Sri Lanka
- 94
- Etisalat/Tigo
-
-
- 413
- 08
- lk
- Sri Lanka
- 94
- H3G Hutchison
-
-
- 413
- 01
- lk
- Sri Lanka
- 94
- Mobitel Ltd.
-
-
- 413
- 02
- lk
- Sri Lanka
- 94
- MTN/Dialog
-
-
- 634
- 00
- sd
- Sudan
- 249
- Canar Telecom
-
-
- 634
- 999
- sd
- Sudan
- 249
- Fix Line
-
-
- 634
- 22
- sd
- Sudan
- 249
- MTN
-
-
- 634
- 03
- sd
- Sudan
- 249
- MTN
-
-
- 634
- 02
- sd
- Sudan
- 249
- MTN
-
-
- 634
- 07
- sd
- Sudan
- 249
- Sudani One
-
-
- 634
- 15
- sd
- Sudan
- 249
- Sudani One
-
-
- 634
- 05
- sd
- Sudan
- 249
- Canar Telecom
-
-
- 634
- 08
- sd
- Sudan
- 249
- Canar Telecom
-
-
- 634
- 01
- sd
- Sudan
- 249
- Zain
-
-
- 634
- 06
- sd
- Sudan
- 249
- Zain
-
-
- 746
- 03
- sr
- Suriname
- 597
- Digicel
-
-
- 746
- 999
- sr
- Suriname
- 597
- Fix Line
-
-
- 746
- 01
- sr
- Suriname
- 597
- Telesur
-
-
- 746
- 02
- sr
- Suriname
- 597
- Telecommunicatiebedrijf Suriname (TELESUR)
-
-
- 746
- 04
- sr
- Suriname
- 597
- UNIQA
-
-
- 653
- 02
- sz
- Swaziland
- 268
- Eswatini Mobile
-
-
- 653
- 01
- sz
- Swaziland
- 268
- EswatiniTelecom
-
-
- 653
- 10
- sz
- Swaziland
- 268
- Swazi MTN
-
-
- 240
- 16
- se
- Sweden
- 46
- 42 Telecom AB
-
-
- 240
- 35
- se
- Sweden
- 46
- 42 Telecom
-
-
- 240
- 13
- se
- Sweden
- 46
- A3
-
-
- 240
- 30
- se
- Sweden
- 46
- NextGen Mobile Ltd (CardBoardFish)
-
-
- 240
- 11
- se
- Sweden
- 46
- Com Hem
-
-
- 240
- 09
- se
- Sweden
- 46
- Com4
-
-
- 240
- 32
- se
- Sweden
- 46
- Compatel
-
-
- 240
- 22
- se
- Sweden
- 46
- EUtel
-
-
- 240
- 63
- se
- Sweden
- 46
- Fink Telecom
-
-
- 240
- 999
- se
- Sweden
- 46
- Fix Line
-
-
- 240
- 18
- se
- Sweden
- 46
- Messit / Minicall
-
-
- 240
- 27
- se
- Sweden
- 46
- Globetouch
-
-
- 240
- 17
- se
- Sweden
- 46
- Gotanet
-
-
- 240
- 02
- se
- Sweden
- 46
- 3
-
-
- 240
- 23
- se
- Sweden
- 46
- Infobip
-
-
- 240
- 36
- se
- Sweden
- 46
- interactive digital media / IDM
-
-
- 240
- 28
- se
- Sweden
- 46
- LINK Mobility
-
-
- 240
- 12
- se
- Sweden
- 46
- Lycamobile
-
-
- 240
- 29
- se
- Sweden
- 46
- MI Carrier Services
-
-
- 240
- 33
- se
- Sweden
- 46
- Mobile Arts
-
-
- 240
- 43
- se
- Sweden
- 46
- MobiWeb
-
-
- 240
- 25
- se
- Sweden
- 46
- Monty Mobile
-
-
- 240
- 40
- se
- Sweden
- 46
- Netmore
-
-
- 240
- 39
- se
- Sweden
- 46
- Primlight
-
-
- 240
- 31
- se
- Sweden
- 46
- Rebtel
-
-
- 240
- 20
- se
- Sweden
- 46
- Sierra Wireless
-
-
- 240
- 15
- se
- Sweden
- 46
- Sierra Wireless Sweden AB
-
-
- 240
- 37
- se
- Sweden
- 46
- Sinch
-
-
- 240
- 45
- se
- Sweden
- 46
- Spirius
-
-
- 240
- 10
- se
- Sweden
- 46
- Spring Mobil AB
-
-
- 240
- 07
- se
- Sweden
- 46
- Tele2
-
-
- 240
- 05
- se
- Sweden
- 46
- Tele2
-
-
- 240
- 14
- se
- Sweden
- 46
- Tele2
-
-
- 240
- 44
- se
- Sweden
- 46
- Telenabler
-
-
- 240
- 24
- se
- Sweden
- 46
- Telenor
-
-
- 240
- 06
- se
- Sweden
- 46
- Telenor
-
-
- 240
- 42
- se
- Sweden
- 46
- Telenor Connexion
-
-
- 240
- 08
- se
- Sweden
- 46
- Telenor
-
-
- 240
- 04
- se
- Sweden
- 46
- Telenor
-
-
- 240
- 01
- se
- Sweden
- 46
- Telia
-
-
- 240
- 03
- se
- Sweden
- 46
- Net 1
-
-
- 240
- 48
- se
- Sweden
- 46
- Tismi
-
-
- 240
- 21
- se
- Sweden
- 46
- Trafikverket
-
-
- 240
- 26
- se
- Sweden
- 46
- Twilio
-
-
- 240
- 19
- se
- Sweden
- 46
- Vectone Mobile
-
-
- 240
- 46
- se
- Sweden
- 46
- Viahub
-
-
- 240
- 47
- se
- Sweden
- 46
- Viatel
-
-
- 240
- 38
- se
- Sweden
- 46
- Voxbone / Bandwidth
-
-
- 228
- 58
- ch
- Switzerland
- 41
- Beeone
-
-
- 228
- 09
- ch
- Switzerland
- 41
- Comfone
-
-
- 228
- 05
- ch
- Switzerland
- 41
- Comfone
-
-
- 228
- 999
- ch
- Switzerland
- 41
- Fix Line
-
-
- 228
- 07
- ch
- Switzerland
- 41
- Sunrise
-
-
- 228
- 66
- ch
- Switzerland
- 41
- Inovia
-
-
- 228
- 54
- ch
- Switzerland
- 41
- Lycamobile
-
-
- 228
- 69
- ch
- Switzerland
- 41
- MTEL
-
-
- 228
- 52
- ch
- Switzerland
- 41
- Mundio Mobile AG
-
-
- 228
- 65
- ch
- Switzerland
- 41
- Nexphone
-
-
- 228
- 51
- ch
- Switzerland
- 41
- relario
-
-
- 228
- 03
- ch
- Switzerland
- 41
- Salt Mobile
-
-
- 228
- 06
- ch
- Switzerland
- 41
- SBB
-
-
- 228
- 53
- ch
- Switzerland
- 41
- Sunrise
-
-
- 228
- 12
- ch
- Switzerland
- 41
- Sunrise
-
-
- 228
- 08
- ch
- Switzerland
- 41
- Sunrise
-
-
- 228
- 02
- ch
- Switzerland
- 41
- Sunrise
-
-
- 228
- 60
- ch
- Switzerland
- 41
- Sunrise
-
-
- 228
- 01
- ch
- Switzerland
- 41
- Swisscom
-
-
- 228
- 02
- ch
- Switzerland
- 41
- Sunrise
-
-
- 228
- 62
- ch
- Switzerland
- 41
- Telecom26
-
-
- 228
- 70
- ch
- Switzerland
- 41
- Tismi
-
-
- 228
- 53
- ch
- Switzerland
- 41
- upc cablecom GmbH
-
-
- 228
- 59
- ch
- Switzerland
- 41
- Vectone Mobile
-
-
- 417
- 02
- sy
- Syria
- 963
- MTN/Spacetel
-
-
- 417
- 09
- sy
- Syria
- 963
- Syriatel Holdings
-
-
- 417
- 01
- sy
- Syria
- 963
- Syriatel Holdings
-
-
- 466
- 68
- tw
- Taiwan
- 886
- ACeS Taiwan - ACeS Taiwan Telecommunications Co Ltd
-
-
- 466
- 05
- tw
- Taiwan
- 886
- Asia Pacific Telecom Co. Ltd (APT)
-
-
- 466
- 11
- tw
- Taiwan
- 886
- Chunghwa Telecom LDM
-
-
- 466
- 92
- tw
- Taiwan
- 886
- Chunghwa Telecom LDM
-
-
- 466
- 02
- tw
- Taiwan
- 886
- Far EasTone
-
-
- 466
- 07
- tw
- Taiwan
- 886
- Far EasTone
-
-
- 466
- 06
- tw
- Taiwan
- 886
- Far EasTone
-
-
- 466
- 03
- tw
- Taiwan
- 886
- Far EasTone
-
-
- 466
- 01
- tw
- Taiwan
- 886
- Far EasTone
-
-
- 466
- 10
- tw
- Taiwan
- 886
- Global Mobile Corp.
-
-
- 466
- 56
- tw
- Taiwan
- 886
- International Telecom Co. Ltd (FITEL)
-
-
- 466
- 88
- tw
- Taiwan
- 886
- KG Telecom
-
-
- 466
- 90
- tw
- Taiwan
- 886
- T-Star/VIBO
-
-
- 466
- 99
- tw
- Taiwan
- 886
- TransAsia
-
-
- 466
- 97
- tw
- Taiwan
- 886
- Taiwan Cellular
-
-
- 466
- 93
- tw
- Taiwan
- 886
- Mobitai
-
-
- 466
- 89
- tw
- Taiwan
- 886
- T-Star/VIBO
-
-
- 466
- 09
- tw
- Taiwan
- 886
- VMAX Telecom Co. Ltd
-
-
- 436
- 04
- tj
- Tajikistan
- 992
- Babilon-M
-
-
- 436
- 05
- tj
- Tajikistan
- 992
- Bee Line
-
-
- 436
- 02
- tj
- Tajikistan
- 992
- CJSC Indigo Tajikistan
-
-
- 436
- 12
- tj
- Tajikistan
- 992
- Tcell/JC Somoncom
-
-
- 436
- 03
- tj
- Tajikistan
- 992
- Megafon
-
-
- 436
- 01
- tj
- Tajikistan
- 992
- Tcell/JC Somoncom
-
-
- 640
- 05
- tz
- Tanzania
- 255
- Airtel
-
-
- 640
- 08
- tz
- Tanzania
- 255
- Benson Informatics Ltd
-
-
- 640
- 06
- tz
- Tanzania
- 255
- Dovetel (T) Ltd
-
-
- 640
- 09
- tz
- Tanzania
- 255
- Halotel / Viettel
-
-
- 640
- 99
- tz
- Tanzania
- 255
- Mkulima African Telecommunication
-
-
- 640
- 14
- tz
- Tanzania
- 255
- MO Mobile
-
-
- 640
- 11
- tz
- Tanzania
- 255
- Smile Communications
-
-
- 640
- 07
- tz
- Tanzania
- 255
- Tanzania Telecommunication Corporation
-
-
- 640
- 02
- tz
- Tanzania
- 255
- Tigo / MIC
-
-
- 640
- 01
- tz
- Tanzania
- 255
- Tri Telecomm. Ltd.
-
-
- 640
- 04
- tz
- Tanzania
- 255
- Vodacom
-
-
- 640
- 13
- tz
- Tanzania
- 255
- WiAfrica
-
-
- 640
- 03
- tz
- Tanzania
- 255
- Zanzibar Telecom / Zantel
-
-
- 520
- 20
- th
- Thailand
- 66
- ACeS Thailand - ACeS Regional Services Co Ltd
-
-
- 520
- 15
- th
- Thailand
- 66
- ACT Mobile
-
-
- 520
- 03
- th
- Thailand
- 66
- AIS/Advanced Info Service
-
-
- 520
- 01
- th
- Thailand
- 66
- AIS/Advanced Info Service
-
-
- 520
- 23
- th
- Thailand
- 66
- Digital Phone Co.
-
-
- 520
- 999
- th
- Thailand
- 66
- Fix Line
-
-
- 520
- 00
- th
- Thailand
- 66
- Hutch/CAT CDMA
-
-
- 520
- 05
- th
- Thailand
- 66
- Total Access (DTAC)
-
-
- 520
- 18
- th
- Thailand
- 66
- Total Access (DTAC)
-
-
- 520
- 04
- th
- Thailand
- 66
- True Move/Orange
-
-
- 520
- 99
- th
- Thailand
- 66
- True Move/Orange
-
-
- 615
- 03
- tg
- Togo
- 228
- Atlantique Telecom / Moov
-
-
- 615
- 02
- tg
- Togo
- 228
- Telecel/MOOV
-
-
- 615
- 03
- tg
- Togo
- 228
- Telecel/MOOV
-
-
- 615
- 01
- tg
- Togo
- 228
- Togo Cellulaire / TogoCel
-
-
- 539
- 88
- to
- Tonga
- 676
- Digicel
-
-
- 539
- 999
- to
- Tonga
- 676
- Fix Line
-
-
- 539
- 43
- to
- Tonga
- 676
- Shoreline Communication
-
-
- 539
- 01
- to
- Tonga
- 676
- Tonga Communications
-
-
- 374
- 12
- tt
- Trinidad and Tobago
- 1868
- Bmobile/TSTT
-
-
- 374
- 120
- tt
- Trinidad and Tobago
- 1868
- Bmobile/TSTT
-
-
- 374
- 130
- tt
- Trinidad and Tobago
- 1868
- Digicel
-
-
- 374
- 140
- tt
- Trinidad and Tobago
- 1868
- LaqTel Ltd.
-
-
- 605
- 999
- tn
- Tunisia
- 216
- Fix Line
-
-
- 605
- 06
- tn
- Tunisia
- 216
- Lycamobile
-
-
- 605
- 03
- tn
- Tunisia
- 216
- Ooredoo
-
-
- 605
- 01
- tn
- Tunisia
- 216
- Orange
-
-
- 605
- 02
- tn
- Tunisia
- 216
- TT Mobile
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Asistan Telekom
-
-
- 286
- 04
- tr
- Turkiye
- 90
- Avea
-
-
- 286
- 03
- tr
- Turkiye
- 90
- Avea
-
-
- 286
- 03
- tr
- Turkiye
- 90
- Avea
-
-
- 286
- 299
- tr
- Turkiye
- 90
- BasakCell
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Compatel
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Fenix Telekom
-
-
- 286
- 999
- tr
- Turkiye
- 90
- Fix Line
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Foniva
-
-
- 286
- 299
- tr
- Turkiye
- 90
- IsNet
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Maxiphone
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Medium Telekom
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Mobilisim
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Netgsm
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Nida
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Oris
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Pelicell
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Plus Telekom
-
-
- 286
- 299
- tr
- Turkiye
- 90
- Roitel
-
-
- 286
- 299
- tr
- Turkiye
- 90
- SesNet
-
-
- 286
- 299
- tr
- Turkiye
- 90
- TCDD
-
-
- 286
- 299
- tr
- Turkiye
- 90
- TTM
-
-
- 286
- 01
- tr
- Turkiye
- 90
- Turkcell
-
-
- 286
- 02
- tr
- Turkiye
- 90
- Vodafone
-
-
- 438
- 01
- tm
- Turkmenistan
- 993
- MTS/Barash Communication
-
-
- 438
- 02
- tm
- Turkmenistan
- 993
- Altyn Asyr/TM-Cell
-
-
- 376
- 350
- tc
- Turks and Caicos Islands
-
- Cable & Wireless (TCI) Ltd
-
-
- 376
- 050
- tc
- Turks and Caicos Islands
-
- Digicel TCI Ltd
-
-
- 376
- 352
- tc
- Turks and Caicos Islands
-
- IslandCom Communications Ltd.
-
-
- 553
- 01
- tv
- Tuvalu
-
- Tuvalu Telecommunication Corporation (TTC)
-
-
- 641
- 01
- ug
- Uganda
- 256
- Airtel
-
-
- 641
- 22
- ug
- Uganda
- 256
- Airtel
-
-
- 641
- 999
- ug
- Uganda
- 256
- Fix Line
-
-
- 641
- 66
- ug
- Uganda
- 256
- i-Tel Ltd
-
-
- 641
- 30
- ug
- Uganda
- 256
- K2 Telecom Ltd
-
-
- 641
- 04
- ug
- Uganda
- 256
- Lycamobile
-
-
- 641
- 11
- ug
- Uganda
- 256
- Mango
-
-
- 641
- 10
- ug
- Uganda
- 256
- MTN
-
-
- 641
- 14
- ug
- Uganda
- 256
- Orange
-
-
- 641
- 33
- ug
- Uganda
- 256
- Smile
-
-
- 641
- 18
- ug
- Uganda
- 256
- Suretelecom Uganda Ltd
-
-
- 255
- 07
- ua
- Ukraine
- 380
- 3Mob
-
-
- 255
- 05
- ua
- Ukraine
- 380
- Golden Telecom
-
-
- 255
- 39
- ua
- Ukraine
- 380
- Golden Telecom
-
-
- 255
- 04
- ua
- Ukraine
- 380
- IT
-
-
- 255
- 67
- ua
- Ukraine
- 380
- KyivStar
-
-
- 255
- 02
- ua
- Ukraine
- 380
- Kyivstar
-
-
- 255
- 03
- ua
- Ukraine
- 380
- Kyivstar
-
-
- 255
- 03
- ua
- Ukraine
- 380
- KyivStar
-
-
- 255
- 06
- ua
- Ukraine
- 380
- lifecell
-
-
- 255
- 21
- ua
- Ukraine
- 380
- PEOPLEnet
-
-
- 255
- 99
- ua
- Ukraine
- 380
- Phoenix
-
-
- 255
- 50
- ua
- Ukraine
- 380
- Vodafone
-
-
- 255
- 02
- ua
- Ukraine
- 380
- Kyivstar
-
-
- 255
- 01
- ua
- Ukraine
- 380
- Vodafone
-
-
- 255
- 01
- ua
- Ukraine
- 380
- Vodafone
-
-
- 255
- 68
- ua
- Ukraine
- 380
- Kyivstar
-
-
- 424
- 03
- ae
- United Arab Emirates
- 971
- DU
-
-
- 424
- 02
- ae
- United Arab Emirates
- 971
- Etisalat
-
-
- 431
- 02
- ae
- United Arab Emirates
- 971
- Etisalat
-
-
- 430
- 02
- ae
- United Arab Emirates
- 971
- Etisalat
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- 08Direct
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- 24Seven
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- ACE Call
-
-
- 234
- 78
- gb
- United Kingdom
- 44
- Airwave
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Andrews & Arnold
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Anywhere Sim
-
-
- 234
- 29
- gb
- United Kingdom
- 44
- aql
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- aql Wholesale
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Voxbone / Bandwidth
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Bellingham Telecommunications
-
-
- 234
- 76
- gb
- United Kingdom
- 44
- BT Group
-
-
- 234
- 00
- gb
- United Kingdom
- 44
- BT Group
-
-
- 234
- 08
- gb
- United Kingdom
- 44
- BT OnePhone
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- CFL Communications
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Citrus
-
-
- 234
- 18
- gb
- United Kingdom
- 44
- Cloud9
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Compatel
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Confabulate
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Core
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Core Telecom
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Core Telecom Ltd
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- DMB
-
-
- 235
- 02
- gb
- United Kingdom
- 44
- Everyth. Ev.wh.
-
-
- 234
- 32
- gb
- United Kingdom
- 44
- T-Mobile
-
-
- 234
- 31
- gb
- United Kingdom
- 44
- T-Mobile
-
-
- 234
- 30
- gb
- United Kingdom
- 44
- T-Mobile
-
-
- 234
- 999
- gb
- United Kingdom
- 44
- Fix Line
-
-
- 234
- 17
- gb
- United Kingdom
- 44
- FlexTel
-
-
- 234
- 04
- gb
- United Kingdom
- 44
- FMS Solutions
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Fogg
-
-
- 234
- 39
- gb
- United Kingdom
- 44
- Gamma Mobile
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Global Reach Networks
-
-
- 234
- 24
- gb
- United Kingdom
- 44
- Greenfone
-
-
- 234
- 72
- gb
- United Kingdom
- 44
- Hanhaa Mobile
-
-
- 234
- 71
- gb
- United Kingdom
- 44
- Home Office
-
-
- 234
- 20
- gb
- United Kingdom
- 44
- 3
-
-
- 234
- 94
- gb
- United Kingdom
- 44
- 3
-
-
- 234
- 23
- gb
- United Kingdom
- 44
- Icron Network
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- IPV6
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- IV Response
-
-
- 234
- 03
- gb
- United Kingdom
- 44
- Jersey Airtel
-
-
- 234
- 35
- gb
- United Kingdom
- 44
- JSC Ingenicum
-
-
- 234
- 50
- gb
- United Kingdom
- 44
- JT Mobile
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Kontakt Mobile
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Lanonyx Telecom
-
-
- 234
- 14
- gb
- United Kingdom
- 44
- LINK Mobility
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Lleida.net
-
-
- 234
- 26
- gb
- United Kingdom
- 44
- Lycamobile
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Magrathea Telecommunications
-
-
- 234
- 58
- gb
- United Kingdom
- 44
- Manx Telecom Mobile
-
-
- 234
- 28
- gb
- United Kingdom
- 44
- Marathon Telecom
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Mars Communications
-
-
- 234
- 75
- gb
- United Kingdom
- 44
- Mass Response Service GmbH
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Mobiweb
-
-
- 234
- 56
- gb
- United Kingdom
- 44
- NCSC
-
-
- 234
- 95
- gb
- United Kingdom
- 44
- Network Rail
-
-
- 234
- 12
- gb
- United Kingdom
- 44
- Network Rail
-
-
- 234
- 13
- gb
- United Kingdom
- 44
- Network Rail
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Nodemax
-
-
- 234
- 51
- gb
- United Kingdom
- 44
- now broadband
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- NTA
-
-
- 234
- 34
- gb
- United Kingdom
- 44
- Orange
-
-
- 234
- 33
- gb
- United Kingdom
- 44
- Orange
-
-
- 234
- 74
- gb
- United Kingdom
- 44
- Pareteum
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Premium Routing
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- QX
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Resilient
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Sark Telecom
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Simwood eSMS
-
-
- 234
- 57
- gb
- United Kingdom
- 44
- Sky
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Sound Advertising
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Spacetel
-
-
- 234
- 40
- gb
- United Kingdom
- 44
- spusu
-
-
- 234
- 55
- gb
- United Kingdom
- 44
- Sure Guernsey
-
-
- 234
- 36
- gb
- United Kingdom
- 44
- Sure Isle of Man
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Sure Jersey
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Swiftnet
-
-
- 234
- 37
- gb
- United Kingdom
- 44
- Synectiv
-
-
- 234
- 16
- gb
- United Kingdom
- 44
- Talk Talk
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Tango Networks
-
-
- 234
- 27
- gb
- United Kingdom
- 44
- Tata Communications Ltd
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Telecom 10
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Telecom2
-
-
- 234
- 27
- gb
- United Kingdom
- 44
- Vodafone
-
-
- 234
- 02
- gb
- United Kingdom
- 44
- O2
-
-
- 234
- 11
- gb
- United Kingdom
- 44
- O2
-
-
- 234
- 10
- gb
- United Kingdom
- 44
- O2
-
-
- 234
- 22
- gb
- United Kingdom
- 44
- Telesign Mobile
-
-
- 234
- 19
- gb
- United Kingdom
- 44
- TeleWare
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- telna Mobile
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- TGL Services
-
-
- 234
- 09
- gb
- United Kingdom
- 44
- Tismi
-
-
- 234
- 25
- gb
- United Kingdom
- 44
- Truphone
-
-
- 234
- 01
- gb
- United Kingdom
- 44
- Vectone Mobile
-
-
- 234
- 998
- gb
- United Kingdom
- 44
- Virgin Mobile
-
-
- 234
- 38
- gb
- United Kingdom
- 44
- Virgin Mobile
-
-
- 234
- 07
- gb
- United Kingdom
- 44
- Vodafone
-
-
- 234
- 92
- gb
- United Kingdom
- 44
- Vodafone
-
-
- 234
- 89
- gb
- United Kingdom
- 44
- Vodafone
-
-
- 234
- 15
- gb
- United Kingdom
- 44
- Vodafone
-
-
- 234
- 91
- gb
- United Kingdom
- 44
- Vodafone
-
-
- 234
- 77
- gb
- United Kingdom
- 44
- Vodafone
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Voicetec Systems
-
-
- 234
- 99
- gb
- United Kingdom
- 44
- Ziron
-
-
- 310
- 050
- us
- United States of America
- 1
-
-
-
- 310
- 880
- us
- United States of America
- 1
-
-
-
- 310
- 850
- us
- United States of America
- 1
- Aeris Comm. Inc.
-
-
- 310
- 640
- us
- United States of America
- 1
-
-
-
- 310
- 510
- us
- United States of America
- 1
- Airtel Wireless LLC
-
-
- 310
- 190
- us
- United States of America
- 1
- Unknown
-
-
- 312
- 090
- us
- United States of America
- 1
- Allied Wireless Communications Corporation
-
-
- 311
- 130
- us
- United States of America
- 1
-
-
-
- 310
- 710
- us
- United States of America
- 1
- Arctic Slope Telephone Association Cooperative Inc.
-
-
- 310
- 410
- us
- United States of America
- 1
- AT&T Wireless Inc.
-
-
- 310
- 380
- us
- United States of America
- 1
- AT&T Wireless Inc.
-
-
- 310
- 170
- us
- United States of America
- 1
- AT&T Wireless Inc.
-
-
- 310
- 150
- us
- United States of America
- 1
- AT&T Wireless Inc.
-
-
- 310
- 680
- us
- United States of America
- 1
- AT&T Wireless Inc.
-
-
- 310
- 070
- us
- United States of America
- 1
- AT&T Wireless Inc.
-
-
- 310
- 560
- us
- United States of America
- 1
- AT&T Wireless Inc.
-
-
- 310
- 980
- us
- United States of America
- 1
- AT&T Wireless Inc.
-
-
- 311
- 810
- us
- United States of America
- 1
- Bluegrass Wireless LLC
-
-
- 311
- 800
- us
- United States of America
- 1
- Bluegrass Wireless LLC
-
-
- 311
- 440
- us
- United States of America
- 1
- Bluegrass Wireless LLC
-
-
- 310
- 900
- us
- United States of America
- 1
- Cable & Communications Corp.
-
-
- 311
- 590
- us
- United States of America
- 1
- California RSA No. 3 Limited Partnership
-
-
- 311
- 500
- us
- United States of America
- 1
- Cambridge Telephone Company Inc.
-
-
- 310
- 830
- us
- United States of America
- 1
- Caprock Cellular Ltd.
-
-
- 311
- 483
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 110
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 285
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 488
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 274
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 310
- 010
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 279
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 288
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 310
- 910
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 284
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 482
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 487
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 273
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 310
- 004
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 278
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 287
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 310
- 890
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 283
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 481
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 486
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 272
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 277
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 310
- 590
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 282
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 480
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 485
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 271
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 276
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 310
- 013
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 281
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 390
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 484
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 270
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 286
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 489
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 275
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 310
- 012
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 280
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 311
- 289
- us
- United States of America
- 1
- Verizon Wireless
-
-
- 312
- 280
- us
- United States of America
- 1
- Cellular Network Partnership LLC
-
-
- 312
- 270
- us
- United States of America
- 1
- Cellular Network Partnership LLC
-
-
- 310
- 360
- us
- United States of America
- 1
- Cellular Network Partnership LLC
-
-
- 311
- 190
- us
- United States of America
- 1
-
-
-
- 310
- 030
- us
- United States of America
- 1
-
-
-
- 311
- 120
- us
- United States of America
- 1
- Choice Phone LLC
-
-
- 310
- 480
- us
- United States of America
- 1
- Choice Phone LLC
-
-
- 310
- 630
- us
- United States of America
- 1
-
-
-
- 310
- 420
- us
- United States of America
- 1
- Cincinnati Bell Wireless LLC
-
-
- 310
- 180
- us
- United States of America
- 1
- Cingular Wireless
-
-
- 310
- 620
- us
- United States of America
- 1
- Coleman County Telco /Trans TX
-
-
- 311
- 040
- us
- United States of America
- 1
-
-
-
- 310
- 06
- us
- United States of America
- 1
- Consolidated Telcom
-
-
- 310
- 60
- us
- United States of America
- 1
- Consolidated Telcom
-
-
- 310
- 26
- us
- United States of America
- 1
-
-
-
- 312
- 380
- us
- United States of America
- 1
-
-
-
- 310
- 930
- us
- United States of America
- 1
-
-
-
- 311
- 240
- us
- United States of America
- 1
-
-
-
- 310
- 080
- us
- United States of America
- 1
-
-
-
- 310
- 700
- us
- United States of America
- 1
- Cross Valliant Cellular Partnership
-
-
- 312
- 030
- us
- United States of America
- 1
- Cross Wireless Telephone Co.
-
-
- 311
- 140
- us
- United States of America
- 1
- Cross Wireless Telephone Co.
-
-
- 311
- 520
- us
- United States of America
- 1
-
-
-
- 312
- 040
- us
- United States of America
- 1
- Custer Telephone Cooperative Inc.
-
-
- 310
- 440
- us
- United States of America
- 1
- Dobson Cellular Systems
-
-
- 310
- 990
- us
- United States of America
- 1
- E.N.M.R. Telephone Coop.
-
-
- 312
- 130
- us
- United States of America
- 1
- East Kentucky Network LLC
-
-
- 312
- 120
- us
- United States of America
- 1
- East Kentucky Network LLC
-
-
- 310
- 750
- us
- United States of America
- 1
- East Kentucky Network LLC
-
-
- 310
- 090
- us
- United States of America
- 1
- Edge Wireless LLC
-
-
- 310
- 610
- us
- United States of America
- 1
- Elkhart TelCo. / Epic Touch Co.
-
-
- 311
- 210
- us
- United States of America
- 1
-
-
-
- 311
- 311
- us
- United States of America
- 1
- Farmers
-
-
- 311
- 460
- us
- United States of America
- 1
- Fisher Wireless Services Inc.
-
-
- 311
- 370
- us
- United States of America
- 1
- GCI Communication Corp.
-
-
- 310
- 430
- us
- United States of America
- 1
- GCI Communication Corp.
-
-
- 310
- 920
- us
- United States of America
- 1
- Get Mobile Inc.
-
-
- 310
- 970
- us
- United States of America
- 1
-
-
-
- 311
- 340
- us
- United States of America
- 1
- Illinois Valley Cellular RSA 2 Partnership
-
-
- 311
- 030
- us
- United States of America
- 1
-
-
-
- 312
- 170
- us
- United States of America
- 1
- Iowa RSA No. 2 Limited Partnership
-
-
- 311
- 410
- us
- United States of America
- 1
- Iowa RSA No. 2 Limited Partnership
-
-
- 310
- 770
- us
- United States of America
- 1
- Iowa Wireless Services LLC
-
-
- 310
- 650
- us
- United States of America
- 1
- Jasper
-
-
- 310
- 870
- us
- United States of America
- 1
- Kaplan Telephone Company Inc.
-
-
- 312
- 180
- us
- United States of America
- 1
- Keystone Wireless LLC
-
-
- 310
- 690
- us
- United States of America
- 1
- Keystone Wireless LLC
-
-
- 311
- 310
- us
- United States of America
- 1
- Lamar County Cellular
-
-
- 310
- 016
- us
- United States of America
- 1
- Leap Wireless International Inc.
-
-
- 311
- 090
- us
- United States of America
- 1
-
-
-
- 310
- 040
- us
- United States of America
- 1
- Matanuska Tel. Assn. Inc.
-
-
- 310
- 780
- us
- United States of America
- 1
- Message Express Co. / Airlink PCS
-
-
- 311
- 660
- us
- United States of America
- 1
-
-
-
- 311
- 330
- us
- United States of America
- 1
- Michigan Wireless LLC
-
-
- 311
- 000
- us
- United States of America
- 1
-
-
-
- 310
- 400
- us
- United States of America
- 1
- Minnesota South. Wirel. Co. / Hickory
-
-
- 311
- 020
- us
- United States of America
- 1
- Missouri RSA No 5 Partnership
-
-
- 311
- 010
- us
- United States of America
- 1
- Missouri RSA No 5 Partnership
-
-
- 312
- 220
- us
- United States of America
- 1
- Missouri RSA No 5 Partnership
-
-
- 312
- 010
- us
- United States of America
- 1
- Missouri RSA No 5 Partnership
-
-
- 311
- 920
- us
- United States of America
- 1
- Missouri RSA No 5 Partnership
-
-
- 310
- 350
- us
- United States of America
- 1
- Mohave Cellular LP
-
-
- 310
- 570
- us
- United States of America
- 1
- MTPCS LLC
-
-
- 310
- 290
- us
- United States of America
- 1
- NEP Cellcorp Inc.
-
-
- 310
- 34
- us
- United States of America
- 1
- Nevada Wireless LLC
-
-
- 311
- 380
- us
- United States of America
- 1
-
-
-
- 310
- 600
- us
- United States of America
- 1
- New-Cell Inc.
-
-
- 311
- 100
- us
- United States of America
- 1
-
-
-
- 311
- 300
- us
- United States of America
- 1
- Nexus Communications Inc.
-
-
- 310
- 130
- us
- United States of America
- 1
- North Carolina RSA 3 Cellular Tel. Co.
-
-
- 312
- 230
- us
- United States of America
- 1
- North Dakota Network Company
-
-
- 311
- 610
- us
- United States of America
- 1
- North Dakota Network Company
-
-
- 310
- 450
- us
- United States of America
- 1
- Northeast Colorado Cellular Inc.
-
-
- 311
- 710
- us
- United States of America
- 1
- Northeast Wireless Networks LLC
-
-
- 310
- 670
- us
- United States of America
- 1
- Northstar
-
-
- 310
- 011
- us
- United States of America
- 1
- Northstar
-
-
- 311
- 420
- us
- United States of America
- 1
- Northwest Missouri Cellular Limited Partnership
-
-
- 310
- 540
- us
- United States of America
- 1
-
-
-
- 310
- 999
- us
- United States of America
- 1
- Various Networks
-
-
- 310
- 760
- us
- United States of America
- 1
- Panhandle Telephone Cooperative Inc.
-
-
- 310
- 580
- us
- United States of America
- 1
- PCS ONE
-
-
- 311
- 170
- us
- United States of America
- 1
- PetroCom
-
-
- 311
- 670
- us
- United States of America
- 1
- Pine Belt Cellular, Inc.
-
-
- 311
- 080
- us
- United States of America
- 1
-
-
-
- 310
- 790
- us
- United States of America
- 1
-
-
-
- 310
- 100
- us
- United States of America
- 1
- Plateau Telecommunications Inc.
-
-
- 310
- 940
- us
- United States of America
- 1
- Poka Lambro Telco Ltd.
-
-
- 311
- 730
- us
- United States of America
- 1
-
-
-
- 311
- 540
- us
- United States of America
- 1
-
-
-
- 310
- 500
- us
- United States of America
- 1
- Public Service Cellular Inc.
-
-
- 312
- 160
- us
- United States of America
- 1
- RSA 1 Limited Partnership
-
-
- 311
- 430
- us
- United States of America
- 1
- RSA 1 Limited Partnership
-
-
- 311
- 350
- us
- United States of America
- 1
- Sagebrush Cellular Inc.
-
-
- 311
- 910
- us
- United States of America
- 1
-
-
-
- 310
- 46
- us
- United States of America
- 1
- SIMMETRY
-
-
- 311
- 260
- us
- United States of America
- 1
- SLO Cellular Inc / Cellular One of San Luis
-
-
- 310
- 320
- us
- United States of America
- 1
- Smith Bagley Inc.
-
-
- 310
- 15
- us
- United States of America
- 1
- Unknown
-
-
- 316
- 011
- us
- United States of America
- 1
- Southern Communications Services Inc.
-
-
- 312
- 530
- us
- United States of America
- 1
- Sprint Spectrum
-
-
- 310
- 120
- us
- United States of America
- 1
- Sprint Spectrum
-
-
- 316
- 010
- us
- United States of America
- 1
- Sprint Spectrum
-
-
- 312
- 190
- us
- United States of America
- 1
- Sprint Spectrum
-
-
- 311
- 880
- us
- United States of America
- 1
- Sprint Spectrum
-
-
- 311
- 870
- us
- United States of America
- 1
- Sprint Spectrum
-
-
- 311
- 490
- us
- United States of America
- 1
- Sprint Spectrum
-
-
- 310
- 240
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 660
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 230
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 31
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 220
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 270
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 210
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 260
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 200
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 250
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 160
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 800
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 300
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 280
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 330
- us
- United States of America
- 1
- T-Mobile
-
-
- 310
- 310
- us
- United States of America
- 1
- T-Mobile
-
-
- 311
- 740
- us
- United States of America
- 1
-
-
-
- 310
- 740
- us
- United States of America
- 1
- Telemetrix Inc.
-
-
- 310
- 14
- us
- United States of America
- 1
- Testing
-
-
- 310
- 950
- us
- United States of America
- 1
- Unknown
-
-
- 310
- 860
- us
- United States of America
- 1
- Texas RSA 15B2 Limited Partnership
-
-
- 311
- 830
- us
- United States of America
- 1
- Thumb Cellular Limited Partnership
-
-
- 311
- 050
- us
- United States of America
- 1
- Thumb Cellular Limited Partnership
-
-
- 310
- 460
- us
- United States of America
- 1
- TMP Corporation
-
-
- 310
- 490
- us
- United States of America
- 1
- Triton PCS
-
-
- 311
- 860
- us
- United States of America
- 1
- Uintah Basin Electronics Telecommunications Inc.
-
-
- 310
- 960
- us
- United States of America
- 1
- Uintah Basin Electronics Telecommunications Inc.
-
-
- 312
- 290
- us
- United States of America
- 1
- Uintah Basin Electronics Telecommunications Inc.
-
-
- 310
- 020
- us
- United States of America
- 1
- Union Telephone Co.
-
-
- 311
- 220
- us
- United States of America
- 1
- United States Cellular Corp.
-
-
- 310
- 730
- us
- United States of America
- 1
- United States Cellular Corp.
-
-
- 311
- 650
- us
- United States of America
- 1
- United Wireless Communications Inc.
-
-
- 310
- 38
- us
- United States of America
- 1
- USA 3650 AT&T
-
-
- 310
- 520
- us
- United States of America
- 1
- VeriSign
-
-
- 310
- 003
- us
- United States of America
- 1
- Unknown
-
-
- 310
- 23
- us
- United States of America
- 1
- Unknown
-
-
- 310
- 24
- us
- United States of America
- 1
- Unknown
-
-
- 310
- 25
- us
- United States of America
- 1
- Unknown
-
-
- 310
- 530
- us
- United States of America
- 1
- West Virginia Wireless
-
-
- 310
- 26
- us
- United States of America
- 1
- Unknown
-
-
- 310
- 340
- us
- United States of America
- 1
- Westlink Communications, LLC
-
-
- 311
- 150
- us
- United States of America
- 1
-
-
-
- 311
- 070
- us
- United States of America
- 1
- Wisconsin RSA #7 Limited Partnership
-
-
- 310
- 390
- us
- United States of America
- 1
- Yorkville Telephone Cooperative
-
-
- 748
- 03
- uy
- Uruguay
- 598
- Ancel/Antel
-
-
- 748
- 00
- uy
- Uruguay
- 598
- Ancel/Antel
-
-
- 748
- 01
- uy
- Uruguay
- 598
- Ancel/Antel
-
-
- 748
- 10
- uy
- Uruguay
- 598
- Claro/AM Wireless
-
-
- 748
- 07
- uy
- Uruguay
- 598
- MOVISTAR
-
-
- 434
- 04
- uz
- Uzbekistan
- 998
- Bee Line/Unitel
-
-
- 434
- 01
- uz
- Uzbekistan
- 998
- Buztel
-
-
- 434
- 07
- uz
- Uzbekistan
- 998
- MTS/Uzdunrobita
-
-
- 434
- 05
- uz
- Uzbekistan
- 998
- Ucell/Coscom
-
-
- 434
- 02
- uz
- Uzbekistan
- 998
- Uzmacom
-
-
- 541
- 05
- vu
- Vanuatu
- 678
- DigiCel
-
-
- 541
- 01
- vu
- Vanuatu
- 678
- SMILE
-
-
- 225
- 299
- va
- Vatican
-
- Failed Calls
-
-
- 734
- 03
- ve
- Venezuela
- 58
- DigiTel C.A.
-
-
- 734
- 02
- ve
- Venezuela
- 58
- DigiTel C.A.
-
-
- 734
- 01
- ve
- Venezuela
- 58
- DigiTel C.A.
-
-
- 734
- 06
- ve
- Venezuela
- 58
- Movilnet C.A.
-
-
- 734
- 04
- ve
- Venezuela
- 58
- Movistar/TelCel
-
-
- 452
- 07
- vn
- Vietnam
- 84
- Gmobile
-
-
- 452
- 08
- vn
- Vietnam
- 84
- I-Telecom
-
-
- 452
- 08
- vn
- Vietnam
- 84
- I-Telecom
-
-
- 452
- 08
- vn
- Vietnam
- 84
- I-Telecom
-
-
- 452
- 01
- vn
- Vietnam
- 84
- MobiFone
-
-
- 452
- 09
- vn
- Vietnam
- 84
- Reddi
-
-
- 452
- 03
- vn
- Vietnam
- 84
- S-Fone/Telecom
-
-
- 452
- 05
- vn
- Vietnam
- 84
- Vietnamobile
-
-
- 452
- 06
- vn
- Vietnam
- 84
- Viettel
-
-
- 452
- 04
- vn
- Vietnam
- 84
- Viettel
-
-
- 452
- 02
- vn
- Vietnam
- 84
- VinaPhone
-
-
- 376
- 50
- vi
- Virgin Islands
- 1340
- Digicel
-
-
- 543
- 299
- wf
- Wallis and Futuna
-
- Failed Calls
-
-
- 543
- 01
- wf
- Wallis and Futuna
-
- Manuia
-
-
- 421
- 999
- ye
- Yemen
- 967
- Fix Line
-
-
- 421
- 04
- ye
- Yemen
- 967
- HITS/Y Unitel
-
-
- 421
- 02
- ye
- Yemen
- 967
- MTN/Spacetel
-
-
- 421
- 01
- ye
- Yemen
- 967
- Sabaphone
-
-
- 421
- 03
- ye
- Yemen
- 967
- Yemen Mob. CDMA
-
-
- 645
- 01
- zm
- Zambia
- 260
- Airtel
-
-
- 645
- 299
- zm
- Zambia
- 260
- Failed Calls
-
-
- 645
- 02
- zm
- Zambia
- 260
- MTN
-
-
- 645
- 03
- zm
- Zambia
- 260
- Zamtel
-
-
- 648
- 04
- zw
- Zimbabwe
- 263
- Econet
-
-
- 648
- 01
- zw
- Zimbabwe
- 263
- NetOne
-
-
- 648
- 03
- zw
- Zimbabwe
- 263
- Telecel
-
-
-
+
+
+ 289
+ 88
+ ge
+ Abkhazia
+ 7
+ A-Mobile
+
+
+ 289
+ 68
+ ge
+ Abkhazia
+ 7
+ A-Mobile
+
+
+ 289
+ 67
+ ge
+ Abkhazia
+ 7
+ Aquafon
+
+
+ 289
+ 299
+ ge
+ Abkhazia
+ 7
+ Failed Calls
+
+
+ 289
+ 999
+ ge
+ Abkhazia
+ 7
+ Fix Line
+
+
+ 412
+ 01
+ af
+ Afghanistan
+ 93
+ AWCC
+
+
+ 412
+ 50
+ af
+ Afghanistan
+ 93
+ Etisalat
+
+
+ 412
+ 299
+ af
+ Afghanistan
+ 93
+ Failed Calls
+
+
+ 412
+ 999
+ af
+ Afghanistan
+ 93
+ Fix Line
+
+
+ 412
+ 88
+ af
+ Afghanistan
+ 93
+ Mobifone
+
+
+ 412
+ 80
+ af
+ Afghanistan
+ 93
+ Mobifone
+
+
+ 412
+ 40
+ af
+ Afghanistan
+ 93
+ MTN
+
+
+ 412
+ 20
+ af
+ Afghanistan
+ 93
+ Roshan
+
+
+ 276
+ 03
+ al
+ Albania
+ 355
+ ALBtelecom Mobile / Eagle
+
+
+ 276
+ 299
+ al
+ Albania
+ 355
+ Failed Calls
+
+
+ 276
+ 999
+ al
+ Albania
+ 355
+ Fix Line
+
+
+ 276
+ 01
+ al
+ Albania
+ 355
+ One / AMC
+
+
+ 276
+ 02
+ al
+ Albania
+ 355
+ Vodafone
+
+
+ 603
+ 02
+ dz
+ Algeria
+ 213
+ Djezzy
+
+
+ 603
+ 299
+ dz
+ Algeria
+ 213
+ Failed Calls
+
+
+ 603
+ 999
+ dz
+ Algeria
+ 213
+ Fix Line
+
+
+ 603
+ 01
+ dz
+ Algeria
+ 213
+ Mobilis
+
+
+ 603
+ 03
+ dz
+ Algeria
+ 213
+ Ooredoo
+
+
+ 544
+ 780
+ as
+ American Samoa
+ 684
+ ASTCA Mobile
+
+
+ 544
+ 11
+ as
+ American Samoa
+ 684
+ BlueSky
+
+
+ 544
+ 299
+ as
+ American Samoa
+ 684
+ Failed Calls
+
+
+ 544
+ 999
+ as
+ American Samoa
+ 684
+ Fix Line
+
+
+ 213
+ 03
+ ad
+ Andorra
+ 376
+ Andorra Telecom / Mobiland
+
+
+ 213
+ 299
+ ad
+ Andorra
+ 376
+ Failed Calls
+
+
+ 213
+ 999
+ ad
+ Andorra
+ 376
+ Fix Line
+
+
+ 631
+ 299
+ ao
+ Angola
+ 244
+ Failed Calls
+
+
+ 631
+ 999
+ ao
+ Angola
+ 244
+ Fix Line
+
+
+ 631
+ 04
+ ao
+ Angola
+ 244
+ MoviCel
+
+
+ 631
+ 02
+ ao
+ Angola
+ 244
+ Unitel
+
+
+ 365
+ 850
+ ai
+ Anguilla
+ 1264
+ Digicel
+
+
+ 365
+ 299
+ ai
+ Anguilla
+ 1264
+ Failed Calls
+
+
+ 365
+ 999
+ ai
+ Anguilla
+ 1264
+ Fix Line
+
+
+ 365
+ 840
+ ai
+ Anguilla
+ 1264
+ Flow
+
+
+ 344
+ 93
+ ag
+ Antigua and Barbuda
+ 1268
+ Digicel
+
+
+ 344
+ 930
+ ag
+ Antigua and Barbuda
+ 1268
+ Digicel
+
+
+ 344
+ 299
+ ag
+ Antigua and Barbuda
+ 1268
+ Failed Calls
+
+
+ 344
+ 999
+ ag
+ Antigua and Barbuda
+ 1268
+ Fix Line
+
+
+ 344
+ 920
+ ag
+ Antigua and Barbuda
+ 1268
+ Flow
+
+
+ 344
+ 92
+ ag
+ Antigua and Barbuda
+ 1268
+ Flow
+
+
+ 344
+ 03
+ ag
+ Antigua and Barbuda
+ 1268
+ imobile / APUA
+
+
+ 344
+ 030
+ ag
+ Antigua and Barbuda
+ 1268
+ imobile / APUA
+
+
+ 722
+ 330
+ ar
+ Argentina
+ 54
+ Claro
+
+
+ 722
+ 031
+ ar
+ Argentina
+ 54
+ Claro
+
+
+ 722
+ 320
+ ar
+ Argentina
+ 54
+ Claro
+
+
+ 722
+ 310
+ ar
+ Argentina
+ 54
+ Claro
+
+
+ 722
+ 299
+ ar
+ Argentina
+ 54
+ Express
+
+
+ 722
+ 999
+ ar
+ Argentina
+ 54
+ Fix Line
+
+
+ 722
+ 299
+ ar
+ Argentina
+ 54
+ Imowi
+
+
+ 722
+ 299
+ ar
+ Argentina
+ 54
+ IPLAN
+
+
+ 722
+ 299
+ ar
+ Argentina
+ 54
+ Kallofer
+
+
+ 722
+ 007
+ ar
+ Argentina
+ 54
+ Movistar
+
+
+ 722
+ 070
+ ar
+ Argentina
+ 54
+ Movistar
+
+
+ 722
+ 010
+ ar
+ Argentina
+ 54
+ Movistar
+
+
+ 722
+ 299
+ ar
+ Argentina
+ 54
+ Nuestro
+
+
+ 722
+ 034
+ ar
+ Argentina
+ 54
+ Personal
+
+
+ 722
+ 299
+ ar
+ Argentina
+ 54
+ Telecentro
+
+
+ 722
+ 341
+ ar
+ Argentina
+ 54
+ Personal
+
+
+ 722
+ 340
+ ar
+ Argentina
+ 54
+ Personal
+
+
+ 283
+ 01
+ am
+ Armenia
+ 374
+ Beeline
+
+
+ 283
+ 299
+ am
+ Armenia
+ 374
+ Failed Calls
+
+
+ 283
+ 999
+ am
+ Armenia
+ 374
+ Fix Line
+
+
+ 283
+ 04
+ am
+ Armenia
+ 374
+ KT
+
+
+ 283
+ 10
+ am
+ Armenia
+ 374
+ Orange
+
+
+ 283
+ 05
+ am
+ Armenia
+ 374
+ Viva-MTS
+
+
+ 363
+ 02
+ aw
+ Aruba
+ 297
+ Digicel
+
+
+ 363
+ 299
+ aw
+ Aruba
+ 297
+ Failed Calls
+
+
+ 363
+ 999
+ aw
+ Aruba
+ 297
+ Fix Line
+
+
+ 363
+ 299
+ aw
+ Aruba
+ 297
+ MIO
+
+
+ 363
+ 01
+ aw
+ Aruba
+ 297
+ SETAR
+
+
+ 505
+ 299
+ au
+ Australia
+ 61
+ ACMA
+
+
+ 505
+ 30
+ au
+ Australia
+ 61
+ Compatel
+
+
+ 505
+ 999
+ au
+ Australia
+ 61
+ Fix Line
+
+
+ 505
+ 299
+ au
+ Australia
+ 61
+ Get SIM
+
+
+ 505
+ 19
+ au
+ Australia
+ 61
+ Lycamobile
+
+
+ 505
+ 35
+ au
+ Australia
+ 61
+ MessageBird
+
+
+ 505
+ 10
+ au
+ Australia
+ 61
+ Norfolk Telecom
+
+
+ 505
+ 90
+ au
+ Australia
+ 61
+ Optus
+
+
+ 505
+ 50
+ au
+ Australia
+ 61
+ Pivotel
+
+
+ 505
+ 88
+ au
+ Australia
+ 61
+ Pivotel
+
+
+ 505
+ 13
+ au
+ Australia
+ 61
+ RailCorp
+
+
+ 505
+ 26
+ au
+ Australia
+ 61
+ Sinch
+
+
+ 505
+ 02
+ au
+ Australia
+ 61
+ Optus
+
+
+ 505
+ 299
+ au
+ Australia
+ 61
+ Symbio
+
+
+ 505
+ 72
+ au
+ Australia
+ 61
+ Telstra
+
+
+ 505
+ 01
+ au
+ Australia
+ 61
+ Telstra
+
+
+ 505
+ 11
+ au
+ Australia
+ 61
+ Telstra
+
+
+ 505
+ 39
+ au
+ Australia
+ 61
+ Telstra
+
+
+ 505
+ 71
+ au
+ Australia
+ 61
+ Telstra
+
+
+ 505
+ 16
+ au
+ Australia
+ 61
+ VicTrack
+
+
+ 505
+ 03
+ au
+ Australia
+ 61
+ Vodafone
+
+
+ 505
+ 06
+ au
+ Australia
+ 61
+ Vodafone
+
+
+ 505
+ 12
+ au
+ Australia
+ 61
+ Vodafone
+
+
+ 505
+ 07
+ au
+ Australia
+ 61
+ Vodafone
+
+
+ 232
+ 14
+ at
+ Austria
+ 43
+ 3
+
+
+ 232
+ 05
+ at
+ Austria
+ 43
+ 3
+
+
+ 232
+ 19
+ at
+ Austria
+ 43
+ 3
+
+
+ 232
+ 16
+ at
+ Austria
+ 43
+ 3
+
+
+ 232
+ 10
+ at
+ Austria
+ 43
+ 3
+
+
+ 232
+ 09
+ at
+ Austria
+ 43
+ A1 Telekom
+
+
+ 232
+ 12
+ at
+ Austria
+ 43
+ A1 Telekom
+
+
+ 232
+ 02
+ at
+ Austria
+ 43
+ A1 Telekom
+
+
+ 232
+ 01
+ at
+ Austria
+ 43
+ A1 Telekom
+
+
+ 232
+ 11
+ at
+ Austria
+ 43
+ A1 Telekom
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ ArgoNET
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ DIALOG telekom
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ Digital Privacy
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ DIMOCO
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ educom
+
+
+ 232
+ 999
+ at
+ Austria
+ 43
+ Fix Line
+
+
+ 232
+ 25
+ at
+ Austria
+ 43
+ Holding Graz
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ Innsbrucker Kommunalbetriebe
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ kabelplus
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ Lenovo Connect
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ LINK Mobility
+
+
+ 232
+ 26
+ at
+ Austria
+ 43
+ LIWEST Mobil
+
+
+ 232
+ 17
+ at
+ Austria
+ 43
+ MRS
+
+
+ 232
+ 20
+ at
+ Austria
+ 43
+ Mtel
+
+
+ 232
+ 91
+ at
+ Austria
+ 43
+ OBB Infrastruktur
+
+
+ 232
+ 22
+ at
+ Austria
+ 43
+ Plintron
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ Simple SMS
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ Skymond Mobile
+
+
+ 232
+ 24
+ at
+ Austria
+ 43
+ Smartel Services
+
+
+ 232
+ 18
+ at
+ Austria
+ 43
+ smartspace
+
+
+ 232
+ 13
+ at
+ Austria
+ 43
+ T-Mobile / Magenta
+
+
+ 232
+ 23
+ at
+ Austria
+ 43
+ T-Mobile / Magenta
+
+
+ 232
+ 04
+ at
+ Austria
+ 43
+ T-Mobile / Magenta
+
+
+ 232
+ 03
+ at
+ Austria
+ 43
+ T-Mobile / Magenta
+
+
+ 232
+ 299
+ at
+ Austria
+ 43
+ Telfoni
+
+
+ 232
+ 27
+ at
+ Austria
+ 43
+ Tismi
+
+
+ 232
+ 07
+ at
+ Austria
+ 43
+ Ventocom
+
+
+ 400
+ 01
+ az
+ Azerbaijan
+ 994
+ Azercell
+
+
+ 400
+ 02
+ az
+ Azerbaijan
+ 994
+ Bakcell
+
+
+ 400
+ 299
+ az
+ Azerbaijan
+ 994
+ Failed Calls
+
+
+ 400
+ 999
+ az
+ Azerbaijan
+ 994
+ Fix Line
+
+
+ 400
+ 03
+ az
+ Azerbaijan
+ 994
+ FONEX
+
+
+ 400
+ 04
+ az
+ Azerbaijan
+ 994
+ Nar Mobile
+
+
+ 400
+ 06
+ az
+ Azerbaijan
+ 994
+ Naxtel
+
+
+ 364
+ 490
+ bs
+ Bahamas
+ 1242
+ Aliv
+
+
+ 364
+ 390
+ bs
+ Bahamas
+ 1242
+ Cybercell / BaTelCo
+
+
+ 364
+ 39
+ bs
+ Bahamas
+ 1242
+ Cybercell / BaTelCo
+
+
+ 364
+ 30
+ bs
+ Bahamas
+ 1242
+ Cybercell / BaTelCo
+
+
+ 364
+ 299
+ bs
+ Bahamas
+ 1242
+ Failed Calls
+
+
+ 364
+ 999
+ bs
+ Bahamas
+ 1242
+ Fix Line
+
+
+ 426
+ 01
+ bh
+ Bahrain
+ 973
+ Batelco
+
+
+ 426
+ 299
+ bh
+ Bahrain
+ 973
+ Failed Calls
+
+
+ 426
+ 999
+ bh
+ Bahrain
+ 973
+ Fix Line
+
+
+ 426
+ 05
+ bh
+ Bahrain
+ 973
+ Royal Court
+
+
+ 426
+ 04
+ bh
+ Bahrain
+ 973
+ VIVA
+
+
+ 426
+ 02
+ bh
+ Bahrain
+ 973
+ Zain
+
+
+ 470
+ 07
+ bd
+ Bangladesh
+ 880
+ Airtel
+
+
+ 470
+ 02
+ bd
+ Bangladesh
+ 880
+ Airtel
+
+
+ 470
+ 03
+ bd
+ Bangladesh
+ 880
+ Banglalink
+
+
+ 470
+ 299
+ bd
+ Bangladesh
+ 880
+ Failed Calls
+
+
+ 470
+ 999
+ bd
+ Bangladesh
+ 880
+ Fix Line
+
+
+ 470
+ 01
+ bd
+ Bangladesh
+ 880
+ GrameenPhone
+
+
+ 470
+ 04
+ bd
+ Bangladesh
+ 880
+ TeleTalk
+
+
+ 342
+ 050
+ bb
+ Barbados
+ 1246
+ Digicel
+
+
+ 342
+ 299
+ bb
+ Barbados
+ 1246
+ Failed Calls
+
+
+ 342
+ 999
+ bb
+ Barbados
+ 1246
+ Fix Line
+
+
+ 342
+ 600
+ bb
+ Barbados
+ 1246
+ Flow / Lime
+
+
+ 342
+ 299
+ bb
+ Barbados
+ 1246
+ Ozone
+
+
+ 257
+ 04
+ by
+ Belarus
+ 375
+ life:)
+
+
+ 257
+ 299
+ by
+ Belarus
+ 375
+ Failed Calls
+
+
+ 257
+ 999
+ by
+ Belarus
+ 375
+ Fix Line
+
+
+ 257
+ 02
+ by
+ Belarus
+ 375
+ MTS
+
+
+ 257
+ 01
+ by
+ Belarus
+ 375
+ velcom A1
+
+
+ 206
+ 20
+ be
+ Belgium
+ 32
+ Base
+
+
+ 206
+ 28
+ be
+ Belgium
+ 32
+ BICS
+
+
+ 206
+ 25
+ be
+ Belgium
+ 32
+ Dense Air
+
+
+ 206
+ 23
+ be
+ Belgium
+ 32
+ Dust Mobile
+
+
+ 206
+ 33
+ be
+ Belgium
+ 32
+ Ericsson
+
+
+ 206
+ 299
+ be
+ Belgium
+ 32
+ FEBO
+
+
+ 206
+ 999
+ be
+ Belgium
+ 32
+ Fix Line
+
+
+ 206
+ 299
+ be
+ Belgium
+ 32
+ GianCom
+
+
+ 206
+ 02
+ be
+ Belgium
+ 32
+ Infrabel
+
+
+ 206
+ 299
+ be
+ Belgium
+ 32
+ interactive digital media / IDM
+
+
+ 206
+ 299
+ be
+ Belgium
+ 32
+ L-mobi
+
+
+ 206
+ 99
+ be
+ Belgium
+ 32
+ Lancelot
+
+
+ 206
+ 299
+ be
+ Belgium
+ 32
+ Legos
+
+
+ 206
+ 06
+ be
+ Belgium
+ 32
+ Lycamobile
+
+
+ 206
+ 30
+ be
+ Belgium
+ 32
+ Mobile Vikings
+
+
+ 206
+ 10
+ be
+ Belgium
+ 32
+ Mobistar / Orange
+
+
+ 206
+ 299
+ be
+ Belgium
+ 32
+ Nord Connect
+
+
+ 206
+ 34
+ be
+ Belgium
+ 32
+ onoff
+
+
+ 206
+ 299
+ be
+ Belgium
+ 32
+ PM Factory
+
+
+ 206
+ 01
+ be
+ Belgium
+ 32
+ Proximus
+
+
+ 206
+ 04
+ be
+ Belgium
+ 32
+ Proximus
+
+
+ 206
+ 00
+ be
+ Belgium
+ 32
+ Proximus
+
+
+ 206
+ 05
+ be
+ Belgium
+ 32
+ Telenet
+
+
+ 206
+ 07
+ be
+ Belgium
+ 32
+ Vectone Mobile
+
+
+ 206
+ 08
+ be
+ Belgium
+ 32
+ VOOmobile
+
+
+ 206
+ 299
+ be
+ Belgium
+ 32
+ Voxbone / Bandwidth
+
+
+ 702
+ 67
+ bz
+ Belize
+ 501
+ DigiCell
+
+
+ 702
+ 299
+ bz
+ Belize
+ 501
+ Failed Calls
+
+
+ 702
+ 999
+ bz
+ Belize
+ 501
+ Fix Line
+
+
+ 702
+ 69
+ bz
+ Belize
+ 501
+ Smart
+
+
+ 702
+ 099
+ bz
+ Belize
+ 501
+ Smart
+
+
+ 616
+ 299
+ bj
+ Benin
+ 229
+ Failed Calls
+
+
+ 616
+ 999
+ bj
+ Benin
+ 229
+ Fix Line
+
+
+ 616
+ 02
+ bj
+ Benin
+ 229
+ Moov
+
+
+ 616
+ 03
+ bj
+ Benin
+ 229
+ MTN
+
+
+ 350
+ 01
+ bm
+ Bermuda
+ 1441
+ Digicel
+
+
+ 350
+ 299
+ bm
+ Bermuda
+ 1441
+ Failed Calls
+
+
+ 350
+ 999
+ bm
+ Bermuda
+ 1441
+ Fix Line
+
+
+ 350
+ 000
+ bm
+ Bermuda
+ 1441
+ One
+
+
+ 402
+ 11
+ bt
+ Bhutan
+ 975
+ B-Mobile
+
+
+ 402
+ 17
+ bt
+ Bhutan
+ 975
+ B-Mobile
+
+
+ 402
+ 999
+ bt
+ Bhutan
+ 975
+ Fix Line
+
+
+ 402
+ 77
+ bt
+ Bhutan
+ 975
+ TashiCell
+
+
+ 736
+ 02
+ bo
+ Bolivia
+ 591
+ Entel Movil
+
+
+ 736
+ 299
+ bo
+ Bolivia
+ 591
+ Failed Calls
+
+
+ 736
+ 999
+ bo
+ Bolivia
+ 591
+ Fix Line
+
+
+ 736
+ 03
+ bo
+ Bolivia
+ 591
+ Tigo
+
+
+ 736
+ 01
+ bo
+ Bolivia
+ 591
+ Viva
+
+
+ 218
+ 90
+ ba
+ Bosnia and Herzegovina
+ 387
+ BH Mobile
+
+
+ 218
+ 03
+ ba
+ Bosnia and Herzegovina
+ 387
+ Eronet
+
+
+ 218
+ 299
+ ba
+ Bosnia and Herzegovina
+ 387
+ Failed Calls
+
+
+ 218
+ 999
+ ba
+ Bosnia and Herzegovina
+ 387
+ Fix Line
+
+
+ 218
+ 05
+ ba
+ Bosnia and Herzegovina
+ 387
+ m:tel
+
+
+ 652
+ 04
+ bw
+ Botswana
+ 267
+ beMobile
+
+
+ 652
+ 299
+ bw
+ Botswana
+ 267
+ Failed Calls
+
+
+ 652
+ 999
+ bw
+ Botswana
+ 267
+ Fix Line
+
+
+ 652
+ 01
+ bw
+ Botswana
+ 267
+ Mascom
+
+
+ 652
+ 02
+ bw
+ Botswana
+ 267
+ Orange
+
+
+ 724
+ 32
+ br
+ Brazil
+ 55
+ Algar Telecom
+
+
+ 724
+ 33
+ br
+ Brazil
+ 55
+ Algar Telecom
+
+
+ 724
+ 34
+ br
+ Brazil
+ 55
+ Algar Telecom
+
+
+ 724
+ 26
+ br
+ Brazil
+ 55
+ Americanet
+
+
+ 724
+ 299
+ br
+ Brazil
+ 55
+ ARQIA
+
+
+ 724
+ 299
+ br
+ Brazil
+ 55
+ Bbs Options
+
+
+ 724
+ 299
+ br
+ Brazil
+ 55
+ Cinco
+
+
+ 724
+ 05
+ br
+ Brazil
+ 55
+ Claro
+
+
+ 724
+ 38
+ br
+ Brazil
+ 55
+ Claro
+
+
+ 724
+ 299
+ br
+ Brazil
+ 55
+ Failed Calls
+
+
+ 724
+ 999
+ br
+ Brazil
+ 55
+ Fix Line
+
+
+ 724
+ 21
+ br
+ Brazil
+ 55
+ Ligue
+
+
+ 724
+ 00
+ br
+ Brazil
+ 55
+ Nextel
+
+
+ 724
+ 39
+ br
+ Brazil
+ 55
+ Nextel
+
+
+ 724
+ 299
+ br
+ Brazil
+ 55
+ NLT
+
+
+ 724
+ 16
+ br
+ Brazil
+ 55
+ Oi Movel
+
+
+ 724
+ 31
+ br
+ Brazil
+ 55
+ Oi Movel
+
+
+ 724
+ 15
+ br
+ Brazil
+ 55
+ Sercomtel
+
+
+ 724
+ 17
+ br
+ Brazil
+ 55
+ Surf
+
+
+ 724
+ 299
+ br
+ Brazil
+ 55
+ Telecall
+
+
+ 724
+ 04
+ br
+ Brazil
+ 55
+ TIM
+
+
+ 724
+ 03
+ br
+ Brazil
+ 55
+ TIM
+
+
+ 724
+ 02
+ br
+ Brazil
+ 55
+ TIM
+
+
+ 724
+ 54
+ br
+ Brazil
+ 55
+ TIM
+
+
+ 724
+ 299
+ br
+ Brazil
+ 55
+ Vecto Mobile
+
+
+ 724
+ 11
+ br
+ Brazil
+ 55
+ Vivo
+
+
+ 724
+ 23
+ br
+ Brazil
+ 55
+ Vivo
+
+
+ 724
+ 06
+ br
+ Brazil
+ 55
+ Vivo
+
+
+ 724
+ 10
+ br
+ Brazil
+ 55
+ Vivo
+
+
+ 348
+ 570
+ vg
+ British Virgin Islands
+ 284
+ CCT
+
+
+ 348
+ 770
+ vg
+ British Virgin Islands
+ 284
+ Digicel
+
+
+ 348
+ 299
+ vg
+ British Virgin Islands
+ 284
+ Failed Calls
+
+
+ 348
+ 999
+ vg
+ British Virgin Islands
+ 284
+ Fix Line
+
+
+ 348
+ 170
+ vg
+ British Virgin Islands
+ 284
+ Flow
+
+
+ 528
+ 02
+ bn
+ Brunei
+ 673
+ B-Mobile
+
+
+ 528
+ 03
+ bn
+ Brunei
+ 673
+ DST
+
+
+ 528
+ 11
+ bn
+ Brunei
+ 673
+ DST
+
+
+ 528
+ 299
+ bn
+ Brunei
+ 673
+ Failed Calls
+
+
+ 528
+ 999
+ bn
+ Brunei
+ 673
+ Fix Line
+
+
+ 284
+ 01
+ bg
+ Bulgaria
+ 359
+ A1
+
+
+ 284
+ 11
+ bg
+ Bulgaria
+ 359
+ Bulsatcom
+
+
+ 284
+ 299
+ bg
+ Bulgaria
+ 359
+ Failed Calls
+
+
+ 284
+ 999
+ bg
+ Bulgaria
+ 359
+ Fix Line
+
+
+ 284
+ 13
+ bg
+ Bulgaria
+ 359
+ T.com
+
+
+ 284
+ 05
+ bg
+ Bulgaria
+ 359
+ Telenor
+
+
+ 284
+ 03
+ bg
+ Bulgaria
+ 359
+ Vivacom
+
+
+ 613
+ 299
+ bf
+ Burkina Faso
+ 226
+ Failed Calls
+
+
+ 613
+ 999
+ bf
+ Burkina Faso
+ 226
+ Fix Line
+
+
+ 613
+ 02
+ bf
+ Burkina Faso
+ 226
+ Orange
+
+
+ 613
+ 03
+ bf
+ Burkina Faso
+ 226
+ Telecel
+
+
+ 613
+ 01
+ bf
+ Burkina Faso
+ 226
+ Telmob
+
+
+ 642
+ 999
+ bi
+ Burundi
+ 257
+ Fix Line
+
+
+ 642
+ 01
+ bi
+ Burundi
+ 257
+ Leo
+
+
+ 642
+ 82
+ bi
+ Burundi
+ 257
+ Leo
+
+
+ 642
+ 08
+ bi
+ Burundi
+ 257
+ Lumitel
+
+
+ 642
+ 03
+ bi
+ Burundi
+ 257
+ ONAMOB
+
+
+ 642
+ 07
+ bi
+ Burundi
+ 257
+ Smart
+
+
+ 456
+ 04
+ kh
+ Cambodia
+ 855
+ QB
+
+
+ 456
+ 01
+ kh
+ Cambodia
+ 855
+ Cellcard
+
+
+ 456
+ 299
+ kh
+ Cambodia
+ 855
+ CooTel
+
+
+ 456
+ 299
+ kh
+ Cambodia
+ 855
+ Failed Calls
+
+
+ 456
+ 999
+ kh
+ Cambodia
+ 855
+ Fix Line
+
+
+ 456
+ 08
+ kh
+ Cambodia
+ 855
+ Metfone
+
+
+ 456
+ 299
+ kh
+ Cambodia
+ 855
+ MPTC
+
+
+ 456
+ 11
+ kh
+ Cambodia
+ 855
+ Seatel
+
+
+ 456
+ 05
+ kh
+ Cambodia
+ 855
+ Smart
+
+
+ 456
+ 02
+ kh
+ Cambodia
+ 855
+ Smart
+
+
+ 456
+ 06
+ kh
+ Cambodia
+ 855
+ Smart
+
+
+ 624
+ 299
+ cm
+ Cameroon
+ 237
+ Failed Calls
+
+
+ 624
+ 999
+ cm
+ Cameroon
+ 237
+ Fix Line
+
+
+ 624
+ 01
+ cm
+ Cameroon
+ 237
+ MTN
+
+
+ 624
+ 04
+ cm
+ Cameroon
+ 237
+ Nextel
+
+
+ 624
+ 02
+ cm
+ Cameroon
+ 237
+ Orange
+
+
+ 302
+ 61
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 630
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 660
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 64
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 69
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 640
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 690
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 66
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 610
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 63
+ ca
+ Canada
+ 1
+ Bell Mobility
+
+
+ 302
+ 270
+ ca
+ Canada
+ 1
+ eastlink
+
+
+ 302
+ 299
+ ca
+ Canada
+ 1
+ Failed Calls
+
+
+ 302
+ 370
+ ca
+ Canada
+ 1
+ Fido
+
+
+ 302
+ 37
+ ca
+ Canada
+ 1
+ Fido
+
+
+ 302
+ 999
+ ca
+ Canada
+ 1
+ Fix Line
+
+
+ 302
+ 49
+ ca
+ Canada
+ 1
+ Freedom Mobile
+
+
+ 302
+ 491
+ ca
+ Canada
+ 1
+ Freedom Mobile
+
+
+ 302
+ 490
+ ca
+ Canada
+ 1
+ Freedom Mobile
+
+
+ 302
+ 62
+ ca
+ Canada
+ 1
+ Ice Wireless
+
+
+ 302
+ 620
+ ca
+ Canada
+ 1
+ Ice Wireless
+
+
+ 302
+ 380
+ ca
+ Canada
+ 1
+ K-Net Mobile
+
+
+ 302
+ 530
+ ca
+ Canada
+ 1
+ K-Net Mobile
+
+
+ 302
+ 53
+ ca
+ Canada
+ 1
+ K-Net Mobile
+
+
+ 302
+ 38
+ ca
+ Canada
+ 1
+ K-Net Mobile
+
+
+ 302
+ 720
+ ca
+ Canada
+ 1
+ Rogers
+
+
+ 302
+ 721
+ ca
+ Canada
+ 1
+ Rogers
+
+
+ 302
+ 32
+ ca
+ Canada
+ 1
+ Rogers
+
+
+ 302
+ 82
+ ca
+ Canada
+ 1
+ Rogers
+
+
+ 302
+ 320
+ ca
+ Canada
+ 1
+ Rogers
+
+
+ 302
+ 820
+ ca
+ Canada
+ 1
+ Rogers
+
+
+ 302
+ 72
+ ca
+ Canada
+ 1
+ Rogers
+
+
+ 302
+ 750
+ ca
+ Canada
+ 1
+ SaskTel Mobility
+
+
+ 302
+ 75
+ ca
+ Canada
+ 1
+ SaskTel Mobility
+
+
+ 302
+ 78
+ ca
+ Canada
+ 1
+ SaskTel Mobility
+
+
+ 302
+ 680
+ ca
+ Canada
+ 1
+ SaskTel Mobility
+
+
+ 302
+ 681
+ ca
+ Canada
+ 1
+ SaskTel Mobility
+
+
+ 302
+ 780
+ ca
+ Canada
+ 1
+ SaskTel Mobility
+
+
+ 302
+ 68
+ ca
+ Canada
+ 1
+ SaskTel Mobility
+
+
+ 302
+ 781
+ ca
+ Canada
+ 1
+ SaskTel Mobility
+
+
+ 302
+ 22
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 860
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 86
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 360
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 221
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 760
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 36
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 220
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 22
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 76
+ ca
+ Canada
+ 1
+ Telus Mobility
+
+
+ 302
+ 520
+ ca
+ Canada
+ 1
+ Videotron
+
+
+ 302
+ 51
+ ca
+ Canada
+ 1
+ Videotron
+
+
+ 302
+ 50
+ ca
+ Canada
+ 1
+ Videotron
+
+
+ 302
+ 500
+ ca
+ Canada
+ 1
+ Videotron
+
+
+ 302
+ 510
+ ca
+ Canada
+ 1
+ Videotron
+
+
+ 302
+ 299
+ ca
+ Canada
+ 1
+ Xplore Mobile
+
+
+ 625
+ 01
+ cv
+ Cape Verde
+ 238
+ CVMovel
+
+
+ 625
+ 299
+ cv
+ Cape Verde
+ 238
+ Failed Calls
+
+
+ 625
+ 999
+ cv
+ Cape Verde
+ 238
+ Fix Line
+
+
+ 625
+ 02
+ cv
+ Cape Verde
+ 238
+ Unitel T+
+
+
+ 346
+ 050
+ ky
+ Cayman Islands
+ 1345
+ Digicel
+
+
+ 346
+ 299
+ ky
+ Cayman Islands
+ 1345
+ Failed Calls
+
+
+ 346
+ 999
+ ky
+ Cayman Islands
+ 1345
+ Fix Line
+
+
+ 346
+ 140
+ ky
+ Cayman Islands
+ 1345
+ Flow / Lime
+
+
+ 346
+ 001
+ ky
+ Cayman Islands
+ 1345
+ Logic
+
+
+ 623
+ 04
+ cf
+ Central African Republic
+ 236
+ Azur
+
+
+ 623
+ 299
+ cf
+ Central African Republic
+ 236
+ Failed Calls
+
+
+ 623
+ 999
+ cf
+ Central African Republic
+ 236
+ Fix Line
+
+
+ 623
+ 01
+ cf
+ Central African Republic
+ 236
+ Moov
+
+
+ 623
+ 03
+ cf
+ Central African Republic
+ 236
+ Orange
+
+
+ 623
+ 299
+ cf
+ Central African Republic
+ 236
+ Socatel
+
+
+ 623
+ 02
+ cf
+ Central African Republic
+ 236
+ Telecel
+
+
+ 622
+ 01
+ td
+ Chad
+ 235
+ Airtel
+
+
+ 622
+ 299
+ td
+ Chad
+ 235
+ Failed Calls
+
+
+ 622
+ 999
+ td
+ Chad
+ 235
+ Fix Line
+
+
+ 622
+ 03
+ td
+ Chad
+ 235
+ Moov
+
+
+ 622
+ 04
+ td
+ Chad
+ 235
+ Salam
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Boby
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ CellOPS
+
+
+ 730
+ 22
+ cl
+ Chile
+ 56
+ Cellplus
+
+
+ 730
+ 11
+ cl
+ Chile
+ 56
+ Celupago
+
+
+ 730
+ 15
+ cl
+ Chile
+ 56
+ Cibeles Telecom
+
+
+ 730
+ 27
+ cl
+ Chile
+ 56
+ Cibeles Telecom
+
+
+ 730
+ 03
+ cl
+ Chile
+ 56
+ Claro
+
+
+ 730
+ 23
+ cl
+ Chile
+ 56
+ Claro
+
+
+ 730
+ 17
+ cl
+ Chile
+ 56
+ Compatel
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Dotcom
+
+
+ 730
+ 18
+ cl
+ Chile
+ 56
+ Empresas Bunker
+
+
+ 730
+ 10
+ cl
+ Chile
+ 56
+ Entel
+
+
+ 730
+ 01
+ cl
+ Chile
+ 56
+ Entel
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Failed Calls
+
+
+ 730
+ 999
+ cl
+ Chile
+ 56
+ Fix Line
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ GTD Movil
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Industel
+
+
+ 730
+ 06
+ cl
+ Chile
+ 56
+ INNET
+
+
+ 730
+ 20
+ cl
+ Chile
+ 56
+ Inversiones Santa Fe
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Mavi
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Mobilink
+
+
+ 730
+ 19
+ cl
+ Chile
+ 56
+ Movil Falabella
+
+
+ 730
+ 07
+ cl
+ Chile
+ 56
+ Movistar
+
+
+ 730
+ 02
+ cl
+ Chile
+ 56
+ Movistar
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Mundo Pacifico
+
+
+ 730
+ 14
+ cl
+ Chile
+ 56
+ Netline
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ NetUno
+
+
+ 730
+ 16
+ cl
+ Chile
+ 56
+ Nomade Telecomunicaciones
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Quantax
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ RedVoiss
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Simple
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Swedcom
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Telcomax
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Telefonica Uno Uno Cuatro
+
+
+ 730
+ 12
+ cl
+ Chile
+ 56
+ Telestar
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ Television Interactiva
+
+
+ 730
+ 13
+ cl
+ Chile
+ 56
+ Virgin Mobile
+
+
+ 730
+ 299
+ cl
+ Chile
+ 56
+ VOIP Analysis
+
+
+ 730
+ 08
+ cl
+ Chile
+ 56
+ VTR Movil
+
+
+ 730
+ 04
+ cl
+ Chile
+ 56
+ WOM
+
+
+ 730
+ 09
+ cl
+ Chile
+ 56
+ WOM
+
+
+ 730
+ 05
+ cl
+ Chile
+ 56
+ WOM
+
+
+ 460
+ 04
+ cn
+ China
+ 86
+ China Mobile
+
+
+ 460
+ 07
+ cn
+ China
+ 86
+ China Mobile
+
+
+ 460
+ 02
+ cn
+ China
+ 86
+ China Mobile
+
+
+ 460
+ 08
+ cn
+ China
+ 86
+ China Mobile
+
+
+ 460
+ 00
+ cn
+ China
+ 86
+ China Mobile
+
+
+ 460
+ 11
+ cn
+ China
+ 86
+ China Telecom
+
+
+ 460
+ 03
+ cn
+ China
+ 86
+ China Telecom
+
+
+ 460
+ 12
+ cn
+ China
+ 86
+ China Telecom
+
+
+ 460
+ 06
+ cn
+ China
+ 86
+ China Unicom
+
+
+ 460
+ 01
+ cn
+ China
+ 86
+ China Unicom
+
+
+ 460
+ 10
+ cn
+ China
+ 86
+ China Unicom
+
+
+ 460
+ 09
+ cn
+ China
+ 86
+ China Unicom
+
+
+ 460
+ 299
+ cn
+ China
+ 86
+ Failed Calls
+
+
+ 460
+ 999
+ cn
+ China
+ 86
+ Fix Line
+
+
+ 732
+ 299
+ co
+ Colombia
+ 57
+ ATnet
+
+
+ 732
+ 130
+ co
+ Colombia
+ 57
+ Avantel
+
+
+ 732
+ 666
+ co
+ Colombia
+ 57
+ Claro
+
+
+ 732
+ 101
+ co
+ Colombia
+ 57
+ Claro
+
+
+ 732
+ 002
+ co
+ Colombia
+ 57
+ Edatel
+
+
+ 732
+ 187
+ co
+ Colombia
+ 57
+ eTb
+
+
+ 732
+ 299
+ co
+ Colombia
+ 57
+ Eztalk Mobile
+
+
+ 732
+ 999
+ co
+ Colombia
+ 57
+ Fix Line
+
+
+ 732
+ 240
+ co
+ Colombia
+ 57
+ Flash Mobile
+
+
+ 732
+ 299
+ co
+ Colombia
+ 57
+ Gomobile
+
+
+ 732
+ 220
+ co
+ Colombia
+ 57
+ Libre Tecnologias
+
+
+ 732
+ 299
+ co
+ Colombia
+ 57
+ Movil Exito
+
+
+ 732
+ 123
+ co
+ Colombia
+ 57
+ Movistar
+
+
+ 732
+ 001
+ co
+ Colombia
+ 57
+ Movistar
+
+
+ 732
+ 299
+ co
+ Colombia
+ 57
+ Plintron
+
+
+ 732
+ 230
+ co
+ Colombia
+ 57
+ Setroc Mobile
+
+
+ 732
+ 199
+ co
+ Colombia
+ 57
+ SUMA movil
+
+
+ 732
+ 165
+ co
+ Colombia
+ 57
+ Tigo
+
+
+ 732
+ 103
+ co
+ Colombia
+ 57
+ Tigo
+
+
+ 732
+ 111
+ co
+ Colombia
+ 57
+ Tigo
+
+
+ 732
+ 299
+ co
+ Colombia
+ 57
+ TuCEL
+
+
+ 732
+ 142
+ co
+ Colombia
+ 57
+ UNE
+
+
+ 732
+ 020
+ co
+ Colombia
+ 57
+ UNE
+
+
+ 732
+ 299
+ co
+ Colombia
+ 57
+ Vilacom Mobile
+
+
+ 732
+ 154
+ co
+ Colombia
+ 57
+ Virgin Mobile
+
+
+ 732
+ 360
+ co
+ Colombia
+ 57
+ WOM
+
+
+ 654
+ 299
+ km
+ Comoros
+ 269
+ Failed Calls
+
+
+ 654
+ 999
+ km
+ Comoros
+ 269
+ Fix Line
+
+
+ 654
+ 01
+ km
+ Comoros
+ 269
+ HURI
+
+
+ 654
+ 02
+ km
+ Comoros
+ 269
+ Telma
+
+
+ 629
+ 01
+ cg
+ Congo
+ 242
+ Airtel
+
+
+ 629
+ 299
+ cg
+ Congo
+ 242
+ Failed Calls
+
+
+ 629
+ 999
+ cg
+ Congo
+ 242
+ Fix Line
+
+
+ 629
+ 10
+ cg
+ Congo
+ 242
+ MTN
+
+
+ 629
+ 07
+ cg
+ Congo
+ 242
+ Warid
+
+
+ 548
+ 01
+ ck
+ Cook Islands
+ 682
+ Vodafone / Bluesky
+
+
+ 548
+ 299
+ ck
+ Cook Islands
+ 682
+ Failed Calls
+
+
+ 548
+ 999
+ ck
+ Cook Islands
+ 682
+ Fix Line
+
+
+ 712
+ 03
+ cr
+ Costa Rica
+ 506
+ Claro
+
+
+ 712
+ 299
+ cr
+ Costa Rica
+ 506
+ Failed Calls
+
+
+ 712
+ 999
+ cr
+ Costa Rica
+ 506
+ Fix Line
+
+
+ 712
+ 02
+ cr
+ Costa Rica
+ 506
+ Kolbi / ICE
+
+
+ 712
+ 01
+ cr
+ Costa Rica
+ 506
+ Kolbi / ICE
+
+
+ 712
+ 04
+ cr
+ Costa Rica
+ 506
+ Movistar
+
+
+ 712
+ 299
+ cr
+ Costa Rica
+ 506
+ MultiCom
+
+
+ 712
+ 299
+ cr
+ Costa Rica
+ 506
+ racsa
+
+
+ 712
+ 299
+ cr
+ Costa Rica
+ 506
+ Tuyo Movil
+
+
+ 219
+ 10
+ hr
+ Croatia
+ 385
+ A1 / VIP
+
+
+ 219
+ 299
+ hr
+ Croatia
+ 385
+ Failed Calls
+
+
+ 219
+ 999
+ hr
+ Croatia
+ 385
+ Fix Line
+
+
+ 219
+ 01
+ hr
+ Croatia
+ 385
+ T-Mobile
+
+
+ 219
+ 12
+ hr
+ Croatia
+ 385
+ TELE FOCUS
+
+
+ 219
+ 02
+ hr
+ Croatia
+ 385
+ Telemach / Tele2
+
+
+ 368
+ 01
+ cu
+ Cuba
+ 53
+ Cubacel
+
+
+ 368
+ 299
+ cu
+ Cuba
+ 53
+ Failed Calls
+
+
+ 368
+ 999
+ cu
+ Cuba
+ 53
+ Fix Line
+
+
+ 368
+ 299
+ cu
+ Cuba
+ 53
+ MoviTel
+
+
+ 280
+ 22
+ cy
+ Cyprus
+ 357
+ Cablenet / Lemontel
+
+
+ 280
+ 01
+ cy
+ Cyprus
+ 357
+ Cytamobile-Vodafone
+
+
+ 280
+ 02
+ cy
+ Cyprus
+ 357
+ Cytamobile-Vodafone
+
+
+ 280
+ 10
+ cy
+ Cyprus
+ 357
+ Epic / MTN
+
+
+ 280
+ 299
+ cy
+ Cyprus
+ 357
+ Failed Calls
+
+
+ 280
+ 999
+ cy
+ Cyprus
+ 357
+ Fix Line
+
+
+ 280
+ 20
+ cy
+ Cyprus
+ 357
+ PrimeTel
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ +4U Mobile
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ 3ton
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ CEZ
+
+
+ 230
+ 08
+ cz
+ Czech Republic
+ 420
+ Compatel
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ Dragon
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ EriMobile
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ Failed Calls
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ Fayn
+
+
+ 230
+ 999
+ cz
+ Czech Republic
+ 420
+ Fix Line
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ GoMobil
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ ha-loo mobil
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ Laudatio
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ METRONET
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ MOBIL21
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ Nej Mobil
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ NETBOX Mobil
+
+
+ 230
+ 04
+ cz
+ Czech Republic
+ 420
+ Nordic Telecom
+
+
+ 230
+ 02
+ cz
+ Czech Republic
+ 420
+ O2
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ Odorik
+
+
+ 230
+ 05
+ cz
+ Czech Republic
+ 420
+ PODA
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ SAZKA
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ SZDC
+
+
+ 230
+ 98
+ cz
+ Czech Republic
+ 420
+ SZDC
+
+
+ 230
+ 01
+ cz
+ Czech Republic
+ 420
+ T-Mobile
+
+
+ 230
+ 07
+ cz
+ Czech Republic
+ 420
+ T-Mobile
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ Tesco Mobile
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ TOPefekt
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ TT Quality
+
+
+ 230
+ 299
+ cz
+ Czech Republic
+ 420
+ Uniphone
+
+
+ 230
+ 09
+ cz
+ Czech Republic
+ 420
+ Uniphone
+
+
+ 230
+ 03
+ cz
+ Czech Republic
+ 420
+ Vodafone
+
+
+ 630
+ 90
+ cd
+ Democratic Republic of Congo
+ 243
+ Africell
+
+
+ 630
+ 02
+ cd
+ Democratic Republic of Congo
+ 243
+ Airtel
+
+
+ 630
+ 299
+ cd
+ Democratic Republic of Congo
+ 243
+ Failed Calls
+
+
+ 630
+ 999
+ cd
+ Democratic Republic of Congo
+ 243
+ Fix Line
+
+
+ 630
+ 86
+ cd
+ Democratic Republic of Congo
+ 243
+ Orange
+
+
+ 630
+ 05
+ cd
+ Democratic Republic of Congo
+ 243
+ Supercell
+
+
+ 630
+ 299
+ cd
+ Democratic Republic of Congo
+ 243
+ Tatem
+
+
+ 630
+ 01
+ cd
+ Democratic Republic of Congo
+ 243
+ Vodacom
+
+
+ 630
+ 88
+ cd
+ Democratic Republic of Congo
+ 243
+ Yozma Timeturns
+
+
+ 238
+ 06
+ dk
+ Denmark
+ 45
+ 3
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ 42 Telecom
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ 5Tel
+
+
+ 238
+ 23
+ dk
+ Denmark
+ 45
+ Banedanmark
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Benemen
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Bolignet-Aarhus
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ CBB Mobil
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ celfon
+
+
+ 238
+ 88
+ dk
+ Denmark
+ 45
+ Cobira
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Companymobile
+
+
+ 238
+ 13
+ dk
+ Denmark
+ 45
+ Compatel
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Comtalk
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Evercall
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Failed Calls
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Firmafon
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Firstcom
+
+
+ 238
+ 999
+ dk
+ Denmark
+ 45
+ Fix Line
+
+
+ 238
+ 17
+ dk
+ Denmark
+ 45
+ Gotanet
+
+
+ 238
+ 42
+ dk
+ Denmark
+ 45
+ Greenwave
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ ipnordic
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Ipvision
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Lancelot
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Lebara
+
+
+ 238
+ 28
+ dk
+ Denmark
+ 45
+ LINK Mobility
+
+
+ 238
+ 12
+ dk
+ Denmark
+ 45
+ Lycamobile
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Maxtel.dk
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ MI Carrier Services
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Mitto
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Mobiweb
+
+
+ 238
+ 14
+ dk
+ Denmark
+ 45
+ Monty Mobile
+
+
+ 238
+ 15
+ dk
+ Denmark
+ 45
+ Net 1
+
+
+ 238
+ 04
+ dk
+ Denmark
+ 45
+ Nexcon.io
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ NextM2M
+
+
+ 238
+ 73
+ dk
+ Denmark
+ 45
+ Onomondo
+
+
+ 238
+ 30
+ dk
+ Denmark
+ 45
+ Pareteum
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ SimService
+
+
+ 238
+ 03
+ dk
+ Denmark
+ 45
+ Syniverse
+
+
+ 238
+ 10
+ dk
+ Denmark
+ 45
+ TDC
+
+
+ 238
+ 01
+ dk
+ Denmark
+ 45
+ TDC
+
+
+ 238
+ 02
+ dk
+ Denmark
+ 45
+ Telenor
+
+
+ 238
+ 77
+ dk
+ Denmark
+ 45
+ Telenor
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Telenor Connexion
+
+
+ 238
+ 20
+ dk
+ Denmark
+ 45
+ Telia
+
+
+ 238
+ 96
+ dk
+ Denmark
+ 45
+ Telia
+
+
+ 238
+ 16
+ dk
+ Denmark
+ 45
+ Tismi
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Tripple Track
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Uni-tel
+
+
+ 238
+ 25
+ dk
+ Denmark
+ 45
+ Viahub
+
+
+ 238
+ 299
+ dk
+ Denmark
+ 45
+ Viptel
+
+
+ 238
+ 08
+ dk
+ Denmark
+ 45
+ Voxbone / Bandwidth
+
+
+ 310
+ 299
+ dg
+ Diego Garcia
+ 246
+ Failed Calls
+
+
+ 310
+ 999
+ dg
+ Diego Garcia
+ 246
+ Fix Line
+
+
+ 310
+ 299
+ dg
+ Diego Garcia
+ 246
+ Sure
+
+
+ 638
+ 01
+ dj
+ Djibouti
+ 253
+ Evatis
+
+
+ 638
+ 299
+ dj
+ Djibouti
+ 253
+ Failed Calls
+
+
+ 638
+ 999
+ dj
+ Djibouti
+ 253
+ Fix Line
+
+
+ 366
+ 050
+ dm
+ Dominica
+ 1767
+ Digicel
+
+
+ 366
+ 299
+ dm
+ Dominica
+ 1767
+ Failed Calls
+
+
+ 366
+ 999
+ dm
+ Dominica
+ 1767
+ Fix Line
+
+
+ 366
+ 110
+ dm
+ Dominica
+ 1767
+ Flow
+
+
+ 370
+ 02
+ do
+ Dominican Republic
+ 1809
+ Claro
+
+
+ 370
+ 299
+ do
+ Dominican Republic
+ 1809
+ Failed Calls
+
+
+ 370
+ 999
+ do
+ Dominican Republic
+ 1809
+ Fix Line
+
+
+ 370
+ 01
+ do
+ Dominican Republic
+ 1809
+ Orange / Altice
+
+
+ 370
+ 299
+ do
+ Dominican Republic
+ 1809
+ Satel
+
+
+ 370
+ 04
+ do
+ Dominican Republic
+ 1809
+ Viva
+
+
+ 514
+ 299
+ tl
+ East Timor
+ 670
+ Failed Calls
+
+
+ 514
+ 999
+ tl
+ East Timor
+ 670
+ Fix Line
+
+
+ 514
+ 03
+ tl
+ East Timor
+ 670
+ Telemor
+
+
+ 514
+ 01
+ tl
+ East Timor
+ 670
+ Telkomcel
+
+
+ 514
+ 02
+ tl
+ East Timor
+ 670
+ Timor Telecom
+
+
+ 740
+ 01
+ ec
+ Ecuador
+ 593
+ Claro
+
+
+ 740
+ 02
+ ec
+ Ecuador
+ 593
+ CNT movil
+
+
+ 740
+ 299
+ ec
+ Ecuador
+ 593
+ Failed Calls
+
+
+ 740
+ 999
+ ec
+ Ecuador
+ 593
+ Fix Line
+
+
+ 740
+ 00
+ ec
+ Ecuador
+ 593
+ Movistar
+
+
+ 602
+ 03
+ eg
+ Egypt
+ 20
+ Etisalat
+
+
+ 602
+ 299
+ eg
+ Egypt
+ 20
+ Failed Calls
+
+
+ 602
+ 999
+ eg
+ Egypt
+ 20
+ Fix Line
+
+
+ 602
+ 01
+ eg
+ Egypt
+ 20
+ Orange
+
+
+ 602
+ 02
+ eg
+ Egypt
+ 20
+ Vodafone
+
+
+ 602
+ 04
+ eg
+ Egypt
+ 20
+ WE
+
+
+ 706
+ 01
+ sv
+ El Salvador
+ 503
+ Claro
+
+
+ 706
+ 02
+ sv
+ El Salvador
+ 503
+ Digicel
+
+
+ 706
+ 299
+ sv
+ El Salvador
+ 503
+ Failed Calls
+
+
+ 706
+ 999
+ sv
+ El Salvador
+ 503
+ Fix Line
+
+
+ 706
+ 04
+ sv
+ El Salvador
+ 503
+ Movistar
+
+
+ 706
+ 05
+ sv
+ El Salvador
+ 503
+ RED
+
+
+ 706
+ 03
+ sv
+ El Salvador
+ 503
+ Tigo
+
+
+ 627
+ 299
+ gq
+ Equatorial Guinea
+ 240
+ Failed Calls
+
+
+ 627
+ 999
+ gq
+ Equatorial Guinea
+ 240
+ Fix Line
+
+
+ 627
+ 03
+ gq
+ Equatorial Guinea
+ 240
+ Muni
+
+
+ 627
+ 01
+ gq
+ Equatorial Guinea
+ 240
+ Orange
+
+
+ 657
+ 01
+ er
+ Eritrea
+ 291
+ Eritel
+
+
+ 657
+ 299
+ er
+ Eritrea
+ 291
+ Failed Calls
+
+
+ 657
+ 999
+ er
+ Eritrea
+ 291
+ Fix Line
+
+
+ 248
+ 02
+ ee
+ Estonia
+ 372
+ Elisa
+
+
+ 248
+ 299
+ ee
+ Estonia
+ 372
+ Failed Calls
+
+
+ 248
+ 999
+ ee
+ Estonia
+ 372
+ Fix Line
+
+
+ 248
+ 03
+ ee
+ Estonia
+ 372
+ Tele2
+
+
+ 248
+ 01
+ ee
+ Estonia
+ 372
+ Telia
+
+
+ 248
+ 13
+ ee
+ Estonia
+ 372
+ Telia
+
+
+ 248
+ 04
+ ee
+ Estonia
+ 372
+ TravelSim
+
+
+ 636
+ 01
+ et
+ Ethiopia
+ 251
+ Ethio Mobile
+
+
+ 636
+ 299
+ et
+ Ethiopia
+ 251
+ Failed Calls
+
+
+ 636
+ 999
+ et
+ Ethiopia
+ 251
+ Fix Line
+
+
+ 750
+ 299
+ fk
+ Falkland Islands
+ 500
+ Failed Calls
+
+
+ 750
+ 999
+ fk
+ Falkland Islands
+ 500
+ Fix Line
+
+
+ 750
+ 001
+ fk
+ Falkland Islands
+ 500
+ Sure
+
+
+ 288
+ 299
+ fo
+ Faroe Islands
+ 298
+ Failed Calls
+
+
+ 288
+ 01
+ fo
+ Faroe Islands
+ 298
+ Faroese Telecom
+
+
+ 288
+ 999
+ fo
+ Faroe Islands
+ 298
+ Fix Line
+
+
+ 288
+ 02
+ fo
+ Faroe Islands
+ 298
+ Hey / Kall
+
+
+ 288
+ 03
+ fo
+ Faroe Islands
+ 298
+ Tosa
+
+
+ 542
+ 02
+ fj
+ Fiji
+ 679
+ DigiCell
+
+
+ 542
+ 299
+ fj
+ Fiji
+ 679
+ Failed Calls
+
+
+ 542
+ 999
+ fj
+ Fiji
+ 679
+ Fix Line
+
+
+ 542
+ 01
+ fj
+ Fiji
+ 679
+ Vodafone
+
+
+ 244
+ 14
+ fi
+ Finland
+ 358
+ Alcom
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ Benemen
+
+
+ 244
+ 26
+ fi
+ Finland
+ 358
+ Compatel
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ Cuuma
+
+
+ 244
+ 12
+ fi
+ Finland
+ 358
+ DNA
+
+
+ 244
+ 13
+ fi
+ Finland
+ 358
+ DNA
+
+
+ 244
+ 04
+ fi
+ Finland
+ 358
+ DNA
+
+
+ 244
+ 03
+ fi
+ Finland
+ 358
+ DNA
+
+
+ 244
+ 06
+ fi
+ Finland
+ 358
+ Elisa
+
+
+ 244
+ 21
+ fi
+ Finland
+ 358
+ Elisa
+
+
+ 244
+ 05
+ fi
+ Finland
+ 358
+ Elisa
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ Failed Calls
+
+
+ 244
+ 999
+ fi
+ Finland
+ 358
+ Fix Line
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ interactive digital media / IDM
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ IPIFY
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ Lancelot
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ MI Carrier Services
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ MobiWeb
+
+
+ 244
+ 24
+ fi
+ Finland
+ 358
+ Nord Connect
+
+
+ 244
+ 09
+ fi
+ Finland
+ 358
+ NSN
+
+
+ 244
+ 07
+ fi
+ Finland
+ 358
+ NSN
+
+
+ 244
+ 39
+ fi
+ Finland
+ 358
+ NSN
+
+
+ 244
+ 38
+ fi
+ Finland
+ 358
+ NSN
+
+
+ 244
+ 41
+ fi
+ Finland
+ 358
+ NSN
+
+
+ 244
+ 08
+ fi
+ Finland
+ 358
+ NSN
+
+
+ 244
+ 40
+ fi
+ Finland
+ 358
+ NSN
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ RAILI
+
+
+ 244
+ 43
+ fi
+ Finland
+ 358
+ Telavox
+
+
+ 244
+ 36
+ fi
+ Finland
+ 358
+ Telia
+
+
+ 244
+ 91
+ fi
+ Finland
+ 358
+ Telia
+
+
+ 244
+ 15
+ fi
+ Finland
+ 358
+ Telit
+
+
+ 244
+ 37
+ fi
+ Finland
+ 358
+ Tismi
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ TravelSim
+
+
+ 244
+ 299
+ fi
+ Finland
+ 358
+ Twilio
+
+
+ 244
+ 35
+ fi
+ Finland
+ 358
+ Ukko Mobile
+
+
+ 244
+ 42
+ fi
+ Finland
+ 358
+ Viahub
+
+
+ 244
+ 45
+ fi
+ Finland
+ 358
+ VIRVE
+
+
+ 244
+ 47
+ fi
+ Finland
+ 358
+ VIRVE
+
+
+ 244
+ 33
+ fi
+ Finland
+ 358
+ VIRVE
+
+
+ 244
+ 46
+ fi
+ Finland
+ 358
+ VIRVE
+
+
+ 244
+ 32
+ fi
+ Finland
+ 358
+ Voxbone / Bandwidth
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Add-On Multimedia
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Afone Mobile
+
+
+ 208
+ 28
+ fr
+ France
+ 33
+ Airmob
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Alphalink
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Alphalink
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Annatel
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Atlas
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Auchan
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Auchan
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Axialys
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Bazile
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ BJT
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ BJT
+
+
+ 208
+ 88
+ fr
+ France
+ 33
+ Bouygues Telecom
+
+
+ 208
+ 21
+ fr
+ France
+ 33
+ Bouygues Telecom
+
+
+ 208
+ 20
+ fr
+ France
+ 33
+ Bouygues Telecom
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Bretagne Telecom
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ CAT
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ CELESTE
+
+
+ 208
+ 34
+ fr
+ France
+ 33
+ Cellhire
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Codepi
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Coolwave
+
+
+ 208
+ 27
+ fr
+ France
+ 33
+ Coriolis
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ CPRO
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ CRH
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ CRT
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ CTExcel
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Doctolib
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Failed Calls
+
+
+ 208
+ 999
+ fr
+ France
+ 33
+ Fix Line
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Foliateam
+
+
+ 208
+ 15
+ fr
+ France
+ 33
+ Free Mobile
+
+
+ 208
+ 36
+ fr
+ France
+ 33
+ Free Mobile
+
+
+ 208
+ 35
+ fr
+ France
+ 33
+ Free Mobile
+
+
+ 208
+ 16
+ fr
+ France
+ 33
+ Free Mobile
+
+
+ 208
+ 94
+ fr
+ France
+ 33
+ Halys
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Happy Telecom
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Hexatel
+
+
+ 208
+ 89
+ fr
+ France
+ 33
+ Hub One
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ i-via
+
+
+ 208
+ 37
+ fr
+ France
+ 33
+ IP Directions
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ IP Telecom
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Iptis
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ JOi
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Kertel
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Keyyo Mobile
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ La Poste Mobile
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ La Poste Mobile
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ LASOTEL
+
+
+ 208
+ 38
+ fr
+ France
+ 33
+ Lebara
+
+
+ 208
+ 17
+ fr
+ France
+ 33
+ Legos
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Linkt
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ LITEYEAR
+
+
+ 208
+ 25
+ fr
+ France
+ 33
+ Lycamobile
+
+
+ 208
+ 03
+ fr
+ France
+ 33
+ MobiquiThings
+
+
+ 208
+ 24
+ fr
+ France
+ 33
+ MobiquiThings
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Netcom
+
+
+ 208
+ 39
+ fr
+ France
+ 33
+ Networth Telecom
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Nordnet
+
+
+ 208
+ 26
+ fr
+ France
+ 33
+ NRJ
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ onoff
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ OpenIP
+
+
+ 208
+ 01
+ fr
+ France
+ 33
+ Orange
+
+
+ 208
+ 32
+ fr
+ France
+ 33
+ Orange
+
+
+ 208
+ 91
+ fr
+ France
+ 33
+ Orange
+
+
+ 208
+ 02
+ fr
+ France
+ 33
+ Orange
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Paritel
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Prixtel
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Prixtel
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ SCT TELECOM
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ SCT TELECOM
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Sewan Communications
+
+
+ 208
+ 13
+ fr
+ France
+ 33
+ SFR
+
+
+ 208
+ 09
+ fr
+ France
+ 33
+ SFR
+
+
+ 208
+ 08
+ fr
+ France
+ 33
+ SFR
+
+
+ 208
+ 11
+ fr
+ France
+ 33
+ SFR
+
+
+ 208
+ 10
+ fr
+ France
+ 33
+ SFR
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ SIMbioz
+
+
+ 208
+ 30
+ fr
+ France
+ 33
+ Syma Mobile
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ TDF
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Tismi
+
+
+ 208
+ 22
+ fr
+ France
+ 33
+ Transatel
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ Trunkline
+
+
+ 208
+ 12
+ fr
+ France
+ 33
+ Truphone
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ unyc
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ VA SOLUTIONS
+
+
+ 208
+ 31
+ fr
+ France
+ 33
+ Vectone Mobile
+
+
+ 208
+ 299
+ fr
+ France
+ 33
+ VOIP Telecom
+
+
+ 547
+ 299
+ pf
+ French Polynesia
+ 689
+ Failed Calls
+
+
+ 547
+ 999
+ pf
+ French Polynesia
+ 689
+ Fix Line
+
+
+ 547
+ 299
+ pf
+ French Polynesia
+ 689
+ Ora
+
+
+ 547
+ 20
+ pf
+ French Polynesia
+ 689
+ Vini
+
+
+ 547
+ 15
+ pf
+ French Polynesia
+ 689
+ Vodafone
+
+
+ 628
+ 03
+ ga
+ Gabon
+ 241
+ Airtel
+
+
+ 628
+ 299
+ ga
+ Gabon
+ 241
+ Failed Calls
+
+
+ 628
+ 999
+ ga
+ Gabon
+ 241
+ Fix Line
+
+
+ 628
+ 01
+ ga
+ Gabon
+ 241
+ Libertis
+
+
+ 607
+ 02
+ gm
+ Gambia
+ 220
+ Africel
+
+
+ 607
+ 03
+ gm
+ Gambia
+ 220
+ Comium
+
+
+ 607
+ 299
+ gm
+ Gambia
+ 220
+ Failed Calls
+
+
+ 607
+ 999
+ gm
+ Gambia
+ 220
+ Fix Line
+
+
+ 607
+ 01
+ gm
+ Gambia
+ 220
+ Gamcel
+
+
+ 607
+ 04
+ gm
+ Gambia
+ 220
+ QCell
+
+
+ 282
+ 04
+ ge
+ Georgia
+ 995
+ Beeline
+
+
+ 282
+ 299
+ ge
+ Georgia
+ 995
+ Failed Calls
+
+
+ 282
+ 999
+ ge
+ Georgia
+ 995
+ Fix Line
+
+
+ 282
+ 01
+ ge
+ Georgia
+ 995
+ Geocell
+
+
+ 282
+ 07
+ ge
+ Georgia
+ 995
+ GlobalCell
+
+
+ 282
+ 02
+ ge
+ Georgia
+ 995
+ MagtiCom
+
+
+ 282
+ 11
+ ge
+ Georgia
+ 995
+ Mobilive
+
+
+ 282
+ 22
+ ge
+ Georgia
+ 995
+ MyPhone
+
+
+ 282
+ 10
+ ge
+ Georgia
+ 995
+ Premium Net
+
+
+ 282
+ 08
+ ge
+ Georgia
+ 995
+ Silknet
+
+
+ 282
+ 12
+ ge
+ Georgia
+ 995
+ Telecom 1
+
+
+ 262
+ 23
+ de
+ Germany
+ 49
+ 1&1
+
+
+ 262
+ 299
+ de
+ Germany
+ 49
+ Argon Networks
+
+
+ 262
+ 10
+ de
+ Germany
+ 49
+ DB Netz
+
+
+ 262
+ 20
+ de
+ Germany
+ 49
+ Telefonica / E-Plus
+
+
+ 262
+ 999
+ de
+ Germany
+ 49
+ Fix Line
+
+
+ 262
+ 14
+ de
+ Germany
+ 49
+ Lebara
+
+
+ 262
+ 43
+ de
+ Germany
+ 49
+ Lycamobile
+
+
+ 262
+ 21
+ de
+ Germany
+ 49
+ Multiconnect
+
+
+ 262
+ 22
+ de
+ Germany
+ 49
+ sipgate
+
+
+ 262
+ 12
+ de
+ Germany
+ 49
+ sipgate
+
+
+ 262
+ 78
+ de
+ Germany
+ 49
+ T-mobile
+
+
+ 262
+ 06
+ de
+ Germany
+ 49
+ T-mobile
+
+
+ 262
+ 01
+ de
+ Germany
+ 49
+ T-mobile
+
+
+ 262
+ 24
+ de
+ Germany
+ 49
+ TelcoVillage
+
+
+ 262
+ 03
+ de
+ Germany
+ 49
+ Telefonica / E-Plus
+
+
+ 262
+ 05
+ de
+ Germany
+ 49
+ Telefonica / E-Plus
+
+
+ 262
+ 17
+ de
+ Germany
+ 49
+ Telefonica / E-Plus
+
+
+ 262
+ 16
+ de
+ Germany
+ 49
+ Telefonica / O2
+
+
+ 262
+ 07
+ de
+ Germany
+ 49
+ Telefonica / O2
+
+
+ 262
+ 11
+ de
+ Germany
+ 49
+ Telefonica / O2
+
+
+ 262
+ 08
+ de
+ Germany
+ 49
+ Telefonica / O2
+
+
+ 262
+ 299
+ de
+ Germany
+ 49
+ Tismi
+
+
+ 262
+ 299
+ de
+ Germany
+ 49
+ Truphone
+
+
+ 262
+ 42
+ de
+ Germany
+ 49
+ Vodafone
+
+
+ 262
+ 09
+ de
+ Germany
+ 49
+ Vodafone
+
+
+ 262
+ 04
+ de
+ Germany
+ 49
+ Vodafone
+
+
+ 262
+ 02
+ de
+ Germany
+ 49
+ Vodafone
+
+
+ 620
+ 03
+ gh
+ Ghana
+ 233
+ Airtel
+
+
+ 620
+ 06
+ gh
+ Ghana
+ 233
+ Airtel
+
+
+ 620
+ 299
+ gh
+ Ghana
+ 233
+ Comsys
+
+
+ 620
+ 299
+ gh
+ Ghana
+ 233
+ Failed Calls
+
+
+ 620
+ 999
+ gh
+ Ghana
+ 233
+ Fix Line
+
+
+ 620
+ 07
+ gh
+ Ghana
+ 233
+ Glo
+
+
+ 620
+ 01
+ gh
+ Ghana
+ 233
+ MTN
+
+
+ 620
+ 05
+ gh
+ Ghana
+ 233
+ National Security
+
+
+ 620
+ 08
+ gh
+ Ghana
+ 233
+ Surfline
+
+
+ 620
+ 02
+ gh
+ Ghana
+ 233
+ Vodafone
+
+
+ 266
+ 299
+ gi
+ Gibraltar
+ 350
+ Failed Calls
+
+
+ 266
+ 999
+ gi
+ Gibraltar
+ 350
+ Fix Line
+
+
+ 266
+ 299
+ gi
+ Gibraltar
+ 350
+ GibFibreSpeed
+
+
+ 266
+ 01
+ gi
+ Gibraltar
+ 350
+ Gibtel
+
+
+ 202
+ 299
+ gr
+ Greece
+ 30
+ AMD Telecom
+
+
+ 202
+ 299
+ gr
+ Greece
+ 30
+ Apifon
+
+
+ 202
+ 15
+ gr
+ Greece
+ 30
+ BWS
+
+
+ 202
+ 02
+ gr
+ Greece
+ 30
+ Cosmote
+
+
+ 202
+ 01
+ gr
+ Greece
+ 30
+ Cosmote
+
+
+ 202
+ 999
+ gr
+ Greece
+ 30
+ Fix Line
+
+
+ 202
+ 16
+ gr
+ Greece
+ 30
+ Inter Telecom
+
+
+ 202
+ 299
+ gr
+ Greece
+ 30
+ Interconnect
+
+
+ 202
+ 299
+ gr
+ Greece
+ 30
+ M-STAT
+
+
+ 202
+ 299
+ gr
+ Greece
+ 30
+ Nova
+
+
+ 202
+ 04
+ gr
+ Greece
+ 30
+ OSE
+
+
+ 202
+ 03
+ gr
+ Greece
+ 30
+ OTE
+
+
+ 202
+ 299
+ gr
+ Greece
+ 30
+ OTEGLOBE
+
+
+ 202
+ 299
+ gr
+ Greece
+ 30
+ Premium Net
+
+
+ 202
+ 05
+ gr
+ Greece
+ 30
+ Vodafone
+
+
+ 202
+ 09
+ gr
+ Greece
+ 30
+ Wind
+
+
+ 202
+ 10
+ gr
+ Greece
+ 30
+ Wind
+
+
+ 202
+ 12
+ gr
+ Greece
+ 30
+ Yuboto
+
+
+ 290
+ 299
+ gl
+ Greenland
+ 299
+ Failed Calls
+
+
+ 290
+ 999
+ gl
+ Greenland
+ 299
+ Fix Line
+
+
+ 290
+ 01
+ gl
+ Greenland
+ 299
+ Tele Greenland
+
+
+ 352
+ 050
+ gd
+ Grenada
+ 1473
+ Digicel
+
+
+ 352
+ 299
+ gd
+ Grenada
+ 1473
+ Failed Calls
+
+
+ 352
+ 999
+ gd
+ Grenada
+ 1473
+ Fix Line
+
+
+ 352
+ 110
+ gd
+ Grenada
+ 1473
+ Flow
+
+
+ 352
+ 299
+ gd
+ Grenada
+ 1473
+ Spice Mobile
+
+
+ 340
+ 08
+ gf
+ Guadeloupe and Martinique and French Guiana
+ 594
+ Amigo
+
+
+ 340
+ 20
+ gf
+ Guadeloupe and Martinique and French Guiana
+ 594
+ Digicel
+
+
+ 340
+ 299
+ gf
+ Guadeloupe and Martinique and French Guiana
+ 594
+ Failed Calls
+
+
+ 340
+ 999
+ gf
+ Guadeloupe and Martinique and French Guiana
+ 594
+ Fix Line
+
+
+ 340
+ 04
+ gf
+ Guadeloupe and Martinique and French Guiana
+ 594
+ Free
+
+
+ 340
+ 01
+ gf
+ Guadeloupe and Martinique and French Guiana
+ 594
+ Orange
+
+
+ 340
+ 02
+ gf
+ Guadeloupe and Martinique and French Guiana
+ 594
+ SFR
+
+
+ 310
+ 370
+ gu
+ Guam
+ 1671
+ Docomo Pacific
+
+
+ 310
+ 470
+ gu
+ Guam
+ 1671
+ Docomo Pacific
+
+
+ 310
+ 299
+ gu
+ Guam
+ 1671
+ Failed Calls
+
+
+ 310
+ 999
+ gu
+ Guam
+ 1671
+ Fix Line
+
+
+ 310
+ 140
+ gu
+ Guam
+ 1671
+ GTA
+
+
+ 310
+ 110
+ gu
+ Guam
+ 1671
+ IT&E
+
+
+ 704
+ 01
+ gt
+ Guatemala
+ 502
+ Claro
+
+
+ 704
+ 299
+ gt
+ Guatemala
+ 502
+ Failed Calls
+
+
+ 704
+ 999
+ gt
+ Guatemala
+ 502
+ Fix Line
+
+
+ 704
+ 03
+ gt
+ Guatemala
+ 502
+ Movistar
+
+
+ 704
+ 02
+ gt
+ Guatemala
+ 502
+ Tigo
+
+
+ 611
+ 05
+ gn
+ Guinea
+ 224
+ Cellcom
+
+
+ 611
+ 299
+ gn
+ Guinea
+ 224
+ Failed Calls
+
+
+ 611
+ 999
+ gn
+ Guinea
+ 224
+ Fix Line
+
+
+ 611
+ 04
+ gn
+ Guinea
+ 224
+ MTN
+
+
+ 611
+ 01
+ gn
+ Guinea
+ 224
+ Orange
+
+
+ 632
+ 299
+ gw
+ Guinea-Bissau
+ 245
+ Failed Calls
+
+
+ 632
+ 999
+ gw
+ Guinea-Bissau
+ 245
+ Fix Line
+
+
+ 632
+ 01
+ gw
+ Guinea-Bissau
+ 245
+ Guinetel
+
+
+ 632
+ 02
+ gw
+ Guinea-Bissau
+ 245
+ MTN
+
+
+ 632
+ 03
+ gw
+ Guinea-Bissau
+ 245
+ Orange
+
+
+ 738
+ 02
+ gy
+ Guyana
+ 592
+ Cellink
+
+
+ 738
+ 01
+ gy
+ Guyana
+ 592
+ Digicel
+
+
+ 738
+ 299
+ gy
+ Guyana
+ 592
+ Failed Calls
+
+
+ 738
+ 999
+ gy
+ Guyana
+ 592
+ Fix Line
+
+
+ 372
+ 02
+ ht
+ Haiti
+ 509
+ Digicel
+
+
+ 372
+ 299
+ ht
+ Haiti
+ 509
+ Failed Calls
+
+
+ 372
+ 999
+ ht
+ Haiti
+ 509
+ Fix Line
+
+
+ 372
+ 03
+ ht
+ Haiti
+ 509
+ Natcom
+
+
+ 708
+ 01
+ hn
+ Honduras
+ 504
+ Claro
+
+
+ 708
+ 001
+ hn
+ Honduras
+ 504
+ Claro
+
+
+ 708
+ 299
+ hn
+ Honduras
+ 504
+ Failed Calls
+
+
+ 708
+ 999
+ hn
+ Honduras
+ 504
+ Fix Line
+
+
+ 708
+ 030
+ hn
+ Honduras
+ 504
+ HonduTel
+
+
+ 708
+ 30
+ hn
+ Honduras
+ 504
+ HonduTel
+
+
+ 708
+ 02
+ hn
+ Honduras
+ 504
+ Tigo
+
+
+ 708
+ 002
+ hn
+ Honduras
+ 504
+ Tigo
+
+
+ 454
+ 14
+ hk
+ Hong Kong
+ 852
+ 3
+
+
+ 454
+ 05
+ hk
+ Hong Kong
+ 852
+ 3
+
+
+ 454
+ 04
+ hk
+ Hong Kong
+ 852
+ 3
+
+
+ 454
+ 03
+ hk
+ Hong Kong
+ 852
+ 3
+
+
+ 454
+ 13
+ hk
+ Hong Kong
+ 852
+ China Mobile
+
+
+ 454
+ 12
+ hk
+ Hong Kong
+ 852
+ China Mobile
+
+
+ 454
+ 30
+ hk
+ Hong Kong
+ 852
+ China Mobile
+
+
+ 454
+ 32
+ hk
+ Hong Kong
+ 852
+ HKBN
+
+
+ 454
+ 07
+ hk
+ Hong Kong
+ 852
+ China Unicom
+
+
+ 454
+ 11
+ hk
+ Hong Kong
+ 852
+ CHKTL
+
+
+ 454
+ 01
+ hk
+ Hong Kong
+ 852
+ Citic
+
+
+ 454
+ 31
+ hk
+ Hong Kong
+ 852
+ CTExcel
+
+
+ 454
+ 36
+ hk
+ Hong Kong
+ 852
+ Eascotel
+
+
+ 454
+ 999
+ hk
+ Hong Kong
+ 852
+ Fix Line
+
+
+ 454
+ 393
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 27
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 397
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 392
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 25
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 396
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 391
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 395
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 390
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 28
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 26
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 394
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 398
+ hk
+ Hong Kong
+ 852
+ Government
+
+
+ 454
+ 24
+ hk
+ Hong Kong
+ 852
+ Multibyte
+
+
+ 454
+ 15
+ hk
+ Hong Kong
+ 852
+ SmarTone
+
+
+ 454
+ 17
+ hk
+ Hong Kong
+ 852
+ SmarTone
+
+
+ 454
+ 06
+ hk
+ Hong Kong
+ 852
+ SmarTone
+
+
+ 454
+ 02
+ hk
+ Hong Kong
+ 852
+ SUN Mobile / CSL
+
+
+ 454
+ 00
+ hk
+ Hong Kong
+ 852
+ SUN Mobile / CSL
+
+
+ 454
+ 10
+ hk
+ Hong Kong
+ 852
+ SUN Mobile / CSL
+
+
+ 454
+ 16
+ hk
+ Hong Kong
+ 852
+ SUN Mobile / CSL
+
+
+ 454
+ 20
+ hk
+ Hong Kong
+ 852
+ SUN Mobile / CSL
+
+
+ 454
+ 18
+ hk
+ Hong Kong
+ 852
+ SUN Mobile / CSL
+
+
+ 454
+ 19
+ hk
+ Hong Kong
+ 852
+ SUN Mobile / CSL
+
+
+ 454
+ 08
+ hk
+ Hong Kong
+ 852
+ Tru
+
+
+ 454
+ 35
+ hk
+ Hong Kong
+ 852
+ Webbing
+
+
+ 216
+ 299
+ hu
+ Hungary
+ 36
+ Antenna
+
+
+ 216
+ 03
+ hu
+ Hungary
+ 36
+ Digi
+
+
+ 216
+ 999
+ hu
+ Hungary
+ 36
+ Fix line
+
+
+ 216
+ 299
+ hu
+ Hungary
+ 36
+ Invitech
+
+
+ 216
+ 299
+ hu
+ Hungary
+ 36
+ Mobil4
+
+
+ 216
+ 02
+ hu
+ Hungary
+ 36
+ MVM NET
+
+
+ 216
+ 299
+ hu
+ Hungary
+ 36
+ Netfone
+
+
+ 216
+ 299
+ hu
+ Hungary
+ 36
+ TARR
+
+
+ 216
+ 30
+ hu
+ Hungary
+ 36
+ Telekom
+
+
+ 216
+ 01
+ hu
+ Hungary
+ 36
+ Telenor
+
+
+ 216
+ 299
+ hu
+ Hungary
+ 36
+ Vidanet
+
+
+ 216
+ 71
+ hu
+ Hungary
+ 36
+ Vodafone
+
+
+ 216
+ 70
+ hu
+ Hungary
+ 36
+ Vodafone
+
+
+ 274
+ 299
+ is
+ Iceland
+ 354
+ Failed Calls
+
+
+ 274
+ 999
+ is
+ Iceland
+ 354
+ Fix Line
+
+
+ 274
+ 11
+ is
+ Iceland
+ 354
+ NOVA
+
+
+ 274
+ 31
+ is
+ Iceland
+ 354
+ Siminn
+
+
+ 274
+ 08
+ is
+ Iceland
+ 354
+ Siminn
+
+
+ 274
+ 01
+ is
+ Iceland
+ 354
+ Siminn
+
+
+ 274
+ 16
+ is
+ Iceland
+ 354
+ Tismi
+
+
+ 274
+ 04
+ is
+ Iceland
+ 354
+ Viking Wireless
+
+
+ 274
+ 12
+ is
+ Iceland
+ 354
+ Vodafone
+
+
+ 274
+ 03
+ is
+ Iceland
+ 354
+ Vodafone
+
+
+ 274
+ 02
+ is
+ Iceland
+ 354
+ Vodafone
+
+
+ 404
+ 91
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 33
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 42
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 29
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 25
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 41
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 28
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 37
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 35
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 17
+ in
+ India
+ 91
+ Aircel
+
+
+ 404
+ 16
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 95
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 70
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 10
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 94
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 98
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 06
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 93
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 49
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 97
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 03
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 92
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 31
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 96
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 02
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 90
+ in
+ India
+ 91
+ Airtel
+
+
+ 404
+ 55
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 73
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 34
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 62
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 77
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 54
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 72
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 59
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 76
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 81
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 53
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 71
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 58
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 75
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 80
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 51
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 66
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 57
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 74
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 38
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 64
+ in
+ India
+ 91
+ BSNL Mobile
+
+
+ 404
+ 69
+ in
+ India
+ 91
+ Dolphin
+
+
+ 404
+ 299
+ in
+ India
+ 91
+ Failed Calls
+
+
+ 404
+ 999
+ in
+ India
+ 91
+ Fix Line
+
+
+ 404
+ 68
+ in
+ India
+ 91
+ Garuda
+
+
+ 404
+ 89
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 22
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 849
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 04
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 78
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 87
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 19
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 848
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 56
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 853
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 14
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 846
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 44
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 852
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 12
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 845
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 24
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 850
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 07
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 82
+ in
+ India
+ 91
+ Idea
+
+
+ 404
+ 869
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 860
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 865
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 857
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 870
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 861
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 854
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 874
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 866
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 871
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 862
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 855
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 867
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 858
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 872
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 863
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 868
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 859
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 873
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 864
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 856
+ in
+ India
+ 91
+ Jio
+
+
+ 404
+ 21
+ in
+ India
+ 91
+ Loop Mobile
+
+
+ 404
+ 50
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 52
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 08
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 18
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 67
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 09
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 23
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 83
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 36
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 85
+ in
+ India
+ 91
+ Reliance Mobile
+
+
+ 404
+ 20
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 01
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 46
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 15
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 88
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 43
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 13
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 86
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 30
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 11
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 84
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 27
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 05
+ in
+ India
+ 91
+ Vodafone
+
+
+ 404
+ 60
+ in
+ India
+ 91
+ Vodafone
+
+
+ 510
+ 89
+ id
+ Indonesia
+ 62
+ 3
+
+
+ 510
+ 299
+ id
+ Indonesia
+ 62
+ Failed Calls
+
+
+ 510
+ 999
+ id
+ Indonesia
+ 62
+ Fix Line
+
+
+ 510
+ 01
+ id
+ Indonesia
+ 62
+ Indosat Ooredoo
+
+
+ 510
+ 62
+ id
+ Indonesia
+ 62
+ Indosat Ooredoo
+
+
+ 510
+ 21
+ id
+ Indonesia
+ 62
+ Indosat Ooredoo
+
+
+ 510
+ 27
+ id
+ Indonesia
+ 62
+ Net1
+
+
+ 510
+ 99
+ id
+ Indonesia
+ 62
+ Smartfren
+
+
+ 510
+ 09
+ id
+ Indonesia
+ 62
+ Smartfren
+
+
+ 510
+ 28
+ id
+ Indonesia
+ 62
+ Smartfren
+
+
+ 510
+ 10
+ id
+ Indonesia
+ 62
+ Telkomsel
+
+
+ 510
+ 20
+ id
+ Indonesia
+ 62
+ Telkomsel
+
+
+ 510
+ 08
+ id
+ Indonesia
+ 62
+ XL
+
+
+ 510
+ 11
+ id
+ Indonesia
+ 62
+ XL
+
+
+ 901
+ 67
+ n/a
+ International Networks
+ 882
+ 1NCE
+
+
+ 901
+ 76
+ n/a
+ International Networks
+ 882
+ A1
+
+
+ 901
+ 14
+ n/a
+ International Networks
+ 882
+ AeroMobile
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Afinna One
+
+
+ 901
+ 81
+ n/a
+ International Networks
+ 882
+ Airnity
+
+
+ 901
+ 82
+ n/a
+ International Networks
+ 882
+ AnyNet
+
+
+ 901
+ 24
+ n/a
+ International Networks
+ 882
+ Bandwidth
+
+
+ 901
+ 55
+ n/a
+ International Networks
+ 882
+ Beezz
+
+
+ 901
+ 58
+ n/a
+ International Networks
+ 882
+ BICS
+
+
+ 901
+ 70
+ n/a
+ International Networks
+ 882
+ Bubbletone
+
+
+ 901
+ 18
+ n/a
+ International Networks
+ 882
+ Cingular Wireless Network
+
+
+ 901
+ 16
+ n/a
+ International Networks
+ 882
+ Cisco Jasper
+
+
+ 901
+ 48
+ n/a
+ International Networks
+ 882
+ Com4 Sweden
+
+
+ 901
+ 73
+ n/a
+ International Networks
+ 882
+ Cubic
+
+
+ 901
+ 42
+ n/a
+ International Networks
+ 882
+ DCN Hub
+
+
+ 901
+ 40
+ n/a
+ International Networks
+ 882
+ Deutsche Telekom
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ DIDWW
+
+
+ 901
+ 50
+ n/a
+ International Networks
+ 882
+ EchoStar Mobile
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Ellipsat
+
+
+ 901
+ 43
+ n/a
+ International Networks
+ 882
+ EMnify
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ EMSAT
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Failed Calls
+
+
+ 901
+ 999
+ n/a
+ International Networks
+ 882
+ Fix Line
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Global Access Services
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Globalstar
+
+
+ 901
+ 13
+ n/a
+ International Networks
+ 882
+ GSM.AQ
+
+
+ 901
+ 22
+ n/a
+ International Networks
+ 882
+ i-lincc
+
+
+ 901
+ 11
+ n/a
+ International Networks
+ 882
+ Inmarsat
+
+
+ 901
+ 20
+ n/a
+ International Networks
+ 882
+ Intermatica
+
+
+ 901
+ 03
+ n/a
+ International Networks
+ 882
+ Iridium
+
+
+ 901
+ 69
+ n/a
+ International Networks
+ 882
+ Legos
+
+
+ 901
+ 66
+ n/a
+ International Networks
+ 882
+ Limitless
+
+
+ 901
+ 52
+ n/a
+ International Networks
+ 882
+ Manx Telecom
+
+
+ 901
+ 19
+ n/a
+ International Networks
+ 882
+ Maritime Roaming Service
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ MCNtelecom
+
+
+ 901
+ 12
+ n/a
+ International Networks
+ 882
+ MCP
+
+
+ 901
+ 59
+ n/a
+ International Networks
+ 882
+ MessageBird
+
+
+ 901
+ 27
+ n/a
+ International Networks
+ 882
+ Monaco Telecom
+
+
+ 901
+ 84
+ n/a
+ International Networks
+ 882
+ Movistar
+
+
+ 901
+ 38
+ n/a
+ International Networks
+ 882
+ MTT
+
+
+ 901
+ 39
+ n/a
+ International Networks
+ 882
+ MTX Connect
+
+
+ 901
+ 17
+ n/a
+ International Networks
+ 882
+ Navitas Telecom
+
+
+ 901
+ 79
+ n/a
+ International Networks
+ 882
+ Nokia
+
+
+ 901
+ 85
+ n/a
+ International Networks
+ 882
+ O2
+
+
+ 901
+ 15
+ n/a
+ International Networks
+ 882
+ OnAir
+
+
+ 901
+ 41
+ n/a
+ International Networks
+ 882
+ One Network
+
+
+ 901
+ 47
+ n/a
+ International Networks
+ 882
+ Ooredoo
+
+
+ 901
+ 31
+ n/a
+ International Networks
+ 882
+ Orange
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Oration Technologies
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Phonegroup
+
+
+ 901
+ 65
+ n/a
+ International Networks
+ 882
+ Plintron
+
+
+ 901
+ 75
+ n/a
+ International Networks
+ 882
+ Pod
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ republic wireless
+
+
+ 901
+ 57
+ n/a
+ International Networks
+ 882
+ SAP
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Sipme
+
+
+ 901
+ 33
+ n/a
+ International Networks
+ 882
+ SMART
+
+
+ 901
+ 78
+ n/a
+ International Networks
+ 882
+ Sparkle
+
+
+ 901
+ 64
+ n/a
+ International Networks
+ 882
+ Syniverse
+
+
+ 901
+ 72
+ n/a
+ International Networks
+ 882
+ Tele2
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Telecom26
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Telekom Malaysia
+
+
+ 901
+ 29
+ n/a
+ International Networks
+ 882
+ Telenor Connexion
+
+
+ 901
+ 05
+ n/a
+ International Networks
+ 882
+ Thuraya RMSS
+
+
+ 901
+ 37
+ n/a
+ International Networks
+ 882
+ Transatel
+
+
+ 901
+ 62
+ n/a
+ International Networks
+ 882
+ Twilio
+
+
+ 901
+ 34
+ n/a
+ International Networks
+ 882
+ tyntec
+
+
+ 901
+ 51
+ n/a
+ International Networks
+ 882
+ VisionNG
+
+
+ 901
+ 21
+ n/a
+ International Networks
+ 882
+ Wins
+
+
+ 901
+ 299
+ n/a
+ International Networks
+ 882
+ Zain
+
+
+ 432
+ 299
+ ir
+ Iran
+ 98
+ Anarestan
+
+
+ 432
+ 299
+ ir
+ Iran
+ 98
+ ApTel
+
+
+ 432
+ 299
+ ir
+ Iran
+ 98
+ Arian Tel
+
+
+ 432
+ 299
+ ir
+ Iran
+ 98
+ Failed Calls
+
+
+ 432
+ 999
+ ir
+ Iran
+ 98
+ Fix Line
+
+
+ 432
+ 299
+ ir
+ Iran
+ 98
+ LotusTel
+
+
+ 432
+ 11
+ ir
+ Iran
+ 98
+ MCI
+
+
+ 432
+ 19
+ ir
+ Iran
+ 98
+ MTCE
+
+
+ 432
+ 35
+ ir
+ Iran
+ 98
+ MTN IranCell
+
+
+ 432
+ 20
+ ir
+ Iran
+ 98
+ RighTel
+
+
+ 432
+ 01
+ ir
+ Iran
+ 98
+ SamanTel
+
+
+ 432
+ 08
+ ir
+ Iran
+ 98
+ Shatel Mobile
+
+
+ 432
+ 32
+ ir
+ Iran
+ 98
+ Taliya
+
+
+ 432
+ 14
+ ir
+ Iran
+ 98
+ Telekish
+
+
+ 418
+ 05
+ iq
+ Iraq
+ 964
+ Asia Cell
+
+
+ 418
+ 299
+ iq
+ Iraq
+ 964
+ Failed Calls
+
+
+ 418
+ 999
+ iq
+ Iraq
+ 964
+ Fix Line
+
+
+ 418
+ 40
+ iq
+ Iraq
+ 964
+ Korek
+
+
+ 418
+ 45
+ iq
+ Iraq
+ 964
+ Mobitel
+
+
+ 418
+ 20
+ iq
+ Iraq
+ 964
+ Zain
+
+
+ 418
+ 30
+ iq
+ Iraq
+ 964
+ Zain
+
+
+ 272
+ 05
+ ie
+ Ireland
+ 353
+ 3
+
+
+ 272
+ 02
+ ie
+ Ireland
+ 353
+ 3
+
+
+ 272
+ 17
+ ie
+ Ireland
+ 353
+ 3
+
+
+ 272
+ 299
+ ie
+ Ireland
+ 353
+ BT
+
+
+ 272
+ 299
+ ie
+ Ireland
+ 353
+ Cubic Telecom
+
+
+ 272
+ 299
+ ie
+ Ireland
+ 353
+ Failed Calls
+
+
+ 272
+ 999
+ ie
+ Ireland
+ 353
+ Fix Line
+
+
+ 272
+ 13
+ ie
+ Ireland
+ 353
+ Lycamobile
+
+
+ 272
+ 07
+ ie
+ Ireland
+ 353
+ Meteor
+
+
+ 272
+ 08
+ ie
+ Ireland
+ 353
+ Meteor
+
+
+ 272
+ 03
+ ie
+ Ireland
+ 353
+ Meteor
+
+
+ 272
+ 299
+ ie
+ Ireland
+ 353
+ Net Feasa
+
+
+ 272
+ 299
+ ie
+ Ireland
+ 353
+ OGCIO
+
+
+ 272
+ 11
+ ie
+ Ireland
+ 353
+ Tesco Mobile
+
+
+ 272
+ 15
+ ie
+ Ireland
+ 353
+ Virgin Media
+
+
+ 272
+ 01
+ ie
+ Ireland
+ 353
+ Vodafone
+
+
+ 425
+ 19
+ il
+ Israel
+ 972
+ 019 Mobile
+
+
+ 425
+ 299
+ il
+ Israel
+ 972
+ Annatel Mobile
+
+
+ 425
+ 23
+ il
+ Israel
+ 972
+ Beezz
+
+
+ 425
+ 299
+ il
+ Israel
+ 972
+ Bynet
+
+
+ 425
+ 299
+ il
+ Israel
+ 972
+ Cellact
+
+
+ 425
+ 02
+ il
+ Israel
+ 972
+ Cellcom
+
+
+ 425
+ 299
+ il
+ Israel
+ 972
+ Failed Calls
+
+
+ 425
+ 999
+ il
+ Israel
+ 972
+ Fix Line
+
+
+ 425
+ 08
+ il
+ Israel
+ 972
+ Golan Telecom
+
+
+ 425
+ 15
+ il
+ Israel
+ 972
+ Home Cellular
+
+
+ 425
+ 77
+ il
+ Israel
+ 972
+ Hot Mobile
+
+
+ 425
+ 07
+ il
+ Israel
+ 972
+ Hot Mobile
+
+
+ 425
+ 13
+ il
+ Israel
+ 972
+ Ituran
+
+
+ 425
+ 22
+ il
+ Israel
+ 972
+ Maskyoo
+
+
+ 425
+ 01
+ il
+ Israel
+ 972
+ Orange
+
+
+ 425
+ 12
+ il
+ Israel
+ 972
+ Pelephone
+
+
+ 425
+ 03
+ il
+ Israel
+ 972
+ Pelephone
+
+
+ 425
+ 16
+ il
+ Israel
+ 972
+ Rami Levy Communications
+
+
+ 425
+ 299
+ il
+ Israel
+ 972
+ T2T
+
+
+ 425
+ 17
+ il
+ Israel
+ 972
+ Von waves
+
+
+ 425
+ 09
+ il
+ Israel
+ 972
+ We4G
+
+
+ 425
+ 14
+ il
+ Israel
+ 972
+ YouPhone
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ 1Mobile
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ A-Tono
+
+
+ 222
+ 40
+ it
+ Italy
+ 39
+ Agile Telecom
+
+
+ 222
+ 34
+ it
+ Italy
+ 39
+ BT mobile
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Esendex
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Compatel
+
+
+ 222
+ 53
+ it
+ Italy
+ 39
+ CoopVoce
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Daily Telecom Mobile
+
+
+ 222
+ 36
+ it
+ Italy
+ 39
+ Digi
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ DireQ
+
+
+ 222
+ 42
+ it
+ Italy
+ 39
+ Enel
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Failed Calls
+
+
+ 222
+ 08
+ it
+ Italy
+ 39
+ Fastweb
+
+
+ 222
+ 999
+ it
+ Italy
+ 39
+ Fix Line
+
+
+ 222
+ 99
+ it
+ Italy
+ 39
+ WindTre / Hi3G
+
+
+ 222
+ 50
+ it
+ Italy
+ 39
+ Iliad
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Kaleyra
+
+
+ 222
+ 39
+ it
+ Italy
+ 39
+ SMS.it / LINK Mobility
+
+
+ 222
+ 35
+ it
+ Italy
+ 39
+ Lycamobile
+
+
+ 222
+ 07
+ it
+ Italy
+ 39
+ Noverca Italia
+
+
+ 222
+ 54
+ it
+ Italy
+ 39
+ Plintron
+
+
+ 222
+ 33
+ it
+ Italy
+ 39
+ Poste Mobile
+
+
+ 222
+ 999
+ it
+ Italy
+ 39
+ Premium Numbers
+
+
+ 222
+ 58
+ it
+ Italy
+ 39
+ rdcom
+
+
+ 222
+ 30
+ it
+ Italy
+ 39
+ RFI
+
+
+ 222
+ 56
+ it
+ Italy
+ 39
+ spusu
+
+
+ 222
+ 48
+ it
+ Italy
+ 39
+ Telecom Italia Mobile
+
+
+ 222
+ 43
+ it
+ Italy
+ 39
+ Telecom Italia Mobile
+
+
+ 222
+ 01
+ it
+ Italy
+ 39
+ TIM
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Sparkle
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Tiscali
+
+
+ 222
+ 44
+ it
+ Italy
+ 39
+ Mundio
+
+
+ 222
+ 51
+ it
+ Italy
+ 39
+ ho.
+
+
+ 222
+ 49
+ it
+ Italy
+ 39
+ Vianova Mobile
+
+
+ 222
+ 06
+ it
+ Italy
+ 39
+ Vodafone
+
+
+ 222
+ 10
+ it
+ Italy
+ 39
+ Vodafone
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Vola
+
+
+ 222
+ 299
+ it
+ Italy
+ 39
+ Webcom
+
+
+ 222
+ 88
+ it
+ Italy
+ 39
+ WindTre / WIND
+
+
+ 222
+ 37
+ it
+ Italy
+ 39
+ WindTre / Hi3G
+
+
+ 612
+ 299
+ ci
+ Ivory Coast
+ 225
+ Failed Calls
+
+
+ 612
+ 999
+ ci
+ Ivory Coast
+ 225
+ Fix Line
+
+
+ 612
+ 02
+ ci
+ Ivory Coast
+ 225
+ Moov
+
+
+ 612
+ 05
+ ci
+ Ivory Coast
+ 225
+ MTN
+
+
+ 612
+ 03
+ ci
+ Ivory Coast
+ 225
+ Orange
+
+
+ 338
+ 050
+ jm
+ Jamaica
+ 1876
+ Digicel
+
+
+ 338
+ 299
+ jm
+ Jamaica
+ 1876
+ Failed Calls
+
+
+ 338
+ 999
+ jm
+ Jamaica
+ 1876
+ Fix Line
+
+
+ 338
+ 180
+ jm
+ Jamaica
+ 1876
+ Flow
+
+
+ 338
+ 110
+ jm
+ Jamaica
+ 1876
+ Flow
+
+
+ 440
+ 299
+ jp
+ Japan
+ 81
+ Failed Calls
+
+
+ 440
+ 999
+ jp
+ Japan
+ 81
+ Fix Line
+
+
+ 440
+ 74
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 52
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 75
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 53
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 71
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 76
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 54
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 72
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 50
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 73
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 51
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 70
+ jp
+ Japan
+ 81
+ KDDI
+
+
+ 440
+ 10
+ jp
+ Japan
+ 81
+ NTT DoCoMo
+
+
+ 440
+ 78
+ jp
+ Japan
+ 81
+ Okinawa Cellular
+
+
+ 440
+ 11
+ jp
+ Japan
+ 81
+ Rakuten Mobile
+
+
+ 440
+ 01
+ jp
+ Japan
+ 81
+ SoftBank
+
+
+ 440
+ 00
+ jp
+ Japan
+ 81
+ SoftBank
+
+
+ 440
+ 20
+ jp
+ Japan
+ 81
+ SoftBank
+
+
+ 440
+ 21
+ jp
+ Japan
+ 81
+ SoftBank
+
+
+ 440
+ 05
+ jp
+ Japan
+ 81
+ SoftBank
+
+
+ 416
+ 299
+ jo
+ Jordan
+ 962
+ Failed Calls
+
+
+ 416
+ 999
+ jo
+ Jordan
+ 962
+ Fix Line
+
+
+ 416
+ 77
+ jo
+ Jordan
+ 962
+ Orange
+
+
+ 416
+ 03
+ jo
+ Jordan
+ 962
+ Umniah
+
+
+ 416
+ 01
+ jo
+ Jordan
+ 962
+ Zain
+
+
+ 401
+ 07
+ kz
+ Kazakhstan
+ 7
+ Altel
+
+
+ 401
+ 299
+ kz
+ Kazakhstan
+ 7
+ Arna
+
+
+ 401
+ 01
+ kz
+ Kazakhstan
+ 7
+ Beeline
+
+
+ 401
+ 299
+ kz
+ Kazakhstan
+ 7
+ Failed Call(s)
+
+
+ 401
+ 999
+ kz
+ Kazakhstan
+ 7
+ Fix Line
+
+
+ 401
+ 08
+ kz
+ Kazakhstan
+ 7
+ Kazakhstan Online
+
+
+ 401
+ 02
+ kz
+ Kazakhstan
+ 7
+ Kcell
+
+
+ 401
+ 77
+ kz
+ Kazakhstan
+ 7
+ Tele2
+
+
+ 639
+ 03
+ ke
+ Kenya
+ 254
+ Airtel
+
+
+ 639
+ 05
+ ke
+ Kenya
+ 254
+ Airtel
+
+
+ 639
+ 299
+ ke
+ Kenya
+ 254
+ eferio
+
+
+ 639
+ 299
+ ke
+ Kenya
+ 254
+ Failed Calls
+
+
+ 639
+ 06
+ ke
+ Kenya
+ 254
+ Finserve Africa
+
+
+ 639
+ 999
+ ke
+ Kenya
+ 254
+ Fix Line
+
+
+ 639
+ 09
+ ke
+ Kenya
+ 254
+ Homeland Media
+
+
+ 639
+ 12
+ ke
+ Kenya
+ 254
+ Infura
+
+
+ 639
+ 11
+ ke
+ Kenya
+ 254
+ Jambo Telcoms
+
+
+ 639
+ 10
+ ke
+ Kenya
+ 254
+ Jamii Telecommunications
+
+
+ 639
+ 04
+ ke
+ Kenya
+ 254
+ Mobile Pay
+
+
+ 639
+ 02
+ ke
+ Kenya
+ 254
+ Safaricom
+
+
+ 639
+ 01
+ ke
+ Kenya
+ 254
+ Safaricom
+
+
+ 639
+ 07
+ ke
+ Kenya
+ 254
+ Telkom
+
+
+ 545
+ 299
+ ki
+ Kiribati
+ 686
+ Failed Calls
+
+
+ 545
+ 999
+ ki
+ Kiribati
+ 686
+ Fix Line
+
+
+ 545
+ 01
+ ki
+ Kiribati
+ 686
+ FrigateNet
+
+
+ 545
+ 09
+ ki
+ Kiribati
+ 686
+ FrigateNet
+
+
+ 545
+ 299
+ ki
+ Kiribati
+ 686
+ Ocean Link
+
+
+ 221
+ 07
+ xk
+ Kosovo
+ 383
+ D3 mobile
+
+
+ 221
+ 299
+ xk
+ Kosovo
+ 383
+ Failed Calls
+
+
+ 221
+ 999
+ xk
+ Kosovo
+ 383
+ Fix Line
+
+
+ 221
+ 02
+ xk
+ Kosovo
+ 383
+ IPKO
+
+
+ 221
+ 299
+ xk
+ Kosovo
+ 383
+ MTS
+
+
+ 221
+ 01
+ xk
+ Kosovo
+ 383
+ Vala
+
+
+ 419
+ 299
+ kw
+ Kuwait
+ 965
+ Failed Calls
+
+
+ 419
+ 999
+ kw
+ Kuwait
+ 965
+ Fix Line
+
+
+ 419
+ 03
+ kw
+ Kuwait
+ 965
+ Ooredoo
+
+
+ 419
+ 299
+ kw
+ Kuwait
+ 965
+ Virgin Mobile
+
+
+ 419
+ 04
+ kw
+ Kuwait
+ 965
+ Viva
+
+
+ 419
+ 02
+ kw
+ Kuwait
+ 965
+ Zain
+
+
+ 437
+ 01
+ kg
+ Kyrgyzstan
+ 996
+ Beeline
+
+
+ 437
+ 299
+ kg
+ Kyrgyzstan
+ 996
+ Failed Calls
+
+
+ 437
+ 999
+ kg
+ Kyrgyzstan
+ 996
+ Fix Line
+
+
+ 437
+ 02
+ kg
+ Kyrgyzstan
+ 996
+ KT Mobile
+
+
+ 437
+ 05
+ kg
+ Kyrgyzstan
+ 996
+ MegaCom
+
+
+ 437
+ 09
+ kg
+ Kyrgyzstan
+ 996
+ O!
+
+
+ 437
+ 10
+ kg
+ Kyrgyzstan
+ 996
+ Saima
+
+
+ 437
+ 03
+ kg
+ Kyrgyzstan
+ 996
+ Sem Mobile
+
+
+ 457
+ 08
+ la
+ Laos
+ 856
+ Beeline
+
+
+ 457
+ 02
+ la
+ Laos
+ 856
+ ETL Mobile
+
+
+ 457
+ 299
+ la
+ Laos
+ 856
+ Failed Calls
+
+
+ 457
+ 999
+ la
+ Laos
+ 856
+ Fix Line
+
+
+ 457
+ 01
+ la
+ Laos
+ 856
+ LTC
+
+
+ 457
+ 03
+ la
+ Laos
+ 856
+ Unitel
+
+
+ 247
+ 05
+ lv
+ Latvia
+ 371
+ Bite
+
+
+ 247
+ 299
+ lv
+ Latvia
+ 371
+ Failed Calls
+
+
+ 247
+ 999
+ lv
+ Latvia
+ 371
+ Fix Line
+
+
+ 247
+ 10
+ lv
+ Latvia
+ 371
+ LMT
+
+
+ 247
+ 01
+ lv
+ Latvia
+ 371
+ LMT
+
+
+ 247
+ 299
+ lv
+ Latvia
+ 371
+ Premium Numbers
+
+
+ 247
+ 02
+ lv
+ Latvia
+ 371
+ Tele2
+
+
+ 247
+ 04
+ lv
+ Latvia
+ 371
+ Tet
+
+
+ 247
+ 03
+ lv
+ Latvia
+ 371
+ TRIATEL
+
+
+ 247
+ 08
+ lv
+ Latvia
+ 371
+ VENTA Mobile
+
+
+ 247
+ 09
+ lv
+ Latvia
+ 371
+ XOmobile
+
+
+ 415
+ 01
+ lb
+ Lebanon
+ 961
+ Alfa
+
+
+ 415
+ 299
+ lb
+ Lebanon
+ 961
+ Failed Calls
+
+
+ 415
+ 999
+ lb
+ Lebanon
+ 961
+ Fix Line
+
+
+ 415
+ 03
+ lb
+ Lebanon
+ 961
+ Touch
+
+
+ 651
+ 02
+ ls
+ Lesotho
+ 266
+ Econet
+
+
+ 651
+ 299
+ ls
+ Lesotho
+ 266
+ Failed Calls
+
+
+ 651
+ 999
+ ls
+ Lesotho
+ 266
+ Fix Line
+
+
+ 651
+ 01
+ ls
+ Lesotho
+ 266
+ Vodacom
+
+
+ 618
+ 299
+ lr
+ Liberia
+ 231
+ Failed Calls
+
+
+ 618
+ 999
+ lr
+ Liberia
+ 231
+ Fix Line
+
+
+ 618
+ 01
+ lr
+ Liberia
+ 231
+ MTN / Lonestar
+
+
+ 618
+ 04
+ lr
+ Liberia
+ 231
+ Novafone
+
+
+ 618
+ 07
+ lr
+ Liberia
+ 231
+ Orange
+
+
+ 606
+ 01
+ ly
+ Libya
+ 218
+ Al-Madar
+
+
+ 606
+ 299
+ ly
+ Libya
+ 218
+ Failed Calls
+
+
+ 606
+ 999
+ ly
+ Libya
+ 218
+ Fix Line
+
+
+ 606
+ 00
+ ly
+ Libya
+ 218
+ Libyana
+
+
+ 606
+ 03
+ ly
+ Libya
+ 218
+ LibyaPhone Mobile
+
+
+ 295
+ 02
+ li
+ Liechtenstein
+ 423
+ 7acht
+
+
+ 295
+ 06
+ li
+ Liechtenstein
+ 423
+ CUBIC
+
+
+ 295
+ 299
+ li
+ Liechtenstein
+ 423
+ Datamobile
+
+
+ 295
+ 299
+ li
+ Liechtenstein
+ 423
+ Dimoco
+
+
+ 295
+ 09
+ li
+ Liechtenstein
+ 423
+ EMnify
+
+
+ 295
+ 299
+ li
+ Liechtenstein
+ 423
+ Failed Calls
+
+
+ 295
+ 999
+ li
+ Liechtenstein
+ 423
+ Fix Line
+
+
+ 246
+ 999
+ li
+ Liechtenstein
+ 423
+ Fix Line
+
+
+ 295
+ 01
+ li
+ Liechtenstein
+ 423
+ FL GSM
+
+
+ 295
+ 05
+ li
+ Liechtenstein
+ 423
+ FL1
+
+
+ 295
+ 299
+ li
+ Liechtenstein
+ 423
+ SORACOM
+
+
+ 295
+ 299
+ li
+ Liechtenstein
+ 423
+ Telna
+
+
+ 246
+ 02
+ lt
+ Lithuania
+ 370
+ Bite
+
+
+ 246
+ 299
+ lt
+ Lithuania
+ 370
+ Failed Calls
+
+
+ 246
+ 05
+ lt
+ Lithuania
+ 370
+ LTG
+
+
+ 246
+ 06
+ lt
+ Lithuania
+ 370
+ Mediafon
+
+
+ 246
+ 299
+ lt
+ Lithuania
+ 370
+ SkyCall
+
+
+ 246
+ 03
+ lt
+ Lithuania
+ 370
+ Tele2
+
+
+ 246
+ 299
+ lt
+ Lithuania
+ 370
+ Teletel
+
+
+ 246
+ 01
+ lt
+ Lithuania
+ 370
+ Telia
+
+
+ 270
+ 10
+ lu
+ Luxembourg
+ 352
+ Blue Communications
+
+
+ 270
+ 299
+ lu
+ Luxembourg
+ 352
+ Bouygues Telecom
+
+
+ 270
+ 81
+ lu
+ Luxembourg
+ 352
+ e-LUX Mobile
+
+
+ 270
+ 299
+ lu
+ Luxembourg
+ 352
+ Eltrona
+
+
+ 270
+ 299
+ lu
+ Luxembourg
+ 352
+ Failed Calls
+
+
+ 270
+ 999
+ lu
+ Luxembourg
+ 352
+ Fix Line
+
+
+ 270
+ 05
+ lu
+ Luxembourg
+ 352
+ Luxembourg Online
+
+
+ 270
+ 299
+ lu
+ Luxembourg
+ 352
+ MTX Connect
+
+
+ 270
+ 99
+ lu
+ Luxembourg
+ 352
+ Orange
+
+
+ 270
+ 01
+ lu
+ Luxembourg
+ 352
+ Post
+
+
+ 270
+ 77
+ lu
+ Luxembourg
+ 352
+ Tango
+
+
+ 455
+ 05
+ mo
+ Macao
+ 853
+ 3
+
+
+ 455
+ 03
+ mo
+ Macao
+ 853
+ 3
+
+
+ 455
+ 07
+ mo
+ Macao
+ 853
+ China Telecom
+
+
+ 455
+ 02
+ mo
+ Macao
+ 853
+ China Telecom
+
+
+ 455
+ 04
+ mo
+ Macao
+ 853
+ CTM
+
+
+ 455
+ 01
+ mo
+ Macao
+ 853
+ CTM
+
+
+ 455
+ 299
+ mo
+ Macao
+ 853
+ Failed Calls
+
+
+ 455
+ 999
+ mo
+ Macao
+ 853
+ Fix Line
+
+
+ 455
+ 06
+ mo
+ Macao
+ 853
+ SmarTone
+
+
+ 455
+ 00
+ mo
+ Macao
+ 853
+ SmarTone
+
+
+ 646
+ 01
+ mg
+ Madagascar
+ 261
+ Airtel
+
+
+ 646
+ 299
+ mg
+ Madagascar
+ 261
+ Bip
+
+
+ 646
+ 299
+ mg
+ Madagascar
+ 261
+ Failed Calls
+
+
+ 646
+ 999
+ mg
+ Madagascar
+ 261
+ Fix Line
+
+
+ 646
+ 02
+ mg
+ Madagascar
+ 261
+ Orange
+
+
+ 646
+ 04
+ mg
+ Madagascar
+ 261
+ Telma
+
+
+ 650
+ 10
+ mw
+ Malawi
+ 265
+ Airtel
+
+
+ 650
+ 299
+ mw
+ Malawi
+ 265
+ Failed Calls
+
+
+ 650
+ 999
+ mw
+ Malawi
+ 265
+ Fix Line
+
+
+ 650
+ 01
+ mw
+ Malawi
+ 265
+ TNM
+
+
+ 502
+ 156
+ my
+ Malaysia
+ 60
+ Altel Communications
+
+
+ 502
+ 11
+ my
+ Malaysia
+ 60
+ Telekom Malaysia
+
+
+ 502
+ 14
+ my
+ Malaysia
+ 60
+ Telekom Malaysia
+
+
+ 502
+ 19
+ my
+ Malaysia
+ 60
+ Celcom
+
+
+ 502
+ 13
+ my
+ Malaysia
+ 60
+ Celcom
+
+
+ 502
+ 10
+ my
+ Malaysia
+ 60
+ DiGi
+
+
+ 502
+ 16
+ my
+ Malaysia
+ 60
+ DiGi
+
+
+ 502
+ 299
+ my
+ Malaysia
+ 60
+ Failed Calls
+
+
+ 502
+ 999
+ my
+ Malaysia
+ 60
+ Fix Line
+
+
+ 502
+ 299
+ my
+ Malaysia
+ 60
+ MKN
+
+
+ 502
+ 17
+ my
+ Malaysia
+ 60
+ Maxis
+
+
+ 502
+ 12
+ my
+ Malaysia
+ 60
+ Maxis
+
+
+ 502
+ 299
+ my
+ Malaysia
+ 60
+ Maxis Broadband
+
+
+ 502
+ 299
+ my
+ Malaysia
+ 60
+ OCESB
+
+
+ 502
+ 299
+ my
+ Malaysia
+ 60
+ REDtone Mobile
+
+
+ 502
+ 299
+ my
+ Malaysia
+ 60
+ REDtone
+
+
+ 502
+ 299
+ my
+ Malaysia
+ 60
+ TT dotCom
+
+
+ 502
+ 150
+ my
+ Malaysia
+ 60
+ Tune Talk
+
+
+ 502
+ 18
+ my
+ Malaysia
+ 60
+ U Mobile
+
+
+ 502
+ 153
+ my
+ Malaysia
+ 60
+ Webe Digital
+
+
+ 502
+ 195
+ my
+ Malaysia
+ 60
+ XOX Com
+
+
+ 502
+ 299
+ my
+ Malaysia
+ 60
+ Y-Max
+
+
+ 502
+ 152
+ my
+ Malaysia
+ 60
+ Yes
+
+
+ 472
+ 01
+ mv
+ Maldives
+ 960
+ DhiMobile
+
+
+ 472
+ 299
+ mv
+ Maldives
+ 960
+ Failed Calls
+
+
+ 472
+ 999
+ mv
+ Maldives
+ 960
+ Fix Line
+
+
+ 472
+ 02
+ mv
+ Maldives
+ 960
+ Ooredoo
+
+
+ 610
+ 299
+ ml
+ Mali
+ 223
+ Failed Calls
+
+
+ 610
+ 999
+ ml
+ Mali
+ 223
+ Fix Line
+
+
+ 610
+ 01
+ ml
+ Mali
+ 223
+ Malitel
+
+
+ 610
+ 02
+ ml
+ Mali
+ 223
+ Orange
+
+
+ 610
+ 03
+ ml
+ Mali
+ 223
+ Telecel
+
+
+ 278
+ 01
+ mt
+ Malta
+ 356
+ Vodafone
+
+
+ 278
+ 299
+ mt
+ Malta
+ 356
+ Failed Calls
+
+
+ 278
+ 999
+ mt
+ Malta
+ 356
+ Fix Line
+
+
+ 278
+ 21
+ mt
+ Malta
+ 356
+ GO Mobile
+
+
+ 278
+ 30
+ mt
+ Malta
+ 356
+ GO Mobile
+
+
+ 278
+ 77
+ mt
+ Malta
+ 356
+ Melita
+
+
+ 551
+ 299
+ mh
+ Marshall Islands
+ 692
+ Failed Calls
+
+
+ 551
+ 999
+ mh
+ Marshall Islands
+ 692
+ Fix Line
+
+
+ 551
+ 299
+ mh
+ Marshall Islands
+ 692
+ MINTA
+
+
+ 609
+ 02
+ mr
+ Mauritania
+ 222
+ Chinguitel
+
+
+ 609
+ 299
+ mr
+ Mauritania
+ 222
+ Failed Calls
+
+
+ 609
+ 999
+ mr
+ Mauritania
+ 222
+ Fix Line
+
+
+ 609
+ 01
+ mr
+ Mauritania
+ 222
+ Mattel
+
+
+ 609
+ 10
+ mr
+ Mauritania
+ 222
+ Mauritel
+
+
+ 617
+ 02
+ mu
+ Mauritius
+ 230
+ Chili
+
+
+ 617
+ 03
+ mu
+ Mauritius
+ 230
+ Chili
+
+
+ 617
+ 10
+ mu
+ Mauritius
+ 230
+ Emtel
+
+
+ 617
+ 299
+ mu
+ Mauritius
+ 230
+ Failed Calls
+
+
+ 617
+ 999
+ mu
+ Mauritius
+ 230
+ Fix Line
+
+
+ 617
+ 01
+ mu
+ Mauritius
+ 230
+ my.t mobile
+
+
+ 647
+ 299
+ yt
+ Mayotte
+ 262
+ Failed Calls
+
+
+ 647
+ 999
+ yt
+ Mayotte
+ 262
+ Fix Line
+
+
+ 647
+ 01
+ yt
+ Mayotte
+ 262
+ Maore Mobile
+
+
+ 647
+ 10
+ yt
+ Mayotte
+ 262
+ SFR
+
+
+ 334
+ 140
+ mx
+ Mexico
+ 52
+ ALTAN Redes
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ Altcel
+
+
+ 334
+ 050
+ mx
+ Mexico
+ 52
+ AT&T / IUSACell
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ Failed Call(s)
+
+
+ 334
+ 999
+ mx
+ Mexico
+ 52
+ Fix Line
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ FreedomPop
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ Ibo Cell
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ Maxcom
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ MegaTel
+
+
+ 334
+ 03
+ mx
+ Mexico
+ 52
+ Movistar
+
+
+ 334
+ 030
+ mx
+ Mexico
+ 52
+ Movistar
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ NEUS Mobile
+
+
+ 334
+ 01
+ mx
+ Mexico
+ 52
+ Nextel
+
+
+ 334
+ 010
+ mx
+ Mexico
+ 52
+ Nextel
+
+
+ 334
+ 90
+ mx
+ Mexico
+ 52
+ Nextel
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ QBOcel
+
+
+ 334
+ 060
+ mx
+ Mexico
+ 52
+ SAI PCS
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ Servitron
+
+
+ 334
+ 02
+ mx
+ Mexico
+ 52
+ Telcel
+
+
+ 334
+ 020
+ mx
+ Mexico
+ 52
+ Telcel
+
+
+ 334
+ 299
+ mx
+ Mexico
+ 52
+ Telecomunicaciones 360
+
+
+ 334
+ 80
+ mx
+ Mexico
+ 52
+ Unefon
+
+
+ 334
+ 70
+ mx
+ Mexico
+ 52
+ Unefon
+
+
+ 550
+ 299
+ fm
+ Micronesia
+ 691
+ Failed Calls
+
+
+ 550
+ 999
+ fm
+ Micronesia
+ 691
+ Fix Line
+
+
+ 550
+ 01
+ fm
+ Micronesia
+ 691
+ FSMTCeLL
+
+
+ 259
+ 299
+ md
+ Moldova
+ 373
+ Failed Calls
+
+
+ 259
+ 02
+ md
+ Moldova
+ 373
+ Moldcell
+
+
+ 259
+ 01
+ md
+ Moldova
+ 373
+ Orange
+
+
+ 259
+ 03
+ md
+ Moldova
+ 373
+ Unite
+
+
+ 259
+ 99
+ md
+ Moldova
+ 373
+ Unite
+
+
+ 259
+ 05
+ md
+ Moldova
+ 373
+ Unite
+
+
+ 212
+ 299
+ mc
+ Monaco
+ 377
+ Failed Calls
+
+
+ 212
+ 999
+ mc
+ Monaco
+ 377
+ Fix Line
+
+
+ 212
+ 10
+ mc
+ Monaco
+ 377
+ Monaco Telecom
+
+
+ 212
+ 01
+ mc
+ Monaco
+ 377
+ Monaco Telecom
+
+
+ 428
+ 299
+ mn
+ Mongolia
+ 976
+ Failed Calls
+
+
+ 428
+ 999
+ mn
+ Mongolia
+ 976
+ Fix Line
+
+
+ 428
+ 98
+ mn
+ Mongolia
+ 976
+ G-Mobile
+
+
+ 428
+ 99
+ mn
+ Mongolia
+ 976
+ Mobicom
+
+
+ 428
+ 00
+ mn
+ Mongolia
+ 976
+ Skytel
+
+
+ 428
+ 88
+ mn
+ Mongolia
+ 976
+ Unitel
+
+
+ 297
+ 299
+ me
+ Montenegro
+ 382
+ Failed Calls
+
+
+ 297
+ 999
+ me
+ Montenegro
+ 382
+ Fix Line
+
+
+ 297
+ 03
+ me
+ Montenegro
+ 382
+ Mtel
+
+
+ 297
+ 02
+ me
+ Montenegro
+ 382
+ Telekom / T-mobile
+
+
+ 297
+ 01
+ me
+ Montenegro
+ 382
+ Telenor
+
+
+ 354
+ 299
+ ms
+ Montserrat
+ 1664
+ Digicel
+
+
+ 354
+ 299
+ ms
+ Montserrat
+ 1664
+ Failed Calls
+
+
+ 354
+ 999
+ ms
+ Montserrat
+ 1664
+ Fix Line
+
+
+ 354
+ 860
+ ms
+ Montserrat
+ 1664
+ Flow
+
+
+ 604
+ 299
+ ma
+ Morocco
+ 212
+ Failed Calls
+
+
+ 604
+ 999
+ ma
+ Morocco
+ 212
+ Fix Line
+
+
+ 604
+ 01
+ ma
+ Morocco
+ 212
+ IAM
+
+
+ 604
+ 05
+ ma
+ Morocco
+ 212
+ inwi
+
+
+ 604
+ 02
+ ma
+ Morocco
+ 212
+ inwi
+
+
+ 604
+ 00
+ ma
+ Morocco
+ 212
+ Orange
+
+
+ 643
+ 299
+ mz
+ Mozambique
+ 258
+ Failed Calls
+
+
+ 643
+ 999
+ mz
+ Mozambique
+ 258
+ Fix Line
+
+
+ 643
+ 03
+ mz
+ Mozambique
+ 258
+ Movitel
+
+
+ 643
+ 01
+ mz
+ Mozambique
+ 258
+ TMCEL
+
+
+ 643
+ 04
+ mz
+ Mozambique
+ 258
+ Vodacom
+
+
+ 414
+ 999
+ mm
+ Myanmar
+ 95
+ Failed Calls
+
+
+ 414
+ 999
+ mm
+ Myanmar
+ 95
+ Fix Line
+
+
+ 414
+ 03
+ mm
+ Myanmar
+ 95
+ MecTel
+
+
+ 414
+ 00
+ mm
+ Myanmar
+ 95
+ MPT
+
+
+ 414
+ 01
+ mm
+ Myanmar
+ 95
+ MPT
+
+
+ 414
+ 09
+ mm
+ Myanmar
+ 95
+ Mytel
+
+
+ 414
+ 05
+ mm
+ Myanmar
+ 95
+ Ooredoo
+
+
+ 414
+ 06
+ mm
+ Myanmar
+ 95
+ Telenor
+
+
+ 649
+ 299
+ na
+ Namibia
+ 264
+ Demshi
+
+
+ 649
+ 299
+ na
+ Namibia
+ 264
+ Failed Calls
+
+
+ 649
+ 999
+ na
+ Namibia
+ 264
+ Fix Line
+
+
+ 649
+ 01
+ na
+ Namibia
+ 264
+ MTC
+
+
+ 649
+ 03
+ na
+ Namibia
+ 264
+ TN Mobile
+
+
+ 536
+ 02
+ nr
+ Nauru
+ 674
+ Digicel
+
+
+ 536
+ 299
+ nr
+ Nauru
+ 674
+ Failed Calls
+
+
+ 536
+ 999
+ nr
+ Nauru
+ 674
+ Fix Line
+
+
+ 429
+ 299
+ np
+ Nepal
+ 977
+ CG Telecom
+
+
+ 429
+ 299
+ np
+ Nepal
+ 977
+ Failed Calls
+
+
+ 429
+ 999
+ np
+ Nepal
+ 977
+ Fix Line
+
+
+ 429
+ 03
+ np
+ Nepal
+ 977
+ Hello Nepal
+
+
+ 429
+ 02
+ np
+ Nepal
+ 977
+ Ncell
+
+
+ 429
+ 01
+ np
+ Nepal
+ 977
+ Nepal Telecom
+
+
+ 429
+ 04
+ np
+ Nepal
+ 977
+ Smart
+
+
+ 429
+ 00
+ np
+ Nepal
+ 977
+ UTL
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ 88 mobile
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ AGMS
+
+
+ 204
+ 30
+ nl
+ Netherlands
+ 31
+ ASPIDER Solutions
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Belcentrale
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ BodyTrace
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Combird Mobile
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Dean Mobile
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Eazit
+
+
+ 204
+ 05
+ nl
+ Netherlands
+ 31
+ ElephantTalk
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ EziMobile
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Failed Calls
+
+
+ 204
+ 999
+ nl
+ Netherlands
+ 31
+ Fix Line
+
+
+ 204
+ 999
+ nl
+ Netherlands
+ 31
+ Fix Line
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ interactive digital media / IDM
+
+
+ 204
+ 00
+ nl
+ Netherlands
+ 31
+ Intovoice
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ KeenMobile
+
+
+ 204
+ 23
+ nl
+ Netherlands
+ 31
+ KORE
+
+
+ 204
+ 69
+ nl
+ Netherlands
+ 31
+ KPN
+
+
+ 204
+ 12
+ nl
+ Netherlands
+ 31
+ KPN
+
+
+ 204
+ 08
+ nl
+ Netherlands
+ 31
+ KPN
+
+
+ 204
+ 10
+ nl
+ Netherlands
+ 31
+ KPN
+
+
+ 204
+ 27
+ nl
+ Netherlands
+ 31
+ L-mobi
+
+
+ 204
+ 28
+ nl
+ Netherlands
+ 31
+ Lancelot
+
+
+ 204
+ 98
+ nl
+ Netherlands
+ 31
+ Lancelot
+
+
+ 204
+ 09
+ nl
+ Netherlands
+ 31
+ Lycamobile
+
+
+ 204
+ 63
+ nl
+ Netherlands
+ 31
+ MessageBird
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ mGage
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Motto
+
+
+ 204
+ 07
+ nl
+ Netherlands
+ 31
+ Move / Teleena
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Okta8
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Premium Numbers
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Premium Routing
+
+
+ 204
+ 24
+ nl
+ Netherlands
+ 31
+ Private Mobility
+
+
+ 204
+ 21
+ nl
+ Netherlands
+ 31
+ ProRail
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Redworks
+
+
+ 204
+ 26
+ nl
+ Netherlands
+ 31
+ SpeakUp
+
+
+ 204
+ 20
+ nl
+ Netherlands
+ 31
+ T-Mobile
+
+
+ 204
+ 02
+ nl
+ Netherlands
+ 31
+ T-Mobile
+
+
+ 204
+ 16
+ nl
+ Netherlands
+ 31
+ T-Mobile
+
+
+ 204
+ 29
+ nl
+ Netherlands
+ 31
+ Tismi
+
+
+ 204
+ 33
+ nl
+ Netherlands
+ 31
+ Truphone
+
+
+ 204
+ 299
+ nl
+ Netherlands
+ 31
+ Vectone Mobile
+
+
+ 204
+ 04
+ nl
+ Netherlands
+ 31
+ Vodafone
+
+
+ 204
+ 03
+ nl
+ Netherlands
+ 31
+ Voiceworks Mobile
+
+
+ 204
+ 15
+ nl
+ Netherlands
+ 31
+ Ziggo
+
+
+ 204
+ 18
+ nl
+ Netherlands
+ 31
+ Ziggo Services
+
+
+ 362
+ 91
+ an
+ Netherlands Antilles
+ 599
+ Chippie
+
+
+ 362
+ 69
+ an
+ Netherlands Antilles
+ 599
+ Digicel
+
+
+ 362
+ 299
+ an
+ Netherlands Antilles
+ 599
+ Failed Calls
+
+
+ 362
+ 999
+ an
+ Netherlands Antilles
+ 599
+ Fix Line
+
+
+ 362
+ 299
+ an
+ Netherlands Antilles
+ 599
+ Premium Numbers
+
+
+ 362
+ 51
+ an
+ Netherlands Antilles
+ 599
+ TelCell
+
+
+ 546
+ 299
+ nc
+ New Caledonia
+ 687
+ Failed Calls
+
+
+ 546
+ 999
+ nc
+ New Caledonia
+ 687
+ Fix Line
+
+
+ 546
+ 01
+ nc
+ New Caledonia
+ 687
+ Mobilis
+
+
+ 530
+ 24
+ nz
+ New Zealand
+ 64
+ 2degrees
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ Compass Mobile
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ Devoli
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ Failed Calls
+
+
+ 530
+ 999
+ nz
+ New Zealand
+ 64
+ Fix Line
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ LinkTel
+
+
+ 530
+ 06
+ nz
+ New Zealand
+ 64
+ Skinny Mobile
+
+
+ 530
+ 05
+ nz
+ New Zealand
+ 64
+ Spark Mobile
+
+
+ 530
+ 02
+ nz
+ New Zealand
+ 64
+ Spark Mobile
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ Symbio
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ Vocus
+
+
+ 530
+ 01
+ nz
+ New Zealand
+ 64
+ Vodafone
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ Voxbone / Bandwidth
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ Voyager Internet
+
+
+ 530
+ 299
+ nz
+ New Zealand
+ 64
+ WXC
+
+
+ 710
+ 73
+ ni
+ Nicaragua
+ 505
+ Claro
+
+
+ 710
+ 21
+ ni
+ Nicaragua
+ 505
+ Claro
+
+
+ 710
+ 299
+ ni
+ Nicaragua
+ 505
+ CooTel
+
+
+ 710
+ 299
+ ni
+ Nicaragua
+ 505
+ Failed Calls
+
+
+ 710
+ 999
+ ni
+ Nicaragua
+ 505
+ Fix Line
+
+
+ 710
+ 30
+ ni
+ Nicaragua
+ 505
+ Movistar
+
+
+ 614
+ 02
+ ne
+ Niger
+ 227
+ Airtel
+
+
+ 614
+ 299
+ ne
+ Niger
+ 227
+ Failed Calls
+
+
+ 614
+ 999
+ ne
+ Niger
+ 227
+ Fix Line
+
+
+ 614
+ 03
+ ne
+ Niger
+ 227
+ Moov
+
+
+ 614
+ 01
+ ne
+ Niger
+ 227
+ Niger Telecoms
+
+
+ 614
+ 04
+ ne
+ Niger
+ 227
+ Orange
+
+
+ 621
+ 60
+ ng
+ Nigeria
+ 234
+ 9mobile
+
+
+ 621
+ 20
+ ng
+ Nigeria
+ 234
+ Airtel
+
+
+ 621
+ 299
+ ng
+ Nigeria
+ 234
+ Alpha Technologies
+
+
+ 621
+ 299
+ ng
+ Nigeria
+ 234
+ Failed Calls
+
+
+ 621
+ 999
+ ng
+ Nigeria
+ 234
+ Fix Line
+
+
+ 621
+ 50
+ ng
+ Nigeria
+ 234
+ Glo Mobile
+
+
+ 621
+ 30
+ ng
+ Nigeria
+ 234
+ MTN
+
+
+ 621
+ 40
+ ng
+ Nigeria
+ 234
+ ntel
+
+
+ 621
+ 27
+ ng
+ Nigeria
+ 234
+ Smile
+
+
+ 621
+ 299
+ ng
+ Nigeria
+ 234
+ Zodafones
+
+
+ 555
+ 299
+ nu
+ Niue
+ 683
+ Failed Calls
+
+
+ 555
+ 999
+ nu
+ Niue
+ 683
+ Fix Line
+
+
+ 555
+ 01
+ nu
+ Niue
+ 683
+ Telecom Niue
+
+
+ 467
+ 299
+ kp
+ North Korea
+ 850
+ Failed Calls
+
+
+ 467
+ 999
+ kp
+ North Korea
+ 850
+ Fix Line
+
+
+ 467
+ 299
+ kp
+ North Korea
+ 850
+ Kangsung Net
+
+
+ 467
+ 192
+ kp
+ North Korea
+ 850
+ Koryolink
+
+
+ 294
+ 03
+ mk
+ North Macedonia
+ 389
+ A1
+
+
+ 294
+ 02
+ mk
+ North Macedonia
+ 389
+ A1
+
+
+ 294
+ 299
+ mk
+ North Macedonia
+ 389
+ Failed Calls
+
+
+ 259
+ 999
+ mk
+ North Macedonia
+ 389
+ Fix Line
+
+
+ 294
+ 999
+ mk
+ North Macedonia
+ 389
+ Fix Line
+
+
+ 294
+ 299
+ mk
+ North Macedonia
+ 389
+ LATRON
+
+
+ 294
+ 04
+ mk
+ North Macedonia
+ 389
+ Lycamobile
+
+
+ 294
+ 11
+ mk
+ North Macedonia
+ 389
+ Mobik
+
+
+ 294
+ 299
+ mk
+ North Macedonia
+ 389
+ Telekabel
+
+
+ 294
+ 01
+ mk
+ North Macedonia
+ 389
+ Telekom
+
+
+ 534
+ 299
+ mp
+ Northern Mariana Islands
+ 1670
+ Failed Calls
+
+
+ 534
+ 999
+ mp
+ Northern Mariana Islands
+ 1670
+ Fix Line
+
+
+ 242
+ 22
+ no
+ Norway
+ 47
+ Altibox Mobil
+
+
+ 242
+ 20
+ no
+ Norway
+ 47
+ BANE NOR
+
+
+ 242
+ 21
+ no
+ Norway
+ 47
+ BANE NOR
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ bigblu
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ Chilimobil
+
+
+ 242
+ 09
+ no
+ Norway
+ 47
+ Com4
+
+
+ 242
+ 15
+ no
+ Norway
+ 47
+ eRate
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ Failed Calls
+
+
+ 242
+ 999
+ no
+ Norway
+ 47
+ Fix Line
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ GlobalConnect
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+
+
+ 242
+ 14
+ no
+ Norway
+ 47
+ ICE
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ intility
+
+
+ 242
+ 16
+ no
+ Norway
+ 47
+ Iristel
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ JetNett
+
+
+ 242
+ 23
+ no
+ Norway
+ 47
+ Lycamobile
+
+
+ 242
+ 05
+ no
+ Norway
+ 47
+ Network Norway
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ NextGenTel
+
+
+ 242
+ 10
+ no
+ Norway
+ 47
+ Nkom
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ Nodnett
+
+
+ 242
+ 06
+ no
+ Norway
+ 47
+ ICE
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ Puzzel
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ Sierra Wireless
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ Svea
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ Telavox
+
+
+ 242
+ 12
+ no
+ Norway
+ 47
+ Telenor
+
+
+ 242
+ 01
+ no
+ Norway
+ 47
+ Telenor
+
+
+ 242
+ 08
+ no
+ Norway
+ 47
+ Telia / NetCom
+
+
+ 242
+ 02
+ no
+ Norway
+ 47
+ Telia / NetCom
+
+
+ 242
+ 299
+ no
+ Norway
+ 47
+ unifon
+
+
+ 422
+ 299
+ om
+ Oman
+ 968
+ Failed Calls
+
+
+ 422
+ 999
+ om
+ Oman
+ 968
+ Fix Line
+
+
+ 422
+ 02
+ om
+ Oman
+ 968
+ Omantel Mobile
+
+
+ 422
+ 03
+ om
+ Oman
+ 968
+ Ooredoo / Nawras
+
+
+ 410
+ 299
+ pk
+ Pakistan
+ 92
+ Failed Calls
+
+
+ 410
+ 999
+ pk
+ Pakistan
+ 92
+ Fix Line
+
+
+ 410
+ 07
+ pk
+ Pakistan
+ 92
+ Jazz
+
+
+ 410
+ 01
+ pk
+ Pakistan
+ 92
+ Jazz
+
+
+ 410
+ 05
+ pk
+ Pakistan
+ 92
+ SCOM
+
+
+ 410
+ 06
+ pk
+ Pakistan
+ 92
+ Telenor
+
+
+ 410
+ 03
+ pk
+ Pakistan
+ 92
+ Ufone
+
+
+ 410
+ 299
+ pk
+ Pakistan
+ 92
+ Warid
+
+
+ 410
+ 04
+ pk
+ Pakistan
+ 92
+ Zong
+
+
+ 552
+ 299
+ pw
+ Palau
+ 680
+ Failed Calls
+
+
+ 552
+ 999
+ pw
+ Palau
+ 680
+ Fix Line
+
+
+ 552
+ 99
+ pw
+ Palau
+ 680
+ Palau Mobile
+
+
+ 552
+ 01
+ pw
+ Palau
+ 680
+ PalauCel
+
+
+ 552
+ 02
+ pw
+ Palau
+ 680
+ PT Waves
+
+
+ 425
+ 299
+ ps
+ Palestinian Territory
+ 970
+ Failed Calls
+
+
+ 425
+ 999
+ ps
+ Palestinian Territory
+ 970
+ Fix Line
+
+
+ 425
+ 05
+ ps
+ Palestinian Territory
+ 970
+ Jawwal
+
+
+ 425
+ 06
+ ps
+ Palestinian Territory
+ 970
+ Ooredoo
+
+
+ 714
+ 01
+ pa
+ Panama
+ 507
+ +Movil
+
+
+ 714
+ 03
+ pa
+ Panama
+ 507
+ Claro
+
+
+ 714
+ 04
+ pa
+ Panama
+ 507
+ Digicel
+
+
+ 714
+ 299
+ pa
+ Panama
+ 507
+ Failed Calls
+
+
+ 714
+ 999
+ pa
+ Panama
+ 507
+ Fix Line
+
+
+ 714
+ 020
+ pa
+ Panama
+ 507
+ Movistar
+
+
+ 714
+ 02
+ pa
+ Panama
+ 507
+ Movistar
+
+
+ 537
+ 01
+ pg
+ Papua New Guinea
+ 675
+ BeMobile Vodafone
+
+
+ 537
+ 02
+ pg
+ Papua New Guinea
+ 675
+ Citifon
+
+
+ 537
+ 03
+ pg
+ Papua New Guinea
+ 675
+ Digicel
+
+
+ 537
+ 299
+ pg
+ Papua New Guinea
+ 675
+ DIGIVOIP
+
+
+ 537
+ 299
+ pg
+ Papua New Guinea
+ 675
+ Failed Calls
+
+
+ 537
+ 999
+ pg
+ Papua New Guinea
+ 675
+ Fix Line
+
+
+ 744
+ 02
+ py
+ Paraguay
+ 595
+ Claro
+
+
+ 744
+ 299
+ py
+ Paraguay
+ 595
+ Failed Calls
+
+
+ 744
+ 999
+ py
+ Paraguay
+ 595
+ Fix Line
+
+
+ 744
+ 03
+ py
+ Paraguay
+ 595
+ Personal
+
+
+ 744
+ 04
+ py
+ Paraguay
+ 595
+ Tigo
+
+
+ 744
+ 01
+ py
+ Paraguay
+ 595
+ VOX
+
+
+ 716
+ 70
+ pe
+ Peru
+ 51
+ Claro
+
+
+ 716
+ 20
+ pe
+ Peru
+ 51
+ Claro
+
+
+ 716
+ 10
+ pe
+ Peru
+ 51
+ Claro
+
+
+ 716
+ 299
+ pe
+ Peru
+ 51
+ Dolphin
+
+
+ 716
+ 17
+ pe
+ Peru
+ 51
+ Entel
+
+
+ 716
+ 299
+ pe
+ Peru
+ 51
+ Failed Calls
+
+
+ 716
+ 999
+ pe
+ Peru
+ 51
+ Fix Line
+
+
+ 716
+ 06
+ pe
+ Peru
+ 51
+ Movistar
+
+
+ 716
+ 07
+ pe
+ Peru
+ 51
+ Entel
+
+
+ 716
+ 30
+ pe
+ Peru
+ 51
+ Tuyo
+
+
+ 716
+ 15
+ pe
+ Peru
+ 51
+ Viettel
+
+
+ 515
+ 66
+ ph
+ Philippines
+ 63
+ DITO
+
+
+ 515
+ 299
+ ph
+ Philippines
+ 63
+ Failed Calls
+
+
+ 515
+ 999
+ ph
+ Philippines
+ 63
+ Fix Line
+
+
+ 515
+ 01
+ ph
+ Philippines
+ 63
+ Globe
+
+
+ 515
+ 02
+ ph
+ Philippines
+ 63
+ Globe
+
+
+ 515
+ 03
+ ph
+ Philippines
+ 63
+ Smart
+
+
+ 515
+ 05
+ ph
+ Philippines
+ 63
+ Sun Cellular
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ 3S
+
+
+ 260
+ 15
+ pl
+ Poland
+ 48
+ Aero2
+
+
+ 260
+ 04
+ pl
+ Poland
+ 48
+ Aero2
+
+
+ 260
+ 17
+ pl
+ Poland
+ 48
+ Aero2
+
+
+ 260
+ 16
+ pl
+ Poland
+ 48
+ Aero2
+
+
+ 260
+ 48
+ pl
+ Poland
+ 48
+ Agile Telecom
+
+
+ 260
+ 18
+ pl
+ Poland
+ 48
+ AMD Telecom
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Benemen
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ BSG
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Caritas Laczy
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Cludo
+
+
+ 260
+ 32
+ pl
+ Poland
+ 48
+ Compatel
+
+
+ 260
+ 12
+ pl
+ Poland
+ 48
+ Cyfrowy Polsat
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ e-Telko
+
+
+ 260
+ 41
+ pl
+ Poland
+ 48
+ EZ Mobile
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Failed Calls
+
+
+ 260
+ 999
+ pl
+ Poland
+ 48
+ Fix Line
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ I.M. Consulting
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Inea
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ IZZI
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ JMDI J. Maleszko
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Klucz Mobile
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ lajt mobile
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ LoVo
+
+
+ 260
+ 09
+ pl
+ Poland
+ 48
+ Lycamobile
+
+
+ 260
+ 49
+ pl
+ Poland
+ 48
+ Messagebird
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Metro Mobile
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Mobile Vikings
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Mobiledata
+
+
+ 260
+ 42
+ pl
+ Poland
+ 48
+ MobiWeb
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Moja GSM
+
+
+ 260
+ 13
+ pl
+ Poland
+ 48
+ Move
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ multiMOBILE
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Nasza Wizja
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ NAU Mobile
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ nc+ Mobile
+
+
+ 260
+ 19
+ pl
+ Poland
+ 48
+ NetBalt
+
+
+ 260
+ 07
+ pl
+ Poland
+ 48
+ Netia
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Next Mobile
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ NIMBOW
+
+
+ 260
+ 27
+ pl
+ Poland
+ 48
+ Ntel Solutions
+
+
+ 260
+ 05
+ pl
+ Poland
+ 48
+ Orange
+
+
+ 260
+ 03
+ pl
+ Poland
+ 48
+ Orange
+
+
+ 260
+ 35
+ pl
+ Poland
+ 48
+ PKP
+
+
+ 260
+ 06
+ pl
+ Poland
+ 48
+ Play
+
+
+ 260
+ 98
+ pl
+ Poland
+ 48
+ Play
+
+
+ 260
+ 11
+ pl
+ Poland
+ 48
+ Plus
+
+
+ 260
+ 01
+ pl
+ Poland
+ 48
+ Plus
+
+
+ 260
+ 97
+ pl
+ Poland
+ 48
+ Politechnika Lodzka Uczelniane
+
+
+ 260
+ 90
+ pl
+ Poland
+ 48
+ Polska Spolka Gazownictwa
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Polvoice
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Pomagacz
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Premium Mobile
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Premium Numbers
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ SAT FILM
+
+
+ 260
+ 14
+ pl
+ Poland
+ 48
+ Move
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ SGT
+
+
+ 260
+ 47
+ pl
+ Poland
+ 48
+ SMSHIGHWAY
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Softelnet
+
+
+ 260
+ 34
+ pl
+ Poland
+ 48
+ T-Mobile
+
+
+ 260
+ 02
+ pl
+ Poland
+ 48
+ T-Mobile
+
+
+ 260
+ 10
+ pl
+ Poland
+ 48
+ T-Mobile
+
+
+ 260
+ 14
+ pl
+ Poland
+ 48
+ Telco Leaders
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Tele GO
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ TeleCube
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Telenabler
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ TELGAM
+
+
+ 260
+ 20
+ pl
+ Poland
+ 48
+ Tismi
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ TOYAmobilna
+
+
+ 260
+ 22
+ pl
+ Poland
+ 48
+ Twilio
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ UPC
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Vectra
+
+
+ 260
+ 45
+ pl
+ Poland
+ 48
+ Virgin Mobile
+
+
+ 260
+ 45
+ pl
+ Poland
+ 48
+ Virgin Mobile
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ Vonage
+
+
+ 260
+ 39
+ pl
+ Poland
+ 48
+ Voxbone / Bandwidth
+
+
+ 260
+ 299
+ pl
+ Poland
+ 48
+ w naszej Rodzinie
+
+
+ 268
+ 299
+ pt
+ Portugal
+ 351
+ Failed Calls
+
+
+ 268
+ 999
+ pt
+ Portugal
+ 351
+ Fix Line
+
+
+ 268
+ 04
+ pt
+ Portugal
+ 351
+ Lycamobile
+
+
+ 268
+ 08
+ pt
+ Portugal
+ 351
+ MEO
+
+
+ 268
+ 06
+ pt
+ Portugal
+ 351
+ MEO
+
+
+ 268
+ 80
+ pt
+ Portugal
+ 351
+ MEO
+
+
+ 268
+ 03
+ pt
+ Portugal
+ 351
+ NOS
+
+
+ 268
+ 93
+ pt
+ Portugal
+ 351
+ NOS
+
+
+ 268
+ 299
+ pt
+ Portugal
+ 351
+ NOWO
+
+
+ 268
+ 299
+ pt
+ Portugal
+ 351
+ Oni
+
+
+ 410
+ 299
+ pt
+ Portugal
+ 351
+ Premium Numbers
+
+
+ 268
+ 01
+ pt
+ Portugal
+ 351
+ Vodafone
+
+
+ 268
+ 91
+ pt
+ Portugal
+ 351
+ Vodafone
+
+
+ 330
+ 30
+ pr
+ Puerto Rico
+ AT&T Mobility
+
+
+ 330
+ 11
+ pr
+ Puerto Rico
+ Claro
+
+
+ 330
+ 110
+ pr
+ Puerto Rico
+ Claro
+
+
+ 330
+ 299
+ pr
+ Puerto Rico
+ Failed Calls
+
+
+ 330
+ 999
+ pr
+ Puerto Rico
+ Fix Line
+
+
+ 330
+ 490
+ pr
+ Puerto Rico
+ T-Mobile
+
+
+ 427
+ 299
+ qa
+ Qatar
+ 974
+ Failed Calls
+
+
+ 427
+ 999
+ qa
+ Qatar
+ 974
+ Fix Line
+
+
+ 427
+ 01
+ qa
+ Qatar
+ 974
+ Ooredoo
+
+
+ 427
+ 06
+ qa
+ Qatar
+ 974
+ Ooredoo
+
+
+ 427
+ 02
+ qa
+ Qatar
+ 974
+ Vodafone
+
+
+ 647
+ 299
+ re
+ Reunion
+ 262
+ Failed Calls
+
+
+ 647
+ 999
+ re
+ Reunion
+ 262
+ Fix Line
+
+
+ 647
+ 02
+ re
+ Reunion
+ 262
+ Only
+
+
+ 647
+ 03
+ re
+ Reunion
+ 262
+ Only
+
+
+ 647
+ 00
+ re
+ Reunion
+ 262
+ Orange
+
+
+ 647
+ 04
+ re
+ Reunion
+ 262
+ ZEOP Mobile
+
+
+ 226
+ 05
+ ro
+ Romania
+ 40
+ Digi Mobil
+
+
+ 226
+ 299
+ ro
+ Romania
+ 40
+ Failed Calls
+
+
+ 226
+ 999
+ ro
+ Romania
+ 40
+ Fix Line
+
+
+ 226
+ 299
+ ro
+ Romania
+ 40
+ Iristel
+
+
+ 226
+ 16
+ ro
+ Romania
+ 40
+ Lycamobile
+
+
+ 226
+ 10
+ ro
+ Romania
+ 40
+ Orange
+
+
+ 226
+ 03
+ ro
+ Romania
+ 40
+ Telekom
+
+
+ 226
+ 02
+ ro
+ Romania
+ 40
+ Telekom
+
+
+ 226
+ 01
+ ro
+ Romania
+ 40
+ Vodafone
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Antares
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Arktur
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Astran
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ ASVT
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Aurora Telecom
+
+
+ 250
+ 99
+ ru
+ Russia
+ 79
+ Beeline
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Beliton
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ BIT-CENTR
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Center 2M
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Cifra 1
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ CountryCom
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ ECO Networks
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Elemte
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ ER-Telecom
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Failed Calls
+
+
+ 250
+ 999
+ ru
+ Russia
+ 79
+ Fix Line
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Gazprom Telecom
+
+
+ 250
+ 48
+ ru
+ Russia
+ 79
+ Global Telecom
+
+
+ 250
+ 55
+ ru
+ Russia
+ 79
+ Glonass
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ GLONASS MOBILE
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Integral
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Internod
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Intersvyaz-2
+
+
+ 250
+ 34
+ ru
+ Russia
+ 79
+ Krymtelecom
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ KvatroPlus
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Lardex
+
+
+ 250
+ 54
+ ru
+ Russia
+ 79
+ Letai Mobile
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Lycamobile
+
+
+ 250
+ 57
+ ru
+ Russia
+ 79
+ Matrix Mobile
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Media-Market
+
+
+ 250
+ 02
+ ru
+ Russia
+ 79
+ Megafon
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Metro-Pei
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ MGTS
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Miatel
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ MOSTELECOM
+
+
+ 250
+ 35
+ ru
+ Russia
+ 79
+ Motiv
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ MSN Telekom
+
+
+ 250
+ 01
+ ru
+ Russia
+ 79
+ MTS
+
+
+ 250
+ 42
+ ru
+ Russia
+ 79
+ MTT
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ NCI
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ NETBYNET
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ New Mobile Communications
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ OBIT
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Orange Business Services
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ PIN
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Plintron
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Quantech
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ RECONN
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Reteyl Innovatsii
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Sberbank-Telecom
+
+
+ 250
+ 33
+ ru
+ Russia
+ 79
+ SEVTELECOM
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Sim Sim
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Sintonik
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Sky Networks
+
+
+ 250
+ 09
+ ru
+ Russia
+ 79
+ Skylink
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ SkyNet
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Sonet
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Sprint
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Start
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ SunSIM
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Surgutneftegaz
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Svyazresurs-Mobile
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Tander
+
+
+ 250
+ 12
+ ru
+ Russia
+ 79
+ Tele2
+
+
+ 250
+ 20
+ ru
+ Russia
+ 79
+ Tele2
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Tinkoff Mobile
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ TMT
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ TransMobilCom
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ TRASTEL
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ TRN-telecom
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ TTK
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ TTK-Svyaz
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ TVE
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ UnitTelecom
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Unycel
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Vainah Telecom
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ ViKom
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Virgin Connect
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ Voentelecom
+
+
+ 250
+ 77
+ ru
+ Russia
+ 79
+ Glonass
+
+
+ 250
+ 60
+ ru
+ Russia
+ 79
+ Volna Mobile
+
+
+ 250
+ 299
+ ru
+ Russia
+ 79
+ VTB Mobile
+
+
+ 250
+ 32
+ ru
+ Russia
+ 79
+ Win Mobile
+
+
+ 250
+ 11
+ ru
+ Russia
+ 79
+ Yota
+
+
+ 635
+ 13
+ rw
+ Rwanda
+ 250
+ Airtel
+
+
+ 635
+ 299
+ rw
+ Rwanda
+ 250
+ Failed Calls
+
+
+ 635
+ 999
+ rw
+ Rwanda
+ 250
+ Fix Line
+
+
+ 635
+ 10
+ rw
+ Rwanda
+ 250
+ MTN
+
+
+ 658
+ 299
+ sh
+ Saint Helena and Ascension and Tristan da Cunha
+ 290
+ Failed Calls
+
+
+ 658
+ 999
+ sh
+ Saint Helena and Ascension and Tristan da Cunha
+ 290
+ Fix Line
+
+
+ 356
+ 70
+ kn
+ Saint Kitts and Nevis
+ 1869
+ Chippie
+
+
+ 356
+ 070
+ kn
+ Saint Kitts and Nevis
+ 1869
+ Chippie
+
+
+ 356
+ 50
+ kn
+ Saint Kitts and Nevis
+ 1869
+ Digicel
+
+
+ 356
+ 050
+ kn
+ Saint Kitts and Nevis
+ 1869
+ Digicel
+
+
+ 356
+ 299
+ kn
+ Saint Kitts and Nevis
+ 1869
+ Failed Calls
+
+
+ 356
+ 999
+ kn
+ Saint Kitts and Nevis
+ 1869
+ Fix Line
+
+
+ 356
+ 110
+ kn
+ Saint Kitts and Nevis
+ 1869
+ Flow
+
+
+ 356
+ 11
+ kn
+ Saint Kitts and Nevis
+ 1869
+ Flow
+
+
+ 356
+ 299
+ kn
+ Saint Kitts and Nevis
+ 1869
+ The Cable
+
+
+ 358
+ 05
+ lc
+ Saint Lucia
+ 1758
+ Digicel
+
+
+ 358
+ 050
+ lc
+ Saint Lucia
+ 1758
+ Digicel
+
+
+ 358
+ 299
+ lc
+ Saint Lucia
+ 1758
+ Failed Calls
+
+
+ 358
+ 999
+ lc
+ Saint Lucia
+ 1758
+ Fix Line
+
+
+ 358
+ 110
+ lc
+ Saint Lucia
+ 1758
+ Flow
+
+
+ 358
+ 11
+ lc
+ Saint Lucia
+ 1758
+ Flow
+
+
+ 308
+ 01
+ pm
+ Saint Pierre and Miquelon
+ 508
+ Ameris
+
+
+ 308
+ 03
+ pm
+ Saint Pierre and Miquelon
+ 508
+ Ameris
+
+
+ 308
+ 299
+ pm
+ Saint Pierre and Miquelon
+ 508
+ Failed Calls
+
+
+ 308
+ 999
+ pm
+ Saint Pierre and Miquelon
+ 508
+ Fix Line
+
+
+ 308
+ 02
+ pm
+ Saint Pierre and Miquelon
+ 508
+ Globaltel
+
+
+ 360
+ 050
+ vc
+ Saint Vincent and the Grenadines
+ 1784
+ Digicel
+
+
+ 360
+ 299
+ vc
+ Saint Vincent and the Grenadines
+ 1784
+ Failed Calls
+
+
+ 360
+ 999
+ vc
+ Saint Vincent and the Grenadines
+ 1784
+ Fix Line
+
+
+ 360
+ 110
+ vc
+ Saint Vincent and the Grenadines
+ 1784
+ Flow
+
+
+ 549
+ 27
+ ws
+ Samoa
+ 685
+ BlueSky
+
+
+ 549
+ 01
+ ws
+ Samoa
+ 685
+ Digicel
+
+
+ 549
+ 299
+ ws
+ Samoa
+ 685
+ Failed Calls
+
+
+ 549
+ 999
+ ws
+ Samoa
+ 685
+ Fix Line
+
+
+ 292
+ 299
+ sm
+ San Marino
+ 378
+ Failed Calls
+
+
+ 292
+ 999
+ sm
+ San Marino
+ 378
+ Fix Line
+
+
+ 292
+ 01
+ sm
+ San Marino
+ 378
+ Prima
+
+
+ 292
+ 299
+ sm
+ San Marino
+ 378
+ TeleneT
+
+
+ 626
+ 01
+ st
+ Sao Tome and Principe
+ 239
+ CSTmovel
+
+
+ 626
+ 299
+ st
+ Sao Tome and Principe
+ 239
+ Failed Calls
+
+
+ 626
+ 999
+ st
+ Sao Tome and Principe
+ 239
+ Fix Line
+
+
+ 626
+ 02
+ st
+ Sao Tome and Principe
+ 239
+ Unitel
+
+
+ 901
+ 299
+ n/a
+ Satellite Networks
+ 870
+ Failed Calls
+
+
+ 901
+ 999
+ n/a
+ Satellite Networks
+ 870
+ Fix Line
+
+
+ 420
+ 299
+ sa
+ Saudi Arabia
+ 966
+ Failed Calls
+
+
+ 420
+ 999
+ sa
+ Saudi Arabia
+ 966
+ Fix Line
+
+
+ 420
+ 06
+ sa
+ Saudi Arabia
+ 966
+ Lebara Mobile
+
+
+ 420
+ 03
+ sa
+ Saudi Arabia
+ 966
+ Mobily
+
+
+ 420
+ 299
+ sa
+ Saudi Arabia
+ 966
+ Red Bull MOBILE
+
+
+ 420
+ 299
+ sa
+ Saudi Arabia
+ 966
+ Salam
+
+
+ 420
+ 01
+ sa
+ Saudi Arabia
+ 966
+ STC / Al Jawal
+
+
+ 420
+ 05
+ sa
+ Saudi Arabia
+ 966
+ Virgin Mobile
+
+
+ 420
+ 04
+ sa
+ Saudi Arabia
+ 966
+ Zain
+
+
+ 608
+ 299
+ sn
+ Senegal
+ 221
+ 2s Mobile
+
+
+ 608
+ 03
+ sn
+ Senegal
+ 221
+ Expresso
+
+
+ 608
+ 299
+ sn
+ Senegal
+ 221
+ Failed Calls
+
+
+ 608
+ 999
+ sn
+ Senegal
+ 221
+ Fix Line
+
+
+ 608
+ 02
+ sn
+ Senegal
+ 221
+ Free
+
+
+ 608
+ 04
+ sn
+ Senegal
+ 221
+ HAYO
+
+
+ 608
+ 01
+ sn
+ Senegal
+ 221
+ Orange
+
+
+ 608
+ 299
+ sn
+ Senegal
+ 221
+ Promobile
+
+
+ 220
+ 299
+ rs
+ Serbia
+ 381
+ Failed Calls
+
+
+ 220
+ 999
+ rs
+ Serbia
+ 381
+ Fix Line
+
+
+ 220
+ 11
+ rs
+ Serbia
+ 381
+ Globaltel
+
+
+ 220
+ 03
+ rs
+ Serbia
+ 381
+ MTS
+
+
+ 220
+ 01
+ rs
+ Serbia
+ 381
+ Telenor
+
+
+ 220
+ 05
+ rs
+ Serbia
+ 381
+ VIP
+
+
+ 220
+ 20
+ rs
+ Serbia
+ 381
+ VIP
+
+
+ 633
+ 10
+ sc
+ Seychelles
+ 248
+ Airtel
+
+
+ 633
+ 01
+ sc
+ Seychelles
+ 248
+ Cable & Wireless
+
+
+ 633
+ 299
+ sc
+ Seychelles
+ 248
+ Failed Calls
+
+
+ 633
+ 999
+ sc
+ Seychelles
+ 248
+ Fix Line
+
+
+ 633
+ 05
+ sc
+ Seychelles
+ 248
+ Intelvision
+
+
+ 619
+ 03
+ sl
+ Sierra Leone
+ 232
+ Africell
+
+
+ 619
+ 299
+ sl
+ Sierra Leone
+ 232
+ Failed Calls
+
+
+ 619
+ 999
+ sl
+ Sierra Leone
+ 232
+ Fix Line
+
+
+ 619
+ 299
+ sl
+ Sierra Leone
+ 232
+ IPTel
+
+
+ 619
+ 299
+ sl
+ Sierra Leone
+ 232
+ Onlime
+
+
+ 619
+ 01
+ sl
+ Sierra Leone
+ 232
+ Orange
+
+
+ 619
+ 07
+ sl
+ Sierra Leone
+ 232
+ Qcell
+
+
+ 619
+ 299
+ sl
+ Sierra Leone
+ 232
+ SierraTel
+
+
+ 525
+ 09
+ sg
+ Singapore
+ 65
+ Circles.Life
+
+
+ 525
+ 299
+ sg
+ Singapore
+ 65
+ Failed Calls
+
+
+ 525
+ 999
+ sg
+ Singapore
+ 65
+ Fix Line
+
+
+ 525
+ 12
+ sg
+ Singapore
+ 65
+ GRID
+
+
+ 525
+ 11
+ sg
+ Singapore
+ 65
+ M1
+
+
+ 525
+ 03
+ sg
+ Singapore
+ 65
+ M1
+
+
+ 525
+ 299
+ sg
+ Singapore
+ 65
+ MyRepublic
+
+
+ 525
+ 299
+ sg
+ Singapore
+ 65
+ Nexwave
+
+
+ 525
+ 299
+ sg
+ Singapore
+ 65
+ redONE
+
+
+ 525
+ 07
+ sg
+ Singapore
+ 65
+ SingTel
+
+
+ 525
+ 02
+ sg
+ Singapore
+ 65
+ SingTel
+
+
+ 525
+ 01
+ sg
+ Singapore
+ 65
+ SingTel
+
+
+ 525
+ 299
+ sg
+ Singapore
+ 65
+ Smart Pinoy
+
+
+ 525
+ 05
+ sg
+ Singapore
+ 65
+ Starhub
+
+
+ 525
+ 08
+ sg
+ Singapore
+ 65
+ Starhub
+
+
+ 525
+ 06
+ sg
+ Singapore
+ 65
+ Starhub
+
+
+ 525
+ 10
+ sg
+ Singapore
+ 65
+ TPG Telecom
+
+
+ 525
+ 299
+ sg
+ Singapore
+ 65
+ VivoBee
+
+
+ 525
+ 299
+ sg
+ Singapore
+ 65
+ Zero1
+
+
+ 231
+ 299
+ sk
+ Slovakia
+ 421
+ Failed Calls
+
+
+ 231
+ 999
+ sk
+ Slovakia
+ 421
+ Fix Line
+
+
+ 231
+ 06
+ sk
+ Slovakia
+ 421
+ O2
+
+
+ 231
+ 01
+ sk
+ Slovakia
+ 421
+ Orange
+
+
+ 231
+ 07
+ sk
+ Slovakia
+ 421
+ Orange
+
+
+ 231
+ 05
+ sk
+ Slovakia
+ 421
+ Orange
+
+
+ 231
+ 03
+ sk
+ Slovakia
+ 421
+ Swan / 4ka
+
+
+ 231
+ 02
+ sk
+ Slovakia
+ 421
+ Telekom
+
+
+ 231
+ 50
+ sk
+ Slovakia
+ 421
+ Telekom
+
+
+ 231
+ 04
+ sk
+ Slovakia
+ 421
+ Telekom
+
+
+ 231
+ 08
+ sk
+ Slovakia
+ 421
+ Uniphone
+
+
+ 231
+ 299
+ sk
+ Slovakia
+ 421
+ Vonage
+
+
+ 231
+ 99
+ sk
+ Slovakia
+ 421
+ ZSR
+
+
+ 293
+ 40
+ si
+ Slovenia
+ 386
+ A1 / Si.mobil
+
+
+ 293
+ 20
+ si
+ Slovenia
+ 386
+ Compatel
+
+
+ 293
+ 86
+ si
+ Slovenia
+ 386
+ Elektro Gorenjska
+
+
+ 293
+ 299
+ si
+ Slovenia
+ 386
+ Failed Calls
+
+
+ 293
+ 999
+ si
+ Slovenia
+ 386
+ Fix Line
+
+
+ 293
+ 299
+ si
+ Slovenia
+ 386
+ HOT mobil
+
+
+ 293
+ 299
+ si
+ Slovenia
+ 386
+ Me2
+
+
+ 293
+ 41
+ si
+ Slovenia
+ 386
+ Mobitel
+
+
+ 293
+ 299
+ si
+ Slovenia
+ 386
+ Novatel
+
+
+ 293
+ 10
+ si
+ Slovenia
+ 386
+ Slovenske zeleznice
+
+
+ 293
+ 299
+ si
+ Slovenia
+ 386
+ SoftNET
+
+
+ 293
+ 64
+ si
+ Slovenia
+ 386
+ T-2
+
+
+ 293
+ 70
+ si
+ Slovenia
+ 386
+ Telemach / Tusmobil
+
+
+ 540
+ 02
+ sb
+ Solomon Islands
+ 677
+ bemobile
+
+
+ 540
+ 01
+ sb
+ Solomon Islands
+ 677
+ Breeze
+
+
+ 540
+ 299
+ sb
+ Solomon Islands
+ 677
+ Failed Calls
+
+
+ 540
+ 999
+ sb
+ Solomon Islands
+ 677
+ Fix Line
+
+
+ 540
+ 299
+ sb
+ Solomon Islands
+ 677
+ Satsol
+
+
+ 540
+ 299
+ sb
+ Solomon Islands
+ 677
+ Smile
+
+
+ 637
+ 299
+ so
+ Somalia
+ 252
+ AirSom
+
+
+ 637
+ 299
+ so
+ Somalia
+ 252
+ Failed Calls
+
+
+ 637
+ 999
+ so
+ Somalia
+ 252
+ Fix Line
+
+
+ 637
+ 30
+ so
+ Somalia
+ 252
+ Golis
+
+
+ 637
+ 19
+ so
+ Somalia
+ 252
+ Hormuud
+
+
+ 637
+ 10
+ so
+ Somalia
+ 252
+ Nationlink
+
+
+ 637
+ 299
+ so
+ Somalia
+ 252
+ NETCO
+
+
+ 637
+ 70
+ so
+ Somalia
+ 252
+ Onkod
+
+
+ 637
+ 04
+ so
+ Somalia
+ 252
+ Somafone
+
+
+ 637
+ 299
+ so
+ Somalia
+ 252
+ SomNetworks
+
+
+ 637
+ 71
+ so
+ Somalia
+ 252
+ Somtel
+
+
+ 637
+ 299
+ so
+ Somalia
+ 252
+ STG
+
+
+ 637
+ 82
+ so
+ Somalia
+ 252
+ Telcom Mobile
+
+
+ 637
+ 01
+ so
+ Somalia
+ 252
+ Telesom
+
+
+ 655
+ 07
+ za
+ South Africa
+ 27
+ Cell C
+
+
+ 655
+ 299
+ za
+ South Africa
+ 27
+ Failed Calls
+
+
+ 655
+ 999
+ za
+ South Africa
+ 27
+ Fix Line
+
+
+ 655
+ 299
+ za
+ South Africa
+ 27
+ Lycamobile
+
+
+ 655
+ 10
+ za
+ South Africa
+ 27
+ MTN
+
+
+ 655
+ 12
+ za
+ South Africa
+ 27
+ MTN
+
+
+ 655
+ 73
+ za
+ South Africa
+ 27
+ Rain
+
+
+ 655
+ 19
+ za
+ South Africa
+ 27
+ Rain
+
+
+ 655
+ 38
+ za
+ South Africa
+ 27
+ Rain
+
+
+ 655
+ 74
+ za
+ South Africa
+ 27
+ Rain
+
+
+ 655
+ 05
+ za
+ South Africa
+ 27
+ Telkom
+
+
+ 655
+ 02
+ za
+ South Africa
+ 27
+ Telkom
+
+
+ 655
+ 299
+ za
+ South Africa
+ 27
+ Virgin Mobile
+
+
+ 655
+ 01
+ za
+ South Africa
+ 27
+ Vodacom
+
+
+ 450
+ 299
+ kr
+ South Korea
+ 82
+ Failed Calls
+
+
+ 450
+ 999
+ kr
+ South Korea
+ 82
+ Fix Line
+
+
+ 450
+ 07
+ kr
+ South Korea
+ 82
+ KT Powertel
+
+
+ 450
+ 06
+ kr
+ South Korea
+ 82
+ LG U+
+
+
+ 450
+ 08
+ kr
+ South Korea
+ 82
+ olleh / KT
+
+
+ 450
+ 02
+ kr
+ South Korea
+ 82
+ olleh / KT
+
+
+ 450
+ 04
+ kr
+ South Korea
+ 82
+ olleh / KT
+
+
+ 450
+ 11
+ kr
+ South Korea
+ 82
+ SK Telecom
+
+
+ 450
+ 12
+ kr
+ South Korea
+ 82
+ SK Telecom
+
+
+ 450
+ 05
+ kr
+ South Korea
+ 82
+ SK Telecom
+
+
+ 659
+ 299
+ ss
+ South Sudan
+ Digitel
+
+
+ 659
+ 299
+ ss
+ South Sudan
+ Failed Calls
+
+
+ 659
+ 999
+ ss
+ South Sudan
+ Fix Line
+
+
+ 659
+ 02
+ ss
+ South Sudan
+ MTN
+
+
+ 659
+ 06
+ ss
+ South Sudan
+ Zain
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ ACN
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Adamo Telecom
+
+
+ 214
+ 36
+ es
+ Spain
+ 34
+ Alai
+
+
+ 214
+ 02
+ es
+ Spain
+ 34
+ Alta Tecnologia en Comunicacions
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Aurea
+
+
+ 214
+ 14
+ es
+ Spain
+ 34
+ Avatel Movil
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Billing Financial
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Bluephone
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ CloudComms
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Dialoga
+
+
+ 214
+ 22
+ es
+ Spain
+ 34
+ Digi.Mobil
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Dragonet
+
+
+ 214
+ 08
+ es
+ Spain
+ 34
+ Euskaltel Movil
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Evolutio
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Failed Calls
+
+
+ 214
+ 999
+ es
+ Spain
+ 34
+ Fix Line
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Global
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ GNET
+
+
+ 214
+ 34
+ es
+ Spain
+ 34
+ ION MOBILE
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Jetnet
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Lemonvil
+
+
+ 214
+ 25
+ es
+ Spain
+ 34
+ Lycamobile
+
+
+ 214
+ 17
+ es
+ Spain
+ 34
+ mobil R
+
+
+ 214
+ 38
+ es
+ Spain
+ 34
+ Movistar
+
+
+ 214
+ 07
+ es
+ Spain
+ 34
+ Movistar
+
+
+ 214
+ 05
+ es
+ Spain
+ 34
+ Movistar
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Olephone
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ On Movil
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Oniti Telecom
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ OperadorsCat
+
+
+ 214
+ 09
+ es
+ Spain
+ 34
+ Orange
+
+
+ 214
+ 21
+ es
+ Spain
+ 34
+ Orange
+
+
+ 214
+ 03
+ es
+ Spain
+ 34
+ Orange
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Pepephone
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Premium Numbers
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ PTV Telecom movil
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Quattre
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Sarenet
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ SEWAN
+
+
+ 214
+ 19
+ es
+ Spain
+ 34
+ Simyo
+
+
+ 214
+ 35
+ es
+ Spain
+ 34
+ SUMA movil
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Suop
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Syma
+
+
+ 214
+ 16
+ es
+ Spain
+ 34
+ mobil R
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ Telsome
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ The Telecom Boutique
+
+
+ 214
+ 27
+ es
+ Spain
+ 34
+ Truphone
+
+
+ 214
+ 12
+ es
+ Spain
+ 34
+ Venus Movil
+
+
+ 214
+ 06
+ es
+ Spain
+ 34
+ Vodafone
+
+
+ 214
+ 01
+ es
+ Spain
+ 34
+ Vodafone
+
+
+ 214
+ 37
+ es
+ Spain
+ 34
+ Vodafone
+
+
+ 214
+ 23
+ es
+ Spain
+ 34
+ Yoigo
+
+
+ 214
+ 33
+ es
+ Spain
+ 34
+ Yoigo
+
+
+ 214
+ 29
+ es
+ Spain
+ 34
+ Yoigo
+
+
+ 214
+ 04
+ es
+ Spain
+ 34
+ Yoigo
+
+
+ 214
+ 299
+ es
+ Spain
+ 34
+ You Mobile
+
+
+ 214
+ 10
+ es
+ Spain
+ 34
+ Zinnia
+
+
+ 413
+ 05
+ lk
+ Sri Lanka
+ 94
+ Airtel
+
+
+ 413
+ 02
+ lk
+ Sri Lanka
+ 94
+ Dialog
+
+
+ 413
+ 299
+ lk
+ Sri Lanka
+ 94
+ Failed Calls
+
+
+ 413
+ 999
+ lk
+ Sri Lanka
+ 94
+ Fix Line
+
+
+ 413
+ 08
+ lk
+ Sri Lanka
+ 94
+ Hutch
+
+
+ 413
+ 01
+ lk
+ Sri Lanka
+ 94
+ Mobitel
+
+
+ 634
+ 299
+ sd
+ Sudan
+ 249
+ Failed Calls
+
+
+ 634
+ 999
+ sd
+ Sudan
+ 249
+ Fix Line
+
+
+ 634
+ 03
+ sd
+ Sudan
+ 249
+ MTN
+
+
+ 634
+ 02
+ sd
+ Sudan
+ 249
+ MTN
+
+
+ 634
+ 07
+ sd
+ Sudan
+ 249
+ Sudani One
+
+
+ 634
+ 06
+ sd
+ Sudan
+ 249
+ Zain
+
+
+ 634
+ 01
+ sd
+ Sudan
+ 249
+ Zain
+
+
+ 746
+ 03
+ sr
+ Suriname
+ 597
+ Digicel
+
+
+ 746
+ 299
+ sr
+ Suriname
+ 597
+ Failed Calls
+
+
+ 746
+ 999
+ sr
+ Suriname
+ 597
+ Fix Line
+
+
+ 746
+ 02
+ sr
+ Suriname
+ 597
+ Telesur
+
+
+ 653
+ 02
+ sz
+ Swaziland
+ 268
+ Eswatini Mobile
+
+
+ 653
+ 01
+ sz
+ Swaziland
+ 268
+ EswatiniTelecom
+
+
+ 653
+ 299
+ sz
+ Swaziland
+ 268
+ Failed Calls
+
+
+ 653
+ 999
+ sz
+ Swaziland
+ 268
+ Fix Line
+
+
+ 653
+ 10
+ sz
+ Swaziland
+ 268
+ Swazi MTN
+
+
+ 240
+ 16
+ se
+ Sweden
+ 46
+
+
+ 240
+ 35
+ se
+ Sweden
+ 46
+ 42 Telecom
+
+
+ 240
+ 13
+ se
+ Sweden
+ 46
+ A3
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Advoco
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Allo Telecom
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Bahnhof
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Benemen
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Biztel
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ BM Sverige
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Bredband 2
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Bredbandsson
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ BSG
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Chilimobil
+
+
+ 240
+ 11
+ se
+ Sweden
+ 46
+ Com Hem
+
+
+ 240
+ 09
+ se
+ Sweden
+ 46
+ Com4
+
+
+ 240
+ 32
+ se
+ Sweden
+ 46
+ Compatel
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Connectel
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Core Telecom
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ easy pbx
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ EasyTelecom
+
+
+ 240
+ 22
+ se
+ Sweden
+ 46
+ EUtel
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Failed Calls
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Fastcom
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Febo Telecom
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Fello
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Fibio
+
+
+ 240
+ 63
+ se
+ Sweden
+ 46
+ Fink Telecom
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Firstcom
+
+
+ 240
+ 999
+ se
+ Sweden
+ 46
+ Fix Line
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Fonia
+
+
+ 240
+ 18
+ se
+ Sweden
+ 46
+ Messit / Minicall
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Global Telefoni
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ GlobalConnect
+
+
+ 240
+ 27
+ se
+ Sweden
+ 46
+ Globetouch
+
+
+ 240
+ 17
+ se
+ Sweden
+ 46
+ Gotanet
+
+
+ 240
+ 02
+ se
+ Sweden
+ 46
+ 3
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Horisen
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ iCentrex
+
+
+ 240
+ 23
+ se
+ Sweden
+ 46
+ Infobip
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ InfraCom
+
+
+ 240
+ 36
+ se
+ Sweden
+ 46
+ interactive digital media / IDM
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Ipify
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Junyverse
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Karma Mobil
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Lancelot
+
+
+ 240
+ 28
+ se
+ Sweden
+ 46
+ LINK Mobility
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Loxysoft
+
+
+ 240
+ 12
+ se
+ Sweden
+ 46
+ Lycamobile
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Maingate
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Megaphone
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ MessageBird
+
+
+ 240
+ 29
+ se
+ Sweden
+ 46
+ MI Carrier Services
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ miniTel
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Mitto
+
+
+ 240
+ 33
+ se
+ Sweden
+ 46
+ Mobile Arts
+
+
+ 240
+ 43
+ se
+ Sweden
+ 46
+ MobiWeb
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Molnstruktur
+
+
+ 240
+ 25
+ se
+ Sweden
+ 46
+ Monty Mobile
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ My Beat
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Net at Once
+
+
+ 240
+ 40
+ se
+ Sweden
+ 46
+ Netmore
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Netsize
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Bixia AB
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ onoff
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Premium Numbers
+
+
+ 240
+ 39
+ se
+ Sweden
+ 46
+ Primlight
+
+
+ 240
+ 31
+ se
+ Sweden
+ 46
+ Rebtel
+
+
+ 240
+ 20
+ se
+ Sweden
+ 46
+ Sierra Wireless
+
+
+ 240
+ 15
+ se
+ Sweden
+ 46
+
+
+ 240
+ 37
+ se
+ Sweden
+ 46
+ Sinch
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ soatso
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Soluno
+
+
+ 240
+ 45
+ se
+ Sweden
+ 46
+ Spirius
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ SSTNet
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Svea Billing Services
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Svensk Konsumentmobil
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ TelaVox
+
+
+ 240
+ 14
+ se
+ Sweden
+ 46
+ Tele2
+
+
+ 240
+ 07
+ se
+ Sweden
+ 46
+ Tele2
+
+
+ 240
+ 05
+ se
+ Sweden
+ 46
+ Tele2
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Telecom3 Sverige AB
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Teledigit Scandinavia AB
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Telekometen
+
+
+ 240
+ 44
+ se
+ Sweden
+ 46
+ Telenabler
+
+
+ 240
+ 42
+ se
+ Sweden
+ 46
+ Telenor Connexion
+
+
+ 240
+ 08
+ se
+ Sweden
+ 46
+ Telenor
+
+
+ 240
+ 04
+ se
+ Sweden
+ 46
+ Telenor
+
+
+ 240
+ 01
+ se
+ Sweden
+ 46
+ Telia
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Tell it to Mi
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Telness
+
+
+ 240
+ 03
+ se
+ Sweden
+ 46
+ Net 1
+
+
+ 240
+ 48
+ se
+ Sweden
+ 46
+ Tismi
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Tolv Mobil
+
+
+ 240
+ 21
+ se
+ Sweden
+ 46
+ Trafikverket
+
+
+ 240
+ 26
+ se
+ Sweden
+ 46
+ Twilio
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Unicorn Telecom
+
+
+ 240
+ 19
+ se
+ Sweden
+ 46
+ Vectone Mobile
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Verbal
+
+
+ 240
+ 46
+ se
+ Sweden
+ 46
+ Viahub
+
+
+ 240
+ 47
+ se
+ Sweden
+ 46
+ Viatel
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Vobbiz
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Voice Integrate
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Voicetech
+
+
+ 240
+ 38
+ se
+ Sweden
+ 46
+ Voxbone / Bandwidth
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Weelia
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Wifi.se
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ Wifog Sverige
+
+
+ 240
+ 299
+ se
+ Sweden
+ 46
+ XPLORA
+
+
+ 228
+ 58
+ ch
+ Switzerland
+ 41
+ Beeone
+
+
+ 228
+ 09
+ ch
+ Switzerland
+ 41
+ Comfone
+
+
+ 228
+ 05
+ ch
+ Switzerland
+ 41
+ Comfone
+
+
+ 228
+ 999
+ ch
+ Switzerland
+ 41
+ Fix Line
+
+
+ 228
+ 66
+ ch
+ Switzerland
+ 41
+ Inovia
+
+
+ 228
+ 54
+ ch
+ Switzerland
+ 41
+ Lycamobile
+
+
+ 228
+ 69
+ ch
+ Switzerland
+ 41
+ MTEL
+
+
+ 228
+ 65
+ ch
+ Switzerland
+ 41
+ Nexphone
+
+
+ 228
+ 51
+ ch
+ Switzerland
+ 41
+ relario
+
+
+ 228
+ 03
+ ch
+ Switzerland
+ 41
+ Salt Mobile
+
+
+ 228
+ 06
+ ch
+ Switzerland
+ 41
+ SBB
+
+
+ 228
+ 08
+ ch
+ Switzerland
+ 41
+ Sunrise
+
+
+ 228
+ 02
+ ch
+ Switzerland
+ 41
+ Sunrise
+
+
+ 228
+ 53
+ ch
+ Switzerland
+ 41
+ Sunrise
+
+
+ 228
+ 07
+ ch
+ Switzerland
+ 41
+ Sunrise
+
+
+ 228
+ 60
+ ch
+ Switzerland
+ 41
+ Sunrise
+
+
+ 228
+ 12
+ ch
+ Switzerland
+ 41
+ Sunrise
+
+
+ 228
+ 01
+ ch
+ Switzerland
+ 41
+ Swisscom
+
+
+ 228
+ 62
+ ch
+ Switzerland
+ 41
+ Telecom26
+
+
+ 228
+ 70
+ ch
+ Switzerland
+ 41
+ Tismi
+
+
+ 228
+ 59
+ ch
+ Switzerland
+ 41
+ Vectone Mobile
+
+
+ 417
+ 299
+ sy
+ Syria
+ 963
+ Failed Calls
+
+
+ 417
+ 999
+ sy
+ Syria
+ 963
+ Fix Line
+
+
+ 417
+ 02
+ sy
+ Syria
+ 963
+ MTN
+
+
+ 417
+ 01
+ sy
+ Syria
+ 963
+ Syriatel
+
+
+ 466
+ 05
+ tw
+ Taiwan
+ 886
+ APT
+
+
+ 466
+ 12
+ tw
+ Taiwan
+ 886
+ APT
+
+
+ 466
+ 11
+ tw
+ Taiwan
+ 886
+ Chunghwa Telecom
+
+
+ 466
+ 92
+ tw
+ Taiwan
+ 886
+ Chunghwa Telecom
+
+
+ 466
+ 299
+ tw
+ Taiwan
+ 886
+ Failed Calls
+
+
+ 466
+ 03
+ tw
+ Taiwan
+ 886
+ Far EasTone
+
+
+ 466
+ 88
+ tw
+ Taiwan
+ 886
+ Far EasTone
+
+
+ 466
+ 01
+ tw
+ Taiwan
+ 886
+ Far EasTone
+
+
+ 466
+ 999
+ tw
+ Taiwan
+ 886
+ Fix Line
+
+
+ 466
+ 89
+ tw
+ Taiwan
+ 886
+ T Star
+
+
+ 466
+ 97
+ tw
+ Taiwan
+ 886
+ Taiwan Mobile
+
+
+ 436
+ 04
+ tj
+ Tajikistan
+ 992
+ Babilon-Mobile
+
+
+ 436
+ 05
+ tj
+ Tajikistan
+ 992
+ Beeline
+
+
+ 436
+ 299
+ tj
+ Tajikistan
+ 992
+ Failed Calls
+
+
+ 436
+ 999
+ tj
+ Tajikistan
+ 992
+ Fix Line
+
+
+ 436
+ 03
+ tj
+ Tajikistan
+ 992
+ Megafon
+
+
+ 436
+ 299
+ tj
+ Tajikistan
+ 992
+ Premium Numbers
+
+
+ 436
+ 01
+ tj
+ Tajikistan
+ 992
+ Tcell
+
+
+ 436
+ 02
+ tj
+ Tajikistan
+ 992
+ Tcell
+
+
+ 640
+ 05
+ tz
+ Tanzania
+ 255
+ Airtel
+
+
+ 640
+ 299
+ tz
+ Tanzania
+ 255
+ Failed Calls
+
+
+ 640
+ 999
+ tz
+ Tanzania
+ 255
+ Fix Line
+
+
+ 640
+ 09
+ tz
+ Tanzania
+ 255
+ Halotel / Viettel
+
+
+ 640
+ 99
+ tz
+ Tanzania
+ 255
+ Mkulima African Telecommunication
+
+
+ 640
+ 14
+ tz
+ Tanzania
+ 255
+ MO Mobile
+
+
+ 640
+ 11
+ tz
+ Tanzania
+ 255
+ Smile Communications
+
+
+ 640
+ 07
+ tz
+ Tanzania
+ 255
+ Tanzania Telecommunication Corporation
+
+
+ 640
+ 02
+ tz
+ Tanzania
+ 255
+ Tigo / MIC
+
+
+ 640
+ 04
+ tz
+ Tanzania
+ 255
+ Vodacom
+
+
+ 640
+ 13
+ tz
+ Tanzania
+ 255
+ WiAfrica
+
+
+ 640
+ 03
+ tz
+ Tanzania
+ 255
+ Zanzibar Telecom / Zantel
+
+
+ 520
+ 03
+ th
+ Thailand
+ 66
+ AIS
+
+
+ 520
+ 01
+ th
+ Thailand
+ 66
+ AIS
+
+
+ 520
+ 18
+ th
+ Thailand
+ 66
+ dtac
+
+
+ 520
+ 05
+ th
+ Thailand
+ 66
+ dtac TriNet
+
+
+ 520
+ 299
+ th
+ Thailand
+ 66
+ Failed Calls
+
+
+ 520
+ 999
+ th
+ Thailand
+ 66
+ Fix Line
+
+
+ 520
+ 00
+ th
+ Thailand
+ 66
+ my
+
+
+ 520
+ 47
+ th
+ Thailand
+ 66
+ TOTmobile
+
+
+ 520
+ 15
+ th
+ Thailand
+ 66
+ TOTmobile
+
+
+ 520
+ 04
+ th
+ Thailand
+ 66
+ TrueMove H
+
+
+ 615
+ 03
+ tg
+ Togo
+ 228
+ Atlantique Telecom / Moov
+
+
+ 615
+ 299
+ tg
+ Togo
+ 228
+ Failed Calls
+
+
+ 615
+ 999
+ tg
+ Togo
+ 228
+ Fix Line
+
+
+ 615
+ 01
+ tg
+ Togo
+ 228
+ Togo Cellulaire / TogoCel
+
+
+ 539
+ 43
+ to
+ Tonga
+ 676
+ Digicel
+
+
+ 539
+ 88
+ to
+ Tonga
+ 676
+ Digicel
+
+
+ 539
+ 299
+ to
+ Tonga
+ 676
+ Failed Calls
+
+
+ 539
+ 999
+ to
+ Tonga
+ 676
+ Fix Line
+
+
+ 539
+ 01
+ to
+ Tonga
+ 676
+ U-Call
+
+
+ 539
+ 299
+ to
+ Tonga
+ 676
+ WanTok
+
+
+ 374
+ 12
+ tt
+ Trinidad and Tobago
+ 1868
+ bmobile
+
+
+ 374
+ 130
+ tt
+ Trinidad and Tobago
+ 1868
+ Digicel
+
+
+ 374
+ 299
+ tt
+ Trinidad and Tobago
+ 1868
+ Failed Calls
+
+
+ 374
+ 999
+ tt
+ Trinidad and Tobago
+ 1868
+ Fix Line
+
+
+ 605
+ 299
+ tn
+ Tunisia
+ 216
+ Failed Calls
+
+
+ 605
+ 999
+ tn
+ Tunisia
+ 216
+ Fix Line
+
+
+ 605
+ 06
+ tn
+ Tunisia
+ 216
+ Lycamobile
+
+
+ 605
+ 03
+ tn
+ Tunisia
+ 216
+ Ooredoo
+
+
+ 605
+ 01
+ tn
+ Tunisia
+ 216
+ Orange
+
+
+ 605
+ 02
+ tn
+ Tunisia
+ 216
+ TT Mobile
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Asistan Telekom
+
+
+ 286
+ 03
+ tr
+ Turkiye
+ 90
+ Avea
+
+
+ 286
+ 04
+ tr
+ Turkiye
+ 90
+ Avea
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ BasakCell
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Compatel
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Fenix Telekom
+
+
+ 286
+ 999
+ tr
+ Turkiye
+ 90
+ Fix Line
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Foniva
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ IsNet
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Maxiphone
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Medium Telekom
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Mobilisim
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Netgsm
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Nida
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Oris
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Pelicell
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Plus Telekom
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ Roitel
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ SesNet
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ TCDD
+
+
+ 286
+ 299
+ tr
+ Turkiye
+ 90
+ TTM
+
+
+ 286
+ 01
+ tr
+ Turkiye
+ 90
+ Turkcell
+
+
+ 286
+ 02
+ tr
+ Turkiye
+ 90
+ Vodafone
+
+
+ 438
+ 01
+ tm
+ Turkmenistan
+ 993
+ MTS
+
+
+ 438
+ 299
+ tm
+ Turkmenistan
+ 993
+ Failed Calls
+
+
+ 438
+ 999
+ tm
+ Turkmenistan
+ 993
+ Fix Line
+
+
+ 438
+ 02
+ tm
+ Turkmenistan
+ 993
+ TMCELL
+
+
+ 376
+ 360
+ tc
+ Turks and Caicos Islands
+ Digicel
+
+
+ 376
+ 050
+ tc
+ Turks and Caicos Islands
+ Digicel
+
+
+ 376
+ 299
+ tc
+ Turks and Caicos Islands
+ Failed Calls
+
+
+ 376
+ 999
+ tc
+ Turks and Caicos Islands
+ Fix Line
+
+
+ 376
+ 350
+ tc
+ Turks and Caicos Islands
+ Flow
+
+
+ 553
+ 299
+ tv
+ Tuvalu
+ Failed Calls
+
+
+ 553
+ 999
+ tv
+ Tuvalu
+ Fix Line
+
+
+ 553
+ 01
+ tv
+ Tuvalu
+ Tuvalu Telecom
+
+
+ 641
+ 22
+ ug
+ Uganda
+ 256
+ Airtel
+
+
+ 641
+ 01
+ ug
+ Uganda
+ 256
+ Airtel
+
+
+ 641
+ 299
+ ug
+ Uganda
+ 256
+ Failed Calls
+
+
+ 641
+ 999
+ ug
+ Uganda
+ 256
+ Fix Line
+
+
+ 641
+ 04
+ ug
+ Uganda
+ 256
+ Lycamobile
+
+
+ 641
+ 11
+ ug
+ Uganda
+ 256
+ Mango
+
+
+ 641
+ 10
+ ug
+ Uganda
+ 256
+ MTN
+
+
+ 641
+ 33
+ ug
+ Uganda
+ 256
+ Smile
+
+
+ 255
+ 07
+ ua
+ Ukraine
+ 380
+ 3Mob
+
+
+ 255
+ 299
+ ua
+ Ukraine
+ 380
+ Failed Calls
+
+
+ 255
+ 999
+ ua
+ Ukraine
+ 380
+ Fix Line
+
+
+ 255
+ 04
+ ua
+ Ukraine
+ 380
+ IT
+
+
+ 255
+ 02
+ ua
+ Ukraine
+ 380
+ Kyivstar
+
+
+ 255
+ 03
+ ua
+ Ukraine
+ 380
+ Kyivstar
+
+
+ 255
+ 06
+ ua
+ Ukraine
+ 380
+ lifecell
+
+
+ 255
+ 21
+ ua
+ Ukraine
+ 380
+ PEOPLEnet
+
+
+ 255
+ 99
+ ua
+ Ukraine
+ 380
+ Phoenix
+
+
+ 255
+ 01
+ ua
+ Ukraine
+ 380
+ Vodafone
+
+
+ 424
+ 03
+ ae
+ United Arab Emirates
+ 971
+ DU
+
+
+ 424
+ 02
+ ae
+ United Arab Emirates
+ 971
+ Etisalat
+
+
+ 424
+ 299
+ ae
+ United Arab Emirates
+ 971
+ Failed Calls
+
+
+ 424
+ 999
+ ae
+ United Arab Emirates
+ 971
+ Fix Line
+
+
+ 234
+ 78
+ gb
+ United Kingdom
+ 44
+ Airwave
+
+
+ 234
+ 29
+ gb
+ United Kingdom
+ 44
+ aql
+
+
+ 234
+ 76
+ gb
+ United Kingdom
+ 44
+ BT Group
+
+
+ 234
+ 00
+ gb
+ United Kingdom
+ 44
+ BT Group
+
+
+ 234
+ 08
+ gb
+ United Kingdom
+ 44
+ BT OnePhone
+
+
+ 234
+ 18
+ gb
+ United Kingdom
+ 44
+ Cloud9
+
+
+ 234
+ 30
+ gb
+ United Kingdom
+ 44
+ T-Mobile
+
+
+ 234
+ 32
+ gb
+ United Kingdom
+ 44
+ T-Mobile
+
+
+ 234
+ 31
+ gb
+ United Kingdom
+ 44
+ T-Mobile
+
+
+ 234
+ 999
+ gb
+ United Kingdom
+ 44
+ Fix Line
+
+
+ 234
+ 17
+ gb
+ United Kingdom
+ 44
+ FlexTel
+
+
+ 234
+ 04
+ gb
+ United Kingdom
+ 44
+ FMS Solutions
+
+
+ 234
+ 39
+ gb
+ United Kingdom
+ 44
+ Gamma Mobile
+
+
+ 234
+ 24
+ gb
+ United Kingdom
+ 44
+ Greenfone
+
+
+ 234
+ 72
+ gb
+ United Kingdom
+ 44
+ Hanhaa Mobile
+
+
+ 234
+ 71
+ gb
+ United Kingdom
+ 44
+ Home Office
+
+
+ 234
+ 20
+ gb
+ United Kingdom
+ 44
+ 3
+
+
+ 234
+ 94
+ gb
+ United Kingdom
+ 44
+ 3
+
+
+ 234
+ 23
+ gb
+ United Kingdom
+ 44
+ Icron Network
+
+
+ 234
+ 03
+ gb
+ United Kingdom
+ 44
+ Jersey Airtel
+
+
+ 234
+ 35
+ gb
+ United Kingdom
+ 44
+ JSC Ingenicum
+
+
+ 234
+ 50
+ gb
+ United Kingdom
+ 44
+ JT Mobile
+
+
+ 234
+ 14
+ gb
+ United Kingdom
+ 44
+ LINK Mobility
+
+
+ 234
+ 26
+ gb
+ United Kingdom
+ 44
+ Lycamobile
+
+
+ 234
+ 58
+ gb
+ United Kingdom
+ 44
+ Manx Telecom Mobile
+
+
+ 234
+ 28
+ gb
+ United Kingdom
+ 44
+ Marathon Telecom
+
+
+ 234
+ 75
+ gb
+ United Kingdom
+ 44
+ Mass Response Service GmbH
+
+
+ 234
+ 56
+ gb
+ United Kingdom
+ 44
+ NCSC
+
+
+ 234
+ 95
+ gb
+ United Kingdom
+ 44
+ Network Rail
+
+
+ 234
+ 12
+ gb
+ United Kingdom
+ 44
+ Network Rail
+
+
+ 234
+ 13
+ gb
+ United Kingdom
+ 44
+ Network Rail
+
+
+ 234
+ 51
+ gb
+ United Kingdom
+ 44
+ now broadband
+
+
+ 234
+ 34
+ gb
+ United Kingdom
+ 44
+ Orange
+
+
+ 234
+ 33
+ gb
+ United Kingdom
+ 44
+ Orange
+
+
+ 234
+ 74
+ gb
+ United Kingdom
+ 44
+ Pareteum
+
+
+ 234
+ 57
+ gb
+ United Kingdom
+ 44
+ Sky
+
+
+ 234
+ 40
+ gb
+ United Kingdom
+ 44
+ spusu
+
+
+ 234
+ 55
+ gb
+ United Kingdom
+ 44
+ Sure Guernsey
+
+
+ 234
+ 36
+ gb
+ United Kingdom
+ 44
+ Sure Isle of Man
+
+
+ 234
+ 99
+ gb
+ United Kingdom
+ 44
+ Sure Jersey
+
+
+ 234
+ 37
+ gb
+ United Kingdom
+ 44
+ Synectiv
+
+
+ 234
+ 16
+ gb
+ United Kingdom
+ 44
+ Talk Talk
+
+
+ 234
+ 27
+ gb
+ United Kingdom
+ 44
+ Tata Communications Ltd
+
+
+ 234
+ 11
+ gb
+ United Kingdom
+ 44
+ O2
+
+
+ 234
+ 10
+ gb
+ United Kingdom
+ 44
+ O2
+
+
+ 234
+ 02
+ gb
+ United Kingdom
+ 44
+ O2
+
+
+ 234
+ 22
+ gb
+ United Kingdom
+ 44
+ Telesign Mobile
+
+
+ 234
+ 19
+ gb
+ United Kingdom
+ 44
+ TeleWare
+
+
+ 234
+ 09
+ gb
+ United Kingdom
+ 44
+ Tismi
+
+
+ 234
+ 25
+ gb
+ United Kingdom
+ 44
+ Truphone
+
+
+ 234
+ 01
+ gb
+ United Kingdom
+ 44
+ Vectone Mobile
+
+
+ 234
+ 38
+ gb
+ United Kingdom
+ 44
+ Virgin Mobile
+
+
+ 234
+ 92
+ gb
+ United Kingdom
+ 44
+ Vodafone
+
+
+ 234
+ 07
+ gb
+ United Kingdom
+ 44
+ Vodafone
+
+
+ 234
+ 15
+ gb
+ United Kingdom
+ 44
+ Vodafone
+
+
+ 234
+ 89
+ gb
+ United Kingdom
+ 44
+ Vodafone
+
+
+ 234
+ 91
+ gb
+ United Kingdom
+ 44
+ Vodafone
+
+
+ 234
+ 77
+ gb
+ United Kingdom
+ 44
+ Vodafone
+
+
+ 312
+ 130
+ us
+ United States of America
+ 1
+ Appalachian Wireless
+
+
+ 312
+ 750
+ us
+ United States of America
+ 1
+ Appalachian Wireless
+
+
+ 310
+ 130
+ us
+ United States of America
+ 1
+ Appalachian Wireless
+
+
+ 310
+ 750
+ us
+ United States of America
+ 1
+ Appalachian Wireless
+
+
+ 312
+ 710
+ us
+ United States of America
+ 1
+ ASTAC Cellular
+
+
+ 310
+ 710
+ us
+ United States of America
+ 1
+ ASTAC Cellular
+
+
+ 310
+ 760
+ us
+ United States of America
+ 1
+ ASTAC Cellular
+
+
+ 312
+ 760
+ us
+ United States of America
+ 1
+ ASTAC Cellular
+
+
+ 313
+ 030
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 180
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 680
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 680
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 170
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 090
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 016
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 150
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 670
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 080
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 280
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 280
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 670
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 070
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 016
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 210
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 950
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 950
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 180
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 150
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 170
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 680
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 090
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 380
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 380
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 680
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 080
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 030
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 070
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 280
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 016
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 210
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 170
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 180
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 950
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 150
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 410
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 410
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 950
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 090
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 070
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 080
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 380
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 030
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 180
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 280
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 380
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 016
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 170
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 670
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 670
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 150
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 080
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 090
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 410
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 030
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 312
+ 070
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 311
+ 210
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 210
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 313
+ 410
+ us
+ United States of America
+ 1
+ AT&T Mobility
+
+
+ 310
+ 600
+ us
+ United States of America
+ 1
+ Cellcom
+
+
+ 310
+ 630
+ us
+ United States of America
+ 1
+ Choice Wireless
+
+
+ 310
+ 700
+ us
+ United States of America
+ 1
+ cv cellular
+
+
+ 310
+ 880
+ us
+ United States of America
+ 1
+ DTC Wireless
+
+
+ 310
+ 035
+ us
+ United States of America
+ 1
+ ETEX
+
+
+ 310
+ 990
+ us
+ United States of America
+ 1
+ Evolve
+
+
+ 310
+ 299
+ us
+ United States of America
+ 1
+ Failed Calls
+
+
+ 310
+ 999
+ us
+ United States of America
+ 1
+ Fix Line
+
+
+ 311
+ 370
+ us
+ United States of America
+ 1
+ GCI Wireless
+
+
+ 310
+ 430
+ us
+ United States of America
+ 1
+ GCI Wireless
+
+
+ 311
+ 430
+ us
+ United States of America
+ 1
+ GCI Wireless
+
+
+ 311
+ 690
+ us
+ United States of America
+ 1
+ Limitless
+
+
+ 312
+ 340
+ us
+ United States of America
+ 1
+ Limitless
+
+
+ 310
+ 340
+ us
+ United States of America
+ 1
+ Limitless
+
+
+ 312
+ 690
+ us
+ United States of America
+ 1
+ Limitless
+
+
+ 310
+ 690
+ us
+ United States of America
+ 1
+ Limitless
+
+
+ 311
+ 340
+ us
+ United States of America
+ 1
+ Limitless
+
+
+ 313
+ 299
+ us
+ United States of America
+ 1
+ Northstar Technology
+
+
+ 314
+ 299
+ us
+ United States of America
+ 1
+ Northstar Technology
+
+
+ 310
+ 299
+ us
+ United States of America
+ 1
+ Northstar Technology
+
+
+ 315
+ 299
+ us
+ United States of America
+ 1
+ Northstar Technology
+
+
+ 311
+ 299
+ us
+ United States of America
+ 1
+ Northstar Technology
+
+
+ 316
+ 299
+ us
+ United States of America
+ 1
+ Northstar Technology
+
+
+ 312
+ 299
+ us
+ United States of America
+ 1
+ Northstar Technology
+
+
+ 310
+ 540
+ us
+ United States of America
+ 1
+ OWTC
+
+
+ 310
+ 570
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 313
+ 360
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 310
+ 280
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 311
+ 280
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 313
+ 570
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 311
+ 360
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 310
+ 360
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 311
+ 570
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 313
+ 280
+ us
+ United States of America
+ 1
+ Pioneer Cellular
+
+
+ 316
+ 660
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 270
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 940
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 190
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 190
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 311
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 800
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 120
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 882
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 800
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 200
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 260
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 230
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 830
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 940
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 240
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 940
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 270
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 800
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 310
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 010
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 200
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 160
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 490
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 830
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 160
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 940
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 830
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 230
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 270
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 240
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 870
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 010
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 250
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 490
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 830
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 490
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 120
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 230
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 120
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 530
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 870
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 190
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 870
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 240
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 490
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 250
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 880
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 120
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 260
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 530
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 870
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 530
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 160
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 240
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 010
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 660
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 880
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 200
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 880
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 250
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 530
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 260
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 882
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 160
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 270
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 660
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 010
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 880
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 660
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 190
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 316
+ 250
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 200
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 800
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 882
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 311
+ 230
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 882
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 312
+ 260
+ us
+ United States of America
+ 1
+ T-Mobile
+
+
+ 310
+ 020
+ us
+ United States of America
+ 1
+ Union Wireless
+
+
+ 310
+ 595
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 820
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 895
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 281
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 287
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 486
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 592
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 598
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 272
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 278
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 289
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 483
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 489
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 897
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 274
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 110
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 770
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 894
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 910
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 286
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 480
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 591
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 597
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 891
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 277
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 283
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 482
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 488
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 594
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 013
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 279
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 274
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 899
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 285
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 390
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 485
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 893
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 596
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 890
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 896
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 282
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 288
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 487
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 593
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 599
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 273
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 279
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 350
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 484
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 590
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 898
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 275
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 820
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 895
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 287
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 481
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 592
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 598
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 892
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 278
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 284
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 483
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 489
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 595
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 110
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 280
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 275
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 271
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 910
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 286
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 480
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 486
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 894
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 597
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 891
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 897
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 283
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 289
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 488
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 594
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 770
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 274
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 280
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 390
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 485
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 591
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 899
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 276
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 271
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 890
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 012
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 896
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 282
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 288
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 482
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 593
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 599
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 893
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 279
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 285
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 484
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 590
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 596
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 281
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 276
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 287
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 481
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 487
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 895
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 272
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 012
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 598
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 892
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 898
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 284
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 350
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 489
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 595
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 820
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 275
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 281
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 480
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 486
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 592
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 910
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 277
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 272
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 891
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 013
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 897
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 283
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 289
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 483
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 594
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 770
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 894
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 280
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 286
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 485
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 591
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 597
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 271
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 277
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 288
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 482
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 488
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 896
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 273
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 013
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 599
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 893
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 899
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 285
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 390
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 590
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 596
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 890
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 276
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 282
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 481
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 487
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 593
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 012
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 278
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 273
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 110
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 898
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 284
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 311
+ 350
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 312
+ 484
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 892
+ us
+ United States of America
+ 1
+ Verizon Wireless
+
+
+ 310
+ 740
+ us
+ United States of America
+ 1
+ Viaero Wireless
+
+
+ 310
+ 450
+ us
+ United States of America
+ 1
+ Viaero Wireless
+
+
+ 310
+ 860
+ us
+ United States of America
+ 1
+ West Central Wireless
+
+
+ 748
+ 01
+ uy
+ Uruguay
+ 598
+ Antel Movil
+
+
+ 748
+ 10
+ uy
+ Uruguay
+ 598
+ Claro
+
+
+ 748
+ 299
+ uy
+ Uruguay
+ 598
+ Failed Calls
+
+
+ 748
+ 999
+ uy
+ Uruguay
+ 598
+ Fix Line
+
+
+ 748
+ 07
+ uy
+ Uruguay
+ 598
+ Movistar
+
+
+ 434
+ 04
+ uz
+ Uzbekistan
+ 998
+ Beeline
+
+
+ 434
+ 299
+ uz
+ Uzbekistan
+ 998
+ Failed Calls
+
+
+ 434
+ 999
+ uz
+ Uzbekistan
+ 998
+ Fix Line
+
+
+ 434
+ 06
+ uz
+ Uzbekistan
+ 998
+ Perfectum Mobile
+
+
+ 434
+ 05
+ uz
+ Uzbekistan
+ 998
+ Ucell
+
+
+ 434
+ 07
+ uz
+ Uzbekistan
+ 998
+ UMS
+
+
+ 434
+ 03
+ uz
+ Uzbekistan
+ 998
+ UzMobile
+
+
+ 541
+ 05
+ vu
+ Vanuatu
+ 678
+ Digicel
+
+
+ 541
+ 299
+ vu
+ Vanuatu
+ 678
+ Failed Calls
+
+
+ 541
+ 999
+ vu
+ Vanuatu
+ 678
+ Fix Line
+
+
+ 541
+ 01
+ vu
+ Vanuatu
+ 678
+ Smile
+
+
+ 225
+ 299
+ va
+ Vatican
+ Failed Calls
+
+
+ 225
+ 999
+ va
+ Vatican
+ Fix Line
+
+
+ 734
+ 02
+ ve
+ Venezuela
+ 58
+ Digitel
+
+
+ 734
+ 299
+ ve
+ Venezuela
+ 58
+ Failed Calls
+
+
+ 734
+ 999
+ ve
+ Venezuela
+ 58
+ Fix Line
+
+
+ 734
+ 06
+ ve
+ Venezuela
+ 58
+ Movilnet
+
+
+ 734
+ 04
+ ve
+ Venezuela
+ 58
+ Movistar
+
+
+ 452
+ 299
+ vn
+ Vietnam
+ 84
+ Failed Calls
+
+
+ 452
+ 999
+ vn
+ Vietnam
+ 84
+ Fix Line
+
+
+ 452
+ 07
+ vn
+ Vietnam
+ 84
+ Gmobile
+
+
+ 452
+ 08
+ vn
+ Vietnam
+ 84
+ I-Telecom
+
+
+ 452
+ 01
+ vn
+ Vietnam
+ 84
+ MobiFone
+
+
+ 452
+ 09
+ vn
+ Vietnam
+ 84
+ Reddi
+
+
+ 452
+ 05
+ vn
+ Vietnam
+ 84
+ Vietnamobile
+
+
+ 452
+ 06
+ vn
+ Vietnam
+ 84
+ Viettel
+
+
+ 452
+ 04
+ vn
+ Vietnam
+ 84
+ Viettel
+
+
+ 452
+ 02
+ vn
+ Vietnam
+ 84
+ VinaPhone
+
+
+ 376
+ 299
+ vi
+ Virgin Islands
+ 1340
+ Failed Calls
+
+
+ 376
+ 999
+ vi
+ Virgin Islands
+ 1340
+ Fix Line
+
+
+ 543
+ 299
+ wf
+ Wallis and Futuna
+ Failed Calls
+
+
+ 543
+ 999
+ wf
+ Wallis and Futuna
+ Fix Line
+
+
+ 543
+ 01
+ wf
+ Wallis and Futuna
+ Manuia
+
+
+ 421
+ 299
+ ye
+ Yemen
+ 967
+ Failed Calls
+
+
+ 421
+ 999
+ ye
+ Yemen
+ 967
+ Fix Line
+
+
+ 421
+ 01
+ ye
+ Yemen
+ 967
+ SabaFon
+
+
+ 421
+ 02
+ ye
+ Yemen
+ 967
+ Spacetel
+
+
+ 421
+ 04
+ ye
+ Yemen
+ 967
+ Y
+
+
+ 421
+ 03
+ ye
+ Yemen
+ 967
+ Yemen Mobile
+
+
+ 645
+ 01
+ zm
+ Zambia
+ 260
+ Airtel
+
+
+ 645
+ 299
+ zm
+ Zambia
+ 260
+ Failed Calls
+
+
+ 645
+ 999
+ zm
+ Zambia
+ 260
+ Fix Line
+
+
+ 645
+ 02
+ zm
+ Zambia
+ 260
+ MTN
+
+
+ 645
+ 03
+ zm
+ Zambia
+ 260
+ Zamtel
+
+
+ 648
+ 04
+ zw
+ Zimbabwe
+ 263
+ Econet
+
+
+ 648
+ 299
+ zw
+ Zimbabwe
+ 263
+ Failed Calls
+
+
+ 648
+ 999
+ zw
+ Zimbabwe
+ 263
+ Fix Line
+
+
+ 648
+ 01
+ zw
+ Zimbabwe
+ 263
+ NetOne
+
+
+ 648
+ 03
+ zw
+ Zimbabwe
+ 263
+ Telecel
+
+
diff --git a/mcc_mnc_fetcher.py b/mcc_mnc_fetcher.py
new file mode 100644
index 00000000..59c48409
--- /dev/null
+++ b/mcc_mnc_fetcher.py
@@ -0,0 +1,137 @@
+"""
+This module can be used to fetch & parse mcc, mnc data from https://mcc-mnc.com
+Usage:
+ from mcc_mnc_fetcher import MCCMNCFetcher
+ MCCMNCFetcher.json_file() # creates mcc-mnc-table.json
+ MCCMNCFetcher.csv_file() # creates mcc-mnc-table.cxv
+ MCCMNCFetcher.xml_file() # creates mcc-mnc-table.xml
+"""
+import csv
+import json
+import requests
+import xml.etree.ElementTree as ET
+from typing import List
+from pathlib import Path
+from xml.dom import minidom
+from bs4 import BeautifulSoup
+from pydantic import BaseModel
+
+_MCC_MNC_FILE: Path = Path(__file__).parent.joinpath("mcc-mnc-table")
+
+
+# SCHEMAS
+class MCCMNCRecord(BaseModel):
+ """mcc mnc record/row from mcc-mnc.com"""
+ mcc: int
+ mnc: int
+ iso: str
+ country: str
+ country_code: int
+ network: str
+
+
+class MCCMNCRecordList(BaseModel):
+ __root__: List[MCCMNCRecord]
+
+
+# FETCHER
+class MCCMNCFetcher:
+ """fetching & parsing mcc mnc records from https://mcc-mnc.com"""
+ _DOMAIN: str = "https://mcc-mnc.com/"
+
+ @staticmethod
+ def _get_mcc_mnc_site_html() -> str:
+ """:return: HTML from https://mcc-mnc.com/"""
+ return requests.get(MCCMNCFetcher._DOMAIN).text
+
+ @staticmethod
+ def _get_mcc_mnc_rows(html: str) -> List[List[str]]:
+ """
+ returns all the mcc mnc rows from https://mcc-mnc.com/
+ each row is in the pattern [mcc, mnc, iso, country, country code, network]
+ :param html: HTML from https://mcc-mnc.com/
+ :return: list of mcc mnc rows
+ """
+ records = []
+ soup = BeautifulSoup(html)
+ table = soup.find('table', attrs={'id': 'mncmccTable'})
+ table_body = table.find('tbody')
+ rows = table_body.find_all('tr')
+ for row in rows:
+ cols = row.find_all('td')
+ cols = [e.text.strip() for e in cols]
+ records.append([e for e in cols if e])
+ return records
+
+ @staticmethod
+ def _parse_records(mcc_mnc_rows: List[List[str]]) -> List[MCCMNCRecord]:
+ """
+ parsing mcc mnc rows to list of MCCMNCRecord
+ :param mcc_mnc_rows: list of mcc mnc rows. row is in the pattern [mcc, mnc, iso, country, country code, network]
+ :return: list of MCCMNCRecord
+ """
+ mcc_mnc_records: List[MCCMNCRecord] = []
+ for mcc_mnc_row in mcc_mnc_rows:
+ try:
+ mcc_mnc_records.append(
+ MCCMNCRecord(mcc=mcc_mnc_row[0],
+ mnc=mcc_mnc_row[1],
+ iso=mcc_mnc_row[2],
+ country=mcc_mnc_row[3],
+ country_code=mcc_mnc_row[4],
+ network=mcc_mnc_row[5])
+ )
+ except IndexError:
+ pass # some rows are not fully populated
+ return mcc_mnc_records
+
+ @staticmethod
+ def json_file() -> None:
+ """
+ creating a json file(mcc-mnc-table.json) with all the mcc mnc data from https://mcc-mnc.com/
+ :return: None
+ """
+ mcc_mnc_html: str = MCCMNCFetcher._get_mcc_mnc_site_html()
+ mcc_mnc_rows: List[List[str]] = MCCMNCFetcher._get_mcc_mnc_rows(html=mcc_mnc_html)
+ mcc_mnc_records: List[MCCMNCRecord] = MCCMNCFetcher._parse_records(mcc_mnc_rows=mcc_mnc_rows)
+ mcc_mnc_records_list: MCCMNCRecordList = MCCMNCRecordList.parse_obj(mcc_mnc_records)
+ with open(f"{_MCC_MNC_FILE}.json", "w") as f:
+ f.write(json.dumps(mcc_mnc_records_list.dict()["__root__"], indent=2))
+
+ @staticmethod
+ def csv_file() -> None:
+ """
+ creating a csv file(mcc-mnc-table.csv) with all the mcc mnc data from https://mcc-mnc.com/
+ :return: None
+ """
+ mcc_mnc_html: str = MCCMNCFetcher._get_mcc_mnc_site_html()
+ mcc_mnc_rows: List[List[str]] = MCCMNCFetcher._get_mcc_mnc_rows(html=mcc_mnc_html)
+ with open(f"{_MCC_MNC_FILE}.csv", "w", newline="") as f:
+ csv_writer = csv.writer(f, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)
+ for mcc_mnc_row in mcc_mnc_rows:
+ csv_writer.writerow(mcc_mnc_row)
+
+ @staticmethod
+ def xml_file() -> None:
+ """
+ creating a xml file(mcc-mnc-table.xml) with all the mcc mnc data from https://mcc-mnc.com/
+ :return: None
+ """
+ mcc_mnc_html: str = MCCMNCFetcher._get_mcc_mnc_site_html()
+ mcc_mnc_row_pattern = ["mcc", "mnc", "iso", "country", "country_code", "network"]
+ mcc_mnc_rows: List[List[str]] = MCCMNCFetcher._get_mcc_mnc_rows(html=mcc_mnc_html)
+ root_tag = ET.Element('records')
+ for mcc_mnc_row in mcc_mnc_rows:
+ record_tag = ET.SubElement(root_tag, 'record')
+ for index, value in enumerate(mcc_mnc_row):
+ vary_tag = ET.SubElement(record_tag, mcc_mnc_row_pattern[index])
+ vary_tag.text = value
+ xml_string = minidom.parseString(ET.tostring(root_tag)).toprettyxml()
+ with open(f"{_MCC_MNC_FILE}.xml", "w") as f:
+ f.write(xml_string)
+
+
+if __name__ == '__main__':
+ MCCMNCFetcher.json_file()
+ MCCMNCFetcher.csv_file()
+ MCCMNCFetcher.xml_file()