diff --git a/I Paid Almost NOTHING For This PC... But What IS It? [3CDVOTeF_hw].mp4 b/I Paid Almost NOTHING For This PC... But What IS It? [3CDVOTeF_hw].mp4
new file mode 100644
index 0000000..b53fc48
Binary files /dev/null and b/I Paid Almost NOTHING For This PC... But What IS It? [3CDVOTeF_hw].mp4 differ
diff --git a/app/Http/Controllers/ClientsController.php b/app/Http/Controllers/ClientsController.php
index 523296b..8785389 100755
--- a/app/Http/Controllers/ClientsController.php
+++ b/app/Http/Controllers/ClientsController.php
@@ -10,6 +10,7 @@ use App\Jobs\SendNewUssdClientEmail;
use App\Jobs\SendUssdClientActiveEmail;
use App\Jobs\SendNewNotesEmailAlert;
use App\Jobs\SendOnboardingCompletedEmailAlert;
+use App\Jobs\SendShortCodeListToFinance;
use App\Http\Requests;
use Carbon\Carbon;
use App\Libs\PaperLessNgx;
@@ -23,31 +24,8 @@ class ClientsController extends Controller
* @return \Illuminate\Http\Response
*/
public function index(){
-
- /*
- $currentuser = session('current_user.name');
- $user_model = Models\SystemUser::find(session('current_user.id'));
- #\Auth::user()->actions;
- $actions = $user_model->actions;
- dd($actions);
- $clientModel = new Models\Client;
- $currentuser = session('current_user.name');
- $user_model = Models\SystemUser::find(session('current_user.id'));
- activity()->performedOn($clientModel)
- ->causedBy($user_model)
- ->log($currentuser . ' Opened the Client Module at: ' . date('Y-m-d H:i:s'));
- */
- // ->log('viewed');
- /*
- $client = Models\Client::find(3);
- dd($client->client_services);
-
- $client_arr = new Models\Client;
- $client_arr = $client_arr->with('auth_user_info','country_info', 'created_by_info')->orderBy('name', 'ASC')->paginate(15);
- */
$data = [
'page_title' => 'Clients',
- //'client_arr' => $client_arr,
'current_user' => session('current_user')
];
return view('client.index-tabulator', $data);
@@ -62,22 +40,15 @@ class ClientsController extends Controller
return view('client.index-rawjs', $data);
}
public function getClientJson(Request $request){
- /*
- $client_arr = new Models\Client;
- $client_arr = $client_arr->with('auth_user_info','country_info', 'created_by_info', 'modified_by_info')->orderBy('name', 'ASC')->paginate(20);
-
- dump($request->all());
- $client_arr = $client_arr->with('auth_user_info','country_info', 'created_by_info', 'modified_by_info')
- ->orderBy('name', 'ASC')->paginate(20);
- }
- */
+
$client_arr = \DB::table('clients')
->join('auth_users AS aumngr', 'aumngr.id', '=', 'clients.auth_user_id')
->join('auth_users AS aumodify', 'aumodify.id', '=', 'clients.last_modified_by')
->join('flags AS flags', 'flags.country', '=', 'clients.country')
->select('clients.id', 'clients.name', 'clients.status','clients.progress_indicator_score', 'clients.country', 'aumngr.name As accountMgr', 'aumodify.name AS modifiedBy', 'flags.url AS theflag')
->orderBy('name', 'ASC')
- ->paginate(15);
+ ->get();
+ // ->paginate(15);
if($request->has('keyword')){
$keyword = $request->keyword;
@@ -88,7 +59,8 @@ class ClientsController extends Controller
->select('clients.id','clients.name', 'clients.status', 'clients.progress_indicator_score','clients.country', 'aumngr.name As accountMgr', 'aumodify.name AS modifiedBy', 'flags.url AS theflag')
->whereRaw("clients.name like '%$keyword%' or clients.status like '%$keyword%' OR clients.country like '%$keyword%' OR aumngr.name like '%$keyword%' OR aumodify.name like '%$keyword%' OR clients.progress_indicator_score like '%$keyword%'")
->orderBy('name', 'ASC')
- ->paginate(15);
+ ->get();
+ // ->paginate(15);
}
return response()->json($client_arr);
@@ -133,7 +105,6 @@ class ClientsController extends Controller
$industries = Models\Industry::orderBy('name', 'ASC')->pluck('name', 'name');
// $industries = Models\Industry::pluck('name', 'name')->orderBy('name', 'ASC');
-
$data = [
'page_title' => 'Create Client',
'countries' => $countries,
@@ -274,10 +245,9 @@ class ClientsController extends Controller
$notes_arr['highlight'] = 'YES';
}
-
- //dd($notes_arr);
- $result = Models\ClientNote::create($notes_arr);
+ $result = Models\ClientNote::updateOrCreate(['services' => $request->services, 'client_id' => $request->client_id, 'auth_user_id' => $auth_user['id'] ], $notes_arr);
// dd($result);
+ $client = Models\Client::find($request->client_id);
$notes = Models\ClientNote::with('client_info', 'created_by_info')->find($result->id);
//todo : send emails
dispatch(new SendNewNotesEmailAlert($notes));
@@ -290,7 +260,7 @@ class ClientsController extends Controller
}
$user_id = session('current_user.id');
$username = session('current_user.name');
- $content = "User ID : " . $user_id . " (" . $username . ") Added a new Note";
+ $content = "User ID : " . $user_id . " (" . $username . ") Added a new Note for : " . $client->name;
$this->logUsersActivity($type = 'staff', $content);
return response()->json($data, 200);
}
@@ -360,9 +330,7 @@ class ClientsController extends Controller
// 'short_code' => 'sometimes|numeric'
]);
$auth_user = session('current_user');
- // dump($request->has('short_code'));
- //dd($request->all());
- // dump($request->short_code);
+
if ($request->short_code !== null) {
$check = is_numeric($request->short_code);
if ($check == false) {
@@ -370,7 +338,7 @@ class ClientsController extends Controller
return response()->json($data, 200);
}
}
- // dd($request->all());
+
$finance_arr = [
'invoice_number' => $request->invoice_number,
'invoice_amount' => $request->invoice_amount,
@@ -384,8 +352,15 @@ class ClientsController extends Controller
if ($request->has('remarks')) {
$finance_arr['remarks'] = $request->remarks;
}
- // dd($finance_arr);
- $result = Models\ClientPayment::create($finance_arr);
+ $client = Models\Client::find($request->client_id);
+ $result = Models\ClientPayment::updateOrCreate(['invoice_number' => $request->invoice_number, 'client_id' => $request->client_id, ], $finance_arr);
+ if ($request->has('short_code')) {
+ $short_code_list = Models\ClientShortCode::where('client_id', $request->client_id)->get();
+ $client = Models\Client::find($request->client_id);
+ $message_body = $auth_user['name'] . " has added a new Short Code ($request->short_code) Payment entry for " . $client->name;
+
+ dispatch(new SendShortCodeListToFinance($short_code_list, $message_body, $finance_arr));
+ }
#$payments = Models\ClientPayment::with('client_info', 'created_by_info')->find($result->id);
if ($result) {
@@ -396,7 +371,7 @@ class ClientsController extends Controller
}
$user_id = session('current_user.id');
$username = session('current_user.name');
- $content = "User ID : " . $user_id . " (" . $username . ") Added a payment record";
+ $content = "User ID : " . $user_id . " (" . $username . ") Added a payment record for : " . $client->name;
$this->logUsersActivity($type = 'staff', $content);
return response()->json($data, 200);
}
@@ -427,7 +402,7 @@ class ClientsController extends Controller
$support_fees_arr['remarks'] = $request->remarks;
}
$result = Models\ClientSupportFees::create($support_fees_arr);
-
+ $client = Models\Client::find($request->client_id);
#$payments = Models\ClientPayment::with('client_info', 'created_by_info')->find($result->id);
if ($result) {
$data = ['code' => 1, 'msg' => 'Support Fees Details successfully added'];
@@ -437,7 +412,7 @@ class ClientsController extends Controller
}
$user_id = session('current_user.id');
$username = session('current_user.name');
- $content = "User ID : " . $user_id . " (" . $username . ") Added a support fees record";
+ $content = "User ID : " . $user_id . " (" . $username . ") Added a support fees record for : " . $client->name;
$this->logUsersActivity($type = 'staff', $content);
return response()->json($data, 200);
}
@@ -451,15 +426,17 @@ class ClientsController extends Controller
'status' => 'required',
'remarks' => 'required',
'launch_date' => 'required',
- 'expiry_date' => 'required'
+ 'expiry_date' => 'required',
+ 'monthly_fee' => 'sometimes'
]);
+ // dd($request->all());
$auth_user = session('current_user');
#$network = Models\NetworkOps::find($request->network);
- $mnoCountry = $this->getMnoCountry($request->network);
- if ($mnoCountry == false) {
- $data = ['code' => 3, 'msg' => 'Your request could not be handled at this time'];
- return response()->json($data, 200);
- }
+ // $mnoCountry = $this->getMNO($request->network);
+ // if ($mnoCountry == false) {
+ // $data = ['code' => 3, 'msg' => 'Your request could not be handled at this time'];
+ // return response()->json($data, 200);
+ // }
/*
$networks_raw = [
'AirtelTigo GH' => 'AirtelTigo GH',
@@ -498,7 +475,7 @@ class ClientsController extends Controller
'name' => $request->name,
'client_id' => $request->client_id,
'network' => $request->network,
- 'country' => $mnoCountry, //$network->country,
+ // 'country' => $mnoCountry, //$network->country,
'shortcode' => $request->shortcode,
'code_type' => $request->code_type,
'toll_free' => $request->toll_free,
@@ -506,13 +483,19 @@ class ClientsController extends Controller
'launch_date' => $request->launch_date,
'expiry_date' => $request->expiry_date,
'status' => $request->status
+
];
+
+ // dd($shortcode_arr);
if ($request->has('remarks')) {
$shortcode_arr['remarks'] = $request->remarks;
}
-
+ if ($request->has('monthly_fee')) {
+ $shortcode_arr['monthly_fee'] = $request->monthly_fee;
+ }
+
$result = Models\ClientShortCode::create($shortcode_arr);
-
+ $client = Models\Client::find($request->client_id);
if ($result) {
$data = ['code' => 1, 'msg' => 'ShortCode Details successfully added'];
}
@@ -521,7 +504,7 @@ class ClientsController extends Controller
}
$user_id = session('current_user.id');
$username = session('current_user.name');
- $content = "User ID : " . $user_id . " (" . $username . ") Added new short code";
+ $content = "User ID : " . $user_id . " (" . $username . ") Added new short code for " . $client->name;
$this->logUsersActivity($type = 'staff', $content);
return response()->json($data, 200);
}
@@ -535,6 +518,7 @@ class ClientsController extends Controller
'invoice_date' => 'required',
'invoice_status' => 'required'
]);
+
$auth_user = session('current_user');
$payment = Models\ClientPayment::findOrFail($request->payment_id);
@@ -542,9 +526,31 @@ class ClientsController extends Controller
$payment->invoice_amount = $request->invoice_amount;
$payment->invoice_date = $request->invoice_date;
$payment->invoice_status = $request->invoice_status;
+ $payment->short_code = ($request->short_code) ? $request->short_code : "";
+
$payment->services = implode(',', $request->services);
$result = $payment->save();
-
+ $client = Models\Client::find($request->client_id);
+ if ($request->has('short_code')) {
+ $short_code_list = Models\ClientShortCode::where('client_id', $request->client_id)->get();
+
+ $finance_arr = [
+ 'invoice_number' => $request->invoice_number,
+ 'invoice_amount' => $request->invoice_amount,
+ 'invoice_date' => $request->invoice_date,
+ 'invoice_status' => $request->invoice_status,
+ 'short_code' => ($request->short_code) ? $request->short_code : "",
+ 'services' => implode(',', $request->services),
+ 'user_id' => $auth_user['id'],
+ 'client_id' => $request->client_id
+ ];
+ if ($request->has('remarks')) {
+ $finance_arr['remarks'] = $request->remarks;
+ }
+ $message_body = $auth_user['name'] . " has updated a Short Code ($request->short_code) Payment entry for " . $client->name;
+ #dispatch(new SendShortCodeListToFinance($short_code_list, $message_body, $finance_arr));
+ }
+
if ($result) {
$data = ['code' => 1, 'msg' => 'Payment Details successfully updated'];
}
@@ -553,8 +559,11 @@ class ClientsController extends Controller
}
$user_id = session('current_user.id');
$username = session('current_user.name');
- $content = "User ID : " . $user_id . " (" . $username . ") updated an existing payment record";
+ $content = "User ID : " . $user_id . " (" . $username . ") updated an existing payment record for " . $client->name;
$this->logUsersActivity($type = 'staff', $content);
+
+
+
return response()->json($data, 200);
}
public function shortCodeUpdate(Request $request){
@@ -564,6 +573,7 @@ class ClientsController extends Controller
'shortcode' => 'required',
'code_type' => 'required',
'toll_free' => 'required',
+ 'monthly_fee' => 'sometimes',
'status' => 'required',
'remarks' => 'required',
'launch_date' => 'required',
@@ -592,18 +602,21 @@ class ClientsController extends Controller
if ($request->has('remarks')) {
$shortcode_arr['remarks'] = $request->remarks;
}
+ if ($request->has('monthly_fee')) {
+ $shortcode_arr['monthly_fee'] = $request->monthly_fee;
+ }
// $payment = Models\ClientShortCode::findOrFail($request->shortcode_id);
$result = Models\ClientShortCode::where('id', $request->shortcode_id)->update($shortcode_arr);
if ($result) {
- $data = ['code' => 1, 'msg' => 'Payment Details successfully updated'];
+ $data = ['code' => 1, 'msg' => 'Short Code Details successfully updated'];
}
else{
$data = ['code' => 3, 'msg' => 'Your request could not be handled at this time'];
}
$user_id = session('current_user.id');
$username = session('current_user.name');
- $content = "User ID : " . $user_id . " (" . $username . ") updated short code enty";
+ $content = "User ID : " . $user_id . " (" . $username . ") updated short code enty for " . $request->short_code;
$this->logUsersActivity($type = 'staff', $content);
return response()->json($data, 200);
}
@@ -614,7 +627,6 @@ class ClientsController extends Controller
* @return \Illuminate\Http\Response
*/
public function show($id){
- //with('short_code_info')->
$showclient = Models\Client::with('service_info', 'country_flag_info', 'auth_user_info', 'short_code_info')->find($id);
//$clientModel = new Models\Client;
/*
@@ -639,6 +651,12 @@ class ClientsController extends Controller
$service_type_names = Models\Service::pluck('name', 'name');
$show_services = Models\ClientCategory::where('client_id', $id)->get();
//$networks_raw = ['AirtelTigo GH' => 'AirtelTigo GH','MTN GH' => 'MTN GH', 'Airtel MW' => 'Airtel MW', 'Airtel Zambia' => 'Airtel Zambia', 'TNM MW' => 'TNM MW', 'Airtel MW' => 'Airtel MW'];
+ // $networks_raw_two = Models\NetworkOps::pluck('country', 'id');
+ // dd($networks_raw_two);
+ $country_networks = \DB::table('network_operators')->Select(\DB::raw('id, concat(name, " (", country, ")") AS network'))->orderBy('network')->pluck('network', 'network');
+ // $country_networks = \DB::table('network_operators')->Select(\DB::raw('concat(name, " (", country, ")") AS network)')->orderBy('network')->get()->toArray();
+ // $country_networks = \DB::table('network_operators')->Select(\DB::raw('concat(name, " (", country, ")") AS network)'))->pluck('network', 'network');
+
$networks_raw = [
'AirtelTigo GH' => 'AirtelTigo GH',
'MTN GH' => 'MTN GH',
@@ -652,12 +670,16 @@ class ClientsController extends Controller
'Orange Kenya' => 'Orange Kenya'
];
//->where('highlight', 'NO')
- $show_notes = Models\ClientNote::with('created_by_info', 'client_info')->where('client_id', $id)->orderBy('id', 'DESC')->get()->take(20);
+ $show_notes = Models\ClientNote::with('created_by_info', 'client_info')->where('client_id', $id)->orderBy('created_at', 'DESC')->get()->take(20);
+ $show_notes_highlight = Models\ClientNote::with('created_by_info', 'client_info')->where('client_id', $id)->where('highlight', 'YES')->orderBy('created_at', 'DESC')->get()->take(1);
+
$voice_codes = Models\ClientShortCode::where('client_id', $id)->where('code_type', 'voice')->get();
$sms_codes = Models\ClientShortCode::where('client_id', $id)->where('code_type', 'sms')->get();
$ussd_codes = Models\ClientShortCode::where('client_id', $id)->where('code_type', 'ussd')->get();
$recent_payments = Models\ClientPayment::where('client_id', $id)->orderBy('id', 'DESC')->get();
+
$countries = Models\Country::pluck('en_short_name','en_short_name');
+ // dd($countries);
$networks = Models\NetworkOps::pluck('name', 'id');
$support_fees = Models\ClientSupportFees::where('client_id', $id)->orderBy('id', 'DESC')->get();
@@ -739,6 +761,7 @@ class ClientsController extends Controller
'service_type' => $service_type,
'service_type_names' => $service_type_names,
'show_notes' => $show_notes,
+ 'show_notes_highlight' => $show_notes_highlight,
'status_bg' => $status_bg,
'progress_status_bg' => $progress_status_bg,
'voice_codes' => $voice_codes,
@@ -755,13 +778,17 @@ class ClientsController extends Controller
'support_fees' => $support_fees,
'recurring_arr' => $recurring_arr,
'client_sender_ids' => $client_sender_ids,
- 'sender_id_statuses' => $sender_id_statuses
+ 'sender_id_statuses' => $sender_id_statuses,
+ 'country_network_arr' => $country_networks,
+ 'mnos_arr' => ['' => '-- Select Country first --']
];
// dump($client_sender_ids);
// foreach ($client_sender_ids as $value) {
// dd($value->network_info->name);
// }
- return view('client.show', $data);
+ // dd($data);
+ // return view('client.show_original_copy', $data);
+ return view('client.show_test', $data);
}
public function showReadonly($id){
@@ -1109,7 +1136,7 @@ class ClientsController extends Controller
* @return \Illuminate\Http\Response
*/
public function update(Requests\UpdateClientRequest $request, $id){
- // dump($request->all());
+ // dd($request->all());
// \DB::connection()->enableQueryLog();
$client_update = Models\Client::find($id);
$paperless = new PaperLessNgx();
@@ -1155,25 +1182,25 @@ class ClientsController extends Controller
dispatch(new SendOnboardingCompletedEmailAlert($client));
}
}
-
-
$existing_documents = Models\ClientFile::where('client_id', $id)->get();
if ($request->has('document_one') && $request->has('document_one_name')) {
if ($request->file('document_one')->isValid()) {
- $filename = "erp_" . time() . str_random(4) . "." . $request->document_one->extension();
+ $filename = "erp_" . time() . str_random(4) . "." . $request->document_one->extension();
$request->document_one->storeAs('client_files', $filename, 'public');
$document_arr['file_path'] = $filename;
$client_update->name = $request->name;
$store_location = "client_files";
- $top = $paperless->processPaperlessFile($request->document_one_name, $request->document_one_name, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->document_one_name, $request->document_one_name, $filename, $store_location);
$document_arr['file_extension'] = $request->document_one->extension();
$document_arr['file_reff'] = time() . uniqid();
$document_arr['name'] = $request->document_one_name;
$document_arr['created_by'] = session('current_user.id');
//$document_arr['client_id'] = $id;
- $result = Models\ClientFile::create($document_arr, ['client_id' => $id]);
+ //$document_arr,
+ // $result = Models\ClientNote::updateOrCreate(['services' => $request->services, 'client_id' => $request->client_id, 'auth_user_id' => $auth_user['id'] ], $notes_arr);
+ $result = Models\ClientFile::updateOrCreate(['client_id' => $id, 'name' => $request->document_one_name], $document_arr);
}
}
if ($request->has('document_two') && $request->has('document_two_name')) {
@@ -1183,7 +1210,7 @@ class ClientsController extends Controller
$document_arr['file_path'] = $filename;
$client_update->name = $request->name;
$store_location = "client_files";
- $top = $paperless->processPaperlessFile($request->document_two_name, $request->document_two_name, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->document_two_name, $request->document_two_name, $filename, $store_location);
$document_arr['file_extension'] = $request->document_two->extension();
@@ -1193,7 +1220,7 @@ class ClientsController extends Controller
$document_arr['client_id'] = $id;
// $result = Models\ClientFile::create($document_arr);
//$document_arr['client_id'] = $id;
- $result = Models\ClientFile::create($document_arr, ['client_id' => $id]);
+ $result = Models\ClientFile::updateOrCreate(['client_id' => $id, 'name' => $request->document_two_name], $document_arr);
}
}
if ($request->has('document_three') && $request->has('document_three_name')) {
@@ -1204,7 +1231,7 @@ class ClientsController extends Controller
$client_update->name = $request->name;
$store_location = "client_files";
- $top = $paperless->processPaperlessFile($request->document_three_name, $request->document_three_name, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->document_three_name, $request->document_three_name, $filename, $store_location);
$document_arr['file_extension'] = $request->document_three->extension();
$document_arr['file_reff'] = time() . uniqid();
@@ -1213,7 +1240,7 @@ class ClientsController extends Controller
$document_arr['client_id'] = $id;
// $result = Models\ClientFile::create($document_arr);
//$document_arr['client_id'] = $id;
- $result = Models\ClientFile::create($document_arr, ['client_id' => $id]);
+ $result = Models\ClientFile::updateOrCreate(['client_id' => $id, 'name' => $request->document_three_name], $document_arr);
}
}
if ($request->has('other_document') && $request->has('other_document_name')) {
@@ -1224,19 +1251,18 @@ class ClientsController extends Controller
$client_update->name = $request->name;
$store_location = "client_files";
- $top = $paperless->processPaperlessFile($request->other_document_name, $request->other_document_name, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->other_document_name, $request->other_document_name, $filename, $store_location);
$document_arr['file_extension'] = $request->other_document->extension();
$document_arr['file_reff'] = time() . uniqid();
- $document_arr['name'] = $request->document_three_name;
+ $document_arr['name'] = ($request->other_document_name == null) ? 'Other Document' : $request->other_document_name;
$document_arr['created_by'] = session('current_user.id');
$document_arr['client_id'] = $id;
- $result = Models\ClientFile::create($document_arr);
+ // dd($document_arr);
+ $result = Models\ClientFile::updateOrCreate(['client_id' => $id, 'name' => $request->other_document_name], $document_arr);
}
}
-
-
$client_update->name = $request->name;
$client_update->email = $request->email;
$client_update->phone = $request->phone ?? "";
@@ -1363,16 +1389,15 @@ class ClientsController extends Controller
return true;
}
public function storeFiles(AddFilesRequest $request){
-
$document_arr = $request->except('document');
if ($request->hasFile('document')) {
if ($request->file('document')->isValid()) {
- $filename = "erp_" . time() . "." . $request->document->extension();
+ $filename = "erp_" . time() . "." . $request->document->extension();
$request->document->storeAs('client_files', $filename, 'public');
$document_arr['document'] = json_encode([$filename]);
}
}
-
+ $client = Models\Client::find($request->client_id);
$document_arr['file_extension'] = $request->document->extension();
$document_arr['file_reff'] = time() . uniqid();
$document_arr['last_modified_by'] = session('current_user.id');
@@ -1385,11 +1410,16 @@ class ClientsController extends Controller
else{
$data = ['code' => 3, 'msg' => 'Your request could not be handled at this time'];
}
+ $user_id = session('current_user.id');
+ $username = session('current_user.name');
+ $content = "User ID : " . $user_id . " (" . $username . ") Document successfully uploaded for " . $client->name;
+ $this->logUsersActivity($type = 'staff', $content);
return response()->json($data, 200);
}
public function getClientFile($id){
$client_file = Models\ClientFile::with('client_info')->findOrFail($id);
+ // dd($client_file);
//PDF file is stored under project/public/download/info.pdf
$file = public_path('documents/client_files/') . $client_file->file_path;
@@ -1425,6 +1455,12 @@ class ClientsController extends Controller
return $string;
}
+ public function getMNO($id){
+ $mno = Models\NetworkOps::find($id);
+
+ return $mno;
+
+ }
public function getMnoCountry($network){
$networks_raw = [
'AirtelTigo GH' => 'AirtelTigo GH',
diff --git a/app/Http/Controllers/ContractRenewalReminderController.php b/app/Http/Controllers/ContractRenewalReminderController.php
index 0ceb8b3..7940b92 100644
--- a/app/Http/Controllers/ContractRenewalReminderController.php
+++ b/app/Http/Controllers/ContractRenewalReminderController.php
@@ -71,11 +71,14 @@ class ContractRenewalReminderController extends Controller
break;
}
}
- if ($difference->days <= 10) {
- $renew_ready['client_name'] = $value->client_info->name;
- $renew_ready['account_manager_email'] = $value->created_by_info->email;
- $renew_ready['days_to_renew'] = $difference->days;
- dispatch(new SendSupportFeesReminderEmailAlert($renew_ready));
+ if (isset($difference)) {
+ //will review this later
+ if ($difference->days <= 10) {
+ $renew_ready['client_name'] = $value->client_info->name;
+ $renew_ready['account_manager_email'] = $value->created_by_info->email;
+ $renew_ready['days_to_renew'] = $difference->days;
+ dispatch(new SendSupportFeesReminderEmailAlert($renew_ready));
+ }
}
\Log::info('Support Fees Reminder schedule has successfully ran ');
if (count($renew_ready) > 0) {
diff --git a/app/Http/Controllers/GeneralDocumentsController.php b/app/Http/Controllers/GeneralDocumentsController.php
index c272e91..0046f08 100644
--- a/app/Http/Controllers/GeneralDocumentsController.php
+++ b/app/Http/Controllers/GeneralDocumentsController.php
@@ -140,7 +140,7 @@ class GeneralDocumentsController extends Controller
#sendToPaperLess
$store_location = "general_files";
- $top = $paperless->processPaperlessFile($request->document_one_name, $request->document_one_category, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->document_one_name, $request->document_one_category, $filename, $store_location);
$document_arr['file_extension'] = $request->document_one->extension();
$document_arr['file_reff'] = time() . uniqid();
@@ -158,7 +158,7 @@ class GeneralDocumentsController extends Controller
#sendToPaperLess
$store_location = "general_files";
- $top = $paperless->processPaperlessFile($request->document_two_name, $request->document_two_category, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->document_two_name, $request->document_two_category, $filename, $store_location);
$document_arr['file_extension'] = $request->document_two->extension();
$document_arr['file_reff'] = time() . uniqid();
@@ -176,7 +176,7 @@ class GeneralDocumentsController extends Controller
#sendToPaperLess
$store_location = "general_files";
- $top = $paperless->processPaperlessFile($request->document_three_name, $request->document_three_category, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->document_three_name, $request->document_three_category, $filename, $store_location);
$document_arr['file_extension'] = $request->document_three->extension();
$document_arr['file_reff'] = time() . uniqid();
diff --git a/app/Http/Controllers/HolidaysController.php b/app/Http/Controllers/HolidaysController.php
new file mode 100644
index 0000000..cde9e40
--- /dev/null
+++ b/app/Http/Controllers/HolidaysController.php
@@ -0,0 +1,13 @@
+json($mno_arr);
}
+ public function getCountryNetworks(Request $request){
+ $mno_arr = Models\NetworkOps::where('country', $request->country)->pluck('name', 'id');
+ // dd(count($mno_arr));
+ if (count($mno_arr) == 0) {
+ $data = ['code' => '2', 'msg' => 'No MNOs found in the selected country'];
+ }
+ else{
+ $data = ['code' => '1', 'mnos' => $mno_arr,];
+ }
+ return response()->json($data);
+ }
/**
* Show the form for creating a new resource.
@@ -388,7 +399,7 @@ class NetworkOperatorsController extends Controller
$operator_update->name = $request->name;
$store_location = "mno_files";
- $top = $paperless->processPaperlessFile($request->document_one_name, $request->document_one_category, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->document_one_name, $request->document_one_category, $filename, $store_location);
$document_arr['file_extension'] = $request->document_one->extension();
$document_arr['file_reff'] = time() . uniqid();
@@ -406,7 +417,7 @@ class NetworkOperatorsController extends Controller
$operator_update->name = $request->name;
$store_location = "mno_files";
- $top = $paperless->processPaperlessFile($request->document_two_name, $request->document_two_category, $filename, $store_location);
+ #$top = $paperless->processPaperlessFile($request->document_two_name, $request->document_two_category, $filename, $store_location);
$document_arr['file_extension'] = $request->document_two->extension();
$document_arr['file_reff'] = time() . uniqid();
@@ -424,7 +435,7 @@ class NetworkOperatorsController extends Controller
// $operator_update->name = $request->name;
$store_location = "mno_files";
- $top = $paperless->processPaperlessFile("sliding_rate", 'rates', $filename, $store_location);
+ #$top = $paperless->processPaperlessFile("sliding_rate", 'rates', $filename, $store_location);
$document_arr['file_extension'] = $request->sliding_rate_file->extension();
diff --git a/app/Http/Controllers/ReportsController.php b/app/Http/Controllers/ReportsController.php
index 66891e3..4cb7a4c 100644
--- a/app/Http/Controllers/ReportsController.php
+++ b/app/Http/Controllers/ReportsController.php
@@ -15,8 +15,38 @@ use Carbon\Carbon;
-class ReportsController extends Controller
-{
+class ReportsController extends Controller{
+ public function overview(){
+ $document_arr = \DB::table('general_documents')
+ ->select(\DB::raw('count(*) as docs_count, category'))
+ ->groupBy('category')
+ ->get();
+
+ $client_docs = \DB::table('client_files')
+ ->join('clients', 'clients.id', '=', 'client_files.client_id')
+ ->select(\DB::raw('count(*) as docs_count, clients.name, client_files.client_id'))
+ ->groupBy('clients.name', 'client_files.client_id')
+ ->get();
+
+ $mno_docs = \DB::table('mno_files')
+ ->join('network_operators', 'network_operators.id', '=', 'mno_files.mno_id')
+ ->select(\DB::raw('count(*) as docs_count, network_operators.name, mno_files.mno_id'))
+ ->groupBy('network_operators.name', 'mno_files.mno_id')
+ ->get();
+
+
+ $data = [
+ 'page_title' => 'Report Overview',
+ // 'vas_clients' => $vas_clients,
+ // 'domain_clients' => $domain_clients,
+ // 'recent_clients' => $recent_clients,
+ // 'user_activities' => $user_activities,
+ 'current_user' => session('current_user'),
+ // 'client_docs' => $client_docs,
+ 'mno_docs' => $mno_docs
+ ];
+ return view('reports.overview', $data);
+ }
public function getRecentClients(){
$data = [
'page_title' => 'Recent Clients',
@@ -43,4 +73,70 @@ class ReportsController extends Controller
return response()->json($clients);
}
+
+
+ public function getUserActivities(){
+ #$user_activities = Models\UserActivity::where('user_id', '>', '1')->with('userInfo')->orderBy('created_at', 'DESC')->take(5)->get();
+ $data = [
+ 'page_title' => 'User Activities',
+ 'current_user' => session('current_user')
+ ];
+ return view('reports.user-activities', $data);
+ }
+
+ public function getUserActivitiesJson(Request $request){
+ #$user_activities = Models\UserActivity::where('user_id', '>', '1')->with('userInfo')->orderBy('created_at', 'DESC')->take(5)->get();
+ $user_activities = \DB::table('user_activities')
+ ->join('auth_users', 'auth_users.id', '=', 'user_activities.user_id')
+ ->select('user_activities.id','auth_users.name', 'user_activities.content', 'user_activities.ip_address', 'user_activities.created_at',
+ 'user_activities.updated_at')
+ ->whereRaw("user_activities.type = 'staff'")
+ ->orderBy('user_activities.created_at', 'DESC')
+ ->get();
+
+
+ if($request->has('keyword')){
+ $keyword = $request->keyword;
+ $user_activities = \DB::table('user_activities')
+ ->join('auth_users', 'auth_users.id', '=', 'user_activities.user_id')
+ ->select('user_activities.id','auth_users.name', 'user_activities.content', 'user_activities.ip_address', 'user_activities.created_at', 'user_activities.updated_at')
+ ->whereRaw("user_activities.name like '%$keyword%' or user_activities.ip_address like '%$keyword%' OR user_activities.created_at like '%$keyword%' OR user_activities.updated_at like '%$keyword%'")
+ ->orderBy('user_activities.created_at', 'DESC')
+ ->get();
+ // ->paginate(15);
+ }
+ return response()->json($user_activities);
+ }
+
+ public function getAmNewClients(){
+ // $new_clients = Models\Client::where()
+ }
+
+ public function getAmNewNotes(){
+
+ }
+ public function getClientsByService(){
+ $data = [
+ 'page_title' => 'Clients By Service',
+ 'current_user' => session('current_user')
+ ];
+ return view('reports.clients-by-service', $data);
+ }
+ public function getClientsByServiceJson(){
+ $keyword = "USSD";
+ $clients = \DB::table('clients')
+ ->join('auth_users AS aumngr', 'aumngr.id', '=', 'clients.auth_user_id')
+ ->select('clients.name', 'clients.services', 'clients.status', 'clients.country', 'aumngr.name As accountMgr', 'clients.created_at')
+ ->whereRaw("services like '%$keyword%'")
+ ->orderBy('name', 'ASC')->get();
+
+ return response()->json($clients);
+
+ }
+ public function name(){
+
+ $list = ['first', 'second', 'third'];
+ // return $list[2];
+ print($list[2]);
+ }
}
diff --git a/app/Http/Controllers/SenderIdController.php b/app/Http/Controllers/SenderIdController.php
index 66c2817..d8dcfa9 100644
--- a/app/Http/Controllers/SenderIdController.php
+++ b/app/Http/Controllers/SenderIdController.php
@@ -27,7 +27,7 @@ class SenderIdController extends Controller
->join('staff_members AS staffmodify', 'staffmodify.id', '=', 'sender_ids.last_modified_by')
->join('network_operators', 'network_operators.id', '=', 'sender_ids.network_id')
->join('clients', 'clients.id', '=', 'sender_ids.client_id')
- ->select('sender_ids.id', 'clients.name AS clientName', 'network_operators.name AS networkName', 'network_operators.country', 'sender_ids.senderid', 'sender_ids.status', 'sender_ids.network_id', 'network_operators.country','sender_ids.remarks', 'staffcreate.name As createdBy', 'staffmodify.name AS modifiedBy')
+ ->select('sender_ids.id', 'clients.name AS clientName', 'network_operators.name AS networkName', 'network_operators.country', 'sender_ids.senderid', 'sender_ids.status', 'sender_ids.network_id', 'network_operators.country','sender_ids.remarks', 'staffcreate.name As createdBy','sender_ids.direct_mno', 'staffmodify.name AS modifiedBy')
->orderBy('sender_ids.senderid', 'ASC')
->paginate(15);
@@ -38,8 +38,8 @@ class SenderIdController extends Controller
->join('staff_members AS staffmodify', 'staffmodify.id', '=', 'sender_ids.last_modified_by')
->join('network_operators', 'network_operators.id', '=', 'sender_ids.network_id')
->join('clients', 'clients.id', '=', 'sender_ids.client_id')
- ->select('sender_ids.id', 'clients.name AS clientName', 'network_operators.name AS networkName', 'network_operators.country', 'sender_ids.senderid', 'sender_ids.status', 'sender_ids.network_id', 'network_operators.country','sender_ids.remarks', 'staffcreate.name As createdBy', 'staffmodify.name AS modifiedBy')
- ->whereRaw("sender_ids.senderid LIKE '%$keyword%' OR sender_ids.status LIKE '%$keyword%' OR network_operators.name LIKE '%$keyword%' OR network_operators.country LIKE '%$keyword%' OR staffcreate.name LIKE '%$keyword%' OR staffmodify.name LIKE '%$keyword%' OR clients.name LIKE '%$keyword%'")
+ ->select('sender_ids.id', 'clients.name AS clientName', 'network_operators.name AS networkName', 'network_operators.country', 'sender_ids.senderid', 'sender_ids.status', 'sender_ids.network_id', 'network_operators.country','sender_ids.remarks', 'staffcreate.name As createdBy', 'sender_ids.direct_mno', 'staffmodify.name AS modifiedBy')
+ ->whereRaw("sender_ids.senderid LIKE '%$keyword%' OR sender_ids.status LIKE '%$keyword%' OR network_operators.name LIKE '%$keyword%' OR network_operators.country LIKE '%$keyword%' OR staffcreate.name LIKE '%$keyword%' OR staffmodify.name LIKE '%$keyword%' OR clients.name LIKE '%$keyword%' OR sender_ids.direct_mno LIKE '%$keyword%'")
->orderBy('sender_ids.senderid', 'ASC')
->paginate(15);
}
@@ -51,6 +51,8 @@ class SenderIdController extends Controller
$networks = \DB::table('network_operators')->Select(\DB::raw('id, concat(name, " (", country, ")") AS network'))->orderBy('network')->get()->toArray();
$network_arr = array_pluck($networks, 'network', 'id');
+ $direct_mno_arr = ['YES' => 'YES', 'NO' => 'NO'];
+
// dd($network_arr);
#$network_arr = array_combine($network_arr, $network_arr);
@@ -61,9 +63,10 @@ class SenderIdController extends Controller
$data = [
'page_title' => 'Create Sender ID',
- 'network_arr' => $network_arr,
+ 'network_arr' => [], // $network_arr,
'status' => $status,
'clients' => $clients,
+ 'direct_mno_arr' => $direct_mno_arr,
'staffmembers' => $staffmembers
];
@@ -87,7 +90,16 @@ class SenderIdController extends Controller
$senderid_arr['created_by'] = session('current_user.id');
$senderid_arr['last_modified_by'] = session('current_user.id');
$senderid_arr['remarks'] = $request->remarks ?? '';
-
+ if ($request->direct_mno == 'NO') {
+ $mno_world_wide = Models\Worldwidemno::find($request->network_id);
+ // code... save in the network ops with status as non-direct ... user createOrUpdate method
+ $network_ops_arr['name'] = $mno_world_wide->network;
+ $network_ops_arr['country'] = $mno_world_wide->country;
+ $network_ops_arr['name'] = $mno_world_wide->network;
+ $network_ops_arr['direct_business'] = 'NO'; // $mno_world_wide->network;
+ $result = Models\NetworkOps::updateOrCreate(['name' => $mno_world_wide->network, 'country' => $mno_world_wide->country, 'direct_business' => 'NO'], $network_ops_arr);
+ }
+ // dd($senderid_arr);
$result = Models\SenderId::create($senderid_arr);
@@ -169,4 +181,18 @@ class SenderIdController extends Controller
return response()->json([ 'code' => 3, 'msg' => 'Request could not be handled at this time']);
}
}
+
+
+ public function getMNOList($type){
+ if ($type == 'YES') {
+ $data_arr = \DB::table('network_operators')->Select(\DB::raw('id, concat(name, " (", country, ")") AS name'))->orderBy('country')->get()->toArray();
+ }
+ elseif ($type == 'NO') {
+ $data_arr = \DB::table('mno_world_wide')->Select(\DB::raw('id, concat(network, " (", country, ")") AS name'))->orderBy('country')->get()->toArray();
+ }
+ else{
+ return response()->json(['code' => 3, 'msg' => 'invalid request']);
+ }
+ return response()->json(['code' => 1, 'msg' => 'success', 'result' => $data_arr]);
+ }
}
diff --git a/app/Http/Controllers/ShortCodesController.php b/app/Http/Controllers/ShortCodesController.php
index b4af376..7c128f5 100644
--- a/app/Http/Controllers/ShortCodesController.php
+++ b/app/Http/Controllers/ShortCodesController.php
@@ -26,22 +26,36 @@ class ShortCodesController extends Controller{
->select('code_type', \DB::raw('count(*) as total'))
->groupBy('code_type')
->get();
+ $networks_raw = [
+ 'AirtelTigo GH' => 'AirtelTigo GH',
+ 'MTN GH' => 'MTN GH',
+ 'Airtel MW' => 'Airtel MW',
+ 'Airtel Zambia' => 'Airtel Zambia',
+ 'TNM MW' => 'TNM MW',
+ 'Airtel MW' => 'Airtel MW',
+ 'Safaricom Kenya' => 'Safaricom Kenya',
+ 'Airtel Kenya' => 'Airtel Kenya',
+ 'Telkom Kenya' => 'Telkom Kenya',
+ 'Orange Kenya' => 'Orange Kenya'
+ ];
+ sort($networks_raw);
$data = [
'page_title' => 'Short Codes',
'type' => 'SMS',
'codes_data' => $codes_data,
+ 'networks_raw' => array_combine($networks_raw, $networks_raw),
'current_user' => session('current_user')
];
return view('shortcodes.smsindex', $data);
}
public function getShortCodesJson(Request $request){
- #$this->log_query();
+ $this->log_query();
//$codes_data = Models\ClientShortCode::with('client_info', 'update_info')->where('code_type', 'sms')->orderBy('id', 'DESC')->get();
$shortcode_arr = \DB::table('client_short_codes')
->join('auth_users', 'auth_users.id', '=', 'client_short_codes.last_updated_by')
->join('clients', 'clients.id', '=', 'client_short_codes.client_id')
- ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
+ ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.monthly_fee', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
->where('client_short_codes.code_type', 'sms')
->orderBy('client_short_codes.shortcode', 'ASC')
->paginate(15);
@@ -52,8 +66,8 @@ class ShortCodesController extends Controller{
$shortcode_arr = \DB::table('client_short_codes')
->join('auth_users', 'auth_users.id', '=', 'client_short_codes.last_updated_by')
->join('clients', 'clients.id', '=', 'client_short_codes.client_id')
- ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
- ->whereRaw("code_type = '$code_type' AND (client_short_codes.name LIKE '%$keyword%' OR client_short_codes.shortcode LIKE '%$keyword%' OR client_short_codes.status LIKE '%$keyword%' OR client_short_codes.network LIKE '%$keyword%' OR client_short_codes.toll_free LIKE '%$keyword%' OR client_short_codes.launch_date LIKE '%$keyword%' OR client_short_codes.expiry_date LIKE '%$keyword%' OR clients.name LIKE '%$keyword%' OR auth_users.name LIKE '%$keyword%')")
+ ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.monthly_fee', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
+ ->whereRaw("code_type = '$code_type' AND (client_short_codes.name LIKE '%$keyword%' OR client_short_codes.shortcode LIKE '%$keyword%' OR client_short_codes.status LIKE '%$keyword%' OR client_short_codes.network LIKE '%$keyword%' OR client_short_codes.toll_free LIKE '%$keyword%' OR client_short_codes.monthly_fee LIKE '%$keyword%' OR client_short_codes.launch_date LIKE '%$keyword%' OR client_short_codes.expiry_date LIKE '%$keyword%' OR clients.name LIKE '%$keyword%' OR auth_users.name LIKE '%$keyword%')")
// ->where('code_type', $code_type)
->orderBy('client_short_codes.shortcode', 'ASC')
->paginate(15);
@@ -82,7 +96,7 @@ class ShortCodesController extends Controller{
$shortcode_arr = \DB::table('client_short_codes')
->join('auth_users', 'auth_users.id', '=', 'client_short_codes.last_updated_by')
->join('clients', 'clients.id', '=', 'client_short_codes.client_id')
- ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
+ ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.monthly_fee', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
->where('client_short_codes.code_type', 'ussd')
->orderBy('client_short_codes.shortcode', 'ASC')
->paginate(15);
@@ -93,8 +107,8 @@ class ShortCodesController extends Controller{
$shortcode_arr = \DB::table('client_short_codes')
->join('auth_users', 'auth_users.id', '=', 'client_short_codes.last_updated_by')
->join('clients', 'clients.id', '=', 'client_short_codes.client_id')
- ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
- ->whereRaw("code_type = '$code_type' AND (client_short_codes.name LIKE '%$keyword%' OR client_short_codes.shortcode LIKE '%$keyword%' OR client_short_codes.status LIKE '%$keyword%' OR client_short_codes.network LIKE '%$keyword%' OR client_short_codes.toll_free LIKE '%$keyword%' OR client_short_codes.launch_date LIKE '%$keyword%' OR client_short_codes.expiry_date LIKE '%$keyword%' OR clients.name LIKE '%$keyword%' OR auth_users.name LIKE '%$keyword%')")
+ ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.monthly_fee', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
+ ->whereRaw("code_type = '$code_type' AND (client_short_codes.name LIKE '%$keyword%' OR client_short_codes.shortcode LIKE '%$keyword%' OR client_short_codes.status LIKE '%$keyword%' OR client_short_codes.network LIKE '%$keyword%' OR client_short_codes.toll_free LIKE '%$keyword%' OR client_short_codes.monthly_fee LIKE '%$keyword%' OR client_short_codes.launch_date LIKE '%$keyword%' OR client_short_codes.expiry_date LIKE '%$keyword%' OR clients.name LIKE '%$keyword%' OR auth_users.name LIKE '%$keyword%')")
// ->where('code_type', $code_type)
->orderBy('client_short_codes.shortcode', 'ASC')
->paginate(15);
@@ -124,7 +138,7 @@ class ShortCodesController extends Controller{
$shortcode_arr = \DB::table('client_short_codes')
->join('auth_users', 'auth_users.id', '=', 'client_short_codes.last_updated_by')
->join('clients', 'clients.id', '=', 'client_short_codes.client_id')
- ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
+ ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.monthly_fee','client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
->where('client_short_codes.code_type', 'voice')
->orderBy('client_short_codes.shortcode', 'ASC')
->paginate(15);
@@ -135,8 +149,8 @@ class ShortCodesController extends Controller{
$shortcode_arr = \DB::table('client_short_codes')
->join('auth_users', 'auth_users.id', '=', 'client_short_codes.last_updated_by')
->join('clients', 'clients.id', '=', 'client_short_codes.client_id')
- ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
- ->whereRaw("code_type = '$code_type' AND (client_short_codes.name LIKE '%$keyword%' OR client_short_codes.shortcode LIKE '%$keyword%' OR client_short_codes.status LIKE '%$keyword%' OR client_short_codes.network LIKE '%$keyword%' OR client_short_codes.toll_free LIKE '%$keyword%' OR client_short_codes.launch_date LIKE '%$keyword%' OR client_short_codes.expiry_date LIKE '%$keyword%' OR clients.name LIKE '%$keyword%' OR auth_users.name LIKE '%$keyword%')")
+ ->select('client_short_codes.id', 'client_short_codes.name', 'client_short_codes.shortcode', 'clients.name AS clientName', 'client_short_codes.network', 'client_short_codes.toll_free', 'client_short_codes.monthly_fee', 'client_short_codes.status', 'client_short_codes.remarks', 'client_short_codes.launch_date', 'client_short_codes.expiry_date', 'client_short_codes.last_updated_by', 'auth_users.name AS modifiedBy')
+ ->whereRaw("code_type = '$code_type' AND (client_short_codes.name LIKE '%$keyword%' OR client_short_codes.shortcode LIKE '%$keyword%' OR client_short_codes.status LIKE '%$keyword%' OR client_short_codes.network LIKE '%$keyword%' OR client_short_codes.toll_free LIKE '%$keyword%' OR client_short_codes.monthly_fee LIKE '%$keyword%' OR client_short_codes.launch_date LIKE '%$keyword%' OR client_short_codes.expiry_date LIKE '%$keyword%' OR clients.name LIKE '%$keyword%' OR auth_users.name LIKE '%$keyword%')")
// ->where('code_type', $code_type)
->orderBy('client_short_codes.shortcode', 'ASC')
->paginate(15);
diff --git a/app/Http/Controllers/StaffMembersController.php b/app/Http/Controllers/StaffMembersController.php
index 2069f0d..8071849 100644
--- a/app/Http/Controllers/StaffMembersController.php
+++ b/app/Http/Controllers/StaffMembersController.php
@@ -9,6 +9,28 @@ use Session;
class StaffMembersController extends Controller
{
public function index(){
+ $staff_members_arr = Models\StaffMember::paginate(10);
+ // dd($staff_members_arr);
+
+ $data = [
+ 'page_title' => 'Staff Members',
+ 'staff_members' => $staff_members_arr,
+ 'current_user' => session('current_user')
+ ];
+ return view('staff_members.index-two', $data);
+ }
+ public function profile($staff_member_id){
+ $staff_member = Models\StaffMember::find($staff_member_id);
+ // dd($staff_member);
+
+ $data = [
+ 'page_title' => 'Staff Profile',
+ 'staff_member' => $staff_member,
+ 'current_user' => session('current_user')
+ ];
+ return view('staff_members.profile', $data);
+ }
+ public function indexOld(){
$staff_members_arr = new Models\StaffMember;
$data = [
'page_title' => 'Staff Members',
diff --git a/app/Http/Controllers/UtilityController.php b/app/Http/Controllers/UtilityController.php
index e9fb0a8..d6749f6 100644
--- a/app/Http/Controllers/UtilityController.php
+++ b/app/Http/Controllers/UtilityController.php
@@ -6,9 +6,8 @@ use Illuminate\Http\Request;
use App\Models;
use Spatie\Activitylog\Models\Activity;
-// use Illuminate\Contracts\Mail\Mailer;
-
-
+use Illuminate\Contracts\Mail\Mailer;
+use App\Jobs\SendTestEmail;
class UtilityController extends Controller
{
@@ -17,7 +16,8 @@ class UtilityController extends Controller
}
public function EmailTest(Mailer $mailer)
{
-
+ dispatch(new SendTestEmail());
+ /*
$emails = ['kwesi@click-mobile.com', 'kwesi_banson@hotmail.com'];
$data = [
@@ -30,6 +30,20 @@ class UtilityController extends Controller
$message->from('erp@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('New Notes');
});
+ */
+ /*
+ $emails = [
+ 'kwesi@click-mobile.com',
+ 'kwesi_banson@hotmail.com'
+ ];
+ $data = [];
+ $top = $mailer->send('emails.test', $data, function ($message) use ($data, $emails) {
+ $message->from('support@click-mobile.com', 'Click Mobile ERP');
+ $message->to($emails)->subject('Short Code Invoices');
+ });
+
+ dd($top);
+ */
}
/**
* maptest function to display the map view.
@@ -37,7 +51,6 @@ class UtilityController extends Controller
* @return Illuminate\View\View
*/
public function maptest(){
-
return view('utility.map');
}
@@ -145,5 +158,71 @@ class UtilityController extends Controller
dump($activity_up->subject); //returns the instance of NewsItem that was created
dump($activity_up->changes);
}
+
+ public function loadShortCodes(){
+ $short_codes_file = public_path('misc/client_short_codes.csv');
+ $codes_arr = file($short_codes_file);
+
+ dump($codes_arr);
+ // "Friendly Name"
+ // 1 => "Shortcode"
+ // 2 => "Network"
+ // 3 => "Client"
+ // 4 => "Status"
+ // 0 => "Nexmo"
+ // 1 => "40520"
+ // 2 => "Safaricom"
+ // 3 => "Nexmo"
+ // 4 => "LIVE\r\n"
+
+ $client_arr = [];
+ foreach ($codes_arr as $row) {
+ $row_arr = explode(',', $row);
+ $client_arr['name'] = trim($row_arr[0]);
+ $client_arr['shortcode'] = trim($row_arr[1]);
+ $client_arr['network'] = trim($row_arr[2]);
+ $client_arr['client'] = trim($row_arr[3]);
+ $client_arr['status'] = trim($row_arr[4]);
+
+ dd($client_arr);
+ }
+
+ }
+
+ public function getClient($name){
+
+ }
+ public function getNetwork($name){
+
+ }
+ public function processMnoWorldwideFile(){
+
+
+ $file = public_path('helper_documents/mcc_mnc_table.json');
+
+ $jsonData = file_get_contents($file);
+
+ // Decode the JSON string into an associative array
+ $dataArray = json_decode($jsonData, true);
+
+ if (json_last_error() === JSON_ERROR_NONE) {
+ $counter = 0;
+ foreach ($dataArray as $key => $value) {
+ $result = Models\Worldwidemno::create($value);
+ $counter++;
+ }
+ dump($counter . " Records found and inserted");
+ } else {
+ dump('Error decoding JSON: ' . json_last_error_msg());
+ }
+
+
+
+ // dd($file);
+ // $decoded = json_decode($file, true);
+ // dd($decoded);
+
+ }
+
}
// https://www.tokyvideo.com/video/sheena-the-queen-of-the-jungle-1984-movie-with-tanya-roberts-ted-wass-donovan-scott
diff --git a/app/Http/Controllers/VpnController.php b/app/Http/Controllers/VpnController.php
new file mode 100644
index 0000000..4bc6816
--- /dev/null
+++ b/app/Http/Controllers/VpnController.php
@@ -0,0 +1,156 @@
+with('mno_info')->paginate(15);
+ // dd($result);
+ $data = [
+ 'page_title' => 'infrastructure: VPN',
+ 'vpn_list' => $result
+ ];
+ // dd($result);
+ return view('vpn.index', $data);
+ }
+ public function indexBKK(){
+ $result = Models\VpnConfig::get();
+ // dd($result);
+ $data = [
+ 'page_title' => 'infrastructure: VPN',
+ 'vpn_list' => $result
+ ];
+ return view('vpn.index_test', $data);
+ }
+ public function index(){
+ $data = [
+ 'page_title' => 'Infrastructure: VPN',
+ 'current_user' => session('current_user')
+ ];
+ return view('vpn.index_rawjs', $data);
+ }
+ public function getVpnListJsonRawJs(Request $request){
+ // dd($request->has('keyword') && $request->keyword == true);
+
+ if($request->has('keyword') && $request->keyword == true){
+ //'vpn_configs.client_id',
+ $keyword = $request->keyword;
+ $vpn_list_arr = \DB::table('vpn_configs')
+ ->join('auth_users', 'auth_users.id', '=', 'vpn_configs.user_id')
+ ->join('network_operators', 'network_operators.id', '=', 'vpn_configs.mno_id')
+ ->select('network_operators.id', 'vpn_configs.date_received', 'network_operators.name AS mnoName', 'network_operators.country', 'auth_users.name As username', 'vpn_configs.vpn_device', 'vpn_configs.mno_id', 'vpn_configs.partner_type', 'vpn_configs.remote_peer_ip', 'vpn_configs.local_access_control_list', 'vpn_configs.partner_access_control_list')
+ ->whereRaw("network_operators.name LIKE '%$keyword%' OR vpn_configs.vpn_device LIKE '%$keyword%' OR network_operators.country LIKE '%$keyword%' OR vpn_configs.remote_peer_ip LIKE '%$keyword%' OR vpn_configs.local_access_control_list like '%$keyword%' OR vpn_configs.partner_access_control_list LIKE '%$keyword%'")
+ ->paginate(10);
+ }
+ else{
+ $vpn_list_arr = \DB::table('vpn_configs')
+ ->join('auth_users', 'auth_users.id', '=', 'vpn_configs.user_id')
+ ->join('network_operators', 'network_operators.id', '=', 'vpn_configs.mno_id')
+ ->select('vpn_configs.id', 'vpn_configs.date_received', 'network_operators.name AS mnoName', 'network_operators.country', 'auth_users.name As username', 'vpn_configs.vpn_device', 'vpn_configs.mno_id', 'vpn_configs.partner_type', 'vpn_configs.remote_peer_ip', 'vpn_configs.local_access_control_list', 'vpn_configs.partner_access_control_list')
+ ->paginate(10);
+
+ }
+ return response()->json($vpn_list_arr);
+ }
+
+ public function create(){
+ $partner_type_arr = ['client' => 'client', 'mno' => 'mno'];
+ $partners_arr = [];
+ $services = Models\Service::pluck('name', 'name');
+ $data = [
+ 'page_title' => 'infrastructure: VPN',
+ 'partner_type_arr' => $partner_type_arr,
+ 'partners_arr' => $partners_arr,
+ 'services_arr' => $services
+ ];
+ return view('vpn.create', $data);
+ }
+ public function edit($id){
+ $vpn = Models\VpnConfig::find($id);
+ $partner_type_arr = ['client' => 'client', 'mno' => 'mno'];
+ $partners_arr = [];
+ $services = Models\Service::pluck('name', 'name');
+ $data = [
+ 'vpn' => $vpn,
+ 'page_title' => 'infrastructure: VPN',
+ 'partner_type_arr' => $partner_type_arr,
+ 'partners_arr' => $partners_arr,
+ 'services_arr' => $services
+ ];
+ return view('vpn.create', $data);
+ }
+
+
+
+ public function store(Request $request){
+ $request->validate([
+ 'partner_type_id' => 'required',
+ 'vpn_device' => 'sometimes',
+ 'remote_peer_ip' => 'required',
+ 'partner_access_control_list' => 'required',
+ 'local_access_control_list' => 'required',
+ 'partner_type' => 'required',
+ 'phase_1_raw_settings' => 'sometimes',
+ 'phase_2_raw_settings' => 'sometimes',
+ ]);
+ // dd($request->all());
+ $vpn_configs_arr = $request->except('_token', 'vpn_form');
+ if ($request->partner_type == 'mno') {
+
+ $vpn_configs_arr['mno_id'] = $request->partner_type_id;
+ }
+ elseif($request->partner_type == 'client'){
+ $vpn_configs_arr['client_id'] = $request->partner_type_id;
+ }
+ else{
+ Session::flash('error_message', 'Your request could not be handled at this time. Try again');
+ return redirect(url('infrastructure/vpn'));
+ }
+
+ $vpn_configs_arr['user_id'] = session('current_user.id');
+
+ // dd($vpn_configs_arr);
+ if ($request->hasFile('vpn_form')) {
+ if ($request->file('vpn_form')->isValid()) {
+ $filename = "erp_" . time() . "." . $request->vpn_form->extension();
+ $request->vpn_form->storeAs('vpn_form_files', $filename, 'public');
+ $document_arr['vpn_form'] = json_encode([$filename]);
+ $vpn_configs_arr['partner_vpn_form'] = $filename;
+ }
+ }
+ $result = Models\VpnConfig::create($vpn_configs_arr);
+
+ Session::flash('success_message', 'VPN Configs successfully added');
+ return redirect(url('infrastructure/vpn'));
+ }
+
+ public function getMNOandClient($type){
+ if ($type == 'mno') {
+ $data_arr = \DB::table('network_operators')->Select(\DB::raw('id, concat(name, " (", country, ")") AS partner'))->orderBy('name')->get()->toArray();
+ }
+ elseif ($type == 'client') {
+ $data_arr = \DB::table('clients')->Select(\DB::raw('id, concat(name, " (", country, ")") AS partner'))->orderBy('name')->get()->toArray();
+ }
+ else{
+ return response()->json(['code' => 3, 'msg' => 'invalid request']);
+ }
+ return response()->json(['code' => 1, 'msg' => 'success', 'result' => $data_arr]);
+ }
+ public function getPhaseOneTwo($vpn_list_id){
+ $vpn = Models\VpnConfig::find($vpn_list_id);
+ if ($vpn) {
+ // code...
+ $data = ['code' => 1, 'msg' => 'success', 'result' => $vpn];
+ }
+ else{
+ $data = ['code' => 3, 'msg' => 'request could not be handled'];
+ }
+ return response()->json($data);
+
+ }
+}
+
diff --git a/app/Jobs/NewMnoNotesEmailAlerts.php b/app/Jobs/NewMnoNotesEmailAlerts.php
index a2ee288..ed3c7fd 100644
--- a/app/Jobs/NewMnoNotesEmailAlerts.php
+++ b/app/Jobs/NewMnoNotesEmailAlerts.php
@@ -42,7 +42,7 @@ class NewMnoNotesEmailAlerts implements ShouldQueue
];
\Log::info($note->notes_body);
$mailer->send('emails.new-mno-notes', $data, function ($message) use ($data, $emails) {
- $message->from('support@click-mobile.com', 'Click Mobile ERP');
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('New Notes on Mobile Operators');
});
}
diff --git a/app/Jobs/SendClientContractRenewalAlert.php b/app/Jobs/SendClientContractRenewalAlert.php
index 6451d65..5f54c0e 100644
--- a/app/Jobs/SendClientContractRenewalAlert.php
+++ b/app/Jobs/SendClientContractRenewalAlert.php
@@ -40,7 +40,7 @@ class SendClientContractRenewalAlert implements ShouldQueue
];
$mailer->send('emails.client_renewal-alert', $data, function ($message) use ($data, $emails) {
- $message->from('support@click-mobile.com', 'Click Mobile ERP');
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('Client Contract Renewal Alert');
});
}
diff --git a/app/Jobs/SendMnoContractRenewalEmailAlert.php b/app/Jobs/SendMnoContractRenewalEmailAlert.php
index 6116154..f9e39d1 100644
--- a/app/Jobs/SendMnoContractRenewalEmailAlert.php
+++ b/app/Jobs/SendMnoContractRenewalEmailAlert.php
@@ -39,7 +39,7 @@ class SendMnoContractRenewalEmailAlert implements ShouldQueue
'alert_body' => 'Contract for ' . $renewalSet['mno_name'] . ' will expire in ' . $renewalSet['days_to_expire'] . ' days. Take note'
];
$mailer->send('emails.renewal-alert', $data, function ($message) use ($data, $emails) {
- $message->from('support@click-mobile.com', 'Click Mobile ERP');
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('Contract Renewal Alert');
});
}
diff --git a/app/Jobs/SendNewNotesEmailAlert.php b/app/Jobs/SendNewNotesEmailAlert.php
index bc00fbd..9ff9b21 100644
--- a/app/Jobs/SendNewNotesEmailAlert.php
+++ b/app/Jobs/SendNewNotesEmailAlert.php
@@ -31,11 +31,8 @@ class SendNewNotesEmailAlert implements ShouldQueue
public function handle(Mailer $mailer)
{
$note = $this->note;
- $emails = ['samuel@click-mobile.com'];
-
+ $emails = ['samuel@click-mobile.com', 'kwesi@click-mobile.com', 'mansa@click-mobile.com'];
//$note_body = $note->notes_body;
-
-
$data = [
'client' => $note->client_info->name,
'created_by' => $note->created_by_info->name,
@@ -46,8 +43,9 @@ class SendNewNotesEmailAlert implements ShouldQueue
\Log::info("New notes for : " . $note->client_info->name);
\Log::info("New notes triggered by : " . $note->created_by_info->name);
\Log::info($note->notes_body);
+
$mailer->send('emails.new-notes', $data, function ($message) use ($data, $emails) {
- $message->from('support@click-mobile.com', 'Click Mobile ERP');
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('New Notes');
});
}
diff --git a/app/Jobs/SendNewUssdClientEmail.php b/app/Jobs/SendNewUssdClientEmail.php
index 64306e5..09b9a9c 100755
--- a/app/Jobs/SendNewUssdClientEmail.php
+++ b/app/Jobs/SendNewUssdClientEmail.php
@@ -41,7 +41,7 @@ class SendNewUssdClientEmail implements ShouldQueue
'status' => $status
];
$mailer->send('emails.new_ussd_client', $data, function ($message) use ($data, $emails) {
- $message->from('support@click-mobile.com', 'Click Mobile Account Manager Tracker');
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('New USSD Client Details');
});
diff --git a/app/Jobs/SendOnboardingCompletedEmailAlert.php b/app/Jobs/SendOnboardingCompletedEmailAlert.php
index 66f4d0d..a751b00 100644
--- a/app/Jobs/SendOnboardingCompletedEmailAlert.php
+++ b/app/Jobs/SendOnboardingCompletedEmailAlert.php
@@ -43,7 +43,7 @@ class SendOnboardingCompletedEmailAlert implements ShouldQueue
'how_we_got' => $client->how_we_got_client
];
$mailer->send('emails.onboarding_completed', $data, function ($message) use ($data, $emails) {
- $message->from('support@click-mobile.com', 'Click Mobile ERP');
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('Onboarding Completed');
});
}
diff --git a/app/Jobs/SendShortCodeListToFinance.php b/app/Jobs/SendShortCodeListToFinance.php
new file mode 100644
index 0000000..ef07acb
--- /dev/null
+++ b/app/Jobs/SendShortCodeListToFinance.php
@@ -0,0 +1,59 @@
+short_code_list = $short_code_list;
+ $this->message_body = $message_body;
+ $this->finance_arr = $finance_arr;
+ }
+
+ /**
+ * Execute the job.
+ *
+ * @return void
+ */
+ public function handle(Mailer $mailer)
+ {
+ $short_code_list = $this->short_code_list;
+ $message_body = $this->message_body;
+ $finance_arr = $this->finance_arr;
+
+ $emails = [
+ 'samuel@click-mobile.com',
+ 'kwesi@click-mobile.com',
+ 'daniel@click-mobile.com',
+ 'jim@click-mobile.com',
+ 'priscilla@click-mobile.com',
+ 'mansa@click-mobile.com'
+ ];
+ $data = [
+ 'short_code_list' => $short_code_list,
+ 'message_body' => $message_body,
+ 'finance_arr' => $finance_arr
+ ];
+ $mailer->send('emails.short_code_payment_alert', $data, function ($message) use ($data, $emails) {
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
+ $message->to($emails)->subject('Short Code Invoices');
+ });
+ }
+}
diff --git a/app/Jobs/SendSupportFeesReminderEmailAlert.php b/app/Jobs/SendSupportFeesReminderEmailAlert.php
index 7db16a6..cb04b5a 100644
--- a/app/Jobs/SendSupportFeesReminderEmailAlert.php
+++ b/app/Jobs/SendSupportFeesReminderEmailAlert.php
@@ -45,7 +45,7 @@ class SendSupportFeesReminderEmailAlert implements ShouldQueue
'alert_body' => 'Support fees for ' . $renewalSet['client_name'] . ' will be due in ' . $renewalSet['days_to_renew'] . ' days. Take note'
];
$mailer->send('emails.supportfees-alert', $data, function ($message) use ($data, $emails) {
- $message->from('support@click-mobile.com', 'Click Mobile ERP');
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('Support Fees Reminder');
});
}
diff --git a/app/Jobs/SendTestEmail.php b/app/Jobs/SendTestEmail.php
new file mode 100644
index 0000000..c74b0be
--- /dev/null
+++ b/app/Jobs/SendTestEmail.php
@@ -0,0 +1,44 @@
+send('emails.test', $data, function ($message) use ($data, $emails) {
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
+ $message->to($emails)->subject('Short Code Invoices');
+ });
+ }
+}
diff --git a/app/Jobs/SendUssdClientActiveEmail.php b/app/Jobs/SendUssdClientActiveEmail.php
index 20dd147..70f3a83 100755
--- a/app/Jobs/SendUssdClientActiveEmail.php
+++ b/app/Jobs/SendUssdClientActiveEmail.php
@@ -41,7 +41,7 @@ class SendUssdClientActiveEmail implements ShouldQueue
'status' => $status
];
$mailer->send('emails.active_ussd_client', $data, function ($message) use ($data, $emails) {
- $message->from('support@click-mobile.com', 'Click Mobile Account Manager Tracker');
+ $message->from('alerts@click-mobile.com', 'Click Mobile ERP');
$message->to($emails)->subject('New USSD Client Details');
});
diff --git a/app/Models/ClientNote.php b/app/Models/ClientNote.php
index aa93002..f232ea1 100644
--- a/app/Models/ClientNote.php
+++ b/app/Models/ClientNote.php
@@ -11,9 +11,9 @@ class ClientNote extends Model
protected $guarded = array('id');
protected static $logUnguarded = true;
- public function getActivitylogOptions(): LogOptions{
- return LogOptions::defaults()->logUnguarded();
- }
+ // public function getActivitylogOptions(): LogOptions{
+ // return LogOptions::defaults()->logUnguarded();
+ // }
public function client_info(){
return $this->hasOne('App\Models\Client', 'id', 'client_id');
diff --git a/app/Models/Holiday.php b/app/Models/Holiday.php
new file mode 100644
index 0000000..d418e84
--- /dev/null
+++ b/app/Models/Holiday.php
@@ -0,0 +1,10 @@
+hasOne('App\Models\Client', 'id', 'client_id');
+ }
+ public function mno_info(){
+ return $this->hasOne('App\Models\NetworkOps', 'id', 'mno_id');
+ }
+ public function userInfo(){
+ return $this->hasOne('App\Models\SystemUser', 'id', 'user_id');
+ }
+}
diff --git a/app/Models/Worldwidemno.php b/app/Models/Worldwidemno.php
new file mode 100644
index 0000000..4b641a3
--- /dev/null
+++ b/app/Models/Worldwidemno.php
@@ -0,0 +1,11 @@
+ xoxp-677819906294-675678554016-693747277911-5166bcbb9a5fc3d5434b42a10c4d358a
- //old ---> xoxp-677819906294-675678554016-720956680656-4a6b5d0fcb00e9e0512c14341d3a7563
- /*
- $slackHandler = new \Monolog\Handler\SlackHandler('xoxp-677819906294-675678554016-693747277911-5166bcbb9a5fc3d5434b42a10c4d358a', '#click_erp_notify', 'Monolog', true, null, \Monolog\Logger::ERROR);
- $slackHandler = new \Monolog\Handler\SlackHandler('xoxp-677819906294-675678554016-693747277911-5166bcbb9a5fc3d5434b42a10c4d358a', '#click_erp_notify', 'Monolog', true, null, \Monolog\Logger::INFO);
- $slackHandler = new \Monolog\Handler\SlackHandler('xoxp-677819906294-675678554016-693747277911-5166bcbb9a5fc3d5434b42a10c4d358a', '#click_erp_notify', 'Monolog', true, null, \Monolog\Logger::DEBUG);
+ //old ---> xoxp-677819906294-675678554016-720956680656-4a6b5d0fcb00e9e0512c14341d3a7563
+ //clickml_erp_ntfy
+ //click_erp_notify
+ // $slackHandler = new \Monolog\Handler\SlackHandler('xoxp-677819906294-675678554016-693747277911-5166bcbb9a5fc3d5434b42a10c4d358a', '#clickml_erp_ntfy', 'Monolog', true, null, \Monolog\Logger::ERROR);
+ // $slackHandler = new \Monolog\Handler\SlackHandler('xoxp-677819906294-675678554016-693747277911-5166bcbb9a5fc3d5434b42a10c4d358a', '#clickml_erp_ntfy', 'Monolog', true, null, \Monolog\Logger::INFO);
+ // $slackHandler = new \Monolog\Handler\SlackHandler('xoxp-677819906294-675678554016-693747277911-5166bcbb9a5fc3d5434b42a10c4d358a', '#clickml_erp_ntfy', 'Monolog', true, null, \Monolog\Logger::DEBUG);
+
+ // $monolog->pushHandler($slackHandler);
- $monolog->pushHandler($slackHandler);
- */
}
/**
diff --git a/info.md b/info.md
new file mode 100644
index 0000000..9b43d59
--- /dev/null
+++ b/info.md
@@ -0,0 +1,2 @@
+
+- Balance notifications
\ No newline at end of file
diff --git a/mphatso-notes.md b/mphatso-notes.md
deleted file mode 100644
index 145830d..0000000
--- a/mphatso-notes.md
+++ /dev/null
@@ -1,8 +0,0 @@
-INSERT INTO `client_notes` (`id`, `client_id`, `services`, `auth_user_id`, `notes_body`, `highlight`, `created_at`, `updated_at`)
-VALUES
- (955, '229', 'A2P', 15, 'A bilateral prepaid agreement has been signed by both Click Mobile and Telxio Networks.\r\nThe next step is to exchange tech forms for the interconnection.', 'NO', '2024-03-11 11:34:14', '2024-03-11 11:34:14');
-
-
-INSERT INTO `client_notes` (`id`, `client_id`, `services`, `auth_user_id`, `notes_body`, `highlight`, `created_at`, `updated_at`)
-VALUES
- (954, '229', 'A2P', 15, 'A bilateral prepaid agreement has been signed by both Click Mobile and Telxio.\r\nThe next stepp is to excahnge tech forms for the interconnection.', 'NO', '2024-03-11 08:00:02', '2024-03-11 08:00:02');
diff --git a/pending-issues.md b/pending-issues.md
index f4ca4f9..72c8c2f 100644
--- a/pending-issues.md
+++ b/pending-issues.md
@@ -1,7 +1,22 @@
+# Leave management
+- apply for leave
+- approve/deny leave
+- view leave days
+- list staff on leave with return dates
+
+## Leave Management Config Table
+- id
+- staff_type (director, standard)
+- allocated_leave_days
+- current_year
+-
+
+# Holidays
+- list all holidays by country/general
+- send holiday reminders
+- Use the calender
+
# Onboarding process
-
-
-
Thank you sir,
Has it been uploaded on the ERP
@@ -34,7 +49,18 @@ Comments
1. Charity suggested we link clients with Sender IDs to avoid having to enter Sender IDS on a separate page
-2. Charity and the team also suggested it would be good for us country managers to have more options on the ERP. Country documents should also have an option to add expiry dates. Have the same notes function under countries just like AMs.
+
+2. Charity and the team also suggested it would be good for us country managers to have more options on the ERP. Country documents should also have an option to add expiry dates. Have the same notes function under countries just like AMs. --- ask for clarifications on the invoices
+
3. Charity also suggested that we have a feature that sends emails to AMs to remind them of the invoices. Since invoices have validity period to say to be paid after so an so date, it should be used to send reminders to alert AMs to followup on payments. Don’t know if it makes sense.
+
4. I have asked Kwesi if we could have a page on the ERP that displays all activities rather than just on the home page. Also suggested that we be able to click on some activities like when AM leaves a note, we should be able to open and view that note.
-5. The other suggestion was to have an option to view all clients instead of just showing 15 clients per page, have an option to view 15, view 50. view 100. view all. that way will be able to download XLSX/PDF for all clients if we view all. currently it only downloads 15 clients of that particular page
+
+5. The other suggestion was to have an option to view all clients instead of just showing 15 clients per page, have an option to view 15, view 50. view 100. view all. that way will be able to download XLSX/PDF for all clients if we view all. currently it only downloads 15 clients of that particular page - done
+
+
+## Mansa
+- Reports on new clients
+- reports on new notes
+
+- @exoscutter
diff --git a/public/assets/js/clientshow.js b/public/assets/js/clientshow.js
index 3b35e72..20c9f27 100644
--- a/public/assets/js/clientshow.js
+++ b/public/assets/js/clientshow.js
@@ -14,6 +14,34 @@
$('#textbox1').val(this.checked);
});
*/
+ function matchCustom(params, data) {
+ // If there are no search terms, return all of the data
+ if ($.trim(params.term) === '') {
+ return data;
+ }
+
+ // Do not display the item if there is no 'text' property
+ if (typeof data.text === 'undefined') {
+ return null;
+ }
+
+ // `params.term` should be the term that is used for searching
+ // `data.text` is the text that is displayed for the data object
+ if (data.text.indexOf(params.term) > -1) {
+ var modifiedData = $.extend({}, data, true);
+ modifiedData.text += ' (matched)';
+
+ // You can return modified objects from here
+ // This includes matching the `children` how you want in nested data sets
+ return modifiedData;
+ }
+
+ // Return `null` if the term should not be displayed
+ return null;
+ }
+ $('#shortCodeCountry').select2({
+ matcher: matchCustom
+ });
$('.progressIndicatorCheckbox').on('change', function() {
// From the other examples
// console.log('finker');
@@ -23,8 +51,45 @@
$('#textbox1').val(sure.toString());
}
});
-
-
+ $("select#shortCodeCountry").change(function(){
+ var shortCodeCountry = $(this).val();
+ var theToken = "{{ csrf_token }}";
+ $.ajax({
+ type: "POST",
+ url: base_url + '/mnos/getCountryNetworks',
+ headers: {
+ 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
+ },
+ data: {"country" : shortCodeCountry },
+ cache: false,
+ beforeSend: function () {
+ console.log('loader here');
+ //show a loader here
+ //$('#district').html('
');
+ },
+ success: function(data) {
+ console.log(data.mnos);
+ // var jason = JSON.parse(data);
+ if (data.code === 1) {
+ var actionPoint = $('#networks').empty();
+ console.log(actionPoint);
+ $.each(data.mnos, function(key, value) {
+ console.log(id);
+ console.log(row);
+ //$('#networks').append($("").val(row.id).text(row.name));
+ });
+ }
+ else {
+ console.log(data);
+ $.alert(data.msg);
+ }
+ },
+ fail : function(errordata){
+ console.log(errordata);å
+ }
+ });
+ });
+
$('select').select2();
$('#myDatepicker2').datetimepicker({
format: 'YYYY-MM-DD',
@@ -68,7 +133,6 @@
});
$('#createSenderIdBtn').click(function(evt){
evt.preventDefault();
- console.log('Heere at the wall');
$('#newSenderIdFormModal').modal('show');
});
@@ -92,6 +156,7 @@
contentType: false,
async: false,
success: function (data){
+ console.log(data);
if (data.code === 1) {
// console.log(theIDD);
$('#paymentIdEdit').val(theIDD);
@@ -99,6 +164,7 @@
$('#invoiceNumberEdit').val(data.result.invoice_number);
$('#invoiceAmountEdit').val(data.result.invoice_amount);
$('#invoiceDateEdit').val(data.result.invoice_date);
+ $('#financeShortCodeEdit').val(data.result.short_code);
$('#invoiceStatusEdit').val(data.result.invoice_status).change();
$('#remarksEdit').val(data.result.remarks);
$('#financePaymentsEditForm').modal('show');
@@ -141,6 +207,7 @@
$('#shortCodeTypeEdit').val(data.result.code_type);
$('#shortCodeEdit').val(data.result.shortcode);
$('#tollFreeEdit').val(data.result.toll_free).change();
+ $('#monthlyFeeEdit').val(data.result.monthly_fee);
$('#launchDateEdit').val(data.result.launch_date);
$('#expiryDateEdit').val(data.result.expiry_date);
$('#codeStatusEdit').val(data.result.status).change();
diff --git a/public/assets/js/senderid.js b/public/assets/js/senderid.js
new file mode 100644
index 0000000..4dd6ccb
--- /dev/null
+++ b/public/assets/js/senderid.js
@@ -0,0 +1,36 @@
+$(document).ready(function(){
+ $('#directMno').change(function(tve){
+ tve.preventDefault();
+ // var theIDD = $(this).siblings('.shortCodeEntryRowId').val();
+ var directMnoSelection = $(this).val();
+ $.ajax({
+ type: "GET",
+ url: base_url + '/senderids/get-mno-list/' + directMnoSelection,
+ processData: false,
+ contentType: false,
+ async: false,
+ success: function (data){
+ if (data.code === 1) {
+ $('#networkName').empty();
+ $.each(data.result, function(id, row) {
+ // console.log(row);
+ $('#networkName').append($("").val(row.id).text(row.name));
+ });
+ }
+ else if (data.code > 1) {
+ $.alert({
+ title: 'Alert!',
+ content: data.msg,
+ });
+ }
+ else {
+ $.alert({
+ title: 'Alert!',
+ content: 'Your request could not be handled. Try again !',
+ });
+
+ }
+ }
+ });
+ });
+});
\ No newline at end of file
diff --git a/public/assets/js/vpn_configs.js b/public/assets/js/vpn_configs.js
new file mode 100644
index 0000000..1e8ee09
--- /dev/null
+++ b/public/assets/js/vpn_configs.js
@@ -0,0 +1,44 @@
+ $(document).ready(function(){
+ $('#dateReceived').datetimepicker({
+ format: 'YYYY-MM-DD'
+ });
+ $('#partnerType').change(function(tve){
+ tve.preventDefault();
+ // var theIDD = $(this).siblings('.shortCodeEntryRowId').val();
+ var selectedPartnerType = $(this).val();
+ $.ajax({
+ type: "GET",
+ url: base_url + '/infrastructure/get-vpn-partner-list/' + selectedPartnerType,
+ processData: false,
+ contentType: false,
+ async: false,
+ success: function (data){
+ if (data.code === 1) {
+ $('#partnerTypeID').empty();
+ $.each(data.result, function(id, row) {
+ // console.log(row);
+ $('#partnerTypeID').append($("").val(row.id).text(row.partner));
+ });
+
+ // $('#partnerTypeIDd').val(data.result).change();
+ // $('#codeStatusEdit').val(data.result.status).change();
+ // $('#network').val(data.result.network).change();
+
+ }
+ else if (data.code > 1) {
+ $.alert({
+ title: 'Alert!',
+ content: data.msg,
+ });
+ }
+ else {
+ $.alert({
+ title: 'Alert!',
+ content: 'Your request could not be handled. Try again !',
+ });
+
+ }
+ }
+ });
+ });
+ });
diff --git a/public/documents/client_files/erp_17405830542qPR.pdf b/public/documents/client_files/erp_17405830542qPR.pdf
new file mode 100644
index 0000000..e0a1b8a
Binary files /dev/null and b/public/documents/client_files/erp_17405830542qPR.pdf differ
diff --git a/public/documents/client_files/erp_1740594079XpAQ.jpeg b/public/documents/client_files/erp_1740594079XpAQ.jpeg
new file mode 100644
index 0000000..9ffc193
Binary files /dev/null and b/public/documents/client_files/erp_1740594079XpAQ.jpeg differ
diff --git a/public/documents/client_files/erp_1740594270sQpp.jpeg b/public/documents/client_files/erp_1740594270sQpp.jpeg
new file mode 100644
index 0000000..9ffc193
Binary files /dev/null and b/public/documents/client_files/erp_1740594270sQpp.jpeg differ
diff --git a/public/documents/client_files/erp_1740594435xhBH.jpeg b/public/documents/client_files/erp_1740594435xhBH.jpeg
new file mode 100644
index 0000000..9ffc193
Binary files /dev/null and b/public/documents/client_files/erp_1740594435xhBH.jpeg differ
diff --git a/public/documents/client_files/erp_1740594551Uq8J.docx b/public/documents/client_files/erp_1740594551Uq8J.docx
new file mode 100644
index 0000000..3f656e0
Binary files /dev/null and b/public/documents/client_files/erp_1740594551Uq8J.docx differ
diff --git a/public/documents/client_files/erp_1740594715bUcQ.jpeg b/public/documents/client_files/erp_1740594715bUcQ.jpeg
new file mode 100644
index 0000000..9ffc193
Binary files /dev/null and b/public/documents/client_files/erp_1740594715bUcQ.jpeg differ
diff --git a/public/documents/client_files/erp_1740594985277c.pdf b/public/documents/client_files/erp_1740594985277c.pdf
new file mode 100644
index 0000000..e0a1b8a
Binary files /dev/null and b/public/documents/client_files/erp_1740594985277c.pdf differ
diff --git a/public/documents/client_files/erp_17405949852fpq.jpeg b/public/documents/client_files/erp_17405949852fpq.jpeg
new file mode 100644
index 0000000..9ffc193
Binary files /dev/null and b/public/documents/client_files/erp_17405949852fpq.jpeg differ
diff --git a/public/documents/client_files/erp_1740594985aIiD.jpeg b/public/documents/client_files/erp_1740594985aIiD.jpeg
new file mode 100644
index 0000000..9ffc193
Binary files /dev/null and b/public/documents/client_files/erp_1740594985aIiD.jpeg differ
diff --git a/public/documents/client_files/erp_1740595007KvN4.pdf b/public/documents/client_files/erp_1740595007KvN4.pdf
new file mode 100644
index 0000000..8bfa59d
Binary files /dev/null and b/public/documents/client_files/erp_1740595007KvN4.pdf differ
diff --git a/public/documents/client_files/erp_1740595136CTbP.jpeg b/public/documents/client_files/erp_1740595136CTbP.jpeg
new file mode 100644
index 0000000..9ffc193
Binary files /dev/null and b/public/documents/client_files/erp_1740595136CTbP.jpeg differ
diff --git a/public/documents/client_files/erp_1740595200lOfd.jpeg b/public/documents/client_files/erp_1740595200lOfd.jpeg
new file mode 100644
index 0000000..9ffc193
Binary files /dev/null and b/public/documents/client_files/erp_1740595200lOfd.jpeg differ
diff --git a/public/documents/client_files/erp_1740595238RYUv.pdf b/public/documents/client_files/erp_1740595238RYUv.pdf
new file mode 100644
index 0000000..93d2dd7
Binary files /dev/null and b/public/documents/client_files/erp_1740595238RYUv.pdf differ
diff --git a/public/documents/client_files/erp_1741256913lUCs.jpeg b/public/documents/client_files/erp_1741256913lUCs.jpeg
new file mode 100644
index 0000000..f26ebab
Binary files /dev/null and b/public/documents/client_files/erp_1741256913lUCs.jpeg differ
diff --git a/public/documents/vpn_form_files/erp_1741647101.txt b/public/documents/vpn_form_files/erp_1741647101.txt
new file mode 100644
index 0000000..e68fc99
--- /dev/null
+++ b/public/documents/vpn_form_files/erp_1741647101.txt
@@ -0,0 +1,103 @@
+calldate,clid,src,dst,dcontext,channel,dstchannel,lastapp,lastdata,duration,billsec,disposition,amaflags,accountcode,uniqueid,userfield,did,cnum,cnam,outbound_cnum,outbound_cnam,dst_cnam,recordingfile,linkedid,peeraccount,sequence
+12/29/24 19:52,"""0887767109"" <0887767109>",887767109,801,ext-local,SIP/TNM_In-000012d2,SIP/801-000012d3,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",57,55,ANSWERED,3,,1735494760,,3093,887767109,887767109,,,,,1735494760,,4850
+12/29/24 19:52,"""0899297585"" <0899297585>",899297585,801,ext-local,SIP/TNM_In-000012ce,SIP/801-000012cf,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",167,84,ANSWERED,3,,1735494739,,3093,899297585,899297585,,,,,1735494739,,4846
+12/29/24 19:50,"""0899158759"" <0899158759>",899158759,801,ext-local,SIP/TNM_In-000012a0,SIP/801-000012a1,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",95,27,ANSWERED,3,,1735494647,,3093,899158759,899158759,,,,,1735494647,,4799
+12/29/24 19:50,"""0880709225"" <0880709225>",880709225,801,ext-local,SIP/TNM_In-0000129e,SIP/801-0000129f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",64,1,ANSWERED,3,,1735494644,,3093,880709225,880709225,,,,,1735494644,,4797
+12/29/24 19:49,"""0885900665"" <0885900665>",885900665,801,ext-local,SIP/TNM_In-0000128e,SIP/801-0000128f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",136,76,ANSWERED,3,,1735494575,,3093,885900665,885900665,,,,,1735494575,,4781
+12/29/24 19:47,"""0894554922"" <0894554922>",894554922,801,ext-local,SIP/TNM_In-00001268,SIP/801-00001269,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",148,52,ANSWERED,3,,1735494477,,3093,894554922,894554922,,,,,1735494477,,4742
+12/29/24 19:47,"""0886366792"" <0886366792>",886366792,801,ext-local,SIP/TNM_In-00001260,SIP/801-00001261,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",101,92,ANSWERED,3,,1735494457,,3093,886366792,886366792,,,,,1735494457,,4734
+12/29/24 19:46,"""0885822517"" <0885822517>",885822517,801,ext-local,SIP/TNM_In-00001250,SIP/801-00001251,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",8,3,ANSWERED,3,,1735494392,,3093,885822517,885822517,,,,,1735494392,,4718
+12/29/24 19:46,"""0885398255"" <0885398255>",885398255,801,ext-local,SIP/TNM_In-0000124e,SIP/801-0000124f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",31,27,ANSWERED,3,,1735494390,,3093,885398255,885398255,,,,,1735494390,,4716
+12/29/24 19:44,"""0893972425"" <0893972425>",893972425,801,ext-local,SIP/TNM_In-00001238,SIP/801-00001239,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",94,33,ANSWERED,3,,1735494295,,3093,893972425,893972425,,,,,1735494295,,4693
+12/29/24 19:44,"""0886207444"" <0886207444>",886207444,801,ext-local,SIP/TNM_In-00001232,SIP/801-00001233,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",160,40,ANSWERED,3,,1735494286,,3093,886207444,886207444,,,,,1735494286,,4687
+12/29/24 19:43,"""0881642040"" <0881642040>",881642040,801,ext-local,SIP/TNM_In-0000121a,SIP/801-0000121b,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",116,78,ANSWERED,3,,1735494224,,3093,881642040,881642040,,,,,1735494224,,4663
+12/29/24 19:43,"""0882660355"" <0882660355>",882660355,801,ext-local,SIP/TNM_In-00001218,SIP/801-00001219,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",39,2,ANSWERED,3,,1735494218,,3093,882660355,882660355,,,,,1735494218,,4661
+12/29/24 19:42,"""0881642040"" <0881642040>",881642040,801,ext-local,SIP/TNM_In-0000120e,SIP/801-0000120f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",42,36,ANSWERED,3,,1735494135,,3093,881642040,881642040,,,,,1735494135,,4651
+12/29/24 19:42,"""0893455004"" <0893455004>",893455004,801,ext-local,SIP/TNM_In-0000120c,SIP/801-0000120d,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",7,1,ANSWERED,3,,1735494127,,3093,893455004,893455004,,,,,1735494127,,4649
+12/29/24 19:41,"""0885900665"" <0885900665>",885900665,801,ext-local,SIP/TNM_In-00001208,SIP/801-00001209,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",21,10,ANSWERED,3,,1735494108,,3093,885900665,885900665,,,,,1735494108,,4645
+12/29/24 19:41,"""0885252779"" <0885252779>",885252779,801,ext-local,SIP/TNM_In-000011fa,SIP/801-000011fb,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",152,68,ANSWERED,3,,1735494075,,3093,885252779,885252779,,,,,1735494075,,4631
+12/29/24 19:40,"""0887767109"" <0887767109>",887767109,801,ext-local,SIP/TNM_In-000011ec,SIP/801-000011ed,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",87,13,ANSWERED,3,,1735494012,,3093,887767109,887767109,,,,,1735494012,,4617
+12/29/24 19:39,"""0899838714"" <0899838714>",899838714,801,ext-local,SIP/TNM_In-000011dc,SIP/801-000011dd,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",97,61,ANSWERED,3,,1735493976,,3093,899838714,899838714,,,,,1735493976,,4601
+12/29/24 19:39,"""0886017458"" <0886017458>",886017458,801,ext-local,SIP/TNM_In-000011d6,SIP/801-000011d7,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",49,13,ANSWERED,3,,1735493953,,3093,886017458,886017458,,,,,1735493953,,4595
+12/29/24 19:38,"""0887918050"" <0887918050>",887918050,801,ext-local,SIP/TNM_In-000011d2,SIP/801-000011d3,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",67,2,ANSWERED,3,,1735493919,,3093,887918050,887918050,,,,,1735493919,,4591
+12/29/24 19:38,"""0893972425"" <0893972425>",893972425,801,ext-local,SIP/TNM_In-000011c8,SIP/801-000011c9,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",89,14,ANSWERED,3,,1735493883,,3093,893972425,893972425,,,,,1735493883,,4581
+12/29/24 19:37,"""0886695068"" <0886695068>",886695068,801,ext-local,SIP/TNM_In-000011bc,SIP/801-000011bd,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",87,70,ANSWERED,3,,1735493858,,3093,886695068,886695068,,,,,1735493858,,4569
+12/29/24 19:37,"""0899519250"" <0899519250>",899519250,801,ext-local,SIP/TNM_In-000011b8,SIP/801-000011b9,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",27,23,ANSWERED,3,,1735493845,,3093,899519250,899519250,,,,,1735493845,,4565
+12/29/24 19:32,"""0882089732"" <0882089732>",882089732,801,ext-local,SIP/TNM_In-0000118e,SIP/801-0000118f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",89,61,ANSWERED,3,,1735493562,,3093,882089732,882089732,,,,,1735493562,,4523
+12/29/24 19:32,"""0889388507"" <0889388507>",889388507,801,ext-local,SIP/TNM_In-0000118c,SIP/801-0000118d,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",41,30,ANSWERED,3,,1735493556,,3093,889388507,889388507,,,,,1735493556,,4521
+12/29/24 19:32,"""0897569188"" <0897569188>",897569188,801,ext-local,SIP/TNM_In-0000118a,SIP/801-0000118b,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",39,10,ANSWERED,3,,1735493521,,3093,897569188,897569188,,,,,1735493521,,4518
+12/29/24 19:29,"""0888968330"" <0888968330>",888968330,801,ext-local,SIP/TNM_In-00001170,SIP/801-00001171,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",4,3,ANSWERED,3,,1735493348,,3093,888968330,888968330,,,,,1735493348,,4492
+12/29/24 19:28,"""0885252779"" <0885252779>",885252779,801,ext-local,SIP/TNM_In-00001166,SIP/801-00001167,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",71,43,ANSWERED,3,,1735493330,,3093,885252779,885252779,,,,,1735493330,,4482
+12/29/24 19:27,"""0899310448"" <0899310448>",899310448,801,ext-local,SIP/TNM_In-0000115e,SIP/801-0000115f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",30,3,ANSWERED,3,,1735493225,,3093,899310448,899310448,,,,,1735493225,,4474
+12/29/24 19:26,"""0899450145"" <0899450145>",899450145,801,ext-local,SIP/TNM_In-0000115c,SIP/801-0000115d,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",29,24,ANSWERED,3,,1735493214,,3093,899450145,899450145,,,,,1735493214,,4472
+12/29/24 19:25,"""0885868384"" <0885868384>",885868384,801,ext-local,SIP/TNM_In-0000115a,SIP/801-0000115b,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",20,17,ANSWERED,3,,1735493110,,3093,885868384,885868384,,,,,1735493110,,4470
+12/29/24 19:25,"""0882188136"" <0882188136>",882188136,801,ext-local,SIP/TNM_In-00001158,SIP/801-00001159,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",94,61,ANSWERED,3,,1735493105,,3093,882188136,882188136,,,,,1735493105,,4468
+12/29/24 19:20,"""0885739933"" <0885739933>",885739933,801,ext-local,SIP/TNM_In-0000114a,SIP/801-0000114b,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",74,55,ANSWERED,3,,1735492828,,3093,885739933,885739933,,,,,1735492828,,4452
+12/29/24 19:18,"""0882415110"" <0882415110>",882415110,801,ext-local,SIP/TNM_In-0000113c,SIP/801-0000113d,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",65,60,ANSWERED,3,,1735492726,,3093,882415110,882415110,,,,,1735492726,,4438
+12/29/24 19:17,"""0894724051"" <0894724051>",894724051,801,ext-local,SIP/TNM_In-00001138,SIP/801-00001139,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",58,18,ANSWERED,3,,1735492660,,3093,894724051,894724051,,,,,1735492660,,4433
+12/29/24 19:17,"""0885037770"" <0885037770>",885037770,801,ext-local,SIP/TNM_In-00001130,SIP/801-00001131,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",65,61,ANSWERED,3,,1735492623,,3093,885037770,885037770,,,,,1735492623,,4425
+12/29/24 19:15,"""0886623019"" <0886623019>",886623019,801,ext-local,SIP/TNM_In-0000111e,SIP/801-0000111f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",65,58,ANSWERED,3,,1735492533,,3093,886623019,886623019,,,,,1735492533,,4407
+12/29/24 19:15,"""0882415110"" <0882415110>",882415110,801,ext-local,SIP/TNM_In-0000111c,SIP/801-0000111d,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",19,16,ANSWERED,3,,1735492528,,3093,882415110,882415110,,,,,1735492528,,4405
+12/29/24 19:14,"""0899840897"" <0899840897>",899840897,801,ext-local,SIP/TNM_In-00001114,SIP/801-00001115,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",4,2,ANSWERED,3,,1735492480,,3093,899840897,899840897,,,,,1735492480,,4397
+12/29/24 19:14,"""0882199621"" <0882199621>",882199621,801,ext-local,SIP/TNM_In-00001112,SIP/801-00001113,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",19,9,ANSWERED,3,,1735492479,,3093,882199621,882199621,,,,,1735492479,,4395
+12/29/24 19:14,"""0884523013"" <0884523013>",884523013,801,ext-local,SIP/TNM_In-0000110e,SIP/801-0000110f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",16,14,ANSWERED,3,,1735492452,,3093,884523013,884523013,,,,,1735492452,,4391
+12/29/24 19:11,"""0893245079"" <0893245079>",893245079,801,ext-local,SIP/TNM_In-000010fe,SIP/801-000010ff,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",88,49,ANSWERED,3,,1735492280,,3093,893245079,893245079,,,,,1735492280,,4375
+12/29/24 19:10,"""0899607324"" <0899607324>",899607324,801,ext-local,SIP/TNM_In-000010f8,SIP/801-000010f9,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",43,32,ANSWERED,3,,1735492249,,3093,899607324,899607324,,,,,1735492249,,4369
+12/29/24 19:10,"""0882188136"" <0882188136>",882188136,801,ext-local,SIP/TNM_In-000010f4,SIP/801-000010f5,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",25,19,ANSWERED,3,,1735492220,,3093,882188136,882188136,,,,,1735492220,,4365
+12/29/24 19:09,"""0894542275"" <0894542275>",894542275,801,ext-local,SIP/TNM_In-000010f2,SIP/801-000010f3,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",13,3,ANSWERED,3,,1735492170,,3093,894542275,894542275,,,,,1735492170,,4363
+12/29/24 19:09,"""0899841516"" <0899841516>",899841516,801,ext-local,SIP/TNM_In-000010f0,SIP/801-000010f1,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",16,8,ANSWERED,3,,1735492161,,3093,899841516,899841516,,,,,1735492161,,4361
+12/29/24 18:54,"""0894139395"" <0894139395>",894139395,801,ext-local,SIP/TNM_In-000010de,SIP/801-000010df,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",3,2,ANSWERED,3,,1735491269,,3093,894139395,894139395,,,,,1735491269,,4343
+12/29/24 18:54,"""0887056885"" <0887056885>",887056885,801,ext-local,SIP/TNM_In-000010dc,SIP/801-000010dd,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",61,52,ANSWERED,3,,1735491268,,3093,887056885,887056885,,,,,1735491268,,4341
+12/29/24 18:48,"""0889445998"" <0889445998>",889445998,801,ext-local,SIP/TNM_In-000010b6,SIP/801-000010b7,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",53,20,ANSWERED,3,,1735490932,,3093,889445998,889445998,,,,,1735490932,,4302
+12/29/24 18:48,"""0899495878"" <0899495878>",899495878,801,ext-local,SIP/TNM_In-000010b4,SIP/801-000010b5,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",37,17,ANSWERED,3,,1735490922,,3093,899495878,899495878,,,,,1735490922,,4300
+12/29/24 18:47,"""0894788427"" <0894788427>",894788427,801,ext-local,SIP/TNM_In-000010aa,SIP/801-000010ab,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",63,42,ANSWERED,3,,1735490841,,3093,894788427,894788427,,,,,1735490841,,4289
+12/29/24 18:46,"""0894676810"" <0894676810>",894676810,801,ext-local,SIP/TNM_In-000010a4,SIP/801-000010a5,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",47,33,ANSWERED,3,,1735490806,,3093,894676810,894676810,,,,,1735490806,,4283
+12/29/24 18:38,"""0882060983"" <0882060983>",882060983,801,ext-local,SIP/TNM_In-00001072,SIP/801-00001073,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",83,63,ANSWERED,3,,1735490313,,3093,882060983,882060983,,,,,1735490313,,4233
+12/29/24 18:32,"""0881383815"" <0881383815>",881383815,801,ext-local,SIP/TNM_In-0000104e,SIP/801-0000104f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",86,76,ANSWERED,3,,1735489942,,3093,881383815,881383815,,,,,1735489942,,4197
+12/29/24 18:32,"""0887456514"" <0887456514>",887456514,801,ext-local,SIP/TNM_In-0000104c,SIP/801-0000104d,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",7,3,ANSWERED,3,,1735489928,,3093,887456514,887456514,,,,,1735489928,,4195
+12/29/24 18:32,"""0897239693"" <0897239693>",897239693,801,ext-local,SIP/TNM_In-0000104a,SIP/801-0000104b,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",24,4,ANSWERED,3,,1735489924,,3093,897239693,897239693,,,,,1735489924,,4193
+12/29/24 18:23,"""0880978134"" <0880978134>",880978134,801,ext-local,SIP/TNM_In-00001026,SIP/801-00001027,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",64,59,ANSWERED,3,,1735489417,,3093,880978134,880978134,,,,,1735489417,,4157
+12/29/24 18:22,"""0881383815"" <0881383815>",881383815,801,ext-local,SIP/TNM_In-00001024,SIP/801-00001025,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",16,10,ANSWERED,3,,1735489378,,3093,881383815,881383815,,,,,1735489378,,4155
+12/29/24 18:15,"""0884413618"" <0884413618>",884413618,801,ext-local,SIP/TNM_In-00001019,SIP/801-0000101a,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",60,50,ANSWERED,3,,1735488935,,3093,884413618,884413618,,,,,1735488935,,4144
+12/29/24 18:13,"""0894676810"" <0894676810>",894676810,801,ext-local,SIP/TNM_In-00001015,SIP/801-00001016,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",40,34,ANSWERED,3,,1735488782,,3093,894676810,894676810,,,,,1735488782,,4140
+12/29/24 18:13,"""0882794555"" <0882794555>",882794555,801,ext-local,SIP/TNM_In-00001013,SIP/801-00001014,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",120,74,ANSWERED,3,,1735488780,,3093,882794555,882794555,,,,,1735488780,,4138
+12/29/24 18:08,"""0884050295"" <0884050295>",884050295,801,ext-local,SIP/TNM_In-0000100b,SIP/801-0000100c,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",68,60,ANSWERED,3,,1735488508,,3093,884050295,884050295,,,,,1735488508,,4129
+12/29/24 18:08,"""0897700681"" <0897700681>",897700681,801,ext-local,SIP/TNM_In-00001009,SIP/801-0000100a,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",6,2,ANSWERED,3,,1735488502,,3093,897700681,897700681,,,,,1735488502,,4126
+12/29/24 18:08,"""0893564498"" <0893564498>",893564498,801,ext-local,SIP/TNM_In-00001003,SIP/801-00001004,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",12,3,ANSWERED,3,,1735488485,,3093,893564498,893564498,,,,,1735488485,,4120
+12/29/24 18:07,"""0883516272"" <0883516272>",883516272,801,ext-local,SIP/TNM_In-00000ffd,SIP/801-00000ffe,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",10,1,ANSWERED,3,,1735488450,,3093,883516272,883516272,,,,,1735488450,,4114
+12/29/24 17:59,"""0894676810"" <0894676810>",894676810,801,ext-local,SIP/TNM_In-00000ff1,SIP/801-00000ff2,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",38,33,ANSWERED,3,,1735487940,,3093,894676810,894676810,,,,,1735487940,,4101
+12/29/24 17:55,"""0899201172"" <0899201172>",899201172,801,ext-local,SIP/TNM_In-00000fe3,SIP/801-00000fe4,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",67,61,ANSWERED,3,,1735487738,,3093,899201172,899201172,,,,,1735487738,,4087
+12/29/24 17:53,"""0894676810"" <0894676810>",894676810,801,ext-local,SIP/TNM_In-00000fdf,SIP/801-00000fe0,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",38,32,ANSWERED,3,,1735487606,,3093,894676810,894676810,,,,,1735487606,,4083
+12/29/24 17:48,"""0888028532"" <0888028532>",888028532,801,ext-local,SIP/TNM_In-00000fd7,SIP/801-00000fd8,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",73,65,ANSWERED,3,,1735487311,,3093,888028532,888028532,,,,,1735487311,,4075
+12/29/24 17:47,"""0894676810"" <0894676810>",894676810,801,ext-local,SIP/TNM_In-00000fd5,SIP/801-00000fd6,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",45,41,ANSWERED,3,,1735487222,,3093,894676810,894676810,,,,,1735487222,,4073
+12/29/24 17:47,"""0888028532"" <0888028532>",888028532,801,ext-local,SIP/TNM_In-00000fd3,SIP/801-00000fd4,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",72,16,ANSWERED,3,,1735487220,,3093,888028532,888028532,,,,,1735487220,,4071
+12/29/24 17:44,"""0893718304"" <0893718304>",893718304,801,ext-local,SIP/TNM_In-00000fd1,SIP/801-00000fd2,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",86,81,ANSWERED,3,,1735487084,,3093,893718304,893718304,,,,,1735487084,,4069
+12/29/24 17:41,"""0881185415"" <0881185415>",881185415,801,ext-local,SIP/TNM_In-00000fcd,SIP/801-00000fce,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",116,60,ANSWERED,3,,1735486890,,3093,881185415,881185415,,,,,1735486890,,4065
+12/29/24 17:40,"""0884325666"" <0884325666>",884325666,801,ext-local,SIP/TNM_In-00000fc7,SIP/801-00000fc8,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",84,54,ANSWERED,3,,1735486837,,3093,884325666,884325666,,,,,1735486837,,4059
+12/29/24 17:40,"""0893718304"" <0893718304>",893718304,801,ext-local,SIP/TNM_In-00000fc5,SIP/801-00000fc6,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",32,31,ANSWERED,3,,1735486823,,3093,893718304,893718304,,,,,1735486823,,4057
+12/29/24 17:37,"""0883699380"" <0883699380>",883699380,801,ext-local,SIP/TNM_In-00000fbb,SIP/801-00000fbc,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",63,57,ANSWERED,3,,1735486620,,3093,883699380,883699380,,,,,1735486620,,4047
+12/29/24 17:35,"""0885877899"" <0885877899>",885877899,801,ext-local,SIP/TNM_In-00000fb5,SIP/801-00000fb6,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",60,53,ANSWERED,3,,1735486500,,3093,885877899,885877899,,,,,1735486500,,4041
+12/29/24 17:26,"""0881567540"" <0881567540>",881567540,801,ext-local,SIP/TNM_In-00000fa7,SIP/801-00000fa8,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",64,58,ANSWERED,3,,1735485979,,3093,881567540,881567540,,,,,1735485979,,4027
+12/29/24 17:24,"""0893084937"" <0893084937>",893084937,801,ext-local,SIP/TNM_In-00000fa3,SIP/801-00000fa4,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",47,42,ANSWERED,3,,1735485845,,3093,893084937,893084937,,,,,1735485845,,4023
+12/29/24 17:23,"""0888644290"" <0888644290>",888644290,801,ext-local,SIP/TNM_In-00000fa1,SIP/801-00000fa2,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",79,31,ANSWERED,3,,1735485792,,3093,888644290,888644290,,,,,1735485792,,4021
+12/29/24 17:22,"""0894085069"" <0894085069>",894085069,801,ext-local,SIP/TNM_In-00000f9d,SIP/801-00000f9e,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",52,49,ANSWERED,3,,1735485779,,3093,894085069,894085069,,,,,1735485779,,4017
+12/29/24 17:22,"""0893084937"" <0893084937>",893084937,801,ext-local,SIP/TNM_In-00000f9b,SIP/801-00000f9c,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",58,1,ANSWERED,3,,1735485778,,3093,893084937,893084937,,,,,1735485778,,4015
+12/29/24 17:22,"""0888051117"" <0888051117>",888051117,801,ext-local,SIP/TNM_In-00000f97,SIP/801-00000f98,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",45,14,ANSWERED,3,,1735485722,,3093,888051117,888051117,,,,,1735485722,,4011
+12/29/24 17:18,"""0880533007"" <0880533007>",880533007,801,ext-local,SIP/TNM_In-00000f8d,SIP/801-00000f8e,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",89,84,ANSWERED,3,,1735485539,,3093,880533007,880533007,,,,,1735485539,,3999
+12/29/24 17:17,"""0886332856"" <0886332856>",886332856,801,ext-local,SIP/TNM_In-00000f80,SIP/801-00000f81,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",64,59,ANSWERED,3,,1735485449,,3093,886332856,886332856,,,,,1735485449,,3986
+12/29/24 17:15,"""0889707210"" <0889707210>",889707210,801,ext-local,SIP/TNM_In-00000f7c,SIP/801-00000f7d,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",62,57,ANSWERED,3,,1735485348,,3093,889707210,889707210,,,,,1735485348,,3982
+12/29/24 17:09,"""0886332856"" <0886332856>",886332856,801,ext-local,SIP/TNM_In-00000f79,SIP/801-00000f7a,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",39,33,ANSWERED,3,,1735484951,,3093,886332856,886332856,,,,,1735484951,,3979
+12/29/24 17:06,"""0888644290"" <0888644290>",888644290,801,ext-local,SIP/TNM_In-00000f73,SIP/801-00000f74,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",56,51,ANSWERED,3,,1735484792,,3093,888644290,888644290,,,,,1735484792,,3973
+12/29/24 15:55,"""0893549454"" <0893549454>",893549454,801,ext-local,SIP/TNM_In-00000f62,SIP/801-00000f63,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",88,80,ANSWERED,3,,1735480515,,3093,893549454,893549454,,,,,1735480515,,3956
+12/29/24 15:54,"""0893549454"" <0893549454>",893549454,801,ext-local,SIP/TNM_In-00000f60,SIP/801-00000f61,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",33,0,ANSWERED,3,,1735480445,,3093,893549454,893549454,,,,,1735480445,,3954
+12/29/24 15:53,"""0899934835"" <0899934835>",899934835,801,ext-local,SIP/TNM_In-00000f5e,SIP/801-00000f5f,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",38,33,ANSWERED,3,,1735480434,,3093,899934835,899934835,,,,,1735480434,,3952
+12/29/24 15:52,"""0894167270"" <0894167270>",894167270,801,ext-local,SIP/TNM_In-00000f5b,SIP/801-00000f5c,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",15,9,ANSWERED,3,,1735480370,,3093,894167270,894167270,,,,,1735480370,,3949
+12/29/24 15:51,"""0889465153"" <0889465153>",889465153,801,ext-local,SIP/TNM_In-00000f53,SIP/801-00000f54,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",39,18,ANSWERED,3,,1735480315,,3093,889465153,889465153,,,,,1735480315,,3941
+12/29/24 15:51,"""0899092065"" <0899092065>",899092065,801,ext-local,SIP/TNM_In-00000f55,SIP/801-00000f56,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",6,2,ANSWERED,3,,1735480315,,3093,899092065,899092065,,,,,1735480315,,3943
+12/29/24 15:51,"""0894167270"" <0894167270>",894167270,801,ext-local,SIP/TNM_In-00000f51,SIP/801-00000f52,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",17,14,ANSWERED,3,,1735480311,,3093,894167270,894167270,,,,,1735480311,,3939
+12/29/24 15:51,"""0881290872"" <0881290872>",881290872,801,ext-local,SIP/TNM_In-00000f4f,SIP/801-00000f50,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",5,1,ANSWERED,3,,1735480283,,3093,881290872,881290872,,,,,1735480283,,3937
+12/29/24 15:49,"""0894167270"" <0894167270>",894167270,801,ext-local,SIP/TNM_In-00000f4a,SIP/801-00000f4b,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",19,3,ANSWERED,3,,1735480185,,3093,894167270,894167270,,,,,1735480185,,3932
+12/29/24 15:49,"""0883671730"" <0883671730>",883671730,801,ext-local,SIP/TNM_In-00000f48,SIP/801-00000f49,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",25,22,ANSWERED,3,,1735480167,,3093,883671730,883671730,,,,,1735480167,,3930
+12/29/24 15:48,"""0880060939"" <0880060939>",880060939,801,ext-local,SIP/TNM_In-00000f43,SIP/801-00000f44,Dial,"SIP/801,,HhtrIb(func-apply-sipheaders^s^1)",13,8,ANSWERED,3,,1735480095,,3093,880060939,880060939,,,,,1735480095,,3925
+,,,,,,,,,,,,,,,,,,,,,,,,,
+,,,,,,,,,,3395,,,,,,,,,,,,,,,
\ No newline at end of file
diff --git a/public/documents/vpn_form_files/erp_1741647150.xlsx b/public/documents/vpn_form_files/erp_1741647150.xlsx
new file mode 100644
index 0000000..4b76317
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741647150.xlsx differ
diff --git a/public/documents/vpn_form_files/erp_1741799266.xlsx b/public/documents/vpn_form_files/erp_1741799266.xlsx
new file mode 100644
index 0000000..897e980
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741799266.xlsx differ
diff --git a/public/documents/vpn_form_files/erp_1741801779.xlsx b/public/documents/vpn_form_files/erp_1741801779.xlsx
new file mode 100644
index 0000000..f2d98dd
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741801779.xlsx differ
diff --git a/public/documents/vpn_form_files/erp_1741802179.docx b/public/documents/vpn_form_files/erp_1741802179.docx
new file mode 100644
index 0000000..c4b4b62
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741802179.docx differ
diff --git a/public/documents/vpn_form_files/erp_1741802420.docx b/public/documents/vpn_form_files/erp_1741802420.docx
new file mode 100644
index 0000000..eb9a4a5
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741802420.docx differ
diff --git a/public/documents/vpn_form_files/erp_1741802824.pdf b/public/documents/vpn_form_files/erp_1741802824.pdf
new file mode 100644
index 0000000..7fbb9fd
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741802824.pdf differ
diff --git a/public/documents/vpn_form_files/erp_1741803648.doc b/public/documents/vpn_form_files/erp_1741803648.doc
new file mode 100644
index 0000000..ecf3f4e
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741803648.doc differ
diff --git a/public/documents/vpn_form_files/erp_1741803809.doc b/public/documents/vpn_form_files/erp_1741803809.doc
new file mode 100644
index 0000000..4ba31be
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741803809.doc differ
diff --git a/public/documents/vpn_form_files/erp_1741804009.docx b/public/documents/vpn_form_files/erp_1741804009.docx
new file mode 100644
index 0000000..985c4cb
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741804009.docx differ
diff --git a/public/documents/vpn_form_files/erp_1741804440.doc b/public/documents/vpn_form_files/erp_1741804440.doc
new file mode 100644
index 0000000..c8573fe
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741804440.doc differ
diff --git a/public/documents/vpn_form_files/erp_1741805403.xlsx b/public/documents/vpn_form_files/erp_1741805403.xlsx
new file mode 100644
index 0000000..a1c43d4
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741805403.xlsx differ
diff --git a/public/documents/vpn_form_files/erp_1741805651.docx b/public/documents/vpn_form_files/erp_1741805651.docx
new file mode 100644
index 0000000..cf8f6b4
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741805651.docx differ
diff --git a/public/documents/vpn_form_files/erp_1741806366.docx b/public/documents/vpn_form_files/erp_1741806366.docx
new file mode 100644
index 0000000..9848157
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741806366.docx differ
diff --git a/public/documents/vpn_form_files/erp_1741806540.xlsx b/public/documents/vpn_form_files/erp_1741806540.xlsx
new file mode 100644
index 0000000..d9dbec8
Binary files /dev/null and b/public/documents/vpn_form_files/erp_1741806540.xlsx differ
diff --git a/public/helper_documents/mcc_mnc_table.json b/public/helper_documents/mcc_mnc_table.json
new file mode 100644
index 0000000..89a3293
--- /dev/null
+++ b/public/helper_documents/mcc_mnc_table.json
@@ -0,0 +1,20794 @@
+[
+ {
+ "mcc": "289",
+ "mnc": "88",
+ "iso": "ge",
+ "country": "Abkhazia",
+ "country_code": "7",
+ "network": "A-Mobile"
+ },
+ {
+ "mcc": "289",
+ "mnc": "68",
+ "iso": "ge",
+ "country": "Abkhazia",
+ "country_code": "7",
+ "network": "A-Mobile"
+ },
+ {
+ "mcc": "289",
+ "mnc": "67",
+ "iso": "ge",
+ "country": "Abkhazia",
+ "country_code": "7",
+ "network": "Aquafon"
+ },
+ {
+ "mcc": "412",
+ "mnc": "01",
+ "iso": "af",
+ "country": "Afghanistan",
+ "country_code": "93",
+ "network": "AWCC"
+ },
+ {
+ "mcc": "412",
+ "mnc": "50",
+ "iso": "af",
+ "country": "Afghanistan",
+ "country_code": "93",
+ "network": "Etisalat "
+ },
+ {
+ "mcc": "412",
+ "mnc": "30",
+ "iso": "af",
+ "country": "Afghanistan",
+ "country_code": "93",
+ "network": "Etisalat "
+ },
+ {
+ "mcc": "412",
+ "mnc": "80",
+ "iso": "af",
+ "country": "Afghanistan",
+ "country_code": "93",
+ "network": "Mobifone"
+ },
+ {
+ "mcc": "412",
+ "mnc": "88",
+ "iso": "af",
+ "country": "Afghanistan",
+ "country_code": "93",
+ "network": "Mobifone"
+ },
+ {
+ "mcc": "412",
+ "mnc": "40",
+ "iso": "af",
+ "country": "Afghanistan",
+ "country_code": "93",
+ "network": "MTN"
+ },
+ {
+ "mcc": "412",
+ "mnc": "20",
+ "iso": "af",
+ "country": "Afghanistan",
+ "country_code": "93",
+ "network": "Roshan"
+ },
+ {
+ "mcc": "412",
+ "mnc": "03",
+ "iso": "af",
+ "country": "Afghanistan",
+ "country_code": "93",
+ "network": "WaselTelecom (WT)"
+ },
+ {
+ "mcc": "276",
+ "mnc": "03",
+ "iso": "al",
+ "country": "Albania",
+ "country_code": "355",
+ "network": "ALBtelecom Mobile / Eagle"
+ },
+ {
+ "mcc": "276",
+ "mnc": "01",
+ "iso": "al",
+ "country": "Albania",
+ "country_code": "355",
+ "network": "One / AMC"
+ },
+ {
+ "mcc": "276",
+ "mnc": "04",
+ "iso": "al",
+ "country": "Albania",
+ "country_code": "355",
+ "network": "PLUS Communication Sh.a"
+ },
+ {
+ "mcc": "276",
+ "mnc": "02",
+ "iso": "al",
+ "country": "Albania",
+ "country_code": "355",
+ "network": "Vodafone "
+ },
+ {
+ "mcc": "603",
+ "mnc": "02",
+ "iso": "dz",
+ "country": "Algeria",
+ "country_code": "213",
+ "network": "Djezzy"
+ },
+ {
+ "mcc": "603",
+ "mnc": "01",
+ "iso": "dz",
+ "country": "Algeria",
+ "country_code": "213",
+ "network": "Mobilis"
+ },
+ {
+ "mcc": "603",
+ "mnc": "03",
+ "iso": "dz",
+ "country": "Algeria",
+ "country_code": "213",
+ "network": "Ooredoo"
+ },
+ {
+ "mcc": "544",
+ "mnc": "780",
+ "iso": "as",
+ "country": "American Samoa",
+ "country_code": "684",
+ "network": "ASTCA Mobile"
+ },
+ {
+ "mcc": "544",
+ "mnc": "11",
+ "iso": "as",
+ "country": "American Samoa",
+ "country_code": "684",
+ "network": "BlueSky"
+ },
+ {
+ "mcc": "213",
+ "mnc": "03",
+ "iso": "ad",
+ "country": "Andorra",
+ "country_code": "376",
+ "network": "Andorra Telecom / Mobiland"
+ },
+ {
+ "mcc": "631",
+ "mnc": "04",
+ "iso": "ao",
+ "country": "Angola",
+ "country_code": "244",
+ "network": "MoviCel"
+ },
+ {
+ "mcc": "631",
+ "mnc": "02",
+ "iso": "ao",
+ "country": "Angola",
+ "country_code": "244",
+ "network": "Unitel"
+ },
+ {
+ "mcc": "365",
+ "mnc": "850",
+ "iso": "ai",
+ "country": "Anguilla",
+ "country_code": "1264",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "365",
+ "mnc": "840",
+ "iso": "ai",
+ "country": "Anguilla",
+ "country_code": "1264",
+ "network": "Flow"
+ },
+ {
+ "mcc": "344",
+ "mnc": "93",
+ "iso": "ag",
+ "country": "Antigua and Barbuda",
+ "country_code": "1268",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "344",
+ "mnc": "930",
+ "iso": "ag",
+ "country": "Antigua and Barbuda",
+ "country_code": "1268",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "344",
+ "mnc": "92",
+ "iso": "ag",
+ "country": "Antigua and Barbuda",
+ "country_code": "1268",
+ "network": "Flow"
+ },
+ {
+ "mcc": "344",
+ "mnc": "920",
+ "iso": "ag",
+ "country": "Antigua and Barbuda",
+ "country_code": "1268",
+ "network": "Flow"
+ },
+ {
+ "mcc": "344",
+ "mnc": "03",
+ "iso": "ag",
+ "country": "Antigua and Barbuda",
+ "country_code": "1268",
+ "network": "imobile / APUA"
+ },
+ {
+ "mcc": "344",
+ "mnc": "030",
+ "iso": "ag",
+ "country": "Antigua and Barbuda",
+ "country_code": "1268",
+ "network": "imobile / APUA"
+ },
+ {
+ "mcc": "722",
+ "mnc": "310",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Claro"
+ },
+ {
+ "mcc": "722",
+ "mnc": "330",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Claro"
+ },
+ {
+ "mcc": "722",
+ "mnc": "031",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Claro"
+ },
+ {
+ "mcc": "722",
+ "mnc": "320",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Claro"
+ },
+ {
+ "mcc": "722",
+ "mnc": "299",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Express"
+ },
+ {
+ "mcc": "722",
+ "mnc": "999",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "722",
+ "mnc": "299",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Imowi"
+ },
+ {
+ "mcc": "722",
+ "mnc": "299",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "IPLAN"
+ },
+ {
+ "mcc": "722",
+ "mnc": "299",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Kallofer"
+ },
+ {
+ "mcc": "722",
+ "mnc": "010",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "722",
+ "mnc": "007",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "722",
+ "mnc": "070",
+ "iso": "ar",
+ "country": "Argentina",
+ "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",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Nextel"
+ },
+ {
+ "mcc": "722",
+ "mnc": "299",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Nuestro"
+ },
+ {
+ "mcc": "722",
+ "mnc": "034",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Personal"
+ },
+ {
+ "mcc": "722",
+ "mnc": "299",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Telecentro"
+ },
+ {
+ "mcc": "722",
+ "mnc": "341",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Personal"
+ },
+ {
+ "mcc": "722",
+ "mnc": "340",
+ "iso": "ar",
+ "country": "Argentina",
+ "country_code": "54",
+ "network": "Personal"
+ },
+ {
+ "mcc": "283",
+ "mnc": "01",
+ "iso": "am",
+ "country": "Armenia",
+ "country_code": "374",
+ "network": "Beeline"
+ },
+ {
+ "mcc": "283",
+ "mnc": "04",
+ "iso": "am",
+ "country": "Armenia",
+ "country_code": "374",
+ "network": "KT"
+ },
+ {
+ "mcc": "283",
+ "mnc": "10",
+ "iso": "am",
+ "country": "Armenia",
+ "country_code": "374",
+ "network": "Orange"
+ },
+ {
+ "mcc": "283",
+ "mnc": "05",
+ "iso": "am",
+ "country": "Armenia",
+ "country_code": "374",
+ "network": "Viva-MTS"
+ },
+ {
+ "mcc": "363",
+ "mnc": "02",
+ "iso": "aw",
+ "country": "Aruba",
+ "country_code": "297",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "363",
+ "mnc": "20",
+ "iso": "aw",
+ "country": "Aruba",
+ "country_code": "297",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "363",
+ "mnc": "299",
+ "iso": "aw",
+ "country": "Aruba",
+ "country_code": "297",
+ "network": "MIO"
+ },
+ {
+ "mcc": "363",
+ "mnc": "01",
+ "iso": "aw",
+ "country": "Aruba",
+ "country_code": "297",
+ "network": "SETAR"
+ },
+ {
+ "mcc": "505",
+ "mnc": "14",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "AAPT Ltd. "
+ },
+ {
+ "mcc": "505",
+ "mnc": "299",
+ "iso": "au",
+ "country": "Australia",
+ "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",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Compatel"
+ },
+ {
+ "mcc": "505",
+ "mnc": "04",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Department of Defense"
+ },
+ {
+ "mcc": "505",
+ "mnc": "999",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "505",
+ "mnc": "299",
+ "iso": "au",
+ "country": "Australia",
+ "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",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "505",
+ "mnc": "35",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "MessageBird"
+ },
+ {
+ "mcc": "505",
+ "mnc": "10",
+ "iso": "au",
+ "country": "Australia",
+ "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",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Optus"
+ },
+ {
+ "mcc": "505",
+ "mnc": "50",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Pivotel"
+ },
+ {
+ "mcc": "505",
+ "mnc": "88",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Pivotel"
+ },
+ {
+ "mcc": "505",
+ "mnc": "13",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "RailCorp"
+ },
+ {
+ "mcc": "505",
+ "mnc": "13",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Railcorp/Vodafone"
+ },
+ {
+ "mcc": "505",
+ "mnc": "26",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Sinch"
+ },
+ {
+ "mcc": "505",
+ "mnc": "02",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Optus"
+ },
+ {
+ "mcc": "505",
+ "mnc": "299",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Symbio"
+ },
+ {
+ "mcc": "505",
+ "mnc": "11",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Telstra"
+ },
+ {
+ "mcc": "505",
+ "mnc": "72",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Telstra"
+ },
+ {
+ "mcc": "505",
+ "mnc": "01",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Telstra"
+ },
+ {
+ "mcc": "505",
+ "mnc": "39",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Telstra"
+ },
+ {
+ "mcc": "505",
+ "mnc": "71",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Telstra"
+ },
+ {
+ "mcc": "505",
+ "mnc": "01",
+ "iso": "au",
+ "country": "Australia",
+ "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",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "VicTrack"
+ },
+ {
+ "mcc": "505",
+ "mnc": "03",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "505",
+ "mnc": "06",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "505",
+ "mnc": "12",
+ "iso": "au",
+ "country": "Australia",
+ "country_code": "61",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "505",
+ "mnc": "07",
+ "iso": "au",
+ "country": "Australia",
+ "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",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "A1 Telekom"
+ },
+ {
+ "mcc": "232",
+ "mnc": "12",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "A1 Telekom"
+ },
+ {
+ "mcc": "232",
+ "mnc": "02",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "A1 Telekom"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "ArgoNET"
+ },
+ {
+ "mcc": "232",
+ "mnc": "15",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "T-Mobile / Magenta"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "DIALOG telekom"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Digital Privacy"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "DIMOCO"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "educom"
+ },
+ {
+ "mcc": "232",
+ "mnc": "999",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "232",
+ "mnc": "25",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Holding Graz"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Holding Graz"
+ },
+ {
+ "mcc": "232",
+ "mnc": "19",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Hutchinson Drei"
+ },
+ {
+ "mcc": "232",
+ "mnc": "14",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Hutchinson Drei"
+ },
+ {
+ "mcc": "232",
+ "mnc": "16",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Hutchinson Drei"
+ },
+ {
+ "mcc": "232",
+ "mnc": "10",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Hutchinson Drei"
+ },
+ {
+ "mcc": "232",
+ "mnc": "05",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Hutchinson Drei"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Innsbrucker Kommunalbetriebe"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "kabelplus"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Lenovo Connect"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "LINK Mobility"
+ },
+ {
+ "mcc": "232",
+ "mnc": "26",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "LIWEST Mobil"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "LIWEST Mobil"
+ },
+ {
+ "mcc": "232",
+ "mnc": "17",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Mass Response Service"
+ },
+ {
+ "mcc": "232",
+ "mnc": "20",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Mtel"
+ },
+ {
+ "mcc": "232",
+ "mnc": "91",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "OBB Infrastruktur"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "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",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Plintron"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Simple SMS"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Skymond Mobile"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Smartel Services"
+ },
+ {
+ "mcc": "232",
+ "mnc": "24",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Smartel Services"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "smartspace"
+ },
+ {
+ "mcc": "232",
+ "mnc": "18",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "smartspace"
+ },
+ {
+ "mcc": "232",
+ "mnc": "07",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "T-Mobile / Magenta"
+ },
+ {
+ "mcc": "232",
+ "mnc": "04",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "T-Mobile / Magenta"
+ },
+ {
+ "mcc": "232",
+ "mnc": "03",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "T-Mobile / Magenta"
+ },
+ {
+ "mcc": "232",
+ "mnc": "13",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "T-Mobile / Magenta"
+ },
+ {
+ "mcc": "232",
+ "mnc": "23",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "T-Mobile / Magenta"
+ },
+ {
+ "mcc": "232",
+ "mnc": "08",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "A1 Telekom"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Telfoni"
+ },
+ {
+ "mcc": "232",
+ "mnc": "27",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "232",
+ "mnc": "299",
+ "iso": "at",
+ "country": "Austria",
+ "country_code": "43",
+ "network": "Ventocom"
+ },
+ {
+ "mcc": "400",
+ "mnc": "01",
+ "iso": "az",
+ "country": "Azerbaijan",
+ "country_code": "994",
+ "network": "Azercell"
+ },
+ {
+ "mcc": "400",
+ "mnc": "02",
+ "iso": "az",
+ "country": "Azerbaijan",
+ "country_code": "994",
+ "network": "Bakcell"
+ },
+ {
+ "mcc": "400",
+ "mnc": "03",
+ "iso": "az",
+ "country": "Azerbaijan",
+ "country_code": "994",
+ "network": "FONEX"
+ },
+ {
+ "mcc": "400",
+ "mnc": "04",
+ "iso": "az",
+ "country": "Azerbaijan",
+ "country_code": "994",
+ "network": "Nar Mobile"
+ },
+ {
+ "mcc": "400",
+ "mnc": "06",
+ "iso": "az",
+ "country": "Azerbaijan",
+ "country_code": "994",
+ "network": "Naxtel"
+ },
+ {
+ "mcc": "364",
+ "mnc": "490",
+ "iso": "bs",
+ "country": "Bahamas",
+ "country_code": "1242",
+ "network": "Aliv"
+ },
+ {
+ "mcc": "364",
+ "mnc": "390",
+ "iso": "bs",
+ "country": "Bahamas",
+ "country_code": "1242",
+ "network": "Cybercell / BaTelCo"
+ },
+ {
+ "mcc": "364",
+ "mnc": "30",
+ "iso": "bs",
+ "country": "Bahamas",
+ "country_code": "1242",
+ "network": "Cybercell / BaTelCo"
+ },
+ {
+ "mcc": "364",
+ "mnc": "39",
+ "iso": "bs",
+ "country": "Bahamas",
+ "country_code": "1242",
+ "network": "Cybercell / BaTelCo"
+ },
+ {
+ "mcc": "364",
+ "mnc": "03",
+ "iso": "bs",
+ "country": "Bahamas",
+ "country_code": "1242",
+ "network": "Smart Communications"
+ },
+ {
+ "mcc": "426",
+ "mnc": "01",
+ "iso": "bh",
+ "country": "Bahrain",
+ "country_code": "973",
+ "network": "Batelco"
+ },
+ {
+ "mcc": "426",
+ "mnc": "299",
+ "iso": "bh",
+ "country": "Bahrain",
+ "country_code": "973",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "426",
+ "mnc": "999",
+ "iso": "bh",
+ "country": "Bahrain",
+ "country_code": "973",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "426",
+ "mnc": "05",
+ "iso": "bh",
+ "country": "Bahrain",
+ "country_code": "973",
+ "network": "Royal Court"
+ },
+ {
+ "mcc": "426",
+ "mnc": "04",
+ "iso": "bh",
+ "country": "Bahrain",
+ "country_code": "973",
+ "network": "VIVA"
+ },
+ {
+ "mcc": "426",
+ "mnc": "02",
+ "iso": "bh",
+ "country": "Bahrain",
+ "country_code": "973",
+ "network": "Zain"
+ },
+ {
+ "mcc": "470",
+ "mnc": "07",
+ "iso": "bd",
+ "country": "Bangladesh",
+ "country_code": "880",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "470",
+ "mnc": "02",
+ "iso": "bd",
+ "country": "Bangladesh",
+ "country_code": "880",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "470",
+ "mnc": "03",
+ "iso": "bd",
+ "country": "Bangladesh",
+ "country_code": "880",
+ "network": "Banglalink"
+ },
+ {
+ "mcc": "470",
+ "mnc": "06",
+ "iso": "bd",
+ "country": "Bangladesh",
+ "country_code": "880",
+ "network": "Citycell"
+ },
+ {
+ "mcc": "470",
+ "mnc": "05",
+ "iso": "bd",
+ "country": "Bangladesh",
+ "country_code": "880",
+ "network": "Citycell"
+ },
+ {
+ "mcc": "470",
+ "mnc": "01",
+ "iso": "bd",
+ "country": "Bangladesh",
+ "country_code": "880",
+ "network": "GrameenPhone"
+ },
+ {
+ "mcc": "470",
+ "mnc": "04",
+ "iso": "bd",
+ "country": "Bangladesh",
+ "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",
+ "iso": "bb",
+ "country": "Barbados",
+ "country_code": "1246",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "342",
+ "mnc": "050",
+ "iso": "bb",
+ "country": "Barbados",
+ "country_code": "1246",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "342",
+ "mnc": "299",
+ "iso": "bb",
+ "country": "Barbados",
+ "country_code": "1246",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "342",
+ "mnc": "600",
+ "iso": "bb",
+ "country": "Barbados",
+ "country_code": "1246",
+ "network": "Flow / Lime"
+ },
+ {
+ "mcc": "342",
+ "mnc": "299",
+ "iso": "bb",
+ "country": "Barbados",
+ "country_code": "1246",
+ "network": "Ozone"
+ },
+ {
+ "mcc": "342",
+ "mnc": "820",
+ "iso": "bb",
+ "country": "Barbados",
+ "country_code": "1246",
+ "network": "Sunbeach"
+ },
+ {
+ "mcc": "257",
+ "mnc": "03",
+ "iso": "by",
+ "country": "Belarus",
+ "country_code": "375",
+ "network": "BelCel JV"
+ },
+ {
+ "mcc": "257",
+ "mnc": "04",
+ "iso": "by",
+ "country": "Belarus",
+ "country_code": "375",
+ "network": "life:)"
+ },
+ {
+ "mcc": "257",
+ "mnc": "01",
+ "iso": "by",
+ "country": "Belarus",
+ "country_code": "375",
+ "network": "MDC/Velcom"
+ },
+ {
+ "mcc": "257",
+ "mnc": "02",
+ "iso": "by",
+ "country": "Belarus",
+ "country_code": "375",
+ "network": "MTS"
+ },
+ {
+ "mcc": "257",
+ "mnc": "01",
+ "iso": "by",
+ "country": "Belarus",
+ "country_code": "375",
+ "network": "velcom A1"
+ },
+ {
+ "mcc": "206",
+ "mnc": "20",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Base"
+ },
+ {
+ "mcc": "206",
+ "mnc": "05",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Base"
+ },
+ {
+ "mcc": "206",
+ "mnc": "28",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "BICS"
+ },
+ {
+ "mcc": "206",
+ "mnc": "25",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Dense Air"
+ },
+ {
+ "mcc": "206",
+ "mnc": "23",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Dust Mobile"
+ },
+ {
+ "mcc": "206",
+ "mnc": "33",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Ericsson"
+ },
+ {
+ "mcc": "206",
+ "mnc": "299",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "FEBO"
+ },
+ {
+ "mcc": "206",
+ "mnc": "999",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "206",
+ "mnc": "299",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "GianCom"
+ },
+ {
+ "mcc": "206",
+ "mnc": "02",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Infrabel"
+ },
+ {
+ "mcc": "206",
+ "mnc": "299",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "interactive digital media / IDM"
+ },
+ {
+ "mcc": "206",
+ "mnc": "299",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "L-mobi"
+ },
+ {
+ "mcc": "206",
+ "mnc": "99",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Lancelot"
+ },
+ {
+ "mcc": "206",
+ "mnc": "299",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Legos"
+ },
+ {
+ "mcc": "206",
+ "mnc": "06",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "206",
+ "mnc": "30",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Mobile Vikings"
+ },
+ {
+ "mcc": "206",
+ "mnc": "10",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Mobistar / Orange"
+ },
+ {
+ "mcc": "206",
+ "mnc": "299",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Nord Connect"
+ },
+ {
+ "mcc": "206",
+ "mnc": "34",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "onoff"
+ },
+ {
+ "mcc": "206",
+ "mnc": "299",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "PM Factory"
+ },
+ {
+ "mcc": "206",
+ "mnc": "01",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Proximus"
+ },
+ {
+ "mcc": "206",
+ "mnc": "04",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Proximus"
+ },
+ {
+ "mcc": "206",
+ "mnc": "00",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Proximus"
+ },
+ {
+ "mcc": "206",
+ "mnc": "05",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Telenet Mobile"
+ },
+ {
+ "mcc": "206",
+ "mnc": "07",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Vectone Mobile"
+ },
+ {
+ "mcc": "206",
+ "mnc": "08",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "VOOmobile"
+ },
+ {
+ "mcc": "206",
+ "mnc": "299",
+ "iso": "be",
+ "country": "Belgium",
+ "country_code": "32",
+ "network": "Voxbone / Bandwidth"
+ },
+ {
+ "mcc": "702",
+ "mnc": "67",
+ "iso": "bz",
+ "country": "Belize",
+ "country_code": "501",
+ "network": "DigiCell"
+ },
+ {
+ "mcc": "702",
+ "mnc": "299",
+ "iso": "bz",
+ "country": "Belize",
+ "country_code": "501",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "702",
+ "mnc": "68",
+ "iso": "bz",
+ "country": "Belize",
+ "country_code": "501",
+ "network": "International Telco (INTELCO)"
+ },
+ {
+ "mcc": "702",
+ "mnc": "099",
+ "iso": "bz",
+ "country": "Belize",
+ "country_code": "501",
+ "network": "Smart"
+ },
+ {
+ "mcc": "702",
+ "mnc": "69",
+ "iso": "bz",
+ "country": "Belize",
+ "country_code": "501",
+ "network": "Smart"
+ },
+ {
+ "mcc": "616",
+ "mnc": "04",
+ "iso": "bj",
+ "country": "Benin",
+ "country_code": "229",
+ "network": "Bell Benin/BBCOM"
+ },
+ {
+ "mcc": "616",
+ "mnc": "05",
+ "iso": "bj",
+ "country": "Benin",
+ "country_code": "229",
+ "network": "GloMobile"
+ },
+ {
+ "mcc": "616",
+ "mnc": "01",
+ "iso": "bj",
+ "country": "Benin",
+ "country_code": "229",
+ "network": "Libercom"
+ },
+ {
+ "mcc": "616",
+ "mnc": "02",
+ "iso": "bj",
+ "country": "Benin",
+ "country_code": "229",
+ "network": "Moov"
+ },
+ {
+ "mcc": "616",
+ "mnc": "03",
+ "iso": "bj",
+ "country": "Benin",
+ "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",
+ "iso": "bm",
+ "country": "Bermuda",
+ "country_code": "1441",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "350",
+ "mnc": "299",
+ "iso": "bm",
+ "country": "Bermuda",
+ "country_code": "1441",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "350",
+ "mnc": "02",
+ "iso": "bm",
+ "country": "Bermuda",
+ "country_code": "1441",
+ "network": "M3 Wireless Ltd"
+ },
+ {
+ "mcc": "350",
+ "mnc": "000",
+ "iso": "bm",
+ "country": "Bermuda",
+ "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": "17",
+ "iso": "bt",
+ "country": "Bhutan",
+ "country_code": "975",
+ "network": "Bhutan Telecom Ltd (BTL)"
+ },
+ {
+ "mcc": "402",
+ "mnc": "77",
+ "iso": "bt",
+ "country": "Bhutan",
+ "country_code": "975",
+ "network": "TashiCell"
+ },
+ {
+ "mcc": "736",
+ "mnc": "02",
+ "iso": "bo",
+ "country": "Bolivia",
+ "country_code": "591",
+ "network": "Entel Pcs"
+ },
+ {
+ "mcc": "736",
+ "mnc": "01",
+ "iso": "bo",
+ "country": "Bolivia",
+ "country_code": "591",
+ "network": "Viva/Nuevatel"
+ },
+ {
+ "mcc": "736",
+ "mnc": "03",
+ "iso": "bo",
+ "country": "Bolivia",
+ "country_code": "591",
+ "network": "Tigo"
+ },
+ {
+ "mcc": "362",
+ "mnc": "999",
+ "iso": "bq",
+ "country": "Bonaire, Sint Eustatius and Saba",
+ "country_code": "599",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "218",
+ "mnc": "90",
+ "iso": "ba",
+ "country": "Bosnia and Herzegovina",
+ "country_code": "387",
+ "network": "BH Mobile"
+ },
+ {
+ "mcc": "218",
+ "mnc": "03",
+ "iso": "ba",
+ "country": "Bosnia and Herzegovina",
+ "country_code": "387",
+ "network": "Eronet"
+ },
+ {
+ "mcc": "218",
+ "mnc": "05",
+ "iso": "ba",
+ "country": "Bosnia and Herzegovina",
+ "country_code": "387",
+ "network": "m:tel"
+ },
+ {
+ "mcc": "652",
+ "mnc": "04",
+ "iso": "bw",
+ "country": "Botswana",
+ "country_code": "267",
+ "network": "beMobile"
+ },
+ {
+ "mcc": "652",
+ "mnc": "01",
+ "iso": "bw",
+ "country": "Botswana",
+ "country_code": "267",
+ "network": "Mascom"
+ },
+ {
+ "mcc": "652",
+ "mnc": "02",
+ "iso": "bw",
+ "country": "Botswana",
+ "country_code": "267",
+ "network": "Orange"
+ },
+ {
+ "mcc": "724",
+ "mnc": "26",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "AmericaNet"
+ },
+ {
+ "mcc": "724",
+ "mnc": "12",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Claro/Albra/America Movil"
+ },
+ {
+ "mcc": "724",
+ "mnc": "38",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Claro/Albra/America Movil"
+ },
+ {
+ "mcc": "724",
+ "mnc": "05",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Claro/Albra/America Movil"
+ },
+ {
+ "mcc": "724",
+ "mnc": "01",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Vivo S.A./Telemig "
+ },
+ {
+ "mcc": "724",
+ "mnc": "34",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "CTBC Celular SA (CTBC)"
+ },
+ {
+ "mcc": "724",
+ "mnc": "33",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "CTBC Celular SA (CTBC)"
+ },
+ {
+ "mcc": "724",
+ "mnc": "32",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "CTBC Celular SA (CTBC)"
+ },
+ {
+ "mcc": "724",
+ "mnc": "08",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "TIM"
+ },
+ {
+ "mcc": "724",
+ "mnc": "39",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Nextel (Telet)"
+ },
+ {
+ "mcc": "724",
+ "mnc": "00",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Nextel (Telet)"
+ },
+ {
+ "mcc": "724",
+ "mnc": "16",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Brazil Telcom"
+ },
+ {
+ "mcc": "724",
+ "mnc": "24",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Amazonia Celular S/A"
+ },
+ {
+ "mcc": "724",
+ "mnc": "30",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Oi (TNL PCS / Oi)"
+ },
+ {
+ "mcc": "724",
+ "mnc": "31",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Oi (TNL PCS / Oi)"
+ },
+ {
+ "mcc": "724",
+ "mnc": "54",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "PORTO SEGURO TELECOMUNICACOES"
+ },
+ {
+ "mcc": "724",
+ "mnc": "15",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Sercontel Cel"
+ },
+ {
+ "mcc": "724",
+ "mnc": "07",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "CTBC/Triangulo "
+ },
+ {
+ "mcc": "724",
+ "mnc": "19",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Vivo S.A./Telemig "
+ },
+ {
+ "mcc": "724",
+ "mnc": "03",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "TIM"
+ },
+ {
+ "mcc": "724",
+ "mnc": "02",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "TIM"
+ },
+ {
+ "mcc": "724",
+ "mnc": "04",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "TIM"
+ },
+ {
+ "mcc": "724",
+ "mnc": "37",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Unicel do Brasil Telecomunicacoes Ltda"
+ },
+ {
+ "mcc": "724",
+ "mnc": "10",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Vivo S.A./Telemig "
+ },
+ {
+ "mcc": "724",
+ "mnc": "06",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Vivo S.A./Telemig "
+ },
+ {
+ "mcc": "724",
+ "mnc": "23",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Vivo S.A./Telemig "
+ },
+ {
+ "mcc": "724",
+ "mnc": "11",
+ "iso": "br",
+ "country": "Brazil",
+ "country_code": "55",
+ "network": "Vivo S.A./Telemig "
+ },
+ {
+ "mcc": "348",
+ "mnc": "570",
+ "iso": "vg",
+ "country": "British Virgin Islands",
+ "country_code": "284",
+ "network": "Caribbean Cellular"
+ },
+ {
+ "mcc": "348",
+ "mnc": "770",
+ "iso": "vg",
+ "country": "British Virgin Islands",
+ "country_code": "284",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "348",
+ "mnc": "170",
+ "iso": "vg",
+ "country": "British Virgin Islands",
+ "country_code": "284",
+ "network": "LIME"
+ },
+ {
+ "mcc": "528",
+ "mnc": "02",
+ "iso": "bn",
+ "country": "Brunei",
+ "country_code": "673",
+ "network": "b-mobile"
+ },
+ {
+ "mcc": "528",
+ "mnc": "11",
+ "iso": "bn",
+ "country": "Brunei",
+ "country_code": "673",
+ "network": "Datastream (DTSCom)"
+ },
+ {
+ "mcc": "528",
+ "mnc": "01",
+ "iso": "bn",
+ "country": "Brunei",
+ "country_code": "673",
+ "network": "Telekom Brunei Bhd (TelBru)"
+ },
+ {
+ "mcc": "284",
+ "mnc": "01",
+ "iso": "bg",
+ "country": "Bulgaria",
+ "country_code": "359",
+ "network": "A1"
+ },
+ {
+ "mcc": "284",
+ "mnc": "06",
+ "iso": "bg",
+ "country": "Bulgaria",
+ "country_code": "359",
+ "network": "Vivacom"
+ },
+ {
+ "mcc": "284",
+ "mnc": "03",
+ "iso": "bg",
+ "country": "Bulgaria",
+ "country_code": "359",
+ "network": "Vivacom"
+ },
+ {
+ "mcc": "284",
+ "mnc": "11",
+ "iso": "bg",
+ "country": "Bulgaria",
+ "country_code": "359",
+ "network": "Bulsatcom"
+ },
+ {
+ "mcc": "284",
+ "mnc": "13",
+ "iso": "bg",
+ "country": "Bulgaria",
+ "country_code": "359",
+ "network": "T.com"
+ },
+ {
+ "mcc": "284",
+ "mnc": "05",
+ "iso": "bg",
+ "country": "Bulgaria",
+ "country_code": "359",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "284",
+ "mnc": "03",
+ "iso": "bg",
+ "country": "Bulgaria",
+ "country_code": "359",
+ "network": "Vivacom"
+ },
+ {
+ "mcc": "613",
+ "mnc": "02",
+ "iso": "bf",
+ "country": "Burkina Faso",
+ "country_code": "226",
+ "network": "Orange"
+ },
+ {
+ "mcc": "613",
+ "mnc": "03",
+ "iso": "bf",
+ "country": "Burkina Faso",
+ "country_code": "226",
+ "network": "Telecel"
+ },
+ {
+ "mcc": "613",
+ "mnc": "01",
+ "iso": "bf",
+ "country": "Burkina Faso",
+ "country_code": "226",
+ "network": "Telmob"
+ },
+ {
+ "mcc": "642",
+ "mnc": "02",
+ "iso": "bi",
+ "country": "Burundi",
+ "country_code": "257",
+ "network": "Africel / Safaris"
+ },
+ {
+ "mcc": "642",
+ "mnc": "999",
+ "iso": "bi",
+ "country": "Burundi",
+ "country_code": "257",
+ "network": "Fix\tLine"
+ },
+ {
+ "mcc": "642",
+ "mnc": "82",
+ "iso": "bi",
+ "country": "Burundi",
+ "country_code": "257",
+ "network": "Leo"
+ },
+ {
+ "mcc": "642",
+ "mnc": "01",
+ "iso": "bi",
+ "country": "Burundi",
+ "country_code": "257",
+ "network": "Leo"
+ },
+ {
+ "mcc": "642",
+ "mnc": "08",
+ "iso": "bi",
+ "country": "Burundi",
+ "country_code": "257",
+ "network": "Lumitel"
+ },
+ {
+ "mcc": "642",
+ "mnc": "03",
+ "iso": "bi",
+ "country": "Burundi",
+ "country_code": "257",
+ "network": "ONAMOB"
+ },
+ {
+ "mcc": "642",
+ "mnc": "07",
+ "iso": "bi",
+ "country": "Burundi",
+ "country_code": "257",
+ "network": "Smart"
+ },
+ {
+ "mcc": "456",
+ "mnc": "04",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "QB"
+ },
+ {
+ "mcc": "456",
+ "mnc": "01",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "Cellcard"
+ },
+ {
+ "mcc": "456",
+ "mnc": "299",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "CooTel"
+ },
+ {
+ "mcc": "456",
+ "mnc": "08",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "Metfone"
+ },
+ {
+ "mcc": "456",
+ "mnc": "18",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "Cellcard"
+ },
+ {
+ "mcc": "456",
+ "mnc": "299",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "MPTC"
+ },
+ {
+ "mcc": "456",
+ "mnc": "03",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "QB/Cambodia Adv. Comms."
+ },
+ {
+ "mcc": "456",
+ "mnc": "11",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "Seatel"
+ },
+ {
+ "mcc": "456",
+ "mnc": "06",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "Smart"
+ },
+ {
+ "mcc": "456",
+ "mnc": "05",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "Smart"
+ },
+ {
+ "mcc": "456",
+ "mnc": "02",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "Smart"
+ },
+ {
+ "mcc": "456",
+ "mnc": "09",
+ "iso": "kh",
+ "country": "Cambodia",
+ "country_code": "855",
+ "network": "Sotelco/Beeline"
+ },
+ {
+ "mcc": "624",
+ "mnc": "01",
+ "iso": "cm",
+ "country": "Cameroon",
+ "country_code": "237",
+ "network": "MTN"
+ },
+ {
+ "mcc": "624",
+ "mnc": "04",
+ "iso": "cm",
+ "country": "Cameroon",
+ "country_code": "237",
+ "network": "Nexttel"
+ },
+ {
+ "mcc": "624",
+ "mnc": "02",
+ "iso": "cm",
+ "country": "Cameroon",
+ "country_code": "237",
+ "network": "Orange"
+ },
+ {
+ "mcc": "302",
+ "mnc": "652",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "BC Tel Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "630",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Bell Aliant"
+ },
+ {
+ "mcc": "302",
+ "mnc": "610",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Bell Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "651",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Bell Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "670",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "CityWest Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "361",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Clearnet"
+ },
+ {
+ "mcc": "302",
+ "mnc": "360",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Clearnet"
+ },
+ {
+ "mcc": "302",
+ "mnc": "380",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "DMTS Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "710",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Globalstar Canada"
+ },
+ {
+ "mcc": "302",
+ "mnc": "640",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Latitude Wireless"
+ },
+ {
+ "mcc": "302",
+ "mnc": "370",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "FIDO (Rogers AT&T/ Microcell)"
+ },
+ {
+ "mcc": "302",
+ "mnc": "320",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "mobilicity"
+ },
+ {
+ "mcc": "302",
+ "mnc": "702",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "MT&T Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "660",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "MTS Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "655",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "MTS Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "701",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "NB Tel Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "703",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "New Tel Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "760",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Public Mobile"
+ },
+ {
+ "mcc": "302",
+ "mnc": "657",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Quebectel Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "720",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Rogers AT&T Wireless"
+ },
+ {
+ "mcc": "302",
+ "mnc": "680",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Sask Tel Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "780",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Sask Tel Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "654",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Sask Tel Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "656",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Tbay Mobility"
+ },
+ {
+ "mcc": "302",
+ "mnc": "653",
+ "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": "500",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "Videotron"
+ },
+ {
+ "mcc": "302",
+ "mnc": "490",
+ "iso": "ca",
+ "country": "Canada",
+ "country_code": "1",
+ "network": "WIND"
+ },
+ {
+ "mcc": "625",
+ "mnc": "01",
+ "iso": "cv",
+ "country": "Cape Verde",
+ "country_code": "238",
+ "network": "CVMovel"
+ },
+ {
+ "mcc": "625",
+ "mnc": "02",
+ "iso": "cv",
+ "country": "Cape Verde",
+ "country_code": "238",
+ "network": "Unitel T+"
+ },
+ {
+ "mcc": "346",
+ "mnc": "050",
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": "1345",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "346",
+ "mnc": "006",
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": "1345",
+ "network": "Digicel Ltd."
+ },
+ {
+ "mcc": "346",
+ "mnc": "140",
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": "1345",
+ "network": "Flow / Lime"
+ },
+ {
+ "mcc": "346",
+ "mnc": "001",
+ "iso": "ky",
+ "country": "Cayman Islands",
+ "country_code": "1345",
+ "network": "Logic"
+ },
+ {
+ "mcc": "623",
+ "mnc": "04",
+ "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": "01",
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": "236",
+ "network": "Moov"
+ },
+ {
+ "mcc": "623",
+ "mnc": "03",
+ "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": "02",
+ "iso": "cf",
+ "country": "Central African Republic",
+ "country_code": "236",
+ "network": "Telecel"
+ },
+ {
+ "mcc": "622",
+ "mnc": "01",
+ "iso": "td",
+ "country": "Chad",
+ "country_code": "235",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "622",
+ "mnc": "03",
+ "iso": "td",
+ "country": "Chad",
+ "country_code": "235",
+ "network": "Moov"
+ },
+ {
+ "mcc": "622",
+ "mnc": "04",
+ "iso": "td",
+ "country": "Chad",
+ "country_code": "235",
+ "network": "Salam"
+ },
+ {
+ "mcc": "622",
+ "mnc": "02",
+ "iso": "td",
+ "country": "Chad",
+ "country_code": "235",
+ "network": "Tchad Mobile"
+ },
+ {
+ "mcc": "730",
+ "mnc": "06",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Blue Two Chile SA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "11",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Celupago SA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "15",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Cibeles Telecom SA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "03",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Claro"
+ },
+ {
+ "mcc": "730",
+ "mnc": "10",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Entel Telefonia"
+ },
+ {
+ "mcc": "730",
+ "mnc": "01",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Entel Telefonia Mov"
+ },
+ {
+ "mcc": "730",
+ "mnc": "14",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Netline Telefonica Movil Ltda"
+ },
+ {
+ "mcc": "730",
+ "mnc": "09",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Nextel SA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "05",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Nextel SA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "04",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Nextel SA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "19",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Sociedad Falabella Movil SPA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "07",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "TELEFONICA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "02",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "TELEFONICA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "12",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Telestar Movil SA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "00",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "TESAM SA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "13",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "Tribe Mobile SPA"
+ },
+ {
+ "mcc": "730",
+ "mnc": "08",
+ "iso": "cl",
+ "country": "Chile",
+ "country_code": "56",
+ "network": "VTR Banda Ancha SA"
+ },
+ {
+ "mcc": "460",
+ "mnc": "07",
+ "iso": "cn",
+ "country": "China",
+ "country_code": "86",
+ "network": "China Mobile GSM"
+ },
+ {
+ "mcc": "460",
+ "mnc": "00",
+ "iso": "cn",
+ "country": "China",
+ "country_code": "86",
+ "network": "China Mobile GSM"
+ },
+ {
+ "mcc": "460",
+ "mnc": "02",
+ "iso": "cn",
+ "country": "China",
+ "country_code": "86",
+ "network": "China Mobile GSM"
+ },
+ {
+ "mcc": "460",
+ "mnc": "04",
+ "iso": "cn",
+ "country": "China",
+ "country_code": "86",
+ "network": "China Space Mobile Satellite Telecommunications Co. Ltd (China Spacecom)"
+ },
+ {
+ "mcc": "460",
+ "mnc": "03",
+ "iso": "cn",
+ "country": "China",
+ "country_code": "86",
+ "network": "China Telecom"
+ },
+ {
+ "mcc": "460",
+ "mnc": "05",
+ "iso": "cn",
+ "country": "China",
+ "country_code": "86",
+ "network": "China Telecom"
+ },
+ {
+ "mcc": "460",
+ "mnc": "06",
+ "iso": "cn",
+ "country": "China",
+ "country_code": "86",
+ "network": "China Unicom"
+ },
+ {
+ "mcc": "460",
+ "mnc": "01",
+ "iso": "cn",
+ "country": "China",
+ "country_code": "86",
+ "network": "China Unicom"
+ },
+ {
+ "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": "102",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Movistar"
+ },
+ {
+ "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": "002",
+ "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",
+ "network": "Flash Mobile"
+ },
+ {
+ "mcc": "732",
+ "mnc": "299",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Gomobile"
+ },
+ {
+ "mcc": "732",
+ "mnc": "220",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Libre Tecnologias"
+ },
+ {
+ "mcc": "732",
+ "mnc": "299",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Movil Exito"
+ },
+ {
+ "mcc": "732",
+ "mnc": "123",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "732",
+ "mnc": "001",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "732",
+ "mnc": "299",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Plintron"
+ },
+ {
+ "mcc": "732",
+ "mnc": "230",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Setroc Mobile"
+ },
+ {
+ "mcc": "732",
+ "mnc": "199",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "SUMA movil"
+ },
+ {
+ "mcc": "732",
+ "mnc": "165",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Tigo"
+ },
+ {
+ "mcc": "732",
+ "mnc": "103",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Tigo"
+ },
+ {
+ "mcc": "732",
+ "mnc": "111",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Tigo"
+ },
+ {
+ "mcc": "732",
+ "mnc": "299",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "TuCEL"
+ },
+ {
+ "mcc": "732",
+ "mnc": "142",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "UNE"
+ },
+ {
+ "mcc": "732",
+ "mnc": "020",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "UNE"
+ },
+ {
+ "mcc": "732",
+ "mnc": "299",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Vilacom Mobile"
+ },
+ {
+ "mcc": "732",
+ "mnc": "154",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "Virgin Mobile"
+ },
+ {
+ "mcc": "732",
+ "mnc": "360",
+ "iso": "co",
+ "country": "Colombia",
+ "country_code": "57",
+ "network": "WOM"
+ },
+ {
+ "mcc": "654",
+ "mnc": "299",
+ "iso": "km",
+ "country": "Comoros",
+ "country_code": "269",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "654",
+ "mnc": "01",
+ "iso": "km",
+ "country": "Comoros",
+ "country_code": "269",
+ "network": "HURI"
+ },
+ {
+ "mcc": "654",
+ "mnc": "02",
+ "iso": "km",
+ "country": "Comoros",
+ "country_code": "269",
+ "network": "Telma"
+ },
+ {
+ "mcc": "629",
+ "mnc": "01",
+ "iso": "cg",
+ "country": "Congo",
+ "country_code": "242",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "629",
+ "mnc": "02",
+ "iso": "cg",
+ "country": "Congo",
+ "country_code": "242",
+ "network": "Azur SA (ETC)"
+ },
+ {
+ "mcc": "629",
+ "mnc": "10",
+ "iso": "cg",
+ "country": "Congo",
+ "country_code": "242",
+ "network": "MTN"
+ },
+ {
+ "mcc": "629",
+ "mnc": "07",
+ "iso": "cg",
+ "country": "Congo",
+ "country_code": "242",
+ "network": "Warid"
+ },
+ {
+ "mcc": "548",
+ "mnc": "01",
+ "iso": "ck",
+ "country": "Cook Islands",
+ "country_code": "682",
+ "network": "Vodafone / Bluesky"
+ },
+ {
+ "mcc": "712",
+ "mnc": "03",
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": "506",
+ "network": "Claro"
+ },
+ {
+ "mcc": "712",
+ "mnc": "999",
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": "506",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "712",
+ "mnc": "999",
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": "506",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "712",
+ "mnc": "02",
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": "506",
+ "network": "ICE"
+ },
+ {
+ "mcc": "712",
+ "mnc": "01",
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": "506",
+ "network": "ICE"
+ },
+ {
+ "mcc": "712",
+ "mnc": "04",
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": "506",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "712",
+ "mnc": "20",
+ "iso": "cr",
+ "country": "Costa Rica",
+ "country_code": "506",
+ "network": "Virtualis"
+ },
+ {
+ "mcc": "219",
+ "mnc": "10",
+ "iso": "hr",
+ "country": "Croatia",
+ "country_code": "385",
+ "network": "A1 / VIP"
+ },
+ {
+ "mcc": "219",
+ "mnc": "999",
+ "iso": "hr",
+ "country": "Croatia",
+ "country_code": "385",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "219",
+ "mnc": "01",
+ "iso": "hr",
+ "country": "Croatia",
+ "country_code": "385",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "219",
+ "mnc": "12",
+ "iso": "hr",
+ "country": "Croatia",
+ "country_code": "385",
+ "network": "TELE FOCUS"
+ },
+ {
+ "mcc": "219",
+ "mnc": "02",
+ "iso": "hr",
+ "country": "Croatia",
+ "country_code": "385",
+ "network": "Telemach / Tele2"
+ },
+ {
+ "mcc": "368",
+ "mnc": "01",
+ "iso": "cu",
+ "country": "Cuba",
+ "country_code": "53",
+ "network": "CubaCel/C-COM"
+ },
+ {
+ "mcc": "368",
+ "mnc": "999",
+ "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"
+ },
+ {
+ "mcc": "362",
+ "mnc": "999",
+ "iso": "cw",
+ "country": "Curacao",
+ "country_code": "599",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "362",
+ "mnc": "69",
+ "iso": "cw",
+ "country": "Curacao",
+ "country_code": "599",
+ "network": "Polycom N.V./ Digicel"
+ },
+ {
+ "mcc": "280",
+ "mnc": "22",
+ "iso": "cy",
+ "country": "Cyprus",
+ "country_code": "357",
+ "network": "Cablenet / Lemontel"
+ },
+ {
+ "mcc": "280",
+ "mnc": "02",
+ "iso": "cy",
+ "country": "Cyprus",
+ "country_code": "357",
+ "network": "Cytamobile-Vodafone"
+ },
+ {
+ "mcc": "280",
+ "mnc": "01",
+ "iso": "cy",
+ "country": "Cyprus",
+ "country_code": "357",
+ "network": "Cytamobile-Vodafone"
+ },
+ {
+ "mcc": "280",
+ "mnc": "10",
+ "iso": "cy",
+ "country": "Cyprus",
+ "country_code": "357",
+ "network": "Epic / MTN"
+ },
+ {
+ "mcc": "280",
+ "mnc": "999",
+ "iso": "cy",
+ "country": "Cyprus",
+ "country_code": "357",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "280",
+ "mnc": "20",
+ "iso": "cy",
+ "country": "Cyprus",
+ "country_code": "357",
+ "network": "PrimeTel"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "+4U Mobile"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "3ton"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "CEZ"
+ },
+ {
+ "mcc": "230",
+ "mnc": "08",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Compatel"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Dragon"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "EriMobile"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Fayn"
+ },
+ {
+ "mcc": "230",
+ "mnc": "999",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "GoMobil"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "ha-loo mobil"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Laudatio"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "METRONET"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "MOBIL21"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Nej Mobil"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "NETBOX Mobil"
+ },
+ {
+ "mcc": "230",
+ "mnc": "04",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Nordic Telecom"
+ },
+ {
+ "mcc": "230",
+ "mnc": "02",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "O2"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Odorik"
+ },
+ {
+ "mcc": "230",
+ "mnc": "05",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "PODA"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "SAZKA"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "SZDC"
+ },
+ {
+ "mcc": "230",
+ "mnc": "98",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "SZDC"
+ },
+ {
+ "mcc": "230",
+ "mnc": "07",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "230",
+ "mnc": "01",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Tesco Mobile"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "TOPefekt"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "TT Quality"
+ },
+ {
+ "mcc": "230",
+ "mnc": "09",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Uniphone"
+ },
+ {
+ "mcc": "230",
+ "mnc": "299",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "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",
+ "iso": "cz",
+ "country": "Czech Republic",
+ "country_code": "420",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "630",
+ "mnc": "90",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "Africell"
+ },
+ {
+ "mcc": "630",
+ "mnc": "02",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "630",
+ "mnc": "299",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "630",
+ "mnc": "86",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "Orange"
+ },
+ {
+ "mcc": "630",
+ "mnc": "05",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "Supercell"
+ },
+ {
+ "mcc": "630",
+ "mnc": "299",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "Tatem"
+ },
+ {
+ "mcc": "630",
+ "mnc": "89",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "TIGO/Oasis"
+ },
+ {
+ "mcc": "630",
+ "mnc": "01",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "Vodacom"
+ },
+ {
+ "mcc": "630",
+ "mnc": "88",
+ "iso": "cd",
+ "country": "Democratic Republic of Congo",
+ "country_code": "243",
+ "network": "Yozma Timeturns"
+ },
+ {
+ "mcc": "238",
+ "mnc": "23",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Banedanmark"
+ },
+ {
+ "mcc": "238",
+ "mnc": "15",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Net 1"
+ },
+ {
+ "mcc": "238",
+ "mnc": "88",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Cobira"
+ },
+ {
+ "mcc": "238",
+ "mnc": "13",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Compatel"
+ },
+ {
+ "mcc": "238",
+ "mnc": "05",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": ""
+ },
+ {
+ "mcc": "238",
+ "mnc": "999",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "238",
+ "mnc": "17",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Gotanet"
+ },
+ {
+ "mcc": "238",
+ "mnc": "42",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Greenwave"
+ },
+ {
+ "mcc": "238",
+ "mnc": "06",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "3"
+ },
+ {
+ "mcc": "238",
+ "mnc": "28",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "LINK Mobility"
+ },
+ {
+ "mcc": "238",
+ "mnc": "12",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "238",
+ "mnc": "14",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Monty Mobile"
+ },
+ {
+ "mcc": "238",
+ "mnc": "07",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Mundio Mobile"
+ },
+ {
+ "mcc": "238",
+ "mnc": "04",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Nexcon.io"
+ },
+ {
+ "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": "03",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Syniverse Technologies"
+ },
+ {
+ "mcc": "238",
+ "mnc": "10",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "TDC"
+ },
+ {
+ "mcc": "238",
+ "mnc": "01",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "TDC"
+ },
+ {
+ "mcc": "238",
+ "mnc": "77",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "238",
+ "mnc": "02",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "238",
+ "mnc": "96",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Telia"
+ },
+ {
+ "mcc": "238",
+ "mnc": "20",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Telia"
+ },
+ {
+ "mcc": "238",
+ "mnc": "30",
+ "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": "25",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Viahub"
+ },
+ {
+ "mcc": "238",
+ "mnc": "08",
+ "iso": "dk",
+ "country": "Denmark",
+ "country_code": "45",
+ "network": "Voxbone / Bandwidth"
+ },
+ {
+ "mcc": "638",
+ "mnc": "01",
+ "iso": "dj",
+ "country": "Djibouti",
+ "country_code": "253",
+ "network": "Evatis"
+ },
+ {
+ "mcc": "366",
+ "mnc": "110",
+ "iso": "dm",
+ "country": "Dominica",
+ "country_code": "1767",
+ "network": "C & W"
+ },
+ {
+ "mcc": "366",
+ "mnc": "020",
+ "iso": "dm",
+ "country": "Dominica",
+ "country_code": "1767",
+ "network": "Cingular Wireless/Digicel"
+ },
+ {
+ "mcc": "366",
+ "mnc": "050",
+ "iso": "dm",
+ "country": "Dominica",
+ "country_code": "1767",
+ "network": "Wireless Ventures (Dominica) Ltd (Digicel Dominica)"
+ },
+ {
+ "mcc": "370",
+ "mnc": "02",
+ "iso": "do",
+ "country": "Dominican Republic",
+ "country_code": "1809",
+ "network": "Claro"
+ },
+ {
+ "mcc": "370",
+ "mnc": "01",
+ "iso": "do",
+ "country": "Dominican Republic",
+ "country_code": "1809",
+ "network": "Orange"
+ },
+ {
+ "mcc": "370",
+ "mnc": "03",
+ "iso": "do",
+ "country": "Dominican Republic",
+ "country_code": "1809",
+ "network": "TRIcom"
+ },
+ {
+ "mcc": "370",
+ "mnc": "04",
+ "iso": "do",
+ "country": "Dominican Republic",
+ "country_code": "1809",
+ "network": "Viva"
+ },
+ {
+ "mcc": "514",
+ "mnc": "299",
+ "iso": "tl",
+ "country": "East Timor",
+ "country_code": "670",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "514",
+ "mnc": "999",
+ "iso": "tl",
+ "country": "East Timor",
+ "country_code": "670",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "514",
+ "mnc": "03",
+ "iso": "tl",
+ "country": "East Timor",
+ "country_code": "670",
+ "network": "Telemor"
+ },
+ {
+ "mcc": "514",
+ "mnc": "01",
+ "iso": "tl",
+ "country": "East Timor",
+ "country_code": "670",
+ "network": "Telkomcel"
+ },
+ {
+ "mcc": "514",
+ "mnc": "02",
+ "iso": "tl",
+ "country": "East Timor",
+ "country_code": "670",
+ "network": "Timor Telecom"
+ },
+ {
+ "mcc": "740",
+ "mnc": "01",
+ "iso": "ec",
+ "country": "Ecuador",
+ "country_code": "593",
+ "network": "Claro/Port"
+ },
+ {
+ "mcc": "740",
+ "mnc": "02",
+ "iso": "ec",
+ "country": "Ecuador",
+ "country_code": "593",
+ "network": "CNT Mobile"
+ },
+ {
+ "mcc": "740",
+ "mnc": "000",
+ "iso": "ec",
+ "country": "Ecuador",
+ "country_code": "593",
+ "network": "Failed Call(s)"
+ },
+ {
+ "mcc": "740",
+ "mnc": "00",
+ "iso": "ec",
+ "country": "Ecuador",
+ "country_code": "593",
+ "network": "MOVISTAR/OteCel"
+ },
+ {
+ "mcc": "740",
+ "mnc": "03",
+ "iso": "ec",
+ "country": "Ecuador",
+ "country_code": "593",
+ "network": "Tuenti"
+ },
+ {
+ "mcc": "602",
+ "mnc": "03",
+ "iso": "eg",
+ "country": "Egypt",
+ "country_code": "20",
+ "network": "Etisalat"
+ },
+ {
+ "mcc": "602",
+ "mnc": "299",
+ "iso": "eg",
+ "country": "Egypt",
+ "country_code": "20",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "602",
+ "mnc": "01",
+ "iso": "eg",
+ "country": "Egypt",
+ "country_code": "20",
+ "network": "Orange"
+ },
+ {
+ "mcc": "602",
+ "mnc": "02",
+ "iso": "eg",
+ "country": "Egypt",
+ "country_code": "20",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "602",
+ "mnc": "04",
+ "iso": "eg",
+ "country": "Egypt",
+ "country_code": "20",
+ "network": "WE"
+ },
+ {
+ "mcc": "706",
+ "mnc": "01",
+ "iso": "sv",
+ "country": "El Salvador",
+ "country_code": "503",
+ "network": "CLARO/CTE"
+ },
+ {
+ "mcc": "706",
+ "mnc": "02",
+ "iso": "sv",
+ "country": "El Salvador",
+ "country_code": "503",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "706",
+ "mnc": "05",
+ "iso": "sv",
+ "country": "El Salvador",
+ "country_code": "503",
+ "network": "INTELFON SA de CV"
+ },
+ {
+ "mcc": "706",
+ "mnc": "04",
+ "iso": "sv",
+ "country": "El Salvador",
+ "country_code": "503",
+ "network": "Telefonica"
+ },
+ {
+ "mcc": "706",
+ "mnc": "03",
+ "iso": "sv",
+ "country": "El Salvador",
+ "country_code": "503",
+ "network": "Telemovil"
+ },
+ {
+ "mcc": "627",
+ "mnc": "299",
+ "iso": "gq",
+ "country": "Equatorial Guinea",
+ "country_code": "240",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "627",
+ "mnc": "03",
+ "iso": "gq",
+ "country": "Equatorial Guinea",
+ "country_code": "240",
+ "network": "Muni"
+ },
+ {
+ "mcc": "627",
+ "mnc": "01",
+ "iso": "gq",
+ "country": "Equatorial Guinea",
+ "country_code": "240",
+ "network": "Orange"
+ },
+ {
+ "mcc": "657",
+ "mnc": "01",
+ "iso": "er",
+ "country": "Eritrea",
+ "country_code": "291",
+ "network": "Eritel"
+ },
+ {
+ "mcc": "248",
+ "mnc": "02",
+ "iso": "ee",
+ "country": "Estonia",
+ "country_code": "372",
+ "network": "Elisa"
+ },
+ {
+ "mcc": "248",
+ "mnc": "03",
+ "iso": "ee",
+ "country": "Estonia",
+ "country_code": "372",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "248",
+ "mnc": "13",
+ "iso": "ee",
+ "country": "Estonia",
+ "country_code": "372",
+ "network": "Telia"
+ },
+ {
+ "mcc": "248",
+ "mnc": "01",
+ "iso": "ee",
+ "country": "Estonia",
+ "country_code": "372",
+ "network": "Telia"
+ },
+ {
+ "mcc": "248",
+ "mnc": "04",
+ "iso": "ee",
+ "country": "Estonia",
+ "country_code": "372",
+ "network": "TravelSim"
+ },
+ {
+ "mcc": "636",
+ "mnc": "01",
+ "iso": "et",
+ "country": "Ethiopia",
+ "country_code": "251",
+ "network": "Ethio Mobile"
+ },
+ {
+ "mcc": "750",
+ "mnc": "001",
+ "iso": "fk",
+ "country": "Falkland Islands",
+ "country_code": "500",
+ "network": "Sure"
+ },
+ {
+ "mcc": "288",
+ "mnc": "01",
+ "iso": "fo",
+ "country": "Faroe Islands",
+ "country_code": "298",
+ "network": "Faroese Telecom"
+ },
+ {
+ "mcc": "288",
+ "mnc": "02",
+ "iso": "fo",
+ "country": "Faroe Islands",
+ "country_code": "298",
+ "network": "Hey / Kall"
+ },
+ {
+ "mcc": "288",
+ "mnc": "03",
+ "iso": "fo",
+ "country": "Faroe Islands",
+ "country_code": "298",
+ "network": "Tosa"
+ },
+ {
+ "mcc": "542",
+ "mnc": "02",
+ "iso": "fj",
+ "country": "Fiji",
+ "country_code": "679",
+ "network": "DigiCell"
+ },
+ {
+ "mcc": "542",
+ "mnc": "01",
+ "iso": "fj",
+ "country": "Fiji",
+ "country_code": "679",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "244",
+ "mnc": "14",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Alcom"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Benemen"
+ },
+ {
+ "mcc": "244",
+ "mnc": "26",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Compatel"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Cuuma"
+ },
+ {
+ "mcc": "244",
+ "mnc": "03",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "DNA"
+ },
+ {
+ "mcc": "244",
+ "mnc": "12",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "DNA"
+ },
+ {
+ "mcc": "244",
+ "mnc": "13",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "DNA"
+ },
+ {
+ "mcc": "244",
+ "mnc": "04",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "DNA"
+ },
+ {
+ "mcc": "244",
+ "mnc": "12",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "DNA"
+ },
+ {
+ "mcc": "244",
+ "mnc": "21",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Elisa"
+ },
+ {
+ "mcc": "244",
+ "mnc": "06",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Elisa"
+ },
+ {
+ "mcc": "244",
+ "mnc": "05",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Elisa"
+ },
+ {
+ "mcc": "244",
+ "mnc": "05",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Elisa"
+ },
+ {
+ "mcc": "244",
+ "mnc": "82",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "interactive digital media / IDM"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "interactive digital media / IDM"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "IPIFY"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Lancelot"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "MI Carrier Services"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "MobiWeb"
+ },
+ {
+ "mcc": "244",
+ "mnc": "11",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Viahub"
+ },
+ {
+ "mcc": "244",
+ "mnc": "24",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Nord Connect"
+ },
+ {
+ "mcc": "244",
+ "mnc": "41",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "NSN"
+ },
+ {
+ "mcc": "244",
+ "mnc": "09",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "NSN"
+ },
+ {
+ "mcc": "244",
+ "mnc": "08",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "NSN"
+ },
+ {
+ "mcc": "244",
+ "mnc": "38",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "NSN"
+ },
+ {
+ "mcc": "244",
+ "mnc": "39",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "NSN"
+ },
+ {
+ "mcc": "244",
+ "mnc": "40",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "NSN"
+ },
+ {
+ "mcc": "244",
+ "mnc": "07",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "NSN"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "RAILI"
+ },
+ {
+ "mcc": "244",
+ "mnc": "10",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "TDC Oy Finland"
+ },
+ {
+ "mcc": "244",
+ "mnc": "43",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Telavox"
+ },
+ {
+ "mcc": "244",
+ "mnc": "36",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Telia"
+ },
+ {
+ "mcc": "244",
+ "mnc": "91",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Telia"
+ },
+ {
+ "mcc": "244",
+ "mnc": "15",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Telit"
+ },
+ {
+ "mcc": "244",
+ "mnc": "37",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "TravelSim"
+ },
+ {
+ "mcc": "244",
+ "mnc": "299",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Twilio"
+ },
+ {
+ "mcc": "244",
+ "mnc": "35",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Ukko Mobile"
+ },
+ {
+ "mcc": "244",
+ "mnc": "42",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Viahub"
+ },
+ {
+ "mcc": "244",
+ "mnc": "47",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "VIRVE"
+ },
+ {
+ "mcc": "244",
+ "mnc": "46",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "VIRVE"
+ },
+ {
+ "mcc": "244",
+ "mnc": "45",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "VIRVE"
+ },
+ {
+ "mcc": "244",
+ "mnc": "33",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "VIRVE"
+ },
+ {
+ "mcc": "244",
+ "mnc": "32",
+ "iso": "fi",
+ "country": "Finland",
+ "country_code": "358",
+ "network": "Voxbone / Bandwidth"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Add-On Multimedia"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Afone Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "28",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Airmob"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Alphalink"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Alphalink"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Annatel"
+ },
+ {
+ "mcc": "208",
+ "mnc": "92",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "IP Directions"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Atlas"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Auchan"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Auchan"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Axialys"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Bazile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "BJT"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "BJT"
+ },
+ {
+ "mcc": "208",
+ "mnc": "88",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Bouygues Telecom"
+ },
+ {
+ "mcc": "208",
+ "mnc": "21",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Bouygues Telecom"
+ },
+ {
+ "mcc": "208",
+ "mnc": "20",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Bouygues Telecom"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Bretagne Telecom"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "CAT"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "CELESTE"
+ },
+ {
+ "mcc": "208",
+ "mnc": "34",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Cellhire"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Codepi"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Coolwave"
+ },
+ {
+ "mcc": "208",
+ "mnc": "27",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Coriolis"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "CPRO"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "CRH"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "CRT"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "CTExcel"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Doctolib"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "208",
+ "mnc": "999",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Foliateam"
+ },
+ {
+ "mcc": "208",
+ "mnc": "36",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Free Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "15",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Free Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "14",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Free Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "35",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Free Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "16",
+ "iso": "fr",
+ "country": "France",
+ "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",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Halys"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Happy Telecom"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Hexatel"
+ },
+ {
+ "mcc": "208",
+ "mnc": "89",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Hub One"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "i-via"
+ },
+ {
+ "mcc": "208",
+ "mnc": "29",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Orange"
+ },
+ {
+ "mcc": "208",
+ "mnc": "37",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "IP Directions"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "IP Telecom"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Iptis"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "JOi"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Kertel"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Keyyo Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "La Poste Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "La Poste Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "LASOTEL"
+ },
+ {
+ "mcc": "208",
+ "mnc": "38",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Lebara"
+ },
+ {
+ "mcc": "208",
+ "mnc": "17",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Legos"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Linkt"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "LITEYEAR"
+ },
+ {
+ "mcc": "208",
+ "mnc": "15",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Free Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "25",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "24",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "MobiquiThings"
+ },
+ {
+ "mcc": "208",
+ "mnc": "03",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "MobiquiThings"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Netcom"
+ },
+ {
+ "mcc": "208",
+ "mnc": "39",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Networth Telecom"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Nordnet"
+ },
+ {
+ "mcc": "208",
+ "mnc": "26",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "NRJ"
+ },
+ {
+ "mcc": "208",
+ "mnc": "23",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Hub One"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "onoff"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "OpenIP"
+ },
+ {
+ "mcc": "208",
+ "mnc": "01",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Orange"
+ },
+ {
+ "mcc": "208",
+ "mnc": "32",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Orange"
+ },
+ {
+ "mcc": "208",
+ "mnc": "91",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Orange"
+ },
+ {
+ "mcc": "208",
+ "mnc": "02",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Orange"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Paritel"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Prixtel"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Prixtel"
+ },
+ {
+ "mcc": "208",
+ "mnc": "10",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SFR"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SCT TELECOM"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SCT TELECOM"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Sewan Communications"
+ },
+ {
+ "mcc": "208",
+ "mnc": "11",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SFR"
+ },
+ {
+ "mcc": "208",
+ "mnc": "13",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SFR"
+ },
+ {
+ "mcc": "208",
+ "mnc": "09",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SFR"
+ },
+ {
+ "mcc": "208",
+ "mnc": "10",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SFR"
+ },
+ {
+ "mcc": "208",
+ "mnc": "08",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SFR"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "SIMbioz"
+ },
+ {
+ "mcc": "208",
+ "mnc": "04",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Axialys"
+ },
+ {
+ "mcc": "208",
+ "mnc": "30",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Syma Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "TDF"
+ },
+ {
+ "mcc": "208",
+ "mnc": "00",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Tel/Te"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "208",
+ "mnc": "22",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Transatel"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Trunkline"
+ },
+ {
+ "mcc": "208",
+ "mnc": "12",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Truphone"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "unyc"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "VA SOLUTIONS"
+ },
+ {
+ "mcc": "208",
+ "mnc": "31",
+ "iso": "fr",
+ "country": "France",
+ "country_code": "33",
+ "network": "Vectone Mobile"
+ },
+ {
+ "mcc": "208",
+ "mnc": "299",
+ "iso": "fr",
+ "country": "France",
+ "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": "340",
+ "mnc": "11",
+ "iso": "gf",
+ "country": "French Guiana",
+ "country_code": "594",
+ "network": "TelCell GSM"
+ },
+ {
+ "mcc": "340",
+ "mnc": "03",
+ "iso": "gf",
+ "country": "French Guiana",
+ "country_code": "594",
+ "network": "TelCell GSM"
+ },
+ {
+ "mcc": "547",
+ "mnc": "15",
+ "iso": "pf",
+ "country": "French Polynesia",
+ "country_code": "689",
+ "network": "Pacific Mobile Telecom (PMT)"
+ },
+ {
+ "mcc": "547",
+ "mnc": "20",
+ "iso": "pf",
+ "country": "French Polynesia",
+ "country_code": "689",
+ "network": "Vini/Tikiphone"
+ },
+ {
+ "mcc": "628",
+ "mnc": "03",
+ "iso": "ga",
+ "country": "Gabon",
+ "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",
+ "iso": "ga",
+ "country": "Gabon",
+ "country_code": "241",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "628",
+ "mnc": "01",
+ "iso": "ga",
+ "country": "Gabon",
+ "country_code": "241",
+ "network": "Libertis"
+ },
+ {
+ "mcc": "628",
+ "mnc": "02",
+ "iso": "ga",
+ "country": "Gabon",
+ "country_code": "241",
+ "network": "MOOV/Telecel"
+ },
+ {
+ "mcc": "607",
+ "mnc": "02",
+ "iso": "gm",
+ "country": "Gambia",
+ "country_code": "220",
+ "network": "Africel"
+ },
+ {
+ "mcc": "607",
+ "mnc": "03",
+ "iso": "gm",
+ "country": "Gambia",
+ "country_code": "220",
+ "network": "Comium"
+ },
+ {
+ "mcc": "607",
+ "mnc": "01",
+ "iso": "gm",
+ "country": "Gambia",
+ "country_code": "220",
+ "network": "Gamcel"
+ },
+ {
+ "mcc": "607",
+ "mnc": "04",
+ "iso": "gm",
+ "country": "Gambia",
+ "country_code": "220",
+ "network": "QCell"
+ },
+ {
+ "mcc": "282",
+ "mnc": "04",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "Beeline"
+ },
+ {
+ "mcc": "282",
+ "mnc": "01",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "Geocell"
+ },
+ {
+ "mcc": "282",
+ "mnc": "07",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "GlobalCell"
+ },
+ {
+ "mcc": "282",
+ "mnc": "03",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "Iberiatel Ltd."
+ },
+ {
+ "mcc": "282",
+ "mnc": "02",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "MagtiCom"
+ },
+ {
+ "mcc": "282",
+ "mnc": "11",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "Mobilive"
+ },
+ {
+ "mcc": "282",
+ "mnc": "22",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "MyPhone"
+ },
+ {
+ "mcc": "282",
+ "mnc": "10",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "Premium Net"
+ },
+ {
+ "mcc": "282",
+ "mnc": "05",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "Silknet"
+ },
+ {
+ "mcc": "282",
+ "mnc": "08",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "Silknet"
+ },
+ {
+ "mcc": "282",
+ "mnc": "12",
+ "iso": "ge",
+ "country": "Georgia",
+ "country_code": "995",
+ "network": "Telecom 1"
+ },
+ {
+ "mcc": "262",
+ "mnc": "23",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "1&1"
+ },
+ {
+ "mcc": "262",
+ "mnc": "299",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "1&1"
+ },
+ {
+ "mcc": "262",
+ "mnc": "299",
+ "iso": "de",
+ "country": "Germany",
+ "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",
+ "iso": "de",
+ "country": "Germany",
+ "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",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Telefonica / E-Plus"
+ },
+ {
+ "mcc": "262",
+ "mnc": "999",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "262",
+ "mnc": "14",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Lebara"
+ },
+ {
+ "mcc": "262",
+ "mnc": "43",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "262",
+ "mnc": "21",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Multiconnect"
+ },
+ {
+ "mcc": "262",
+ "mnc": "299",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Multiconnect"
+ },
+ {
+ "mcc": "262",
+ "mnc": "22",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "sipgate"
+ },
+ {
+ "mcc": "262",
+ "mnc": "33",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "sipgate"
+ },
+ {
+ "mcc": "262",
+ "mnc": "299",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "TelcoVillage"
+ },
+ {
+ "mcc": "262",
+ "mnc": "24",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "TelcoVillage"
+ },
+ {
+ "mcc": "262",
+ "mnc": "05",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Telefonica / E-Plus"
+ },
+ {
+ "mcc": "262",
+ "mnc": "17",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Telefonica / E-Plus"
+ },
+ {
+ "mcc": "262",
+ "mnc": "12",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Telefonica / E-Plus"
+ },
+ {
+ "mcc": "262",
+ "mnc": "03",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Telefonica / E-Plus"
+ },
+ {
+ "mcc": "262",
+ "mnc": "11",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Telefonica / O2"
+ },
+ {
+ "mcc": "262",
+ "mnc": "08",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Telefonica / O2"
+ },
+ {
+ "mcc": "262",
+ "mnc": "16",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Telefonica / O2"
+ },
+ {
+ "mcc": "262",
+ "mnc": "07",
+ "iso": "de",
+ "country": "Germany",
+ "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",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "262",
+ "mnc": "299",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Truphone"
+ },
+ {
+ "mcc": "262",
+ "mnc": "09",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "262",
+ "mnc": "04",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "262",
+ "mnc": "02",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "262",
+ "mnc": "42",
+ "iso": "de",
+ "country": "Germany",
+ "country_code": "49",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "620",
+ "mnc": "06",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "620",
+ "mnc": "03",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "620",
+ "mnc": "299",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "Comsys"
+ },
+ {
+ "mcc": "620",
+ "mnc": "04",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "Expresso Ghana Ltd"
+ },
+ {
+ "mcc": "620",
+ "mnc": "07",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "Glo"
+ },
+ {
+ "mcc": "620",
+ "mnc": "01",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "MTN"
+ },
+ {
+ "mcc": "620",
+ "mnc": "05",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "National Security"
+ },
+ {
+ "mcc": "620",
+ "mnc": "08",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "Surfline"
+ },
+ {
+ "mcc": "620",
+ "mnc": "02",
+ "iso": "gh",
+ "country": "Ghana",
+ "country_code": "233",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "266",
+ "mnc": "06",
+ "iso": "gi",
+ "country": "Gibraltar",
+ "country_code": "350",
+ "network": "CTS Mobile"
+ },
+ {
+ "mcc": "266",
+ "mnc": "09",
+ "iso": "gi",
+ "country": "Gibraltar",
+ "country_code": "350",
+ "network": "eazi telecom"
+ },
+ {
+ "mcc": "266",
+ "mnc": "999",
+ "iso": "gi",
+ "country": "Gibraltar",
+ "country_code": "350",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "266",
+ "mnc": "299",
+ "iso": "gi",
+ "country": "Gibraltar",
+ "country_code": "350",
+ "network": "GibFibreSpeed"
+ },
+ {
+ "mcc": "266",
+ "mnc": "01",
+ "iso": "gi",
+ "country": "Gibraltar",
+ "country_code": "350",
+ "network": "Gibtel"
+ },
+ {
+ "mcc": "202",
+ "mnc": "299",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "AMD Telecom"
+ },
+ {
+ "mcc": "202",
+ "mnc": "07",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "AMD Telecom"
+ },
+ {
+ "mcc": "202",
+ "mnc": "299",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Apifon"
+ },
+ {
+ "mcc": "202",
+ "mnc": "15",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "BWS"
+ },
+ {
+ "mcc": "202",
+ "mnc": "02",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Cosmote"
+ },
+ {
+ "mcc": "202",
+ "mnc": "01",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Cosmote"
+ },
+ {
+ "mcc": "202",
+ "mnc": "14",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "CyTa Mobile"
+ },
+ {
+ "mcc": "202",
+ "mnc": "999",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "202",
+ "mnc": "16",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Inter Telecom"
+ },
+ {
+ "mcc": "202",
+ "mnc": "299",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Interconnect"
+ },
+ {
+ "mcc": "202",
+ "mnc": "299",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "M-STAT"
+ },
+ {
+ "mcc": "202",
+ "mnc": "299",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Nova"
+ },
+ {
+ "mcc": "202",
+ "mnc": "04",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "OSE"
+ },
+ {
+ "mcc": "202",
+ "mnc": "04",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "OSE"
+ },
+ {
+ "mcc": "202",
+ "mnc": "03",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "OTE"
+ },
+ {
+ "mcc": "202",
+ "mnc": "03",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "OTE"
+ },
+ {
+ "mcc": "202",
+ "mnc": "299",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "OTEGLOBE"
+ },
+ {
+ "mcc": "202",
+ "mnc": "299",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Premium Net"
+ },
+ {
+ "mcc": "202",
+ "mnc": "10",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Wind"
+ },
+ {
+ "mcc": "202",
+ "mnc": "05",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "202",
+ "mnc": "09",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Wind"
+ },
+ {
+ "mcc": "202",
+ "mnc": "10",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Wind"
+ },
+ {
+ "mcc": "202",
+ "mnc": "12",
+ "iso": "gr",
+ "country": "Greece",
+ "country_code": "30",
+ "network": "Yuboto"
+ },
+ {
+ "mcc": "290",
+ "mnc": "01",
+ "iso": "gl",
+ "country": "Greenland",
+ "country_code": "299",
+ "network": "Tele Greenland"
+ },
+ {
+ "mcc": "352",
+ "mnc": "110",
+ "iso": "gd",
+ "country": "Grenada",
+ "country_code": "1473",
+ "network": "Cable & Wireless"
+ },
+ {
+ "mcc": "352",
+ "mnc": "030",
+ "iso": "gd",
+ "country": "Grenada",
+ "country_code": "1473",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "352",
+ "mnc": "050",
+ "iso": "gd",
+ "country": "Grenada",
+ "country_code": "1473",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "340",
+ "mnc": "08",
+ "iso": "gp",
+ "country": "Guadeloupe ",
+ "country_code": "590",
+ "network": "Dauphin Telecom SU (Guadeloupe Telecom)"
+ },
+ {
+ "mcc": "340",
+ "mnc": "10",
+ "iso": "gp",
+ "country": "Guadeloupe ",
+ "country_code": "590",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "370",
+ "iso": "gu",
+ "country": "Guam",
+ "country_code": "1671",
+ "network": "Docomo"
+ },
+ {
+ "mcc": "310",
+ "mnc": "470",
+ "iso": "gu",
+ "country": "Guam",
+ "country_code": "1671",
+ "network": "Docomo"
+ },
+ {
+ "mcc": "310",
+ "mnc": "140",
+ "iso": "gu",
+ "country": "Guam",
+ "country_code": "1671",
+ "network": "GTA Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "033",
+ "iso": "gu",
+ "country": "Guam",
+ "country_code": "1671",
+ "network": "Guam Teleph. Auth"
+ },
+ {
+ "mcc": "310",
+ "mnc": "032",
+ "iso": "gu",
+ "country": "Guam",
+ "country_code": "1671",
+ "network": "IT&E OverSeas"
+ },
+ {
+ "mcc": "311",
+ "mnc": "250",
+ "iso": "gu",
+ "country": "Guam",
+ "country_code": "1671",
+ "network": "Wave Runner LLC"
+ },
+ {
+ "mcc": "704",
+ "mnc": "01",
+ "iso": "gt",
+ "country": "Guatemala",
+ "country_code": "502",
+ "network": "Claro"
+ },
+ {
+ "mcc": "704",
+ "mnc": "03",
+ "iso": "gt",
+ "country": "Guatemala",
+ "country_code": "502",
+ "network": "Telefonica"
+ },
+ {
+ "mcc": "704",
+ "mnc": "02",
+ "iso": "gt",
+ "country": "Guatemala",
+ "country_code": "502",
+ "network": "TIGO/COMCEL"
+ },
+ {
+ "mcc": "611",
+ "mnc": "05",
+ "iso": "gn",
+ "country": "Guinea",
+ "country_code": "224",
+ "network": "Cellcom"
+ },
+ {
+ "mcc": "611",
+ "mnc": "03",
+ "iso": "gn",
+ "country": "Guinea",
+ "country_code": "224",
+ "network": "Intercel"
+ },
+ {
+ "mcc": "611",
+ "mnc": "04",
+ "iso": "gn",
+ "country": "Guinea",
+ "country_code": "224",
+ "network": "MTN"
+ },
+ {
+ "mcc": "611",
+ "mnc": "01",
+ "iso": "gn",
+ "country": "Guinea",
+ "country_code": "224",
+ "network": "Orange"
+ },
+ {
+ "mcc": "611",
+ "mnc": "02",
+ "iso": "gn",
+ "country": "Guinea",
+ "country_code": "224",
+ "network": "SotelGui"
+ },
+ {
+ "mcc": "632",
+ "mnc": "999",
+ "iso": "gw",
+ "country": "Guinea-Bissau",
+ "country_code": "245",
+ "network": "Fix\tLine"
+ },
+ {
+ "mcc": "632",
+ "mnc": "01",
+ "iso": "gw",
+ "country": "Guinea-Bissau",
+ "country_code": "245",
+ "network": "Guinetel"
+ },
+ {
+ "mcc": "632",
+ "mnc": "02",
+ "iso": "gw",
+ "country": "Guinea-Bissau",
+ "country_code": "245",
+ "network": "MTN"
+ },
+ {
+ "mcc": "632",
+ "mnc": "03",
+ "iso": "gw",
+ "country": "Guinea-Bissau",
+ "country_code": "245",
+ "network": "Orange"
+ },
+ {
+ "mcc": "738",
+ "mnc": "02",
+ "iso": "gy",
+ "country": "Guyana",
+ "country_code": "592",
+ "network": "Cellink Plus"
+ },
+ {
+ "mcc": "738",
+ "mnc": "01",
+ "iso": "gy",
+ "country": "Guyana",
+ "country_code": "592",
+ "network": "DigiCel"
+ },
+ {
+ "mcc": "372",
+ "mnc": "01",
+ "iso": "ht",
+ "country": "Haiti",
+ "country_code": "509",
+ "network": "Comcel"
+ },
+ {
+ "mcc": "372",
+ "mnc": "02",
+ "iso": "ht",
+ "country": "Haiti",
+ "country_code": "509",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "372",
+ "mnc": "03",
+ "iso": "ht",
+ "country": "Haiti",
+ "country_code": "509",
+ "network": "Natcom"
+ },
+ {
+ "mcc": "708",
+ "mnc": "040",
+ "iso": "hn",
+ "country": "Honduras",
+ "country_code": "504",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "708",
+ "mnc": "030",
+ "iso": "hn",
+ "country": "Honduras",
+ "country_code": "504",
+ "network": "HonduTel"
+ },
+ {
+ "mcc": "708",
+ "mnc": "001",
+ "iso": "hn",
+ "country": "Honduras",
+ "country_code": "504",
+ "network": "SERCOM/CLARO"
+ },
+ {
+ "mcc": "708",
+ "mnc": "002",
+ "iso": "hn",
+ "country": "Honduras",
+ "country_code": "504",
+ "network": "Telefonica/CELTEL"
+ },
+ {
+ "mcc": "454",
+ "mnc": "12",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "China Mobile/Peoples"
+ },
+ {
+ "mcc": "454",
+ "mnc": "28",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "China Mobile/Peoples"
+ },
+ {
+ "mcc": "454",
+ "mnc": "13",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "China Mobile/Peoples"
+ },
+ {
+ "mcc": "454",
+ "mnc": "09",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "China Motion"
+ },
+ {
+ "mcc": "454",
+ "mnc": "07",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "China Unicom Ltd"
+ },
+ {
+ "mcc": "454",
+ "mnc": "11",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "China-HongKong Telecom Ltd (CHKTL)"
+ },
+ {
+ "mcc": "454",
+ "mnc": "01",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "Citic Telecom Ltd."
+ },
+ {
+ "mcc": "454",
+ "mnc": "02",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "CSL Ltd."
+ },
+ {
+ "mcc": "454",
+ "mnc": "00",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "CSL Ltd."
+ },
+ {
+ "mcc": "454",
+ "mnc": "18",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "CSL Ltd."
+ },
+ {
+ "mcc": "454",
+ "mnc": "10",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "CSL/New World PCS Ltd."
+ },
+ {
+ "mcc": "454",
+ "mnc": "31",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "CTExcel"
+ },
+ {
+ "mcc": "454",
+ "mnc": "14",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "H3G/Hutchinson"
+ },
+ {
+ "mcc": "454",
+ "mnc": "05",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "H3G/Hutchinson"
+ },
+ {
+ "mcc": "454",
+ "mnc": "04",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "H3G/Hutchinson"
+ },
+ {
+ "mcc": "454",
+ "mnc": "03",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "H3G/Hutchinson"
+ },
+ {
+ "mcc": "454",
+ "mnc": "20",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "HKT/PCCW"
+ },
+ {
+ "mcc": "454",
+ "mnc": "19",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "HKT/PCCW"
+ },
+ {
+ "mcc": "454",
+ "mnc": "29",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "HKT/PCCW"
+ },
+ {
+ "mcc": "454",
+ "mnc": "16",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "HKT/PCCW"
+ },
+ {
+ "mcc": "454",
+ "mnc": "47",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "shared by private TETRA systems"
+ },
+ {
+ "mcc": "454",
+ "mnc": "24",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "Multibyte Info Technology Ltd"
+ },
+ {
+ "mcc": "454",
+ "mnc": "40",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "shared by private TETRA systems"
+ },
+ {
+ "mcc": "454",
+ "mnc": "08",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "Truephone"
+ },
+ {
+ "mcc": "454",
+ "mnc": "17",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "Vodafone/SmarTone"
+ },
+ {
+ "mcc": "454",
+ "mnc": "15",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "Vodafone/SmarTone"
+ },
+ {
+ "mcc": "454",
+ "mnc": "06",
+ "iso": "hk",
+ "country": "Hongkong",
+ "country_code": "852",
+ "network": "Vodafone/SmarTone"
+ },
+ {
+ "mcc": "216",
+ "mnc": "299",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Antenna"
+ },
+ {
+ "mcc": "216",
+ "mnc": "03",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Digi"
+ },
+ {
+ "mcc": "216",
+ "mnc": "999",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Fix line"
+ },
+ {
+ "mcc": "216",
+ "mnc": "299",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Invitech"
+ },
+ {
+ "mcc": "216",
+ "mnc": "299",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Mobil4"
+ },
+ {
+ "mcc": "216",
+ "mnc": "02",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "MVM NET"
+ },
+ {
+ "mcc": "216",
+ "mnc": "299",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Netfone"
+ },
+ {
+ "mcc": "216",
+ "mnc": "299",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "TARR"
+ },
+ {
+ "mcc": "216",
+ "mnc": "30",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Telekom"
+ },
+ {
+ "mcc": "216",
+ "mnc": "01",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "216",
+ "mnc": "71",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "UPC Magyarorszag Kft."
+ },
+ {
+ "mcc": "216",
+ "mnc": "299",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Vidanet"
+ },
+ {
+ "mcc": "216",
+ "mnc": "71",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "216",
+ "mnc": "70",
+ "iso": "hu",
+ "country": "Hungary",
+ "country_code": "36",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "274",
+ "mnc": "09",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Amitelo"
+ },
+ {
+ "mcc": "274",
+ "mnc": "07",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "IceCell"
+ },
+ {
+ "mcc": "274",
+ "mnc": "11",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "NOVA"
+ },
+ {
+ "mcc": "274",
+ "mnc": "31",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Siminn"
+ },
+ {
+ "mcc": "274",
+ "mnc": "08",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Siminn"
+ },
+ {
+ "mcc": "274",
+ "mnc": "01",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Siminn"
+ },
+ {
+ "mcc": "274",
+ "mnc": "16",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "274",
+ "mnc": "04",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Viking Wireless"
+ },
+ {
+ "mcc": "274",
+ "mnc": "12",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "274",
+ "mnc": "02",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "274",
+ "mnc": "03",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "274",
+ "mnc": "05",
+ "iso": "is",
+ "country": "Iceland",
+ "country_code": "354",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "404",
+ "mnc": "17",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel"
+ },
+ {
+ "mcc": "404",
+ "mnc": "42",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel"
+ },
+ {
+ "mcc": "404",
+ "mnc": "33",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel"
+ },
+ {
+ "mcc": "404",
+ "mnc": "29",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel"
+ },
+ {
+ "mcc": "404",
+ "mnc": "28",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel"
+ },
+ {
+ "mcc": "404",
+ "mnc": "25",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel"
+ },
+ {
+ "mcc": "404",
+ "mnc": "01",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel Digilink India"
+ },
+ {
+ "mcc": "404",
+ "mnc": "15",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel Digilink India"
+ },
+ {
+ "mcc": "404",
+ "mnc": "60",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Aircel Digilink India"
+ },
+ {
+ "mcc": "405",
+ "mnc": "53",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "AirTel"
+ },
+ {
+ "mcc": "404",
+ "mnc": "86",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Barakhamba Sales & Serv."
+ },
+ {
+ "mcc": "404",
+ "mnc": "13",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Barakhamba Sales & Serv."
+ },
+ {
+ "mcc": "404",
+ "mnc": "58",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "81",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "74",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "38",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "57",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "80",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "73",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "34",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "66",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "55",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "72",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "77",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "64",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "54",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "71",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "76",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "62",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "53",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "59",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "75",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "51",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "BSNL"
+ },
+ {
+ "mcc": "404",
+ "mnc": "10",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Bharti Airtel Limited (Delhi)"
+ },
+ {
+ "mcc": "404",
+ "mnc": "045",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Bharti Airtel Limited (Karnataka) (India)"
+ },
+ {
+ "mcc": "404",
+ "mnc": "79",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "CellOne A&N"
+ },
+ {
+ "mcc": "404",
+ "mnc": "87",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Escorts Telecom Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "82",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Escorts Telecom Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "89",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Escorts Telecom Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "88",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Escorts Telecom Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "12",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Escotel Mobile Communications"
+ },
+ {
+ "mcc": "404",
+ "mnc": "19",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Escotel Mobile Communications"
+ },
+ {
+ "mcc": "404",
+ "mnc": "56",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Escotel Mobile Communications"
+ },
+ {
+ "mcc": "405",
+ "mnc": "05",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Fascel Limited"
+ },
+ {
+ "mcc": "404",
+ "mnc": "05",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Fascel"
+ },
+ {
+ "mcc": "404",
+ "mnc": "998",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "404",
+ "mnc": "70",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Hexacom India"
+ },
+ {
+ "mcc": "404",
+ "mnc": "16",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Hexcom India"
+ },
+ {
+ "mcc": "404",
+ "mnc": "78",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Idea Cellular Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "07",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Idea Cellular Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "04",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Idea Cellular Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "24",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Idea Cellular Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "22",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Idea Cellular Ltd."
+ },
+ {
+ "mcc": "404",
+ "mnc": "69",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Mahanagar Telephone Nigam"
+ },
+ {
+ "mcc": "404",
+ "mnc": "68",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Mahanagar Telephone Nigam"
+ },
+ {
+ "mcc": "404",
+ "mnc": "83",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliable Internet Services"
+ },
+ {
+ "mcc": "404",
+ "mnc": "50",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliance Telecom Private"
+ },
+ {
+ "mcc": "404",
+ "mnc": "67",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliance Telecom Private"
+ },
+ {
+ "mcc": "404",
+ "mnc": "18",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliance Telecom Private"
+ },
+ {
+ "mcc": "404",
+ "mnc": "85",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliance Telecom Private"
+ },
+ {
+ "mcc": "404",
+ "mnc": "09",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliance Telecom Private"
+ },
+ {
+ "mcc": "405",
+ "mnc": "87",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliance Telecom Private"
+ },
+ {
+ "mcc": "404",
+ "mnc": "36",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliance Telecom Private"
+ },
+ {
+ "mcc": "404",
+ "mnc": "52",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Reliance Telecom Private"
+ },
+ {
+ "mcc": "404",
+ "mnc": "41",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "RPG Cellular"
+ },
+ {
+ "mcc": "404",
+ "mnc": "14",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Spice"
+ },
+ {
+ "mcc": "404",
+ "mnc": "44",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Spice"
+ },
+ {
+ "mcc": "404",
+ "mnc": "11",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Sterling Cellular Ltd."
+ },
+ {
+ "mcc": "405",
+ "mnc": "034",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "TATA / Karnataka"
+ },
+ {
+ "mcc": "404",
+ "mnc": "30",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Usha Martin Telecom"
+ },
+ {
+ "mcc": "404",
+ "mnc": "999",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Various Networks"
+ },
+ {
+ "mcc": "404",
+ "mnc": "27",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "404",
+ "mnc": "43",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Vodafone/Essar/Hutch"
+ },
+ {
+ "mcc": "404",
+ "mnc": "20",
+ "iso": "in",
+ "country": "India",
+ "country_code": "91",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "510",
+ "mnc": "08",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "Axis/Natrindo"
+ },
+ {
+ "mcc": "510",
+ "mnc": "99",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "Esia (PT Bakrie Telecom) (CDMA)"
+ },
+ {
+ "mcc": "510",
+ "mnc": "999",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "510",
+ "mnc": "07",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "Flexi (PT Telkom) (CDMA)"
+ },
+ {
+ "mcc": "510",
+ "mnc": "89",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "H3G CP"
+ },
+ {
+ "mcc": "510",
+ "mnc": "21",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "Indosat/Satelindo/M3"
+ },
+ {
+ "mcc": "510",
+ "mnc": "01",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "Indosat/Satelindo/M3"
+ },
+ {
+ "mcc": "510",
+ "mnc": "00",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "PT Pasifik Satelit Nusantara (PSN)"
+ },
+ {
+ "mcc": "510",
+ "mnc": "27",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "PT Sampoerna Telekomunikasi Indonesia (STI)"
+ },
+ {
+ "mcc": "510",
+ "mnc": "28",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "PT Smartfren Telecom Tbk"
+ },
+ {
+ "mcc": "510",
+ "mnc": "09",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "PT Smartfren Telecom Tbk"
+ },
+ {
+ "mcc": "510",
+ "mnc": "11",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "PT. Excelcom"
+ },
+ {
+ "mcc": "510",
+ "mnc": "10",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "Telkomsel"
+ },
+ {
+ "mcc": "510",
+ "mnc": "07",
+ "iso": "id",
+ "country": "Indonesia",
+ "country_code": "62",
+ "network": "Telkomsel"
+ },
+ {
+ "mcc": "901",
+ "mnc": "13",
+ "iso": "n/a",
+ "country": "International Networks",
+ "country_code": "882",
+ "network": "Antarctica"
+ },
+ {
+ "mcc": "432",
+ "mnc": "999",
+ "iso": "ir",
+ "country": "Iran ",
+ "country_code": "98",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "432",
+ "mnc": "19",
+ "iso": "ir",
+ "country": "Iran ",
+ "country_code": "98",
+ "network": "Mobile Telecommunications Company of Esfahan JV-PJS (MTCE)"
+ },
+ {
+ "mcc": "432",
+ "mnc": "70",
+ "iso": "ir",
+ "country": "Iran ",
+ "country_code": "98",
+ "network": "MTCE"
+ },
+ {
+ "mcc": "432",
+ "mnc": "35",
+ "iso": "ir",
+ "country": "Iran ",
+ "country_code": "98",
+ "network": "MTN/IranCell"
+ },
+ {
+ "mcc": "432",
+ "mnc": "20",
+ "iso": "ir",
+ "country": "Iran ",
+ "country_code": "98",
+ "network": "Rightel"
+ },
+ {
+ "mcc": "432",
+ "mnc": "32",
+ "iso": "ir",
+ "country": "Iran ",
+ "country_code": "98",
+ "network": "Taliya"
+ },
+ {
+ "mcc": "432",
+ "mnc": "11",
+ "iso": "ir",
+ "country": "Iran ",
+ "country_code": "98",
+ "network": "MCI/TCI"
+ },
+ {
+ "mcc": "432",
+ "mnc": "14",
+ "iso": "ir",
+ "country": "Iran ",
+ "country_code": "98",
+ "network": "TKC/KFZO"
+ },
+ {
+ "mcc": "418",
+ "mnc": "05",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Asia Cell"
+ },
+ {
+ "mcc": "418",
+ "mnc": "66",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Fastlink"
+ },
+ {
+ "mcc": "418",
+ "mnc": "92",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Itisaluna and Kalemat"
+ },
+ {
+ "mcc": "418",
+ "mnc": "82",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Korek"
+ },
+ {
+ "mcc": "418",
+ "mnc": "40",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Korek"
+ },
+ {
+ "mcc": "418",
+ "mnc": "45",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Mobitel"
+ },
+ {
+ "mcc": "418",
+ "mnc": "30",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Orascom Telecom"
+ },
+ {
+ "mcc": "418",
+ "mnc": "08",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Sanatel"
+ },
+ {
+ "mcc": "418",
+ "mnc": "20",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Zain"
+ },
+ {
+ "mcc": "418",
+ "mnc": "30",
+ "iso": "iq",
+ "country": "Iraq",
+ "country_code": "964",
+ "network": "Zain"
+ },
+ {
+ "mcc": "272",
+ "mnc": "04",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "Access Telecom Ltd."
+ },
+ {
+ "mcc": "272",
+ "mnc": "03",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "Meteor / eir mobile"
+ },
+ {
+ "mcc": "272",
+ "mnc": "07",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "Meteor / eir mobile"
+ },
+ {
+ "mcc": "272",
+ "mnc": "08",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "Meteor / eir mobile"
+ },
+ {
+ "mcc": "272",
+ "mnc": "13",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "272",
+ "mnc": "11",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "Tesco Mobile"
+ },
+ {
+ "mcc": "272",
+ "mnc": "17",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "3"
+ },
+ {
+ "mcc": "272",
+ "mnc": "02",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "3"
+ },
+ {
+ "mcc": "272",
+ "mnc": "05",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "3"
+ },
+ {
+ "mcc": "272",
+ "mnc": "15",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "Virgin Media"
+ },
+ {
+ "mcc": "272",
+ "mnc": "01",
+ "iso": "ie",
+ "country": "Ireland",
+ "country_code": "353",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "425",
+ "mnc": "19",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "019 Mobile"
+ },
+ {
+ "mcc": "425",
+ "mnc": "299",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Annatel Mobile"
+ },
+ {
+ "mcc": "425",
+ "mnc": "23",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Beezz"
+ },
+ {
+ "mcc": "425",
+ "mnc": "299",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Bynet"
+ },
+ {
+ "mcc": "425",
+ "mnc": "299",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Cellact"
+ },
+ {
+ "mcc": "425",
+ "mnc": "02",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Cellcom"
+ },
+ {
+ "mcc": "425",
+ "mnc": "299",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "425",
+ "mnc": "08",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Golan Telecom"
+ },
+ {
+ "mcc": "425",
+ "mnc": "15",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Home Cellular"
+ },
+ {
+ "mcc": "425",
+ "mnc": "77",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Hot Mobile"
+ },
+ {
+ "mcc": "425",
+ "mnc": "07",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Hot Mobile"
+ },
+ {
+ "mcc": "425",
+ "mnc": "07",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Hot Mobile"
+ },
+ {
+ "mcc": "425",
+ "mnc": "13",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Ituran"
+ },
+ {
+ "mcc": "425",
+ "mnc": "22",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Maskyoo"
+ },
+ {
+ "mcc": "425",
+ "mnc": "01",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Orange"
+ },
+ {
+ "mcc": "425",
+ "mnc": "03",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Pelephone"
+ },
+ {
+ "mcc": "425",
+ "mnc": "12",
+ "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": "19",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Telzar/AZI "
+ },
+ {
+ "mcc": "425",
+ "mnc": "17",
+ "iso": "il",
+ "country": "Israel",
+ "country_code": "972",
+ "network": "Von waves"
+ },
+ {
+ "mcc": "425",
+ "mnc": "09",
+ "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": "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": "36",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Digi"
+ },
+ {
+ "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": "02",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Elsacom"
+ },
+ {
+ "mcc": "222",
+ "mnc": "42",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Enel"
+ },
+ {
+ "mcc": "222",
+ "mnc": "08",
+ "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": "77",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "IPSE 2000"
+ },
+ {
+ "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": "07",
+ "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": "00",
+ "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": "43",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Telecom Italia Mobile"
+ },
+ {
+ "mcc": "222",
+ "mnc": "01",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "TIM"
+ },
+ {
+ "mcc": "222",
+ "mnc": "48",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Telecom Italia Mobile"
+ },
+ {
+ "mcc": "222",
+ "mnc": "299",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Sparkle"
+ },
+ {
+ "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": "10",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "222",
+ "mnc": "06",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "222",
+ "mnc": "06",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "222",
+ "mnc": "00",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "VOIP Line"
+ },
+ {
+ "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": "44",
+ "iso": "it",
+ "country": "Italy",
+ "country_code": "39",
+ "network": "Mundio"
+ },
+ {
+ "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": "07",
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": "225",
+ "network": "Aircomm SA"
+ },
+ {
+ "mcc": "612",
+ "mnc": "04",
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": "225",
+ "network": "Comium"
+ },
+ {
+ "mcc": "612",
+ "mnc": "01",
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": "225",
+ "network": "Comstar"
+ },
+ {
+ "mcc": "612",
+ "mnc": "02",
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": "225",
+ "network": "Moov"
+ },
+ {
+ "mcc": "612",
+ "mnc": "05",
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": "225",
+ "network": "MTN"
+ },
+ {
+ "mcc": "612",
+ "mnc": "03",
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": "225",
+ "network": "Orange"
+ },
+ {
+ "mcc": "612",
+ "mnc": "06",
+ "iso": "ci",
+ "country": "Ivory Coast",
+ "country_code": "225",
+ "network": "OriCell"
+ },
+ {
+ "mcc": "338",
+ "mnc": "020",
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": "1876",
+ "network": "Cable & Wireless"
+ },
+ {
+ "mcc": "338",
+ "mnc": "110",
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": "1876",
+ "network": "Cable & Wireless"
+ },
+ {
+ "mcc": "338",
+ "mnc": "180",
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": "1876",
+ "network": "Cable & Wireless"
+ },
+ {
+ "mcc": "338",
+ "mnc": "050",
+ "iso": "jm",
+ "country": "Jamaica",
+ "country_code": "1876",
+ "network": "DIGICEL/Mossel"
+ },
+ {
+ "mcc": "440",
+ "mnc": "00",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "Y-Mobile"
+ },
+ {
+ "mcc": "440",
+ "mnc": "89",
+ "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": "75",
+ "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": "56",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "441",
+ "mnc": "70",
+ "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": "76",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "71",
+ "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": "77",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "08",
+ "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": "54",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "79",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "07",
+ "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": "55",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "88",
+ "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": "74",
+ "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": "02",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "22",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "43",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "27",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "87",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "17",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "31",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "65",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "36",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "92",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "03",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "12",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "58",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "28",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "61",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "18",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "91",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "32",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "66",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "35",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "93",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "40",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "09",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "49",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "29",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "60",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "19",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "90",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "33",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "67",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "14",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "94",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "41",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "10",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "62",
+ "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": "30",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "45",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "01",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "24",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "68",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "15",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "98",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "42",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "11",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "63",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "38",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "26",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "23",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "21",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "44",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "13",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "69",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "16",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "441",
+ "mnc": "99",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "34",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "64",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "37",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "25",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "NTT DoCoMo"
+ },
+ {
+ "mcc": "440",
+ "mnc": "99",
+ "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": "00",
+ "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": "05",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "01",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "94",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "46",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "97",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "42",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "441",
+ "mnc": "65",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "90",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "96",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "92",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "98",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "43",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "48",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "06",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "441",
+ "mnc": "61",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "44",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "04",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "441",
+ "mnc": "62",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "45",
+ "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": "40",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "441",
+ "mnc": "63",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "93",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "47",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "95",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "41",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "441",
+ "mnc": "64",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "SoftBank"
+ },
+ {
+ "mcc": "440",
+ "mnc": "85",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "83",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "80",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "86",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "81",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "84",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "mcc": "440",
+ "mnc": "82",
+ "iso": "jp",
+ "country": "Japan",
+ "country_code": "81",
+ "network": "KDDI"
+ },
+ {
+ "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": "03",
+ "iso": "jo",
+ "country": "Jordan",
+ "country_code": "962",
+ "network": "Umniah"
+ },
+ {
+ "mcc": "416",
+ "mnc": "02",
+ "iso": "jo",
+ "country": "Jordan",
+ "country_code": "962",
+ "network": "Xpress"
+ },
+ {
+ "mcc": "416",
+ "mnc": "01",
+ "iso": "jo",
+ "country": "Jordan",
+ "country_code": "962",
+ "network": "Zain"
+ },
+ {
+ "mcc": "401",
+ "mnc": "01",
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": "7",
+ "network": "Beeline/KaR-Tel LLP"
+ },
+ {
+ "mcc": "401",
+ "mnc": "07",
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": "7",
+ "network": "Dalacom/Altel"
+ },
+ {
+ "mcc": "401",
+ "mnc": "02",
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": "7",
+ "network": "K-Cell"
+ },
+ {
+ "mcc": "401",
+ "mnc": "77",
+ "iso": "kz",
+ "country": "Kazakhstan",
+ "country_code": "7",
+ "network": "Tele2/NEO/MTS"
+ },
+ {
+ "mcc": "639",
+ "mnc": "03",
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": "254",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "639",
+ "mnc": "05",
+ "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": "06",
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": "254",
+ "network": "Finserve Africa"
+ },
+ {
+ "mcc": "639",
+ "mnc": "09",
+ "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": "04",
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": "254",
+ "network": "Mobile Pay"
+ },
+ {
+ "mcc": "639",
+ "mnc": "01",
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": "254",
+ "network": "Safaricom"
+ },
+ {
+ "mcc": "639",
+ "mnc": "02",
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": "254",
+ "network": "Safaricom"
+ },
+ {
+ "mcc": "639",
+ "mnc": "07",
+ "iso": "ke",
+ "country": "Kenya",
+ "country_code": "254",
+ "network": "Telkom"
+ },
+ {
+ "mcc": "545",
+ "mnc": "09",
+ "iso": "ki",
+ "country": "Kiribati",
+ "country_code": "686",
+ "network": "Kiribati Frigate"
+ },
+ {
+ "mcc": "221",
+ "mnc": "07",
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": "383",
+ "network": "D3 mobile"
+ },
+ {
+ "mcc": "221",
+ "mnc": "06",
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": "383",
+ "network": "Dardafon.Net LLC"
+ },
+ {
+ "mcc": "221",
+ "mnc": "02",
+ "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": "03",
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": "383",
+ "network": "MTS"
+ },
+ {
+ "mcc": "221",
+ "mnc": "01",
+ "iso": "xk",
+ "country": "Kosovo",
+ "country_code": "383",
+ "network": "Vala"
+ },
+ {
+ "mcc": "419",
+ "mnc": "999",
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": "965",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "419",
+ "mnc": "02",
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": "965",
+ "network": "Zain"
+ },
+ {
+ "mcc": "419",
+ "mnc": "04",
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": "965",
+ "network": "Viva"
+ },
+ {
+ "mcc": "419",
+ "mnc": "03",
+ "iso": "kw",
+ "country": "Kuwait",
+ "country_code": "965",
+ "network": "Ooredoo"
+ },
+ {
+ "mcc": "437",
+ "mnc": "01",
+ "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": "02",
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": "996",
+ "network": "KT Mobile"
+ },
+ {
+ "mcc": "437",
+ "mnc": "05",
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": "996",
+ "network": "MegaCom"
+ },
+ {
+ "mcc": "437",
+ "mnc": "09",
+ "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": "03",
+ "iso": "kg",
+ "country": "Kyrgyzstan",
+ "country_code": "996",
+ "network": "Sem Mobile"
+ },
+ {
+ "mcc": "457",
+ "mnc": "02",
+ "iso": "la",
+ "country": "Laos",
+ "country_code": "856",
+ "network": "ETL Mobile"
+ },
+ {
+ "mcc": "457",
+ "mnc": "01",
+ "iso": "la",
+ "country": "Laos",
+ "country_code": "856",
+ "network": "Lao Tel"
+ },
+ {
+ "mcc": "457",
+ "mnc": "08",
+ "iso": "la",
+ "country": "Laos",
+ "country_code": "856",
+ "network": "Beeline/Tigo/Millicom"
+ },
+ {
+ "mcc": "457",
+ "mnc": "03",
+ "iso": "la",
+ "country": "Laos",
+ "country_code": "856",
+ "network": "UNITEL/LAT"
+ },
+ {
+ "mcc": "247",
+ "mnc": "05",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "Bite"
+ },
+ {
+ "mcc": "247",
+ "mnc": "10",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "LMT"
+ },
+ {
+ "mcc": "247",
+ "mnc": "01",
+ "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": "07",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "SIA Master Telecom"
+ },
+ {
+ "mcc": "247",
+ "mnc": "06",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "SIA Rigatta"
+ },
+ {
+ "mcc": "247",
+ "mnc": "02",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "247",
+ "mnc": "04",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "Tet"
+ },
+ {
+ "mcc": "247",
+ "mnc": "03",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "TRIATEL"
+ },
+ {
+ "mcc": "247",
+ "mnc": "08",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "VENTA Mobile"
+ },
+ {
+ "mcc": "247",
+ "mnc": "09",
+ "iso": "lv",
+ "country": "Latvia",
+ "country_code": "371",
+ "network": "XOmobile"
+ },
+ {
+ "mcc": "415",
+ "mnc": "35",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "Cellis"
+ },
+ {
+ "mcc": "415",
+ "mnc": "33",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "Cellis"
+ },
+ {
+ "mcc": "415",
+ "mnc": "32",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "Cellis"
+ },
+ {
+ "mcc": "415",
+ "mnc": "34",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "FTML Cellis"
+ },
+ {
+ "mcc": "415",
+ "mnc": "39",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "MIC2/LibanCell/MTC"
+ },
+ {
+ "mcc": "415",
+ "mnc": "38",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "MIC2/LibanCell/MTC"
+ },
+ {
+ "mcc": "415",
+ "mnc": "37",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "MIC2/LibanCell/MTC"
+ },
+ {
+ "mcc": "415",
+ "mnc": "01",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "MIC1 (Alfa)"
+ },
+ {
+ "mcc": "415",
+ "mnc": "03",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "MIC2/LibanCell/MTC"
+ },
+ {
+ "mcc": "415",
+ "mnc": "36",
+ "iso": "lb",
+ "country": "Lebanon",
+ "country_code": "961",
+ "network": "MIC2/LibanCell/MTC"
+ },
+ {
+ "mcc": "651",
+ "mnc": "02",
+ "iso": "ls",
+ "country": "Lesotho",
+ "country_code": "266",
+ "network": "Econet"
+ },
+ {
+ "mcc": "651",
+ "mnc": "01",
+ "iso": "ls",
+ "country": "Lesotho",
+ "country_code": "266",
+ "network": "Vodacom"
+ },
+ {
+ "mcc": "618",
+ "mnc": "02",
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": "231",
+ "network": "Libercell"
+ },
+ {
+ "mcc": "618",
+ "mnc": "20",
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": "231",
+ "network": "LibTelco"
+ },
+ {
+ "mcc": "618",
+ "mnc": "01",
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": "231",
+ "network": "MTN / Lonestar"
+ },
+ {
+ "mcc": "618",
+ "mnc": "04",
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": "231",
+ "network": "Novafone"
+ },
+ {
+ "mcc": "618",
+ "mnc": "07",
+ "iso": "lr",
+ "country": "Liberia",
+ "country_code": "231",
+ "network": "Orange"
+ },
+ {
+ "mcc": "606",
+ "mnc": "02",
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": "218",
+ "network": "Al-Madar"
+ },
+ {
+ "mcc": "606",
+ "mnc": "01",
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": "218",
+ "network": "Al-Madar"
+ },
+ {
+ "mcc": "606",
+ "mnc": "06",
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": "218",
+ "network": "Hatef"
+ },
+ {
+ "mcc": "606",
+ "mnc": "00",
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": "218",
+ "network": "Libyana"
+ },
+ {
+ "mcc": "606",
+ "mnc": "00",
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": "218",
+ "network": "Libyana"
+ },
+ {
+ "mcc": "606",
+ "mnc": "03",
+ "iso": "ly",
+ "country": "Libya",
+ "country_code": "218",
+ "network": "LibyaPhone Mobile"
+ },
+ {
+ "mcc": "295",
+ "mnc": "02",
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": "423",
+ "network": "7acht"
+ },
+ {
+ "mcc": "295",
+ "mnc": "06",
+ "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": "09",
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": "423",
+ "network": "EMnify"
+ },
+ {
+ "mcc": "295",
+ "mnc": "07",
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": "423",
+ "network": "First Mobile AG"
+ },
+ {
+ "mcc": "295",
+ "mnc": "01",
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": "423",
+ "network": "FL GSM"
+ },
+ {
+ "mcc": "295",
+ "mnc": "05",
+ "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": "77",
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": "423",
+ "network": "Alpmobile/Tele2"
+ },
+ {
+ "mcc": "295",
+ "mnc": "299",
+ "iso": "li",
+ "country": "Liechtenstein",
+ "country_code": "423",
+ "network": "Telna"
+ },
+ {
+ "mcc": "246",
+ "mnc": "02",
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": "370",
+ "network": "Bite"
+ },
+ {
+ "mcc": "246",
+ "mnc": "05",
+ "iso": "lt",
+ "country": "Lithuania",
+ "country_code": "370",
+ "network": "LTG"
+ },
+ {
+ "mcc": "246",
+ "mnc": "06",
+ "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": "03",
+ "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": "01",
+ "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": "999",
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": "352",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "270",
+ "mnc": "05",
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": "352",
+ "network": "Luxembourg Online"
+ },
+ {
+ "mcc": "270",
+ "mnc": "299",
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": "352",
+ "network": "MTX Connect"
+ },
+ {
+ "mcc": "270",
+ "mnc": "99",
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": "352",
+ "network": "Orange"
+ },
+ {
+ "mcc": "270",
+ "mnc": "01",
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": "352",
+ "network": "Post"
+ },
+ {
+ "mcc": "270",
+ "mnc": "77",
+ "iso": "lu",
+ "country": "Luxembourg",
+ "country_code": "352",
+ "network": "Tango"
+ },
+ {
+ "mcc": "455",
+ "mnc": "01",
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": "853",
+ "network": "C.T.M. TELEMOVEL+"
+ },
+ {
+ "mcc": "455",
+ "mnc": "04",
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": "853",
+ "network": "C.T.M. TELEMOVEL+"
+ },
+ {
+ "mcc": "455",
+ "mnc": "02",
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": "853",
+ "network": "China Telecom"
+ },
+ {
+ "mcc": "455",
+ "mnc": "05",
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": "853",
+ "network": "Hutchison Telephone Co. Ltd"
+ },
+ {
+ "mcc": "455",
+ "mnc": "03",
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": "853",
+ "network": "Hutchison Telephone Co. Ltd"
+ },
+ {
+ "mcc": "455",
+ "mnc": "06",
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": "853",
+ "network": "Smartone Mobile"
+ },
+ {
+ "mcc": "455",
+ "mnc": "00",
+ "iso": "mo",
+ "country": "Macao",
+ "country_code": "853",
+ "network": "Smartone Mobile"
+ },
+ {
+ "mcc": "646",
+ "mnc": "01",
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": "261",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "646",
+ "mnc": "299",
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": "261",
+ "network": "Bip"
+ },
+ {
+ "mcc": "646",
+ "mnc": "02",
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": "261",
+ "network": "Orange"
+ },
+ {
+ "mcc": "646",
+ "mnc": "03",
+ "iso": "mg",
+ "country": "Madagascar",
+ "country_code": "261",
+ "network": "Sacel"
+ },
+ {
+ "mcc": "646",
+ "mnc": "04",
+ "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": "01",
+ "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": "01",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "Art900"
+ },
+ {
+ "mcc": "502",
+ "mnc": "14",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "Telekom Malaysia"
+ },
+ {
+ "mcc": "502",
+ "mnc": "11",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "Telekom Malaysia"
+ },
+ {
+ "mcc": "502",
+ "mnc": "151",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "Baraka Telecom Sdn Bhd"
+ },
+ {
+ "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": "198",
+ "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": "20",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "Electcoms Wireless Sdn Bhd"
+ },
+ {
+ "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": "155",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "Samata Communications Sdn Bhd"
+ },
+ {
+ "mcc": "502",
+ "mnc": "154",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "TT dotCom"
+ },
+ {
+ "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": "502",
+ "mnc": "195",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "XOX Com"
+ },
+ {
+ "mcc": "502",
+ "mnc": "299",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "Y-Max"
+ },
+ {
+ "mcc": "502",
+ "mnc": "152",
+ "iso": "my",
+ "country": "Malaysia",
+ "country_code": "60",
+ "network": "Yes"
+ },
+ {
+ "mcc": "472",
+ "mnc": "01",
+ "iso": "mv",
+ "country": "Maldives",
+ "country_code": "960",
+ "network": "Dhiraagu/C&W"
+ },
+ {
+ "mcc": "472",
+ "mnc": "02",
+ "iso": "mv",
+ "country": "Maldives",
+ "country_code": "960",
+ "network": "Ooredo/Wataniya"
+ },
+ {
+ "mcc": "610",
+ "mnc": "01",
+ "iso": "ml",
+ "country": "Mali",
+ "country_code": "223",
+ "network": "Malitel"
+ },
+ {
+ "mcc": "610",
+ "mnc": "02",
+ "iso": "ml",
+ "country": "Mali",
+ "country_code": "223",
+ "network": "Orange"
+ },
+ {
+ "mcc": "610",
+ "mnc": "03",
+ "iso": "ml",
+ "country": "Mali",
+ "country_code": "223",
+ "network": "Telecel"
+ },
+ {
+ "mcc": "278",
+ "mnc": "01",
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": "356",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "278",
+ "mnc": "999",
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": "356",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "278",
+ "mnc": "21",
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": "356",
+ "network": "GO Mobile"
+ },
+ {
+ "mcc": "278",
+ "mnc": "30",
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": "356",
+ "network": "GO Mobile"
+ },
+ {
+ "mcc": "278",
+ "mnc": "77",
+ "iso": "mt",
+ "country": "Malta",
+ "country_code": "356",
+ "network": "Melita"
+ },
+ {
+ "mcc": "551",
+ "mnc": "299",
+ "iso": "mh",
+ "country": "Marshall Islands",
+ "country_code": "692",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "551",
+ "mnc": "299",
+ "iso": "mh",
+ "country": "Marshall Islands",
+ "country_code": "692",
+ "network": "MINTA"
+ },
+ {
+ "mcc": "340",
+ "mnc": "12",
+ "iso": "mq",
+ "country": "Martinique",
+ "country_code": "596",
+ "network": "UTS Caraibe"
+ },
+ {
+ "mcc": "609",
+ "mnc": "02",
+ "iso": "mr",
+ "country": "Mauritania",
+ "country_code": "222",
+ "network": "Chinguitel"
+ },
+ {
+ "mcc": "609",
+ "mnc": "01",
+ "iso": "mr",
+ "country": "Mauritania",
+ "country_code": "222",
+ "network": "Mattel"
+ },
+ {
+ "mcc": "609",
+ "mnc": "10",
+ "iso": "mr",
+ "country": "Mauritania",
+ "country_code": "222",
+ "network": "Mauritel"
+ },
+ {
+ "mcc": "617",
+ "mnc": "03",
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": "230",
+ "network": "Chili"
+ },
+ {
+ "mcc": "617",
+ "mnc": "02",
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": "230",
+ "network": "Chili"
+ },
+ {
+ "mcc": "617",
+ "mnc": "10",
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": "230",
+ "network": "Emtel"
+ },
+ {
+ "mcc": "617",
+ "mnc": "01",
+ "iso": "mu",
+ "country": "Mauritius",
+ "country_code": "230",
+ "network": "my.t mobile"
+ },
+ {
+ "mcc": "647",
+ "mnc": "01",
+ "iso": "yt",
+ "country": "Mayotte",
+ "country_code": "262",
+ "network": "Maore Mobile"
+ },
+ {
+ "mcc": "647",
+ "mnc": "10",
+ "iso": "yt",
+ "country": "Mayotte",
+ "country_code": "262",
+ "network": "SFR"
+ },
+ {
+ "mcc": "334",
+ "mnc": "050",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "AT&T/IUSACell"
+ },
+ {
+ "mcc": "334",
+ "mnc": "040",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "AT&T/IUSACell"
+ },
+ {
+ "mcc": "334",
+ "mnc": "05",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "AT&T/IUSACell"
+ },
+ {
+ "mcc": "334",
+ "mnc": "04",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "AT&T/IUSACell"
+ },
+ {
+ "mcc": "334",
+ "mnc": "50",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "AT&T/IUSACell"
+ },
+ {
+ "mcc": "334",
+ "mnc": "03",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "Movistar/Pegaso"
+ },
+ {
+ "mcc": "334",
+ "mnc": "030",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "Movistar/Pegaso"
+ },
+ {
+ "mcc": "334",
+ "mnc": "090",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "NEXTEL"
+ },
+ {
+ "mcc": "334",
+ "mnc": "010",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "NEXTEL"
+ },
+ {
+ "mcc": "334",
+ "mnc": "01",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "NEXTEL"
+ },
+ {
+ "mcc": "334",
+ "mnc": "09",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "NEXTEL"
+ },
+ {
+ "mcc": "334",
+ "mnc": "070",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "Operadora Unefon SA de CV"
+ },
+ {
+ "mcc": "334",
+ "mnc": "080",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "Operadora Unefon SA de CV"
+ },
+ {
+ "mcc": "334",
+ "mnc": "060",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "SAI PCS"
+ },
+ {
+ "mcc": "334",
+ "mnc": "020",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "TelCel/America Movil"
+ },
+ {
+ "mcc": "334",
+ "mnc": "02",
+ "iso": "mx",
+ "country": "Mexico",
+ "country_code": "52",
+ "network": "TelCel/America Movil"
+ },
+ {
+ "mcc": "550",
+ "mnc": "01",
+ "iso": "fm",
+ "country": "Micronesia",
+ "country_code": "691",
+ "network": "FSM Telecommunications Corp."
+ },
+ {
+ "mcc": "259",
+ "mnc": "04",
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": "373",
+ "network": "Eventis Mobile"
+ },
+ {
+ "mcc": "259",
+ "mnc": "03",
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": "373",
+ "network": "Unite "
+ },
+ {
+ "mcc": "259",
+ "mnc": "02",
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": "373",
+ "network": "Moldcell"
+ },
+ {
+ "mcc": "259",
+ "mnc": "01",
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": "373",
+ "network": "Orange"
+ },
+ {
+ "mcc": "259",
+ "mnc": "03",
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": "373",
+ "network": "Unite "
+ },
+ {
+ "mcc": "259",
+ "mnc": "99",
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": "373",
+ "network": "Unite "
+ },
+ {
+ "mcc": "259",
+ "mnc": "05",
+ "iso": "md",
+ "country": "Moldova",
+ "country_code": "373",
+ "network": "Unite "
+ },
+ {
+ "mcc": "212",
+ "mnc": "10",
+ "iso": "mc",
+ "country": "Monaco",
+ "country_code": "377",
+ "network": "Monaco Telecom"
+ },
+ {
+ "mcc": "212",
+ "mnc": "01",
+ "iso": "mc",
+ "country": "Monaco",
+ "country_code": "377",
+ "network": "Monaco Telecom"
+ },
+ {
+ "mcc": "428",
+ "mnc": "98",
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": "976",
+ "network": "G-Mobile Corporation Ltd"
+ },
+ {
+ "mcc": "428",
+ "mnc": "99",
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": "976",
+ "network": "Mobicom"
+ },
+ {
+ "mcc": "428",
+ "mnc": "91",
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": "976",
+ "network": "Skytel Co. Ltd"
+ },
+ {
+ "mcc": "428",
+ "mnc": "00",
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": "976",
+ "network": "Skytel Co. Ltd"
+ },
+ {
+ "mcc": "428",
+ "mnc": "88",
+ "iso": "mn",
+ "country": "Mongolia",
+ "country_code": "976",
+ "network": "Unitel"
+ },
+ {
+ "mcc": "297",
+ "mnc": "03",
+ "iso": "me",
+ "country": "Montenegro",
+ "country_code": "382",
+ "network": "Mtel"
+ },
+ {
+ "mcc": "297",
+ "mnc": "02",
+ "iso": "me",
+ "country": "Montenegro",
+ "country_code": "382",
+ "network": "Telekom / T-mobile"
+ },
+ {
+ "mcc": "297",
+ "mnc": "01",
+ "iso": "me",
+ "country": "Montenegro",
+ "country_code": "382",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "354",
+ "mnc": "860",
+ "iso": "ms",
+ "country": "Montserrat",
+ "country_code": "1664",
+ "network": "Cable & Wireless "
+ },
+ {
+ "mcc": "604",
+ "mnc": "04",
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": "212",
+ "network": "Al Houria Telecom"
+ },
+ {
+ "mcc": "604",
+ "mnc": "99",
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": "212",
+ "network": "Al Houria Telecom"
+ },
+ {
+ "mcc": "604",
+ "mnc": "01",
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": "212",
+ "network": "IAM"
+ },
+ {
+ "mcc": "604",
+ "mnc": "06",
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": "212",
+ "network": "IAM"
+ },
+ {
+ "mcc": "604",
+ "mnc": "02",
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": "212",
+ "network": "inwi"
+ },
+ {
+ "mcc": "604",
+ "mnc": "05",
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": "212",
+ "network": "inwi"
+ },
+ {
+ "mcc": "604",
+ "mnc": "00",
+ "iso": "ma",
+ "country": "Morocco",
+ "country_code": "212",
+ "network": "Orange"
+ },
+ {
+ "mcc": "643",
+ "mnc": "03",
+ "iso": "mz",
+ "country": "Mozambique",
+ "country_code": "258",
+ "network": "Movitel"
+ },
+ {
+ "mcc": "643",
+ "mnc": "01",
+ "iso": "mz",
+ "country": "Mozambique",
+ "country_code": "258",
+ "network": "TMCEL"
+ },
+ {
+ "mcc": "643",
+ "mnc": "04",
+ "iso": "mz",
+ "country": "Mozambique",
+ "country_code": "258",
+ "network": "Vodacom"
+ },
+ {
+ "mcc": "414",
+ "mnc": "999",
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": "95",
+ "network": "Fix Line (Myanmar"
+ },
+ {
+ "mcc": "414",
+ "mnc": "01",
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": "95",
+ "network": "Myanmar Post & Teleco."
+ },
+ {
+ "mcc": "414",
+ "mnc": "09",
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": "95",
+ "network": "Mytel (Myanmar"
+ },
+ {
+ "mcc": "414",
+ "mnc": "05",
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": "95",
+ "network": "Oreedoo"
+ },
+ {
+ "mcc": "414",
+ "mnc": "06",
+ "iso": "mm",
+ "country": "Myanmar",
+ "country_code": "95",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "649",
+ "mnc": "299",
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": "264",
+ "network": "Demshi"
+ },
+ {
+ "mcc": "649",
+ "mnc": "01",
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": "264",
+ "network": "MTC"
+ },
+ {
+ "mcc": "649",
+ "mnc": "02",
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": "264",
+ "network": "Switch/Nam. Telec."
+ },
+ {
+ "mcc": "649",
+ "mnc": "03",
+ "iso": "na",
+ "country": "Namibia",
+ "country_code": "264",
+ "network": "TN Mobile"
+ },
+ {
+ "mcc": "429",
+ "mnc": "999",
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": "977",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "429",
+ "mnc": "02",
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": "977",
+ "network": "Ncell"
+ },
+ {
+ "mcc": "429",
+ "mnc": "01",
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": "977",
+ "network": "NT Mobile / Namaste"
+ },
+ {
+ "mcc": "429",
+ "mnc": "04",
+ "iso": "np",
+ "country": "Nepal",
+ "country_code": "977",
+ "network": "Smart Cell"
+ },
+ {
+ "mcc": "204",
+ "mnc": "14",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "6GMOBILE BV"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "88 mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "AGMS"
+ },
+ {
+ "mcc": "204",
+ "mnc": "30",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "ASPIDER Solutions"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Belcentrale"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "BodyTrace"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Combird Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Dean Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Eazit"
+ },
+ {
+ "mcc": "204",
+ "mnc": "05",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "ElephantTalk"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "EziMobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "999",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "interactive digital media / IDM"
+ },
+ {
+ "mcc": "204",
+ "mnc": "17",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Intercity Mobile Communications BV"
+ },
+ {
+ "mcc": "204",
+ "mnc": "00",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Intovoice"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "KeenMobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "23",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "KORE"
+ },
+ {
+ "mcc": "204",
+ "mnc": "08",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "KPN"
+ },
+ {
+ "mcc": "204",
+ "mnc": "10",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "KPN"
+ },
+ {
+ "mcc": "204",
+ "mnc": "69",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "KPN"
+ },
+ {
+ "mcc": "204",
+ "mnc": "12",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "KPN"
+ },
+ {
+ "mcc": "204",
+ "mnc": "08",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "KPN"
+ },
+ {
+ "mcc": "204",
+ "mnc": "12",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "KPN/Telfort"
+ },
+ {
+ "mcc": "204",
+ "mnc": "27",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "L-mobi"
+ },
+ {
+ "mcc": "204",
+ "mnc": "28",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Lancelot"
+ },
+ {
+ "mcc": "204",
+ "mnc": "98",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Lancelot"
+ },
+ {
+ "mcc": "204",
+ "mnc": "09",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "63",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "MessageBird"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "mGage"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Motto"
+ },
+ {
+ "mcc": "204",
+ "mnc": "07",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Move / Teleena"
+ },
+ {
+ "mcc": "204",
+ "mnc": "06",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Vectone Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Okta8"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Premium Routing"
+ },
+ {
+ "mcc": "204",
+ "mnc": "24",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Private Mobility"
+ },
+ {
+ "mcc": "204",
+ "mnc": "21",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "ProRail"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Redworks"
+ },
+ {
+ "mcc": "204",
+ "mnc": "26",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "SpeakUp"
+ },
+ {
+ "mcc": "204",
+ "mnc": "98",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "02",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "20",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "16",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "20",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "T-mobile/former Orange"
+ },
+ {
+ "mcc": "204",
+ "mnc": "02",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "204",
+ "mnc": "29",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "204",
+ "mnc": "33",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Truphone"
+ },
+ {
+ "mcc": "204",
+ "mnc": "68",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Unify Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "299",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Vectone Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "04",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "204",
+ "mnc": "03",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Voiceworks Mobile"
+ },
+ {
+ "mcc": "204",
+ "mnc": "15",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Ziggo"
+ },
+ {
+ "mcc": "204",
+ "mnc": "18",
+ "iso": "nl",
+ "country": "Netherlands",
+ "country_code": "31",
+ "network": "Ziggo Services"
+ },
+ {
+ "mcc": "362",
+ "mnc": "630",
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": "599",
+ "network": "Cingular Wireless"
+ },
+ {
+ "mcc": "362",
+ "mnc": "51",
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": "599",
+ "network": "TELCELL GSM"
+ },
+ {
+ "mcc": "362",
+ "mnc": "91",
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": "599",
+ "network": "SETEL GSM"
+ },
+ {
+ "mcc": "362",
+ "mnc": "951",
+ "iso": "an",
+ "country": "Netherlands Antilles",
+ "country_code": "599",
+ "network": "UTS Wireless"
+ },
+ {
+ "mcc": "546",
+ "mnc": "01",
+ "iso": "nc",
+ "country": "New Caledonia",
+ "country_code": "687",
+ "network": "OPT Mobilis"
+ },
+ {
+ "mcc": "530",
+ "mnc": "28",
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": "64",
+ "network": "2degrees"
+ },
+ {
+ "mcc": "530",
+ "mnc": "999",
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": "64",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "530",
+ "mnc": "05",
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": "64",
+ "network": "Spark Mobile"
+ },
+ {
+ "mcc": "530",
+ "mnc": "02",
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": "64",
+ "network": "Spark Mobile"
+ },
+ {
+ "mcc": "530",
+ "mnc": "04",
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": "64",
+ "network": "Telstra"
+ },
+ {
+ "mcc": "530",
+ "mnc": "24",
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": "64",
+ "network": "2degrees"
+ },
+ {
+ "mcc": "530",
+ "mnc": "01",
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": "64",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "530",
+ "mnc": "03",
+ "iso": "nz",
+ "country": "New Zealand",
+ "country_code": "64",
+ "network": "Walker Wireless Ltd."
+ },
+ {
+ "mcc": "710",
+ "mnc": "21",
+ "iso": "ni",
+ "country": "Nicaragua",
+ "country_code": "505",
+ "network": "Empresa Nicaraguense de Telecomunicaciones SA (ENITEL)"
+ },
+ {
+ "mcc": "710",
+ "mnc": "999",
+ "iso": "ni",
+ "country": "Nicaragua",
+ "country_code": "505",
+ "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": "614",
+ "mnc": "02",
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": "227",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "614",
+ "mnc": "03",
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": "227",
+ "network": "Moov"
+ },
+ {
+ "mcc": "614",
+ "mnc": "01",
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": "227",
+ "network": "Niger Telecoms"
+ },
+ {
+ "mcc": "614",
+ "mnc": "04",
+ "iso": "ne",
+ "country": "Niger",
+ "country_code": "227",
+ "network": "Orange"
+ },
+ {
+ "mcc": "621",
+ "mnc": "60",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "9mobile"
+ },
+ {
+ "mcc": "621",
+ "mnc": "20",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "621",
+ "mnc": "299",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "Alpha Technologies"
+ },
+ {
+ "mcc": "621",
+ "mnc": "50",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "Glo Mobile"
+ },
+ {
+ "mcc": "621",
+ "mnc": "30",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "MTN"
+ },
+ {
+ "mcc": "621",
+ "mnc": "40",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "ntel"
+ },
+ {
+ "mcc": "621",
+ "mnc": "27",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "Smile"
+ },
+ {
+ "mcc": "621",
+ "mnc": "99",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "Starcomms"
+ },
+ {
+ "mcc": "621",
+ "mnc": "01",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "Visafone"
+ },
+ {
+ "mcc": "621",
+ "mnc": "25",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "Visafone"
+ },
+ {
+ "mcc": "621",
+ "mnc": "299",
+ "iso": "ng",
+ "country": "Nigeria",
+ "country_code": "234",
+ "network": "Zodafones"
+ },
+ {
+ "mcc": "555",
+ "mnc": "01",
+ "iso": "nu",
+ "country": "Niue",
+ "country_code": "683",
+ "network": "Niue Telecom"
+ },
+ {
+ "mcc": "467",
+ "mnc": "299",
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": "850",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "467",
+ "mnc": "299",
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": "850",
+ "network": "Kangsung Net"
+ },
+ {
+ "mcc": "467",
+ "mnc": "192",
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": "850",
+ "network": "Koryolink"
+ },
+ {
+ "mcc": "467",
+ "mnc": "192",
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": "850",
+ "network": "Koryolink"
+ },
+ {
+ "mcc": "467",
+ "mnc": "193",
+ "iso": "kp",
+ "country": "North Korea",
+ "country_code": "850",
+ "network": "Sun Net"
+ },
+ {
+ "mcc": "294",
+ "mnc": "02",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "A1"
+ },
+ {
+ "mcc": "294",
+ "mnc": "03",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "A1"
+ },
+ {
+ "mcc": "294",
+ "mnc": "75",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "A1"
+ },
+ {
+ "mcc": "294",
+ "mnc": "299",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "294",
+ "mnc": "299",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "LATRON"
+ },
+ {
+ "mcc": "294",
+ "mnc": "04",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "294",
+ "mnc": "11",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "Mobik"
+ },
+ {
+ "mcc": "294",
+ "mnc": "02",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "A1"
+ },
+ {
+ "mcc": "294",
+ "mnc": "299",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "Telekabel"
+ },
+ {
+ "mcc": "294",
+ "mnc": "01",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "Telekom"
+ },
+ {
+ "mcc": "294",
+ "mnc": "03",
+ "iso": "mk",
+ "country": "North Macedonia",
+ "country_code": "389",
+ "network": "VIP Mobile"
+ },
+ {
+ "mcc": "242",
+ "mnc": "22",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Altibox Mobil"
+ },
+ {
+ "mcc": "242",
+ "mnc": "21",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "BANE NOR"
+ },
+ {
+ "mcc": "242",
+ "mnc": "20",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "BANE NOR"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "bigblu"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Chilimobil"
+ },
+ {
+ "mcc": "242",
+ "mnc": "09",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Com4"
+ },
+ {
+ "mcc": "242",
+ "mnc": "15",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "eRate"
+ },
+ {
+ "mcc": "242",
+ "mnc": "999",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "GlobalConnect"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Ibidium"
+ },
+ {
+ "mcc": "242",
+ "mnc": "14",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "ICE"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "intility"
+ },
+ {
+ "mcc": "242",
+ "mnc": "16",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Iristel"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "JetNett"
+ },
+ {
+ "mcc": "242",
+ "mnc": "23",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "242",
+ "mnc": "05",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Network Norway"
+ },
+ {
+ "mcc": "242",
+ "mnc": "05",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Altibox Mobil"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "NextGenTel"
+ },
+ {
+ "mcc": "242",
+ "mnc": "10",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Nkom"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Nodnett"
+ },
+ {
+ "mcc": "242",
+ "mnc": "06",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "ICE"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Puzzel"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Sierra Wireless"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Svea"
+ },
+ {
+ "mcc": "242",
+ "mnc": "08",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "TDC Mobil A/S"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Telavox"
+ },
+ {
+ "mcc": "242",
+ "mnc": "04",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "242",
+ "mnc": "12",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "242",
+ "mnc": "01",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "242",
+ "mnc": "03",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Teletopia"
+ },
+ {
+ "mcc": "242",
+ "mnc": "08",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Telia / NetCom"
+ },
+ {
+ "mcc": "242",
+ "mnc": "02",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Telia / NetCom"
+ },
+ {
+ "mcc": "242",
+ "mnc": "299",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "unifon"
+ },
+ {
+ "mcc": "242",
+ "mnc": "017",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Ventelo AS"
+ },
+ {
+ "mcc": "242",
+ "mnc": "07",
+ "iso": "no",
+ "country": "Norway",
+ "country_code": "47",
+ "network": "Ventelo AS"
+ },
+ {
+ "mcc": "422",
+ "mnc": "03",
+ "iso": "om",
+ "country": "Oman",
+ "country_code": "968",
+ "network": "Nawras"
+ },
+ {
+ "mcc": "422",
+ "mnc": "02",
+ "iso": "om",
+ "country": "Oman",
+ "country_code": "968",
+ "network": "Oman Mobile/GTO"
+ },
+ {
+ "mcc": "410",
+ "mnc": "299",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "410",
+ "mnc": "08",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "Instaphone"
+ },
+ {
+ "mcc": "410",
+ "mnc": "01",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "Jazz"
+ },
+ {
+ "mcc": "410",
+ "mnc": "07",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "Jazz"
+ },
+ {
+ "mcc": "410",
+ "mnc": "05",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "SCOM"
+ },
+ {
+ "mcc": "410",
+ "mnc": "06",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "410",
+ "mnc": "03",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "Ufone"
+ },
+ {
+ "mcc": "410",
+ "mnc": "299",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "Warid"
+ },
+ {
+ "mcc": "410",
+ "mnc": "04",
+ "iso": "pk",
+ "country": "Pakistan",
+ "country_code": "92",
+ "network": "Zong"
+ },
+ {
+ "mcc": "552",
+ "mnc": "80",
+ "iso": "pw",
+ "country": "Palau",
+ "country_code": "680",
+ "network": "Palau Mobile Corp. (PMC) (Palau"
+ },
+ {
+ "mcc": "552",
+ "mnc": "01",
+ "iso": "pw",
+ "country": "Palau",
+ "country_code": "680",
+ "network": "Palau National Communications Corp. (PNCC) (Palau"
+ },
+ {
+ "mcc": "552",
+ "mnc": "02",
+ "iso": "pw",
+ "country": "Palau",
+ "country_code": "680",
+ "network": "PECI/PalauTel (Palau"
+ },
+ {
+ "mcc": "425",
+ "mnc": "05",
+ "iso": "ps",
+ "country": "Palestinian Territory",
+ "country_code": "970",
+ "network": "Jawwal"
+ },
+ {
+ "mcc": "425",
+ "mnc": "06",
+ "iso": "ps",
+ "country": "Palestinian Territory",
+ "country_code": "970",
+ "network": "Ooredoo"
+ },
+ {
+ "mcc": "714",
+ "mnc": "01",
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": "507",
+ "network": "Cable & W./Mas Movil"
+ },
+ {
+ "mcc": "714",
+ "mnc": "03",
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": "507",
+ "network": "Claro"
+ },
+ {
+ "mcc": "714",
+ "mnc": "04",
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": "507",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "714",
+ "mnc": "999",
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": "507",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "714",
+ "mnc": "020",
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": "507",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "714",
+ "mnc": "02",
+ "iso": "pa",
+ "country": "Panama",
+ "country_code": "507",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "537",
+ "mnc": "03",
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": "675",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "537",
+ "mnc": "999",
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": "675",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "537",
+ "mnc": "02",
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": "675",
+ "network": "GreenCom PNG Ltd"
+ },
+ {
+ "mcc": "537",
+ "mnc": "01",
+ "iso": "pg",
+ "country": "Papua New Guinea",
+ "country_code": "675",
+ "network": "Pacific Mobile"
+ },
+ {
+ "mcc": "744",
+ "mnc": "02",
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": "595",
+ "network": "Claro/Hutchison"
+ },
+ {
+ "mcc": "744",
+ "mnc": "03",
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": "595",
+ "network": "Compa"
+ },
+ {
+ "mcc": "744",
+ "mnc": "01",
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": "595",
+ "network": "Hola/VOX"
+ },
+ {
+ "mcc": "744",
+ "mnc": "05",
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": "595",
+ "network": "TIM/Nucleo/Personal"
+ },
+ {
+ "mcc": "744",
+ "mnc": "04",
+ "iso": "py",
+ "country": "Paraguay",
+ "country_code": "595",
+ "network": "Tigo/Telecel"
+ },
+ {
+ "mcc": "716",
+ "mnc": "20",
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": "51",
+ "network": "Claro /Amer.Mov./TIM"
+ },
+ {
+ "mcc": "716",
+ "mnc": "10",
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": "51",
+ "network": "Claro /Amer.Mov./TIM"
+ },
+ {
+ "mcc": "716",
+ "mnc": "02",
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": "51",
+ "network": "GlobalStar"
+ },
+ {
+ "mcc": "716",
+ "mnc": "01",
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": "51",
+ "network": "GlobalStar"
+ },
+ {
+ "mcc": "716",
+ "mnc": "06",
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": "51",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "716",
+ "mnc": "07",
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": "51",
+ "network": "Nextel"
+ },
+ {
+ "mcc": "716",
+ "mnc": "17",
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": "51",
+ "network": "Nextel"
+ },
+ {
+ "mcc": "716",
+ "mnc": "15",
+ "iso": "pe",
+ "country": "Peru",
+ "country_code": "51",
+ "network": "Viettel Mobile"
+ },
+ {
+ "mcc": "515",
+ "mnc": "999",
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": "63",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "515",
+ "mnc": "02",
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": "63",
+ "network": "Globe Telecom"
+ },
+ {
+ "mcc": "515",
+ "mnc": "01",
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": "63",
+ "network": "Globe Telecom"
+ },
+ {
+ "mcc": "515",
+ "mnc": "88",
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": "63",
+ "network": "Next Mobile"
+ },
+ {
+ "mcc": "515",
+ "mnc": "18",
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": "63",
+ "network": "RED Mobile/Cure"
+ },
+ {
+ "mcc": "515",
+ "mnc": "03",
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": "63",
+ "network": "Smart"
+ },
+ {
+ "mcc": "515",
+ "mnc": "05",
+ "iso": "ph",
+ "country": "Philippines",
+ "country_code": "63",
+ "network": "SUN/Digitel"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "3S"
+ },
+ {
+ "mcc": "260",
+ "mnc": "04",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Aero2"
+ },
+ {
+ "mcc": "260",
+ "mnc": "16",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Aero2"
+ },
+ {
+ "mcc": "260",
+ "mnc": "15",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Aero2"
+ },
+ {
+ "mcc": "260",
+ "mnc": "17",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Aero2"
+ },
+ {
+ "mcc": "260",
+ "mnc": "17",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Aero2 SP"
+ },
+ {
+ "mcc": "260",
+ "mnc": "48",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Agile Telecom"
+ },
+ {
+ "mcc": "260",
+ "mnc": "18",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "AMD Telecom"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Benemen"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "BSG"
+ },
+ {
+ "mcc": "260",
+ "mnc": "38",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "CallFreedom Sp. z o.o."
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Caritas Laczy"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Cludo"
+ },
+ {
+ "mcc": "260",
+ "mnc": "32",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Compatel"
+ },
+ {
+ "mcc": "260",
+ "mnc": "12",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Cyfrowy Polsat"
+ },
+ {
+ "mcc": "260",
+ "mnc": "08",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "e-Telko"
+ },
+ {
+ "mcc": "260",
+ "mnc": "41",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "EZ Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "999",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "I.M. Consulting"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Inea"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "IZZI"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "JMDI J. Maleszko"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Klucz Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "lajt mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "LoVo"
+ },
+ {
+ "mcc": "260",
+ "mnc": "09",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "49",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Messagebird"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Metro Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Mobile Vikings"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Mobiledata"
+ },
+ {
+ "mcc": "260",
+ "mnc": "42",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "MobiWeb"
+ },
+ {
+ "mcc": "260",
+ "mnc": "16",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Mobyland"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Moja GSM"
+ },
+ {
+ "mcc": "260",
+ "mnc": "13",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Move"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "multiMOBILE"
+ },
+ {
+ "mcc": "260",
+ "mnc": "36",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Mundio Mobile Sp. z o.o."
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Nasza Wizja"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "NAU Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "nc+ Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "19",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "NetBalt"
+ },
+ {
+ "mcc": "260",
+ "mnc": "07",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Netia"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Next Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "NIMBOW"
+ },
+ {
+ "mcc": "260",
+ "mnc": "11",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "NORDISK Polska"
+ },
+ {
+ "mcc": "260",
+ "mnc": "27",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Ntel Solutions"
+ },
+ {
+ "mcc": "260",
+ "mnc": "03",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Orange"
+ },
+ {
+ "mcc": "260",
+ "mnc": "05",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Orange"
+ },
+ {
+ "mcc": "260",
+ "mnc": "35",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "PKP"
+ },
+ {
+ "mcc": "260",
+ "mnc": "98",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Play"
+ },
+ {
+ "mcc": "260",
+ "mnc": "06",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Play"
+ },
+ {
+ "mcc": "260",
+ "mnc": "01",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Plus"
+ },
+ {
+ "mcc": "260",
+ "mnc": "11",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Plus"
+ },
+ {
+ "mcc": "260",
+ "mnc": "97",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Politechnika Lodzka Uczelniane"
+ },
+ {
+ "mcc": "260",
+ "mnc": "90",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Polska Spolka Gazownictwa"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Polvoice"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Pomagacz"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Premium Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "SAT FILM"
+ },
+ {
+ "mcc": "260",
+ "mnc": "14",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Move"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "SGT"
+ },
+ {
+ "mcc": "260",
+ "mnc": "47",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "SMSHIGHWAY"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Softelnet"
+ },
+ {
+ "mcc": "260",
+ "mnc": "34",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "02",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "10",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "14",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Telco Leaders"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Tele GO"
+ },
+ {
+ "mcc": "260",
+ "mnc": "15",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Aero2"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "TeleCube"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Telenabler"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "TELGAM"
+ },
+ {
+ "mcc": "260",
+ "mnc": "20",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "TOYAmobilna"
+ },
+ {
+ "mcc": "260",
+ "mnc": "22",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Twilio"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "UPC"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Vectra"
+ },
+ {
+ "mcc": "260",
+ "mnc": "45",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Virgin Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "45",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Virgin Mobile"
+ },
+ {
+ "mcc": "260",
+ "mnc": "299",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Vonage"
+ },
+ {
+ "mcc": "260",
+ "mnc": "39",
+ "iso": "pl",
+ "country": "Poland",
+ "country_code": "48",
+ "network": "Voxbone / Bandwidth"
+ },
+ {
+ "mcc": "268",
+ "mnc": "999",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "268",
+ "mnc": "04",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "268",
+ "mnc": "80",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "MEO"
+ },
+ {
+ "mcc": "268",
+ "mnc": "08",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "MEO"
+ },
+ {
+ "mcc": "268",
+ "mnc": "06",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "MEO"
+ },
+ {
+ "mcc": "268",
+ "mnc": "03",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "NOS"
+ },
+ {
+ "mcc": "268",
+ "mnc": "93",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "NOS"
+ },
+ {
+ "mcc": "268",
+ "mnc": "299",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "NOWO"
+ },
+ {
+ "mcc": "268",
+ "mnc": "299",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "Oni"
+ },
+ {
+ "mcc": "268",
+ "mnc": "03",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "NOS"
+ },
+ {
+ "mcc": "268",
+ "mnc": "07",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "NOS"
+ },
+ {
+ "mcc": "268",
+ "mnc": "91",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "268",
+ "mnc": "01",
+ "iso": "pt",
+ "country": "Portugal",
+ "country_code": "351",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "330",
+ "mnc": "11",
+ "iso": "pr",
+ "country": "Puerto Rico",
+ "country_code": "",
+ "network": "Puerto Rico Telephone Company Inc. (PRTC)"
+ },
+ {
+ "mcc": "330",
+ "mnc": "110",
+ "iso": "pr",
+ "country": "Puerto Rico",
+ "country_code": "",
+ "network": "Puerto Rico Telephone Company Inc. (PRTC)"
+ },
+ {
+ "mcc": "427",
+ "mnc": "01",
+ "iso": "qa",
+ "country": "Qatar",
+ "country_code": "974",
+ "network": "Ooredoo/Qtel"
+ },
+ {
+ "mcc": "427",
+ "mnc": "02",
+ "iso": "qa",
+ "country": "Qatar",
+ "country_code": "974",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "647",
+ "mnc": "03",
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": "262",
+ "network": "Only"
+ },
+ {
+ "mcc": "647",
+ "mnc": "02",
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": "262",
+ "network": "Only"
+ },
+ {
+ "mcc": "647",
+ "mnc": "00",
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": "262",
+ "network": "Orange"
+ },
+ {
+ "mcc": "647",
+ "mnc": "10",
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": "262",
+ "network": "SFR"
+ },
+ {
+ "mcc": "647",
+ "mnc": "04",
+ "iso": "re",
+ "country": "Reunion",
+ "country_code": "262",
+ "network": "ZEOP Mobile"
+ },
+ {
+ "mcc": "226",
+ "mnc": "05",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Digi Mobil"
+ },
+ {
+ "mcc": "226",
+ "mnc": "11",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Enigma Systems"
+ },
+ {
+ "mcc": "226",
+ "mnc": "299",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Iristel"
+ },
+ {
+ "mcc": "226",
+ "mnc": "16",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "226",
+ "mnc": "10",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Orange"
+ },
+ {
+ "mcc": "226",
+ "mnc": "02",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Romtelecom SA"
+ },
+ {
+ "mcc": "226",
+ "mnc": "03",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Telekom"
+ },
+ {
+ "mcc": "226",
+ "mnc": "02",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Telekom"
+ },
+ {
+ "mcc": "226",
+ "mnc": "06",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Telekom Romania"
+ },
+ {
+ "mcc": "226",
+ "mnc": "01",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "226",
+ "mnc": "04",
+ "iso": "ro",
+ "country": "Romania",
+ "country_code": "40",
+ "network": "Telekom Romania"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "A-Mobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Antares"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Aquafon"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Arktur"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Astran"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "ASVT"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Aurora Telecom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "99",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Beeline"
+ },
+ {
+ "mcc": "250",
+ "mnc": "99",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "BeeLine/VimpelCom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "28",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "BeeLine/VimpelCom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Beliton"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "BIT-CENTR"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Center 2M"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Cifra 1"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "CountryCom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "10",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "DTC/Don Telecom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "ECO Networks"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Elemte"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "ER-Telecom"
+ },
+ {
+ "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": "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": "250",
+ "mnc": "55",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Glonass"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "GLONASS MOBILE"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Integral"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Internod"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Intersvyaz-2"
+ },
+ {
+ "mcc": "250",
+ "mnc": "34",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Krymtelecom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "13",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Kuban GSM"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "KvatroPlus"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Lardex"
+ },
+ {
+ "mcc": "250",
+ "mnc": "54",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Letai Mobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "57",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Matrix Mobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Media-Market"
+ },
+ {
+ "mcc": "250",
+ "mnc": "02",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Megafon"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Metro-Pei"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "MGTS"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Miatel"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "MOSTELECOM"
+ },
+ {
+ "mcc": "250",
+ "mnc": "35",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Motiv"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "MSN Telekom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "01",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "MTS"
+ },
+ {
+ "mcc": "250",
+ "mnc": "42",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "MTT"
+ },
+ {
+ "mcc": "250",
+ "mnc": "03",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "NCC"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "NCI"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "NETBYNET"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "New Mobile Communications"
+ },
+ {
+ "mcc": "250",
+ "mnc": "16",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "NTC"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "OBIT"
+ },
+ {
+ "mcc": "250",
+ "mnc": "19",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "OJSC Altaysvyaz"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Orange Business Services"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "PIN"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Plintron"
+ },
+ {
+ "mcc": "250",
+ "mnc": "92",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Printelefone"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Quantech"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "RECONN"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Reteyl Innovatsii"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Sberbank-Telecom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "33",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "SEVTELECOM"
+ },
+ {
+ "mcc": "250",
+ "mnc": "04",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Sibchallenge"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Sim Sim"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Sintonik"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Sky Networks"
+ },
+ {
+ "mcc": "250",
+ "mnc": "09",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Skylink"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "SkyNet"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Sonet"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Sprint"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Start"
+ },
+ {
+ "mcc": "250",
+ "mnc": "44",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "StavTelesot"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "SunSIM"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Surgutneftegaz"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Svyazresurs-Mobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Tander"
+ },
+ {
+ "mcc": "250",
+ "mnc": "20",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "250",
+ "mnc": "12",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "250",
+ "mnc": "20",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Tele2/ECC/Volgogr."
+ },
+ {
+ "mcc": "250",
+ "mnc": "93",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Telecom XXL"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Tinkoff Mobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "TMT"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "TransMobilCom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "TRASTEL"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "TRN-telecom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "TTK"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "TTK-Svyaz"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "TVE"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "UnitTelecom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Unycel"
+ },
+ {
+ "mcc": "250",
+ "mnc": "39",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "UralTel"
+ },
+ {
+ "mcc": "250",
+ "mnc": "17",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "UralTel"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Vainah Telecom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "ViKom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Virgin Connect"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Voentelecom"
+ },
+ {
+ "mcc": "250",
+ "mnc": "77",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Glonass"
+ },
+ {
+ "mcc": "250",
+ "mnc": "60",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Volna Mobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "299",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "VTB Mobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "32",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Win Mobile"
+ },
+ {
+ "mcc": "250",
+ "mnc": "05",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Tele2/ECC/Volgogr."
+ },
+ {
+ "mcc": "250",
+ "mnc": "11",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "Yota"
+ },
+ {
+ "mcc": "250",
+ "mnc": "15",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "ZAO SMARTS"
+ },
+ {
+ "mcc": "250",
+ "mnc": "07",
+ "iso": "ru",
+ "country": "Russia",
+ "country_code": "79",
+ "network": "ZAO SMARTS"
+ },
+ {
+ "mcc": "635",
+ "mnc": "13",
+ "iso": "rw",
+ "country": "Rwanda",
+ "country_code": "250",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "635",
+ "mnc": "14",
+ "iso": "rw",
+ "country": "Rwanda",
+ "country_code": "250",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "635",
+ "mnc": "10",
+ "iso": "rw",
+ "country": "Rwanda",
+ "country_code": "250",
+ "network": "MTN"
+ },
+ {
+ "mcc": "658",
+ "mnc": "299",
+ "iso": "sh",
+ "country": "Saint Helena and Ascension and Tristan da Cunha",
+ "country_code": "290",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "356",
+ "mnc": "110",
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": "1869",
+ "network": "Cable & Wireless"
+ },
+ {
+ "mcc": "356",
+ "mnc": "50",
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": "1869",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "356",
+ "mnc": "70",
+ "iso": "kn",
+ "country": "Saint Kitts and Nevis",
+ "country_code": "1869",
+ "network": "UTS Cariglobe"
+ },
+ {
+ "mcc": "358",
+ "mnc": "110",
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": "1758",
+ "network": "Cable & Wireless"
+ },
+ {
+ "mcc": "358",
+ "mnc": "30",
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": "1758",
+ "network": "Cingular Wireless"
+ },
+ {
+ "mcc": "358",
+ "mnc": "50",
+ "iso": "lc",
+ "country": "Saint Lucia",
+ "country_code": "1758",
+ "network": "Digicel (St Lucia) Limited"
+ },
+ {
+ "mcc": "308",
+ "mnc": "01",
+ "iso": "pm",
+ "country": "Saint Pierre and Miquelon",
+ "country_code": "508",
+ "network": "Ameris"
+ },
+ {
+ "mcc": "360",
+ "mnc": "110",
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": "1784",
+ "network": "C & W"
+ },
+ {
+ "mcc": "360",
+ "mnc": "10",
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": "1784",
+ "network": "Cingular"
+ },
+ {
+ "mcc": "360",
+ "mnc": "100",
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": "1784",
+ "network": "Cingular"
+ },
+ {
+ "mcc": "360",
+ "mnc": "050",
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": "1784",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "360",
+ "mnc": "70",
+ "iso": "vc",
+ "country": "Saint Vincent and the Grenadines",
+ "country_code": "1784",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "549",
+ "mnc": "999",
+ "iso": "ws",
+ "country": "Samoa",
+ "country_code": "685",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "549",
+ "mnc": "27",
+ "iso": "ws",
+ "country": "Samoa",
+ "country_code": "685",
+ "network": "Samoatel Mobile"
+ },
+ {
+ "mcc": "549",
+ "mnc": "01",
+ "iso": "ws",
+ "country": "Samoa",
+ "country_code": "685",
+ "network": "Telecom Samoa Cellular Ltd."
+ },
+ {
+ "mcc": "292",
+ "mnc": "01",
+ "iso": "sm",
+ "country": "San Marino",
+ "country_code": "378",
+ "network": "Prima"
+ },
+ {
+ "mcc": "292",
+ "mnc": "299",
+ "iso": "sm",
+ "country": "San Marino",
+ "country_code": "378",
+ "network": "TeleneT"
+ },
+ {
+ "mcc": "626",
+ "mnc": "01",
+ "iso": "st",
+ "country": "Sao Tome and Principe",
+ "country_code": "239",
+ "network": "CSTmovel"
+ },
+ {
+ "mcc": "626",
+ "mnc": "02",
+ "iso": "st",
+ "country": "Sao Tome and Principe",
+ "country_code": "239",
+ "network": "Unitel"
+ },
+ {
+ "mcc": "901",
+ "mnc": "14",
+ "iso": "n/a",
+ "country": "Satellite Networks",
+ "country_code": "870",
+ "network": "AeroMobile"
+ },
+ {
+ "mcc": "901",
+ "mnc": "11",
+ "iso": "n/a",
+ "country": "Satellite Networks",
+ "country_code": "870",
+ "network": "InMarSAT"
+ },
+ {
+ "mcc": "901",
+ "mnc": "12",
+ "iso": "n/a",
+ "country": "Satellite Networks",
+ "country_code": "870",
+ "network": "Maritime Communications Partner AS"
+ },
+ {
+ "mcc": "901",
+ "mnc": "05",
+ "iso": "n/a",
+ "country": "Satellite Networks",
+ "country_code": "870",
+ "network": "Thuraya Satellite"
+ },
+ {
+ "mcc": "420",
+ "mnc": "07",
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": "966",
+ "network": "Zain"
+ },
+ {
+ "mcc": "420",
+ "mnc": "03",
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": "966",
+ "network": "Etihad/Etisalat/Mobily"
+ },
+ {
+ "mcc": "420",
+ "mnc": "06",
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": "966",
+ "network": "Lebara Mobile"
+ },
+ {
+ "mcc": "420",
+ "mnc": "01",
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": "966",
+ "network": "STC/Al Jawal"
+ },
+ {
+ "mcc": "420",
+ "mnc": "05",
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": "966",
+ "network": "Virgin Mobile"
+ },
+ {
+ "mcc": "420",
+ "mnc": "04",
+ "iso": "sa",
+ "country": "Saudi Arabia",
+ "country_code": "966",
+ "network": "Zain"
+ },
+ {
+ "mcc": "608",
+ "mnc": "299",
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": "221",
+ "network": "2s Mobile"
+ },
+ {
+ "mcc": "608",
+ "mnc": "03",
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": "221",
+ "network": "Expresso"
+ },
+ {
+ "mcc": "608",
+ "mnc": "02",
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": "221",
+ "network": "Free"
+ },
+ {
+ "mcc": "608",
+ "mnc": "04",
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": "221",
+ "network": "HAYO"
+ },
+ {
+ "mcc": "608",
+ "mnc": "01",
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": "221",
+ "network": "Orange"
+ },
+ {
+ "mcc": "608",
+ "mnc": "299",
+ "iso": "sn",
+ "country": "Senegal",
+ "country_code": "221",
+ "network": "Promobile"
+ },
+ {
+ "mcc": "220",
+ "mnc": "299",
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": "381",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "220",
+ "mnc": "11",
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": "381",
+ "network": "Globaltel"
+ },
+ {
+ "mcc": "220",
+ "mnc": "03",
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": "381",
+ "network": "MTS"
+ },
+ {
+ "mcc": "220",
+ "mnc": "01",
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": "381",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "220",
+ "mnc": "02",
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": "381",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "220",
+ "mnc": "05",
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": "381",
+ "network": "VIP"
+ },
+ {
+ "mcc": "220",
+ "mnc": "20",
+ "iso": "rs",
+ "country": "Serbia",
+ "country_code": "381",
+ "network": "VIP"
+ },
+ {
+ "mcc": "633",
+ "mnc": "10",
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": "248",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "633",
+ "mnc": "01",
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": "248",
+ "network": "Cable & Wireless"
+ },
+ {
+ "mcc": "633",
+ "mnc": "05",
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": "248",
+ "network": "Intelvision"
+ },
+ {
+ "mcc": "633",
+ "mnc": "02",
+ "iso": "sc",
+ "country": "Seychelles",
+ "country_code": "248",
+ "network": "Smartcom"
+ },
+ {
+ "mcc": "619",
+ "mnc": "03",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "Africell"
+ },
+ {
+ "mcc": "619",
+ "mnc": "04",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "Comium"
+ },
+ {
+ "mcc": "619",
+ "mnc": "299",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "IPTel"
+ },
+ {
+ "mcc": "619",
+ "mnc": "05",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "Africell"
+ },
+ {
+ "mcc": "619",
+ "mnc": "02",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "Tigo/Millicom"
+ },
+ {
+ "mcc": "619",
+ "mnc": "25",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "Mobitel"
+ },
+ {
+ "mcc": "619",
+ "mnc": "299",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "Onlime"
+ },
+ {
+ "mcc": "619",
+ "mnc": "01",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "Orange"
+ },
+ {
+ "mcc": "619",
+ "mnc": "07",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "Qcell"
+ },
+ {
+ "mcc": "619",
+ "mnc": "299",
+ "iso": "sl",
+ "country": "Sierra Leone",
+ "country_code": "232",
+ "network": "SierraTel"
+ },
+ {
+ "mcc": "525",
+ "mnc": "999",
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": "65",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "525",
+ "mnc": "12",
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": "65",
+ "network": "GRID Communications Pte Ltd"
+ },
+ {
+ "mcc": "525",
+ "mnc": "03",
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": "65",
+ "network": "MobileOne Ltd"
+ },
+ {
+ "mcc": "525",
+ "mnc": "02",
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": "65",
+ "network": "Singtel"
+ },
+ {
+ "mcc": "525",
+ "mnc": "01",
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": "65",
+ "network": "Singtel"
+ },
+ {
+ "mcc": "525",
+ "mnc": "07",
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": "65",
+ "network": "Singtel"
+ },
+ {
+ "mcc": "525",
+ "mnc": "06",
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": "65",
+ "network": "Starhub"
+ },
+ {
+ "mcc": "525",
+ "mnc": "05",
+ "iso": "sg",
+ "country": "Singapore",
+ "country_code": "65",
+ "network": "Starhub"
+ },
+ {
+ "mcc": "231",
+ "mnc": "06",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "O2"
+ },
+ {
+ "mcc": "231",
+ "mnc": "05",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Orange"
+ },
+ {
+ "mcc": "231",
+ "mnc": "07",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Orange"
+ },
+ {
+ "mcc": "231",
+ "mnc": "01",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Orange"
+ },
+ {
+ "mcc": "231",
+ "mnc": "15",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Orange"
+ },
+ {
+ "mcc": "231",
+ "mnc": "03",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Swan / 4ka"
+ },
+ {
+ "mcc": "231",
+ "mnc": "02",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Telekom"
+ },
+ {
+ "mcc": "231",
+ "mnc": "04",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Telekom"
+ },
+ {
+ "mcc": "231",
+ "mnc": "02",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Telekom"
+ },
+ {
+ "mcc": "231",
+ "mnc": "50",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Telekom"
+ },
+ {
+ "mcc": "231",
+ "mnc": "08",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Uniphone"
+ },
+ {
+ "mcc": "231",
+ "mnc": "299",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "Vonage"
+ },
+ {
+ "mcc": "231",
+ "mnc": "99",
+ "iso": "sk",
+ "country": "Slovakia",
+ "country_code": "421",
+ "network": "ZSR"
+ },
+ {
+ "mcc": "293",
+ "mnc": "40",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "A1 / Si.mobil"
+ },
+ {
+ "mcc": "293",
+ "mnc": "20",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "Compatel"
+ },
+ {
+ "mcc": "293",
+ "mnc": "86",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "Elektro Gorenjska"
+ },
+ {
+ "mcc": "293",
+ "mnc": "999",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "293",
+ "mnc": "299",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "HOT mobil"
+ },
+ {
+ "mcc": "293",
+ "mnc": "299",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "Me2"
+ },
+ {
+ "mcc": "293",
+ "mnc": "41",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "Mobitel"
+ },
+ {
+ "mcc": "293",
+ "mnc": "299",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "Novatel"
+ },
+ {
+ "mcc": "293",
+ "mnc": "10",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "Slovenske zeleznice"
+ },
+ {
+ "mcc": "293",
+ "mnc": "299",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "SoftNET"
+ },
+ {
+ "mcc": "293",
+ "mnc": "64",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "T-2"
+ },
+ {
+ "mcc": "293",
+ "mnc": "70",
+ "iso": "si",
+ "country": "Slovenia",
+ "country_code": "386",
+ "network": "Telemach / Tusmobil"
+ },
+ {
+ "mcc": "540",
+ "mnc": "02",
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": "677",
+ "network": "bemobile"
+ },
+ {
+ "mcc": "540",
+ "mnc": "10",
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": "677",
+ "network": "BREEZE"
+ },
+ {
+ "mcc": "540",
+ "mnc": "01",
+ "iso": "sb",
+ "country": "Solomon Islands",
+ "country_code": "677",
+ "network": "BREEZE"
+ },
+ {
+ "mcc": "637",
+ "mnc": "299",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "AirSom"
+ },
+ {
+ "mcc": "637",
+ "mnc": "30",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Golis"
+ },
+ {
+ "mcc": "637",
+ "mnc": "19",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Hormuud"
+ },
+ {
+ "mcc": "637",
+ "mnc": "50",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Hormuud"
+ },
+ {
+ "mcc": "637",
+ "mnc": "60",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Nationlink"
+ },
+ {
+ "mcc": "637",
+ "mnc": "10",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Nationlink"
+ },
+ {
+ "mcc": "637",
+ "mnc": "299",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "NETCO"
+ },
+ {
+ "mcc": "637",
+ "mnc": "70",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Onkod"
+ },
+ {
+ "mcc": "637",
+ "mnc": "04",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Somafone"
+ },
+ {
+ "mcc": "637",
+ "mnc": "299",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "SomNetworks"
+ },
+ {
+ "mcc": "637",
+ "mnc": "71",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Somtel"
+ },
+ {
+ "mcc": "637",
+ "mnc": "299",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "STG"
+ },
+ {
+ "mcc": "637",
+ "mnc": "82",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Telcom Mobile"
+ },
+ {
+ "mcc": "637",
+ "mnc": "01",
+ "iso": "so",
+ "country": "Somalia",
+ "country_code": "252",
+ "network": "Telesom "
+ },
+ {
+ "mcc": "655",
+ "mnc": "21",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Cape Town Metropolitan"
+ },
+ {
+ "mcc": "655",
+ "mnc": "07",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Cell C"
+ },
+ {
+ "mcc": "655",
+ "mnc": "299",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "655",
+ "mnc": "10",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "MTN"
+ },
+ {
+ "mcc": "655",
+ "mnc": "12",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "MTN"
+ },
+ {
+ "mcc": "655",
+ "mnc": "38",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Rain"
+ },
+ {
+ "mcc": "655",
+ "mnc": "19",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Rain"
+ },
+ {
+ "mcc": "655",
+ "mnc": "73",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Rain"
+ },
+ {
+ "mcc": "655",
+ "mnc": "74",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Rain"
+ },
+ {
+ "mcc": "655",
+ "mnc": "06",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Sentech"
+ },
+ {
+ "mcc": "655",
+ "mnc": "02",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Telkom"
+ },
+ {
+ "mcc": "655",
+ "mnc": "05",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Telkom"
+ },
+ {
+ "mcc": "655",
+ "mnc": "01",
+ "iso": "za",
+ "country": "South Africa",
+ "country_code": "27",
+ "network": "Vodacom"
+ },
+ {
+ "mcc": "450",
+ "mnc": "299",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "450",
+ "mnc": "02",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "olleh / KT"
+ },
+ {
+ "mcc": "450",
+ "mnc": "07",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "KT Powertel"
+ },
+ {
+ "mcc": "450",
+ "mnc": "06",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "LG U+"
+ },
+ {
+ "mcc": "450",
+ "mnc": "08",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "olleh / KT"
+ },
+ {
+ "mcc": "450",
+ "mnc": "02",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "olleh / KT"
+ },
+ {
+ "mcc": "450",
+ "mnc": "04",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "olleh / KT"
+ },
+ {
+ "mcc": "450",
+ "mnc": "03",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "SK Telecom"
+ },
+ {
+ "mcc": "450",
+ "mnc": "05",
+ "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": "450",
+ "mnc": "11",
+ "iso": "kr",
+ "country": "South Korea",
+ "country_code": "82",
+ "network": "SK Telecom"
+ },
+ {
+ "mcc": "659",
+ "mnc": "299",
+ "iso": "ss",
+ "country": "South Sudan",
+ "country_code": "",
+ "network": "Digitel"
+ },
+ {
+ "mcc": "659",
+ "mnc": "299",
+ "iso": "ss",
+ "country": "South Sudan",
+ "country_code": "",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "659",
+ "mnc": "03",
+ "iso": "ss",
+ "country": "South Sudan",
+ "country_code": "",
+ "network": "Gemtel Ltd (South Sudan"
+ },
+ {
+ "mcc": "659",
+ "mnc": "02",
+ "iso": "ss",
+ "country": "South Sudan",
+ "country_code": "",
+ "network": "MTN"
+ },
+ {
+ "mcc": "659",
+ "mnc": "04",
+ "iso": "ss",
+ "country": "South Sudan",
+ "country_code": "",
+ "network": "Network of The World Ltd (NOW) (South Sudan"
+ },
+ {
+ "mcc": "659",
+ "mnc": "06",
+ "iso": "ss",
+ "country": "South Sudan",
+ "country_code": "",
+ "network": "Zain"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "ACN"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Adamo Telecom"
+ },
+ {
+ "mcc": "214",
+ "mnc": "36",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Alai"
+ },
+ {
+ "mcc": "214",
+ "mnc": "02",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Alta Tecnologia en Comunicacions"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Aurea"
+ },
+ {
+ "mcc": "214",
+ "mnc": "14",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Avatel Movil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "22",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Digi.Mobil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Billing Financial"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Bluephone"
+ },
+ {
+ "mcc": "214",
+ "mnc": "15",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "BT Espana SAU"
+ },
+ {
+ "mcc": "214",
+ "mnc": "18",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Cableuropa SAU (ONO)"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "CloudComms"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Dialoga"
+ },
+ {
+ "mcc": "214",
+ "mnc": "22",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Digi.Mobil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Dragonet"
+ },
+ {
+ "mcc": "214",
+ "mnc": "08",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Euskaltel Movil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Evolutio"
+ },
+ {
+ "mcc": "214",
+ "mnc": "999",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "214",
+ "mnc": "20",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "fonYou Wireless SL"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Global"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "GNET"
+ },
+ {
+ "mcc": "214",
+ "mnc": "32",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "ION Mobile"
+ },
+ {
+ "mcc": "214",
+ "mnc": "34",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "ION MOBILE"
+ },
+ {
+ "mcc": "214",
+ "mnc": "21",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Jazz Telecom SAU"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Jetnet"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Lemonvil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "26",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Lleida"
+ },
+ {
+ "mcc": "214",
+ "mnc": "25",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "214",
+ "mnc": "25",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "214",
+ "mnc": "17",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "mobil R"
+ },
+ {
+ "mcc": "214",
+ "mnc": "38",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "214",
+ "mnc": "07",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "214",
+ "mnc": "05",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Movistar"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Olephone"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "On Movil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Oniti Telecom"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "OperadorsCat"
+ },
+ {
+ "mcc": "214",
+ "mnc": "11",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Orange"
+ },
+ {
+ "mcc": "214",
+ "mnc": "21",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Orange"
+ },
+ {
+ "mcc": "214",
+ "mnc": "03",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Orange"
+ },
+ {
+ "mcc": "214",
+ "mnc": "09",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Orange"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Pepephone"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "PTV Telecom movil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Quattre"
+ },
+ {
+ "mcc": "214",
+ "mnc": "17",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "R Cable y Telec. Galicia SA"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Sarenet"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "SEWAN"
+ },
+ {
+ "mcc": "214",
+ "mnc": "19",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Simyo"
+ },
+ {
+ "mcc": "214",
+ "mnc": "35",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "SUMA movil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Suop"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Syma"
+ },
+ {
+ "mcc": "214",
+ "mnc": "16",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "mobil R"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Telsome"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "The Telecom Boutique"
+ },
+ {
+ "mcc": "214",
+ "mnc": "27",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Truphone"
+ },
+ {
+ "mcc": "214",
+ "mnc": "12",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Venus Movil"
+ },
+ {
+ "mcc": "214",
+ "mnc": "01",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "214",
+ "mnc": "37",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "214",
+ "mnc": "06",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "214",
+ "mnc": "29",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Yoigo"
+ },
+ {
+ "mcc": "214",
+ "mnc": "04",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Yoigo"
+ },
+ {
+ "mcc": "214",
+ "mnc": "23",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Yoigo"
+ },
+ {
+ "mcc": "214",
+ "mnc": "33",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Yoigo"
+ },
+ {
+ "mcc": "214",
+ "mnc": "299",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "You Mobile"
+ },
+ {
+ "mcc": "214",
+ "mnc": "10",
+ "iso": "es",
+ "country": "Spain",
+ "country_code": "34",
+ "network": "Zinnia"
+ },
+ {
+ "mcc": "413",
+ "mnc": "05",
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": "94",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "413",
+ "mnc": "03",
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": "94",
+ "network": "Etisalat/Tigo"
+ },
+ {
+ "mcc": "413",
+ "mnc": "08",
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": "94",
+ "network": "H3G Hutchison "
+ },
+ {
+ "mcc": "413",
+ "mnc": "01",
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": "94",
+ "network": "Mobitel Ltd."
+ },
+ {
+ "mcc": "413",
+ "mnc": "02",
+ "iso": "lk",
+ "country": "Sri Lanka",
+ "country_code": "94",
+ "network": "MTN/Dialog"
+ },
+ {
+ "mcc": "634",
+ "mnc": "00",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "Canar Telecom"
+ },
+ {
+ "mcc": "634",
+ "mnc": "999",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "634",
+ "mnc": "22",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "MTN"
+ },
+ {
+ "mcc": "634",
+ "mnc": "03",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "MTN"
+ },
+ {
+ "mcc": "634",
+ "mnc": "02",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "MTN"
+ },
+ {
+ "mcc": "634",
+ "mnc": "07",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "Sudani One"
+ },
+ {
+ "mcc": "634",
+ "mnc": "15",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "Sudani One"
+ },
+ {
+ "mcc": "634",
+ "mnc": "05",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "Canar Telecom"
+ },
+ {
+ "mcc": "634",
+ "mnc": "08",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "Canar Telecom"
+ },
+ {
+ "mcc": "634",
+ "mnc": "01",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "Zain"
+ },
+ {
+ "mcc": "634",
+ "mnc": "06",
+ "iso": "sd",
+ "country": "Sudan",
+ "country_code": "249",
+ "network": "Zain"
+ },
+ {
+ "mcc": "746",
+ "mnc": "03",
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": "597",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "746",
+ "mnc": "999",
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": "597",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "746",
+ "mnc": "01",
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": "597",
+ "network": "Telesur"
+ },
+ {
+ "mcc": "746",
+ "mnc": "02",
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": "597",
+ "network": "Telecommunicatiebedrijf Suriname (TELESUR)"
+ },
+ {
+ "mcc": "746",
+ "mnc": "04",
+ "iso": "sr",
+ "country": "Suriname",
+ "country_code": "597",
+ "network": "UNIQA"
+ },
+ {
+ "mcc": "653",
+ "mnc": "02",
+ "iso": "sz",
+ "country": "Swaziland",
+ "country_code": "268",
+ "network": "Eswatini Mobile"
+ },
+ {
+ "mcc": "653",
+ "mnc": "01",
+ "iso": "sz",
+ "country": "Swaziland",
+ "country_code": "268",
+ "network": "EswatiniTelecom"
+ },
+ {
+ "mcc": "653",
+ "mnc": "10",
+ "iso": "sz",
+ "country": "Swaziland",
+ "country_code": "268",
+ "network": "Swazi MTN"
+ },
+ {
+ "mcc": "240",
+ "mnc": "16",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "42 Telecom AB"
+ },
+ {
+ "mcc": "240",
+ "mnc": "35",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "42 Telecom"
+ },
+ {
+ "mcc": "240",
+ "mnc": "13",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "A3"
+ },
+ {
+ "mcc": "240",
+ "mnc": "30",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "NextGen Mobile Ltd (CardBoardFish)"
+ },
+ {
+ "mcc": "240",
+ "mnc": "11",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Com Hem"
+ },
+ {
+ "mcc": "240",
+ "mnc": "09",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Com4"
+ },
+ {
+ "mcc": "240",
+ "mnc": "32",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Compatel"
+ },
+ {
+ "mcc": "240",
+ "mnc": "22",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "EUtel"
+ },
+ {
+ "mcc": "240",
+ "mnc": "63",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Fink Telecom"
+ },
+ {
+ "mcc": "240",
+ "mnc": "999",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "240",
+ "mnc": "18",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Messit / Minicall"
+ },
+ {
+ "mcc": "240",
+ "mnc": "27",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Globetouch"
+ },
+ {
+ "mcc": "240",
+ "mnc": "17",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Gotanet"
+ },
+ {
+ "mcc": "240",
+ "mnc": "02",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "3"
+ },
+ {
+ "mcc": "240",
+ "mnc": "23",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Infobip"
+ },
+ {
+ "mcc": "240",
+ "mnc": "36",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "interactive digital media / IDM"
+ },
+ {
+ "mcc": "240",
+ "mnc": "28",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "LINK Mobility"
+ },
+ {
+ "mcc": "240",
+ "mnc": "12",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "240",
+ "mnc": "29",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "MI Carrier Services"
+ },
+ {
+ "mcc": "240",
+ "mnc": "33",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Mobile Arts"
+ },
+ {
+ "mcc": "240",
+ "mnc": "43",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "MobiWeb"
+ },
+ {
+ "mcc": "240",
+ "mnc": "25",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Monty Mobile"
+ },
+ {
+ "mcc": "240",
+ "mnc": "40",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Netmore"
+ },
+ {
+ "mcc": "240",
+ "mnc": "39",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Primlight"
+ },
+ {
+ "mcc": "240",
+ "mnc": "31",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Rebtel"
+ },
+ {
+ "mcc": "240",
+ "mnc": "20",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Sierra Wireless"
+ },
+ {
+ "mcc": "240",
+ "mnc": "15",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Sierra Wireless Sweden AB"
+ },
+ {
+ "mcc": "240",
+ "mnc": "37",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Sinch"
+ },
+ {
+ "mcc": "240",
+ "mnc": "45",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Spirius"
+ },
+ {
+ "mcc": "240",
+ "mnc": "10",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Spring Mobil AB"
+ },
+ {
+ "mcc": "240",
+ "mnc": "07",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "240",
+ "mnc": "05",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "240",
+ "mnc": "14",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Tele2"
+ },
+ {
+ "mcc": "240",
+ "mnc": "44",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Telenabler"
+ },
+ {
+ "mcc": "240",
+ "mnc": "24",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "240",
+ "mnc": "06",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "240",
+ "mnc": "42",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Telenor Connexion"
+ },
+ {
+ "mcc": "240",
+ "mnc": "08",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "240",
+ "mnc": "04",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Telenor"
+ },
+ {
+ "mcc": "240",
+ "mnc": "01",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Telia"
+ },
+ {
+ "mcc": "240",
+ "mnc": "03",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Net 1"
+ },
+ {
+ "mcc": "240",
+ "mnc": "48",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "240",
+ "mnc": "21",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Trafikverket"
+ },
+ {
+ "mcc": "240",
+ "mnc": "26",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Twilio"
+ },
+ {
+ "mcc": "240",
+ "mnc": "19",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Vectone Mobile"
+ },
+ {
+ "mcc": "240",
+ "mnc": "46",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Viahub"
+ },
+ {
+ "mcc": "240",
+ "mnc": "47",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Viatel"
+ },
+ {
+ "mcc": "240",
+ "mnc": "38",
+ "iso": "se",
+ "country": "Sweden",
+ "country_code": "46",
+ "network": "Voxbone / Bandwidth"
+ },
+ {
+ "mcc": "228",
+ "mnc": "58",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Beeone"
+ },
+ {
+ "mcc": "228",
+ "mnc": "09",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Comfone"
+ },
+ {
+ "mcc": "228",
+ "mnc": "05",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Comfone"
+ },
+ {
+ "mcc": "228",
+ "mnc": "999",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "228",
+ "mnc": "07",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Sunrise"
+ },
+ {
+ "mcc": "228",
+ "mnc": "66",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Inovia"
+ },
+ {
+ "mcc": "228",
+ "mnc": "54",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "228",
+ "mnc": "69",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "MTEL"
+ },
+ {
+ "mcc": "228",
+ "mnc": "52",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Mundio Mobile AG"
+ },
+ {
+ "mcc": "228",
+ "mnc": "65",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Nexphone"
+ },
+ {
+ "mcc": "228",
+ "mnc": "51",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "relario"
+ },
+ {
+ "mcc": "228",
+ "mnc": "03",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Salt Mobile"
+ },
+ {
+ "mcc": "228",
+ "mnc": "06",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "SBB"
+ },
+ {
+ "mcc": "228",
+ "mnc": "53",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Sunrise"
+ },
+ {
+ "mcc": "228",
+ "mnc": "12",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Sunrise"
+ },
+ {
+ "mcc": "228",
+ "mnc": "08",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Sunrise"
+ },
+ {
+ "mcc": "228",
+ "mnc": "02",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Sunrise"
+ },
+ {
+ "mcc": "228",
+ "mnc": "60",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Sunrise"
+ },
+ {
+ "mcc": "228",
+ "mnc": "01",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Swisscom"
+ },
+ {
+ "mcc": "228",
+ "mnc": "02",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Sunrise"
+ },
+ {
+ "mcc": "228",
+ "mnc": "62",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Telecom26"
+ },
+ {
+ "mcc": "228",
+ "mnc": "70",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "228",
+ "mnc": "53",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "upc cablecom GmbH"
+ },
+ {
+ "mcc": "228",
+ "mnc": "59",
+ "iso": "ch",
+ "country": "Switzerland",
+ "country_code": "41",
+ "network": "Vectone Mobile"
+ },
+ {
+ "mcc": "417",
+ "mnc": "02",
+ "iso": "sy",
+ "country": "Syria",
+ "country_code": "963",
+ "network": "MTN/Spacetel"
+ },
+ {
+ "mcc": "417",
+ "mnc": "09",
+ "iso": "sy",
+ "country": "Syria",
+ "country_code": "963",
+ "network": "Syriatel Holdings"
+ },
+ {
+ "mcc": "417",
+ "mnc": "01",
+ "iso": "sy",
+ "country": "Syria",
+ "country_code": "963",
+ "network": "Syriatel Holdings"
+ },
+ {
+ "mcc": "466",
+ "mnc": "68",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "ACeS Taiwan - ACeS Taiwan Telecommunications Co Ltd"
+ },
+ {
+ "mcc": "466",
+ "mnc": "05",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Asia Pacific Telecom Co. Ltd (APT)"
+ },
+ {
+ "mcc": "466",
+ "mnc": "11",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Chunghwa Telecom LDM"
+ },
+ {
+ "mcc": "466",
+ "mnc": "92",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Chunghwa Telecom LDM"
+ },
+ {
+ "mcc": "466",
+ "mnc": "02",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Far EasTone"
+ },
+ {
+ "mcc": "466",
+ "mnc": "07",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Far EasTone"
+ },
+ {
+ "mcc": "466",
+ "mnc": "06",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Far EasTone"
+ },
+ {
+ "mcc": "466",
+ "mnc": "03",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Far EasTone"
+ },
+ {
+ "mcc": "466",
+ "mnc": "01",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Far EasTone"
+ },
+ {
+ "mcc": "466",
+ "mnc": "10",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Global Mobile Corp."
+ },
+ {
+ "mcc": "466",
+ "mnc": "56",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "International Telecom Co. Ltd (FITEL)"
+ },
+ {
+ "mcc": "466",
+ "mnc": "88",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "KG Telecom"
+ },
+ {
+ "mcc": "466",
+ "mnc": "90",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "T-Star/VIBO"
+ },
+ {
+ "mcc": "466",
+ "mnc": "99",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "TransAsia"
+ },
+ {
+ "mcc": "466",
+ "mnc": "97",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Taiwan Cellular"
+ },
+ {
+ "mcc": "466",
+ "mnc": "93",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "Mobitai"
+ },
+ {
+ "mcc": "466",
+ "mnc": "89",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "T-Star/VIBO"
+ },
+ {
+ "mcc": "466",
+ "mnc": "09",
+ "iso": "tw",
+ "country": "Taiwan",
+ "country_code": "886",
+ "network": "VMAX Telecom Co. Ltd"
+ },
+ {
+ "mcc": "436",
+ "mnc": "04",
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": "992",
+ "network": "Babilon-M"
+ },
+ {
+ "mcc": "436",
+ "mnc": "05",
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": "992",
+ "network": "Bee Line"
+ },
+ {
+ "mcc": "436",
+ "mnc": "02",
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": "992",
+ "network": "CJSC Indigo Tajikistan"
+ },
+ {
+ "mcc": "436",
+ "mnc": "12",
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": "992",
+ "network": "Tcell/JC Somoncom"
+ },
+ {
+ "mcc": "436",
+ "mnc": "03",
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": "992",
+ "network": "Megafon"
+ },
+ {
+ "mcc": "436",
+ "mnc": "01",
+ "iso": "tj",
+ "country": "Tajikistan",
+ "country_code": "992",
+ "network": "Tcell/JC Somoncom"
+ },
+ {
+ "mcc": "640",
+ "mnc": "05",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "640",
+ "mnc": "08",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Benson Informatics Ltd"
+ },
+ {
+ "mcc": "640",
+ "mnc": "06",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Dovetel (T) Ltd"
+ },
+ {
+ "mcc": "640",
+ "mnc": "09",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Halotel / Viettel"
+ },
+ {
+ "mcc": "640",
+ "mnc": "99",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Mkulima African Telecommunication"
+ },
+ {
+ "mcc": "640",
+ "mnc": "14",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "MO Mobile"
+ },
+ {
+ "mcc": "640",
+ "mnc": "11",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Smile Communications"
+ },
+ {
+ "mcc": "640",
+ "mnc": "07",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Tanzania Telecommunication Corporation"
+ },
+ {
+ "mcc": "640",
+ "mnc": "02",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Tigo / MIC"
+ },
+ {
+ "mcc": "640",
+ "mnc": "01",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Tri Telecomm. Ltd."
+ },
+ {
+ "mcc": "640",
+ "mnc": "04",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Vodacom"
+ },
+ {
+ "mcc": "640",
+ "mnc": "13",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "WiAfrica"
+ },
+ {
+ "mcc": "640",
+ "mnc": "03",
+ "iso": "tz",
+ "country": "Tanzania",
+ "country_code": "255",
+ "network": "Zanzibar Telecom / Zantel"
+ },
+ {
+ "mcc": "520",
+ "mnc": "20",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "ACeS Thailand - ACeS Regional Services Co Ltd"
+ },
+ {
+ "mcc": "520",
+ "mnc": "15",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "ACT Mobile"
+ },
+ {
+ "mcc": "520",
+ "mnc": "03",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "AIS/Advanced Info Service"
+ },
+ {
+ "mcc": "520",
+ "mnc": "01",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "AIS/Advanced Info Service"
+ },
+ {
+ "mcc": "520",
+ "mnc": "23",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "Digital Phone Co."
+ },
+ {
+ "mcc": "520",
+ "mnc": "999",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "520",
+ "mnc": "00",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "Hutch/CAT CDMA"
+ },
+ {
+ "mcc": "520",
+ "mnc": "05",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "Total Access (DTAC)"
+ },
+ {
+ "mcc": "520",
+ "mnc": "18",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "Total Access (DTAC)"
+ },
+ {
+ "mcc": "520",
+ "mnc": "04",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "True Move/Orange"
+ },
+ {
+ "mcc": "520",
+ "mnc": "99",
+ "iso": "th",
+ "country": "Thailand",
+ "country_code": "66",
+ "network": "True Move/Orange"
+ },
+ {
+ "mcc": "615",
+ "mnc": "03",
+ "iso": "tg",
+ "country": "Togo",
+ "country_code": "228",
+ "network": "Atlantique Telecom / Moov"
+ },
+ {
+ "mcc": "615",
+ "mnc": "02",
+ "iso": "tg",
+ "country": "Togo",
+ "country_code": "228",
+ "network": "Telecel/MOOV"
+ },
+ {
+ "mcc": "615",
+ "mnc": "03",
+ "iso": "tg",
+ "country": "Togo",
+ "country_code": "228",
+ "network": "Telecel/MOOV"
+ },
+ {
+ "mcc": "615",
+ "mnc": "01",
+ "iso": "tg",
+ "country": "Togo",
+ "country_code": "228",
+ "network": "Togo Cellulaire / TogoCel"
+ },
+ {
+ "mcc": "539",
+ "mnc": "88",
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": "676",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "539",
+ "mnc": "999",
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": "676",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "539",
+ "mnc": "43",
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": "676",
+ "network": "Shoreline Communication"
+ },
+ {
+ "mcc": "539",
+ "mnc": "01",
+ "iso": "to",
+ "country": "Tonga",
+ "country_code": "676",
+ "network": "Tonga Communications"
+ },
+ {
+ "mcc": "374",
+ "mnc": "12",
+ "iso": "tt",
+ "country": "Trinidad and Tobago",
+ "country_code": "1868",
+ "network": "Bmobile/TSTT"
+ },
+ {
+ "mcc": "374",
+ "mnc": "120",
+ "iso": "tt",
+ "country": "Trinidad and Tobago",
+ "country_code": "1868",
+ "network": "Bmobile/TSTT"
+ },
+ {
+ "mcc": "374",
+ "mnc": "130",
+ "iso": "tt",
+ "country": "Trinidad and Tobago",
+ "country_code": "1868",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "374",
+ "mnc": "140",
+ "iso": "tt",
+ "country": "Trinidad and Tobago",
+ "country_code": "1868",
+ "network": "LaqTel Ltd."
+ },
+ {
+ "mcc": "605",
+ "mnc": "999",
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": "216",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "605",
+ "mnc": "06",
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": "216",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "605",
+ "mnc": "03",
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": "216",
+ "network": "Ooredoo"
+ },
+ {
+ "mcc": "605",
+ "mnc": "01",
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": "216",
+ "network": "Orange"
+ },
+ {
+ "mcc": "605",
+ "mnc": "02",
+ "iso": "tn",
+ "country": "Tunisia",
+ "country_code": "216",
+ "network": "TT Mobile"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Asistan Telekom"
+ },
+ {
+ "mcc": "286",
+ "mnc": "04",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Avea"
+ },
+ {
+ "mcc": "286",
+ "mnc": "03",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Avea"
+ },
+ {
+ "mcc": "286",
+ "mnc": "03",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Avea"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "BasakCell"
+ },
+ {
+ "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": "286",
+ "mnc": "999",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Foniva"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "IsNet"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Maxiphone"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Medium Telekom"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Mobilisim"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Netgsm"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Nida"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Oris"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Pelicell"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Plus Telekom"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Roitel"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "SesNet"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "TCDD"
+ },
+ {
+ "mcc": "286",
+ "mnc": "299",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "TTM"
+ },
+ {
+ "mcc": "286",
+ "mnc": "01",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Turkcell"
+ },
+ {
+ "mcc": "286",
+ "mnc": "02",
+ "iso": "tr",
+ "country": "Turkiye",
+ "country_code": "90",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "438",
+ "mnc": "01",
+ "iso": "tm",
+ "country": "Turkmenistan",
+ "country_code": "993",
+ "network": "MTS/Barash Communication"
+ },
+ {
+ "mcc": "438",
+ "mnc": "02",
+ "iso": "tm",
+ "country": "Turkmenistan",
+ "country_code": "993",
+ "network": "Altyn Asyr/TM-Cell"
+ },
+ {
+ "mcc": "376",
+ "mnc": "350",
+ "iso": "tc",
+ "country": "Turks and Caicos Islands",
+ "country_code": "",
+ "network": "Cable & Wireless (TCI) Ltd"
+ },
+ {
+ "mcc": "376",
+ "mnc": "050",
+ "iso": "tc",
+ "country": "Turks and Caicos Islands",
+ "country_code": "",
+ "network": "Digicel TCI Ltd"
+ },
+ {
+ "mcc": "376",
+ "mnc": "352",
+ "iso": "tc",
+ "country": "Turks and Caicos Islands",
+ "country_code": "",
+ "network": "IslandCom Communications Ltd."
+ },
+ {
+ "mcc": "553",
+ "mnc": "01",
+ "iso": "tv",
+ "country": "Tuvalu",
+ "country_code": "",
+ "network": "Tuvalu Telecommunication Corporation (TTC)"
+ },
+ {
+ "mcc": "641",
+ "mnc": "01",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "641",
+ "mnc": "22",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "641",
+ "mnc": "999",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "641",
+ "mnc": "66",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "i-Tel Ltd"
+ },
+ {
+ "mcc": "641",
+ "mnc": "30",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "K2 Telecom Ltd"
+ },
+ {
+ "mcc": "641",
+ "mnc": "04",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "641",
+ "mnc": "11",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "Mango"
+ },
+ {
+ "mcc": "641",
+ "mnc": "10",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "MTN"
+ },
+ {
+ "mcc": "641",
+ "mnc": "14",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "Orange"
+ },
+ {
+ "mcc": "641",
+ "mnc": "33",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "Smile"
+ },
+ {
+ "mcc": "641",
+ "mnc": "18",
+ "iso": "ug",
+ "country": "Uganda",
+ "country_code": "256",
+ "network": "Suretelecom Uganda Ltd"
+ },
+ {
+ "mcc": "255",
+ "mnc": "07",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "3Mob"
+ },
+ {
+ "mcc": "255",
+ "mnc": "05",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Golden Telecom"
+ },
+ {
+ "mcc": "255",
+ "mnc": "39",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Golden Telecom"
+ },
+ {
+ "mcc": "255",
+ "mnc": "04",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "IT"
+ },
+ {
+ "mcc": "255",
+ "mnc": "67",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "KyivStar"
+ },
+ {
+ "mcc": "255",
+ "mnc": "02",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Kyivstar"
+ },
+ {
+ "mcc": "255",
+ "mnc": "03",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Kyivstar"
+ },
+ {
+ "mcc": "255",
+ "mnc": "03",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "KyivStar"
+ },
+ {
+ "mcc": "255",
+ "mnc": "06",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "lifecell"
+ },
+ {
+ "mcc": "255",
+ "mnc": "21",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "PEOPLEnet"
+ },
+ {
+ "mcc": "255",
+ "mnc": "99",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Phoenix"
+ },
+ {
+ "mcc": "255",
+ "mnc": "50",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "255",
+ "mnc": "02",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Kyivstar"
+ },
+ {
+ "mcc": "255",
+ "mnc": "01",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "255",
+ "mnc": "01",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "255",
+ "mnc": "68",
+ "iso": "ua",
+ "country": "Ukraine",
+ "country_code": "380",
+ "network": "Kyivstar"
+ },
+ {
+ "mcc": "424",
+ "mnc": "03",
+ "iso": "ae",
+ "country": "United Arab Emirates",
+ "country_code": "971",
+ "network": "DU"
+ },
+ {
+ "mcc": "424",
+ "mnc": "02",
+ "iso": "ae",
+ "country": "United Arab Emirates",
+ "country_code": "971",
+ "network": "Etisalat"
+ },
+ {
+ "mcc": "431",
+ "mnc": "02",
+ "iso": "ae",
+ "country": "United Arab Emirates",
+ "country_code": "971",
+ "network": "Etisalat"
+ },
+ {
+ "mcc": "430",
+ "mnc": "02",
+ "iso": "ae",
+ "country": "United Arab Emirates",
+ "country_code": "971",
+ "network": "Etisalat"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "08Direct"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "24Seven"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "ACE Call"
+ },
+ {
+ "mcc": "234",
+ "mnc": "78",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Airwave"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Andrews & Arnold"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Anywhere Sim"
+ },
+ {
+ "mcc": "234",
+ "mnc": "29",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "aql"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "aql Wholesale"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Voxbone / Bandwidth"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Bellingham Telecommunications"
+ },
+ {
+ "mcc": "234",
+ "mnc": "76",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "BT Group"
+ },
+ {
+ "mcc": "234",
+ "mnc": "00",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "BT Group"
+ },
+ {
+ "mcc": "234",
+ "mnc": "08",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "BT OnePhone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "CFL Communications"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Citrus"
+ },
+ {
+ "mcc": "234",
+ "mnc": "18",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Cloud9"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Compatel"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Confabulate"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Core"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Core Telecom"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Core Telecom Ltd"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "DMB"
+ },
+ {
+ "mcc": "235",
+ "mnc": "02",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Everyth. Ev.wh."
+ },
+ {
+ "mcc": "234",
+ "mnc": "32",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "31",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "30",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "999",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "234",
+ "mnc": "17",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "FlexTel"
+ },
+ {
+ "mcc": "234",
+ "mnc": "04",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "FMS Solutions"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Fogg"
+ },
+ {
+ "mcc": "234",
+ "mnc": "39",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Gamma Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Global Reach Networks"
+ },
+ {
+ "mcc": "234",
+ "mnc": "24",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Greenfone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "72",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Hanhaa Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "71",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Home Office"
+ },
+ {
+ "mcc": "234",
+ "mnc": "20",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "3"
+ },
+ {
+ "mcc": "234",
+ "mnc": "94",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "3"
+ },
+ {
+ "mcc": "234",
+ "mnc": "23",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Icron Network"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "IPV6"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "IV Response"
+ },
+ {
+ "mcc": "234",
+ "mnc": "03",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Jersey Airtel"
+ },
+ {
+ "mcc": "234",
+ "mnc": "35",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "JSC Ingenicum"
+ },
+ {
+ "mcc": "234",
+ "mnc": "50",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "JT Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Kontakt Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Lanonyx Telecom"
+ },
+ {
+ "mcc": "234",
+ "mnc": "14",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "LINK Mobility"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Lleida.net"
+ },
+ {
+ "mcc": "234",
+ "mnc": "26",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Lycamobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Magrathea Telecommunications"
+ },
+ {
+ "mcc": "234",
+ "mnc": "58",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Manx Telecom Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "28",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Marathon Telecom"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Mars Communications"
+ },
+ {
+ "mcc": "234",
+ "mnc": "75",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Mass Response Service GmbH"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Mobiweb"
+ },
+ {
+ "mcc": "234",
+ "mnc": "56",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "NCSC"
+ },
+ {
+ "mcc": "234",
+ "mnc": "95",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Network Rail"
+ },
+ {
+ "mcc": "234",
+ "mnc": "12",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Network Rail"
+ },
+ {
+ "mcc": "234",
+ "mnc": "13",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Network Rail"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Nodemax"
+ },
+ {
+ "mcc": "234",
+ "mnc": "51",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "now broadband"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "NTA"
+ },
+ {
+ "mcc": "234",
+ "mnc": "34",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Orange"
+ },
+ {
+ "mcc": "234",
+ "mnc": "33",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Orange"
+ },
+ {
+ "mcc": "234",
+ "mnc": "74",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Pareteum"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Premium Routing"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "QX"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Resilient"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Sark Telecom"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Simwood eSMS"
+ },
+ {
+ "mcc": "234",
+ "mnc": "57",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Sky"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Sound Advertising"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Spacetel"
+ },
+ {
+ "mcc": "234",
+ "mnc": "40",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "spusu"
+ },
+ {
+ "mcc": "234",
+ "mnc": "55",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Sure Guernsey"
+ },
+ {
+ "mcc": "234",
+ "mnc": "36",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Sure Isle of Man"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Sure Jersey"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Swiftnet"
+ },
+ {
+ "mcc": "234",
+ "mnc": "37",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Synectiv"
+ },
+ {
+ "mcc": "234",
+ "mnc": "16",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Talk Talk"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Tango Networks"
+ },
+ {
+ "mcc": "234",
+ "mnc": "27",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Tata Communications Ltd"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Telecom 10"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Telecom2"
+ },
+ {
+ "mcc": "234",
+ "mnc": "27",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "02",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "O2"
+ },
+ {
+ "mcc": "234",
+ "mnc": "11",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "O2"
+ },
+ {
+ "mcc": "234",
+ "mnc": "10",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "O2"
+ },
+ {
+ "mcc": "234",
+ "mnc": "22",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Telesign Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "19",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "TeleWare"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "telna Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "TGL Services"
+ },
+ {
+ "mcc": "234",
+ "mnc": "09",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Tismi"
+ },
+ {
+ "mcc": "234",
+ "mnc": "25",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Truphone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "01",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Vectone Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "998",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Virgin Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "38",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Virgin Mobile"
+ },
+ {
+ "mcc": "234",
+ "mnc": "07",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "92",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "89",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "15",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "91",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "77",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Vodafone"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Voicetec Systems"
+ },
+ {
+ "mcc": "234",
+ "mnc": "99",
+ "iso": "gb",
+ "country": "United Kingdom",
+ "country_code": "44",
+ "network": "Ziron"
+ },
+ {
+ "mcc": "310",
+ "mnc": "050",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "880",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "850",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Aeris Comm. Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "640",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "510",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Airtel Wireless LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "190",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "312",
+ "mnc": "090",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Allied Wireless Communications Corporation"
+ },
+ {
+ "mcc": "311",
+ "mnc": "130",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "710",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Arctic Slope Telephone Association Cooperative Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "410",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "AT&T Wireless Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "380",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "AT&T Wireless Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "170",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "AT&T Wireless Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "150",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "AT&T Wireless Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "680",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "AT&T Wireless Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "070",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "AT&T Wireless Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "560",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "AT&T Wireless Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "980",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "AT&T Wireless Inc."
+ },
+ {
+ "mcc": "311",
+ "mnc": "810",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Bluegrass Wireless LLC"
+ },
+ {
+ "mcc": "311",
+ "mnc": "800",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Bluegrass Wireless LLC"
+ },
+ {
+ "mcc": "311",
+ "mnc": "440",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Bluegrass Wireless LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "900",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cable & Communications Corp."
+ },
+ {
+ "mcc": "311",
+ "mnc": "590",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "California RSA No. 3 Limited Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "500",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cambridge Telephone Company Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "830",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Caprock Cellular Ltd."
+ },
+ {
+ "mcc": "311",
+ "mnc": "483",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "110",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "285",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "488",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "274",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "010",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "279",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "288",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "910",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "284",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "482",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "487",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "273",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "004",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "278",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "287",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "890",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "283",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "481",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "486",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "272",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "277",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "590",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "282",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "480",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "485",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "271",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "276",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "013",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "281",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "390",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "484",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "270",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "286",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "489",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "275",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "012",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "280",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "311",
+ "mnc": "289",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Verizon Wireless"
+ },
+ {
+ "mcc": "312",
+ "mnc": "280",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cellular Network Partnership LLC"
+ },
+ {
+ "mcc": "312",
+ "mnc": "270",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cellular Network Partnership LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "360",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cellular Network Partnership LLC"
+ },
+ {
+ "mcc": "311",
+ "mnc": "190",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "030",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "311",
+ "mnc": "120",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Choice Phone LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "480",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Choice Phone LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "630",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "420",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cincinnati Bell Wireless LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "180",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cingular Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "620",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Coleman County Telco /Trans TX"
+ },
+ {
+ "mcc": "311",
+ "mnc": "040",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "06",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Consolidated Telcom"
+ },
+ {
+ "mcc": "310",
+ "mnc": "60",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Consolidated Telcom"
+ },
+ {
+ "mcc": "310",
+ "mnc": "26",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "312",
+ "mnc": "380",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "930",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "311",
+ "mnc": "240",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "080",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "700",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cross Valliant Cellular Partnership"
+ },
+ {
+ "mcc": "312",
+ "mnc": "030",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cross Wireless Telephone Co."
+ },
+ {
+ "mcc": "311",
+ "mnc": "140",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Cross Wireless Telephone Co."
+ },
+ {
+ "mcc": "311",
+ "mnc": "520",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "312",
+ "mnc": "040",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Custer Telephone Cooperative Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "440",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Dobson Cellular Systems"
+ },
+ {
+ "mcc": "310",
+ "mnc": "990",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "E.N.M.R. Telephone Coop."
+ },
+ {
+ "mcc": "312",
+ "mnc": "130",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "East Kentucky Network LLC"
+ },
+ {
+ "mcc": "312",
+ "mnc": "120",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "East Kentucky Network LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "750",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "East Kentucky Network LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "090",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Edge Wireless LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "610",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Elkhart TelCo. / Epic Touch Co."
+ },
+ {
+ "mcc": "311",
+ "mnc": "210",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "311",
+ "mnc": "311",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Farmers"
+ },
+ {
+ "mcc": "311",
+ "mnc": "460",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Fisher Wireless Services Inc."
+ },
+ {
+ "mcc": "311",
+ "mnc": "370",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "GCI Communication Corp."
+ },
+ {
+ "mcc": "310",
+ "mnc": "430",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "GCI Communication Corp."
+ },
+ {
+ "mcc": "310",
+ "mnc": "920",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Get Mobile Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "970",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "311",
+ "mnc": "340",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Illinois Valley Cellular RSA 2 Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "030",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "312",
+ "mnc": "170",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Iowa RSA No. 2 Limited Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "410",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Iowa RSA No. 2 Limited Partnership"
+ },
+ {
+ "mcc": "310",
+ "mnc": "770",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Iowa Wireless Services LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "650",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Jasper"
+ },
+ {
+ "mcc": "310",
+ "mnc": "870",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Kaplan Telephone Company Inc."
+ },
+ {
+ "mcc": "312",
+ "mnc": "180",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Keystone Wireless LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "690",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Keystone Wireless LLC"
+ },
+ {
+ "mcc": "311",
+ "mnc": "310",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Lamar County Cellular"
+ },
+ {
+ "mcc": "310",
+ "mnc": "016",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Leap Wireless International Inc."
+ },
+ {
+ "mcc": "311",
+ "mnc": "090",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "040",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Matanuska Tel. Assn. Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "780",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Message Express Co. / Airlink PCS"
+ },
+ {
+ "mcc": "311",
+ "mnc": "660",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "311",
+ "mnc": "330",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Michigan Wireless LLC"
+ },
+ {
+ "mcc": "311",
+ "mnc": "000",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "400",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Minnesota South. Wirel. Co. / Hickory"
+ },
+ {
+ "mcc": "311",
+ "mnc": "020",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Missouri RSA No 5 Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "010",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Missouri RSA No 5 Partnership"
+ },
+ {
+ "mcc": "312",
+ "mnc": "220",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Missouri RSA No 5 Partnership"
+ },
+ {
+ "mcc": "312",
+ "mnc": "010",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Missouri RSA No 5 Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "920",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Missouri RSA No 5 Partnership"
+ },
+ {
+ "mcc": "310",
+ "mnc": "350",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Mohave Cellular LP"
+ },
+ {
+ "mcc": "310",
+ "mnc": "570",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "MTPCS LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "290",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "NEP Cellcorp Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "34",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Nevada Wireless LLC"
+ },
+ {
+ "mcc": "311",
+ "mnc": "380",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "600",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "New-Cell Inc."
+ },
+ {
+ "mcc": "311",
+ "mnc": "100",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "311",
+ "mnc": "300",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Nexus Communications Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "130",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "North Carolina RSA 3 Cellular Tel. Co."
+ },
+ {
+ "mcc": "312",
+ "mnc": "230",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "North Dakota Network Company"
+ },
+ {
+ "mcc": "311",
+ "mnc": "610",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "North Dakota Network Company"
+ },
+ {
+ "mcc": "310",
+ "mnc": "450",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Northeast Colorado Cellular Inc."
+ },
+ {
+ "mcc": "311",
+ "mnc": "710",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Northeast Wireless Networks LLC"
+ },
+ {
+ "mcc": "310",
+ "mnc": "670",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Northstar"
+ },
+ {
+ "mcc": "310",
+ "mnc": "011",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Northstar"
+ },
+ {
+ "mcc": "311",
+ "mnc": "420",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Northwest Missouri Cellular Limited Partnership"
+ },
+ {
+ "mcc": "310",
+ "mnc": "540",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "999",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Various Networks"
+ },
+ {
+ "mcc": "310",
+ "mnc": "760",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Panhandle Telephone Cooperative Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "580",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "PCS ONE"
+ },
+ {
+ "mcc": "311",
+ "mnc": "170",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "PetroCom"
+ },
+ {
+ "mcc": "311",
+ "mnc": "670",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Pine Belt Cellular, Inc."
+ },
+ {
+ "mcc": "311",
+ "mnc": "080",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "790",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "100",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Plateau Telecommunications Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "940",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Poka Lambro Telco Ltd."
+ },
+ {
+ "mcc": "311",
+ "mnc": "730",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "311",
+ "mnc": "540",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "500",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Public Service Cellular Inc."
+ },
+ {
+ "mcc": "312",
+ "mnc": "160",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "RSA 1 Limited Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "430",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "RSA 1 Limited Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "350",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Sagebrush Cellular Inc."
+ },
+ {
+ "mcc": "311",
+ "mnc": "910",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "46",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "SIMMETRY"
+ },
+ {
+ "mcc": "311",
+ "mnc": "260",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "SLO Cellular Inc / Cellular One of San Luis"
+ },
+ {
+ "mcc": "310",
+ "mnc": "320",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Smith Bagley Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "15",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "316",
+ "mnc": "011",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Southern Communications Services Inc."
+ },
+ {
+ "mcc": "312",
+ "mnc": "530",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Sprint Spectrum"
+ },
+ {
+ "mcc": "310",
+ "mnc": "120",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Sprint Spectrum"
+ },
+ {
+ "mcc": "316",
+ "mnc": "010",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Sprint Spectrum"
+ },
+ {
+ "mcc": "312",
+ "mnc": "190",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Sprint Spectrum"
+ },
+ {
+ "mcc": "311",
+ "mnc": "880",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Sprint Spectrum"
+ },
+ {
+ "mcc": "311",
+ "mnc": "870",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Sprint Spectrum"
+ },
+ {
+ "mcc": "311",
+ "mnc": "490",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Sprint Spectrum"
+ },
+ {
+ "mcc": "310",
+ "mnc": "240",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "660",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "230",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "31",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "220",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "270",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "210",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "260",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "200",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "250",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "160",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "800",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "300",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "280",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "330",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "310",
+ "mnc": "310",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "T-Mobile"
+ },
+ {
+ "mcc": "311",
+ "mnc": "740",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "310",
+ "mnc": "740",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Telemetrix Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "14",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Testing"
+ },
+ {
+ "mcc": "310",
+ "mnc": "950",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "310",
+ "mnc": "860",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Texas RSA 15B2 Limited Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "830",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Thumb Cellular Limited Partnership"
+ },
+ {
+ "mcc": "311",
+ "mnc": "050",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Thumb Cellular Limited Partnership"
+ },
+ {
+ "mcc": "310",
+ "mnc": "460",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "TMP Corporation"
+ },
+ {
+ "mcc": "310",
+ "mnc": "490",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Triton PCS"
+ },
+ {
+ "mcc": "311",
+ "mnc": "860",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Uintah Basin Electronics Telecommunications Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "960",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Uintah Basin Electronics Telecommunications Inc."
+ },
+ {
+ "mcc": "312",
+ "mnc": "290",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Uintah Basin Electronics Telecommunications Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "020",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Union Telephone Co."
+ },
+ {
+ "mcc": "311",
+ "mnc": "220",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "United States Cellular Corp."
+ },
+ {
+ "mcc": "310",
+ "mnc": "730",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "United States Cellular Corp."
+ },
+ {
+ "mcc": "311",
+ "mnc": "650",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "United Wireless Communications Inc."
+ },
+ {
+ "mcc": "310",
+ "mnc": "38",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "USA 3650 AT&T"
+ },
+ {
+ "mcc": "310",
+ "mnc": "520",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "VeriSign"
+ },
+ {
+ "mcc": "310",
+ "mnc": "003",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "310",
+ "mnc": "23",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "310",
+ "mnc": "24",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "310",
+ "mnc": "25",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "310",
+ "mnc": "530",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "West Virginia Wireless"
+ },
+ {
+ "mcc": "310",
+ "mnc": "26",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Unknown"
+ },
+ {
+ "mcc": "310",
+ "mnc": "340",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Westlink Communications, LLC"
+ },
+ {
+ "mcc": "311",
+ "mnc": "150",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": ""
+ },
+ {
+ "mcc": "311",
+ "mnc": "070",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Wisconsin RSA #7 Limited Partnership"
+ },
+ {
+ "mcc": "310",
+ "mnc": "390",
+ "iso": "us",
+ "country": "United States of America",
+ "country_code": "1",
+ "network": "Yorkville Telephone Cooperative"
+ },
+ {
+ "mcc": "748",
+ "mnc": "03",
+ "iso": "uy",
+ "country": "Uruguay",
+ "country_code": "598",
+ "network": "Ancel/Antel"
+ },
+ {
+ "mcc": "748",
+ "mnc": "00",
+ "iso": "uy",
+ "country": "Uruguay",
+ "country_code": "598",
+ "network": "Ancel/Antel"
+ },
+ {
+ "mcc": "748",
+ "mnc": "01",
+ "iso": "uy",
+ "country": "Uruguay",
+ "country_code": "598",
+ "network": "Ancel/Antel"
+ },
+ {
+ "mcc": "748",
+ "mnc": "10",
+ "iso": "uy",
+ "country": "Uruguay",
+ "country_code": "598",
+ "network": "Claro/AM Wireless"
+ },
+ {
+ "mcc": "748",
+ "mnc": "07",
+ "iso": "uy",
+ "country": "Uruguay",
+ "country_code": "598",
+ "network": "MOVISTAR"
+ },
+ {
+ "mcc": "434",
+ "mnc": "04",
+ "iso": "uz",
+ "country": "Uzbekistan",
+ "country_code": "998",
+ "network": "Bee Line/Unitel"
+ },
+ {
+ "mcc": "434",
+ "mnc": "01",
+ "iso": "uz",
+ "country": "Uzbekistan",
+ "country_code": "998",
+ "network": "Buztel"
+ },
+ {
+ "mcc": "434",
+ "mnc": "07",
+ "iso": "uz",
+ "country": "Uzbekistan",
+ "country_code": "998",
+ "network": "MTS/Uzdunrobita"
+ },
+ {
+ "mcc": "434",
+ "mnc": "05",
+ "iso": "uz",
+ "country": "Uzbekistan",
+ "country_code": "998",
+ "network": "Ucell/Coscom"
+ },
+ {
+ "mcc": "434",
+ "mnc": "02",
+ "iso": "uz",
+ "country": "Uzbekistan",
+ "country_code": "998",
+ "network": "Uzmacom"
+ },
+ {
+ "mcc": "541",
+ "mnc": "05",
+ "iso": "vu",
+ "country": "Vanuatu",
+ "country_code": "678",
+ "network": "DigiCel"
+ },
+ {
+ "mcc": "541",
+ "mnc": "01",
+ "iso": "vu",
+ "country": "Vanuatu",
+ "country_code": "678",
+ "network": "SMILE"
+ },
+ {
+ "mcc": "225",
+ "mnc": "299",
+ "iso": "va",
+ "country": "Vatican",
+ "country_code": "",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "734",
+ "mnc": "03",
+ "iso": "ve",
+ "country": "Venezuela",
+ "country_code": "58",
+ "network": "DigiTel C.A."
+ },
+ {
+ "mcc": "734",
+ "mnc": "02",
+ "iso": "ve",
+ "country": "Venezuela",
+ "country_code": "58",
+ "network": "DigiTel C.A."
+ },
+ {
+ "mcc": "734",
+ "mnc": "01",
+ "iso": "ve",
+ "country": "Venezuela",
+ "country_code": "58",
+ "network": "DigiTel C.A."
+ },
+ {
+ "mcc": "734",
+ "mnc": "06",
+ "iso": "ve",
+ "country": "Venezuela",
+ "country_code": "58",
+ "network": "Movilnet C.A. "
+ },
+ {
+ "mcc": "734",
+ "mnc": "04",
+ "iso": "ve",
+ "country": "Venezuela",
+ "country_code": "58",
+ "network": "Movistar/TelCel"
+ },
+ {
+ "mcc": "452",
+ "mnc": "07",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "Gmobile"
+ },
+ {
+ "mcc": "452",
+ "mnc": "08",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "I-Telecom"
+ },
+ {
+ "mcc": "452",
+ "mnc": "08",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "I-Telecom"
+ },
+ {
+ "mcc": "452",
+ "mnc": "08",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "I-Telecom"
+ },
+ {
+ "mcc": "452",
+ "mnc": "01",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "MobiFone"
+ },
+ {
+ "mcc": "452",
+ "mnc": "09",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "Reddi"
+ },
+ {
+ "mcc": "452",
+ "mnc": "03",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "S-Fone/Telecom"
+ },
+ {
+ "mcc": "452",
+ "mnc": "05",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "Vietnamobile"
+ },
+ {
+ "mcc": "452",
+ "mnc": "06",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "Viettel"
+ },
+ {
+ "mcc": "452",
+ "mnc": "04",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "Viettel"
+ },
+ {
+ "mcc": "452",
+ "mnc": "02",
+ "iso": "vn",
+ "country": "Vietnam",
+ "country_code": "84",
+ "network": "VinaPhone"
+ },
+ {
+ "mcc": "376",
+ "mnc": "50",
+ "iso": "vi",
+ "country": "Virgin Islands",
+ "country_code": "1340",
+ "network": "Digicel"
+ },
+ {
+ "mcc": "543",
+ "mnc": "299",
+ "iso": "wf",
+ "country": "Wallis and Futuna",
+ "country_code": "",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "543",
+ "mnc": "01",
+ "iso": "wf",
+ "country": "Wallis and Futuna",
+ "country_code": "",
+ "network": "Manuia"
+ },
+ {
+ "mcc": "421",
+ "mnc": "999",
+ "iso": "ye",
+ "country": "Yemen",
+ "country_code": "967",
+ "network": "Fix Line"
+ },
+ {
+ "mcc": "421",
+ "mnc": "04",
+ "iso": "ye",
+ "country": "Yemen",
+ "country_code": "967",
+ "network": "HITS/Y Unitel"
+ },
+ {
+ "mcc": "421",
+ "mnc": "02",
+ "iso": "ye",
+ "country": "Yemen",
+ "country_code": "967",
+ "network": "MTN/Spacetel"
+ },
+ {
+ "mcc": "421",
+ "mnc": "01",
+ "iso": "ye",
+ "country": "Yemen",
+ "country_code": "967",
+ "network": "Sabaphone"
+ },
+ {
+ "mcc": "421",
+ "mnc": "03",
+ "iso": "ye",
+ "country": "Yemen",
+ "country_code": "967",
+ "network": "Yemen Mob. CDMA"
+ },
+ {
+ "mcc": "645",
+ "mnc": "01",
+ "iso": "zm",
+ "country": "Zambia",
+ "country_code": "260",
+ "network": "Airtel"
+ },
+ {
+ "mcc": "645",
+ "mnc": "299",
+ "iso": "zm",
+ "country": "Zambia",
+ "country_code": "260",
+ "network": "Failed Calls"
+ },
+ {
+ "mcc": "645",
+ "mnc": "02",
+ "iso": "zm",
+ "country": "Zambia",
+ "country_code": "260",
+ "network": "MTN"
+ },
+ {
+ "mcc": "645",
+ "mnc": "03",
+ "iso": "zm",
+ "country": "Zambia",
+ "country_code": "260",
+ "network": "Zamtel"
+ },
+ {
+ "mcc": "648",
+ "mnc": "04",
+ "iso": "zw",
+ "country": "Zimbabwe",
+ "country_code": "263",
+ "network": "Econet"
+ },
+ {
+ "mcc": "648",
+ "mnc": "01",
+ "iso": "zw",
+ "country": "Zimbabwe",
+ "country_code": "263",
+ "network": "NetOne"
+ },
+ {
+ "mcc": "648",
+ "mnc": "03",
+ "iso": "zw",
+ "country": "Zimbabwe",
+ "country_code": "263",
+ "network": "Telecel"
+ }
+]
diff --git a/public/helper_documents/worldwide_mnos.csv b/public/helper_documents/worldwide_mnos.csv
new file mode 100644
index 0000000..510dbfc
--- /dev/null
+++ b/public/helper_documents/worldwide_mnos.csv
@@ -0,0 +1,992 @@
+"country";"operator";"mcc";"mnc";"operatorid"
+"Afghanistan","Afghan Wireless Communication Company (AWCC)","412","1","431"
+"Afghanistan","Etisalat Afghanistan","412","50","642"
+"Afghanistan","MTN Afghanistan","412","40","416"
+"Afghanistan","Roshan","412","20","432"
+"Albania","ALBtelecom Albania","276","3","665"
+"Albania","Plus Communication","276","4","1118"
+"Albania","Telekom Albania","276","1","98"
+"Albania","Vodafone Albania","276","2","346"
+"Algeria","Algerie Telecom (Mobilis)","603","1","15"
+"Algeria","Ooredoo","603","3","386"
+"Algeria","Orascom Telecom (Djezzy)","603","2","385"
+"American Samoa","Blue Sky Communications","544","11","590"
+"Andorra","Andorra Telecom (Servei De Tele. DAndorra)","213","3","433"
+"Angola","Movicel Angola","631","4","1137"
+"Angola","Unitel Angola","631","2","434"
+"Anguilla","Digicel Anguilla","365","50","441"
+"Anguilla","FLOW Anguilla (ex-C&W)","365","840","440"
+"Anguilla","Weblinks","365","10","995"
+"Antigua and Barbuda","APUA PCS","344","30","403"
+"Antigua and Barbuda","Digicel Antigua","344","930","997"
+"Antigua and Barbuda","FLOW Antigua (LIME - CWC)","344","920","643"
+"Argentina","Claro (Cti Pcs) Argentina","722","310","186"
+"Argentina","Default (Unallocated Prefixes)","722","999","1328"
+"Argentina","Hutchison Telecommunications","722","35","690"
+"Argentina","Movistar Argentina","722","7","348"
+"Argentina","Nextel Argentina","722","2","689"
+"Argentina","Telecom Personal","722","34","347"
+"Armenia","Beeline","283","1","120"
+"Armenia","Karabakh Telecom","283","4","902"
+"Armenia","Ucom (Orange)","283","10","699"
+"Armenia","VivaCell (MTS)","283","5","442"
+"Aruba","Digicel Aruba","363","20","443"
+"Aruba","SETAR","363","1","444"
+"Australia","Optus Mobile","505","2","202"
+"Australia","Telstra","505","1","204"
+"Australia","Vodafone Hutchison Australia","505","3","203"
+"Austria","A1 Telekom","232","1","160"
+"Austria","Hutchison 3","232","10","351"
+"Austria","Hutchison 3 (ex-Orange)","232","5","162"
+"Austria","Magenta Telekom (ex-T-Mobile)","232","3","161"
+"Austria","Tele.ring","232","7","159"
+"Azerbaijan","Azercell","400","1","312"
+"Azerbaijan","Azerfon (Nar Mobile)","400","4","648"
+"Azerbaijan","Bakcell","400","2","313"
+"Bahamas","Bahamas Telecommunications Company","364","39","446"
+"Bahrain","Batelco","426","1","308"
+"Bahrain","VIVA (STC Bahrain)","426","4","1039"
+"Bahrain","Zain Bahrain","426","2","447"
+"Bangladesh","Airtel","470","7","450"
+"Bangladesh","Banglalink","470","3","448"
+"Bangladesh","Citycell","470","5","1325"
+"Bangladesh","Grameenphone","470","1","255"
+"Bangladesh","Robi (Axiata)","470","2","429"
+"Bangladesh","TeleTalk","470","4","449"
+"Barbados","Digicel Barbados","342","750","402"
+"Barbados","Flow Barbados (LIME - CWC)","342","600","639"
+"Belarus","life:)","257","4","615"
+"Belarus","MTS Belarus","257","2","614"
+"Belarus","Velcom Belarus","257","1","121"
+"Belgium","Base","206","20","77"
+"Belgium","Orange (Mobistar)","206","10","78"
+"Belgium","Proximus (ex-Belgacom)","206","1","76"
+"Belgium","Telenet","206","5","1382"
+"Belize","Digi Belize","702","67","411"
+"Benin","BBCOM","616","4","596"
+"Benin","Glo Benin","616","5","692"
+"Benin","Libercom","616","1","27"
+"Benin","Moov Benin (Etisalat)","616","2","592"
+"Benin","MTN Benin (Spacetel)","616","3","589"
+"Bermuda","Cellular One Bermuda","350","0","1053"
+"Bermuda","Digicel Bermuda","350","1","8"
+"Bermuda","M3 Wireless (Mobility)","350","2","352"
+"Bhutan","B-Mobile Bhutan Telecom","402","11","451"
+"Bolivia","Entel Bolivia","736","2","453"
+"Bolivia","Tigo Bolivia","736","3","452"
+"Bolivia","Viva Bolivia (ex-Nuevatel)","736","1","193"
+"Bosnia and Herzegovina","BH Telecom Bosnia and Herzegovina","218","90","136"
+"Bosnia and Herzegovina","HT Eronet Bosnia and Herzegovina","218","3","137"
+"Bosnia and Herzegovina","m:tel Bosnia and Herzegovina","218","5","138"
+"Botswana","BTC Mobile (beMobile)","652","4","1117"
+"Botswana","Mascom Wireless","652","1","61"
+"Botswana","Orange","652","2","62"
+"Brazil","Algar Telecom Brazil","724","33","1401"
+"Brazil","Brasil Telecom","724","16","1402"
+"Brazil","Claro Brazil","724","5","1398"
+"Brazil","Default (Unallocated Prefixes)","724","999","1304"
+"Brazil","Nextel Brazil","724","0","1396"
+"Brazil","Oi Brazil","724","31","1403"
+"Brazil","Sercomtel Celular","724","15","1400"
+"Brazil","TIM Brazil","724","2","1397"
+"Brazil","Vivo Brazil","724","6","1399"
+"Brunei Darussalam","DST Communications","528","11","219"
+"Brunei Darussalam","Progresif Brunei (B-Mobile)","528","2","220"
+"Bulgaria","A1 Bulgaria (M-Tel)","284","1","107"
+"Bulgaria","Telenor Bulgaria","284","5","356"
+"Bulgaria","Vivacom","284","3","390"
+"Burkina Faso","Onatel Burkina Faso","613","1","597"
+"Burkina Faso","Orange Burkina Faso (Airtel)","613","2","406"
+"Burkina Faso","Telecel Burkina Faso","613","3","598"
+"Burundi","Econet","642","1","468"
+"Burundi","Econet (ex-Leo)","642","82","49"
+"Burundi","LaCell","642","7","1308"
+"Burundi","Lumitel (Viettel) Burundi","642","8","1309"
+"Burundi","Onatel","642","3","1307"
+"Burundi","Tempo (Africell)","642","2","469"
+"Cambodia","Cellcard (Mobitel)","456","1","250"
+"Cambodia","Metfone (ex-Beeline) Cambodia","456","9","1370"
+"Cambodia","Metfone Cambodia","456","8","1107"
+"Cambodia","qb (Cambodia Advance Communications)","456","4","976"
+"Cambodia","Smart Mobile","456","2","251"
+"Cambodia","Yes Cambodia (ex-Excell)","456","11","1371"
+"Cameroon","MTN Cameroon","624","1","32"
+"Cameroon","Orange Cameroon","624","2","33"
+"Canada","Airtel Wireless","302","290","1330"
+"Canada","Bell Mobility Inc","302","610","905"
+"Canada","Dryden Mobility","302","380","1331"
+"Canada","Fido Solutions","302","370","903"
+"Canada","First Networks Operations","302","350","906"
+"Canada","Freedom Mobile Canada","302","490","1145"
+"Canada","ICE Wireless","302","620","1333"
+"Canada","Mobilicity","302","320","1329"
+"Canada","MTS","302","655","1334"
+"Canada","Rogers Wireless Canada","302","720","904"
+"Canada","SaskTel Wireless","302","680","1054"
+"Canada","tbaytel","302","656","1335"
+"Canada","Telus Canada","302","360","1108"
+"Canada","Videotron","302","500","1332"
+"Cape Verde Islands","CV Movel","625","1","34"
+"Cape Verde Islands","T+ Telecomunicacoes","625","2","1001"
+"Cayman Islands","Digicel Cayman","346","6","471"
+"Cayman Islands","Flow Cayman Islands (CWC)","346","140","470"
+"Central African Republic","Azur RCA","623","4","669"
+"Central African Republic","Moov Centrafrique (A-Cell)","623","1","668"
+"Central African Republic","Orange Central African Republic","623","3","670"
+"Central African Republic","Telecel Centrafrique","623","2","31"
+"Chad","Airtel Chad","622","1","408"
+"Chad","Tigo Chad","622","3","666"
+"Chile","Claro Chile","730","3","475"
+"Chile","Entel","730","1","474"
+"Chile","Entel PCS","730","10","188"
+"Chile","Falabella Movil","730","200","1383"
+"Chile","Movistar Chile","730","2","476"
+"Chile","Telefonica Del Sur","730","6","1143"
+"Chile","Virgin Mobile(Tribe)","730","13","1142"
+"Chile","VTR","730","8","1114"
+"Chile","WOM (Nextel)","730","9","1115"
+"China","China Mobile","460","0","253"
+"China","China Telecom","460","3","979"
+"China","China Unicom","460","1","252"
+"Colombia","Claro (Comcel)","732","101","478"
+"Colombia","Movistar","732","102","479"
+"Colombia","Tigo","732","103","477"
+"Comoros/Mayotte","HURI","654","1","480"
+"Congo","Airtel (ex-Warid) Congo","629","7","1002"
+"Congo","Airtel Congo","629","1","37"
+"Congo","Azur Congo","629","2","1341"
+"Congo","MTN Congo","629","10","599"
+"Congo, Democratic Republic of the","Africell DRC","630","90","1343"
+"Congo, Democratic Republic of the","Airtel DRC","630","2","600"
+"Congo, Democratic Republic of the","Orange (ex-Tigo) DRC","630","89","602"
+"Congo, Democratic Republic of the","Orange DRC","630","86","601"
+"Congo, Democratic Republic of the","Supercell Congo","630","5","603"
+"Congo, Democratic Republic of the","Vodacom DRC","630","1","604"
+"Congo, Democratic Republic of the","Yozma Timeturns","630","991","1342"
+"Cook Islands","Vodafone Cook Islands","548","1","481"
+"Costa Rica","Claro Costa Rica","712","3","1135"
+"Costa Rica","kolbi (ICE) Costa Rica","712","1","482"
+"Costa Rica","Movistar Costa Rica","712","4","1136"
+"Croatia","A1 (ex-Vipnet)","219","10","132"
+"Croatia","Tele2 Croatia","219","2","430"
+"Croatia","Telekom Croatia","219","1","133"
+"Cuba","Cubacel","368","1","358"
+"Cyprus","CYTA (Vodafone)","280","1","101"
+"Cyprus","MTN Cyprus (Areeba)","280","10","359"
+"Cyprus","PrimeTel","280","20","1315"
+"Czech Republic","O2","230","2","150"
+"Czech Republic","T-Mobile","230","1","151"
+"Czech Republic","U:fon","230","4","1358"
+"Czech Republic","Vodafone","230","3","152"
+"Denmark","3 Denmark","238","6","360"
+"Denmark","Barablu Mobile","238","7","909"
+"Denmark","Bibob","238","995","1393"
+"Denmark","Call me","238","997","1395"
+"Denmark","CBB Mobil Denmark","238","991","1389"
+"Denmark","Companymobile","238","994","1392"
+"Denmark","FONET","238","990","1387"
+"Denmark","Fullrate","238","993","1391"
+"Denmark","Lebara Denmark","238","996","1394"
+"Denmark","Lycamobile Denmark","238","12","1134"
+"Denmark","TDC Mobil","238","1","166"
+"Denmark","Telenor (ex-Tele2) Denmark","238","77","908"
+"Denmark","Telenor Denmark","238","2","167"
+"Denmark","Telia Denmark","238","20","169"
+"Denmark","Telmore","238","992","1390"
+"Djibouti","Djibouti Telecom (Evatis)","638","1","409"
+"Dominica","Digicel Dominica","366","20","484"
+"Dominica","FLOW Dominica (LIME - CWC)","366","110","483"
+"Dominican Republic","Altice (ex-Orange)","370","1","10"
+"Dominican Republic","Altice (ex-Tricom)","370","3","980"
+"Dominican Republic","Claro","370","2","631"
+"Dominican Republic","Viva","370","4","981"
+"Ecuador","Claro (Conecel S.A.)","740","1","413"
+"Ecuador","CNT Mobile (Alegro)","740","2","1133"
+"Ecuador","Movistar (Otecel S.A.)","740","0","935"
+"Egypt","Etisalat Egypt","602","3","620"
+"Egypt","Orange Egypt (ex-Mobinil)","602","1","12"
+"Egypt","Vodafone Egypt","602","2","11"
+"El Salvador","Claro (CTE)","706","1","182"
+"El Salvador","Digicel","706","2","485"
+"El Salvador","Intelfon (RED)","706","5","1055"
+"El Salvador","Movistar","706","4","486"
+"El Salvador","Tigo (Telemovil)","706","3","487"
+"Equatorial Guinea","GETESA (Orange)","627","1","35"
+"Eritrea","Eritel","657","1","488"
+"Estonia","Elisa Estonia","248","2","117"
+"Estonia","Tele2 Estonia","248","3","116"
+"Estonia","Telia Estonia (EMT)","248","1","115"
+"Eswatini","SPTC","653","1","1352"
+"Eswatini","Swazi MTN","653","10","63"
+"Ethiopia","ETMTN","636","1","361"
+"Falkland Islands","Sure Falkland Islands","750","1","489"
+"Faroe Islands","Faroese Telecom","288","1","66"
+"Faroe Islands","Hey Faroe Islands","288","2","362"
+"Fiji","Digicel Fiji","542","2","1127"
+"Fiji","Vodafone Fiji","542","1","221"
+"Finland","Alcom","244","14","105"
+"Finland","DNA","244","3","104"
+"Finland","Elisa","244","5","106"
+"Finland","Saunalahti","244","21","982"
+"Finland","Telia","244","91","102"
+"France","Bouygues Telecom","208","20","81"
+"France","Default (Unallocated Prefixes)","208","999","1124"
+"France","Iliad - Free Mobile","208","15","1138"
+"France","LycaMobile France","208","25","1380"
+"France","NRJ Mobile","208","26","1381"
+"France","Orange France","208","1","80"
+"France","SFR","208","10","79"
+"France","Transatel Mobile","208","22","1378"
+"France","Virgin Mobile (OMEA)","208","23","1379"
+"French Guiana","Digicel French Guiana","742","20","1024"
+"French Guiana","Orange Caribe French Guiana","742","1","1023"
+"French Guiana","Outremer Telecom French Guiana","742","2","1022"
+"French Polynesia","VINI","547","20","627"
+"Gabon","Airtel Gabon","628","3","490"
+"Gabon","Azur Gabon","628","4","1321"
+"Gabon","Gabon Telecom (ex-Libertis)","628","1","36"
+"Gabon","Gabon Telecom (ex-Moov)","628","2","634"
+"Gambia","Africell","607","2","491"
+"Gambia","Comium","607","3","936"
+"Gambia","Gamcel","607","1","492"
+"Gambia","Qcell","607","4","937"
+"Georgia","Beeline","282","4","910"
+"Georgia","Geocell","282","1","314"
+"Georgia","Magticom","282","2","315"
+"Georgia","Magtifix","282","3","1318"
+"Georgia","Silknet","282","5","1319"
+"Germany","Debitel","262","901","1386"
+"Germany","Dolphin Telecom","262","12","957"
+"Germany","E-Plus","262","3","180"
+"Germany","Group3G","262","14","955"
+"Germany","Lycamobile Germany","262","43","1385"
+"Germany","MobilCom","262","13","956"
+"Germany","O2","262","7","181"
+"Germany","OnePhone","262","20","1384"
+"Germany","T-Mobile Germany","262","1","178"
+"Germany","Vistream","262","16","954"
+"Germany","Vodafone Germany","262","2","179"
+"Ghana","Airtel Ghana","620","6","656"
+"Ghana","Expresso","620","4","1056"
+"Ghana","Globacom","620","7","1131"
+"Ghana","MTN Ghana","620","1","30"
+"Ghana","Tigo Ghana","620","3","493"
+"Ghana","Vodafone Ghana","620","2","494"
+"Gibraltar","Gibtel","266","1","87"
+"Greece","Cosmote","202","1","70"
+"Greece","Q Telecom","202","9","345"
+"Greece","Vodafone Greece","202","5","69"
+"Greece","Wind Greece","202","10","68"
+"Greenland","TELE Greenland","290","1","67"
+"Grenada","Digicel Grenada","352","30","496"
+"Grenada","Flow (C&W) Grenada","352","110","495"
+"Guadeloupe","Dauphin","340","8","1320"
+"Guadeloupe","Digicel Guadeloupe","340","20","1030"
+"Guadeloupe","Orange Caraibes Guadeloupe","340","1","1029"
+"Guadeloupe","Outremer Telecom Guadeloupe","340","2","1028"
+"Guadeloupe","Telcell (Saint Martin et Saint Barthelemy Telcell Sarl)","340","3","1031"
+"Guam","Docomo Pacific (Hafatel)","535","470","498"
+"Guam","iConnect","535","260","1119"
+"Guam","IT&E Overseas (IT&E Wireless)","535","32","499"
+"Guam","Pulse Mobile (GTA Wireless)","535","140","500"
+"Guam","Wave Runner (i CAN_GSM)","535","250","501"
+"Guatemala","Claro Guatemala","704","1","503"
+"Guatemala","Telefonica Guatemala (Movistar)","704","3","504"
+"Guatemala","Tigo Guatemala (Comcel)","704","2","502"
+"Guinea","Cellcom Guinea","611","5","1057"
+"Guinea","MTN Guinea","611","4","505"
+"Guinea","Orange Guinea","611","1","506"
+"Guinea","Sotelgui (Lagui)","611","2","22"
+"Guinea","Telecel Guinea","611","3","507"
+"Guinea-Bissau","Guinetel","632","7","508"
+"Guinea-Bissau","MTN Guinea-Bissau (Spacetel)","632","2","509"
+"Guinea-Bissau","Orange Bissau","632","3","637"
+"Guyana","Digicel Guyana","738","1","510"
+"Guyana","Telephone Guyana (Cellink)","738","2","511"
+"Haiti","Digicel (ex-Voila) Haiti","372","1","512"
+"Haiti","Digicel Haiti","372","2","625"
+"Haiti","Natcom","372","3","938"
+"Honduras","Claro Honduras ","708","1","514"
+"Honduras","Digicel Honduras","708","99","677"
+"Honduras","Hondutel","708","30","513"
+"Honduras","Tigo Honduras (Celtel)","708","2","515"
+"Hong Kong","China Motion Mobile","454","9","916"
+"Hong Kong","CITIC Telecom 1616","454","1","914"
+"Hong Kong","CSL","454","0","912"
+"Hong Kong","SmarTone Mobile","454","6","915"
+"Hong Kong","Three","454","3","245"
+"Hong Kong","TruPhone","454","8","243"
+"Hungary","Telekom","216","30","109"
+"Hungary","Telenor","216","1","108"
+"Hungary","Vodafone","216","70","110"
+"Iceland","Hringidan (IMC Viking)","274","4","939"
+"Iceland","IceCell","274","7","941"
+"Iceland","Nova","274","11","943"
+"Iceland","Null-Niu","274","6","940"
+"Iceland","Siminn","274","1","97"
+"Iceland","Vodafone Iceland","274","2","96"
+"India","Aircel Ltd.","404","42","748"
+"India","Aircel Ltd. (Aircel -Chennai)","404","41","862"
+"India","Aircell Digilink India","404","17","887"
+"India","All Operators (new Prefixes)","404","999","1121"
+"India","Bharat Sanchar Nigam Limited (CellOne - Andhra Pradesh)","404","73","864"
+"India","Bharat Sanchar Nigam Limited (CellOne - Assam)","404","38","866"
+"India","Bharat Sanchar Nigam Limited (CellOne - Bihar)","404","75","865"
+"India","Bharat Sanchar Nigam Limited (CellOne - Chennai)","404","64","867"
+"India","Bharat Sanchar Nigam Limited (CellOne - Gujarat)","404","57","870"
+"India","Bharat Sanchar Nigam Limited (CellOne - Himachal Pradesh)","404","51","868"
+"India","Bharat Sanchar Nigam Limited (CellOne - Jammu & Kashmir)","404","62","873"
+"India","Bharat Sanchar Nigam Limited (CellOne - Karnataka)","404","71","874"
+"India","Bharat Sanchar Nigam Limited (CellOne - Kerala)","404","72","875"
+"India","Bharat Sanchar Nigam Limited (CellOne - Madhya Pradesh)","404","58","871"
+"India","Bharat Sanchar Nigam Limited (CellOne - Maharashtra)","404","66","878"
+"India","Bharat Sanchar Nigam Limited (CellOne - North East)","404","77","877"
+"India","Bharat Sanchar Nigam Limited (CellOne - Orissa)","404","76","876"
+"India","Bharat Sanchar Nigam Limited (CellOne - Punjab)","404","53","869"
+"India","Bharat Sanchar Nigam Limited (CellOne - Rajasthan)","404","59","872"
+"India","Bharat Sanchar Nigam Limited (CellOne - Uttar Pradesh West)","404","54","879"
+"India","Bharat Sanchar Nigam Limited (CellOne - West Bengal)","404","74","829"
+"India","Bharat Sanchar Nigam Limited (CellOne - Kolkata)","404","81","831"
+"India","Bharat Sanchar Nigam Limited (CellOne - Tamil Nadu)","404","80","832"
+"India","Bharat Sanchar Nigam Limited (CellOne - Uttar Pradesh East)","404","55","741"
+"India","Bharat Sanchar Nigam Ltd (BSNL)","404","34","830"
+"India","Bharti Airtel Ltd (Airtel - Andhra Pradesh Circle)","404","49","744"
+"India","Bharti Airtel Ltd (Airtel - Chennai)","404","40","890"
+"India","Bharti Airtel Ltd (Airtel - Delhi)","404","10","806"
+"India","Bharti Airtel Ltd (Airtel - Gujarat)","404","98","759"
+"India","Bharti Airtel Ltd (Airtel - Haryana)","404","96","761"
+"India","Bharti Airtel Ltd (Airtel - Himachal Pradesh Circle)","404","3","825"
+"India","Bharti Airtel Ltd (Airtel - Karnataka)","404","45","802"
+"India","Bharti Airtel Ltd (Airtel - Kerala)","404","95","762"
+"India","Bharti Airtel Ltd (Airtel - Kolkata)","404","31","833"
+"India","Bharti Airtel Ltd (Airtel - Madhya Pradesh)","404","93","764"
+"India","Bharti Airtel Ltd (Airtel - Maharashtra)","404","90","805"
+"India","Bharti Airtel Ltd (Airtel - Mumbai Metro)","404","92","782"
+"India","Bharti Airtel Ltd (Airtel - Punjab)","404","2","813"
+"India","Bharti Airtel Ltd (Airtel - Rajasthan)","404","70","740"
+"India","Bharti Airtel Ltd (Airtel - Tamil Nadu)","404","94","763"
+"India","Bharti Airtel Ltd (Airtel - Uttar Pradesh West))","404","97","760"
+"India","Bharti Airtel Ltd (North East)","404","16","886"
+"India","BPL Mobile Communications Ltd","404","21","774"
+"India","Dishnet Wireless Ltd (Aircel - Assam)","404","29","882"
+"India","Dishnet Wireless Ltd (Aircel - Himachal Pradesh)","404","35","900"
+"India","Dishnet Wireless Ltd (Aircel - Jammu & Kashmir)","404","37","816"
+"India","Dishnet Wireless Ltd (Aircel - Kolkata)","404","91","749"
+"India","Dishnet Wireless Ltd (Aircel - North East)","404","33","750"
+"India","Dishnet Wireless Ltd (Aircel - Orissa)","404","28","889"
+"India","Escorts Telecom","404","82","901"
+"India","Escotel Mobile Communications","404","12","765"
+"India","FASCEL","404","5","803"
+"India","Hutchinson Essar South Ltd.","404","13","784"
+"India","IDEA Cellular","404","22","817"
+"India","IDEA Cellular Ltd (Escotel - Kerala)","404","19","881"
+"India","IDEA Cellular Ltd (Escotel - Uttar Pradesh West)","404","56","770"
+"India","IDEA Cellular Ltd (IDEA - Andhra Pradesh)","404","7","789"
+"India","IDEA Cellular Ltd (IDEA - Delhi)","404","4","781"
+"India","IDEA Cellular Ltd (IDEA - Gujarat)","404","24","812"
+"India","IDEA Cellular Ltd (IDEA - Madhya Pradesh)","404","78","804"
+"India","IDEA Cellular Ltd (IDEA - Rajasthan)","404","87","771"
+"India","IDEA Cellular Ltd (IDEA - Uttar Pradesh East)","404","89","818"
+"India","IDEA Cellular Ltd (Spice Telecom - Karnataka)","404","44","893"
+"India","Mahanagar Telephone Nigam - Mumbai","404","69","807"
+"India","Mahanagar Telephone Nigam Ltd (MTNL)","404","68","808"
+"India","MTS Rajasthan - CDMA","404","0","801"
+"India","Reliance Communications Ltd (Assam)","404","9","880"
+"India","Reliance Communications Ltd (Himachal Pradesh Circle)","404","18","888"
+"India","Reliance Communications Ltd (Kolkata)","404","83","798"
+"India","Reliance Communications Ltd (Madhya Pradesh)","404","67","797"
+"India","Reliance Communications Ltd (North East)","404","50","885"
+"India","Reliance Communications Ltd (Orissa Circle)","404","52","891"
+"India","Reliance Communications Ltd (West Bengal)","404","85","799"
+"India","Reliance Telecom (Bihar & Jharkhand)","404","36","796"
+"India","Spice Communications Pvt Ltd","404","14","819"
+"India","Sterling Cellular","404","11","758"
+"India","TATA Indicom","404","25","775"
+"India","Usha Martin Telecom","404","30","753"
+"India","Vodafone Essar Cellular Limited (Vodafone - Maharashtra & Goa)","404","27","743"
+"India","Vodafone Essar Cellular Ltd (Vodafone - Kerala)","404","46","776"
+"India","Vodafone Essar Cellular Ltd (Vodafone - Tamil Nadu)","404","43","800"
+"India","Vodafone Essar Digilink Ltd (Vodafone - Rajasthan)","404","60","788"
+"India","Vodafone Essar Digilink Ltd (Vodafone - Uttar Pradesh East)","404","15","767"
+"India","Vodafone Essar Ltd (Vodafone - Mumbai)","404","20","823"
+"India","Vodafone Essar South","404","1","766"
+"India","Vodafone Essar South Ltd (Vodafone - Chennai)","404","84","863"
+"India","Vodafone Essar South Ltd (Vodafone - Karnataka)","404","86","783"
+"India","Vodafone Essar South Ltd (Vodafone - Punjab)","404","88","768"
+"India2","Bharti Airtel Ltd (Airtel - Assam)","405","56","747"
+"India2","Bharti Airtel Ltd (Airtel - Bihar)","405","52","739"
+"India2","Bharti Airtel Ltd (Airtel - Jammu & Kashmir)","405","55","884"
+"India2","Bharti Airtel Ltd (Airtel - Orissa)","405","53","754"
+"India2","Bharti Airtel Ltd (Airtel - Uttar Pradesh East)","405","54","745"
+"India2","Bharti Airtel Ltd (Airtel - West Bengal)","405","51","752"
+"India2","Dishnet Wireless Ltd (Aircel - Andhra Pradesh)","405","801","814"
+"India2","Dishnet Wireless Ltd (Aircel - Delhi Metro)","405","800","815"
+"India2","Dishnet Wireless Ltd (Aircel - Karnataka)","405","803","824"
+"India2","Dishnet Wireless Ltd (Aircel - Kerala Service Telecom Area)","405","809","898"
+"India2","Dishnet Wireless Ltd (Aircel - Maharashtra & Goa)","405","804","895"
+"India2","Dishnet Wireless Ltd (Aircel - Mumbai Metro)","405","805","827"
+"India2","Dishnet Wireless Ltd (Aircel - Rajasthan)","405","806","896"
+"India2","Dishnet Wireless Ltd (Aircel - Uttar Pradesh East)","405","810","826"
+"India2","Dishnet Wireless Ltd (Aircel - Uttar Pradesh West)","405","811","899"
+"India2","IDEA Cellular Ltd (IDEA - Behar)","405","70","820"
+"India2","IDEA Cellular Ltd (IDEA - Mumbai)","405","799","809"
+"India2","IDEA Cellular Ltd (IDEA - Orissa)","405","850","861"
+"India2","IDEA Cellular Ltd (IDEA - Tamilnadu Inc Chennai)","405","852","811"
+"India2","Reliance Communications Ltd (Andhra Pradesh)","405","1","795"
+"India2","Reliance Communications Ltd (Delhi)","405","5","746"
+"India2","Reliance Communications Ltd (Gujarat)","405","6","737"
+"India2","Reliance Communications Ltd (Haryana)","405","7","834"
+"India2","Reliance Communications Ltd (Jammu & Kashmir)","405","9","835"
+"India2","Reliance Communications Ltd (Karnataka)","405","10","778"
+"India2","Reliance Communications Ltd (Kerala)","405","11","791"
+"India2","Reliance Communications Ltd (Maharashtra)","405","13","769"
+"India2","Reliance Communications Ltd (Mumbai)","405","15","772"
+"India2","Reliance Communications Ltd (Punjab)","405","18","792"
+"India2","Reliance Communications Ltd (Rajasthan)","405","19","793"
+"India2","Reliance Communications Ltd (Tamil Nadu)","405","20","794"
+"India2","Reliance Communications Ltd (Uttar Pradesh East)","405","21","773"
+"India2","Reliance Communications Ltd (Uttar Pradesh West)","405","22","828"
+"India2","Tata Teleservices Ltd (Tata Indicom - Andhra Pradesh)","405","25","755"
+"India2","Tata Teleservices Ltd (Tata Indicom - Bihar)","405","27","836"
+"India2","Tata Teleservices Ltd (Tata Indicom - Delhi)","405","29","780"
+"India2","Tata Teleservices Ltd (Tata Indicom - Gujarat)","405","30","837"
+"India2","Tata Teleservices Ltd (Tata Indicom - Haryana)","405","31","838"
+"India2","Tata Teleservices Ltd (Tata Indicom - Himachal Pradesh)","405","32","785"
+"India2","Tata Teleservices Ltd (Tata Indicom - Karnataka)","405","34","756"
+"India2","Tata Teleservices Ltd (Tata Indicom - Kerala)","405","35","779"
+"India2","Tata Teleservices Ltd (Tata Indicom - Kolkata)","405","36","839"
+"India2","Tata Teleservices Ltd (Tata Indicom - Madhya Pradesh)","405","38","810"
+"India2","Tata Teleservices Ltd (Tata Indicom - Maharashtra)","405","37","777"
+"India2","Tata Teleservices Ltd (Tata Indicom - Mumbai)","405","39","790"
+"India2","Tata Teleservices Ltd (Tata Indicom - Orissa)","405","41","787"
+"India2","Tata Teleservices Ltd (Tata Indicom - Punjab)","405","42","840"
+"India2","Tata Teleservices Ltd (Tata Indicom - Rajasthan)","405","43","786"
+"India2","Tata Teleservices Ltd (Tata Indicom - Tamil Nadu)","405","44","751"
+"India2","Tata Teleservices Ltd (Tata Indicom - Uttar Pradesh East)","405","45","841"
+"India2","Tata Teleservices Ltd (Tata Indicom - Uttar Pradesh West)","405","46","842"
+"India2","Tata Teleservices Ltd (Tata Indicom - West Bengal)","405","47","843"
+"India2","Unitech Wireless Limited (uninor - Andhra Pradesh)","405","819","856"
+"India2","Unitech Wireless Limited (uninor - Karnataka)","405","820","857"
+"India2","Unitech Wireless Limited (uninor - Kerala)","405","821","858"
+"India2","Unitech Wireless Limited (uninor - Uttar Pradesh West)","405","818","855"
+"India2","Videocon Datacom (Assam)","405","824","859"
+"India2","Videocon Datacom (Madhya Pradesh)","405","834","860"
+"India2","Vodafone Essar South Limited (Vodafone - UP West)","405","66","742"
+"India2","Vodafone Essar South Limited (Vodafone - West Bengal)","405","67","738"
+"India2","Vodafone Essar Spacetel Ltd (Vodafone - Assam)","405","751","821"
+"India2","Vodafone Essar Spacetel Ltd (Vodafone - Bihar)","405","752","757"
+"India2","Vodafone Essar Spacetel Ltd (Vodafone - Himachal Pradesh)","405","754","892"
+"India2","Vodafone Essar Spacetel Ltd (Vodafone - Jammu & Kashmir)","405","750","897"
+"India2","Vodafone Essar Spacetel Ltd (Vodafone - Madhya Pradesh)","405","756","822"
+"India2","Vodafone Essar Spacetel Ltd (Vodafone - NorthEast)","405","755","894"
+"India2","Vodafone Essar Spacetel Ltd (Vodafone - Orissa)","405","753","883"
+"India2","Vodafone Madhya Pradesh","405","68","1112"
+"Indonesia","AXIS","510","8","683"
+"Indonesia","Ceria","510","27","1339"
+"Indonesia","Esia","510","99","1340"
+"Indonesia","Flexi (Telkom Indonesia)","510","7","1337"
+"Indonesia","Indosat Ooredoo","510","1","206"
+"Indonesia","PSN (PT Pasifik Satelit Nusantara)","510","0","1313"
+"Indonesia","Smartfren","510","9","1338"
+"Indonesia","StarOne (Indosat)","510","3","1336"
+"Indonesia","Telkomsel","510","10","205"
+"Indonesia","Three Indonesia","510","89","682"
+"Indonesia","XL Axiata","510","11","207"
+"International Networks","AeroMobile","901","14","1105"
+"International Networks","Antartica","901","13","1130"
+"International Networks","Asia Cellular Satellite (ACeS)","901","0","946"
+"International Networks","Inmarsat Satellite","901","11","947"
+"International Networks","Maritime Communications Partner","901","12","1103"
+"International Networks","SITA","901","15","945"
+"International Networks","Thuraya","901","5","944"
+"Iran","KFZO (TKC)","432","14","392"
+"Iran","MCI","432","11","393"
+"Iran","MTCE","432","19","394"
+"Iran","MTN (Irancell)","432","35","516"
+"Iran","Taliya","432","32","428"
+"Iraq","Asia Cell (Ooredoo)","418","5","417"
+"Iraq","Itisaluna","418","62","1375"
+"Iraq","KorekTel","418","40","438"
+"Iraq","Mobitel","418","45","1376"
+"Iraq","Omnnea","418","92","1374"
+"Iraq","SanaTel","418","8","439"
+"Iraq","Zain Iraq","418","20","437"
+"Ireland","Eir Mobile (ex-Meteor)","272","3","93"
+"Ireland","Tesco Mobile","272","11","1109"
+"Ireland","Three","272","5","517"
+"Ireland","Three (O2)","272","2","94"
+"Ireland","Vodafone","272","1","95"
+"Israel","Cellcom Israel","425","2","329"
+"Israel","Hot Mobile Israel","425","7","923"
+"Israel","Jawwal Palestine","425","5","307"
+"Israel","Ooredoo Palestine (Wataniya)","425","6","679"
+"Israel","Partner Israel (Orange)","425","1","306"
+"Israel","Pelephone Israel","425","3","652"
+"Italy","Three Italy","222","99","143"
+"Italy","TIM Italy","222","1","141"
+"Italy","Vodafone Italy","222","10","142"
+"Italy","Wind Italy","222","88","140"
+"Ivory Coast","GreenN","612","6","686"
+"Ivory Coast","KoZ (Comium)","612","4","685"
+"Ivory Coast","Moov","612","2","645"
+"Ivory Coast","MTN","612","5","24"
+"Ivory Coast","Orange","612","3","25"
+"Jamaica","Digicel Jamaica","338","50","427"
+"Jamaica","Flow Jamaica (LIME - CWC)","338","180","425"
+"Japan","KDDI","440","7","1060"
+"Japan","NTT DoCoMo","440","1","518"
+"Japan","SoftBank Mobile","440","20","364"
+"Japan","Y!mobile","440","0","948"
+"Jordan","Orange Jordan","416","77","298"
+"Jordan","Umniah","416","3","396"
+"Jordan","Zain Jordan","416","1","299"
+"Kazakhstan","Altel","401","7","1347"
+"Kazakhstan","Beeline Kazakhstan","401","1","227"
+"Kazakhstan","Kazakhtelecom","401","8","1346"
+"Kazakhstan","Kcell","401","2","226"
+"Kazakhstan","Tele2 Kazakhstan","401","77","949"
+"Kenya","Airtel Kenya (ex-Econet)","639","5","675"
+"Kenya","Airtel Kenya (Zain)","639","3","42"
+"Kenya","Safaricom","639","2","41"
+"Kenya","Telkom Kenya (Orange)","639","7","674"
+"Kiribati","ATHKL","545","9","519"
+"Korea North","Korea Posts and Telecommunications","467","3","1007"
+"Korea North","Koryolink","467","192","1061"
+"Korea, Republic of","Korea Telecom","450","2","365"
+"Korea, Republic of","LG U+","450","6","1008"
+"Korea, Republic of","SK Telecom","450","5","563"
+"Kuwait","Ooredoo","419","3","300"
+"Kuwait","Viva","419","4","663"
+"Kuwait","Zain (ex-MTC)","419","2","301"
+"Kyrgyzstan","Beeline (Sky Mobile)","437","1","316"
+"Kyrgyzstan","Fonex","437","3","1324"
+"Kyrgyzstan","MegaCom","437","5","520"
+"Kyrgyzstan","O!","437","9","1062"
+"Laos","Beeline Laos","457","8","415"
+"Laos","ETL Laos","457","2","951"
+"Laos","Lao Telecom","457","1","950"
+"Laos","Unitel Laos","457","3","1063"
+"Latvia","Bite Latvia","247","5","521"
+"Latvia","LMT Latvia","247","1","113"
+"Latvia","Tele2 Latvia","247","2","114"
+"Latvia","Triatel Latvia","247","3","1064"
+"Lebanon","ALFA","415","1","296"
+"Lebanon","MTC Touch","415","3","297"
+"Lesotho","Econet Ezi-Cel","651","2","522"
+"Lesotho","Vodacom Lesotho","651","1","523"
+"Liberia","Comium Liberia","618","4","526"
+"Liberia","LiberCell","618","2","1065"
+"Liberia","Lonestar Cell (MTN)","618","1","527"
+"Liberia","Orange Liberia (ex-Cellcom)","618","7","524"
+"Libya","Al Madar (Orbit)","606","1","17"
+"Libya","Libyana Mobile","606","0","528"
+"Liechtenstein","7acht Liechtenstein (ex-Orange)","295","2","158"
+"Liechtenstein","FL1 Liechtenstein (ex-Mobilkom)","295","5","155"
+"Liechtenstein","Swisscom Liechtenstein","295","1","157"
+"Liechtenstein","Tele2 Liechtenstein","295","77","156"
+"Lithuania","Bite","246","2","112"
+"Lithuania","Tele2","246","3","366"
+"Lithuania","Telia (ex-Omnitel)","246","1","111"
+"Luxembourg","Orange Luxembourg (ex-VOXmobile)","270","99","367"
+"Luxembourg","POST Luxembourg (ex-LuxGSM)","270","1","91"
+"Luxembourg","Tango Luxembourg","270","77","92"
+"Macau","3 Macau","455","3","248"
+"Macau","CTM Macau","455","1","249"
+"Macau","Smartone Macau","455","0","529"
+"Madagascar","Airtel Madagascar","646","1","53"
+"Madagascar","Orange Madagascar","646","2","52"
+"Madagascar","Sacel Madagascar","646","3","953"
+"Madagascar","Telma Mobile (Telecel)","646","4","952"
+"Malawi","Airtel Malawi (Celtel)","650","10","60"
+"Malawi","TNM (Telekom Networks Malawi)","650","1","368"
+"Malaysia","Celcom Axiata","502","19","200"
+"Malaysia","DiGi Telecommunications","502","16","198"
+"Malaysia","Maxis Mobile","502","12","196"
+"Malaysia","U Mobile","502","18","986"
+"Maldives"," Ooredoo Malvides","472","2","530"
+"Maldives","Dhiraagu","472","1","295"
+"Mali","Malitel (Sotelma)","610","1","405"
+"Mali","Orange Mali","610","2","593"
+"Malta","epic Malta (ex-Vodafone)","278","1","100"
+"Malta","Go Mobile","278","21","99"
+"Malta","Melita","278","77","924"
+"Martinique","Digicel Antilles Martinique","341","20","1027"
+"Martinique","Orange Caraibe Mobiles Martinique","341","1","1026"
+"Martinique","Outremer Telecom Martinique","341","2","1025"
+"Mauritania","Chinguitel","609","2","9"
+"Mauritania","Mattel","609","1","20"
+"Mauritania","Mauritel Mobiles","609","10","21"
+"Mauritius","CHiLi Mauritius (MTML)","617","2","1066"
+"Mauritius","Emtel Mauritius","617","10","29"
+"Mauritius","My.T Mauritius","617","1","28"
+"Mexico","AT&T Mexico","334","4","1067"
+"Mexico","AT&T Mexico (ex-Nextel)","334","1","1116"
+"Mexico","Movistar Mexico","334","3","400"
+"Mexico","Telcel Mexico","334","2","369"
+"Micronesia, Federated States of","FSM Telecom","550","1","531"
+"Moldova","MoldCell","259","2","119"
+"Moldova","Orange Moldova","259","1","118"
+"Moldova","Unite - IDC ","259","3","1068"
+"Monaco","Monaco Telecom","212","1","123"
+"Mongolia","MobiCom Mongolia","428","99","310"
+"Mongolia","Skytel Mongolia","428","91","1069"
+"Mongolia","Unitel Mongolia","428","88","618"
+"Montenegro","MTEL","297","3","660"
+"Montenegro","Telekom Montenegro","297","2","661"
+"Montenegro","Telenor Montenegro","297","1","1357"
+"Montserrat","Flow Montserrat","354","860","532"
+"Morocco","IAM","604","1","13"
+"Morocco","Orange Morocco (ex-Meditel)","604","0","14"
+"Morocco","WANA","604","2","622"
+"Mozambique","Mcel Mozambique","643","1","50"
+"Mozambique","Movitel Mozambique","643","3","1377"
+"Mozambique","Vodacom Mozambique","643","4","533"
+"Myanmar","MPT","414","1","534"
+"Namibia","MTC Namibia","649","1","59"
+"Namibia","TN Mobile Namibia (ex-Cell One)","649","3","621"
+"Nauru","Digicel","536","1","1314"
+"Nepal","Ncell Nepal","429","2","607"
+"Nepal","Nepal Telecom (NTC)","429","1","419"
+"Nepal","Nepal Telecom (NTC) (CDMA)","429","3","1323"
+"Nepal","Smart Nepal","429","4","1317"
+"Nepal","United Telecom Limited","429","0","1316"
+"Netherlands","Blyk","204","3","1044"
+"Netherlands","Elephant Talk","204","5","1041"
+"Netherlands","KPN","204","8","71"
+"Netherlands","Lycamobile Netherlands","204","9","1038"
+"Netherlands","Orange Netherlands","204","20","75"
+"Netherlands","T-Mobile Netherlands","204","16","73"
+"Netherlands","Tele2 Netherlands","204","2","688"
+"Netherlands","Teleena Holding","204","7","1040"
+"Netherlands","Telfort","204","12","74"
+"Netherlands","Vectone Netherlands","204","6","1450"
+"Netherlands","Vodafone Netherlands","204","4","72"
+"Netherlands Antilles","Chippie (UTS)","362","91","535"
+"Netherlands Antilles","Digicel Netherlands Antilles","362","69","537"
+"Netherlands Antilles","Telcell Netherlands Antilles","362","51","195"
+"New Caledonia","Mobilis New Caledonia","546","1","222"
+"New Zealand","Spark (ex-Telecom)","530","5","680"
+"New Zealand","Two Degrees Mobile","530","24","928"
+"New Zealand","Vodafone New Zealand","530","1","212"
+"Nicaragua","Claro","710","21","1032"
+"Nicaragua","Movistar","710","30","649"
+"Nicaragua","Sercom (Enitel)","710","73","412"
+"Niger","Airtel Niger","614","2","407"
+"Niger","Moov Niger","614","3","595"
+"Niger","Niger Telecoms","614","1","594"
+"Niger","Orange Niger","614","4","929"
+"Nigeria","9mobile (ex-Etisalat) Nigeria","621","60","659"
+"Nigeria","Airtel Nigeria","621","20","324"
+"Nigeria","Glo Mobile Nigeria","621","50","398"
+"Nigeria","MTN Nigeria","621","30","325"
+"Nigeria","Multilinks Nigeria","621","0","641"
+"Nigeria","Visafone Nigeria","621","25","664"
+"North Macedonia","Telekom","294","1","139"
+"North Macedonia","Vip","294","3","644"
+"North Macedonia","Vip (ex-one)","294","2","363"
+"Norway","Phonero","242","7","989"
+"Norway","TDC Mobile","242","8","1070"
+"Norway","Telenor","242","1","174"
+"Norway","Telia","242","5","173"
+"Norway","Telia (ex-Netcom)","242","2","541"
+"Norway","Telia (ex-Tele2)","242","4","988"
+"Oman","Omantel","422","2","304"
+"Oman","Ooredoo","422","3","543"
+"Pakistan","Jazz Pakistan (ex-Mobilink)","410","1","291"
+"Pakistan","Jazz Pakistan (ex-Warid)","410","7","371"
+"Pakistan","Telenor Pakistan","410","6","401"
+"Pakistan","Ufone (Pak Telecom)","410","3","292"
+"Pakistan","Zong (Paktel)","410","4","611"
+"Palau","Palau Mobile Corporation","552","80","544"
+"Palau","Palau National Communications Corporation","552","1","1072"
+"Panama","Cable & Wireless Panama","714","1","545"
+"Panama","Claro Panama","714","3","1034"
+"Panama","Digicel Panama","714","4","1033"
+"Panama","Movistar Panama","714","20","546"
+"Papua New Guinea","Bmobile - Vodafone","537","1","547"
+"Papua New Guinea","Digicel Papua New Guinea","537","3","990"
+"Paraguay","Claro Paraguay","744","2","585"
+"Paraguay","Personal Paraguay","744","5","587"
+"Paraguay","Tigo Paraguay (Telecel)","744","4","588"
+"Paraguay","VOX Paraguay","744","1","586"
+"Peru","Claro Peru","716","10","183"
+"Peru","Entel Peru (Nextel)","716","7","687"
+"Peru","Movistar Peru","716","6","184"
+"Philippines","Globe Telecom","515","2","209"
+"Philippines","SMART Communications","515","3","210"
+"Philippines","Sun Cellular","515","5","624"
+"Poland","Nordisk Poland","260","11","1074"
+"Poland","Orange Poland","260","3","175"
+"Poland","P4 (Play)","260","6","629"
+"Poland","Polkomtel (PLUS)","260","1","177"
+"Poland","Sferia","260","10","1073"
+"Poland","T-Mobile Poland (ex-Era)","260","2","176"
+"Portugal","MEO","268","6","90"
+"Portugal","NOS (ex-Optimus)","268","3","89"
+"Portugal","Vodafone","268","1","88"
+"Puerto Rico","AT&T Mobility","330","30","959"
+"Puerto Rico","Claro","330","110","960"
+"Puerto Rico","Open Mobile (PR Wireless)","330","0","1372"
+"Puerto Rico","Sprint","330","20","961"
+"Puerto Rico","T-Mobile","330","120","962"
+"Qatar"," Ooredoo Qatar","427","1","309"
+"Qatar","Vodafone Qatar","427","2","694"
+"Reunion","Only Reunion (Outremer)","647","2","930"
+"Reunion","Orange Reunion","647","0","54"
+"Reunion","SFR Reunion","647","10","55"
+"Romania","Digi.mobil (RDS)","226","5","654"
+"Romania","Orange","226","10","144"
+"Romania","Telekom (ex. Cosmote)","226","3","146"
+"Romania","Vodafone","226","1","145"
+"Romania","Zapp Mobile","226","4","623"
+"Russian Federation","Baykalwestcom","250","12","231"
+"Russian Federation","Beeline","250","99","237"
+"Russian Federation","ETK","250","5","230"
+"Russian Federation","MegaFon","250","2","233"
+"Russian Federation","MOTIV","250","35","931"
+"Russian Federation","MTS","250","1","225"
+"Russian Federation","NCC","250","3","234"
+"Russian Federation","NTC (New Telephone Company)","250","16","232"
+"Russian Federation","Rostelecom","250","17","229"
+"Russian Federation","Skylink","250","6","1344"
+"Russian Federation","SMARTS","250","7","224"
+"Russian Federation","Tambov GSM","250","38","1345"
+"Russian Federation","Tele2","250","20","702"
+"Russian Federation","Yota","250","11","1076"
+"Rwanda","Airtel","635","14","1305"
+"Rwanda","Airtel (ex-Tigo)","635","13","1306"
+"Rwanda","MTN Rwanda","635","10","548"
+"Saint Kitts and Nevis","FLOW St.Kitts and Nevis (LIME - CWC)","356","110","1140"
+"Saint Lucia","Digicel Saint Lucia","358","50","633"
+"Saint Lucia","Flow (C&W) Saint Lucia","358","110","632"
+"Saint Vincent and the Grenadines","Flow (C&W) Saint Vincent and the Grenadines","360","110","1141"
+"Samoa","Bluesky (SamoaTe)l","549","27","635"
+"Samoa","Digicel Samoa","549","1","636"
+"San Marino","Telecom San Marino","292","1","1078"
+"Sao Tome and Principe","CSTmovel","626","1","549"
+"Saudi Arabia","Mobily (ex. Etisalat)","420","3","550"
+"Saudi Arabia","STC (Al Jawal)","420","1","302"
+"Saudi Arabia","Zain","420","4","653"
+"Senegal","Expresso","608","3","1079"
+"Senegal","Free (ex-Tigo)","608","2","19"
+"Senegal","Orange (ex-Sonatel)","608","1","18"
+"Serbia, Republic of","mts Serbia","220","3","129"
+"Serbia, Republic of","Telenor Serbia","220","1","128"
+"Serbia, Republic of","VIP Mobile","220","5","640"
+"Seychelles","Airtel Seychelles","633","10","39"
+"Seychelles","Cable & Wireless Seychelles","633","1","38"
+"Seychelles","MediaTech","633","2","551"
+"Sierra Leone","Africell","619","3","553"
+"Sierra Leone","Comium","619","4","552"
+"Sierra Leone","Mobitel","619","25","1355"
+"Sierra Leone","Orange (ex-Airtel)","619","1","372"
+"Singapore","Grid Communications","525","12","1365"
+"Singapore","M1","525","3","215"
+"Singapore","SingTel","525","1","214"
+"Singapore","StarHub Mobile","525","5","213"
+"Slovakia","O2","231","6","676"
+"Slovakia","Orange","231","1","154"
+"Slovakia","Slovak Telekom (ex. T-Mobile)","231","2","153"
+"Slovenia","A1 Slovenia (ex-Si.mobil)","293","40","135"
+"Slovenia","T-2 Slovenia","293","64","932"
+"Slovenia","Telekom Slovenia (ex-Mobitel)","293","41","134"
+"Slovenia","Telemach Slovenia (ex-Tusmobil)","293","70","373"
+"Solomon Islands","Our Telekom - Solomon Telekom Company","540","1","556"
+"Somalia","Golis","637","30","557"
+"Somalia","Hormuud Telecom","637","25","558"
+"Somalia","Nationlink","637","10","559"
+"Somalia","SolTelco","637","19","1080"
+"Somalia","Somafone","637","4","560"
+"Somalia","SomTel","637","71","673"
+"Somalia","Telcom Somalia","637","82","672"
+"Somalia","Telesom","637","1","561"
+"South Africa","8ta (Telkom)","655","2","1123"
+"South Africa","CELL C","655","7","327"
+"South Africa","MTN South Africa","655","10","65"
+"South Africa","Vodacom South Africa","655","1","64"
+"South Sudan","Gemtel","659","3","1361"
+"South Sudan","MTN South Sudan","659","2","1360"
+"South Sudan","Sudani South Sudan","659","7","1364"
+"South Sudan","Vivacell South Sudan","659","4","1362"
+"South Sudan","Zain South Sudan","659","6","1363"
+"Spain","Barablu","214","23","1351"
+"Spain","DigiMobil","214","22","1349"
+"Spain","Euskaltel","214","8","1081"
+"Spain","Lleida.net","214","26","1086"
+"Spain","LycaMobile Spain","214","25","1350"
+"Spain","Mobil R","214","17","1084"
+"Spain","Movistar Spain","214","7","86"
+"Spain","ONO","214","18","1085"
+"Spain","Orange (ex-Jazztel)","214","21","1120"
+"Spain","Orange Spain","214","3","85"
+"Spain","Parlem (ex-FonYou)","214","20","1110"
+"Spain","Simyo","214","19","1348"
+"Spain","Telecable","214","16","1083"
+"Spain","Vodafone Spain","214","1","84"
+"Spain","Yoigo (MasMovil)","214","4","83"
+"Sri Lanka","Airtel","413","5","1087"
+"Sri Lanka","Dialog Axiata","413","2","294"
+"Sri Lanka","Etisalat","413","3","293"
+"Sri Lanka","Hutch","413","8","1088"
+"Sri Lanka","Mobitel","413","1","374"
+"Sudan","Canar Telecom","634","5","1359"
+"Sudan","MTN Sudan","634","2","564"
+"Sudan","Sudani One","634","7","1035"
+"Sudan","Zain Sudan","634","1","40"
+"Suriname","Digicel Suriname","746","3","647"
+"Suriname","Telesur","746","2","565"
+"Sweden","Djuice Mobile Sweden","240","9","975"
+"Sweden","Spinbox","240","14","1089"
+"Sweden","Swefour","240","10","968"
+"Sweden","Tele2 Sweden","240","7","170"
+"Sweden","Telenor Sweden","240","8","171"
+"Sweden","Telia Sweden","240","1","172"
+"Sweden","Three Sweden","240","2","375"
+"Sweden","Unknown Network","240","20","970"
+"Sweden","Unknown Network","240","3","966"
+"Sweden","Unknown Network","240","17","969"
+"Sweden","Unknown Network","240","16","1091"
+"Sweden","Unknown Network","240","34","1132"
+"Sweden","Unknown Network","240","15","1090"
+"Switzerland","BebbiCell","228","51","1092"
+"Switzerland","Salt (ex-Orange)","228","3","148"
+"Switzerland","Sunrise","228","2","147"
+"Switzerland","Swisscom Mobile","228","1","149"
+"Switzerland","Tele4U (Sunrise)","228","8","566"
+"Syrian Arab Republic","MTN Syria","417","2","376"
+"Syrian Arab Republic","Syriatel","417","1","377"
+"Taiwan","APTG (Asia Pacific Telecom)","466","5","1139"
+"Taiwan","Chunghwa Telecom","466","92","256"
+"Taiwan","Far EasTone","466","1","257"
+"Taiwan","T Star (ex-VIBO) Taiwan","466","89","260"
+"Taiwan","Taiwan Mobile","466","97","258"
+"Tajikistan","Babilon Mobile","436","4","994"
+"Tajikistan","Beeline","436","5","667"
+"Tajikistan","Megafon","436","3","993"
+"Tajikistan","Tcell","436","1","992"
+"Tanzania, United Republic of","Airtel (ex-Zain)","640","5","44"
+"Tanzania, United Republic of","Tigo (ex-Mic)","640","2","43"
+"Tanzania, United Republic of","Vodacom","640","4","45"
+"Tanzania, United Republic of","Zantel","640","3","606"
+"Thailand","AIS","520","1","218"
+"Thailand","DTAC","520","18","216"
+"Thailand","TOT 3G","520","15","570"
+"Thailand","True Move","520","99","569"
+"Timor-Leste","Timor Telecom","514","2","1093"
+"Togo","Moov Togo","615","3","571"
+"Togo","Togo Cell","615","1","26"
+"Tonga","Digicel Tonga","539","88","1388"
+"Tonga","Digicel Tonga (Tonfon)","539","43","572"
+"Tonga","U-Call","539","1","573"
+"Trinidad and Tobago","bmobile (Telecommunications Services Trinidad and Tobago - TSTT)","374","12","378"
+"Trinidad and Tobago","Digicel Trinidad and Tobago","374","130","574"
+"Tunisia"," Ooredoo Tunisia","605","3","387"
+"Tunisia","Orange Tunisia","605","1","1051"
+"Tunisia","Tunisie Telecom","605","2","16"
+"Turkey","Turk Telekom (ex-Avea)","286","3","263"
+"Turkey","Turk Telekom (ex-Avea)","286","4","379"
+"Turkey","Turkcell","286","1","261"
+"Turkey","Vodafone Turkey","286","2","262"
+"Turkmenistan","MTS","438","1","311"
+"Turkmenistan","TM-Cell (Altyn Asyr)","438","2","575"
+"Turks and Caicos Islands","Digicel","376","50","1094"
+"Turks and Caicos Islands","Flow (C&W)","376","350","576"
+"Uganda","Africell (ex-Orange)","641","14","1111"
+"Uganda","Airtel","641","1","47"
+"Uganda","Airtel (ex-Warid)","641","22","1095"
+"Uganda","MTN","641","10","48"
+"Uganda","UTL (Telecom Limited)","641","11","46"
+"Ukraine","3Mob","255","7","933"
+"Ukraine","CDMA Ukraine","255","23","1326"
+"Ukraine","Golden Telecom","255","5","124"
+"Ukraine","Intertelecom","255","4","1327"
+"Ukraine","Kyivstar","255","3","126"
+"Ukraine","Kyivstar (ex-Beeline)","255","2","127"
+"Ukraine","Lifecell","255","6","577"
+"Ukraine","PEOPLEnet","255","21","934"
+"Ukraine","Vodafone (ex-MTS)","255","1","125"
+"United Arab Emirates","du","424","3","578"
+"United Arab Emirates","Etisalat","424","2","305"
+"United Kingdom","BT","234","0","1009"
+"United Kingdom","Cable & Wireless UK","234","7","1018"
+"United Kingdom","Cloud9","234","18","1014"
+"United Kingdom","EE (ex-Orange)","234","33","319"
+"United Kingdom","EE (ex-TMobile)","234","30","323"
+"United Kingdom","Jersey Airtel","234","3","1011"
+"United Kingdom","Jersey Telecom","234","50","322"
+"United Kingdom","Lycamobile","234","26","1017"
+"United Kingdom","Manx Telecom","234","58","389"
+"United Kingdom","O2","234","10","163"
+"United Kingdom","Sure Mobile Guernsey","234","55","320"
+"United Kingdom","Three","234","20","321"
+"United Kingdom","Unknown Network","234","17","1019"
+"United Kingdom","Unknown Network","234","75","1016"
+"United Kingdom","Unknown Network","234","16","1013"
+"United Kingdom","Unknown Network","234","19","1015"
+"United Kingdom","Unknown Network","234","8","1012"
+"United Kingdom","Vectone Mobile","234","1","1010"
+"United Kingdom","Vodafone","234","15","165"
+"Unknown Country","Unknown Operator","100","999","1567"
+"Uruguay","Antel (Ancel)","748","1","382"
+"Uruguay","Claro (CTI Movil)","748","10","579"
+"Uruguay","Movistar","748","7","580"
+"USA","Advantage Cellular","310","880","735"
+"USA","Airadigm Communications","310","640","717"
+"USA","Alaska Digitel","310","430","1096"
+"USA","All Operators (New Prefixes)","310","999","1122"
+"USA","Alltel Communications Inc","310","590","712"
+"USA","AT&T Mobility (Dobson)","310","560","727"
+"USA","AT&T Mobility USA","310","410","709"
+"USA","Caprock Cellular","310","830","725"
+"USA","Cellcom USA","310","600","1097"
+"USA","Cellular One of NE Arizona","310","320","716"
+"USA","Centennial Wireless","310","30","713"
+"USA","Choice Wireless","310","630","731"
+"USA","Cincinnati Bell Wireless","310","420","728"
+"USA","Corr Wireless Communications","310","80","734"
+"USA","Cricket Communications","310","16","711"
+"USA","Globalstar USA","310","970","730"
+"USA","Iowa Wireless Services","310","770","719"
+"USA","Keystone Wireless","310","690","729"
+"USA","Mohave Wireless","310","350","723"
+"USA","Oklahoma Western Telephone Company","310","540","732"
+"USA","PTSI","310","760","720"
+"USA","T-Mobile (SunCom)","310","490","715"
+"USA","T-Mobile USA","310","260","707"
+"USA","TMP Corporation","310","460","1037"
+"USA","Unicel Rural Cellular Corporation","310","890","714"
+"USA","Union Telephone Company","310","20","708"
+"USA","United Wireless Communications","310","440","721"
+"USA","Verizon Wireless","310","12","706"
+"USA","XIT Cellular","310","950","724"
+"Uzbekistan","Beeline","434","4","383"
+"Uzbekistan","Perfectum Mobile","434","6","1100"
+"Uzbekistan","Ucell","434","5","317"
+"Uzbekistan","UMS (MTS)","434","7","384"
+"Vanuatu","Digicel Vanuatu","541","5","1101"
+"Vanuatu","Telecom Vanuatu","541","1","581"
+"Venezuela","Digitel Venezuela","734","2","189"
+"Venezuela","Movilnet","734","6","657"
+"Venezuela","Movistar Venezuela","734","4","655"
+"Vietnam","Gmobile (Beeline) Vietnam","452","7","1106"
+"Vietnam","I-Telecom","452","8","1312"
+"Vietnam","MobiFone Vietnam","452","1","240"
+"Vietnam","S-Fone (SPT)","452","3","1310"
+"Vietnam","Vietnamobile (HTC)","452","5","1144"
+"Vietnam","Viettel Mobile","452","4","582"
+"Vietnam","Viettel Mobile (EVNTelecom)","452","6","1311"
+"Vietnam","VinaPhone","452","2","241"
+"Virgin Islands British","Caribbean Cellular Telephone","348","570","466"
+"Virgin Islands British","Digicel British Virgin Islands","348","770","1000"
+"Virgin Islands British","Flow (C&W) British Virgin Islands","348","170","999"
+"Yemen","MTN Yemen (Spacetel)","421","2","380"
+"Yemen","Sabafon","421","1","303"
+"Yemen","Sabafon (CDMA)","421","901","1052"
+"Yemen","Y Telecom (Y HiTS UNITEL)","421","4","964"
+"Yemen","Yemen Mobile (CDMA)","421","3","1322"
+"Zambia","Airtel Zambia","645","1","51"
+"Zambia","MTN Zambia","645","2","584"
+"Zambia","ZAMTEL","645","3","583"
+"Zimbabwe","Econet Zimbabwe","648","4","58"
+"Zimbabwe","NetOne Zimbabwe","648","1","56"
+"Zimbabwe","Telecel Zimbabwe","648","3","57"
\ No newline at end of file
diff --git a/public/misc/client_short_codes.csv b/public/misc/client_short_codes.csv
new file mode 100644
index 0000000..cd70cf3
--- /dev/null
+++ b/public/misc/client_short_codes.csv
@@ -0,0 +1,38 @@
+Nexmo,40520,Safaricom,Nexmo,LIVE
+Nexmo,40520,Airtel,Nexmo,LIVE
+Geopoll,7117,TNM,Geopoll,LIVE
+Geopoll,7117,Airtel,Geopoll,LIVE
+Geopoll Ghana,2130,MTN,Geopoll Ghana,LIVE
+Geopoll Ghana,2130,AT,Geopoll Ghana,LIVE
+Geopoll Ghana,2130,,Geopoll Ghana,LIVE
+Click Apps (Zampira),451,TNM,Click Apps (Zampira),LIVE
+Black and Green,361,TNM,Black and Green,LIVE
+Click Apps,3093,TNM,Click Apps,LIVE
+Chancaro,2553,TNM,Chancaro,LIVE
+Geopoll Mo,17878,Orange Botswana,Geopoll Mo,LIVE
+Click Apps (Infobox),288,Orange Botswana,Click Apps (Infobox),LIVE
+Inforbip Local,8855,TNM,Inforbip Local,LIVE
+Inforbip Local,8855,Airtel,Inforbip Local,LIVE
+Geopoll ZM,5155,Airtel Zambia,Geopoll ZM,LIVE
+LWB Call Centre,253,TNM,LWB Call Centre,LIVE
+LWB Call Centre,253,Airtel,LWB Call Centre,LIVE
+Click Apps,3039,TNM,Click Apps,LIVE
+Click Apps(ACB),113,TNM,Click Apps(ACB),LIVE
+Click Apps(Predict),13178,Orange Botswana,Click Apps(Predict),LIVE
+Connect Mobile Comm Local,16644,Orange Botswana,Connect Mobile Comm Local,LIVE
+Messagebird,22763,Airtel,Messagebird,LIVE
+Messagebird,22763,Safaricom,Messagebird,LIVE
+Click Apps,3031,TNM,Click Apps,LIVE
+Mhealth,321,TNM,Mhealth,LIVE
+Kirusa,4242,TNM,Kirusa,LIVE
+Inforbip Local,322,TNM,Inforbip Local,LIVE
+Inforbip Local,322,Airtel,Inforbip Local,LIVE
+Click Apps,102,TNM,Click Apps,LIVE
+Monsato,569,TNM,Monsato,LIVE
+Nitel,256,TNM,Nitel,LIVE
+Premier,885,TNM,Premier,LIVE
+Premier,885,Airtel,Premier,LIVE
+CloudCom,6061,TELECEL,CloudCom,LIVE
+CloudCom,6061,AT,CloudCom,LIVE
+Routemobility,7658,TELECEL,Routemobility,LIVE
+Routemobility,7658,AT,Routemobility,LIVE
\ No newline at end of file
diff --git a/public/staff_members/profile_pics/img.jpg b/public/staff_members/profile_pics/img.jpg
new file mode 100755
index 0000000..54f619e
Binary files /dev/null and b/public/staff_members/profile_pics/img.jpg differ
diff --git a/public/staff_members/profile_pics/profile.jpg b/public/staff_members/profile_pics/profile.jpg
new file mode 100644
index 0000000..ec5f7e8
Binary files /dev/null and b/public/staff_members/profile_pics/profile.jpg differ
diff --git a/resources/views/client/index-tabulator.blade.php b/resources/views/client/index-tabulator.blade.php
index 5e95f2e..7fdc715 100644
--- a/resources/views/client/index-tabulator.blade.php
+++ b/resources/views/client/index-tabulator.blade.php
@@ -54,7 +54,7 @@
+Connection Types : connections) { echo implode(", ", json_decode($showclient->connections, true)); } else {echo "N/A"; } ?>
+
-Company Details
- --- -Country : {{ $showclient->country or "N/A" }}
-Company Type : {{ $showclient->company_type or "N/A" }}
- - - - -Requested Sender IDs : sender_ids) { echo implode(", ", json_decode($showclient->sender_ids, true)); } else {echo "N/A"; } ?>
-Connection Details
---Connection Types : connections) { echo implode(", ", json_decode($showclient->connections, true)); } else {echo "N/A"; } ?>
-SMPP Username : - smpp_username) { echo $showclient->smpp_username; } else {echo "N/A"; } ?>
-Message Types : - message_types) { - $types_array = json_decode($showclient->message_types); - echo implode(', ', $types_array); - } - else { - echo "N/A"; - } ?> - -
-
- support_phones, true) ?> -- @else - N/A - @endif -- - -
-- {{ $row }}
- - -
- support_emails, true) ?> -- @else - N/A - @endif - @if(!empty($showclient->rate_emails)) -- - -
-- {{ $row }}
- - -
- rate_emails, true) ?> -- @else - N/A - @endif -- - -
-- {{ $row }}
- - -
- finance_email, true) ?> -- @else - N/A - @endif - -- - -
-- {{ $row }}
- - -
- support_skype, true) ?> -- @else - N/A - @endif -- - -
-- {{ $row }}
- - -
Partner SMPP Details
+ smpp_details) { echo $showclient->smpp_details; } else {echo "N/A"; } ?>
- - {{ $docs->name }}.{{ $docs->file_extension }} -
- @endforeach - @else -No Documents found
- @endif -+Contract Type : {{ ucfirst($showclient->contract_type) ?? 'N/A'}}
-
--Connection Types : connections) { echo implode(", ", json_decode($showclient->connections, true)); } else {echo "N/A"; } ?>
-
- -Partner SMPP Details
-
- smpp_details) { echo $showclient->smpp_details; } else {echo "N/A"; } ?>
--Contract Type : {{ ucfirst($showclient->contract_type) ?? 'N/A'}}
- - -
Contract Validity (Date) : {{ $showclient->contract_validity or 'N/A'}}
-Contract Auto Renewal : {{ $showclient->contract_auto_renew or 'N/A'}}
- @if($showclient->contract_auto_renew != 'YES') -Renewal Due : {{ $renewal_due }}
- @endif -
Contract Validity (Date) : {{ $showclient->contract_validity or 'N/A'}}
+Contract Auto Renewal : {{ $showclient->contract_auto_renew or 'N/A'}}
+ @if($showclient->contract_auto_renew != 'YES') +Renewal Due : {{ $renewal_due }}
+ @endif + ++ + count(); $i++) { ?> + + highlight == 'NO'): continue; endif; ?> + {{ $i+1 . "." }} {{ $show_notes[$i]->notes_body }} + + +
+++ +Country : {{ $showclient->country or "N/A" }}
+Company Type : {{ $showclient->company_type or "N/A" }}
+ + + + +Requested Sender IDs : sender_ids) { echo implode(", ", json_decode($showclient->sender_ids, true)); } else {echo "N/A"; } ?>
+
++Connection Types : connections) { echo implode(", ", json_decode($showclient->connections, true)); } else {echo "N/A"; } ?>
+SMPP Username : + smpp_username) { echo $showclient->smpp_username; } else {echo "N/A"; } ?>
+Message Types : + message_types) { + $types_array = json_decode($showclient->message_types); + echo implode(', ', $types_array); + } + else { + echo "N/A"; + } ?> + +
+
+ support_phones, true) ?> ++ @else + N/A + @endif ++ + +
+- {{ $row }}
+ + +
+ support_emails, true) ?> ++ @else + N/A + @endif + @if(!empty($showclient->rate_emails)) ++ + +
+- {{ $row }}
+ + +
+ rate_emails, true) ?> ++ @else + N/A + @endif ++ + +
+- {{ $row }}
+ + +
+ finance_email, true) ?> ++ @else + N/A + @endif + ++ + +
+- {{ $row }}
+ + +
+ support_skype, true) ?> ++ @else + N/A + @endif ++ + +
+- {{ $row }}
+ + +
+ + {{ $docs->name }}.{{ $docs->file_extension }} +
+ @endforeach + @else +No Documents found
+ @endif +++Connection Types : connections) { echo implode(", ", json_decode($showclient->connections, true)); } else {echo "N/A"; } ?>
+
+ +Partner SMPP Details
+
+ smpp_details) { echo $showclient->smpp_details; } else {echo "N/A"; } ?>
++Contract Type : {{ ucfirst($showclient->contract_type) ?? 'N/A'}}
+ + +
Contract Validity (Date) : {{ $showclient->contract_validity or 'N/A'}}
+Contract Auto Renewal : {{ $showclient->contract_auto_renew or 'N/A'}}
+ @if($showclient->contract_auto_renew != 'YES') +Renewal Due : {{ $renewal_due }}
+ @endif +
{{ $showclient->name }}
+Renewal Due : {{ $renewal_due }}
+ @endif + +Connection Types : connections) { echo implode(", ", json_decode($showclient->connections, true)); } else {echo "N/A"; } ?>
+SMPP Username : + smpp_username) { echo $showclient->smpp_username; } else {echo "N/A"; } ?>
+Message Types : + message_types) { + $types_array = json_decode($showclient->message_types); + echo implode(', ', $types_array); + } + else { + echo "N/A"; + } ?> + +
++ + {{ $docs->name }}.{{ $docs->file_extension }} +
+ @endforeach + @else +No Documents uploaded
+ @endif ++ how_we_got_client ?? "N/A" ?> +
++ + count(); $i++) { ?> + {{ $i+1 . "." }} + {{ $show_notes_highlight[$i]->notes_body }} + + +
+Company Type : {{ strtoupper($recentrow->company_type) }}
Account Manager : {{ strtoupper($recentrow->auth_user_info->name) }}
-
+ {{ $message_body }}
+ +Short Code : {{$finance_arr['short_code'] }}
+Invoice Date : {{ $finance_arr['invoice_date'] }}
+Invoice Number : {{ $finance_arr['invoice_number'] }}
+Amount : {{ $finance_arr['invoice_amount'] }}
+Status : {{ $finance_arr['invoice_status'] }}
+Remarks : {{ $finance_arr['remarks'] }}
+ + Client Short Short Codes +| Name | +Code | +Network | +Toll Free | +Status | +Remarks | +Launch Date | +Renewal Date | +||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| + No Records found + | +|||||||||||
| + {{ $row->name }} + | ++ {{ $row->shortcode }} + | ++ {{ $row->network }} + | ++ {{ strtoupper($row->toll_free) }} + | ++ {{ $row->status }} + | ++ {{ $row->remarks }} + | ++ {{ date('d-m-Y', strtotime($row->launch_date)) }} | ++ @if($row->expiry_date == false) + {{ "N/A"}} + @else + {{ date('d-m-Y', strtotime($row->expiry_date)) }} + @endif + | +||||
+
|
+
| Name | +Code | +Network | +Toll Free | +Status | +Remarks | +Launch Date | +Renewal Date | +
|---|---|---|---|---|---|---|---|
| some text | +some text | +some text | +some text | +some text | +some text | +some text | +some text | +
+
+
|
+
Access the document repository if you need to perform deep search from individual documents
+ Open Document Repository +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +:message
') !!} +| # | +Partner Name | +Partner ACL | +Edit | +||
|---|---|---|---|---|---|
| No Records found | +|||||
| {{ $counter }} | +
+ {{ $row->mno_info->name }} ({{ $row->mno_info->country }})
+ + Peer : {{ $row->remote_peer_ip }} + + {{ $row->vpn_device }} + |
+
+
|
+ + Edit + + | +||
| # | +Partner Name | +Encrypted Domain(ACL) | +Actions | +
|---|
+ {{ url('public/vpn_form_files/' . $row->partner_vpn_form) }} +
+ + + @endforeach +