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::AC; |
20
|
2
|
|
|
2
|
|
1153
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
238
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
22
|
use strict; |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
49
|
|
23
|
2
|
|
|
2
|
|
12
|
use warnings; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
60
|
|
24
|
2
|
|
|
2
|
|
14
|
use utf8; |
|
2
|
|
|
|
|
10
|
|
|
2
|
|
|
|
|
14
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230903131440; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = []; |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
my $validators = { |
30
|
|
|
|
|
|
|
'fixed_line' => '6[2-467]\\d{3}', |
31
|
|
|
|
|
|
|
'geographic' => '6[2-467]\\d{3}', |
32
|
|
|
|
|
|
|
'mobile' => '4\\d{4}', |
33
|
|
|
|
|
|
|
'pager' => '', |
34
|
|
|
|
|
|
|
'personal_number' => '', |
35
|
|
|
|
|
|
|
'specialrate' => '( |
36
|
|
|
|
|
|
|
(?: |
37
|
|
|
|
|
|
|
0[1-9]| |
38
|
|
|
|
|
|
|
[1589]\\d |
39
|
|
|
|
|
|
|
)\\d{4} |
40
|
|
|
|
|
|
|
)', |
41
|
|
|
|
|
|
|
'toll_free' => '', |
42
|
|
|
|
|
|
|
'voip' => '' |
43
|
|
|
|
|
|
|
}; |
44
|
|
|
|
|
|
|
my %areanames = (); |
45
|
|
|
|
|
|
|
$areanames{en} = {"24767", "Georgetown", |
46
|
|
|
|
|
|
|
"24764", "Two\ Boats", |
47
|
|
|
|
|
|
|
"24762", "US\ Base", |
48
|
|
|
|
|
|
|
"24766", "Georgetown", |
49
|
|
|
|
|
|
|
"24763", "Travellers\ Hill\ \&\ Airhead",}; |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
sub new { |
52
|
10
|
|
|
10
|
1
|
25
|
my $class = shift; |
53
|
10
|
|
|
|
|
17
|
my $number = shift; |
54
|
10
|
|
|
|
|
58
|
$number =~ s/(^\+247|\D)//g; |
55
|
10
|
|
|
|
|
53
|
my $self = bless({ country_code => '247', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
56
|
10
|
100
|
|
|
|
50
|
return $self->is_valid() ? $self : undef; |
57
|
|
|
|
|
|
|
} |
58
|
|
|
|
|
|
|
1; |