The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# automatically generated file, don't edit



# Copyright 2011 David Cantrell, derived from data from libphonenumber
# http://code.google.com/p/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
# 
#     http://www.apache.org/licenses/LICENSE-2.0
# 
# 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.
package Number::Phone::StubCountry::CL;
use base qw(Number::Phone::StubCountry);
  
use strict;
use warnings;
our $VERSION = 1.20140904220736;

my $formatters = [{'leading_digits' => '22','pattern' => '(\\d)(\\d{4})(\\d{4})'},{'leading_digits' => '[357]|4[1-35]|6[13-57]','pattern' => '(\\d{2})(\\d{3})(\\d{4})'},{'leading_digits' => '9','pattern' => '(9)([5-9]\\d{3})(\\d{4})'},{'leading_digits' => '44','pattern' => '(44)(\\d{3})(\\d{4})'},{'leading_digits' => '60|8','pattern' => '([68]00)(\\d{3})(\\d{3,4})'},{'pattern' => '(600)(\\d{3})(\\d{2})(\\d{3})','leading_digits' => '60'},{'pattern' => '(1230)(\\d{3})(\\d{4})','leading_digits' => '1'},{'leading_digits' => '219','pattern' => '(\\d{5})(\\d{4})'},{'pattern' => '(\\d{4,5})','leading_digits' => '[1-9]'}];
my $validators = {'special_rate' => '(600\\d{7,8})|()|()','geographic' => '2(?:2\\d{7}|1962\\d{4})|(?:3[2-5]|[47][1-35]|5[1-3578]|6[13-57])\\d{7}','personal_number' => '','toll_free' => '800\\d{6}|1230\\d{7}','fixed_line' => '2(?:2\\d{7}|1962\\d{4})|(?:3[2-5]|[47][1-35]|5[1-3578]|6[13-57])\\d{7}','mobile' => '9[5-9]\\d{7}','pager' => '','voip' => '44\\d{7}'};sub areaname { my $self = shift; my $number = $self->{number}; my %map = (5622 => "Santiago\,\ Metropolitan\ Region",5632 => "Valpara\Ã\­so",5633 => "Quillota\,\ Valpara\Ã\­so",5634 => "San\ Felipe\,\ Valpara\Ã\­so",5635 => "San\ Antonio\,\ Valpara\Ã\­so",5641 => "Concepci\Ã\³n\,\ Biob\Ã\­o",5642 => "Chill\Ã\¡n\,\ Biob\Ã\­o",5643 => "Los\ Angeles\,\ Biob\Ã\­o",5645 => "Temuco\,\ Araucan\Ã\­a",5651 => "La\ Serena\,\ Coquimbo",5652 => "Copiap\Ã\³\,\ Atacama",5653 => "Ovalle\,\ Coquimbo",5655 => "Antofagasta",5657 => "Iquique\,\ Tarapac\Ã\¡",5658 => "Arica\,\ Arica\ and\ Parinacota",5661 => "Punta\ Arenas\,\ Magallanes\ and\ Ant\Ã\¡rtica\ Chilena",5663 => "Valdivia\,\ Los\ R\Ã\­os",5664 => "Osorno\,\ Los\ Lagos",5665 => "Puerto\ Montt\,\ Los\ Lagos",5667 => "Coyhaique\,\ Ais\Ã\©n",5671 => "Talca\,\ Maule",5672 => "Rancagua\,\ O\'Higgins",5673 => "Linares\,\ Maule",5675 => "Curic\Ã\³\,\ Maule",);
      foreach my $prefix (map { substr($number, 0, $_) } reverse(1..length($number))) {
        return $map{"56$prefix"} if exists($map{"56$prefix"});
      }
      return undef;
    }
sub new {
  my $class = shift;
  my $number = shift;
  $number =~ s/(^\+56|\D)//g;
  $number =~ s/(^0)//g;
  my $self = bless({ number => $number, formatters => $formatters, validators => $validators }, $class);
  return $self->is_valid() ? $self : undef;
}

1;