1<?php
2
3/**
4 * @see       https://github.com/laminas/laminas-i18n for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-i18n/blob/master/COPYRIGHT.md
6 * @license   https://github.com/laminas/laminas-i18n/blob/master/LICENSE.md New BSD License
7 */
8
9return [
10    'code' => '372',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:1\\d{3,4}|[3-9]\\d{6,7}|800\\d{6,7})$/',
14            'fixed' => '/^(?:3[23589]|4(?:0\\d|[3-8])|6\\d|7[1-9]|88)\\d{5}$/',
15            'mobile' => '/^(?:(?:5\\d|8[1-5])\\d{6}|5(?:[02]\\d{2}|1(?:[0-8]\\d|95)|5[0-478]\\d|64[0-4]|65[1-589])\\d{3})$/',
16            'tollfree' => '/^800(?:0\\d{3}|1\\d|[2-9])\\d{3}$/',
17            'premium' => '/^900\\d{4}$/',
18            'personal' => '/^70[0-2]\\d{5}$/',
19            'uan' => '/^1(?:2[01245]|3[0-6]|4[1-489]|5[0-59]|6[1-46-9]|7[0-27-9]|8[189]|9[012])\\d{1,2}$/',
20            'shortcode' => '/^1(?:1[13-9]|[2-9]\\d)$/',
21            'emergency' => '/^11[02]$/',
22        ],
23        'possible' => [
24            'general' => '/^\\d{4,10}$/',
25            'fixed' => '/^\\d{7,8}$/',
26            'mobile' => '/^\\d{7,8}$/',
27            'tollfree' => '/^\\d{7,10}$/',
28            'premium' => '/^\\d{7}$/',
29            'personal' => '/^\\d{8}$/',
30            'uan' => '/^\\d{4,5}$/',
31            'shortcode' => '/^\\d{3}$/',
32            'emergency' => '/^\\d{3}$/',
33        ],
34    ],
35];
36