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::TL; |
20
|
2
|
|
|
2
|
|
1464
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
252
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
35
|
use strict; |
|
2
|
|
|
|
|
13
|
|
|
2
|
|
|
|
|
69
|
|
23
|
2
|
|
|
2
|
|
24
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
71
|
|
24
|
2
|
|
|
2
|
|
15
|
use utf8; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
19
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230307181422; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2', |
30
|
|
|
|
|
|
|
'leading_digits' => ' |
31
|
|
|
|
|
|
|
[2-489]| |
32
|
|
|
|
|
|
|
70 |
33
|
|
|
|
|
|
|
', |
34
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{4})' |
35
|
|
|
|
|
|
|
}, |
36
|
|
|
|
|
|
|
{ |
37
|
|
|
|
|
|
|
'format' => '$1 $2', |
38
|
|
|
|
|
|
|
'leading_digits' => '7', |
39
|
|
|
|
|
|
|
'pattern' => '(\\d{4})(\\d{4})' |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
]; |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
my $validators = { |
44
|
|
|
|
|
|
|
'fixed_line' => ' |
45
|
|
|
|
|
|
|
(?: |
46
|
|
|
|
|
|
|
2[1-5]| |
47
|
|
|
|
|
|
|
3[1-9]| |
48
|
|
|
|
|
|
|
4[1-4] |
49
|
|
|
|
|
|
|
)\\d{5} |
50
|
|
|
|
|
|
|
', |
51
|
|
|
|
|
|
|
'geographic' => ' |
52
|
|
|
|
|
|
|
(?: |
53
|
|
|
|
|
|
|
2[1-5]| |
54
|
|
|
|
|
|
|
3[1-9]| |
55
|
|
|
|
|
|
|
4[1-4] |
56
|
|
|
|
|
|
|
)\\d{5} |
57
|
|
|
|
|
|
|
', |
58
|
|
|
|
|
|
|
'mobile' => '7[2-8]\\d{6}', |
59
|
|
|
|
|
|
|
'pager' => '', |
60
|
|
|
|
|
|
|
'personal_number' => '70\\d{5}', |
61
|
|
|
|
|
|
|
'specialrate' => '(90\\d{5})', |
62
|
|
|
|
|
|
|
'toll_free' => '80\\d{5}', |
63
|
|
|
|
|
|
|
'voip' => '' |
64
|
|
|
|
|
|
|
}; |
65
|
|
|
|
|
|
|
my %areanames = (); |
66
|
|
|
|
|
|
|
$areanames{en} = {"67038", "Ermera", |
67
|
|
|
|
|
|
|
"67031", "Dili", |
68
|
|
|
|
|
|
|
"67032", "Dili", |
69
|
|
|
|
|
|
|
"67044", "Lautem", |
70
|
|
|
|
|
|
|
"67023", "Bobonaro", |
71
|
|
|
|
|
|
|
"67039", "Oekusi", |
72
|
|
|
|
|
|
|
"67042", "Manatuto", |
73
|
|
|
|
|
|
|
"67041", "Baucau", |
74
|
|
|
|
|
|
|
"67033", "Dili", |
75
|
|
|
|
|
|
|
"67037", "Aileu", |
76
|
|
|
|
|
|
|
"67021", "Manufahi", |
77
|
|
|
|
|
|
|
"67022", "Cova\ Lima", |
78
|
|
|
|
|
|
|
"67036", "Liquica", |
79
|
|
|
|
|
|
|
"67043", "Viqueque", |
80
|
|
|
|
|
|
|
"67024", "Ainaro", |
81
|
|
|
|
|
|
|
"67025", "Dekuse",}; |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
sub new { |
84
|
16
|
|
|
16
|
1
|
38
|
my $class = shift; |
85
|
16
|
|
|
|
|
29
|
my $number = shift; |
86
|
16
|
|
|
|
|
113
|
$number =~ s/(^\+670|\D)//g; |
87
|
16
|
|
|
|
|
87
|
my $self = bless({ country_code => '670', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
88
|
16
|
100
|
|
|
|
86
|
return $self->is_valid() ? $self : undef; |
89
|
|
|
|
|
|
|
} |
90
|
|
|
|
|
|
|
1; |