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::IL;
use base qw(Number::Phone::StubCountry);

use strict;
use warnings;
use utf8;
our $VERSION = 1.20150720205434;

my $formatters = [{'pattern' => '([2-489])(\\d{3})(\\d{4})','leading_digits' => '[2-489]'},{'leading_digits' => '[57]','pattern' => '([57]\\d)(\\d{3})(\\d{4})'},{'leading_digits' => '1[7-9]','pattern' => '(1)([7-9]\\d{2})(\\d{3})(\\d{3})'},{'leading_digits' => '125','pattern' => '(1255)(\\d{3})'},{'leading_digits' => '120','pattern' => '(1200)(\\d{3})(\\d{3})'},{'pattern' => '(1212)(\\d{2})(\\d{2})','leading_digits' => '121'},{'leading_digits' => '15','pattern' => '(1599)(\\d{6})'},{'pattern' => '(\\d{4})','leading_digits' => '[2-689]'}];
my $validators = {'voip' => '7(?:18\\d|2[23]\\d|3[237]\\d|47\\d|6(?:5\\d|8[0168])|7\\d{2}|8(?:2\\d|33|55|77|81)|99\\d)\\d{5}','mobile' => '5(?:[02-47-9]\\d{2}|5(?:01|2[23]|3[34]|4[45]|5[5689]|6[67]|7[0178]|[89][6-9])|6[2-9]\\d)\\d{5}','special_rate' => '(1700\\d{6})|(1(?:212|(?:9(?:0[01]|19)|200)\\d{2})\\d{4})|([2-689]\\d{3}|1599\\d{6})','personal_number' => '','pager' => '','fixed_line' => '[2-489]\\d{7}','toll_free' => '1(?:80[019]\\d{3}|255)\\d{3}','geographic' => '[2-489]\\d{7}'};
sub new {
  my $class = shift;
  my $number = shift;
  $number =~ s/(^\+972|\D)//g;
  my $self = bless({ number => $number, formatters => $formatters, validators => $validators }, $class);
  return $self if ($self->is_valid());
  $number =~ s/(^0)//g;
  $self = bless({ number => $number, formatters => $formatters, validators => $validators }, $class);
  return $self->is_valid() ? $self : undef;
}

1;