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::SV; |
20
|
2
|
|
|
2
|
|
1162
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
10
|
|
|
2
|
|
|
|
|
234
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
30
|
use strict; |
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
49
|
|
23
|
2
|
|
|
2
|
|
15
|
use warnings; |
|
2
|
|
|
|
|
10
|
|
|
2
|
|
|
|
|
65
|
|
24
|
2
|
|
|
2
|
|
16
|
use utf8; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
12
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230307181422; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2', |
30
|
|
|
|
|
|
|
'leading_digits' => '[89]', |
31
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{4})' |
32
|
|
|
|
|
|
|
}, |
33
|
|
|
|
|
|
|
{ |
34
|
|
|
|
|
|
|
'format' => '$1 $2', |
35
|
|
|
|
|
|
|
'leading_digits' => '[267]', |
36
|
|
|
|
|
|
|
'pattern' => '(\\d{4})(\\d{4})' |
37
|
|
|
|
|
|
|
}, |
38
|
|
|
|
|
|
|
{ |
39
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
40
|
|
|
|
|
|
|
'leading_digits' => '[89]', |
41
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{4})(\\d{4})' |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
]; |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
my $validators = { |
46
|
|
|
|
|
|
|
'fixed_line' => ' |
47
|
|
|
|
|
|
|
2(?: |
48
|
|
|
|
|
|
|
[1-6]\\d{3}| |
49
|
|
|
|
|
|
|
[79]90[034]| |
50
|
|
|
|
|
|
|
890[0245] |
51
|
|
|
|
|
|
|
)\\d{3} |
52
|
|
|
|
|
|
|
', |
53
|
|
|
|
|
|
|
'geographic' => ' |
54
|
|
|
|
|
|
|
2(?: |
55
|
|
|
|
|
|
|
[1-6]\\d{3}| |
56
|
|
|
|
|
|
|
[79]90[034]| |
57
|
|
|
|
|
|
|
890[0245] |
58
|
|
|
|
|
|
|
)\\d{3} |
59
|
|
|
|
|
|
|
', |
60
|
|
|
|
|
|
|
'mobile' => ' |
61
|
|
|
|
|
|
|
66(?: |
62
|
|
|
|
|
|
|
[02-9]\\d\\d| |
63
|
|
|
|
|
|
|
1(?: |
64
|
|
|
|
|
|
|
[02-9]\\d| |
65
|
|
|
|
|
|
|
16 |
66
|
|
|
|
|
|
|
) |
67
|
|
|
|
|
|
|
)\\d{3}| |
68
|
|
|
|
|
|
|
(?: |
69
|
|
|
|
|
|
|
6[0-57-9]| |
70
|
|
|
|
|
|
|
7\\d |
71
|
|
|
|
|
|
|
)\\d{6} |
72
|
|
|
|
|
|
|
', |
73
|
|
|
|
|
|
|
'pager' => '', |
74
|
|
|
|
|
|
|
'personal_number' => '', |
75
|
|
|
|
|
|
|
'specialrate' => '( |
76
|
|
|
|
|
|
|
900\\d{4}(?: |
77
|
|
|
|
|
|
|
\\d{4} |
78
|
|
|
|
|
|
|
)? |
79
|
|
|
|
|
|
|
)', |
80
|
|
|
|
|
|
|
'toll_free' => ' |
81
|
|
|
|
|
|
|
800\\d{4}(?: |
82
|
|
|
|
|
|
|
\\d{4} |
83
|
|
|
|
|
|
|
)? |
84
|
|
|
|
|
|
|
', |
85
|
|
|
|
|
|
|
'voip' => '' |
86
|
|
|
|
|
|
|
}; |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
sub new { |
89
|
13
|
|
|
13
|
1
|
33
|
my $class = shift; |
90
|
13
|
|
|
|
|
23
|
my $number = shift; |
91
|
13
|
|
|
|
|
86
|
$number =~ s/(^\+503|\D)//g; |
92
|
13
|
|
|
|
|
71
|
my $self = bless({ country_code => '503', number => $number, formatters => $formatters, validators => $validators, }, $class); |
93
|
13
|
100
|
|
|
|
65
|
return $self->is_valid() ? $self : undef; |
94
|
|
|
|
|
|
|
} |
95
|
|
|
|
|
|
|
1; |