Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

# automatically generated file, don't edit
# Copyright 2024 David Cantrell, derived from data from libphonenumber
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
use strict;
use utf8;
our $VERSION = 1.20250323211834;
my $formatters = [
{
'format' => '$1 $2',
'leading_digits' => '80',
'national_rule' => '(0$1)',
'pattern' => '(\\d{3})(\\d{5})'
},
{
'format' => '$1 $2',
'leading_digits' => '1',
'national_rule' => '(0$1)',
'pattern' => '(\\d)(\\d{7})'
},
{
'format' => '$1 $2',
'leading_digits' => '[4-8]',
'national_rule' => '(0$1)',
'pattern' => '(\\d{2})(\\d{6})'
},
{
'format' => '$1 $2 $3',
'leading_digits' => '9',
'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
}
];
my $validators = {
'fixed_line' => '
(?:
(?:
(?:
4[34]|
5[14]
)[0-8]|
687
)\\d|
7(?:
173|
(?:
3[0-8]|
55
)\\d
)|
8(?:
10[05689]|
6(?:
0[06-9]|
1[6-9]|
29
)|
7(?:
0[0569]|
[56]0
)
)
)\\d{4}|
(?:
1[0-8]|
4[12]|
5[236]|
6[1-7]|
7[246]|
8[2-4]
)\\d{6}
',
'geographic' => '
(?:
(?:
(?:
4[34]|
5[14]
)[0-8]|
687
)\\d|
7(?:
173|
(?:
3[0-8]|
55
)\\d
)|
8(?:
10[05689]|
6(?:
0[06-9]|
1[6-9]|
29
)|
7(?:
0[0569]|
[56]0
)
)
)\\d{4}|
(?:
1[0-8]|
4[12]|
5[236]|
6[1-7]|
7[246]|
8[2-4]
)\\d{6}
',
'mobile' => '9\\d{8}',
'pager' => '',
'personal_number' => '80[24]\\d{5}',
'specialrate' => '(801\\d{5})|(805\\d{5})',
'toll_free' => '800\\d{5}',
'voip' => ''
};
my %areanames = ();
$areanames{en} = {"5164", "Junín",
"5165", "Loreto",
"5176", "Cajamarca",
"5142", "San\ Martín",
"5143", "Ancash",
"5151", "Puno",
"5161", "Ucayali",
"5183", "Apurímac",
"5182", "Madre\ de\ Dios",
"5173", "Piura",
"5154", "Arequipa",
"5172", "Tumbes",
"5144", "La\ Libertad",
"5168", "Lima",
"5156", "Ica",
"5167", "Huancavelica",
"5163", "Pasco",
"511", "Lima\/Callao",
"5162", "Huánuco",
"5174", "Lambayeque",
"5152", "Tacna",
"5153", "Moquegua",
"5175", "Lima",
"5141", "Amazonas",
"5184", "Cusco",
"5166", "Ayacucho",};
my $timezones = {
'' => [
'America/Lima'
]
};
sub new {
my $class = shift;
my $number = shift;
$number =~ s/(^\+51|\D)//g;
my $self = bless({ country_code => '51', number => $number, formatters => $formatters, validators => $validators, timezones => $timezones, areanames => \%areanames}, $class);
return $self if ($self->is_valid());
$number =~ s/^(?:0)//;
$self = bless({ country_code => '51', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
return $self->is_valid() ? $self : undef;
}
1;