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::KE;
use base qw(Number::Phone::StubCountry);
  
use strict;
use warnings;
our $VERSION = 1.20140904220737;

my $formatters = [{'pattern' => '(\\d{2})(\\d{5,7})','leading_digits' => '[24-6]'},{'leading_digits' => '7','pattern' => '(\\d{3})(\\d{6,7})'},{'leading_digits' => '[89]','pattern' => '(\\d{3})(\\d{3})(\\d{3,4})'}];
my $validators = {'fixed_line' => '20\\d{6,7}|4(?:[0136]\\d{7}|[245]\\d{5,7})|5(?:[08]\\d{7}|[1-79]\\d{5,7})|6(?:[01457-9]\\d{5,7}|[26]\\d{7})','mobile' => '7(?:[0-3]\\d|5[0-6]|7[0-5]|8[0-25-9])\\d{6}','voip' => '','pager' => '','special_rate' => '()|(900[02-9]\\d{5})|()','geographic' => '20\\d{6,7}|4(?:[0136]\\d{7}|[245]\\d{5,7})|5(?:[08]\\d{7}|[1-79]\\d{5,7})|6(?:[01457-9]\\d{5,7}|[26]\\d{7})','personal_number' => '','toll_free' => '800[24-8]\\d{5,6}'};sub areaname { my $self = shift; my $number = $self->{number}; my %map = (25420 => "Nairobi",25440 => "Kwale",25441 => "Mombasa\/Mariakani\/Kilifi",25442 => "Malindi\/Lamu\/Garsen",25443 => "Voi\/Wundanyi\/Mwatate\/Taveta",25444 => "Machakos\/Makueni\/Mwingi\/Kitui",25445 => "Kajiado\/Ngong\/Loitokitok\/Athi\ River",25446 => "Garissa\/Hola\/Wajir\/Mandera",25450 => "Naivasha\/Narok",25451 => "Nakuru",25452 => "Kericho\/Bomet",25453 => "Eldoret\/Turbo\/Kapsabet\/Iten\/Kabarnet",25454 => "Kitale\/Moi\'s\ Bridge\/Kapenguria\/Lodwar",25455 => "Bungoma\/Busia",25456 => "Kakamega\/Mbale\/Butere\/Mumias",25457 => "Kisumu\/Siaya",25458 => "Kisii\/Kilgoris\/Oyugis\/Nyamira",25459 => "Homabay\/Migori",25460 => "Muranga\/Kerugoya",25461 => "Nyeri",25462 => "Nanyuki",25464 => "Meru\/Maua\/Chuka",25465 => "Nyahururu\/Maralal",25466 => "Kiambu\/Kikuyu",25467 => "Thika\/Ruiru",25468 => "Embu",25469 => "Marsabit\/Moyale",);
      foreach my $prefix (map { substr($number, 0, $_) } reverse(1..length($number))) {
        return $map{"254$prefix"} if exists($map{"254$prefix"});
      }
      return undef;
    }
sub new {
  my $class = shift;
  my $number = shift;
  $number =~ s/(^\+254|\D)//g;
  $number =~ s/(^0)//g;
  my $self = bless({ number => $number, formatters => $formatters, validators => $validators }, $class);
  return $self->is_valid() ? $self : undef;
}

1;