after a series of bug fixes plus Non MNO logic for Sender IDs, unfinished leave management and holiday modules
73
public/assets/js/clientshow.js
vendored
@@ -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('<img src="../../img/loading.gif" alt="" width="24" height="24">');
|
||||
},
|
||||
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($("<option />").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();
|
||||
|
||||
36
public/assets/js/senderid.js
vendored
Normal file
@@ -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($("<option />").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 !',
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
44
public/assets/js/vpn_configs.js
vendored
Normal file
@@ -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($("<option />").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 !',
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
BIN
public/documents/client_files/erp_17405830542qPR.pdf
Normal file
BIN
public/documents/client_files/erp_1740594079XpAQ.jpeg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
public/documents/client_files/erp_1740594270sQpp.jpeg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
public/documents/client_files/erp_1740594435xhBH.jpeg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
public/documents/client_files/erp_1740594551Uq8J.docx
Normal file
BIN
public/documents/client_files/erp_1740594715bUcQ.jpeg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
public/documents/client_files/erp_1740594985277c.pdf
Normal file
BIN
public/documents/client_files/erp_17405949852fpq.jpeg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
public/documents/client_files/erp_1740594985aIiD.jpeg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
public/documents/client_files/erp_1740595007KvN4.pdf
Normal file
BIN
public/documents/client_files/erp_1740595136CTbP.jpeg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
public/documents/client_files/erp_1740595200lOfd.jpeg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
public/documents/client_files/erp_1740595238RYUv.pdf
Normal file
BIN
public/documents/client_files/erp_1741256913lUCs.jpeg
Normal file
|
After Width: | Height: | Size: 227 KiB |
103
public/documents/vpn_form_files/erp_1741647101.txt
Normal file
@@ -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,,,,,,,,,,,,,,,
|
||||
BIN
public/documents/vpn_form_files/erp_1741647150.xlsx
Normal file
BIN
public/documents/vpn_form_files/erp_1741799266.xlsx
Normal file
BIN
public/documents/vpn_form_files/erp_1741801779.xlsx
Normal file
BIN
public/documents/vpn_form_files/erp_1741802179.docx
Normal file
BIN
public/documents/vpn_form_files/erp_1741802420.docx
Normal file
BIN
public/documents/vpn_form_files/erp_1741802824.pdf
Normal file
BIN
public/documents/vpn_form_files/erp_1741803648.doc
Normal file
BIN
public/documents/vpn_form_files/erp_1741803809.doc
Normal file
BIN
public/documents/vpn_form_files/erp_1741804009.docx
Normal file
BIN
public/documents/vpn_form_files/erp_1741804440.doc
Normal file
BIN
public/documents/vpn_form_files/erp_1741805403.xlsx
Normal file
BIN
public/documents/vpn_form_files/erp_1741805651.docx
Normal file
BIN
public/documents/vpn_form_files/erp_1741806366.docx
Normal file
BIN
public/documents/vpn_form_files/erp_1741806540.xlsx
Normal file
20794
public/helper_documents/mcc_mnc_table.json
Normal file
992
public/helper_documents/worldwide_mnos.csv
Normal file
@@ -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"
|
||||
|
Can't render this file because it contains an unexpected character in line 2 and column 13.
|
38
public/misc/client_short_codes.csv
Normal file
@@ -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
|
||||
|
BIN
public/staff_members/profile_pics/img.jpg
Executable file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
public/staff_members/profile_pics/profile.jpg
Normal file
|
After Width: | Height: | Size: 27 KiB |