The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 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.20250323211828;
my $formatters = [
{
'format' => '$1 $2 $3',
'leading_digits' => '
19|
[2-9]
',
'pattern' => '(\\d{2})(\\d{2})(\\d{2})'
}
];
my $validators = {
'fixed_line' => '
(?:
19|
3[1-7]|
[68][1-9]|
70|
9\\d
)\\d{4}
',
'geographic' => '
(?:
19|
3[1-7]|
[68][1-9]|
70|
9\\d
)\\d{4}
',
'mobile' => '[245]\\d{5}',
'pager' => '',
'personal_number' => '',
'specialrate' => '',
'toll_free' => '80\\d{4}',
'voip' => '3[89]\\d{4}'
};
my %areanames = ();
$areanames{en} = {"29934", "Nuuk",
"29933", "Nuuk",
"29935", "Nuuk",
"29999", "Ittoqqortoormiit",
"29989", "Aasiaat",
"29961", "Nanortalik",
"29985", "Sisimiut",
"29995", "Uummannaq",
"29984", "Kangerlussuaq",
"29994", "Ilulissat",
"29964", "Qaqortoq",
"29931", "Nuuk",
"29992", "Qeqertasuaq",
"29981", "Maniitsoq",
"29991", "Qasigannguit",
"29932", "Nuuk",
"29937", "Nuuk",
"29936", "Nuuk",
"29996", "Upernavik",
"29986", "Sisimiut",
"29987", "Kangaatsiaq",
"29997", "Qaanaaq",
"29998", "Tasiilaq",
"29968", "Paamiut",
"299691", "Ivittuut",
"29966", "Narsaq",};
my $timezones = {
'' => [
'America/Godthab',
'America/Scoresbysund',
'America/Thule'
],
'1' => [
'America/Godthab'
],
'2' => [
'America/Godthab'
],
'3' => [
'America/Godthab'
],
'4' => [
'America/Godthab'
],
'5' => [
'America/Godthab'
],
'6' => [
'America/Godthab'
],
'8' => [
'America/Godthab'
],
'9' => [
'America/Godthab'
],
'97' => [
'America/Thule'
],
'99' => [
'America/Scoresbysund'
]
};
sub new {
my $class = shift;
my $number = shift;
$number =~ s/(^\+299|\D)//g;
my $self = bless({ country_code => '299', number => $number, formatters => $formatters, validators => $validators, timezones => $timezones, areanames => \%areanames}, $class);
return $self->is_valid() ? $self : undef;
}
1;