line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# automatically generated file, don't edit |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# Copyright 2023 David Cantrell, derived from data from libphonenumber |
6
|
|
|
|
|
|
|
# http://code.google.com/p/libphonenumber/ |
7
|
|
|
|
|
|
|
# |
8
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
9
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
10
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
11
|
|
|
|
|
|
|
# |
12
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
13
|
|
|
|
|
|
|
# |
14
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
15
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
16
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
17
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
18
|
|
|
|
|
|
|
# limitations under the License. |
19
|
|
|
|
|
|
|
package Number::Phone::StubCountry::SD; |
20
|
2
|
|
|
2
|
|
1135
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
11
|
|
|
2
|
|
|
|
|
242
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
14
|
use strict; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
53
|
|
23
|
2
|
|
|
2
|
|
10
|
use warnings; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
49
|
|
24
|
2
|
|
|
2
|
|
14
|
use utf8; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
10
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230307181422; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
30
|
|
|
|
|
|
|
'leading_digits' => '[19]', |
31
|
|
|
|
|
|
|
'national_rule' => '0$1', |
32
|
|
|
|
|
|
|
'pattern' => '(\\d{2})(\\d{3})(\\d{4})' |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
]; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
my $validators = { |
37
|
|
|
|
|
|
|
'fixed_line' => ' |
38
|
|
|
|
|
|
|
1(?: |
39
|
|
|
|
|
|
|
5\\d| |
40
|
|
|
|
|
|
|
8[35-7] |
41
|
|
|
|
|
|
|
)\\d{6} |
42
|
|
|
|
|
|
|
', |
43
|
|
|
|
|
|
|
'geographic' => ' |
44
|
|
|
|
|
|
|
1(?: |
45
|
|
|
|
|
|
|
5\\d| |
46
|
|
|
|
|
|
|
8[35-7] |
47
|
|
|
|
|
|
|
)\\d{6} |
48
|
|
|
|
|
|
|
', |
49
|
|
|
|
|
|
|
'mobile' => ' |
50
|
|
|
|
|
|
|
(?: |
51
|
|
|
|
|
|
|
1[0-2]| |
52
|
|
|
|
|
|
|
9[0-3569] |
53
|
|
|
|
|
|
|
)\\d{7} |
54
|
|
|
|
|
|
|
', |
55
|
|
|
|
|
|
|
'pager' => '', |
56
|
|
|
|
|
|
|
'personal_number' => '', |
57
|
|
|
|
|
|
|
'specialrate' => '', |
58
|
|
|
|
|
|
|
'toll_free' => '', |
59
|
|
|
|
|
|
|
'voip' => '' |
60
|
|
|
|
|
|
|
}; |
61
|
|
|
|
|
|
|
my %areanames = (); |
62
|
|
|
|
|
|
|
$areanames{en} = {"249186", "Khartoum\ Rural", |
63
|
|
|
|
|
|
|
"249157", "Omdurman", |
64
|
|
|
|
|
|
|
"249153", "Khartoum", |
65
|
|
|
|
|
|
|
"249185", "Khartoum\ North", |
66
|
|
|
|
|
|
|
"249187", "Omdurman", |
67
|
|
|
|
|
|
|
"249156", "Khartoum\ Rural", |
68
|
|
|
|
|
|
|
"249155", "Khartoum\ North", |
69
|
|
|
|
|
|
|
"249183", "Khartoum",}; |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
sub new { |
72
|
7
|
|
|
7
|
1
|
25
|
my $class = shift; |
73
|
7
|
|
|
|
|
15
|
my $number = shift; |
74
|
7
|
|
|
|
|
43
|
$number =~ s/(^\+249|\D)//g; |
75
|
7
|
|
|
|
|
39
|
my $self = bless({ country_code => '249', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
76
|
7
|
100
|
|
|
|
40
|
return $self if ($self->is_valid()); |
77
|
1
|
|
|
|
|
5
|
$number =~ s/^(?:0)//; |
78
|
1
|
|
|
|
|
10
|
$self = bless({ country_code => '249', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
79
|
1
|
50
|
|
|
|
20
|
return $self->is_valid() ? $self : undef; |
80
|
|
|
|
|
|
|
} |
81
|
|
|
|
|
|
|
1; |