|
4352 | 4352 | <leadingDigits>[48]00</leadingDigits> |
4353 | 4353 | <format>$1 $2 $3</format> |
4354 | 4354 | </numberFormat> |
| 4355 | + <!-- 95xxx shared cost numbers. Without this rule, the numbers will be formatted |
| 4356 | + incorrectly by the AsYouTypeFormatter because they overlap with area code 095x. |
| 4357 | + Note although ITU says the format is more like 95 xxx, in reality no space is used |
| 4358 | + when writing such numbers in China --> |
| 4359 | + <numberFormat pattern="(\d{5})"> |
| 4360 | + <leadingDigits>95</leadingDigits> |
| 4361 | + <format>$1</format> |
| 4362 | + </numberFormat> |
4355 | 4363 | <!-- Local numbers --> |
4356 | 4364 | <!-- Chinese fixed-line numbers can be dialed from a cell phone without area code and they |
4357 | 4365 | can be 7 to 8 digits. This rule is here to make formatting work with such numbers, as |
|
4496 | 4504 | </availableFormats> |
4497 | 4505 | <generalDesc> |
4498 | 4506 | <nationalNumberPattern> |
4499 | | - [1-79]\d{7,11}| |
4500 | | - 8[0-357-9]\d{6,9} |
| 4507 | + [1-7]\d{7,11}| |
| 4508 | + 8[0-357-9]\d{6,9}| |
| 4509 | + 9(?: |
| 4510 | + 5\d{3}| |
| 4511 | + \d{9} |
| 4512 | + ) |
4501 | 4513 | </nationalNumberPattern> |
4502 | 4514 | <possibleNumberPattern>\d{4,12}</possibleNumberPattern> |
4503 | 4515 | </generalDesc> |
4504 | 4516 | <noInternationalDialling> |
| 4517 | + <!-- 95xxx numbers have been verified to be unreachable from overseas by placing actual |
| 4518 | + calls. --> |
4505 | 4519 | <nationalNumberPattern> |
4506 | 4520 | (?: |
4507 | 4521 | 4| |
4508 | 4522 | (?: |
4509 | 4523 | 10 |
4510 | 4524 | )?8 |
4511 | | - )00\d{7} |
| 4525 | + )00\d{7}| |
| 4526 | + 95\d{3} |
4512 | 4527 | </nationalNumberPattern> |
4513 | | - <possibleNumberPattern>\d{10,12}</possibleNumberPattern> |
| 4528 | + <possibleNumberPattern>\d{5,12}</possibleNumberPattern> |
4514 | 4529 | <exampleNumber>4001234567</exampleNumber> |
4515 | 4530 | </noInternationalDialling> |
4516 | 4531 | <fixedLine> |
|
4643 | 4658 | <exampleNumber>16812345</exampleNumber> |
4644 | 4659 | </premiumRate> |
4645 | 4660 | <sharedCost> |
4646 | | - <nationalNumberPattern>400\d{7}</nationalNumberPattern> |
4647 | | - <possibleNumberPattern>\d{10}</possibleNumberPattern> |
| 4661 | + <!-- 95xxx numbers are covered by the ITU doc, but the following doc contains more info: |
| 4662 | + http://baike.baidu.com/view/3269670.htm --> |
| 4663 | + <nationalNumberPattern> |
| 4664 | + 400\d{7}| |
| 4665 | + 95\d{3} |
| 4666 | + </nationalNumberPattern> |
| 4667 | + <possibleNumberPattern>\d{5}(?:\d{5})?</possibleNumberPattern> |
4648 | 4668 | <exampleNumber>4001234567</exampleNumber> |
4649 | 4669 | </sharedCost> |
4650 | 4670 | <emergency> |
|
5698 | 5718 | </territory> |
5699 | 5719 |
|
5700 | 5720 | <!-- Denmark --> |
5701 | | - <!-- http://en.itst.dk/telecom-internet-regulation/numbering-issues/numbering-lists --> |
| 5721 | + <!-- http://www.dba.erhvervsstyrelsen.dk/numbering-lists --> |
5702 | 5722 | <territory id="DK" countryCode="45" internationalPrefix="00"> |
5703 | 5723 | <availableFormats> |
5704 | 5724 | <numberFormat pattern="(\d{2})(\d{2})(\d{2})(\d{2})"> |
|
5716 | 5736 | (?: |
5717 | 5737 | [2-7]\d| |
5718 | 5738 | 8[126-9]| |
5719 | | - 9[16-9] |
| 5739 | + 9[126-9] |
5720 | 5740 | )\d{6} |
5721 | 5741 | </nationalNumberPattern> |
5722 | 5742 | <exampleNumber>32123456</exampleNumber> |
|
5726 | 5746 | (?: |
5727 | 5747 | [2-7]\d| |
5728 | 5748 | 8[126-9]| |
5729 | | - 9[16-9] |
| 5749 | + 9[126-9] |
5730 | 5750 | )\d{6} |
5731 | 5751 | </nationalNumberPattern> |
5732 | 5752 | <exampleNumber>20123456</exampleNumber> |
|
6417 | 6437 | <!-- The following sections are copied verbatim from Morocco to allow these non-geographical |
6418 | 6438 | numbers to be recognized as available from within Western Sahara. --> |
6419 | 6439 | <mobile> |
6420 | | - <!-- Prefixes 60[1-5], 62[47-9], 63[0458] and 68[01] are from numbers found online, |
| 6440 | + <!-- Prefixes 60[1-5], 62[47-9], 63[04578] and 68[01] are from numbers found online, |
6421 | 6441 | bug-reports, and information provided directly by the carriers. --> |
6422 | 6442 | <nationalNumberPattern> |
6423 | 6443 | 6(?: |
6424 | 6444 | 0[0-6]| |
6425 | 6445 | [14-7]\d| |
6426 | 6446 | 2[2-46-9]| |
6427 | | - 3[03458]| |
| 6447 | + 3[034578]| |
6428 | 6448 | 8[01]| |
6429 | 6449 | 99 |
6430 | 6450 | )\d{6} |
|
8578 | 8598 | are also allowing an extra digit for numbers beginning with 62, since Orange is |
8579 | 8599 | apparently moving their 62 and 68 ranges both to 62 and adding an extra digit. |
8580 | 8600 | Extra prefixes 24, 66 and 69 have been added for MTN Guinée, as notified by an |
8581 | | - opensource contributor and matched by numbers found online. --> |
| 8601 | + opensource contributor and matched by numbers found online. 61[0-5] is assigned to |
| 8602 | + Orange. --> |
8582 | 8603 | <nationalNumberPattern> |
8583 | 8604 | (?: |
8584 | 8605 | 24| |
|
8590 | 8611 | 3[3467]| |
8591 | 8612 | 5[2457-9] |
8592 | 8613 | )| |
| 8614 | + 1[0-5]\d| |
8593 | 8615 | 2\d{2,3}| |
8594 | 8616 | [4-9]\d{2}| |
8595 | 8617 | 3(?: |
@@ -13338,12 +13360,17 @@ |
13338 | 13360 | <!-- Adding 86 and 87 from numbers found online, along with 88 (the 88 numbers seem to be |
13339 | 13361 | one digit longer as well.) Adding 97 followed by 7 digits as such numbers have been |
13340 | 13362 | found online. Adding 14 as Mobitel have informed us they are using this prefix. Adding |
13341 | | - 60[1-9] based on information received from Beeline. --> |
| 13363 | + 60[1-9] based on information received from Beeline. 76 numbers seem now to be 9 digits |
| 13364 | + long. --> |
13342 | 13365 | <nationalNumberPattern> |
13343 | 13366 | (?: |
13344 | 13367 | (?: |
13345 | 13368 | 1\d| |
13346 | | - [67][06-9] |
| 13369 | + 6[06-9]| |
| 13370 | + 7(?: |
| 13371 | + [07-9]| |
| 13372 | + 6\d |
| 13373 | + ) |
13347 | 13374 | )[1-9]| |
13348 | 13375 | 8(?: |
13349 | 13376 | 0[89]| |
@@ -13893,15 +13920,14 @@ |
13893 | 13920 | <possibleNumberPattern>\d{7,8}</possibleNumberPattern> |
13894 | 13921 | <exampleNumber>22345678</exampleNumber> |
13895 | 13922 | </fixedLine> |
13896 | | - <!-- Note that the mobile range starting 503 is not specified in the ITU documentation, but |
13897 | | - can be found online as of Dec 2012. --> |
| 13923 | + <!-- Note that the mobile ranges starting 50[34] are not specified in the ITU documentation, |
| 13924 | + but can be found online as of Dec 2012. --> |
13898 | 13925 | <mobile> |
13899 | 13926 | <nationalNumberPattern> |
13900 | 13927 | (?: |
13901 | 13928 | 5(?: |
13902 | | - 0[0-35-9]| |
13903 | 13929 | 11| |
13904 | | - 5\d |
| 13930 | + [05]\d |
13905 | 13931 | )| |
13906 | 13932 | 6(?: |
13907 | 13933 | 0[034679]| |
@@ -15303,14 +15329,14 @@ |
15303 | 15329 | </fixedLine> |
15304 | 15330 | <!-- Also duplicated in Western Sahara, please ensure you update both. --> |
15305 | 15331 | <mobile> |
15306 | | - <!-- Prefixes 60[1-5], 62[47-9], 63[0458] and 68[01] are from numbers found online, |
| 15332 | + <!-- Prefixes 60[1-5], 62[47-9], 63[04578] and 68[01] are from numbers found online, |
15307 | 15333 | bug-reports, and information provided directly by the carriers. --> |
15308 | 15334 | <nationalNumberPattern> |
15309 | 15335 | 6(?: |
15310 | 15336 | 0[0-6]| |
15311 | 15337 | [14-7]\d| |
15312 | 15338 | 2[2-46-9]| |
15313 | | - 3[03458]| |
| 15339 | + 3[034578]| |
15314 | 15340 | 8[01]| |
15315 | 15341 | 99 |
15316 | 15342 | )\d{6} |
@@ -17157,20 +17183,23 @@ |
17157 | 17183 | <fixedLine> |
17158 | 17184 | <nationalNumberPattern> |
17159 | 17185 | (?: |
17160 | | - 3\d{2}| |
17161 | | - [4-79]\d| |
17162 | | - 8[2-9] |
| 17186 | + 3[2-9]\d| |
| 17187 | + [4-9][2-9] |
17163 | 17188 | )\d{6} |
17164 | 17189 | </nationalNumberPattern> |
17165 | 17190 | <possibleNumberPattern>\d{6,9}</possibleNumberPattern> |
17166 | | - <exampleNumber>312345678</exampleNumber> |
| 17191 | + <exampleNumber>323456789</exampleNumber> |
17167 | 17192 | </fixedLine> |
17168 | 17193 | <mobile> |
17169 | 17194 | <nationalNumberPattern> |
17170 | 17195 | 1(?: |
17171 | | - [02-46-9][2-9]| |
17172 | | - 1[12]\d |
17173 | | - )\d{6} |
| 17196 | + 1[1-3]\d{2}| |
| 17197 | + [02-4679][2-9]\d| |
| 17198 | + 8(?: |
| 17199 | + 1[23]| |
| 17200 | + [2-9]\d |
| 17201 | + ) |
| 17202 | + )\d{5} |
17174 | 17203 | </nationalNumberPattern> |
17175 | 17204 | <possibleNumberPattern>\d{9,10}</possibleNumberPattern> |
17176 | 17205 | <exampleNumber>123456789</exampleNumber> |
|
18421 | 18450 | </territory> |
18422 | 18451 |
|
18423 | 18452 | <!-- Panama --> |
18424 | | - <!-- http://www.asep.gob.pa/telecom/pnn/default.asp - last read June 6th 2012. --> |
| 18453 | + <!-- http://www.asep.gob.pa/telecom/pnn/default.asp - last read Jan 17th 2013. --> |
18425 | 18454 | <!-- http://en.wikipedia.org/wiki/%2B507 - although it omits the fact that mobile phones are 8 |
18426 | 18455 | digits long. --> |
18427 | 18456 | <territory id="PA" countryCode="507" internationalPrefix="00"> |
|
18534 | 18563 | 6(?: |
18535 | 18564 | [04-9]\d| |
18536 | 18565 | 1[0-5]| |
18537 | | - 2[0-6]| |
18538 | | - 3[6-9] |
| 18566 | + 2[0-7]| |
| 18567 | + 3[5-9] |
18539 | 18568 | )\d{5} |
18540 | 18569 | </nationalNumberPattern> |
18541 | 18570 | <exampleNumber>60012345</exampleNumber> |
|
0 commit comments