update for version 1.0.1
This commit is contained in:
34
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/Locale.php
vendored
Normal file
34
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/Locale.php
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
namespace libphonenumber\geocoding;
|
||||
|
||||
|
||||
class Locale extends \Locale
|
||||
{
|
||||
/**
|
||||
* Returns a locale from a country code that is provided.
|
||||
* @link http://stackoverflow.com/a/10375234/403165
|
||||
* @param string $country_code ISO 3166-2-alpha 2 country code
|
||||
* @param string $language_code ISO 639-1-alpha 2 language code
|
||||
* @returns string a locale, formatted like en_US, or null if not found
|
||||
*/
|
||||
public static function countryCodeToLocale($country_code, $language_code = '')
|
||||
{
|
||||
$locale = 'en-' . $country_code;
|
||||
$locale_region = locale_get_region($locale);
|
||||
$locale_language = locale_get_primary_language($locale);
|
||||
$locale_array = array(
|
||||
'language' => $locale_language,
|
||||
'region' => $locale_region
|
||||
);
|
||||
|
||||
if (strtoupper($country_code) == $locale_region && $language_code == '') {
|
||||
return locale_compose($locale_array);
|
||||
} elseif (strtoupper($country_code) == $locale_region && strtolower($language_code) == $locale_language) {
|
||||
return locale_compose($locale_array);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,215 @@
|
||||
<?php
|
||||
|
||||
namespace libphonenumber\geocoding;
|
||||
|
||||
|
||||
use libphonenumber\NumberParseException;
|
||||
use libphonenumber\PhoneNumber;
|
||||
use libphonenumber\PhoneNumberType;
|
||||
use libphonenumber\PhoneNumberUtil;
|
||||
use libphonenumber\prefixmapper\PrefixFileReader;
|
||||
|
||||
class PhoneNumberOfflineGeocoder
|
||||
{
|
||||
const MAPPING_DATA_DIRECTORY = '/data';
|
||||
/**
|
||||
* @var PhoneNumberOfflineGeocoder
|
||||
*/
|
||||
private static $instance;
|
||||
/**
|
||||
* @var PhoneNumberUtil
|
||||
*/
|
||||
private $phoneUtil;
|
||||
/**
|
||||
* @var PrefixFileReader
|
||||
*/
|
||||
private $prefixFileReader = null;
|
||||
|
||||
private function __construct($phonePrefixDataDirectory)
|
||||
{
|
||||
if(!extension_loaded('intl')) {
|
||||
throw new \RuntimeException('The intl extension must be installed');
|
||||
}
|
||||
|
||||
$this->phoneUtil = PhoneNumberUtil::getInstance();
|
||||
|
||||
$this->prefixFileReader = new PrefixFileReader(dirname(__FILE__) . $phonePrefixDataDirectory);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a PhoneNumberOfflineGeocoder instance to carry out international phone number geocoding.
|
||||
*
|
||||
* <p>The PhoneNumberOfflineGeocoder is implemented as a singleton. Therefore, calling this method
|
||||
* multiple times will only result in one instance being created.
|
||||
*
|
||||
* @param string $mappingDir (Optional) Mapping Data Directory
|
||||
* @return PhoneNumberOfflineGeocoder
|
||||
*/
|
||||
public static function getInstance($mappingDir = self::MAPPING_DATA_DIRECTORY)
|
||||
{
|
||||
if (self::$instance === null) {
|
||||
self::$instance = new self($mappingDir);
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
public static function resetInstance()
|
||||
{
|
||||
self::$instance = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* As per getDescriptionForValidNumber, but explicitly checks the validity of the number
|
||||
* passed in.
|
||||
*
|
||||
*
|
||||
* @see getDescriptionForValidNumber
|
||||
* @param PhoneNumber $number a valid phone number for which we want to get a text description
|
||||
* @param string $locale the language code for which the description should be written
|
||||
* @param string $userRegion the region code for a given user. This region will be omitted from the
|
||||
* description if the phone number comes from this region. It is a two-letter uppercase ISO
|
||||
* country code as defined by ISO 3166-1.
|
||||
* @return string a text description for the given language code for the given phone number, or empty
|
||||
* string if the number passed in is invalid
|
||||
*/
|
||||
public function getDescriptionForNumber(PhoneNumber $number, $locale, $userRegion = null)
|
||||
{
|
||||
$numberType = $this->phoneUtil->getNumberType($number);
|
||||
|
||||
if ($numberType === PhoneNumberType::UNKNOWN) {
|
||||
return "";
|
||||
} elseif (!$this->canBeGeocoded($numberType)) {
|
||||
return $this->getCountryNameForNumber($number, $locale);
|
||||
}
|
||||
|
||||
return $this->getDescriptionForValidNumber($number, $locale, $userRegion);
|
||||
}
|
||||
|
||||
/**
|
||||
* A similar method is implemented as PhoneNumberUtil.isNumberGeographical, which performs a
|
||||
* stricter check, as it determines if a number has a geographical association. Also, if new
|
||||
* phone number types were added, we should check if this other method should be updated too.
|
||||
*
|
||||
* @param int $numberType
|
||||
* @return boolean
|
||||
*/
|
||||
private function canBeGeocoded($numberType)
|
||||
{
|
||||
return ($numberType === PhoneNumberType::FIXED_LINE || $numberType === PhoneNumberType::MOBILE || $numberType === PhoneNumberType::FIXED_LINE_OR_MOBILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the customary display name in the given language for the given territory the phone
|
||||
* number is from. If it could be from many territories, nothing is returned.
|
||||
*
|
||||
* @param PhoneNumber $number
|
||||
* @param $locale
|
||||
* @return string
|
||||
*/
|
||||
private function getCountryNameForNumber(PhoneNumber $number, $locale)
|
||||
{
|
||||
$regionCodes = $this->phoneUtil->getRegionCodesForCountryCode($number->getCountryCode());
|
||||
|
||||
if (count($regionCodes) === 1) {
|
||||
return $this->getRegionDisplayName($regionCodes[0], $locale);
|
||||
} else {
|
||||
$regionWhereNumberIsValid = 'ZZ';
|
||||
foreach ($regionCodes as $regionCode) {
|
||||
if ($this->phoneUtil->isValidNumberForRegion($number, $regionCode)) {
|
||||
if ($regionWhereNumberIsValid !== 'ZZ') {
|
||||
// If we can't assign the phone number as definitely belonging to only one territory,
|
||||
// then we return nothing.
|
||||
return "";
|
||||
}
|
||||
$regionWhereNumberIsValid = $regionCode;
|
||||
}
|
||||
}
|
||||
|
||||
return $this->getRegionDisplayName($regionWhereNumberIsValid, $locale);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the customary display name in the given language for the given region.
|
||||
*
|
||||
* @param $regionCode
|
||||
* @param $locale
|
||||
* @return string
|
||||
*/
|
||||
private function getRegionDisplayName($regionCode, $locale)
|
||||
{
|
||||
if ($regionCode === null || $regionCode == 'ZZ' || $regionCode === PhoneNumberUtil::REGION_CODE_FOR_NON_GEO_ENTITY) {
|
||||
return "";
|
||||
}
|
||||
|
||||
return Locale::getDisplayRegion(
|
||||
Locale::countryCodeToLocale($regionCode),
|
||||
$locale
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a text description for the given phone number, in the language provided. The
|
||||
* description might consist of the name of the country where the phone number is from, or the
|
||||
* name of the geographical area the phone number is from if more detailed information is
|
||||
* available.
|
||||
*
|
||||
* <p>This method assumes the validity of the number passed in has already been checked, and that
|
||||
* the number is suitable for geocoding. We consider fixed-line and mobile numbers possible
|
||||
* candidates for geocoding.
|
||||
*
|
||||
* <p>If $userRegion is set, we also consider the region of the user. If the phone number is from
|
||||
* the same region as the user, only a lower-level description will be returned, if one exists.
|
||||
* Otherwise, the phone number's region will be returned, with optionally some more detailed
|
||||
* information.
|
||||
*
|
||||
* <p>For example, for a user from the region "US" (United States), we would show "Mountain View,
|
||||
* CA" for a particular number, omitting the United States from the description. For a user from
|
||||
* the United Kingdom (region "GB"), for the same number we may show "Mountain View, CA, United
|
||||
* States" or even just "United States".
|
||||
*
|
||||
* @param PhoneNumber $number a valid phone number for which we want to get a text description
|
||||
* @param string $locale the language code for which the description should be written
|
||||
* @param string $userRegion the region code for a given user. This region will be omitted from the
|
||||
* description if the phone number comes from this region. It is a two-letter uppercase ISO
|
||||
* country code as defined by ISO 3166-1.
|
||||
* @return string a text description for the given language code for the given phone number
|
||||
*/
|
||||
public function getDescriptionForValidNumber(PhoneNumber $number, $locale, $userRegion = null)
|
||||
{
|
||||
// If the user region matches the number's region, then we just show the lower-level
|
||||
// description, if one exists - if no description exists, we will show the region(country) name
|
||||
// for the number.
|
||||
$regionCode = $this->phoneUtil->getRegionCodeForNumber($number);
|
||||
if ($userRegion == null || $userRegion == $regionCode) {
|
||||
$languageStr = Locale::getPrimaryLanguage($locale);
|
||||
$scriptStr = "";
|
||||
$regionStr = Locale::getRegion($locale);
|
||||
|
||||
$mobileToken = $this->phoneUtil->getCountryMobileToken($number->getCountryCode());
|
||||
$nationalNumber = $this->phoneUtil->getNationalSignificantNumber($number);
|
||||
if ($mobileToken !== "" && (!strncmp($nationalNumber, $mobileToken, strlen($mobileToken)))) {
|
||||
// In some countries, eg. Argentina, mobile numbers have a mobile token before the national
|
||||
// destination code, this should be removed before geocoding.
|
||||
$nationalNumber = substr($nationalNumber, strlen($mobileToken));
|
||||
$region = $this->phoneUtil->getRegionCodeForCountryCode($number->getCountryCode());
|
||||
try {
|
||||
$copiedNumber = $this->phoneUtil->parse($nationalNumber, $region);
|
||||
} catch (NumberParseException $e) {
|
||||
// If this happens, just reuse what we had.
|
||||
$copiedNumber = $number;
|
||||
}
|
||||
$areaDescription = $this->prefixFileReader->getDescriptionForNumber($copiedNumber, $languageStr, $scriptStr, $regionStr);
|
||||
} else {
|
||||
$areaDescription = $this->prefixFileReader->getDescriptionForNumber($number, $languageStr, $scriptStr, $regionStr);
|
||||
}
|
||||
|
||||
return (strlen($areaDescription) > 0) ? $areaDescription : $this->getCountryNameForNumber($number, $locale);
|
||||
}
|
||||
// Otherwise, we just show the region(country) name for now.
|
||||
return $this->getRegionDisplayName($regionCode, $locale);
|
||||
// TODO: Concatenate the lower-level and country-name information in an appropriate
|
||||
// way for each language.
|
||||
}
|
||||
}
|
||||
1317
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/Map.php
vendored
Normal file
1317
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/Map.php
vendored
Normal file
File diff suppressed because it is too large
Load Diff
169
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/am/374.php
vendored
Normal file
169
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/am/374.php
vendored
Normal file
@@ -0,0 +1,169 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
37410 => 'Երևան/Ջրվեժ',
|
||||
37411 => 'Երևան',
|
||||
374222 => 'Աբովյան/Ակունք/Բյուրեղավան/Նոր Գյուղ/Վերին Պտղնի',
|
||||
3742227 => 'Գառնի',
|
||||
3742229 => 'Զովք',
|
||||
37422290 => 'Մայակովսկի',
|
||||
37422291 => 'Բալահովիտ/Կամարիս',
|
||||
37422293 => 'Արամուս',
|
||||
37422294 => 'Արզնի',
|
||||
37422296 => 'Պտղնի',
|
||||
37422297 => 'Գեղաշեն',
|
||||
37422298 => 'Առինջ',
|
||||
37422299 => 'Կոտայք',
|
||||
374223 => 'Հանքավան/Հրազդան/Ծաղկաձոր',
|
||||
37422391 => 'Լեռնանիստ',
|
||||
37422393 => 'Մեղրաձոր',
|
||||
37422394 => 'Փյունիք',
|
||||
37422397 => 'Սոլակ',
|
||||
37422398 => 'Բջնի',
|
||||
374224 => 'Քանաքեռավան/Նոր Գեղի/Նոր Հաճըն/Եղվարդ',
|
||||
37422452 => 'Զովունի',
|
||||
37422453 => 'Պռոշյան',
|
||||
37422454 => 'Արգել',
|
||||
374226 => 'Չարենցավան',
|
||||
37422672 => 'Արզական',
|
||||
37422675 => 'Ալապարս/Վարդանավանք',
|
||||
374231 => 'Վաղարշապատ/Մուսալեռ/Փարաքար/Զվարթնոց',
|
||||
37423190 => 'Բաղրամյան',
|
||||
37423191 => 'Վաչե',
|
||||
37423195 => 'Նորակերտ',
|
||||
37423198 => 'Ջրառատ',
|
||||
37423199 => 'Խորոնք',
|
||||
374232 => 'Աշտարակ/Աղձք/Կարբի/Օշական',
|
||||
37423290 => 'Օհանավան',
|
||||
37423294 => 'Բյուրական',
|
||||
374233 => 'Բաղրամյան/Լեռնագոգ',
|
||||
37423374 => 'Մյասնիկյան',
|
||||
37423375 => 'Քարակերտ',
|
||||
37423376 => 'Դալարիկ',
|
||||
374234 => 'Վեդի/Ոսկետափ/Արարատ',
|
||||
37423481 => 'Այգավան',
|
||||
37423486 => 'Ուրցաձոր',
|
||||
37423492 => 'Մարտիրոսյան',
|
||||
37423497 => 'Փոքր Վեդի',
|
||||
37423498 => 'Տափերական',
|
||||
374235 => 'Արտաշատ/Այգեզարդ/Դալար/Քաղցրաշեն/Մխչյան/Շահումյան',
|
||||
37423572 => 'Արևշատ',
|
||||
3742359 => 'Նորաշեն',
|
||||
374236 => 'Այնթապ/Մասիս/Նոր Խարբերդ/Նորաբաց',
|
||||
3742363 => 'Այնթապ',
|
||||
37423699 => 'Դաշտավան',
|
||||
374237 => 'Արաքս/Արմավիր/Հոկտեմբեր/Լենուղի/Մեծամոր/Զարթոնք',
|
||||
3742377 => 'Մրգաշատ',
|
||||
37423779 => 'Բամբակաշատ',
|
||||
3742379 => 'Նալբանդյան',
|
||||
37423794 => 'Մարգարա',
|
||||
37423796 => 'Տանձուտ',
|
||||
37423798 => 'Շենավան',
|
||||
374238 => 'Արարատ/Ավշար/Սուրենավան/Երասխ',
|
||||
374242 => 'Մարալիկ/Սառնաղբյուր',
|
||||
37424293 => 'Շիրակավան',
|
||||
37424297 => 'Անի Կայարան',
|
||||
37424300 => 'Ախուրյան/Առափի/Կամո/Մուսայելյան',
|
||||
374244 => 'Արթիկ/Պեմզաշեն',
|
||||
37424492 => 'Փանիկ',
|
||||
37424495 => 'Արևշատ',
|
||||
37424496 => 'Մեծ Մանթաշ',
|
||||
374245 => 'Աշոցք',
|
||||
374246 => 'Ամասիա',
|
||||
374249 => 'Թալին',
|
||||
37424973 => 'Կաթնաղբյուր',
|
||||
3742499 => 'Արագածավան',
|
||||
37424996 => 'Ներքին Բազմաբերդ',
|
||||
37424997 => 'Մաստարա',
|
||||
374252 => 'Ապարան',
|
||||
37425251 => 'Քուչակ',
|
||||
37425295 => 'Արտավան',
|
||||
374253 => 'Ալավերդի/Օձուն/Ծաղկաշատ/Թումանյան',
|
||||
37425352 => 'Ախթալա',
|
||||
37425353 => 'Շնող',
|
||||
37425356 => 'Ճոճկան',
|
||||
37425357 => 'Թումանյան',
|
||||
374254 => 'Տաշիր',
|
||||
3742549 => 'Մեծավան',
|
||||
374255 => 'Սպիտակ',
|
||||
374256 => 'Ստեփանավան/Բովաձոր',
|
||||
37425691 => 'Կուրթան',
|
||||
37425694 => 'Ագարակ',
|
||||
37425695 => 'Լեջան',
|
||||
374257 => 'Արագած',
|
||||
3742570 => 'Ծաղկահովիտ',
|
||||
374261 => 'Սևան',
|
||||
374262 => 'Մարտունի',
|
||||
3742625 => 'Վարդենիկ',
|
||||
37426272 => 'Լիճք',
|
||||
37426299 => 'Երանոս',
|
||||
374263 => 'Իջևան/Ազատամուտ/Գետահովիտ/Ենոքավան',
|
||||
37426374 => 'Այգեհովիտ',
|
||||
37426392 => 'Աչաջուր',
|
||||
37426397 => 'Ազատամուտ',
|
||||
374264 => 'Գավառ/Սարուխան',
|
||||
374265 => 'Ճամբարակ',
|
||||
37426596 => 'Վահան',
|
||||
374266 => 'Բերդավան/Կողբ/Նոյեմբերյան',
|
||||
3742665 => 'Կողբ',
|
||||
3742667 => 'Բերդավան',
|
||||
37426692 => 'Արճիս',
|
||||
37426693 => 'Բաղանիս',
|
||||
37426695 => 'Զորական',
|
||||
37426696 => 'Ոսկեպար',
|
||||
37426699 => 'Կոթի',
|
||||
374267 => 'Այգեպար/Բերդ',
|
||||
3742675 => 'Արծվաբերդ',
|
||||
37426791 => 'Նավուր',
|
||||
37426794 => 'Թովուզ',
|
||||
37426796 => 'Մոսեսգեղ',
|
||||
37426797 => 'Նորաշեն',
|
||||
3742680 => 'Դիլիջան',
|
||||
374269 => 'Վարդենիս',
|
||||
374281 => 'Գետափ/Սալլի/Եղեգնաձոր',
|
||||
37428151 => 'Խաչիկ',
|
||||
37428191 => 'Արփի',
|
||||
37428193 => 'Աղավնաձոր',
|
||||
37428194 => 'Արենի',
|
||||
37428195 => 'Մալիշկա',
|
||||
37428197 => 'Ելփին',
|
||||
37428198 => 'Ռինդ',
|
||||
37428199 => 'Շատին',
|
||||
374282 => 'Վայք',
|
||||
3742830 => 'Սիսիան',
|
||||
37428375 => 'Թասիկ',
|
||||
37428396 => 'Անգեղակոթ',
|
||||
374284 => 'Գորիս/Վերիշեն',
|
||||
37428427 => 'Վերիշեն',
|
||||
37428491 => 'Հարժիս',
|
||||
37428494 => 'Խնձորեսկ',
|
||||
37428495 => 'Շինուհայր',
|
||||
37428499 => 'Կոռնիձոր',
|
||||
374285 => 'Դավիթ Բեկ/Քաջարան/Կապան',
|
||||
374286 => 'Մեղրի/Ագարակ',
|
||||
37428695 => 'Շվանիձոր',
|
||||
374287 => 'Ջերմուկ',
|
||||
37428794 => 'Գնդեվազ',
|
||||
374312 => 'Գյումրի/Ախուրյան',
|
||||
374322 => 'Վանաձոր/Գուգարք',
|
||||
37432293 => 'Փամբակ',
|
||||
37432294 => 'Լեռնապատ',
|
||||
37432295 => 'Եղեգնուտ',
|
||||
37432296 => 'Մարգահովիտ',
|
||||
37432297 => 'Ձորագետ',
|
||||
37432298 => 'Լերմոնտովո',
|
||||
37432299 => 'Վահագնի',
|
||||
37447 => 'Լեռնային-Ղարաբաղ',
|
||||
374471 => 'Ստեփանակերտ',
|
||||
374474 => 'Մարտակերտ',
|
||||
374475 => 'Հարդրութ',
|
||||
374476 => 'Ասկերան',
|
||||
374477 => 'Շուշի',
|
||||
37447732 => 'Բերձոր/Քաշաթաղի շրջան',
|
||||
374478 => 'Մարտունի',
|
||||
374479 => 'Ստեփանակերտ',
|
||||
);
|
||||
24
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/ar/82.php
vendored
Normal file
24
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/ar/82.php
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
822 => 'سول',
|
||||
8231 => 'جيونجي دو',
|
||||
8232 => 'مدينة إنتشيون الكبرى',
|
||||
8233 => 'جانجون-دو',
|
||||
8241 => 'تشانجتشيونجنام دو',
|
||||
8242 => 'مدينة دايجون الكبرى',
|
||||
8243 => 'تشانجتشيونج دو',
|
||||
8251 => 'مدينة بوسان الكبرى',
|
||||
8252 => 'مدينة أولسان الكبرى',
|
||||
8253 => 'مدينة دياجو الكبرى',
|
||||
8254 => 'جيونجسانجبك دو',
|
||||
8255 => 'جيونسانجنام-دو',
|
||||
8261 => 'جولانام-دو',
|
||||
8262 => 'مدينة جوانججو الكبرى',
|
||||
8263 => 'جولابوك-دو',
|
||||
8264 => 'جيجو دو',
|
||||
);
|
||||
19
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/ar/966.php
vendored
Normal file
19
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/ar/966.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
96611 => 'الرياض/الخرج',
|
||||
96612 => 'مكة/جدة',
|
||||
96613 => 'الدمام/الخبر/الظهران',
|
||||
96614 => 'المدينة المنورة/عرعر/تبوك/ينبع البحر',
|
||||
96616 => 'حائل/القصيم',
|
||||
96617 => 'أبها/نجران/جازان',
|
||||
9662 => 'مكة/جدة',
|
||||
9663 => 'الدمام/الخبر/الظهران',
|
||||
9664 => 'المدينة المنورة/عرعر/تبوك/ينبع البحر',
|
||||
9666 => 'حائل/منطقة القصيم',
|
||||
9667 => 'أبها/نجران/جازان',
|
||||
);
|
||||
127
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/be/375.php
vendored
Normal file
127
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/be/375.php
vendored
Normal file
@@ -0,0 +1,127 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
3751511 => 'Вялікая Бераставіца, Гродзенская вобласць',
|
||||
3751512 => 'Ваўкавыск',
|
||||
3751513 => 'Свіслач, Гродзенская вобласць',
|
||||
3751514 => 'Шчучын, Гродзенская вобласць',
|
||||
3751515 => 'Масты, Гродзенская вобласць',
|
||||
375152 => 'Гродна',
|
||||
375154 => 'Ліда',
|
||||
3751562 => 'Слонім',
|
||||
3751563 => 'Дзятлава, Гродзенская вобласць',
|
||||
3751564 => 'Зэльва, Гродзенская вобласць',
|
||||
3751591 => 'Астравец, Гродзенская вобласць',
|
||||
3751592 => 'Смаргонь',
|
||||
3751593 => 'Ашмяны',
|
||||
3751594 => 'Воранава, Гродзенская вобласць',
|
||||
3751595 => 'Іўе, Гродзенская вобласць',
|
||||
3751596 => 'Карэлічы, Гродзенская вобласць',
|
||||
3751597 => 'Навагрудак',
|
||||
375162 => 'Брэст',
|
||||
375163 => 'Баранавічы',
|
||||
3751631 => 'Камянец, Брэсцкая вобласць',
|
||||
3751632 => 'Пружаны, Брэсцкая вобласць',
|
||||
3751633 => 'Ляхавічы, Брэсцкая вобласць',
|
||||
3751641 => 'Жабінка, Брэсцкая вобласць',
|
||||
3751642 => 'Кобрын',
|
||||
3751643 => 'Бяроза, Брэсцкая вобласць',
|
||||
3751644 => 'Драгічын, Брэсцкая вобласць',
|
||||
3751645 => 'Івацэвічы, Брэсцкая вобласць',
|
||||
3751646 => 'Ганцавічы, Брэсцкая вобласць',
|
||||
3751647 => 'Лунінец, Брэсцкая вобласць',
|
||||
375165 => 'Пінск',
|
||||
3751651 => 'Маларыта, Брэсцкая вобласць',
|
||||
3751652 => 'Іванава, Брэсцкая вобласць',
|
||||
3751655 => 'Столін, Брэсцкая вобласць',
|
||||
37517 => 'Мінск',
|
||||
3751713 => 'Мар’іна Горка, Мінская вобласць',
|
||||
3751714 => 'Чэрвень',
|
||||
3751715 => 'Беразіно, Мінская вобласць',
|
||||
3751716 => 'Дзяржынск',
|
||||
3751717 => 'Стаўбцы',
|
||||
3751718 => 'Узда, Мінская вобласць',
|
||||
3751719 => 'Капыль, Мінская вобласць',
|
||||
375174 => 'Салігорск',
|
||||
375176 => 'Маладзечна',
|
||||
375177 => 'Барысаў',
|
||||
3751770 => 'Нясвіж',
|
||||
3751771 => 'Вілейка',
|
||||
3751772 => 'Валожын',
|
||||
3751774 => 'Лагойск',
|
||||
3751775 => 'Жодзіна',
|
||||
3751776 => 'Смалявічы',
|
||||
3751792 => 'Старыя Дарогі, Мінская вобласць',
|
||||
3751793 => 'Клецк, Мінская вобласць',
|
||||
3751794 => 'Любань, Мінская вобласць',
|
||||
3751795 => 'Слуцк',
|
||||
3751796 => 'Крупкі, Мінская вобласць',
|
||||
3751797 => 'Мядзел',
|
||||
375212 => 'Віцебск',
|
||||
3752130 => 'Шуміліна, Віцебская вобласць',
|
||||
3752131 => 'Бешанковічы, Віцебская вобласць',
|
||||
3752132 => 'Лепель',
|
||||
3752133 => 'Чашнікі, Віцебская вобласць',
|
||||
3752135 => 'Сянно, Віцебская вобласць',
|
||||
3752136 => 'Талачын',
|
||||
3752137 => 'Дуброўна, Віцебская вобласць',
|
||||
3752138 => 'Лёзна, Віцебская вобласць',
|
||||
3752139 => 'Гарадок, Віцебская вобласць',
|
||||
375214 => 'Полацк/Наваполацк',
|
||||
3752151 => 'Верхнядзвінск, Віцебская вобласць',
|
||||
3752152 => 'Міёры, Віцебская вобласць',
|
||||
3752153 => 'Браслаў',
|
||||
3752154 => 'Шаркоўшчына, Віцебская вобласць',
|
||||
3752155 => 'Паставы',
|
||||
3752156 => 'Глыбокае',
|
||||
3752157 => 'Докшыцы, Віцебская вобласць',
|
||||
3752158 => 'Ушачы, Віцебская вобласць',
|
||||
3752159 => 'Расоны, Віцебская вобласць',
|
||||
375216 => 'Орша',
|
||||
375222 => 'Магілёў',
|
||||
3752230 => 'Глуск, Магілёўская вобласць',
|
||||
3752231 => 'Быхаў, Магілёўская вобласць',
|
||||
3752232 => 'Бялынічы, Магілёўская вобласць',
|
||||
3752233 => 'Горкі, Магілёўская вобласць',
|
||||
3752234 => 'Круглае, Магілёўская вобласць',
|
||||
3752235 => 'Асіповічы',
|
||||
3752236 => 'Клічаў, Магілёўская вобласць',
|
||||
3752237 => 'Кіраўск, Магілёўская вобласць',
|
||||
3752238 => 'Краснаполле, Магілёўская вобласць',
|
||||
3752239 => 'Шклоў',
|
||||
3752240 => 'Мсціслаў',
|
||||
3752241 => 'Крычаў, Магілёўская вобласць',
|
||||
3752242 => 'Чавусы, Магілёўская вобласць',
|
||||
3752243 => 'Чэрыкаў, Магілёўская вобласць',
|
||||
3752244 => 'Клімавічы, Магілёўская вобласць',
|
||||
3752245 => 'Касцюковічы, Магілёўская вобласць',
|
||||
3752246 => 'Слаўгарад, Магілёўская вобласць',
|
||||
3752247 => 'Хоцімск, Магілёўская вобласць',
|
||||
3752248 => 'Дрыбін, Магілёўская вобласць',
|
||||
375225 => 'Бабруйск',
|
||||
375232 => 'Гомель',
|
||||
3752330 => 'Ветка, Гомельская вобласць',
|
||||
3752332 => 'Чачэрск, Гомельская вобласць',
|
||||
3752333 => 'Добруш, Гомельская вобласць',
|
||||
3752334 => 'Жлобін',
|
||||
3752336 => 'Буда-Кашалёва, Гомельская вобласць',
|
||||
3752337 => 'Карма, Гомельская вобласць',
|
||||
3752339 => 'Рагачоў',
|
||||
3752340 => 'Рэчыца',
|
||||
3752342 => 'Светлагорск',
|
||||
3752344 => 'Брагін, Гомельская вобласць',
|
||||
3752345 => 'Калінкавічы',
|
||||
3752346 => 'Хойнікі, Гомельская вобласць',
|
||||
3752347 => 'Лоеў, Гомельская вобласць',
|
||||
3752350 => 'Петрыкаў, Гомельская вобласць',
|
||||
3752353 => 'Жыткавічы, Гомельская вобласць',
|
||||
3752354 => 'Ельск, Гомельская вобласць',
|
||||
3752355 => 'Нароўля, Гомельская вобласць',
|
||||
3752356 => 'Лельчыцы, Гомельская вобласць',
|
||||
3752357 => 'Акцябрскі, Гомельская вобласць',
|
||||
375236 => 'Мазыр',
|
||||
);
|
||||
2093
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/bg/359.php
vendored
Normal file
2093
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/bg/359.php
vendored
Normal file
File diff suppressed because it is too large
Load Diff
24
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/cs/82.php
vendored
Normal file
24
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/cs/82.php
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
822 => 'Soul',
|
||||
8231 => 'Gjŏnggi',
|
||||
8232 => 'Inčchon',
|
||||
8233 => 'Kangwon',
|
||||
8241 => 'Jižní Čchungčchong',
|
||||
8242 => 'Tedžon',
|
||||
8243 => 'Severní Čchungčchong',
|
||||
8244 => 'Sedžong',
|
||||
8251 => 'Pusan',
|
||||
8253 => 'Tegu',
|
||||
8254 => 'Severní Kjongsang',
|
||||
8255 => 'Jižní Kjongsang',
|
||||
8261 => 'Jižní Čolla',
|
||||
8262 => 'Kwangdžu',
|
||||
8263 => 'Severní Čolla',
|
||||
8264 => 'Čedžu',
|
||||
);
|
||||
23
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/32.php
vendored
Normal file
23
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/32.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
3212 => 'Tongern',
|
||||
3215 => 'Mecheln',
|
||||
3216 => 'Löwen',
|
||||
322 => 'Brüssel',
|
||||
323 => 'Antwerpen',
|
||||
3242 => 'Lüttich',
|
||||
3243 => 'Lüttich',
|
||||
3250 => 'Brügge',
|
||||
3257 => 'Ypern',
|
||||
3259 => 'Ostende',
|
||||
3263 => 'Arel',
|
||||
3265 => 'Bergen',
|
||||
3280 => 'Stablo',
|
||||
3281 => 'Namür',
|
||||
329 => 'Gent',
|
||||
);
|
||||
221
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/352.php
vendored
Normal file
221
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/352.php
vendored
Normal file
@@ -0,0 +1,221 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
35221 => 'Weicherdingen',
|
||||
35222 => 'Luxemburg',
|
||||
35223 => 'Bad Mondorf',
|
||||
35224 => 'Luxemburg',
|
||||
3522421 => 'Weicherdingen',
|
||||
3522422 => 'Luxemburg',
|
||||
3522423 => 'Bad Mondorf',
|
||||
3522425 => 'Luxemburg',
|
||||
3522427 => 'Belair, Luxemburg',
|
||||
3522428 => 'Luxemburg',
|
||||
3522429 => 'Luxemburg/Kockelscheuer',
|
||||
3522430 => 'Kanton Capellen/Kehlen',
|
||||
3522431 => 'Bartringen',
|
||||
3522432 => 'Lintgen/Kanton Mersch/Steinfort',
|
||||
3522433 => 'Walferdingen',
|
||||
3522434 => 'Rammeldingen/Senningerberg',
|
||||
3522435 => 'Sandweiler/Mutfort/Roodt-sur-Syre',
|
||||
3522436 => 'Hesperingen/Kockelscheuer/Roeser',
|
||||
3522437 => 'Leudelingen/Ehlingen/Monnerich',
|
||||
3522439 => 'Windhof/Steinfort',
|
||||
3522440 => 'Howald',
|
||||
3522442 => 'Plateau de Kirchberg',
|
||||
3522443 => 'Findel/Kirchberg',
|
||||
3522445 => 'Diedrich',
|
||||
3522447 => 'Lintgen',
|
||||
3522448 => 'Contern/Foetz',
|
||||
3522449 => 'Howald',
|
||||
3522450 => 'Bascharage/Petingen/Rodingen',
|
||||
3522451 => 'Düdelingen/Bettemburg/Livingen',
|
||||
3522452 => 'Düdelingen',
|
||||
3522453 => 'Esch-sur-Alzette',
|
||||
3522454 => 'Esch-sur-Alzette',
|
||||
3522455 => 'Esch-sur-Alzette/Monnerich',
|
||||
3522456 => 'Rümelingen',
|
||||
3522457 => 'Esch-sur-Alzette/Schifflingen',
|
||||
3522458 => 'Soleuvre/Differdingen',
|
||||
3522459 => 'Soleuvre',
|
||||
3522467 => 'Düdelingen',
|
||||
3522471 => 'Betzdorf',
|
||||
3522472 => 'Echternach',
|
||||
3522473 => 'Rosport',
|
||||
3522474 => 'Wasserbillig',
|
||||
3522475 => 'Distrikt Grevenmacher-sur-Moselle',
|
||||
3522476 => 'Wormeldingen',
|
||||
3522478 => 'Junglinster',
|
||||
3522479 => 'Berdorf/Consdorf',
|
||||
3522480 => 'Diekirch',
|
||||
3522481 => 'Ettelbrück/Reckange-sur-Mess',
|
||||
3522483 => 'Vianden',
|
||||
3522484 => 'Han/Lesse',
|
||||
3522485 => 'Bissen/Roost',
|
||||
3522487 => 'Fels',
|
||||
3522488 => 'Mertzig/Wahl',
|
||||
3522492 => 'Kanton Clerf/Fischbach/Hosingen',
|
||||
3522495 => 'Wiltz',
|
||||
3522497 => 'Huldingen',
|
||||
3522499 => 'Ulflingen',
|
||||
35225 => 'Luxemburg',
|
||||
3522621 => 'Weicherdingen',
|
||||
3522622 => 'Luxemburg',
|
||||
3522623 => 'Bad Mondorf',
|
||||
3522625 => 'Luxemburg',
|
||||
3522627 => 'Belair, Luxemburg',
|
||||
3522628 => 'Luxemburg',
|
||||
3522629 => 'Luxemburg/Kockelscheuer',
|
||||
3522630 => 'Kanton Capellen/Kehlen',
|
||||
3522631 => 'Bartringen',
|
||||
3522632 => 'Lintgen/Kanton Mersch/Steinfort',
|
||||
3522633 => 'Walferdingen',
|
||||
3522634 => 'Rammeldingen/Senningerberg',
|
||||
3522635 => 'Sandweiler/Mutfort/Roodt-sur-Syre',
|
||||
3522636 => 'Hesperingen/Kockelscheuer/Roeser',
|
||||
3522637 => 'Leudelingen/Ehlingen/Monnerich',
|
||||
3522639 => 'Windhof/Steinfort',
|
||||
3522640 => 'Howald',
|
||||
3522642 => 'Plateau de Kirchberg',
|
||||
3522643 => 'Findel/Kirchberg',
|
||||
3522645 => 'Diedrich',
|
||||
3522647 => 'Lintgen',
|
||||
3522648 => 'Contern/Foetz',
|
||||
3522649 => 'Howald',
|
||||
3522650 => 'Bascharage/Petingen/Rodingen',
|
||||
3522651 => 'Düdelingen/Bettemburg/Livingen',
|
||||
3522652 => 'Düdelingen',
|
||||
3522653 => 'Esch-sur-Alzette',
|
||||
3522654 => 'Esch-sur-Alzette',
|
||||
3522655 => 'Esch-sur-Alzette/Monnerich',
|
||||
3522656 => 'Rümelingen',
|
||||
3522657 => 'Esch-sur-Alzette/Schifflingen',
|
||||
3522658 => 'Soleuvre/Differdingen',
|
||||
3522659 => 'Soleuvre',
|
||||
3522667 => 'Düdelingen',
|
||||
3522671 => 'Betzdorf',
|
||||
3522672 => 'Echternach',
|
||||
3522673 => 'Rosport',
|
||||
3522674 => 'Wasserbillig',
|
||||
3522675 => 'Distrikt Grevenmacher-sur-Moselle',
|
||||
3522676 => 'Wormeldingen',
|
||||
3522678 => 'Junglinster',
|
||||
3522679 => 'Berdorf/Consdorf',
|
||||
3522680 => 'Diekirch',
|
||||
3522681 => 'Ettelbrück/Reckange-sur-Mess',
|
||||
3522683 => 'Vianden',
|
||||
3522684 => 'Han/Lesse',
|
||||
3522685 => 'Bissen/Roost',
|
||||
3522687 => 'Fels',
|
||||
3522688 => 'Mertzig/Wahl',
|
||||
3522692 => 'Kanton Clerf/Fischbach/Hosingen',
|
||||
3522695 => 'Wiltz',
|
||||
3522697 => 'Huldingen',
|
||||
3522699 => 'Ulflingen',
|
||||
3522721 => 'Weicherdingen',
|
||||
3522722 => 'Luxemburg',
|
||||
3522723 => 'Bad Mondorf',
|
||||
3522725 => 'Luxemburg',
|
||||
3522727 => 'Belair, Luxemburg',
|
||||
3522728 => 'Luxemburg',
|
||||
3522729 => 'Luxemburg/Kockelscheuer',
|
||||
3522730 => 'Kanton Capellen/Kehlen',
|
||||
3522731 => 'Bartringen',
|
||||
3522732 => 'Lintgen/Kanton Mersch/Steinfort',
|
||||
3522733 => 'Walferdingen',
|
||||
3522734 => 'Rammeldingen/Senningerberg',
|
||||
3522735 => 'Sandweiler/Mutfort/Roodt-sur-Syre',
|
||||
3522736 => 'Hesperingen/Kockelscheuer/Roeser',
|
||||
3522737 => 'Leudelingen/Ehlingen/Monnerich',
|
||||
3522739 => 'Windhof/Steinfort',
|
||||
3522740 => 'Howald',
|
||||
3522742 => 'Plateau de Kirchberg',
|
||||
3522743 => 'Findel/Kirchberg',
|
||||
3522745 => 'Diedrich',
|
||||
3522747 => 'Lintgen',
|
||||
3522748 => 'Contern/Foetz',
|
||||
3522749 => 'Howald',
|
||||
3522750 => 'Bascharage/Petingen/Rodingen',
|
||||
3522751 => 'Düdelingen/Bettemburg/Livingen',
|
||||
3522752 => 'Düdelingen',
|
||||
3522753 => 'Esch-sur-Alzette',
|
||||
3522754 => 'Esch-sur-Alzette',
|
||||
3522755 => 'Esch-sur-Alzette/Monnerich',
|
||||
3522756 => 'Rümelingen',
|
||||
3522757 => 'Esch-sur-Alzette/Schifflingen',
|
||||
3522758 => 'Soleuvre/Differdingen',
|
||||
3522759 => 'Soleuvre',
|
||||
3522767 => 'Düdelingen',
|
||||
3522771 => 'Betzdorf',
|
||||
3522772 => 'Echternach',
|
||||
3522773 => 'Rosport',
|
||||
3522774 => 'Wasserbillig',
|
||||
3522775 => 'Distrikt Grevenmacher-sur-Moselle',
|
||||
3522776 => 'Wormeldingen',
|
||||
3522778 => 'Junglinster',
|
||||
3522779 => 'Berdorf/Consdorf',
|
||||
3522780 => 'Diekirch',
|
||||
3522781 => 'Ettelbrück/Reckange-sur-Mess',
|
||||
3522783 => 'Vianden',
|
||||
3522784 => 'Han/Lesse',
|
||||
3522785 => 'Bissen/Roost',
|
||||
3522787 => 'Fels',
|
||||
3522788 => 'Mertzig/Wahl',
|
||||
3522792 => 'Kanton Clerf/Fischbach/Hosingen',
|
||||
3522795 => 'Wiltz',
|
||||
3522797 => 'Huldingen',
|
||||
3522799 => 'Ulflingen',
|
||||
35228 => 'Luxemburg',
|
||||
35229 => 'Luxemburg',
|
||||
35230 => 'Kanton Capellen/Kehlen',
|
||||
35231 => 'Bartringen',
|
||||
35232 => 'Kanton Mersch',
|
||||
35233 => 'Walferdingen',
|
||||
35234 => 'Rammeldingen/Senningerberg',
|
||||
35235 => 'Sandweiler/Mutfort/Roodt-sur-Syre',
|
||||
35236 => 'Hesperingen/Kockelscheuer/Roeser',
|
||||
35237 => 'Leudelingen/Ehlingen/Monnerich',
|
||||
35239 => 'Windhof/Steinfort',
|
||||
3524 => 'Luxemburg',
|
||||
35240 => 'Howald',
|
||||
35242 => 'Plateau de Kirchberg',
|
||||
35243 => 'Findel/Kirchberg',
|
||||
35245 => 'Diedrich',
|
||||
35247 => 'Lintgen',
|
||||
35248 => 'Contern/Foetz',
|
||||
35249 => 'Howald',
|
||||
35250 => 'Bascharage/Petingen/Rodingen',
|
||||
35251 => 'Düdelingen/Bettemburg/Livingen',
|
||||
35252 => 'Düdelingen',
|
||||
35253 => 'Esch-sur-Alzette',
|
||||
35254 => 'Esch-sur-Alzette',
|
||||
35255 => 'Esch-sur-Alzette/Monnerich',
|
||||
35256 => 'Rümelingen',
|
||||
35257 => 'Esch-sur-Alzette/Schifflingen',
|
||||
35258 => 'Differdingen',
|
||||
35259 => 'Soleuvre',
|
||||
35267 => 'Düdelingen',
|
||||
35271 => 'Betzdorf',
|
||||
35272 => 'Echternach',
|
||||
35273 => 'Rosport',
|
||||
35274 => 'Wasserbillig',
|
||||
35275 => 'Distrikt Grevenmacher',
|
||||
35276 => 'Wormeldingen',
|
||||
35278 => 'Junglinster',
|
||||
35279 => 'Berdorf/Consdorf',
|
||||
35280 => 'Diekirch',
|
||||
35281 => 'Ettelbrück',
|
||||
35283 => 'Vianden',
|
||||
35284 => 'Han/Lesse',
|
||||
35285 => 'Bissen/Roost',
|
||||
35287 => 'Fels',
|
||||
35288 => 'Mertzig/Wahl',
|
||||
35292 => 'Kanton Clerf/Fischbach/Hosingen',
|
||||
35295 => 'Wiltz',
|
||||
35297 => 'Huldingen',
|
||||
35299 => 'Ulflingen',
|
||||
);
|
||||
16
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/41.php
vendored
Normal file
16
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/41.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
4122 => 'Genf',
|
||||
4126 => 'Freiburg',
|
||||
4127 => 'Sitten',
|
||||
4131 => 'Bern',
|
||||
4132 => 'Biel/Neuenburg/Solothurn/Jura',
|
||||
4141 => 'Luzern',
|
||||
4143 => 'Zürich',
|
||||
4144 => 'Zürich',
|
||||
);
|
||||
123
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/43.php
vendored
Normal file
123
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/43.php
vendored
Normal file
@@ -0,0 +1,123 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
431 => 'Wien',
|
||||
432233 => 'Preßbaum',
|
||||
432242 => 'Sankt Andrä-Wördern',
|
||||
432249 => 'Groß-Enzersdorf',
|
||||
432263 => 'Großrußbach',
|
||||
432268 => 'Großmugl',
|
||||
432556 => 'Großkrut',
|
||||
432617 => 'Draßmarkt',
|
||||
432618 => 'Markt Sankt Martin',
|
||||
432629 => 'Warth, Niederösterreich',
|
||||
432642 => 'Aspangberg-Sankt Peter',
|
||||
432647 => 'Krumbach, Niederösterreich',
|
||||
432674 => 'Weißenbach an der Triesting',
|
||||
432680 => 'Sankt Margarethen im Burgenland',
|
||||
432686 => 'Draßburg',
|
||||
432715 => 'Weißenkirchen in der Wachau',
|
||||
432719 => 'Droß',
|
||||
432742 => 'Sankt Pölten',
|
||||
432756 => 'Sankt Leonhard am Forst',
|
||||
432763 => 'Sankt Veit an der Gölsen',
|
||||
432768 => 'Sankt Aegyd am Neuwalde',
|
||||
432812 => 'Groß Gerungs',
|
||||
432815 => 'Großschönau',
|
||||
432822 => 'Zwettl-Niederösterreich',
|
||||
432823 => 'Großglobnitz',
|
||||
432847 => 'Groß-Siegharts',
|
||||
432857 => 'Bad Großpertholz',
|
||||
432955 => 'Großweikersdorf',
|
||||
432987 => 'Sankt Leonhard am Hornerwald',
|
||||
433119 => 'Sankt Marein bei Graz',
|
||||
433123 => 'Sankt Oswald bei Plankenwarth',
|
||||
433140 => 'Sankt Martin am Wöllmißberg',
|
||||
433158 => 'Sankt Anna am Aigen',
|
||||
433178 => 'Sankt Ruprecht an der Raab',
|
||||
433183 => 'Sankt Georgen an der Stiefing',
|
||||
433327 => 'Sankt Michael im Burgenland',
|
||||
433331 => 'Sankt Lorenzen am Wechsel',
|
||||
433362 => 'Großpetersdorf',
|
||||
433386 => 'Großsteinbach',
|
||||
433464 => 'Groß Sankt Florian',
|
||||
433468 => 'Sankt Oswald ob Eibiswald',
|
||||
433469 => 'Sankt Oswald im Freiland',
|
||||
433477 => 'Sankt Peter am Ottersbach',
|
||||
433515 => 'Sankt Lorenzen bei Knittelfeld',
|
||||
433536 => 'Sankt Peter am Kammersberg',
|
||||
433537 => 'Sankt Georgen ob Murau',
|
||||
433575 => 'Sankt Johann am Tauern',
|
||||
433585 => 'Sankt Lambrecht',
|
||||
433632 => 'Sankt Gallen',
|
||||
433684 => 'Sankt Martin am Grimming',
|
||||
433689 => 'Sankt Nikolai im Sölktal',
|
||||
433834 => 'Wald am Schoberpaß',
|
||||
433843 => 'Sankt Michael in Obersteiermark',
|
||||
433864 => 'Sankt Marein im Mürztal',
|
||||
433868 => 'Tragöß',
|
||||
433869 => 'Sankt Katharein an der Laming',
|
||||
434212 => 'Sankt Veit an der Glan',
|
||||
434226 => 'Sankt Margareten im Rosental',
|
||||
434239 => 'Sankt Kanzian am Klopeiner See',
|
||||
434253 => 'Sankt Jakob im Rosental',
|
||||
434264 => 'Klein Sankt Paul',
|
||||
434266 => 'Straßburg',
|
||||
434283 => 'Sankt Stefan im Gailtal',
|
||||
434286 => 'Weißbriach',
|
||||
434350 => 'Bad Sankt Leonhard im Lavanttal',
|
||||
434357 => 'Sankt Paul im Lavanttal',
|
||||
434358 => 'Sankt Andrä',
|
||||
434783 => 'Reißeck',
|
||||
434785 => 'Außerfragant',
|
||||
434825 => 'Großkirchheim',
|
||||
434843 => 'Außervillgraten',
|
||||
434873 => 'Sankt Jakob in Defereggen',
|
||||
434876 => 'Kals am Großglockner',
|
||||
434877 => 'Prägraten am Großvenediger',
|
||||
434879 => 'Sankt Veit in Defereggen',
|
||||
435245 => 'Hinterriß',
|
||||
435279 => 'Sankt Jodok am Brenner',
|
||||
435352 => 'Sankt Johann in Tirol',
|
||||
435413 => 'Sankt Leonhard im Pitztal',
|
||||
435446 => 'Sankt Anton am Arlberg',
|
||||
435449 => 'Fließ',
|
||||
435557 => 'Sankt Gallenkirch',
|
||||
435678 => 'Weißenbach am Lech',
|
||||
436138 => 'Sankt Wolfgang im Salzkammergut',
|
||||
436215 => 'Straßwalchen',
|
||||
436227 => 'Sankt Gilgen',
|
||||
436241 => 'Sankt Koloman',
|
||||
436242 => 'Rußbach am Paß Gschütt',
|
||||
436247 => 'Großgmain',
|
||||
436276 => 'Nußdorf am Haunsberg',
|
||||
436277 => 'Sankt Pantaleon',
|
||||
436412 => 'Sankt Johann im Pongau',
|
||||
436414 => 'Großarl',
|
||||
436476 => 'Sankt Margarethen im Lungau',
|
||||
436477 => 'Sankt Michael im Lungau',
|
||||
436545 => 'Bruck an der Großglocknerstraße',
|
||||
436546 => 'Fusch an der Großglocknerstraße',
|
||||
436565 => 'Neukirchen am Großvenediger',
|
||||
437217 => 'Sankt Veit im Mühlkreis',
|
||||
437218 => 'Großtraberg',
|
||||
437219 => 'Vorderweißenbach',
|
||||
437224 => 'Sankt Florian',
|
||||
437232 => 'Sankt Martin im Mühlkreis',
|
||||
437237 => 'Sankt Georgen an der Gusen',
|
||||
437254 => 'Großraming',
|
||||
437435 => 'Sankt Valentin',
|
||||
437477 => 'Sankt Peter in der Au',
|
||||
437565 => 'Sankt Pankraz',
|
||||
437566 => 'Rosenau am Hengstpaß',
|
||||
437667 => 'Sankt Georgen im Attergau',
|
||||
437717 => 'Sankt Aegidi',
|
||||
437751 => 'Sankt Martin im Innkreis',
|
||||
437945 => 'Sankt Oswald bei Freistadt',
|
||||
437954 => 'Sankt Georgen am Walde',
|
||||
437956 => 'Unterweißenbach',
|
||||
);
|
||||
58
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/49.php
vendored
Normal file
58
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/de/49.php
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
492203 => 'Köln-Porz',
|
||||
49221 => 'Köln',
|
||||
492339 => 'Sprockhövel-Haßlinghausen',
|
||||
4934445 => 'Stößen',
|
||||
4934493 => 'Gößnitz Thüringen',
|
||||
4934901 => 'Roßlau Elbe',
|
||||
4935240 => 'Tauscha bei Großenhain',
|
||||
4935248 => 'Schönfeld bei Großenhain',
|
||||
4935726 => 'Groß Särchen',
|
||||
4935753 => 'Großräschen',
|
||||
4935841 => 'Großschönau Sachsen',
|
||||
4935938 => 'Großpostwitz OL',
|
||||
4935952 => 'Großröhrsdorf OL',
|
||||
4936072 => 'Weißenborn-Lüderode',
|
||||
493647 => 'Pößneck',
|
||||
4936484 => 'Knau bei Pößneck',
|
||||
4936705 => 'Oberweißbach Thüringer Wald',
|
||||
4936949 => 'Obermaßfeld-Grimmenthal',
|
||||
4938234 => 'Born Darß',
|
||||
4939883 => 'Groß Dölln',
|
||||
4939934 => 'Groß Plasten',
|
||||
4939976 => 'Groß Bützin',
|
||||
494483 => 'Ovelgönne-Großenmeer',
|
||||
494497 => 'Barßel-Harkebrügge',
|
||||
494509 => 'Groß Grönau',
|
||||
494684 => 'Langeneß Hallig',
|
||||
495053 => 'Faßberg-Müden',
|
||||
495064 => 'Groß Düngen',
|
||||
495384 => 'Seesen-Groß Rhüden',
|
||||
495827 => 'Unterlüß',
|
||||
496252 => 'Heppenheim Bergstraße',
|
||||
496321 => 'Neustadt an der Weinstraße',
|
||||
496364 => 'Nußbach Pfalz',
|
||||
496663 => 'Steinau an der Straße',
|
||||
497162 => 'Süßen',
|
||||
497351 => 'Biberach an der Riß',
|
||||
497355 => 'Hochdorf Riß',
|
||||
498170 => 'Straßlach-Dingharting',
|
||||
498367 => 'Roßhaupten Forggensee',
|
||||
498536 => 'Kößlarn',
|
||||
498633 => 'Tüßling',
|
||||
498807 => 'Dießen am Ammersee',
|
||||
4989 => 'München',
|
||||
49911 => 'Nürnberg',
|
||||
499135 => 'Heßdorf Mittelfrankenanken',
|
||||
499141 => 'Weißenburg in Bayern',
|
||||
499242 => 'Gößweinstein',
|
||||
499567 => 'Seßlach-Gemünda',
|
||||
499636 => 'Plößberg',
|
||||
499656 => 'Moosbach bei Vohenstrauß',
|
||||
);
|
||||
248
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/el/30.php
vendored
Normal file
248
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/el/30.php
vendored
Normal file
@@ -0,0 +1,248 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
3021 => 'Αθήνα/Πειραιάς/Σαλαμίνα',
|
||||
302221 => 'Χαλκίδα',
|
||||
302222 => 'Κύμη',
|
||||
302223 => 'Αλιβέρι',
|
||||
302224 => 'Κάρυστος',
|
||||
302226 => 'Αιδηψός',
|
||||
302227 => 'Μαντούδι',
|
||||
302228 => 'Ψαχνά',
|
||||
302229 => 'Ερέτρια',
|
||||
302231 => 'Λαμία',
|
||||
302232 => 'Δομοκός',
|
||||
302233 => 'Αταλάντη',
|
||||
302234 => 'Αμφίκλεια',
|
||||
302235 => 'Καμμένα Βούρλα',
|
||||
302236 => 'Μακρακώμη',
|
||||
302237 => 'Καρπενήσι',
|
||||
302238 => 'Στυλίδα',
|
||||
302241 => 'Ρόδος',
|
||||
302242 => 'Κως',
|
||||
302243 => 'Κάλυμνος',
|
||||
302244 => 'Αρχάγγελος',
|
||||
302245 => 'Κάρπαθος',
|
||||
302246 => 'Τήλος/Σύμη/Χάλκη/Μεγίστη',
|
||||
302247 => 'Λέρος',
|
||||
302251 => 'Μυτιλήνη',
|
||||
302252 => 'Αγιάσος/Πλωμάρι',
|
||||
302253 => 'Καλλονή/Μήθυμνα',
|
||||
302254 => 'Άγιος Ευστράτιος/Μούδρος/Μύρινα',
|
||||
302261 => 'Λειβαδιά',
|
||||
302262 => 'Θήβα',
|
||||
302263 => 'Βίλια',
|
||||
302264 => 'Δόμβραινα',
|
||||
302265 => 'Άμφισσα',
|
||||
302266 => 'Λιδορίκι',
|
||||
302267 => 'Δίστομο',
|
||||
302268 => 'Αλίαρτος',
|
||||
302271 => 'Χίος',
|
||||
302272 => 'Καρδάμυλα',
|
||||
302273 => 'Σάμος',
|
||||
302274 => 'Βολισσός',
|
||||
302275 => 'Άγιος Κήρυκος',
|
||||
302281 => 'Σύρος',
|
||||
302282 => 'Άνδρος',
|
||||
302283 => 'Τήνος',
|
||||
302284 => 'Πάρος',
|
||||
302285 => 'Νάξος',
|
||||
302286 => 'Θήρα',
|
||||
302287 => 'Μήλος',
|
||||
302288 => 'Κέα',
|
||||
302289 => 'Μύκονος',
|
||||
302291 => 'Λαγονήσι',
|
||||
302292 => 'Λαύριο',
|
||||
302293 => 'Άγιος Σωτήρας',
|
||||
302294 => 'Ραφήνα',
|
||||
302295 => 'Αφίδναι',
|
||||
302296 => 'Μέγαρα/Νέα Πέραμος',
|
||||
302297 => 'Αίγινα',
|
||||
302298 => 'Μέθανα/Πόρος/Σπέτσες',
|
||||
302299 => 'Μαρκόπουλο',
|
||||
30231 => 'Θεσσαλονίκη',
|
||||
302321 => 'Σέρρες',
|
||||
302322 => 'Νιγρίτα',
|
||||
302323 => 'Σιδηρόκαστρο',
|
||||
302324 => 'Νέα Ζίχνη',
|
||||
302325 => 'Ηράκλεια, Σερρών',
|
||||
302327 => 'Ροδόπολη, Σερρών',
|
||||
302331 => 'Βέροια',
|
||||
302332 => 'Νάουσα',
|
||||
302333 => 'Αλεξάνδρεια',
|
||||
302341 => 'Κιλκίς',
|
||||
302343 => 'Πολύκαστρο',
|
||||
302351 => 'Κατερίνη',
|
||||
302352 => 'Λιτόχωρο',
|
||||
302353 => 'Αιγίνιο',
|
||||
302371 => 'Πολύγυρος',
|
||||
302372 => 'Αρναία',
|
||||
302373 => 'Νέα Μουδανιά',
|
||||
302374 => 'Κασσάνδρεια',
|
||||
302375 => 'Νικήτη',
|
||||
302376 => 'Στρατώνι',
|
||||
302377 => 'Άγιον Όρος/Ιερισσός',
|
||||
302381 => 'Έδεσσα',
|
||||
302382 => 'Γιαννιτσά',
|
||||
302384 => 'Αριδαία',
|
||||
302385 => 'Φλώρινα',
|
||||
302386 => 'Αμύνταιο',
|
||||
302391 => 'Χαλκηδόνα',
|
||||
302392 => 'Περαία',
|
||||
302393 => 'Λαγκαδίκια',
|
||||
302394 => 'Λαγκαδάς',
|
||||
302395 => 'Σοχός',
|
||||
302396 => 'Βασιλικά',
|
||||
302397 => 'Ασπροβάλτα',
|
||||
302399 => 'Καλλικράτεια',
|
||||
30241 => 'Λάρισα',
|
||||
302421 => 'Βόλος',
|
||||
302422 => 'Αλμυρός',
|
||||
302423 => 'Καλά Νερά',
|
||||
302424 => 'Σκόπελος',
|
||||
302425 => 'Βελεστίνο',
|
||||
302426 => 'Ζαγορά',
|
||||
302427 => 'Σκιάθος',
|
||||
302431 => 'Τρίκαλα',
|
||||
302432 => 'Καλαμπάκα',
|
||||
302433 => 'Φαρκαδόνα',
|
||||
302434 => 'Πύλη',
|
||||
302441 => 'Καρδίτσα',
|
||||
302443 => 'Σοφάδες',
|
||||
302444 => 'Παλαμάς',
|
||||
302445 => 'Μουζάκι',
|
||||
302461 => 'Κοζάνη',
|
||||
302462 => 'Γρεβενά',
|
||||
302463 => 'Πτολεμαΐδα',
|
||||
302464 => 'Σέρβια',
|
||||
302465 => 'Σιάτιστα',
|
||||
302467 => 'Καστοριά',
|
||||
302468 => 'Νεάπολη',
|
||||
302491 => 'Φάρσαλα',
|
||||
302492 => 'Τύρναβος',
|
||||
302493 => 'Ελασσόνα',
|
||||
302494 => 'Αγιά',
|
||||
302495 => 'Γόννοι/Μακρυχώρι',
|
||||
30251 => 'Καβάλα',
|
||||
302521 => 'Δράμα',
|
||||
302522 => 'Προσοτσάνη',
|
||||
302523 => 'Κάτω Νευροκόπι',
|
||||
302524 => 'Παρανέστι',
|
||||
302531 => 'Κομοτηνή',
|
||||
302532 => 'Σάπες',
|
||||
302533 => 'Ξυλαγανή',
|
||||
302534 => 'Ίασμος',
|
||||
302535 => 'Νέα Καλλίστη',
|
||||
302541 => 'Ξάνθη',
|
||||
302542 => 'Σταυρούπολη',
|
||||
302544 => 'Εχίνος',
|
||||
302551 => 'Αλεξανδρούπολη',
|
||||
302552 => 'Ορεστιάδα',
|
||||
302553 => 'Διδυμότειχο',
|
||||
302554 => 'Σουφλί',
|
||||
302555 => 'Φέρες',
|
||||
302556 => 'Κυπρίνος',
|
||||
302591 => 'Χρυσούπολη',
|
||||
302592 => 'Ελευθερούπολη',
|
||||
302593 => 'Θάσος',
|
||||
302594 => 'Νέα Πέραμος Καβάλας',
|
||||
30261 => 'Πάτρα',
|
||||
302621 => 'Πύργος',
|
||||
302622 => 'Αμαλιάδα',
|
||||
302623 => 'Λεχαινά',
|
||||
302624 => 'Αρχαία Ολυμπία',
|
||||
302625 => 'Κρέστενα',
|
||||
302626 => 'Ανδρίτσαινα',
|
||||
302631 => 'Μεσολόγγι',
|
||||
302632 => 'Αιτωλικό',
|
||||
302634 => 'Ναύπακτος',
|
||||
302635 => 'Ματαράγκα',
|
||||
302641 => 'Αγρίνιο',
|
||||
302642 => 'Αμφιλοχία',
|
||||
302643 => 'Βόνιτσα',
|
||||
302644 => 'Θερμό',
|
||||
302645 => 'Λευκάδα',
|
||||
302647 => 'Νέο Χαλκιόπουλο/Φυτείες',
|
||||
302651 => 'Ιωάννινα',
|
||||
302653 => 'Καρυές Ασπραγγέλων',
|
||||
302655 => 'Κόνιτσα/Πέρδικα Δωδώνης',
|
||||
302656 => 'Μέτσοβο',
|
||||
302657 => 'Δελβινάκι',
|
||||
302658 => 'Ζίτσα',
|
||||
302659 => 'Καλέντζι Δωδώνης',
|
||||
302661 => 'Κέρκυρα',
|
||||
302662 => 'Λευκίμμη',
|
||||
302663 => 'Σκριπερό',
|
||||
302664 => 'Φιλιάτες',
|
||||
302665 => 'Ηγουμενίτσα',
|
||||
302666 => 'Παραμυθιά',
|
||||
302671 => 'Αργοστόλι',
|
||||
302674 => 'Σάμη',
|
||||
302681 => 'Άρτα',
|
||||
302682 => 'Πρέβεζα',
|
||||
302683 => 'Φιλιππιάδα',
|
||||
302684 => 'Καναλλάκι',
|
||||
302685 => 'Βουργαρέλι',
|
||||
302691 => 'Αίγιο',
|
||||
302692 => 'Καλάβρυτα',
|
||||
302693 => 'Κάτω Αχαΐα',
|
||||
302694 => 'Χαλανδρίτσα',
|
||||
302695 => 'Ζάκυνθος',
|
||||
302696 => 'Ακράτα',
|
||||
30271 => 'Τρίπολη',
|
||||
302721 => 'Καλαμάτα',
|
||||
302722 => 'Μεσσήνη',
|
||||
302723 => 'Πύλος',
|
||||
302724 => 'Μελιγαλάς',
|
||||
302725 => 'Κορώνη Πυλίας',
|
||||
302731 => 'Σπάρτη',
|
||||
302732 => 'Μολάοι',
|
||||
302733 => 'Γύθειο',
|
||||
302734 => 'Νεάπολη',
|
||||
302735 => 'Σκάλα',
|
||||
302736 => 'Κύθηρα',
|
||||
302741 => 'Κόρινθος',
|
||||
302742 => 'Κιάτο',
|
||||
302743 => 'Ξυλόκαστρο',
|
||||
302744 => 'Λουτράκι',
|
||||
302746 => 'Νεμέα',
|
||||
302747 => 'Καλιανοί',
|
||||
302751 => 'Άργος',
|
||||
302752 => 'Ναύπλιο',
|
||||
302753 => 'Λυγουριό',
|
||||
302754 => 'Κρανίδι',
|
||||
302755 => 'Άστρος',
|
||||
302757 => 'Λεωνίδιο',
|
||||
302761 => 'Κυπαρισσία',
|
||||
302763 => 'Γαργαλιάνοι',
|
||||
302765 => 'Κοπανάκι',
|
||||
302791 => 'Μεγαλόπολη',
|
||||
302792 => 'Καστρί Κυνουρίας',
|
||||
302795 => 'Βυτίνα',
|
||||
302796 => 'Λεβίδι',
|
||||
302797 => 'Τροπαία',
|
||||
30281 => 'Ηράκλειο',
|
||||
302821 => 'Χανιά',
|
||||
302822 => 'Κίσσαμος',
|
||||
302823 => 'Κάντανος',
|
||||
302824 => 'Κολυμβάρι',
|
||||
302825 => 'Βάμος',
|
||||
302831 => 'Ρέθυμνο',
|
||||
302832 => 'Σπήλι',
|
||||
302833 => 'Αμάρι',
|
||||
302834 => 'Πέραμα Μυλοποτάμου',
|
||||
302841 => 'Άγιος Νικόλαος',
|
||||
302842 => 'Ιεράπετρα',
|
||||
302843 => 'Σητεία',
|
||||
302844 => 'Τζερμιάδο',
|
||||
302891 => 'Αρκαλοχώρι',
|
||||
302892 => 'Μοίρες, Ηράκλειο',
|
||||
302893 => 'Πύργος, Κρήτη',
|
||||
302894 => 'Αγία Βαρβάρα, Ηράκλειο Κρήτης',
|
||||
302895 => 'Άνω Βιάννος',
|
||||
302897 => 'Λιμένας Χερσονήσου',
|
||||
);
|
||||
108
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1201.php
vendored
Normal file
108
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1201.php
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1201 => 'New Jersey',
|
||||
1201200 => 'Jersey City, NJ',
|
||||
1201216 => 'Jersey City, NJ',
|
||||
1201217 => 'Jersey City, NJ',
|
||||
1201222 => 'Jersey City, NJ',
|
||||
1201224 => 'Fort Lee, NJ',
|
||||
1201225 => 'Paramus, NJ',
|
||||
1201239 => 'Jersey City, NJ',
|
||||
1201242 => 'Fort Lee, NJ',
|
||||
1201244 => 'Bergenfield, NJ',
|
||||
1201288 => 'Hasbrouck Hts, NJ',
|
||||
1201309 => 'Jersey City, NJ',
|
||||
1201332 => 'Jersey City, NJ',
|
||||
1201333 => 'Jersey City, NJ',
|
||||
1201336 => 'Hackensack, NJ',
|
||||
1201337 => 'Oakland, NJ',
|
||||
1201339 => 'Bayonne, NJ',
|
||||
1201342 => 'Hackensack, NJ',
|
||||
1201343 => 'Hackensack, NJ',
|
||||
1201346 => 'Fort Lee, NJ',
|
||||
1201357 => 'Teaneck, NJ',
|
||||
1201360 => 'Jersey City, NJ',
|
||||
1201363 => 'Fort Lee, NJ',
|
||||
1201384 => 'Bergenfield, NJ',
|
||||
1201385 => 'Bergenfield, NJ',
|
||||
1201386 => 'Jersey City, NJ',
|
||||
1201405 => 'Oakland, NJ',
|
||||
1201418 => 'Hoboken, NJ',
|
||||
1201432 => 'Jersey City, NJ',
|
||||
1201433 => 'Jersey City, NJ',
|
||||
1201434 => 'Jersey City, NJ',
|
||||
1201435 => 'Jersey City, NJ',
|
||||
1201436 => 'Bayonne, NJ',
|
||||
1201437 => 'Bayonne, NJ',
|
||||
1201451 => 'Jersey City, NJ',
|
||||
1201457 => 'Hackensack, NJ',
|
||||
1201461 => 'Fort Lee, NJ',
|
||||
1201475 => 'Fair Lawn, NJ',
|
||||
1201487 => 'Hackensack, NJ',
|
||||
1201488 => 'Hackensack, NJ',
|
||||
1201489 => 'Hackensack, NJ',
|
||||
1201498 => 'Hackensack, NJ',
|
||||
1201512 => 'Mahwah, NJ',
|
||||
1201525 => 'Hackensack, NJ',
|
||||
1201529 => 'Mahwah, NJ',
|
||||
1201530 => 'Teaneck, NJ',
|
||||
1201547 => 'Jersey City, NJ',
|
||||
1201567 => 'Englewood, NJ',
|
||||
1201568 => 'Englewood, NJ',
|
||||
1201569 => 'Englewood, NJ',
|
||||
1201585 => 'Fort Lee, NJ',
|
||||
1201592 => 'Fort Lee, NJ',
|
||||
1201626 => 'Jersey City, NJ',
|
||||
1201631 => 'New York, NY',
|
||||
1201634 => 'Paramus, NJ',
|
||||
1201646 => 'Hackensack, NJ',
|
||||
1201653 => 'Jersey City, NJ',
|
||||
1201656 => 'Jersey City, NJ',
|
||||
1201678 => 'Hackensack, NJ',
|
||||
1201683 => 'Hoboken, NJ',
|
||||
1201692 => 'Teaneck, NJ',
|
||||
1201706 => 'Jersey City, NJ',
|
||||
1201714 => 'Jersey City, NJ',
|
||||
1201773 => 'Fair Lawn, NJ',
|
||||
1201791 => 'Fair Lawn, NJ',
|
||||
1201794 => 'Fair Lawn, NJ',
|
||||
1201795 => 'Jersey City, NJ',
|
||||
1201796 => 'Fair Lawn, NJ',
|
||||
1201797 => 'Fair Lawn, NJ',
|
||||
1201798 => 'Jersey City, NJ',
|
||||
1201823 => 'Bayonne, NJ',
|
||||
1201833 => 'Teaneck, NJ',
|
||||
1201836 => 'Teaneck, NJ',
|
||||
1201837 => 'Teaneck, NJ',
|
||||
1201848 => 'Wyckoff, NJ',
|
||||
1201854 => 'North Bergen, NJ',
|
||||
1201858 => 'Bayonne, NJ',
|
||||
1201862 => 'Teaneck, NJ',
|
||||
1201868 => 'North Bergen, NJ',
|
||||
1201869 => 'North Bergen, NJ',
|
||||
1201871 => 'Englewood, NJ',
|
||||
1201883 => 'Hackensack, NJ',
|
||||
1201886 => 'Fort Lee, NJ',
|
||||
1201891 => 'Wyckoff, NJ',
|
||||
1201894 => 'Englewood, NJ',
|
||||
1201915 => 'Jersey City, NJ',
|
||||
1201918 => 'Jersey City, NJ',
|
||||
1201928 => 'Teaneck, NJ',
|
||||
1201942 => 'Jersey City, NJ',
|
||||
1201944 => 'Fort Lee, NJ',
|
||||
1201946 => 'Jersey City, NJ',
|
||||
1201947 => 'Fort Lee, NJ',
|
||||
1201955 => 'Kearny, NJ',
|
||||
1201963 => 'Jersey City, NJ',
|
||||
1201968 => 'Hackensack, NJ',
|
||||
1201984 => 'Jersey City, NJ',
|
||||
1201991 => 'Kearny, NJ',
|
||||
1201996 => 'Hackensack, NJ',
|
||||
1201997 => 'Kearny, NJ',
|
||||
1201998 => 'Kearny, NJ',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1202.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1202.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1202 => 'Washington D.C.',
|
||||
);
|
||||
264
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1203.php
vendored
Normal file
264
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1203.php
vendored
Normal file
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1203 => 'Connecticut',
|
||||
1203202 => 'Darien, CT',
|
||||
1203208 => 'Branford, CT',
|
||||
1203210 => 'Wilton, CT',
|
||||
1203221 => 'Westport, CT',
|
||||
1203222 => 'Westport, CT',
|
||||
1203225 => 'Shelton, CT',
|
||||
1203226 => 'Westport, CT',
|
||||
1203227 => 'Westport, CT',
|
||||
1203229 => 'Norwalk, CT',
|
||||
1203230 => 'Hamden, CT',
|
||||
1203234 => 'North Haven, CT',
|
||||
1203235 => 'Meriden, CT',
|
||||
1203237 => 'Meriden, CT',
|
||||
1203238 => 'Meriden, CT',
|
||||
1203239 => 'North Haven, CT',
|
||||
1203245 => 'Madison, CT',
|
||||
1203248 => 'Hamden, CT',
|
||||
1203250 => 'Cheshire, CT',
|
||||
1203254 => 'Fairfield, CT',
|
||||
1203255 => 'Fairfield, CT',
|
||||
1203256 => 'Fairfield, CT',
|
||||
1203259 => 'Fairfield, CT',
|
||||
1203262 => 'Southbury, CT',
|
||||
1203263 => 'Woodbury, CT',
|
||||
1203264 => 'Southbury, CT',
|
||||
1203265 => 'Wallingford, CT',
|
||||
1203266 => 'Bethlehem, CT',
|
||||
1203267 => 'Southbury, CT',
|
||||
1203269 => 'Wallingford, CT',
|
||||
1203270 => 'Newtown, CT',
|
||||
1203271 => 'Cheshire, CT',
|
||||
1203272 => 'Cheshire, CT',
|
||||
1203276 => 'Stamford, CT',
|
||||
1203281 => 'Hamden, CT',
|
||||
1203283 => 'Milford, CT',
|
||||
1203284 => 'Wallingford, CT',
|
||||
1203286 => 'Norwalk, CT',
|
||||
1203287 => 'Hamden, CT',
|
||||
1203288 => 'Hamden, CT',
|
||||
1203292 => 'Fairfield, CT',
|
||||
1203294 => 'Wallingford, CT',
|
||||
1203299 => 'Norwalk, CT',
|
||||
1203301 => 'Milford, CT',
|
||||
1203304 => 'Newtown, CT',
|
||||
1203312 => 'New Fairfield, CT',
|
||||
1203315 => 'Branford, CT',
|
||||
1203316 => 'Stamford, CT',
|
||||
1203318 => 'Madison, CT',
|
||||
1203319 => 'Fairfield, CT',
|
||||
1203322 => 'Stamford, CT',
|
||||
1203323 => 'Stamford, CT',
|
||||
1203324 => 'Stamford, CT',
|
||||
1203325 => 'Stamford, CT',
|
||||
1203327 => 'Stamford, CT',
|
||||
1203329 => 'Stamford, CT',
|
||||
1203330 => 'Bridgeport, CT',
|
||||
1203331 => 'Bridgeport, CT',
|
||||
1203332 => 'Bridgeport, CT',
|
||||
1203333 => 'Bridgeport, CT',
|
||||
1203334 => 'Bridgeport, CT',
|
||||
1203335 => 'Bridgeport, CT',
|
||||
1203336 => 'Bridgeport, CT',
|
||||
1203340 => 'Greenwich, CT',
|
||||
1203341 => 'Westport, CT',
|
||||
1203345 => 'Bridgeport, CT',
|
||||
1203348 => 'Stamford, CT',
|
||||
1203353 => 'Stamford, CT',
|
||||
1203354 => 'Norwalk, CT',
|
||||
1203356 => 'Stamford, CT',
|
||||
1203357 => 'Stamford, CT',
|
||||
1203358 => 'Stamford, CT',
|
||||
1203359 => 'Stamford, CT',
|
||||
1203362 => 'Bridgeport, CT',
|
||||
1203364 => 'Newtown, CT',
|
||||
1203366 => 'Bridgeport, CT',
|
||||
1203367 => 'Bridgeport, CT',
|
||||
1203368 => 'Bridgeport, CT',
|
||||
1203371 => 'Bridgeport, CT',
|
||||
1203372 => 'Bridgeport, CT',
|
||||
1203374 => 'Bridgeport, CT',
|
||||
1203375 => 'Stratford, CT',
|
||||
1203377 => 'Stratford, CT',
|
||||
1203378 => 'Stratford, CT',
|
||||
1203380 => 'Stratford, CT',
|
||||
1203381 => 'Stratford, CT',
|
||||
1203384 => 'Bridgeport, CT',
|
||||
1203385 => 'Stratford, CT',
|
||||
1203386 => 'Stratford, CT',
|
||||
1203393 => 'Bethany, CT',
|
||||
1203405 => 'Southbury, CT',
|
||||
1203407 => 'Hamden, CT',
|
||||
1203421 => 'Madison, CT',
|
||||
1203422 => 'Greenwich, CT',
|
||||
1203426 => 'Newtown, CT',
|
||||
1203431 => 'Ridgefield, CT',
|
||||
1203432 => 'New Haven, CT',
|
||||
1203437 => 'Waterbury, CT',
|
||||
1203438 => 'Ridgefield, CT',
|
||||
1203439 => 'Cheshire, CT',
|
||||
1203440 => 'Meriden, CT',
|
||||
1203453 => 'Guilford, CT',
|
||||
1203454 => 'Westport, CT',
|
||||
1203457 => 'Guilford, CT',
|
||||
1203458 => 'Guilford, CT',
|
||||
1203466 => 'East Haven, CT',
|
||||
1203467 => 'East Haven, CT',
|
||||
1203468 => 'East Haven, CT',
|
||||
1203469 => 'East Haven, CT',
|
||||
1203481 => 'Branford, CT',
|
||||
1203483 => 'Branford, CT',
|
||||
1203488 => 'Branford, CT',
|
||||
1203498 => 'New Haven, CT',
|
||||
1203503 => 'New Haven, CT',
|
||||
1203504 => 'Stamford, CT',
|
||||
1203513 => 'Shelton, CT',
|
||||
1203527 => 'Waterbury, CT',
|
||||
1203528 => 'Waterbury, CT',
|
||||
1203531 => 'Greenwich, CT',
|
||||
1203532 => 'Greenwich, CT',
|
||||
1203557 => 'Westport, CT',
|
||||
1203562 => 'New Haven, CT',
|
||||
1203563 => 'Wilton, CT',
|
||||
1203569 => 'Stamford, CT',
|
||||
1203573 => 'Waterbury, CT',
|
||||
1203574 => 'Waterbury, CT',
|
||||
1203575 => 'Waterbury, CT',
|
||||
1203576 => 'Bridgeport, CT',
|
||||
1203579 => 'Bridgeport, CT',
|
||||
1203591 => 'Waterbury, CT',
|
||||
1203594 => 'New Canaan, CT',
|
||||
1203595 => 'Stamford, CT',
|
||||
1203596 => 'Waterbury, CT',
|
||||
1203597 => 'Waterbury, CT',
|
||||
1203598 => 'Middlebury, CT',
|
||||
1203612 => 'Bridgeport, CT',
|
||||
1203622 => 'Greenwich, CT',
|
||||
1203624 => 'New Haven, CT',
|
||||
1203625 => 'Greenwich, CT',
|
||||
1203626 => 'Wallingford, CT',
|
||||
1203629 => 'Greenwich, CT',
|
||||
1203630 => 'Meriden, CT',
|
||||
1203634 => 'Meriden, CT',
|
||||
1203639 => 'Meriden, CT',
|
||||
1203655 => 'Darien, CT',
|
||||
1203656 => 'Darien, CT',
|
||||
1203661 => 'Greenwich, CT',
|
||||
1203662 => 'Darien, CT',
|
||||
1203688 => 'New Haven, CT',
|
||||
1203694 => 'Meriden, CT',
|
||||
1203699 => 'Cheshire, CT',
|
||||
1203701 => 'Milford, CT',
|
||||
1203709 => 'Waterbury, CT',
|
||||
1203720 => 'Naugatuck, CT',
|
||||
1203723 => 'Naugatuck, CT',
|
||||
1203729 => 'Naugatuck, CT',
|
||||
1203730 => 'Danbury, CT',
|
||||
1203732 => 'Derby, CT',
|
||||
1203734 => 'Ansonia, CT',
|
||||
1203736 => 'Ansonia, CT',
|
||||
1203737 => 'New Haven, CT',
|
||||
1203739 => 'Danbury, CT',
|
||||
1203740 => 'Brookfield, CT',
|
||||
1203743 => 'Danbury, CT',
|
||||
1203744 => 'Danbury, CT',
|
||||
1203746 => 'New Fairfield, CT',
|
||||
1203748 => 'Danbury, CT',
|
||||
1203752 => 'New Haven, CT',
|
||||
1203753 => 'Waterbury, CT',
|
||||
1203754 => 'Waterbury, CT',
|
||||
1203755 => 'Waterbury, CT',
|
||||
1203756 => 'Waterbury, CT',
|
||||
1203757 => 'Waterbury, CT',
|
||||
1203758 => 'Prospect, CT',
|
||||
1203759 => 'Waterbury, CT',
|
||||
1203761 => 'Wilton, CT',
|
||||
1203762 => 'Wilton, CT',
|
||||
1203764 => 'New Haven, CT',
|
||||
1203772 => 'New Haven, CT',
|
||||
1203773 => 'New Haven, CT',
|
||||
1203775 => 'Brookfield, CT',
|
||||
1203776 => 'New Haven, CT',
|
||||
1203777 => 'New Haven, CT',
|
||||
1203778 => 'Danbury, CT',
|
||||
1203781 => 'New Haven, CT',
|
||||
1203782 => 'New Haven, CT',
|
||||
1203783 => 'Milford, CT',
|
||||
1203785 => 'New Haven, CT',
|
||||
1203787 => 'New Haven, CT',
|
||||
1203789 => 'New Haven, CT',
|
||||
1203790 => 'Danbury, CT',
|
||||
1203791 => 'Danbury, CT',
|
||||
1203792 => 'Danbury, CT',
|
||||
1203794 => 'Danbury, CT',
|
||||
1203795 => 'Orange, CT',
|
||||
1203797 => 'Danbury, CT',
|
||||
1203798 => 'Danbury, CT',
|
||||
1203799 => 'Orange, CT',
|
||||
1203801 => 'New Canaan, CT',
|
||||
1203826 => 'Danbury, CT',
|
||||
1203831 => 'Norwalk, CT',
|
||||
1203834 => 'Wilton, CT',
|
||||
1203838 => 'Norwalk, CT',
|
||||
1203840 => 'Norwalk, CT',
|
||||
1203845 => 'Norwalk, CT',
|
||||
1203846 => 'Norwalk, CT',
|
||||
1203847 => 'Norwalk, CT',
|
||||
1203849 => 'Norwalk, CT',
|
||||
1203852 => 'Norwalk, CT',
|
||||
1203853 => 'Norwalk, CT',
|
||||
1203854 => 'Norwalk, CT',
|
||||
1203855 => 'Norwalk, CT',
|
||||
1203857 => 'Norwalk, CT',
|
||||
1203861 => 'Greenwich, CT',
|
||||
1203863 => 'Greenwich, CT',
|
||||
1203865 => 'New Haven, CT',
|
||||
1203866 => 'Norwalk, CT',
|
||||
1203869 => 'Greenwich, CT',
|
||||
1203870 => 'Bridgeport, CT',
|
||||
1203874 => 'Milford, CT',
|
||||
1203876 => 'Milford, CT',
|
||||
1203877 => 'Milford, CT',
|
||||
1203878 => 'Milford, CT',
|
||||
1203879 => 'Wolcott, CT',
|
||||
1203880 => 'Monroe, CT',
|
||||
1203882 => 'Milford, CT',
|
||||
1203888 => 'Seymour, CT',
|
||||
1203891 => 'Orange, CT',
|
||||
1203894 => 'Ridgefield, CT',
|
||||
1203899 => 'Norwalk, CT',
|
||||
1203922 => 'Shelton, CT',
|
||||
1203924 => 'Shelton, CT',
|
||||
1203925 => 'Shelton, CT',
|
||||
1203926 => 'Shelton, CT',
|
||||
1203929 => 'Shelton, CT',
|
||||
1203931 => 'West Haven, CT',
|
||||
1203932 => 'West Haven, CT',
|
||||
1203933 => 'West Haven, CT',
|
||||
1203934 => 'West Haven, CT',
|
||||
1203937 => 'West Haven, CT',
|
||||
1203944 => 'Shelton, CT',
|
||||
1203946 => 'New Haven, CT',
|
||||
1203949 => 'Wallingford, CT',
|
||||
1203956 => 'Norwalk, CT',
|
||||
1203961 => 'Stamford, CT',
|
||||
1203964 => 'Stamford, CT',
|
||||
1203966 => 'New Canaan, CT',
|
||||
1203967 => 'Stamford, CT',
|
||||
1203968 => 'Stamford, CT',
|
||||
1203969 => 'Stamford, CT',
|
||||
1203972 => 'New Canaan, CT',
|
||||
1203974 => 'New Haven, CT',
|
||||
1203975 => 'Stamford, CT',
|
||||
1203977 => 'Stamford, CT',
|
||||
1203978 => 'Stamford, CT',
|
||||
1203987 => 'Greenwich, CT',
|
||||
);
|
||||
103
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1204.php
vendored
Normal file
103
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1204.php
vendored
Normal file
@@ -0,0 +1,103 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1204 => 'Manitoba',
|
||||
1204239 => 'Portage la Prairie, MB',
|
||||
1204268 => 'Beausejour, MB',
|
||||
1204284 => 'Winnipeg, MB',
|
||||
1204324 => 'Altona, MB',
|
||||
1204325 => 'Winkler, MB',
|
||||
1204326 => 'Steinbach, MB',
|
||||
1204331 => 'Winkler, MB',
|
||||
1204345 => 'Lac du Bonnet, MB',
|
||||
1204346 => 'Steinbach, MB',
|
||||
1204376 => 'Arborg, MB',
|
||||
1204388 => 'Niverville, MB',
|
||||
1204414 => 'Winnipeg, MB',
|
||||
1204415 => 'Winnipeg, MB',
|
||||
1204421 => 'Winnipeg, MB',
|
||||
1204422 => 'Ste. Anne, MB',
|
||||
1204434 => 'Grunthal, MB',
|
||||
1204444 => 'Oakbank, MB',
|
||||
1204447 => 'Ste. Rose du Lac, MB',
|
||||
1204452 => 'Winnipeg, MB',
|
||||
1204453 => 'Winnipeg, MB',
|
||||
1204467 => 'Stonewall, MB',
|
||||
1204474 => 'Winnipeg, MB',
|
||||
1204475 => 'Winnipeg, MB',
|
||||
1204476 => 'Neepawa, MB',
|
||||
1204477 => 'Winnipeg, MB',
|
||||
1204480 => 'Winnipeg, MB',
|
||||
1204482 => 'Selkirk, MB',
|
||||
1204483 => 'Souris, MB',
|
||||
1204487 => 'Winnipeg, MB',
|
||||
1204488 => 'Winnipeg, MB',
|
||||
1204489 => 'Winnipeg, MB',
|
||||
1204523 => 'Killarney, MB',
|
||||
1204534 => 'Boissevain, MB',
|
||||
1204571 => 'Brandon, MB',
|
||||
1204582 => 'Winnipeg, MB',
|
||||
1204586 => 'Winnipeg, MB',
|
||||
1204589 => 'Winnipeg, MB',
|
||||
1204623 => 'The Pas, MB',
|
||||
1204632 => 'Winnipeg, MB',
|
||||
1204633 => 'Winnipeg, MB',
|
||||
1204638 => 'Dauphin, MB',
|
||||
1204642 => 'Gimli, MB',
|
||||
1204667 => 'Winnipeg, MB',
|
||||
1204677 => 'Thompson, MB',
|
||||
1204687 => 'Flin Flon, MB',
|
||||
1204694 => 'Winnipeg, MB',
|
||||
1204697 => 'Winnipeg, MB',
|
||||
1204725 => 'Brandon, MB',
|
||||
1204726 => 'Brandon, MB',
|
||||
1204727 => 'Brandon, MB',
|
||||
1204728 => 'Brandon, MB',
|
||||
1204729 => 'Brandon, MB',
|
||||
1204734 => 'Swan River, MB',
|
||||
1204745 => 'Carman, MB',
|
||||
1204748 => 'Virden, MB',
|
||||
1204757 => 'Lockport, MB',
|
||||
1204768 => 'Ashern, MB',
|
||||
1204772 => 'Winnipeg, MB',
|
||||
1204773 => 'Russell, MB',
|
||||
1204774 => 'Winnipeg, MB',
|
||||
1204775 => 'Winnipeg, MB',
|
||||
1204778 => 'Thompson, MB',
|
||||
1204779 => 'Winnipeg, MB',
|
||||
1204783 => 'Winnipeg, MB',
|
||||
1204785 => 'Selkirk, MB',
|
||||
1204786 => 'Winnipeg, MB',
|
||||
1204788 => 'Winnipeg, MB',
|
||||
1204822 => 'Morden, MB',
|
||||
1204834 => 'Carberry, MB',
|
||||
1204837 => 'Winnipeg, MB',
|
||||
1204857 => 'Portage la Prairie, MB',
|
||||
1204867 => 'Minnedosa, MB',
|
||||
1204878 => 'Lorette, MB',
|
||||
1204886 => 'Teulon, MB',
|
||||
1204888 => 'Winnipeg, MB',
|
||||
1204897 => 'Winnipeg, MB',
|
||||
1204925 => 'Winnipeg, MB',
|
||||
1204927 => 'Winnipeg, MB',
|
||||
1204937 => 'Roblin, MB',
|
||||
1204940 => 'Winnipeg, MB',
|
||||
1204942 => 'Winnipeg, MB',
|
||||
1204943 => 'Winnipeg, MB',
|
||||
1204944 => 'Winnipeg, MB',
|
||||
1204947 => 'Winnipeg, MB',
|
||||
1204949 => 'Winnipeg, MB',
|
||||
1204953 => 'Winnipeg, MB',
|
||||
1204956 => 'Winnipeg, MB',
|
||||
1204957 => 'Winnipeg, MB',
|
||||
1204958 => 'Winnipeg, MB',
|
||||
1204982 => 'Winnipeg, MB',
|
||||
1204985 => 'Winnipeg, MB',
|
||||
1204987 => 'Winnipeg, MB',
|
||||
1204988 => 'Winnipeg, MB',
|
||||
1204989 => 'Winnipeg, MB',
|
||||
);
|
||||
170
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1205.php
vendored
Normal file
170
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1205.php
vendored
Normal file
@@ -0,0 +1,170 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1205 => 'Alabama',
|
||||
1205202 => 'Birmingham, AL',
|
||||
1205221 => 'Jasper, AL',
|
||||
1205226 => 'Birmingham, AL',
|
||||
1205244 => 'Birmingham, AL',
|
||||
1205248 => 'Tuscaloosa, AL',
|
||||
1205250 => 'Birmingham, AL',
|
||||
1205251 => 'Birmingham, AL',
|
||||
1205252 => 'Birmingham, AL',
|
||||
1205254 => 'Birmingham, AL',
|
||||
1205271 => 'Birmingham, AL',
|
||||
1205274 => 'Oneonta, AL',
|
||||
1205280 => 'Clanton, AL',
|
||||
1205290 => 'Birmingham, AL',
|
||||
1205295 => 'Jasper, AL',
|
||||
1205320 => 'Birmingham, AL',
|
||||
1205322 => 'Birmingham, AL',
|
||||
1205323 => 'Birmingham, AL',
|
||||
1205324 => 'Birmingham, AL',
|
||||
1205325 => 'Birmingham, AL',
|
||||
1205326 => 'Birmingham, AL',
|
||||
1205328 => 'Birmingham, AL',
|
||||
1205330 => 'Northport, AL',
|
||||
1205333 => 'Northport, AL',
|
||||
1205338 => 'Pell City, AL',
|
||||
1205339 => 'Northport, AL',
|
||||
1205342 => 'Tuscaloosa, AL',
|
||||
1205343 => 'Tuscaloosa, AL',
|
||||
1205344 => 'Tuscaloosa, AL',
|
||||
1205345 => 'Tuscaloosa, AL',
|
||||
1205348 => 'Tuscaloosa, AL',
|
||||
1205349 => 'Tuscaloosa, AL',
|
||||
1205364 => 'Gordo, AL',
|
||||
1205366 => 'Tuscaloosa, AL',
|
||||
1205367 => 'Carrollton, AL',
|
||||
1205371 => 'Moundville, AL',
|
||||
1205372 => 'Eutaw, AL',
|
||||
1205373 => 'Aliceville, AL',
|
||||
1205375 => 'Reform, AL',
|
||||
1205380 => 'Birmingham, AL',
|
||||
1205384 => 'Jasper, AL',
|
||||
1205387 => 'Jasper, AL',
|
||||
1205391 => 'Tuscaloosa, AL',
|
||||
1205392 => 'York, AL',
|
||||
1205397 => 'Birmingham, AL',
|
||||
1205408 => 'Birmingham, AL',
|
||||
1205414 => 'Birmingham, AL',
|
||||
1205424 => 'Bessemer, AL',
|
||||
1205425 => 'Bessemer, AL',
|
||||
1205426 => 'Bessemer, AL',
|
||||
1205428 => 'Bessemer, AL',
|
||||
1205429 => 'Blountsville, AL',
|
||||
1205436 => 'Bessemer, AL',
|
||||
1205437 => 'Birmingham, AL',
|
||||
1205458 => 'Birmingham, AL',
|
||||
1205459 => 'Butler, AL',
|
||||
1205462 => 'Tuscaloosa, AL',
|
||||
1205467 => 'Springville, AL',
|
||||
1205468 => 'Guin, AL',
|
||||
1205477 => 'McCalla, AL',
|
||||
1205481 => 'Bessemer, AL',
|
||||
1205486 => 'Haleyville, AL',
|
||||
1205487 => 'Winfield, AL',
|
||||
1205489 => 'Double Springs, AL',
|
||||
1205491 => 'Hueytown, AL',
|
||||
1205520 => 'Birmingham, AL',
|
||||
1205521 => 'Birmingham, AL',
|
||||
1205553 => 'Tuscaloosa, AL',
|
||||
1205554 => 'Tuscaloosa, AL',
|
||||
1205556 => 'Tuscaloosa, AL',
|
||||
1205562 => 'Tuscaloosa, AL',
|
||||
1205578 => 'Birmingham, AL',
|
||||
1205588 => 'Birmingham, AL',
|
||||
1205589 => 'Altoona, AL',
|
||||
1205590 => 'Warrior, AL',
|
||||
1205591 => 'Birmingham, AL',
|
||||
1205592 => 'Birmingham, AL',
|
||||
1205594 => 'Ashville, AL',
|
||||
1205595 => 'Birmingham, AL',
|
||||
1205599 => 'Birmingham, AL',
|
||||
1205608 => 'Gardendale, AL',
|
||||
1205625 => 'Oneonta, AL',
|
||||
1205629 => 'Odenville, AL',
|
||||
1205631 => 'Gardendale, AL',
|
||||
1205633 => 'Tuscaloosa, AL',
|
||||
1205640 => 'Moody, AL',
|
||||
1205647 => 'Warrior, AL',
|
||||
1205652 => 'Livingston, AL',
|
||||
1205655 => 'Trussville, AL',
|
||||
1205661 => 'Trussville, AL',
|
||||
1205665 => 'Montevallo, AL',
|
||||
1205668 => 'Calera, AL',
|
||||
1205669 => 'Columbiana, AL',
|
||||
1205678 => 'Chelsea, AL',
|
||||
1205680 => 'Pinson, AL',
|
||||
1205681 => 'Pinson, AL',
|
||||
1205688 => 'Jemison, AL',
|
||||
1205695 => 'Vernon, AL',
|
||||
1205698 => 'Sulligent, AL',
|
||||
1205699 => 'Leeds, AL',
|
||||
1205714 => 'Birmingham, AL',
|
||||
1205731 => 'Birmingham, AL',
|
||||
1205750 => 'Tuscaloosa, AL',
|
||||
1205752 => 'Tuscaloosa, AL',
|
||||
1205755 => 'Clanton, AL',
|
||||
1205758 => 'Tuscaloosa, AL',
|
||||
1205759 => 'Tuscaloosa, AL',
|
||||
1205763 => 'Lincoln, AL',
|
||||
1205780 => 'Birmingham, AL',
|
||||
1205781 => 'Birmingham, AL',
|
||||
1205783 => 'Birmingham, AL',
|
||||
1205785 => 'Birmingham, AL',
|
||||
1205786 => 'Birmingham, AL',
|
||||
1205787 => 'Birmingham, AL',
|
||||
1205788 => 'Birmingham, AL',
|
||||
1205791 => 'Birmingham, AL',
|
||||
1205798 => 'Birmingham, AL',
|
||||
1205801 => 'Birmingham, AL',
|
||||
1205802 => 'Birmingham, AL',
|
||||
1205803 => 'Birmingham, AL',
|
||||
1205814 => 'Pell City, AL',
|
||||
1205815 => 'Birmingham, AL',
|
||||
1205833 => 'Birmingham, AL',
|
||||
1205836 => 'Birmingham, AL',
|
||||
1205838 => 'Birmingham, AL',
|
||||
1205841 => 'Birmingham, AL',
|
||||
1205849 => 'Birmingham, AL',
|
||||
1205853 => 'Birmingham, AL',
|
||||
1205854 => 'Birmingham, AL',
|
||||
1205856 => 'Birmingham, AL',
|
||||
1205868 => 'Birmingham, AL',
|
||||
1205877 => 'Birmingham, AL',
|
||||
1205879 => 'Birmingham, AL',
|
||||
1205884 => 'Pell City, AL',
|
||||
1205918 => 'Birmingham, AL',
|
||||
1205921 => 'Hamilton, AL',
|
||||
1205923 => 'Birmingham, AL',
|
||||
1205924 => 'Carbon Hill, AL',
|
||||
1205925 => 'Birmingham, AL',
|
||||
1205926 => 'Centreville, AL',
|
||||
1205930 => 'Birmingham, AL',
|
||||
1205932 => 'Fayette, AL',
|
||||
1205933 => 'Birmingham, AL',
|
||||
1205934 => 'Birmingham, AL',
|
||||
1205939 => 'Birmingham, AL',
|
||||
1205941 => 'Birmingham, AL',
|
||||
1205942 => 'Birmingham, AL',
|
||||
1205943 => 'Birmingham, AL',
|
||||
1205945 => 'Birmingham, AL',
|
||||
1205949 => 'Birmingham, AL',
|
||||
1205951 => 'Irondale, AL',
|
||||
1205956 => 'Irondale, AL',
|
||||
1205968 => 'Vestavia Hills, AL',
|
||||
1205970 => 'Birmingham, AL',
|
||||
1205972 => 'Birmingham, AL',
|
||||
1205975 => 'Birmingham, AL',
|
||||
1205980 => 'Birmingham, AL',
|
||||
1205981 => 'Birmingham, AL',
|
||||
1205989 => 'Birmingham, AL',
|
||||
1205991 => 'Birmingham, AL',
|
||||
1205995 => 'Birmingham, AL',
|
||||
1205996 => 'Birmingham, AL',
|
||||
);
|
||||
178
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1206.php
vendored
Normal file
178
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1206.php
vendored
Normal file
@@ -0,0 +1,178 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1206 => 'Washington',
|
||||
1206215 => 'Seattle, WA',
|
||||
1206217 => 'Seattle, WA',
|
||||
1206223 => 'Seattle, WA',
|
||||
1206224 => 'Seattle, WA',
|
||||
1206230 => 'Mercer Island, WA',
|
||||
1206232 => 'Mercer Island, WA',
|
||||
1206233 => 'Seattle, WA',
|
||||
1206236 => 'Mercer Island, WA',
|
||||
1206252 => 'Seattle, WA',
|
||||
1206257 => 'Seattle, WA',
|
||||
1206262 => 'Seattle, WA',
|
||||
1206264 => 'Seattle, WA',
|
||||
1206267 => 'Seattle, WA',
|
||||
1206275 => 'Mercer Island, WA',
|
||||
1206277 => 'Seattle, WA',
|
||||
1206281 => 'Seattle, WA',
|
||||
1206282 => 'Seattle, WA',
|
||||
1206283 => 'Seattle, WA',
|
||||
1206284 => 'Seattle, WA',
|
||||
1206285 => 'Seattle, WA',
|
||||
1206286 => 'Seattle, WA',
|
||||
1206287 => 'Seattle, WA',
|
||||
1206288 => 'Seattle, WA',
|
||||
1206292 => 'Seattle, WA',
|
||||
1206296 => 'Seattle, WA',
|
||||
1206297 => 'Seattle, WA',
|
||||
1206302 => 'Seattle, WA',
|
||||
1206306 => 'Seattle, WA',
|
||||
1206320 => 'Seattle, WA',
|
||||
1206322 => 'Seattle, WA',
|
||||
1206323 => 'Seattle, WA',
|
||||
1206324 => 'Seattle, WA',
|
||||
1206325 => 'Seattle, WA',
|
||||
1206326 => 'Seattle, WA',
|
||||
1206328 => 'Seattle, WA',
|
||||
1206329 => 'Seattle, WA',
|
||||
1206340 => 'Seattle, WA',
|
||||
1206343 => 'Seattle, WA',
|
||||
1206352 => 'Seattle, WA',
|
||||
1206359 => 'Seattle, WA',
|
||||
1206361 => 'Seattle, WA',
|
||||
1206363 => 'Seattle, WA',
|
||||
1206364 => 'Seattle, WA',
|
||||
1206365 => 'Seattle, WA',
|
||||
1206367 => 'Seattle, WA',
|
||||
1206368 => 'Seattle, WA',
|
||||
1206370 => 'Seattle, WA',
|
||||
1206374 => 'Seattle, WA',
|
||||
1206381 => 'Seattle, WA',
|
||||
1206382 => 'Seattle, WA',
|
||||
1206386 => 'Seattle, WA',
|
||||
1206388 => 'Seattle, WA',
|
||||
1206402 => 'Seattle, WA',
|
||||
1206403 => 'Seattle, WA',
|
||||
1206405 => 'Seattle, WA',
|
||||
1206417 => 'Seattle, WA',
|
||||
1206420 => 'Seattle, WA',
|
||||
1206432 => 'Seattle, WA',
|
||||
1206436 => 'Seattle, WA',
|
||||
1206440 => 'Seattle, WA',
|
||||
1206441 => 'Seattle, WA',
|
||||
1206443 => 'Seattle, WA',
|
||||
1206447 => 'Seattle, WA',
|
||||
1206448 => 'Seattle, WA',
|
||||
1206453 => 'Seattle, WA',
|
||||
1206457 => 'Seattle, WA',
|
||||
1206461 => 'Seattle, WA',
|
||||
1206462 => 'Seattle, WA',
|
||||
1206463 => 'Vashon, WA',
|
||||
1206464 => 'Seattle, WA',
|
||||
1206466 => 'Seattle, WA',
|
||||
1206467 => 'Seattle, WA',
|
||||
1206505 => 'Seattle, WA',
|
||||
1206517 => 'Seattle, WA',
|
||||
1206522 => 'Seattle, WA',
|
||||
1206523 => 'Seattle, WA',
|
||||
1206524 => 'Seattle, WA',
|
||||
1206525 => 'Seattle, WA',
|
||||
1206526 => 'Seattle, WA',
|
||||
1206527 => 'Seattle, WA',
|
||||
1206528 => 'Seattle, WA',
|
||||
1206533 => 'Shoreline, WA',
|
||||
1206535 => 'Seattle, WA',
|
||||
1206542 => 'Shoreline, WA',
|
||||
1206543 => 'Seattle, WA',
|
||||
1206545 => 'Seattle, WA',
|
||||
1206546 => 'Shoreline, WA',
|
||||
1206547 => 'Seattle, WA',
|
||||
1206548 => 'Seattle, WA',
|
||||
1206567 => 'Vashon, WA',
|
||||
1206568 => 'Seattle, WA',
|
||||
1206575 => 'Tukwila, WA',
|
||||
1206583 => 'Seattle, WA',
|
||||
1206587 => 'Seattle, WA',
|
||||
1206588 => 'Seattle, WA',
|
||||
1206598 => 'Seattle, WA',
|
||||
1206616 => 'Seattle, WA',
|
||||
1206621 => 'Seattle, WA',
|
||||
1206622 => 'Seattle, WA',
|
||||
1206623 => 'Seattle, WA',
|
||||
1206624 => 'Seattle, WA',
|
||||
1206625 => 'Seattle, WA',
|
||||
1206628 => 'Seattle, WA',
|
||||
1206632 => 'Seattle, WA',
|
||||
1206633 => 'Seattle, WA',
|
||||
1206634 => 'Seattle, WA',
|
||||
1206652 => 'Seattle, WA',
|
||||
1206667 => 'Seattle, WA',
|
||||
1206682 => 'Seattle, WA',
|
||||
1206684 => 'Seattle, WA',
|
||||
1206685 => 'Seattle, WA',
|
||||
1206706 => 'Seattle, WA',
|
||||
1206708 => 'Seattle, WA',
|
||||
1206709 => 'Seattle, WA',
|
||||
1206720 => 'Seattle, WA',
|
||||
1206721 => 'Seattle, WA',
|
||||
1206722 => 'Seattle, WA',
|
||||
1206723 => 'Seattle, WA',
|
||||
1206724 => 'Seattle, WA',
|
||||
1206725 => 'Seattle, WA',
|
||||
1206726 => 'Seattle, WA',
|
||||
1206728 => 'Seattle, WA',
|
||||
1206729 => 'Seattle, WA',
|
||||
1206731 => 'Seattle, WA',
|
||||
1206744 => 'Seattle, WA',
|
||||
1206749 => 'Seattle, WA',
|
||||
1206760 => 'Seattle, WA',
|
||||
1206762 => 'Seattle, WA',
|
||||
1206763 => 'Seattle, WA',
|
||||
1206764 => 'Seattle, WA',
|
||||
1206767 => 'Seattle, WA',
|
||||
1206768 => 'Seattle, WA',
|
||||
1206772 => 'Seattle, WA',
|
||||
1206774 => 'Seattle, WA',
|
||||
1206780 => 'Bainbridge Isle, WA',
|
||||
1206781 => 'Seattle, WA',
|
||||
1206782 => 'Seattle, WA',
|
||||
1206783 => 'Seattle, WA',
|
||||
1206784 => 'Seattle, WA',
|
||||
1206788 => 'Seattle, WA',
|
||||
1206789 => 'Seattle, WA',
|
||||
1206812 => 'Seattle, WA',
|
||||
1206824 => 'Des Moines, WA',
|
||||
1206829 => 'Seattle, WA',
|
||||
1206838 => 'Seattle, WA',
|
||||
1206842 => 'Bainbridge Isle, WA',
|
||||
1206849 => 'Seattle, WA',
|
||||
1206852 => 'Seattle, WA',
|
||||
1206855 => 'Bainbridge Isle, WA',
|
||||
1206860 => 'Seattle, WA',
|
||||
1206861 => 'Seattle, WA',
|
||||
1206870 => 'Des Moines, WA',
|
||||
1206878 => 'Des Moines, WA',
|
||||
1206897 => 'Seattle, WA',
|
||||
1206903 => 'Seattle, WA',
|
||||
1206905 => 'Seattle, WA',
|
||||
1206913 => 'Seattle, WA',
|
||||
1206923 => 'Seattle, WA',
|
||||
1206931 => 'Seattle, WA',
|
||||
1206932 => 'Seattle, WA',
|
||||
1206933 => 'Seattle, WA',
|
||||
1206935 => 'Seattle, WA',
|
||||
1206937 => 'Seattle, WA',
|
||||
1206938 => 'Seattle, WA',
|
||||
1206957 => 'Seattle, WA',
|
||||
1206965 => 'Seattle, WA',
|
||||
1206971 => 'Seattle, WA',
|
||||
1206985 => 'Seattle, WA',
|
||||
1206987 => 'Seattle, WA',
|
||||
);
|
||||
192
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1207.php
vendored
Normal file
192
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1207.php
vendored
Normal file
@@ -0,0 +1,192 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1207 => 'Maine',
|
||||
1207223 => 'Winterport, ME',
|
||||
1207225 => 'Turner, ME',
|
||||
1207230 => 'Camden, ME',
|
||||
1207236 => 'Camden, ME',
|
||||
1207244 => 'Southwest Harbor, ME',
|
||||
1207247 => 'Waterboro, ME',
|
||||
1207253 => 'Portland, ME',
|
||||
1207255 => 'Machias, ME',
|
||||
1207262 => 'Bangor, ME',
|
||||
1207273 => 'Warren, ME',
|
||||
1207276 => 'Northeast Harbor, ME',
|
||||
1207282 => 'Biddeford, ME',
|
||||
1207283 => 'Biddeford, ME',
|
||||
1207284 => 'Biddeford, ME',
|
||||
1207285 => 'Corinth, ME',
|
||||
1207286 => 'Biddeford, ME',
|
||||
1207287 => 'Augusta, ME',
|
||||
1207288 => 'Bar Harbor, ME',
|
||||
1207294 => 'Saco, ME',
|
||||
1207324 => 'Sanford, ME',
|
||||
1207338 => 'Belfast, ME',
|
||||
1207345 => 'Mechanic Falls, ME',
|
||||
1207347 => 'Portland, ME',
|
||||
1207348 => 'Deer Isle, ME',
|
||||
1207351 => 'York, ME',
|
||||
1207354 => 'Thomaston, ME',
|
||||
1207361 => 'York, ME',
|
||||
1207363 => 'York, ME',
|
||||
1207364 => 'Rumford, ME',
|
||||
1207367 => 'Stonington, ME',
|
||||
1207368 => 'Newport, ME',
|
||||
1207369 => 'Rumford, ME',
|
||||
1207373 => 'Brunswick, ME',
|
||||
1207374 => 'Blue Hill, ME',
|
||||
1207375 => 'Sabattus, ME',
|
||||
1207376 => 'Auburn, ME',
|
||||
1207377 => 'Winthrop, ME',
|
||||
1207384 => 'South Berwick, ME',
|
||||
1207435 => 'Ashland, ME',
|
||||
1207439 => 'Kittery, ME',
|
||||
1207442 => 'Bath, ME',
|
||||
1207443 => 'Bath, ME',
|
||||
1207445 => 'South China, ME',
|
||||
1207453 => 'Fairfield, ME',
|
||||
1207454 => 'Calais, ME',
|
||||
1207457 => 'Lebanon, ME',
|
||||
1207465 => 'Oakland, ME',
|
||||
1207467 => 'Kennebunk, ME',
|
||||
1207469 => 'Bucksport, ME',
|
||||
1207474 => 'Skowhegan, ME',
|
||||
1207487 => 'Pittsfield, ME',
|
||||
1207490 => 'Sanford, ME',
|
||||
1207492 => 'Caribou, ME',
|
||||
1207493 => 'Caribou, ME',
|
||||
1207498 => 'Caribou, ME',
|
||||
1207499 => 'Lyman, ME',
|
||||
1207523 => 'Portland, ME',
|
||||
1207528 => 'Patten, ME',
|
||||
1207532 => 'Houlton, ME',
|
||||
1207539 => 'Oxford, ME',
|
||||
1207541 => 'Portland, ME',
|
||||
1207548 => 'Searsport, ME',
|
||||
1207553 => 'Portland, ME',
|
||||
1207562 => 'Dixfield, ME',
|
||||
1207563 => 'Damariscotta, ME',
|
||||
1207564 => 'Dover-Foxcroft, ME',
|
||||
1207583 => 'Harrison, ME',
|
||||
1207591 => 'Westbrook, ME',
|
||||
1207594 => 'Rockland, ME',
|
||||
1207596 => 'Rockland, ME',
|
||||
1207621 => 'Augusta, ME',
|
||||
1207622 => 'Augusta, ME',
|
||||
1207623 => 'Augusta, ME',
|
||||
1207624 => 'Augusta, ME',
|
||||
1207626 => 'Augusta, ME',
|
||||
1207627 => 'Casco, ME',
|
||||
1207633 => 'Boothbay Harbor, ME',
|
||||
1207634 => 'Norridgewock, ME',
|
||||
1207641 => 'Wells, ME',
|
||||
1207642 => 'Standish, ME',
|
||||
1207645 => 'Wilton, ME',
|
||||
1207646 => 'Wells, ME',
|
||||
1207647 => 'Bridgton, ME',
|
||||
1207655 => 'Raymond, ME',
|
||||
1207657 => 'Gray, ME',
|
||||
1207662 => 'Portland, ME',
|
||||
1207664 => 'Ellsworth, ME',
|
||||
1207666 => 'Bowdoinham, ME',
|
||||
1207667 => 'Ellsworth, ME',
|
||||
1207676 => 'North Berwick, ME',
|
||||
1207685 => 'Readfield, ME',
|
||||
1207693 => 'Naples, ME',
|
||||
1207695 => 'Greenville, ME',
|
||||
1207696 => 'Madison, ME',
|
||||
1207698 => 'Berwick, ME',
|
||||
1207699 => 'Portland, ME',
|
||||
1207721 => 'Brunswick, ME',
|
||||
1207723 => 'Millinocket, ME',
|
||||
1207725 => 'Brunswick, ME',
|
||||
1207727 => 'Buxton, ME',
|
||||
1207728 => 'Madawaska, ME',
|
||||
1207729 => 'Brunswick, ME',
|
||||
1207733 => 'Lubec, ME',
|
||||
1207737 => 'Richmond, ME',
|
||||
1207739 => 'Norway, ME',
|
||||
1207743 => 'Norway, ME',
|
||||
1207753 => 'Lewiston, ME',
|
||||
1207761 => 'Portland, ME',
|
||||
1207763 => 'Lincolnville, ME',
|
||||
1207764 => 'Presque Isle, ME',
|
||||
1207767 => 'South Portland, ME',
|
||||
1207768 => 'Presque Isle, ME',
|
||||
1207771 => 'Portland, ME',
|
||||
1207772 => 'Portland, ME',
|
||||
1207773 => 'Portland, ME',
|
||||
1207774 => 'Portland, ME',
|
||||
1207775 => 'Portland, ME',
|
||||
1207777 => 'Lewiston, ME',
|
||||
1207778 => 'Farmington, ME',
|
||||
1207780 => 'Portland, ME',
|
||||
1207781 => 'Falmouth, ME',
|
||||
1207782 => 'Lewiston, ME',
|
||||
1207783 => 'Lewiston, ME',
|
||||
1207785 => 'Union, ME',
|
||||
1207786 => 'Lewiston, ME',
|
||||
1207791 => 'Portland, ME',
|
||||
1207793 => 'Limerick, ME',
|
||||
1207794 => 'Lincoln, ME',
|
||||
1207795 => 'Lewiston, ME',
|
||||
1207797 => 'Portland, ME',
|
||||
1207798 => 'Brunswick, ME',
|
||||
1207799 => 'South Portland, ME',
|
||||
1207824 => 'Bethel, ME',
|
||||
1207827 => 'Old Town, ME',
|
||||
1207828 => 'Portland, ME',
|
||||
1207832 => 'Waldoboro, ME',
|
||||
1207833 => 'Harpswell, ME',
|
||||
1207834 => 'Fort Kent, ME',
|
||||
1207839 => 'Gorham, ME',
|
||||
1207846 => 'Yarmouth, ME',
|
||||
1207848 => 'Hermon, ME',
|
||||
1207853 => 'Eastport, ME',
|
||||
1207854 => 'Westbrook, ME',
|
||||
1207856 => 'Westbrook, ME',
|
||||
1207861 => 'Waterville, ME',
|
||||
1207862 => 'Hampden, ME',
|
||||
1207864 => 'Rangeley, ME',
|
||||
1207865 => 'Freeport, ME',
|
||||
1207866 => 'Orono, ME',
|
||||
1207868 => 'Van Buren, ME',
|
||||
1207871 => 'Portland, ME',
|
||||
1207872 => 'Waterville, ME',
|
||||
1207873 => 'Waterville, ME',
|
||||
1207874 => 'Portland, ME',
|
||||
1207877 => 'Waterville, ME',
|
||||
1207878 => 'Portland, ME',
|
||||
1207879 => 'Portland, ME',
|
||||
1207882 => 'Wiscasset, ME',
|
||||
1207883 => 'Scarborough, ME',
|
||||
1207885 => 'Scarborough, ME',
|
||||
1207892 => 'Windham, ME',
|
||||
1207893 => 'Windham, ME',
|
||||
1207907 => 'Bangor, ME',
|
||||
1207924 => 'Dexter, ME',
|
||||
1207926 => 'New Gloucester, ME',
|
||||
1207929 => 'Buxton, ME',
|
||||
1207933 => 'Monmouth, ME',
|
||||
1207934 => 'Old Orchard Bch, ME',
|
||||
1207935 => 'Fryeburg, ME',
|
||||
1207941 => 'Bangor, ME',
|
||||
1207942 => 'Bangor, ME',
|
||||
1207943 => 'Milo, ME',
|
||||
1207945 => 'Bangor, ME',
|
||||
1207946 => 'Greene, ME',
|
||||
1207947 => 'Bangor, ME',
|
||||
1207948 => 'Unity, ME',
|
||||
1207967 => 'Kennebunkport, ME',
|
||||
1207973 => 'Bangor, ME',
|
||||
1207985 => 'Kennebunk, ME',
|
||||
1207989 => 'Brewer, ME',
|
||||
1207990 => 'Bangor, ME',
|
||||
1207992 => 'Bangor, ME',
|
||||
1207998 => 'Poland, ME',
|
||||
);
|
||||
196
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1208.php
vendored
Normal file
196
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1208.php
vendored
Normal file
@@ -0,0 +1,196 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1208 => 'Idaho',
|
||||
1208226 => 'American Falls, ID',
|
||||
1208227 => 'Idaho Falls, ID',
|
||||
1208232 => 'Pocatello, ID',
|
||||
1208233 => 'Pocatello, ID',
|
||||
1208234 => 'Pocatello, ID',
|
||||
1208236 => 'Pocatello, ID',
|
||||
1208237 => 'Pocatello, ID',
|
||||
1208238 => 'Pocatello, ID',
|
||||
1208239 => 'Pocatello, ID',
|
||||
1208245 => 'St. Maries, ID',
|
||||
1208253 => 'Council, ID',
|
||||
1208255 => 'Sandpoint, ID',
|
||||
1208262 => 'Post Falls, ID',
|
||||
1208263 => 'Sandpoint, ID',
|
||||
1208265 => 'Sandpoint, ID',
|
||||
1208267 => 'Bonners Ferry, ID',
|
||||
1208278 => 'New Plymouth, ID',
|
||||
1208282 => 'Pocatello, ID',
|
||||
1208286 => 'Star, ID',
|
||||
1208287 => 'Boise, ID',
|
||||
1208288 => 'Meridian, ID',
|
||||
1208292 => 'Coeur d\'Alene, ID',
|
||||
1208319 => 'Boise, ID',
|
||||
1208321 => 'Boise, ID',
|
||||
1208322 => 'Boise, ID',
|
||||
1208323 => 'Boise, ID',
|
||||
1208324 => 'Jerome, ID',
|
||||
1208326 => 'Filer, ID',
|
||||
1208327 => 'Boise, ID',
|
||||
1208331 => 'Boise, ID',
|
||||
1208333 => 'Boise, ID',
|
||||
1208334 => 'Boise, ID',
|
||||
1208336 => 'Boise, ID',
|
||||
1208337 => 'Homedale, ID',
|
||||
1208338 => 'Boise, ID',
|
||||
1208342 => 'Boise, ID',
|
||||
1208343 => 'Boise, ID',
|
||||
1208344 => 'Boise, ID',
|
||||
1208345 => 'Boise, ID',
|
||||
1208354 => 'Driggs, ID',
|
||||
1208356 => 'Rexburg, ID',
|
||||
1208357 => 'Shelley, ID',
|
||||
1208359 => 'Rexburg, ID',
|
||||
1208362 => 'Boise, ID',
|
||||
1208365 => 'Emmett, ID',
|
||||
1208366 => 'Glenns Ferry, ID',
|
||||
1208367 => 'Boise, ID',
|
||||
1208373 => 'Boise, ID',
|
||||
1208375 => 'Boise, ID',
|
||||
1208376 => 'Boise, ID',
|
||||
1208377 => 'Boise, ID',
|
||||
1208378 => 'Boise, ID',
|
||||
1208381 => 'Boise, ID',
|
||||
1208382 => 'Cascade, ID',
|
||||
1208383 => 'Boise, ID',
|
||||
1208384 => 'Boise, ID',
|
||||
1208385 => 'Boise, ID',
|
||||
1208387 => 'Boise, ID',
|
||||
1208388 => 'Boise, ID',
|
||||
1208392 => 'Idaho City, ID',
|
||||
1208397 => 'Aberdeen, ID',
|
||||
1208414 => 'Weiser, ID',
|
||||
1208422 => 'Boise, ID',
|
||||
1208423 => 'Kimberly, ID',
|
||||
1208424 => 'Boise, ID',
|
||||
1208426 => 'Boise, ID',
|
||||
1208429 => 'Boise, ID',
|
||||
1208433 => 'Boise, ID',
|
||||
1208436 => 'Rupert, ID',
|
||||
1208437 => 'Oldtown, ID',
|
||||
1208438 => 'Paul, ID',
|
||||
1208442 => 'Nampa, ID',
|
||||
1208448 => 'Priest River, ID',
|
||||
1208452 => 'Fruitland, ID',
|
||||
1208453 => 'Caldwell, ID',
|
||||
1208454 => 'Caldwell, ID',
|
||||
1208455 => 'Caldwell, ID',
|
||||
1208457 => 'Post Falls, ID',
|
||||
1208459 => 'Caldwell, ID',
|
||||
1208461 => 'Nampa, ID',
|
||||
1208462 => 'Garden Valley, ID',
|
||||
1208463 => 'Nampa, ID',
|
||||
1208465 => 'Nampa, ID',
|
||||
1208466 => 'Nampa, ID',
|
||||
1208467 => 'Nampa, ID',
|
||||
1208468 => 'Nampa, ID',
|
||||
1208475 => 'Nampa, ID',
|
||||
1208476 => 'Orofino, ID',
|
||||
1208478 => 'Pocatello, ID',
|
||||
1208495 => 'Melba, ID',
|
||||
1208514 => 'Boise, ID',
|
||||
1208522 => 'Idaho Falls, ID',
|
||||
1208523 => 'Idaho Falls, ID',
|
||||
1208524 => 'Idaho Falls, ID',
|
||||
1208525 => 'Idaho Falls, ID',
|
||||
1208527 => 'Arco, ID',
|
||||
1208528 => 'Idaho Falls, ID',
|
||||
1208529 => 'Idaho Falls, ID',
|
||||
1208535 => 'Idaho Falls, ID',
|
||||
1208536 => 'Wendell, ID',
|
||||
1208542 => 'Idaho Falls, ID',
|
||||
1208543 => 'Buhl, ID',
|
||||
1208547 => 'Soda Springs, ID',
|
||||
1208549 => 'Weiser, ID',
|
||||
1208552 => 'Idaho Falls, ID',
|
||||
1208557 => 'Idaho Falls, ID',
|
||||
1208558 => 'Island Park, ID',
|
||||
1208562 => 'Boise, ID',
|
||||
1208578 => 'Hailey, ID',
|
||||
1208585 => 'Middleton, ID',
|
||||
1208587 => 'Mountain Home, ID',
|
||||
1208622 => 'Sun Valley, ID',
|
||||
1208623 => 'Spirit Lake, ID',
|
||||
1208624 => 'St. Anthony, ID',
|
||||
1208628 => 'Riggins, ID',
|
||||
1208629 => 'Boise, ID',
|
||||
1208634 => 'McCall, ID',
|
||||
1208642 => 'Payette, ID',
|
||||
1208652 => 'Ashton, ID',
|
||||
1208656 => 'Rexburg, ID',
|
||||
1208658 => 'Boise, ID',
|
||||
1208664 => 'Coeur d\'Alene, ID',
|
||||
1208665 => 'Coeur d\'Alene, ID',
|
||||
1208666 => 'Coeur d\'Alene, ID',
|
||||
1208667 => 'Coeur d\'Alene, ID',
|
||||
1208672 => 'Boise, ID',
|
||||
1208676 => 'Coeur d\'Alene, ID',
|
||||
1208677 => 'Burley, ID',
|
||||
1208678 => 'Burley, ID',
|
||||
1208683 => 'Athol, ID',
|
||||
1208684 => 'Blackfoot, ID',
|
||||
1208686 => 'Plummer, ID',
|
||||
1208687 => 'Rathdrum, ID',
|
||||
1208722 => 'Parma, ID',
|
||||
1208726 => 'Ketchum, ID',
|
||||
1208732 => 'Twin Falls, ID',
|
||||
1208733 => 'Twin Falls, ID',
|
||||
1208734 => 'Twin Falls, ID',
|
||||
1208735 => 'Twin Falls, ID',
|
||||
1208736 => 'Twin Falls, ID',
|
||||
1208737 => 'Twin Falls, ID',
|
||||
1208743 => 'Lewiston, ID',
|
||||
1208745 => 'Rigby, ID',
|
||||
1208746 => 'Lewiston, ID',
|
||||
1208756 => 'Salmon, ID',
|
||||
1208762 => 'Hayden, ID',
|
||||
1208765 => 'Coeur d\'Alene, ID',
|
||||
1208766 => 'Malad City, ID',
|
||||
1208769 => 'Coeur d\'Alene, ID',
|
||||
1208773 => 'Post Falls, ID',
|
||||
1208777 => 'Post Falls, ID',
|
||||
1208782 => 'Blackfoot, ID',
|
||||
1208783 => 'Kellogg, ID',
|
||||
1208785 => 'Blackfoot, ID',
|
||||
1208787 => 'Victor, ID',
|
||||
1208788 => 'Hailey, ID',
|
||||
1208798 => 'Lewiston, ID',
|
||||
1208799 => 'Lewiston, ID',
|
||||
1208835 => 'Troy, ID',
|
||||
1208837 => 'Hagerman, ID',
|
||||
1208846 => 'Meridian, ID',
|
||||
1208847 => 'Montpelier, ID',
|
||||
1208852 => 'Preston, ID',
|
||||
1208853 => 'Boise, ID',
|
||||
1208854 => 'Boise, ID',
|
||||
1208855 => 'Meridian, ID',
|
||||
1208875 => 'Potlatch, ID',
|
||||
1208878 => 'Burley, ID',
|
||||
1208879 => 'Challis, ID',
|
||||
1208881 => 'Idaho Falls, ID',
|
||||
1208882 => 'Moscow, ID',
|
||||
1208883 => 'Moscow, ID',
|
||||
1208884 => 'Meridian, ID',
|
||||
1208886 => 'Shoshone, ID',
|
||||
1208887 => 'Meridian, ID',
|
||||
1208888 => 'Meridian, ID',
|
||||
1208895 => 'Meridian, ID',
|
||||
1208898 => 'Meridian, ID',
|
||||
1208922 => 'Kuna, ID',
|
||||
1208926 => 'Kooskia, ID',
|
||||
1208934 => 'Gooding, ID',
|
||||
1208935 => 'Kamiah, ID',
|
||||
1208938 => 'Eagle, ID',
|
||||
1208939 => 'Eagle, ID',
|
||||
1208947 => 'Boise, ID',
|
||||
1208962 => 'Cottonwood, ID',
|
||||
1208983 => 'Grangeville, ID',
|
||||
);
|
||||
157
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1209.php
vendored
Normal file
157
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1209.php
vendored
Normal file
@@ -0,0 +1,157 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1209 => 'California',
|
||||
1209221 => 'Tracy, CA',
|
||||
1209223 => 'Jackson, CA',
|
||||
1209234 => 'Stockton, CA',
|
||||
1209238 => 'Modesto, CA',
|
||||
1209239 => 'Manteca, CA',
|
||||
1209245 => 'Plymouth, CA',
|
||||
1209257 => 'Jackson, CA',
|
||||
1209267 => 'Sutter Creek, CA',
|
||||
1209274 => 'Ione, CA',
|
||||
1209293 => 'West Point, CA',
|
||||
1209295 => 'Pioneer, CA',
|
||||
1209296 => 'Pine Grove, CA',
|
||||
1209333 => 'Lodi, CA',
|
||||
1209334 => 'Lodi, CA',
|
||||
1209339 => 'Lodi, CA',
|
||||
1209357 => 'Atwater, CA',
|
||||
1209358 => 'Atwater, CA',
|
||||
1209365 => 'Lodi, CA',
|
||||
1209366 => 'Lodi, CA',
|
||||
1209367 => 'Lodi, CA',
|
||||
1209368 => 'Lodi, CA',
|
||||
1209369 => 'Lodi, CA',
|
||||
1209381 => 'Merced, CA',
|
||||
1209383 => 'Merced, CA',
|
||||
1209384 => 'Merced, CA',
|
||||
1209385 => 'Merced, CA',
|
||||
1209392 => 'Dos Palos, CA',
|
||||
1209394 => 'Livingston, CA',
|
||||
1209451 => 'Stockton, CA',
|
||||
1209462 => 'Stockton, CA',
|
||||
1209463 => 'Stockton, CA',
|
||||
1209464 => 'Stockton, CA',
|
||||
1209465 => 'Stockton, CA',
|
||||
1209466 => 'Stockton, CA',
|
||||
1209467 => 'Stockton, CA',
|
||||
1209469 => 'Stockton, CA',
|
||||
1209472 => 'Stockton, CA',
|
||||
1209473 => 'Stockton, CA',
|
||||
1209474 => 'Stockton, CA',
|
||||
1209475 => 'Stockton, CA',
|
||||
1209476 => 'Stockton, CA',
|
||||
1209477 => 'Stockton, CA',
|
||||
1209478 => 'Stockton, CA',
|
||||
1209491 => 'Modesto, CA',
|
||||
1209521 => 'Modesto, CA',
|
||||
1209522 => 'Modesto, CA',
|
||||
1209523 => 'Modesto, CA',
|
||||
1209524 => 'Modesto, CA',
|
||||
1209525 => 'Modesto, CA',
|
||||
1209526 => 'Modesto, CA',
|
||||
1209527 => 'Modesto, CA',
|
||||
1209529 => 'Modesto, CA',
|
||||
1209532 => 'Sonora, CA',
|
||||
1209533 => 'Sonora, CA',
|
||||
1209536 => 'Sonora, CA',
|
||||
1209537 => 'Ceres, CA',
|
||||
1209538 => 'Ceres, CA',
|
||||
1209541 => 'Ceres, CA',
|
||||
1209543 => 'Modesto, CA',
|
||||
1209544 => 'Modesto, CA',
|
||||
1209545 => 'Modesto, CA',
|
||||
1209547 => 'Stockton, CA',
|
||||
1209549 => 'Modesto, CA',
|
||||
1209550 => 'Modesto, CA',
|
||||
1209551 => 'Modesto, CA',
|
||||
1209557 => 'Modesto, CA',
|
||||
1209558 => 'Modesto, CA',
|
||||
1209571 => 'Modesto, CA',
|
||||
1209572 => 'Modesto, CA',
|
||||
1209574 => 'Modesto, CA',
|
||||
1209575 => 'Modesto, CA',
|
||||
1209576 => 'Modesto, CA',
|
||||
1209577 => 'Modesto, CA',
|
||||
1209578 => 'Modesto, CA',
|
||||
1209579 => 'Modesto, CA',
|
||||
1209586 => 'Twain Harte, CA',
|
||||
1209588 => 'Sonora, CA',
|
||||
1209599 => 'Ripon, CA',
|
||||
1209632 => 'Turlock, CA',
|
||||
1209634 => 'Turlock, CA',
|
||||
1209656 => 'Turlock, CA',
|
||||
1209664 => 'Turlock, CA',
|
||||
1209667 => 'Turlock, CA',
|
||||
1209668 => 'Turlock, CA',
|
||||
1209669 => 'Turlock, CA',
|
||||
1209722 => 'Merced, CA',
|
||||
1209723 => 'Merced, CA',
|
||||
1209725 => 'Merced, CA',
|
||||
1209726 => 'Merced, CA',
|
||||
1209727 => 'Lockeford, CA',
|
||||
1209728 => 'Murphys, CA',
|
||||
1209735 => 'Modesto, CA',
|
||||
1209736 => 'Angels Camp, CA',
|
||||
1209742 => 'Mariposa, CA',
|
||||
1209744 => 'Galt, CA',
|
||||
1209745 => 'Galt, CA',
|
||||
1209754 => 'San Andreas, CA',
|
||||
1209772 => 'Valley Springs, CA',
|
||||
1209785 => 'Copperopolis, CA',
|
||||
1209795 => 'Arnold, CA',
|
||||
1209823 => 'Manteca, CA',
|
||||
1209824 => 'Manteca, CA',
|
||||
1209825 => 'Manteca, CA',
|
||||
1209826 => 'Los Banos, CA',
|
||||
1209827 => 'Los Banos, CA',
|
||||
1209830 => 'Tracy, CA',
|
||||
1209832 => 'Tracy, CA',
|
||||
1209833 => 'Tracy, CA',
|
||||
1209834 => 'Tracy, CA',
|
||||
1209835 => 'Tracy, CA',
|
||||
1209836 => 'Tracy, CA',
|
||||
1209838 => 'Escalon, CA',
|
||||
1209839 => 'Tracy, CA',
|
||||
1209845 => 'Oakdale, CA',
|
||||
1209846 => 'Modesto, CA',
|
||||
1209847 => 'Oakdale, CA',
|
||||
1209848 => 'Oakdale, CA',
|
||||
1209854 => 'Gustine, CA',
|
||||
1209858 => 'Lathrop, CA',
|
||||
1209862 => 'Newman, CA',
|
||||
1209863 => 'Riverbank, CA',
|
||||
1209869 => 'Riverbank, CA',
|
||||
1209874 => 'Waterford, CA',
|
||||
1209883 => 'Hughson, CA',
|
||||
1209887 => 'Linden, CA',
|
||||
1209892 => 'Patterson, CA',
|
||||
1209928 => 'Tuolumne, CA',
|
||||
1209931 => 'Stockton, CA',
|
||||
1209933 => 'Stockton, CA',
|
||||
1209937 => 'Stockton, CA',
|
||||
1209941 => 'Stockton, CA',
|
||||
1209942 => 'Stockton, CA',
|
||||
1209943 => 'Stockton, CA',
|
||||
1209944 => 'Stockton, CA',
|
||||
1209946 => 'Stockton, CA',
|
||||
1209948 => 'Stockton, CA',
|
||||
1209951 => 'Stockton, CA',
|
||||
1209952 => 'Stockton, CA',
|
||||
1209953 => 'Stockton, CA',
|
||||
1209954 => 'Stockton, CA',
|
||||
1209955 => 'Stockton, CA',
|
||||
1209956 => 'Stockton, CA',
|
||||
1209957 => 'Stockton, CA',
|
||||
1209962 => 'Groveland, CA',
|
||||
1209966 => 'Mariposa, CA',
|
||||
1209982 => 'Stockton, CA',
|
||||
1209983 => 'Stockton, CA',
|
||||
1209984 => 'Jamestown, CA',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1210.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1210.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1210 => 'San Antonio, TX',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1212.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1212.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1212 => 'New York, NY',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1213.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1213.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1213 => 'Los Angeles, CA',
|
||||
);
|
||||
200
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1214.php
vendored
Normal file
200
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1214.php
vendored
Normal file
@@ -0,0 +1,200 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1214 => 'Texas',
|
||||
1214217 => 'Dallas, TX',
|
||||
1214219 => 'Dallas, TX',
|
||||
1214220 => 'Dallas, TX',
|
||||
1214221 => 'Dallas, TX',
|
||||
1214222 => 'Lewisville, TX',
|
||||
1214234 => 'Dallas, TX',
|
||||
1214239 => 'Dallas, TX',
|
||||
1214252 => 'Dallas, TX',
|
||||
1214265 => 'Dallas, TX',
|
||||
1214266 => 'Dallas, TX',
|
||||
1214267 => 'Dallas, TX',
|
||||
1214275 => 'Dallas, TX',
|
||||
1214296 => 'Dallas, TX',
|
||||
1214302 => 'Dallas, TX',
|
||||
1214303 => 'Dallas, TX',
|
||||
1214306 => 'Dallas, TX',
|
||||
1214309 => 'Dallas, TX',
|
||||
1214319 => 'Dallas, TX',
|
||||
1214320 => 'Dallas, TX',
|
||||
1214321 => 'Dallas, TX',
|
||||
1214324 => 'Dallas, TX',
|
||||
1214327 => 'Dallas, TX',
|
||||
1214328 => 'Dallas, TX',
|
||||
1214330 => 'Dallas, TX',
|
||||
1214331 => 'Dallas, TX',
|
||||
1214333 => 'Dallas, TX',
|
||||
1214337 => 'Dallas, TX',
|
||||
1214339 => 'Dallas, TX',
|
||||
1214340 => 'Dallas, TX',
|
||||
1214341 => 'Dallas, TX',
|
||||
1214342 => 'Dallas, TX',
|
||||
1214343 => 'Dallas, TX',
|
||||
1214345 => 'Dallas, TX',
|
||||
1214346 => 'Dallas, TX',
|
||||
1214348 => 'Dallas, TX',
|
||||
1214349 => 'Dallas, TX',
|
||||
1214350 => 'Dallas, TX',
|
||||
1214351 => 'Dallas, TX',
|
||||
1214352 => 'Dallas, TX',
|
||||
1214353 => 'Dallas, TX',
|
||||
1214357 => 'Dallas, TX',
|
||||
1214358 => 'Dallas, TX',
|
||||
1214360 => 'Dallas, TX',
|
||||
1214361 => 'Dallas, TX',
|
||||
1214363 => 'Dallas, TX',
|
||||
1214365 => 'Dallas, TX',
|
||||
1214366 => 'Dallas, TX',
|
||||
1214368 => 'Dallas, TX',
|
||||
1214369 => 'Dallas, TX',
|
||||
1214370 => 'Dallas, TX',
|
||||
1214371 => 'Dallas, TX',
|
||||
1214372 => 'Dallas, TX',
|
||||
1214373 => 'Dallas, TX',
|
||||
1214374 => 'Dallas, TX',
|
||||
1214375 => 'Dallas, TX',
|
||||
1214376 => 'Dallas, TX',
|
||||
1214378 => 'Dallas, TX',
|
||||
1214381 => 'Dallas, TX',
|
||||
1214383 => 'Allen, TX',
|
||||
1214387 => 'Frisco, TX',
|
||||
1214388 => 'Dallas, TX',
|
||||
1214389 => 'Dallas, TX',
|
||||
1214391 => 'Dallas, TX',
|
||||
1214393 => 'Dallas, TX',
|
||||
1214398 => 'Dallas, TX',
|
||||
1214420 => 'Dallas, TX',
|
||||
1214421 => 'Dallas, TX',
|
||||
1214426 => 'Dallas, TX',
|
||||
1214428 => 'Dallas, TX',
|
||||
1214436 => 'Frisco, TX',
|
||||
1214441 => 'Irving, TX',
|
||||
1214443 => 'Dallas, TX',
|
||||
1214456 => 'Dallas, TX',
|
||||
1214459 => 'Dallas, TX',
|
||||
1214467 => 'Dallas, TX',
|
||||
1214468 => 'Dallas, TX',
|
||||
1214473 => 'Plano, TX',
|
||||
1214483 => 'Carrollton, TX',
|
||||
1214484 => 'Dallas, TX',
|
||||
1214488 => 'Lewisville, TX',
|
||||
1214491 => 'McKinney, TX',
|
||||
1214492 => 'Irving, TX',
|
||||
1214495 => 'Allen, TX',
|
||||
1214503 => 'Dallas, TX',
|
||||
1214509 => 'Allen, TX',
|
||||
1214515 => 'Dallas, TX',
|
||||
1214520 => 'Dallas, TX',
|
||||
1214521 => 'Dallas, TX',
|
||||
1214522 => 'Dallas, TX',
|
||||
1214526 => 'Dallas, TX',
|
||||
1214528 => 'Dallas, TX',
|
||||
1214540 => 'Dallas, TX',
|
||||
1214544 => 'McKinney, TX',
|
||||
1214547 => 'Allen, TX',
|
||||
1214553 => 'Dallas, TX',
|
||||
1214559 => 'Dallas, TX',
|
||||
1214565 => 'Dallas, TX',
|
||||
1214570 => 'Dallas, TX',
|
||||
1214575 => 'Dallas, TX',
|
||||
1214585 => 'McKinney, TX',
|
||||
1214590 => 'Dallas, TX',
|
||||
1214592 => 'McKinney, TX',
|
||||
1214596 => 'Irving, TX',
|
||||
1214599 => 'Dallas, TX',
|
||||
1214607 => 'Rowlett, TX',
|
||||
1214618 => 'Frisco, TX',
|
||||
1214623 => 'Dallas, TX',
|
||||
1214630 => 'Dallas, TX',
|
||||
1214631 => 'Dallas, TX',
|
||||
1214634 => 'Dallas, TX',
|
||||
1214637 => 'Dallas, TX',
|
||||
1214638 => 'Dallas, TX',
|
||||
1214645 => 'Dallas, TX',
|
||||
1214648 => 'Dallas, TX',
|
||||
1214651 => 'Dallas, TX',
|
||||
1214653 => 'Dallas, TX',
|
||||
1214654 => 'Dallas, TX',
|
||||
1214660 => 'Dallas, TX',
|
||||
1214670 => 'Dallas, TX',
|
||||
1214672 => 'Dallas, TX',
|
||||
1214678 => 'Dallas, TX',
|
||||
1214688 => 'Dallas, TX',
|
||||
1214689 => 'Dallas, TX',
|
||||
1214691 => 'Dallas, TX',
|
||||
1214692 => 'Dallas, TX',
|
||||
1214696 => 'Dallas, TX',
|
||||
1214698 => 'Dallas, TX',
|
||||
1214703 => 'Garland, TX',
|
||||
1214706 => 'Dallas, TX',
|
||||
1214712 => 'Dallas, TX',
|
||||
1214720 => 'Dallas, TX',
|
||||
1214726 => 'McKinney, TX',
|
||||
1214739 => 'Dallas, TX',
|
||||
1214740 => 'Dallas, TX',
|
||||
1214741 => 'Dallas, TX',
|
||||
1214742 => 'Dallas, TX',
|
||||
1214744 => 'Dallas, TX',
|
||||
1214745 => 'Dallas, TX',
|
||||
1214747 => 'Dallas, TX',
|
||||
1214748 => 'Dallas, TX',
|
||||
1214749 => 'Dallas, TX',
|
||||
1214750 => 'Dallas, TX',
|
||||
1214752 => 'Dallas, TX',
|
||||
1214754 => 'Dallas, TX',
|
||||
1214760 => 'Dallas, TX',
|
||||
1214768 => 'Dallas, TX',
|
||||
1214771 => 'Rockwall, TX',
|
||||
1214778 => 'West Spring Creek Parkway, Plano, TX',
|
||||
1214780 => 'Dallas, TX',
|
||||
1214800 => 'Dallas, TX',
|
||||
1214818 => 'Dallas, TX',
|
||||
1214819 => 'Dallas, TX',
|
||||
1214820 => 'Dallas, TX',
|
||||
1214821 => 'Dallas, TX',
|
||||
1214823 => 'Dallas, TX',
|
||||
1214824 => 'Dallas, TX',
|
||||
1214826 => 'Dallas, TX',
|
||||
1214827 => 'Dallas, TX',
|
||||
1214828 => 'Dallas, TX',
|
||||
1214855 => 'Dallas, TX',
|
||||
1214857 => 'Dallas, TX',
|
||||
1214871 => 'Dallas, TX',
|
||||
1214872 => 'Frisco, TX',
|
||||
1214879 => 'Dallas, TX',
|
||||
1214880 => 'Dallas, TX',
|
||||
1214887 => 'Dallas, TX',
|
||||
1214890 => 'Dallas, TX',
|
||||
1214891 => 'Dallas, TX',
|
||||
1214902 => 'Dallas, TX',
|
||||
1214904 => 'Dallas, TX',
|
||||
1214905 => 'Dallas, TX',
|
||||
1214920 => 'Dallas, TX',
|
||||
1214922 => 'Dallas, TX',
|
||||
1214939 => 'Dallas, TX',
|
||||
1214941 => 'Dallas, TX',
|
||||
1214942 => 'Dallas, TX',
|
||||
1214943 => 'Dallas, TX',
|
||||
1214946 => 'Dallas, TX',
|
||||
1214947 => 'Dallas, TX',
|
||||
1214948 => 'Dallas, TX',
|
||||
1214951 => 'Dallas, TX',
|
||||
1214953 => 'Dallas, TX',
|
||||
1214954 => 'Dallas, TX',
|
||||
1214956 => 'Dallas, TX',
|
||||
1214965 => 'Dallas, TX',
|
||||
1214969 => 'Dallas, TX',
|
||||
1214978 => 'Dallas, TX',
|
||||
1214979 => 'Dallas, TX',
|
||||
1214987 => 'Dallas, TX',
|
||||
1214989 => 'Dallas, TX',
|
||||
1214999 => 'Dallas, TX',
|
||||
);
|
||||
258
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1215.php
vendored
Normal file
258
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1215.php
vendored
Normal file
@@ -0,0 +1,258 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1215 => 'Pennsylvania',
|
||||
1215203 => 'Philadelphia, PA',
|
||||
1215218 => 'Philadelphia, PA',
|
||||
1215221 => 'Philadelphia, PA',
|
||||
1215222 => 'Philadelphia, PA',
|
||||
1215223 => 'Philadelphia, PA',
|
||||
1215224 => 'Philadelphia, PA',
|
||||
1215225 => 'Philadelphia, PA',
|
||||
1215226 => 'Philadelphia, PA',
|
||||
1215227 => 'Philadelphia, PA',
|
||||
1215228 => 'Philadelphia, PA',
|
||||
1215229 => 'Philadelphia, PA',
|
||||
1215230 => 'Doylestown, PA',
|
||||
1215232 => 'Philadelphia, PA',
|
||||
1215235 => 'Philadelphia, PA',
|
||||
1215236 => 'Philadelphia, PA',
|
||||
1215238 => 'Philadelphia, PA',
|
||||
1215241 => 'Philadelphia, PA',
|
||||
1215242 => 'Philadelphia, PA',
|
||||
1215244 => 'Bensalem, PA',
|
||||
1215245 => 'Bensalem, PA',
|
||||
1215247 => 'Philadelphia, PA',
|
||||
1215248 => 'Philadelphia, PA',
|
||||
1215256 => 'Harleysville, PA',
|
||||
1215258 => 'Perkasie, PA',
|
||||
1215268 => 'Philadelphia, PA',
|
||||
1215271 => 'Philadelphia, PA',
|
||||
1215276 => 'Philadelphia, PA',
|
||||
1215279 => 'Philadelphia, PA',
|
||||
1215281 => 'Philadelphia, PA',
|
||||
1215282 => 'Cherry Street, Philadelphia, PA',
|
||||
1215288 => 'Philadelphia, PA',
|
||||
1215289 => 'Philadelphia, PA',
|
||||
1215291 => 'Philadelphia, PA',
|
||||
1215295 => 'Morrisville, PA',
|
||||
1215321 => 'Yardley, PA',
|
||||
1215324 => 'Philadelphia, PA',
|
||||
1215329 => 'Philadelphia, PA',
|
||||
1215331 => 'Philadelphia, PA',
|
||||
1215332 => 'Philadelphia, PA',
|
||||
1215333 => 'Philadelphia, PA',
|
||||
1215334 => 'Philadelphia, PA',
|
||||
1215335 => 'Philadelphia, PA',
|
||||
1215336 => 'Philadelphia, PA',
|
||||
1215338 => 'Philadelphia, PA',
|
||||
1215339 => 'Philadelphia, PA',
|
||||
1215340 => 'Doylestown, PA',
|
||||
1215342 => 'Philadelphia, PA',
|
||||
1215343 => 'Warrington, PA',
|
||||
1215345 => 'Doylestown, PA',
|
||||
1215348 => 'Doylestown, PA',
|
||||
1215349 => 'Philadelphia, PA',
|
||||
1215351 => 'Philadelphia, PA',
|
||||
1215361 => 'Lansdale, PA',
|
||||
1215362 => 'Lansdale, PA',
|
||||
1215365 => 'Philadelphia, PA',
|
||||
1215368 => 'Lansdale, PA',
|
||||
1215382 => 'Philadelphia, PA',
|
||||
1215386 => 'Philadelphia, PA',
|
||||
1215387 => 'Philadelphia, PA',
|
||||
1215389 => 'Philadelphia, PA',
|
||||
1215413 => 'Philadelphia, PA',
|
||||
1215423 => 'Philadelphia, PA',
|
||||
1215424 => 'Philadelphia, PA',
|
||||
1215425 => 'Philadelphia, PA',
|
||||
1215426 => 'Philadelphia, PA',
|
||||
1215427 => 'Philadelphia, PA',
|
||||
1215428 => 'Morrisville, PA',
|
||||
1215437 => 'Philadelphia, PA',
|
||||
1215438 => 'Philadelphia, PA',
|
||||
1215440 => 'Philadelphia, PA',
|
||||
1215453 => 'Sellersville, PA',
|
||||
1215455 => 'Philadelphia, PA',
|
||||
1215456 => 'Philadelphia, PA',
|
||||
1215457 => 'Philadelphia, PA',
|
||||
1215462 => 'Philadelphia, PA',
|
||||
1215463 => 'Philadelphia, PA',
|
||||
1215464 => 'Philadelphia, PA',
|
||||
1215465 => 'Philadelphia, PA',
|
||||
1215467 => 'Philadelphia, PA',
|
||||
1215468 => 'Philadelphia, PA',
|
||||
1215471 => 'Philadelphia, PA',
|
||||
1215472 => 'Philadelphia, PA',
|
||||
1215473 => 'Philadelphia, PA',
|
||||
1215474 => 'Philadelphia, PA',
|
||||
1215476 => 'Philadelphia, PA',
|
||||
1215477 => 'Philadelphia, PA',
|
||||
1215481 => 'Abington, PA',
|
||||
1215482 => 'Philadelphia, PA',
|
||||
1215483 => 'Philadelphia, PA',
|
||||
1215487 => 'Philadelphia, PA',
|
||||
1215489 => 'Doylestown, PA',
|
||||
1215491 => 'Warrington, PA',
|
||||
1215492 => 'Philadelphia, PA',
|
||||
1215493 => 'Yardley, PA',
|
||||
1215496 => 'Philadelphia, PA',
|
||||
1215497 => 'Newtown, PA',
|
||||
1215503 => 'Philadelphia, PA',
|
||||
1215504 => 'Newtown, PA',
|
||||
1215508 => 'Philadelphia, PA',
|
||||
1215513 => 'Harleysville, PA',
|
||||
1215529 => 'Quakertown, PA',
|
||||
1215533 => 'Philadelphia, PA',
|
||||
1215535 => 'Philadelphia, PA',
|
||||
1215536 => 'Quakertown, PA',
|
||||
1215537 => 'Philadelphia, PA',
|
||||
1215538 => 'Quakertown, PA',
|
||||
1215543 => 'Philadelphia, PA',
|
||||
1215545 => 'Philadelphia, PA',
|
||||
1215546 => 'Philadelphia, PA',
|
||||
1215547 => 'Levittown, PA',
|
||||
1215548 => 'Philadelphia, PA',
|
||||
1215549 => 'Philadelphia, PA',
|
||||
1215551 => 'Philadelphia, PA',
|
||||
1215557 => 'Philadelphia, PA',
|
||||
1215561 => 'Philadelphia, PA',
|
||||
1215563 => 'Philadelphia, PA',
|
||||
1215564 => 'Philadelphia, PA',
|
||||
1215567 => 'Philadelphia, PA',
|
||||
1215568 => 'Philadelphia, PA',
|
||||
1215569 => 'Philadelphia, PA',
|
||||
1215574 => 'Philadelphia, PA',
|
||||
1215575 => 'Philadelphia, PA',
|
||||
1215579 => 'Newtown, PA',
|
||||
1215587 => 'Philadelphia, PA',
|
||||
1215590 => 'Philadelphia, PA',
|
||||
1215592 => 'Philadelphia, PA',
|
||||
1215612 => 'Philadelphia, PA',
|
||||
1215613 => 'Philadelphia, PA',
|
||||
1215615 => 'Philadelphia, PA',
|
||||
1215624 => 'Philadelphia, PA',
|
||||
1215625 => 'Philadelphia, PA',
|
||||
1215627 => 'Philadelphia, PA',
|
||||
1215629 => 'Philadelphia, PA',
|
||||
1215632 => 'Philadelphia, PA',
|
||||
1215633 => 'Bensalem, PA',
|
||||
1215634 => 'Philadelphia, PA',
|
||||
1215635 => 'Elkins Park, PA',
|
||||
1215636 => 'Philadelphia, PA',
|
||||
1215637 => 'Philadelphia, PA',
|
||||
1215638 => 'Bensalem, PA',
|
||||
1215639 => 'Bensalem, PA',
|
||||
1215657 => 'Willow Grove, PA',
|
||||
1215659 => 'Willow Grove, PA',
|
||||
1215662 => 'Philadelphia, PA',
|
||||
1215665 => 'Philadelphia, PA',
|
||||
1215671 => 'Philadelphia, PA',
|
||||
1215673 => 'Philadelphia, PA',
|
||||
1215676 => 'Philadelphia, PA',
|
||||
1215677 => 'Philadelphia, PA',
|
||||
1215684 => 'Philadelphia, PA',
|
||||
1215685 => 'Philadelphia, PA',
|
||||
1215686 => 'Philadelphia, PA',
|
||||
1215698 => 'Philadelphia, PA',
|
||||
1215699 => 'North Wales, PA',
|
||||
1215702 => 'Langhorne, PA',
|
||||
1215707 => 'Philadelphia, PA',
|
||||
1215708 => 'Philadelphia, PA',
|
||||
1215710 => 'Langhorne, PA',
|
||||
1215721 => 'Souderton, PA',
|
||||
1215722 => 'Philadelphia, PA',
|
||||
1215723 => 'Souderton, PA',
|
||||
1215724 => 'Philadelphia, PA',
|
||||
1215725 => 'Philadelphia, PA',
|
||||
1215726 => 'Philadelphia, PA',
|
||||
1215727 => 'Philadelphia, PA',
|
||||
1215728 => 'Philadelphia, PA',
|
||||
1215729 => 'Philadelphia, PA',
|
||||
1215731 => 'Philadelphia, PA',
|
||||
1215732 => 'Philadelphia, PA',
|
||||
1215735 => 'Philadelphia, PA',
|
||||
1215736 => 'Morrisville, PA',
|
||||
1215739 => 'Philadelphia, PA',
|
||||
1215741 => 'Langhorne, PA',
|
||||
1215742 => 'Philadelphia, PA',
|
||||
1215743 => 'Philadelphia, PA',
|
||||
1215744 => 'Philadelphia, PA',
|
||||
1215745 => 'Philadelphia, PA',
|
||||
1215746 => 'Philadelphia, PA',
|
||||
1215747 => 'Philadelphia, PA',
|
||||
1215748 => 'Philadelphia, PA',
|
||||
1215750 => 'Langhorne, PA',
|
||||
1215751 => 'Philadelphia, PA',
|
||||
1215752 => 'Langhorne, PA',
|
||||
1215755 => 'Philadelphia, PA',
|
||||
1215757 => 'Langhorne, PA',
|
||||
1215762 => 'Philadelphia, PA',
|
||||
1215763 => 'Philadelphia, PA',
|
||||
1215765 => 'Philadelphia, PA',
|
||||
1215769 => 'Philadelphia, PA',
|
||||
1215772 => 'Philadelphia, PA',
|
||||
1215781 => 'Bristol, PA',
|
||||
1215782 => 'Elkins Park, PA',
|
||||
1215784 => 'Willow Grove, PA',
|
||||
1215785 => 'Bristol, PA',
|
||||
1215787 => 'Philadelphia, PA',
|
||||
1215788 => 'Bristol, PA',
|
||||
1215790 => 'Philadelphia, PA',
|
||||
1215821 => 'Philadelphia, PA',
|
||||
1215823 => 'Philadelphia, PA',
|
||||
1215824 => 'Philadelphia, PA',
|
||||
1215829 => 'Philadelphia, PA',
|
||||
1215830 => 'Willow Grove, PA',
|
||||
1215831 => 'Philadelphia, PA',
|
||||
1215842 => 'Philadelphia, PA',
|
||||
1215843 => 'Philadelphia, PA',
|
||||
1215844 => 'Philadelphia, PA',
|
||||
1215848 => 'Philadelphia, PA',
|
||||
1215849 => 'Philadelphia, PA',
|
||||
1215851 => 'Philadelphia, PA',
|
||||
1215854 => 'Philadelphia, PA',
|
||||
1215855 => 'Lansdale, PA',
|
||||
1215856 => 'Philadelphia, PA',
|
||||
1215860 => 'Newtown, PA',
|
||||
1215862 => 'New Hope, PA',
|
||||
1215864 => 'Philadelphia, PA',
|
||||
1215871 => 'Philadelphia, PA',
|
||||
1215875 => 'Philadelphia, PA',
|
||||
1215877 => 'Philadelphia, PA',
|
||||
1215878 => 'Philadelphia, PA',
|
||||
1215879 => 'Philadelphia, PA',
|
||||
1215891 => 'Langhorne, PA',
|
||||
1215893 => 'Philadelphia, PA',
|
||||
1215898 => 'Philadelphia, PA',
|
||||
1215904 => 'Philadelphia, PA',
|
||||
1215914 => 'Huntingdon Vly, PA',
|
||||
1215918 => 'Warrington, PA',
|
||||
1215921 => 'Philadelphia, PA',
|
||||
1215922 => 'Philadelphia, PA',
|
||||
1215923 => 'Philadelphia, PA',
|
||||
1215924 => 'Philadelphia, PA',
|
||||
1215925 => 'Philadelphia, PA',
|
||||
1215927 => 'Philadelphia, PA',
|
||||
1215928 => 'Philadelphia, PA',
|
||||
1215941 => 'Philadelphia, PA',
|
||||
1215943 => 'Levittown, PA',
|
||||
1215945 => 'Levittown, PA',
|
||||
1215946 => 'Levittown, PA',
|
||||
1215949 => 'Levittown, PA',
|
||||
1215951 => 'Philadelphia, PA',
|
||||
1215952 => 'Philadelphia, PA',
|
||||
1215955 => 'Philadelphia, PA',
|
||||
1215963 => 'Philadelphia, PA',
|
||||
1215968 => 'Newtown, PA',
|
||||
1215969 => 'Philadelphia, PA',
|
||||
1215972 => 'Philadelphia, PA',
|
||||
1215977 => 'Philadelphia, PA',
|
||||
1215978 => 'Philadelphia, PA',
|
||||
1215985 => 'Philadelphia, PA',
|
||||
1215988 => 'Philadelphia, PA',
|
||||
);
|
||||
129
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1216.php
vendored
Normal file
129
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1216.php
vendored
Normal file
@@ -0,0 +1,129 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1216 => 'Ohio',
|
||||
1216229 => 'Cleveland, OH',
|
||||
1216231 => 'Cleveland, OH',
|
||||
1216241 => 'Cleveland, OH',
|
||||
1216249 => 'Cleveland, OH',
|
||||
1216251 => 'Cleveland, OH',
|
||||
1216252 => 'Cleveland, OH',
|
||||
1216261 => 'Cleveland, OH',
|
||||
1216265 => 'Cleveland, OH',
|
||||
1216267 => 'Cleveland, OH',
|
||||
1216268 => 'Cleveland, OH',
|
||||
1216271 => 'Cleveland, OH',
|
||||
1216281 => 'Cleveland, OH',
|
||||
1216283 => 'Cleveland, OH',
|
||||
1216289 => 'Cleveland, OH',
|
||||
1216291 => 'Cleveland, OH',
|
||||
1216292 => 'Cleveland, OH',
|
||||
1216297 => 'Cleveland, OH',
|
||||
1216298 => 'Cleveland, OH',
|
||||
1216320 => 'Cleveland, OH',
|
||||
1216321 => 'Cleveland, OH',
|
||||
1216328 => 'Cleveland, OH',
|
||||
1216332 => 'Cleveland, OH',
|
||||
1216341 => 'Cleveland, OH',
|
||||
1216344 => 'Cleveland, OH',
|
||||
1216348 => 'Cleveland, OH',
|
||||
1216351 => 'Cleveland, OH',
|
||||
1216360 => 'Cleveland, OH',
|
||||
1216361 => 'Cleveland, OH',
|
||||
1216362 => 'Cleveland, OH',
|
||||
1216363 => 'Cleveland, OH',
|
||||
1216368 => 'Cleveland, OH',
|
||||
1216371 => 'Cleveland, OH',
|
||||
1216378 => 'Cleveland, OH',
|
||||
1216381 => 'Cleveland, OH',
|
||||
1216382 => 'Cleveland, OH',
|
||||
1216383 => 'Cleveland, OH',
|
||||
1216391 => 'Cleveland, OH',
|
||||
1216397 => 'Cleveland, OH',
|
||||
1216398 => 'Cleveland, OH',
|
||||
1216421 => 'Cleveland, OH',
|
||||
1216426 => 'Cleveland, OH',
|
||||
1216429 => 'Cleveland, OH',
|
||||
1216431 => 'Cleveland, OH',
|
||||
1216432 => 'Cleveland, OH',
|
||||
1216433 => 'Cleveland, OH',
|
||||
1216441 => 'Cleveland, OH',
|
||||
1216443 => 'Cleveland, OH',
|
||||
1216444 => 'Cleveland, OH',
|
||||
1216445 => 'Cleveland, OH',
|
||||
1216451 => 'Cleveland, OH',
|
||||
1216459 => 'Cleveland, OH',
|
||||
1216464 => 'Cleveland, OH',
|
||||
1216475 => 'Cleveland, OH',
|
||||
1216476 => 'Cleveland, OH',
|
||||
1216479 => 'Cleveland, OH',
|
||||
1216481 => 'Cleveland, OH',
|
||||
1216486 => 'Cleveland, OH',
|
||||
1216514 => 'Cleveland, OH',
|
||||
1216515 => 'Cleveland, OH',
|
||||
1216518 => 'Cleveland, OH',
|
||||
1216522 => 'Cleveland, OH',
|
||||
1216529 => 'Cleveland, OH',
|
||||
1216531 => 'Cleveland, OH',
|
||||
1216541 => 'Cleveland, OH',
|
||||
1216561 => 'Cleveland, OH',
|
||||
1216566 => 'Cleveland, OH',
|
||||
1216574 => 'Cleveland, OH',
|
||||
1216579 => 'Cleveland, OH',
|
||||
1216581 => 'Cleveland, OH',
|
||||
1216583 => 'Cleveland, OH',
|
||||
1216586 => 'Cleveland, OH',
|
||||
1216587 => 'Cleveland, OH',
|
||||
1216589 => 'Cleveland, OH',
|
||||
1216595 => 'Cleveland, OH',
|
||||
1216621 => 'Cleveland, OH',
|
||||
1216622 => 'Cleveland, OH',
|
||||
1216623 => 'Cleveland, OH',
|
||||
1216631 => 'Cleveland, OH',
|
||||
1216641 => 'Cleveland, OH',
|
||||
1216642 => 'Cleveland, OH',
|
||||
1216651 => 'Cleveland, OH',
|
||||
1216661 => 'Cleveland, OH',
|
||||
1216662 => 'Cleveland, OH',
|
||||
1216663 => 'Cleveland, OH',
|
||||
1216664 => 'Cleveland, OH',
|
||||
1216671 => 'Cleveland, OH',
|
||||
1216676 => 'Cleveland, OH',
|
||||
1216681 => 'Cleveland, OH',
|
||||
1216687 => 'Cleveland, OH',
|
||||
1216688 => 'Cleveland, OH',
|
||||
1216691 => 'Cleveland, OH',
|
||||
1216692 => 'Cleveland, OH',
|
||||
1216696 => 'Cleveland, OH',
|
||||
1216721 => 'Cleveland, OH',
|
||||
1216731 => 'Cleveland, OH',
|
||||
1216741 => 'Cleveland, OH',
|
||||
1216749 => 'Cleveland, OH',
|
||||
1216751 => 'Cleveland, OH',
|
||||
1216752 => 'Cleveland, OH',
|
||||
1216761 => 'Cleveland, OH',
|
||||
1216765 => 'Cleveland, OH',
|
||||
1216771 => 'Cleveland, OH',
|
||||
1216778 => 'Cleveland, OH',
|
||||
1216781 => 'Cleveland, OH',
|
||||
1216791 => 'Cleveland, OH',
|
||||
1216844 => 'Cleveland, OH',
|
||||
1216851 => 'Cleveland, OH',
|
||||
1216861 => 'Cleveland, OH',
|
||||
1216862 => 'Cleveland, OH',
|
||||
1216881 => 'Cleveland, OH',
|
||||
1216883 => 'Cleveland, OH',
|
||||
1216896 => 'Cleveland, OH',
|
||||
1216898 => 'Cleveland, OH',
|
||||
1216921 => 'Cleveland, OH',
|
||||
1216932 => 'Cleveland, OH',
|
||||
1216941 => 'Cleveland, OH',
|
||||
1216957 => 'Cleveland, OH',
|
||||
1216961 => 'Cleveland, OH',
|
||||
1216986 => 'Cleveland, OH',
|
||||
1216991 => 'Cleveland, OH',
|
||||
);
|
||||
141
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1217.php
vendored
Normal file
141
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1217.php
vendored
Normal file
@@ -0,0 +1,141 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1217 => 'Illinois',
|
||||
1217222 => 'Quincy, IL',
|
||||
1217223 => 'Quincy, IL',
|
||||
1217224 => 'Quincy, IL',
|
||||
1217226 => 'Assumption, IL',
|
||||
1217228 => 'Quincy, IL',
|
||||
1217229 => 'Raymond, IL',
|
||||
1217234 => 'Mattoon, IL',
|
||||
1217235 => 'Mattoon, IL',
|
||||
1217239 => 'Champaign, IL',
|
||||
1217241 => 'Springfield, IL',
|
||||
1217243 => 'Jacksonville, IL',
|
||||
1217245 => 'Jacksonville, IL',
|
||||
1217253 => 'Tuscola, IL',
|
||||
1217258 => 'Mattoon, IL',
|
||||
1217267 => 'Westville, IL',
|
||||
1217268 => 'Arcola, IL',
|
||||
1217283 => 'Hoopeston, IL',
|
||||
1217285 => 'Pittsfield, IL',
|
||||
1217287 => 'Taylorville, IL',
|
||||
1217322 => 'Rushville, IL',
|
||||
1217323 => 'Beardstown, IL',
|
||||
1217324 => 'Litchfield, IL',
|
||||
1217326 => 'Champaign, IL',
|
||||
1217328 => 'Urbana, IL',
|
||||
1217330 => 'Decatur, IL',
|
||||
1217333 => 'Urbana, IL',
|
||||
1217337 => 'Urbana, IL',
|
||||
1217342 => 'Effingham, IL',
|
||||
1217344 => 'Urbana, IL',
|
||||
1217345 => 'Charleston, IL',
|
||||
1217346 => 'Oakland, IL',
|
||||
1217347 => 'Effingham, IL',
|
||||
1217348 => 'Charleston, IL',
|
||||
1217351 => 'Champaign, IL',
|
||||
1217352 => 'Champaign, IL',
|
||||
1217355 => 'Champaign, IL',
|
||||
1217356 => 'Champaign, IL',
|
||||
1217357 => 'Carthage, IL',
|
||||
1217359 => 'Champaign, IL',
|
||||
1217366 => 'Champaign, IL',
|
||||
1217367 => 'Urbana, IL',
|
||||
1217373 => 'Champaign, IL',
|
||||
1217374 => 'White Hall, IL',
|
||||
1217379 => 'Paxton, IL',
|
||||
1217382 => 'Martinsville, IL',
|
||||
1217383 => 'Urbana, IL',
|
||||
1217384 => 'Urbana, IL',
|
||||
1217398 => 'Champaign, IL',
|
||||
1217422 => 'Decatur, IL',
|
||||
1217423 => 'Decatur, IL',
|
||||
1217424 => 'Decatur, IL',
|
||||
1217425 => 'Decatur, IL',
|
||||
1217428 => 'Decatur, IL',
|
||||
1217429 => 'Decatur, IL',
|
||||
1217431 => 'Danville, IL',
|
||||
1217438 => 'Auburn, IL',
|
||||
1217442 => 'Danville, IL',
|
||||
1217443 => 'Danville, IL',
|
||||
1217446 => 'Danville, IL',
|
||||
1217452 => 'Virginia, IL',
|
||||
1217453 => 'Nauvoo, IL',
|
||||
1217463 => 'Paris, IL',
|
||||
1217464 => 'Decatur, IL',
|
||||
1217465 => 'Paris, IL',
|
||||
1217466 => 'Paris, IL',
|
||||
1217469 => 'St. Joseph, IL',
|
||||
1217479 => 'Jacksonville, IL',
|
||||
1217482 => 'Mason City, IL',
|
||||
1217483 => 'Chatham, IL',
|
||||
1217498 => 'Rochester, IL',
|
||||
1217522 => 'Springfield, IL',
|
||||
1217523 => 'Springfield, IL',
|
||||
1217525 => 'Springfield, IL',
|
||||
1217528 => 'Springfield, IL',
|
||||
1217529 => 'Springfield, IL',
|
||||
1217532 => 'Hillsboro, IL',
|
||||
1217536 => 'Effingham, IL',
|
||||
1217543 => 'Arthur, IL',
|
||||
1217544 => 'Springfield, IL',
|
||||
1217545 => 'Springfield, IL',
|
||||
1217546 => 'Springfield, IL',
|
||||
1217554 => 'Danville, IL',
|
||||
1217562 => 'Pana, IL',
|
||||
1217563 => 'Nokomis, IL',
|
||||
1217585 => 'Springfield, IL',
|
||||
1217586 => 'Mahomet, IL',
|
||||
1217607 => 'Champaign, IL',
|
||||
1217627 => 'Girard, IL',
|
||||
1217629 => 'Riverton, IL',
|
||||
1217632 => 'Petersburg, IL',
|
||||
1217662 => 'Georgetown, IL',
|
||||
1217670 => 'Springfield, IL',
|
||||
1217679 => 'Springfield, IL',
|
||||
1217698 => 'Springfield, IL',
|
||||
1217726 => 'Springfield, IL',
|
||||
1217728 => 'Sullivan, IL',
|
||||
1217732 => 'Lincoln, IL',
|
||||
1217735 => 'Lincoln, IL',
|
||||
1217742 => 'Winchester, IL',
|
||||
1217744 => 'Springfield, IL',
|
||||
1217753 => 'Springfield, IL',
|
||||
1217762 => 'Monticello, IL',
|
||||
1217768 => 'Moweaqua, IL',
|
||||
1217773 => 'Mount Sterling, IL',
|
||||
1217774 => 'Shelbyville, IL',
|
||||
1217782 => 'Springfield, IL',
|
||||
1217784 => 'Gibson City, IL',
|
||||
1217787 => 'Springfield, IL',
|
||||
1217788 => 'Springfield, IL',
|
||||
1217789 => 'Springfield, IL',
|
||||
1217792 => 'Mount Pulaski, IL',
|
||||
1217793 => 'Springfield, IL',
|
||||
1217824 => 'Taylorville, IL',
|
||||
1217826 => 'Marshall, IL',
|
||||
1217832 => 'Villa Grove, IL',
|
||||
1217839 => 'Gillespie, IL',
|
||||
1217847 => 'Hamilton, IL',
|
||||
1217849 => 'Toledo, IL',
|
||||
1217854 => 'Carlinville, IL',
|
||||
1217857 => 'Teutopolis, IL',
|
||||
1217872 => 'Decatur, IL',
|
||||
1217875 => 'Decatur, IL',
|
||||
1217876 => 'Decatur, IL',
|
||||
1217877 => 'Decatur, IL',
|
||||
1217892 => 'Rantoul, IL',
|
||||
1217893 => 'Rantoul, IL',
|
||||
1217895 => 'Neoga, IL',
|
||||
1217923 => 'Greenup, IL',
|
||||
1217932 => 'Casey, IL',
|
||||
1217935 => 'Clinton, IL',
|
||||
1217942 => 'Carrollton, IL',
|
||||
1217965 => 'Virden, IL',
|
||||
);
|
||||
128
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1218.php
vendored
Normal file
128
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1218.php
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1218 => 'Minnesota',
|
||||
1218224 => 'Laporte, MN',
|
||||
1218226 => 'Silver Bay, MN',
|
||||
1218229 => 'Aurora, MN',
|
||||
1218233 => 'Moorhead, MN',
|
||||
1218236 => 'Moorhead, MN',
|
||||
1218237 => 'Park Rapids, MN',
|
||||
1218238 => 'Lake Park, MN',
|
||||
1218246 => 'Deer River, MN',
|
||||
1218249 => 'Duluth, MN',
|
||||
1218253 => 'Red Lake Falls, MN',
|
||||
1218254 => 'Chisholm, MN',
|
||||
1218262 => 'Hibbing, MN',
|
||||
1218263 => 'Hibbing, MN',
|
||||
1218281 => 'Crookston, MN',
|
||||
1218283 => 'Internatl Falls, MN',
|
||||
1218285 => 'Internatl Falls, MN',
|
||||
1218287 => 'Moorhead, MN',
|
||||
1218299 => 'Moorhead, MN',
|
||||
1218326 => 'Grand Rapids, MN',
|
||||
1218327 => 'Grand Rapids, MN',
|
||||
1218333 => 'Bemidji, MN',
|
||||
1218334 => 'Frazee, MN',
|
||||
1218335 => 'Cass Lake, MN',
|
||||
1218338 => 'Parkers Prairie, MN',
|
||||
1218342 => 'Vergas, MN',
|
||||
1218346 => 'Perham, MN',
|
||||
1218348 => 'Duluth, MN',
|
||||
1218354 => 'Barnesville, MN',
|
||||
1218363 => 'Longville, MN',
|
||||
1218365 => 'Ely, MN',
|
||||
1218367 => 'Ottertail, MN',
|
||||
1218384 => 'Carlton, MN',
|
||||
1218385 => 'New York Mills, MN',
|
||||
1218386 => 'Warroad, MN',
|
||||
1218387 => 'Grand Marais, MN',
|
||||
1218435 => 'Fosston, MN',
|
||||
1218436 => 'Karlstad, MN',
|
||||
1218444 => 'Bemidji, MN',
|
||||
1218454 => 'Brainerd, MN',
|
||||
1218463 => 'Roseau, MN',
|
||||
1218464 => 'Duluth, MN',
|
||||
1218483 => 'Hawley, MN',
|
||||
1218485 => 'Moose Lake, MN',
|
||||
1218525 => 'Duluth, MN',
|
||||
1218546 => 'Crosby, MN',
|
||||
1218547 => 'Walker, MN',
|
||||
1218564 => 'Menahga, MN',
|
||||
1218566 => 'Remer, MN',
|
||||
1218568 => 'Pequot Lakes, MN',
|
||||
1218583 => 'Henning, MN',
|
||||
1218587 => 'Pine River, MN',
|
||||
1218624 => 'Duluth, MN',
|
||||
1218625 => 'Duluth, MN',
|
||||
1218626 => 'Duluth, MN',
|
||||
1218628 => 'Duluth, MN',
|
||||
1218631 => 'Wadena, MN',
|
||||
1218634 => 'Baudette, MN',
|
||||
1218643 => 'Breckenridge, MN',
|
||||
1218652 => 'Nevis, MN',
|
||||
1218666 => 'Cook, MN',
|
||||
1218675 => 'Hackensack, MN',
|
||||
1218679 => 'Red Lake, MN',
|
||||
1218681 => 'Thief River Fls, MN',
|
||||
1218685 => 'Elbow Lake, MN',
|
||||
1218687 => 'Erskine, MN',
|
||||
1218692 => 'Crosslake, MN',
|
||||
1218694 => 'Bagley, MN',
|
||||
1218720 => 'Duluth, MN',
|
||||
1218721 => 'Duluth, MN',
|
||||
1218722 => 'Duluth, MN',
|
||||
1218723 => 'Duluth, MN',
|
||||
1218724 => 'Duluth, MN',
|
||||
1218726 => 'Duluth, MN',
|
||||
1218727 => 'Duluth, MN',
|
||||
1218728 => 'Duluth, MN',
|
||||
1218730 => 'Duluth, MN',
|
||||
1218732 => 'Park Rapids, MN',
|
||||
1218733 => 'Duluth, MN',
|
||||
1218736 => 'Fergus Falls, MN',
|
||||
1218739 => 'Fergus Falls, MN',
|
||||
1218740 => 'Duluth, MN',
|
||||
1218741 => 'Virginia, MN',
|
||||
1218743 => 'Bigfork, MN',
|
||||
1218744 => 'Eveleth, MN',
|
||||
1218745 => 'Warren, MN',
|
||||
1218746 => 'Pillager, MN',
|
||||
1218749 => 'Virginia, MN',
|
||||
1218751 => 'Bemidji, MN',
|
||||
1218753 => 'Tower, MN',
|
||||
1218759 => 'Bemidji, MN',
|
||||
1218763 => 'Emily, MN',
|
||||
1218768 => 'McGregor, MN',
|
||||
1218773 => 'East Grand Forks, MN',
|
||||
1218782 => 'Greenbush, MN',
|
||||
1218784 => 'Ada, MN',
|
||||
1218786 => 'Duluth, MN',
|
||||
1218824 => 'Brainerd, MN',
|
||||
1218825 => 'Brainerd, MN',
|
||||
1218828 => 'Brainerd, MN',
|
||||
1218829 => 'Brainerd, MN',
|
||||
1218834 => 'Two Harbors, MN',
|
||||
1218835 => 'Blackduck, MN',
|
||||
1218843 => 'Hallock, MN',
|
||||
1218844 => 'Detroit Lakes, MN',
|
||||
1218846 => 'Detroit Lakes, MN',
|
||||
1218847 => 'Detroit Lakes, MN',
|
||||
1218863 => 'Pelican Rapids, MN',
|
||||
1218864 => 'Battle Lake, MN',
|
||||
1218878 => 'Cloquet, MN',
|
||||
1218879 => 'Cloquet, MN',
|
||||
1218885 => 'Nashwauk, MN',
|
||||
1218894 => 'Staples, MN',
|
||||
1218927 => 'Aitkin, MN',
|
||||
1218935 => 'Mahnomen, MN',
|
||||
1218945 => 'Fertile, MN',
|
||||
1218963 => 'Nisswa, MN',
|
||||
1218983 => 'Ogema, MN',
|
||||
1218998 => 'Fergus Falls, MN',
|
||||
1218999 => 'Grand Rapids, MN',
|
||||
);
|
||||
99
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1219.php
vendored
Normal file
99
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1219.php
vendored
Normal file
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1219 => 'Indiana',
|
||||
1219226 => 'Crown Point, IN',
|
||||
1219227 => 'Schererville, IN',
|
||||
1219253 => 'Monon, IN',
|
||||
1219261 => 'Remington, IN',
|
||||
1219263 => 'Valparaiso, IN',
|
||||
1219279 => 'Wolcott, IN',
|
||||
1219285 => 'Morocco, IN',
|
||||
1219322 => 'Schererville, IN',
|
||||
1219324 => 'La Porte, IN',
|
||||
1219325 => 'La Porte, IN',
|
||||
1219326 => 'La Porte, IN',
|
||||
1219345 => 'De Motte, IN',
|
||||
1219362 => 'La Porte, IN',
|
||||
1219365 => 'St. John, IN',
|
||||
1219369 => 'La Porte, IN',
|
||||
1219374 => 'Cedar Lake, IN',
|
||||
1219392 => 'East Chicago, IN',
|
||||
1219395 => 'Chesterton, IN',
|
||||
1219397 => 'East Chicago, IN',
|
||||
1219398 => 'East Chicago, IN',
|
||||
1219462 => 'Valparaiso, IN',
|
||||
1219464 => 'Valparaiso, IN',
|
||||
1219465 => 'Valparaiso, IN',
|
||||
1219472 => 'Merrillville, IN',
|
||||
1219473 => 'Whiting, IN',
|
||||
1219474 => 'Kentland, IN',
|
||||
1219476 => 'Valparaiso, IN',
|
||||
1219477 => 'Valparaiso, IN',
|
||||
1219513 => 'Munster, IN',
|
||||
1219531 => 'Valparaiso, IN',
|
||||
1219548 => 'Valparaiso, IN',
|
||||
1219659 => 'Whiting, IN',
|
||||
1219661 => 'Crown Point, IN',
|
||||
1219662 => 'Crown Point, IN',
|
||||
1219663 => 'Crown Point, IN',
|
||||
1219696 => 'Lowell, IN',
|
||||
1219733 => 'Wanatah, IN',
|
||||
1219736 => 'Merrillville, IN',
|
||||
1219738 => 'Merrillville, IN',
|
||||
1219756 => 'Merrillville, IN',
|
||||
1219757 => 'Crown Point, IN',
|
||||
1219759 => 'Valparaiso, IN',
|
||||
1219762 => 'Portage, IN',
|
||||
1219763 => 'Portage, IN',
|
||||
1219764 => 'Portage, IN',
|
||||
1219766 => 'Kouts, IN',
|
||||
1219769 => 'Merrillville, IN',
|
||||
1219778 => 'Rolling Prairie, IN',
|
||||
1219785 => 'Westville, IN',
|
||||
1219791 => 'Merrillville, IN',
|
||||
1219836 => 'Munster, IN',
|
||||
1219838 => 'Highland, IN',
|
||||
1219844 => 'Hammond, IN',
|
||||
1219845 => 'Hammond, IN',
|
||||
1219852 => 'Hammond, IN',
|
||||
1219853 => 'Hammond, IN',
|
||||
1219864 => 'Schererville, IN',
|
||||
1219866 => 'Rensselaer, IN',
|
||||
1219872 => 'Michigan City, IN',
|
||||
1219873 => 'Michigan City, IN',
|
||||
1219874 => 'Michigan City, IN',
|
||||
1219878 => 'Michigan City, IN',
|
||||
1219879 => 'Michigan City, IN',
|
||||
1219881 => 'Gary, IN',
|
||||
1219882 => 'Gary, IN',
|
||||
1219884 => 'Gary, IN',
|
||||
1219885 => 'Gary, IN',
|
||||
1219886 => 'Gary, IN',
|
||||
1219887 => 'Gary, IN',
|
||||
1219921 => 'Chesterton, IN',
|
||||
1219923 => 'Highland, IN',
|
||||
1219926 => 'Chesterton, IN',
|
||||
1219931 => 'Hammond, IN',
|
||||
1219932 => 'Hammond, IN',
|
||||
1219933 => 'Hammond, IN',
|
||||
1219937 => 'Hammond, IN',
|
||||
1219938 => 'Gary, IN',
|
||||
1219942 => 'Hobart, IN',
|
||||
1219944 => 'Gary, IN',
|
||||
1219945 => 'Hobart, IN',
|
||||
1219947 => 'Hobart, IN',
|
||||
1219949 => 'Gary, IN',
|
||||
1219956 => 'Wheatfield, IN',
|
||||
1219962 => 'Lake Station, IN',
|
||||
1219972 => 'Highland, IN',
|
||||
1219977 => 'Gary, IN',
|
||||
1219980 => 'Gary, IN',
|
||||
1219987 => 'De Motte, IN',
|
||||
1219989 => 'Hammond, IN',
|
||||
1219996 => 'Hebron, IN',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1220.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1220.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1220 => 'Ohio',
|
||||
);
|
||||
11
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1224.php
vendored
Normal file
11
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1224.php
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1224 => 'Illinois',
|
||||
1224610 => 'North Chicago, IL',
|
||||
1224653 => 'Schaumburg, IL',
|
||||
);
|
||||
107
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1225.php
vendored
Normal file
107
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1225.php
vendored
Normal file
@@ -0,0 +1,107 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1225 => 'Louisiana',
|
||||
1225201 => 'Baton Rouge, LA',
|
||||
1225214 => 'Baton Rouge, LA',
|
||||
1225216 => 'Baton Rouge, LA',
|
||||
1225218 => 'Baton Rouge, LA',
|
||||
1225222 => 'Greensburg, LA',
|
||||
1225231 => 'Baton Rouge, LA',
|
||||
1225243 => 'Denham Springs, LA',
|
||||
1225246 => 'Baton Rouge, LA',
|
||||
1225248 => 'Baton Rouge, LA',
|
||||
1225261 => 'Baton Rouge, LA',
|
||||
1225262 => 'Baton Rouge, LA',
|
||||
1225265 => 'Vacherie, LA',
|
||||
1225271 => 'Denham Springs, LA',
|
||||
1225272 => 'Baton Rouge, LA',
|
||||
1225273 => 'Baton Rouge, LA',
|
||||
1225275 => 'Baton Rouge, LA',
|
||||
1225291 => 'Baton Rouge, LA',
|
||||
1225292 => 'Baton Rouge, LA',
|
||||
1225293 => 'Baton Rouge, LA',
|
||||
1225294 => 'Springfield, LA',
|
||||
1225295 => 'Baton Rouge, LA',
|
||||
1225296 => 'Baton Rouge, LA',
|
||||
1225298 => 'Baton Rouge, LA',
|
||||
1225302 => 'Baton Rouge, LA',
|
||||
1225336 => 'Baton Rouge, LA',
|
||||
1225341 => 'Baton Rouge, LA',
|
||||
1225342 => 'Baton Rouge, LA',
|
||||
1225343 => 'Baton Rouge, LA',
|
||||
1225344 => 'Baton Rouge, LA',
|
||||
1225346 => 'Baton Rouge, LA',
|
||||
1225355 => 'Baton Rouge, LA',
|
||||
1225356 => 'Baton Rouge, LA',
|
||||
1225357 => 'Baton Rouge, LA',
|
||||
1225358 => 'Baton Rouge, LA',
|
||||
1225372 => 'Baton Rouge, LA',
|
||||
1225381 => 'Baton Rouge, LA',
|
||||
1225382 => 'Baton Rouge, LA',
|
||||
1225383 => 'Baton Rouge, LA',
|
||||
1225387 => 'Baton Rouge, LA',
|
||||
1225388 => 'Baton Rouge, LA',
|
||||
1225389 => 'Baton Rouge, LA',
|
||||
1225448 => 'Baton Rouge, LA',
|
||||
1225473 => 'Donaldsonville, LA',
|
||||
1225545 => 'White Castle, LA',
|
||||
1225578 => 'Baton Rouge, LA',
|
||||
1225615 => 'Baton Rouge, LA',
|
||||
1225621 => 'Gonzales, LA',
|
||||
1225622 => 'Prairieville, LA',
|
||||
1225634 => 'Jackson, LA',
|
||||
1225635 => 'St. Francisville, LA',
|
||||
1225636 => 'Baton Rouge, LA',
|
||||
1225637 => 'Livonia, LA',
|
||||
1225638 => 'New Roads, LA',
|
||||
1225642 => 'St. Gabriel, LA',
|
||||
1225644 => 'Gonzales, LA',
|
||||
1225647 => 'Gonzales, LA',
|
||||
1225654 => 'Zachary, LA',
|
||||
1225658 => 'Zachary, LA',
|
||||
1225663 => 'Baton Rouge, LA',
|
||||
1225664 => 'Denham Springs, LA',
|
||||
1225665 => 'Denham Springs, LA',
|
||||
1225667 => 'Denham Springs, LA',
|
||||
1225673 => 'Prairieville, LA',
|
||||
1225675 => 'Sorrento, LA',
|
||||
1225677 => 'Prairieville, LA',
|
||||
1225683 => 'Clinton, LA',
|
||||
1225686 => 'Livingston, LA',
|
||||
1225687 => 'Plaquemine, LA',
|
||||
1225744 => 'Prairieville, LA',
|
||||
1225751 => 'Baton Rouge, LA',
|
||||
1225752 => 'Baton Rouge, LA',
|
||||
1225753 => 'Baton Rouge, LA',
|
||||
1225754 => 'Baton Rouge, LA',
|
||||
1225755 => 'Baton Rouge, LA',
|
||||
1225756 => 'Baton Rouge, LA',
|
||||
1225757 => 'Baton Rouge, LA',
|
||||
1225761 => 'Baton Rouge, LA',
|
||||
1225763 => 'Baton Rouge, LA',
|
||||
1225765 => 'Baton Rouge, LA',
|
||||
1225766 => 'Baton Rouge, LA',
|
||||
1225767 => 'Baton Rouge, LA',
|
||||
1225768 => 'Baton Rouge, LA',
|
||||
1225769 => 'Baton Rouge, LA',
|
||||
1225771 => 'Baton Rouge, LA',
|
||||
1225774 => 'Baker, LA',
|
||||
1225775 => 'Baker, LA',
|
||||
1225778 => 'Baton Rouge, LA',
|
||||
1225791 => 'Denham Springs, LA',
|
||||
1225810 => 'Baton Rouge, LA',
|
||||
1225819 => 'Baton Rouge, LA',
|
||||
1225922 => 'Baton Rouge, LA',
|
||||
1225923 => 'Baton Rouge, LA',
|
||||
1225924 => 'Baton Rouge, LA',
|
||||
1225925 => 'Baton Rouge, LA',
|
||||
1225926 => 'Baton Rouge, LA',
|
||||
1225927 => 'Baton Rouge, LA',
|
||||
1225928 => 'Baton Rouge, LA',
|
||||
1225929 => 'Baton Rouge, LA',
|
||||
);
|
||||
10
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1226.php
vendored
Normal file
10
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1226.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1226 => 'Ontario',
|
||||
1226663 => 'London, ON',
|
||||
);
|
||||
50
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1228.php
vendored
Normal file
50
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1228.php
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1228 => 'Mississippi',
|
||||
1228206 => 'Gulfport, MS',
|
||||
1228207 => 'Biloxi, MS',
|
||||
1228214 => 'Gulfport, MS',
|
||||
1228328 => 'Gulfport, MS',
|
||||
1228374 => 'Biloxi, MS',
|
||||
1228385 => 'Biloxi, MS',
|
||||
1228388 => 'Biloxi, MS',
|
||||
1228432 => 'Biloxi, MS',
|
||||
1228435 => 'Biloxi, MS',
|
||||
1228436 => 'Biloxi, MS',
|
||||
1228452 => 'Pass Christian, MS',
|
||||
1228463 => 'Bay St. Louis, MS',
|
||||
1228466 => 'Bay St. Louis, MS',
|
||||
1228467 => 'Bay St. Louis, MS',
|
||||
1228474 => 'Moss Point, MS',
|
||||
1228475 => 'Moss Point, MS',
|
||||
1228497 => 'Gautier, MS',
|
||||
1228523 => 'Biloxi, MS',
|
||||
1228539 => 'Gulfport, MS',
|
||||
1228575 => 'Gulfport, MS',
|
||||
1228588 => 'Moss Point, MS',
|
||||
1228594 => 'Biloxi, MS',
|
||||
1228604 => 'Gulfport, MS',
|
||||
1228762 => 'Pascagoula, MS',
|
||||
1228769 => 'Pascagoula, MS',
|
||||
1228809 => 'Pascagoula, MS',
|
||||
1228818 => 'Ocean Springs, MS',
|
||||
1228822 => 'Gulfport, MS',
|
||||
1228826 => 'Vancleave, MS',
|
||||
1228831 => 'Gulfport, MS',
|
||||
1228832 => 'Gulfport, MS',
|
||||
1228863 => 'Gulfport, MS',
|
||||
1228864 => 'Gulfport, MS',
|
||||
1228865 => 'Gulfport, MS',
|
||||
1228867 => 'Gulfport, MS',
|
||||
1228868 => 'Gulfport, MS',
|
||||
1228872 => 'Ocean Springs, MS',
|
||||
1228875 => 'Ocean Springs, MS',
|
||||
1228896 => 'Gulfport, MS',
|
||||
1228897 => 'Gulfport, MS',
|
||||
1228938 => 'Pascagoula, MS',
|
||||
);
|
||||
86
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1229.php
vendored
Normal file
86
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1229.php
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1229 => 'Georgia',
|
||||
1229219 => 'Valdosta, GA',
|
||||
1229225 => 'Thomasville, GA',
|
||||
1229226 => 'Thomasville, GA',
|
||||
1229227 => 'Thomasville, GA',
|
||||
1229228 => 'Thomasville, GA',
|
||||
1229241 => 'Valdosta, GA',
|
||||
1229242 => 'Valdosta, GA',
|
||||
1229243 => 'Bainbridge, GA',
|
||||
1229244 => 'Valdosta, GA',
|
||||
1229245 => 'Valdosta, GA',
|
||||
1229246 => 'Bainbridge, GA',
|
||||
1229247 => 'Valdosta, GA',
|
||||
1229248 => 'Bainbridge, GA',
|
||||
1229249 => 'Valdosta, GA',
|
||||
1229253 => 'Valdosta, GA',
|
||||
1229259 => 'Valdosta, GA',
|
||||
1229263 => 'Quitman, GA',
|
||||
1229268 => 'Vienna, GA',
|
||||
1229271 => 'Cordele, GA',
|
||||
1229273 => 'Cordele, GA',
|
||||
1229276 => 'Cordele, GA',
|
||||
1229293 => 'Valdosta, GA',
|
||||
1229294 => 'Pelham, GA',
|
||||
1229312 => 'Albany, GA',
|
||||
1229333 => 'Valdosta, GA',
|
||||
1229336 => 'Camilla, GA',
|
||||
1229365 => 'Rochelle, GA',
|
||||
1229377 => 'Cairo, GA',
|
||||
1229382 => 'Tifton, GA',
|
||||
1229386 => 'Tifton, GA',
|
||||
1229387 => 'Tifton, GA',
|
||||
1229388 => 'Tifton, GA',
|
||||
1229391 => 'Tifton, GA',
|
||||
1229420 => 'Albany, GA',
|
||||
1229423 => 'Fitzgerald, GA',
|
||||
1229424 => 'Fitzgerald, GA',
|
||||
1229430 => 'Albany, GA',
|
||||
1229431 => 'Albany, GA',
|
||||
1229432 => 'Albany, GA',
|
||||
1229434 => 'Albany, GA',
|
||||
1229435 => 'Albany, GA',
|
||||
1229436 => 'Albany, GA',
|
||||
1229438 => 'Albany, GA',
|
||||
1229439 => 'Albany, GA',
|
||||
1229446 => 'Albany, GA',
|
||||
1229468 => 'Ocilla, GA',
|
||||
1229482 => 'Lakeland, GA',
|
||||
1229496 => 'Albany, GA',
|
||||
1229524 => 'Donalsonville, GA',
|
||||
1229559 => 'Lake Park, GA',
|
||||
1229567 => 'Ashburn, GA',
|
||||
1229639 => 'Albany, GA',
|
||||
1229649 => 'Buena Vista, GA',
|
||||
1229671 => 'Valdosta, GA',
|
||||
1229686 => 'Nashville, GA',
|
||||
1229723 => 'Blakely, GA',
|
||||
1229732 => 'Cuthbert, GA',
|
||||
1229758 => 'Colquitt, GA',
|
||||
1229759 => 'Leesburg, GA',
|
||||
1229768 => 'Fort Gaines, GA',
|
||||
1229776 => 'Sylvester, GA',
|
||||
1229777 => 'Sylvester, GA',
|
||||
1229794 => 'Hahira, GA',
|
||||
1229868 => 'McRae, GA',
|
||||
1229878 => 'Albany, GA',
|
||||
1229883 => 'Albany, GA',
|
||||
1229888 => 'Albany, GA',
|
||||
1229889 => 'Albany, GA',
|
||||
1229890 => 'Moultrie, GA',
|
||||
1229891 => 'Moultrie, GA',
|
||||
1229896 => 'Adel, GA',
|
||||
1229924 => 'Americus, GA',
|
||||
1229928 => 'Americus, GA',
|
||||
1229931 => 'Americus, GA',
|
||||
1229937 => 'Ellaville, GA',
|
||||
1229985 => 'Moultrie, GA',
|
||||
1229995 => 'Dawson, GA',
|
||||
);
|
||||
106
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1231.php
vendored
Normal file
106
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1231.php
vendored
Normal file
@@ -0,0 +1,106 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1231 => 'Michigan',
|
||||
1231223 => 'Traverse City, MI',
|
||||
1231228 => 'Cedar, MI',
|
||||
1231237 => 'Charlevoix, MI',
|
||||
1231238 => 'Indian River, MI',
|
||||
1231258 => 'Kalkaska, MI',
|
||||
1231263 => 'Kingsley, MI',
|
||||
1231264 => 'Elk Rapids, MI',
|
||||
1231267 => 'Williamsburg, MI',
|
||||
1231271 => 'Suttons Bay, MI',
|
||||
1231276 => 'Interlochen, MI',
|
||||
1231325 => 'Honor, MI',
|
||||
1231334 => 'Glen Arbor, MI',
|
||||
1231347 => 'Petoskey, MI',
|
||||
1231348 => 'Petoskey, MI',
|
||||
1231352 => 'Frankfort, MI',
|
||||
1231386 => 'Northport, MI',
|
||||
1231398 => 'Manistee, MI',
|
||||
1231421 => 'Traverse City, MI',
|
||||
1231436 => 'Mackinaw City, MI',
|
||||
1231439 => 'Petoskey, MI',
|
||||
1231448 => 'Beaver Island, MI',
|
||||
1231487 => 'Petoskey, MI',
|
||||
1231526 => 'Harbor Springs, MI',
|
||||
1231533 => 'Bellaire, MI',
|
||||
1231536 => 'East Jordan, MI',
|
||||
1231544 => 'Central Lake, MI',
|
||||
1231547 => 'Charlevoix, MI',
|
||||
1231548 => 'Alanson, MI',
|
||||
1231549 => 'Boyne Falls, MI',
|
||||
1231582 => 'Boyne City, MI',
|
||||
1231587 => 'Mancelona, MI',
|
||||
1231592 => 'Big Rapids, MI',
|
||||
1231597 => 'Cheboygan, MI',
|
||||
1231627 => 'Cheboygan, MI',
|
||||
1231652 => 'Newaygo, MI',
|
||||
1231672 => 'Muskegon, MI',
|
||||
1231689 => 'White Cloud, MI',
|
||||
1231719 => 'Muskegon, MI',
|
||||
1231722 => 'Muskegon, MI',
|
||||
1231723 => 'Manistee, MI',
|
||||
1231724 => 'Muskegon, MI',
|
||||
1231726 => 'Muskegon, MI',
|
||||
1231727 => 'Muskegon, MI',
|
||||
1231728 => 'Muskegon, MI',
|
||||
1231733 => 'Muskegon, MI',
|
||||
1231734 => 'Evart, MI',
|
||||
1231737 => 'Muskegon, MI',
|
||||
1231739 => 'Muskegon, MI',
|
||||
1231743 => 'Marion, MI',
|
||||
1231744 => 'Muskegon, MI',
|
||||
1231745 => 'Baldwin, MI',
|
||||
1231747 => 'Muskegon, MI',
|
||||
1231755 => 'Muskegon, MI',
|
||||
1231757 => 'Scottville, MI',
|
||||
1231759 => 'Muskegon, MI',
|
||||
1231766 => 'Muskegon, MI',
|
||||
1231767 => 'Muskegon, MI',
|
||||
1231773 => 'Muskegon, MI',
|
||||
1231775 => 'Cadillac, MI',
|
||||
1231777 => 'Muskegon, MI',
|
||||
1231779 => 'Cadillac, MI',
|
||||
1231780 => 'Norton Shores, MI',
|
||||
1231788 => 'Muskegon, MI',
|
||||
1231796 => 'Big Rapids, MI',
|
||||
1231798 => 'Norton Shores, MI',
|
||||
1231824 => 'Manton, MI',
|
||||
1231825 => 'McBain, MI',
|
||||
1231830 => 'Muskegon, MI',
|
||||
1231832 => 'Reed City, MI',
|
||||
1231834 => 'Grant, MI',
|
||||
1231839 => 'Lake City, MI',
|
||||
1231843 => 'Ludington, MI',
|
||||
1231845 => 'Ludington, MI',
|
||||
1231853 => 'Ravenna, MI',
|
||||
1231854 => 'Hesperia, MI',
|
||||
1231861 => 'Shelby, MI',
|
||||
1231865 => 'Fruitport Charter township, MI',
|
||||
1231869 => 'Pentwater, MI',
|
||||
1231873 => 'Hart, MI',
|
||||
1231876 => 'Cadillac, MI',
|
||||
1231882 => 'Beulah, MI',
|
||||
1231885 => 'Mesick, MI',
|
||||
1231893 => 'Whitehall, MI',
|
||||
1231894 => 'Whitehall, MI',
|
||||
1231922 => 'Traverse City, MI',
|
||||
1231924 => 'Fremont, MI',
|
||||
1231929 => 'Traverse City, MI',
|
||||
1231932 => 'Traverse City, MI',
|
||||
1231933 => 'Traverse City, MI',
|
||||
1231935 => 'Traverse City, MI',
|
||||
1231937 => 'Howard City, MI',
|
||||
1231941 => 'Traverse City, MI',
|
||||
1231943 => 'Traverse City, MI',
|
||||
1231944 => 'Traverse City, MI',
|
||||
1231946 => 'Traverse City, MI',
|
||||
1231947 => 'Traverse City, MI',
|
||||
1231995 => 'Traverse City, MI',
|
||||
);
|
||||
10
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1234.php
vendored
Normal file
10
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1234.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1234 => 'Ohio',
|
||||
1234678 => 'Akron, OH',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1236.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1236.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1236 => 'British Columbia',
|
||||
);
|
||||
145
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1239.php
vendored
Normal file
145
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1239.php
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1239 => 'Florida',
|
||||
1239200 => 'Naples, FL',
|
||||
1239213 => 'Naples, FL',
|
||||
1239225 => 'Fort Myers, FL',
|
||||
1239226 => 'Fort Myers, FL',
|
||||
1239234 => 'Naples, FL',
|
||||
1239242 => 'Cape Coral, FL',
|
||||
1239243 => 'Fort Myers, FL',
|
||||
1239245 => 'Fort Myers, FL',
|
||||
1239252 => 'Naples, FL',
|
||||
1239254 => 'Naples, FL',
|
||||
1239260 => 'Naples, FL',
|
||||
1239261 => 'Naples, FL',
|
||||
1239262 => 'Naples, FL',
|
||||
1239263 => 'Naples, FL',
|
||||
1239267 => 'Fort Myers, FL',
|
||||
1239272 => 'Naples, FL',
|
||||
1239274 => 'Fort Myers, FL',
|
||||
1239275 => 'Fort Myers, FL',
|
||||
1239277 => 'Fort Myers, FL',
|
||||
1239278 => 'Fort Myers, FL',
|
||||
1239288 => 'Fort Myers, FL',
|
||||
1239289 => 'Naples, FL',
|
||||
1239293 => 'Naples, FL',
|
||||
1239303 => 'Lehigh Acres, FL',
|
||||
1239304 => 'Naples, FL',
|
||||
1239313 => 'Fort Myers, FL',
|
||||
1239321 => 'Fort Myers, FL',
|
||||
1239325 => 'Naples, FL',
|
||||
1239330 => 'Naples, FL',
|
||||
1239331 => 'Naples, FL',
|
||||
1239332 => 'Fort Myers, FL',
|
||||
1239334 => 'Fort Myers, FL',
|
||||
1239337 => 'Fort Myers, FL',
|
||||
1239343 => 'Fort Myers, FL',
|
||||
1239344 => 'Fort Myers, FL',
|
||||
1239348 => 'Naples, FL',
|
||||
1239352 => 'Naples, FL',
|
||||
1239353 => 'Naples, FL',
|
||||
1239354 => 'Naples, FL',
|
||||
1239362 => 'Fort Myers, FL',
|
||||
1239368 => 'Lehigh Acres, FL',
|
||||
1239369 => 'Lehigh Acres, FL',
|
||||
1239389 => 'Marco Island, FL',
|
||||
1239390 => 'Bonita Springs, FL',
|
||||
1239394 => 'Marco Island, FL',
|
||||
1239395 => 'Sanibel, FL',
|
||||
1239398 => 'Naples, FL',
|
||||
1239403 => 'Naples, FL',
|
||||
1239404 => 'Naples, FL',
|
||||
1239405 => 'Bonita Springs, FL',
|
||||
1239415 => 'Fort Myers, FL',
|
||||
1239417 => 'Naples, FL',
|
||||
1239418 => 'Fort Myers, FL',
|
||||
1239424 => 'Cape Coral, FL',
|
||||
1239425 => 'Fort Myers, FL',
|
||||
1239430 => 'Naples, FL',
|
||||
1239431 => 'Naples, FL',
|
||||
1239432 => 'Fort Myers, FL',
|
||||
1239433 => 'Fort Myers, FL',
|
||||
1239434 => 'Naples, FL',
|
||||
1239435 => 'Naples, FL',
|
||||
1239436 => 'Naples, FL',
|
||||
1239437 => 'Fort Myers, FL',
|
||||
1239454 => 'Fort Myers, FL',
|
||||
1239455 => 'Naples, FL',
|
||||
1239458 => 'Cape Coral, FL',
|
||||
1239461 => 'Fort Myers, FL',
|
||||
1239463 => 'Fort Myers Beach, FL',
|
||||
1239465 => 'Naples, FL',
|
||||
1239466 => 'Fort Myers, FL',
|
||||
1239471 => 'Cape Coral, FL',
|
||||
1239472 => 'Sanibel, FL',
|
||||
1239481 => 'Fort Myers, FL',
|
||||
1239482 => 'Fort Myers, FL',
|
||||
1239489 => 'Fort Myers, FL',
|
||||
1239495 => 'Bonita Springs, FL',
|
||||
1239498 => 'Bonita Springs, FL',
|
||||
1239513 => 'Naples, FL',
|
||||
1239514 => 'Naples, FL',
|
||||
1239530 => 'Naples, FL',
|
||||
1239533 => 'Fort Myers, FL',
|
||||
1239540 => 'Cape Coral, FL',
|
||||
1239541 => 'Cape Coral, FL',
|
||||
1239542 => 'Cape Coral, FL',
|
||||
1239543 => 'Fort Myers, FL',
|
||||
1239549 => 'Cape Coral, FL',
|
||||
1239561 => 'Fort Myers, FL',
|
||||
1239566 => 'Naples, FL',
|
||||
1239573 => 'Cape Coral, FL',
|
||||
1239574 => 'Cape Coral, FL',
|
||||
1239590 => 'Fort Myers, FL',
|
||||
1239591 => 'Naples, FL',
|
||||
1239592 => 'Naples, FL',
|
||||
1239593 => 'Naples, FL',
|
||||
1239594 => 'Naples, FL',
|
||||
1239595 => 'Naples, FL',
|
||||
1239596 => 'Naples, FL',
|
||||
1239597 => 'Naples, FL',
|
||||
1239598 => 'Naples, FL',
|
||||
1239601 => 'Naples, FL',
|
||||
1239642 => 'Marco Island, FL',
|
||||
1239643 => 'Naples, FL',
|
||||
1239649 => 'Naples, FL',
|
||||
1239657 => 'Immokalee, FL',
|
||||
1239658 => 'Immokalee, FL',
|
||||
1239659 => 'Naples, FL',
|
||||
1239673 => 'Cape Coral, FL',
|
||||
1239676 => 'Bonita Springs, FL',
|
||||
1239689 => 'Fort Myers, FL',
|
||||
1239690 => 'Fort Myers, FL',
|
||||
1239692 => 'Naples, FL',
|
||||
1239693 => 'Fort Myers, FL',
|
||||
1239694 => 'Fort Myers, FL',
|
||||
1239731 => 'Fort Myers, FL',
|
||||
1239732 => 'Naples, FL',
|
||||
1239765 => 'Fort Myers Beach, FL',
|
||||
1239768 => 'Fort Myers, FL',
|
||||
1239772 => 'Cape Coral, FL',
|
||||
1239774 => 'Naples, FL',
|
||||
1239775 => 'Naples, FL',
|
||||
1239777 => 'Naples, FL',
|
||||
1239793 => 'Naples, FL',
|
||||
1239821 => 'Naples, FL',
|
||||
1239825 => 'Naples, FL',
|
||||
1239829 => 'Cape Coral, FL',
|
||||
1239931 => 'Fort Myers, FL',
|
||||
1239936 => 'Fort Myers, FL',
|
||||
1239938 => 'Fort Myers, FL',
|
||||
1239939 => 'Fort Myers, FL',
|
||||
1239945 => 'Cape Coral, FL',
|
||||
1239947 => 'Bonita Springs, FL',
|
||||
1239948 => 'Bonita Springs, FL',
|
||||
1239949 => 'Bonita Springs, FL',
|
||||
1239963 => 'Naples, FL',
|
||||
1239985 => 'Fort Myers, FL',
|
||||
1239992 => 'Bonita Springs, FL',
|
||||
);
|
||||
23
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1240.php
vendored
Normal file
23
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1240.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1240 => 'Maryland',
|
||||
1240313 => 'Hagerstown, MD',
|
||||
1240314 => 'Rockville, MD',
|
||||
1240362 => 'Cumberland, MD',
|
||||
1240379 => 'Frederick, MD',
|
||||
1240403 => 'Rockville, MD',
|
||||
1240420 => 'Hagerstown, MD',
|
||||
1240456 => 'Laurel, MD',
|
||||
1240566 => 'Frederick, MD',
|
||||
1240575 => 'Frederick, MD',
|
||||
1240631 => 'Gaithersburg, MD',
|
||||
1240683 => 'Gaithersburg, MD',
|
||||
1240686 => 'Germantown, MD',
|
||||
1240777 => 'Rockville, MD',
|
||||
1240857 => 'Joint Base Andrews Naval Air Facility, MD',
|
||||
);
|
||||
86
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1242.php
vendored
Normal file
86
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1242.php
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
12422250 => 'New Providence',
|
||||
12422251 => 'New Providence',
|
||||
12422252 => 'New Providence',
|
||||
12422253 => 'New Providence',
|
||||
12422254 => 'New Providence',
|
||||
12422256 => 'New Providence',
|
||||
12422257 => 'New Providence',
|
||||
12422258 => 'New Providence',
|
||||
12422259 => 'New Providence',
|
||||
1242302 => 'New Providence',
|
||||
1242321 => 'New Providence',
|
||||
1242322 => 'New Providence',
|
||||
1242323 => 'New Providence',
|
||||
1242324 => 'New Providence',
|
||||
1242325 => 'New Providence',
|
||||
1242326 => 'New Providence',
|
||||
1242327 => 'New Providence',
|
||||
1242328 => 'New Providence',
|
||||
1242329 => 'North Andros',
|
||||
1242331 => 'Rum Cay & San Sal',
|
||||
1242332 => 'Eleuthera',
|
||||
1242333 => 'Eleuthera',
|
||||
1242334 => 'Eleuthera',
|
||||
1242335 => 'Eleuthera',
|
||||
1242336 => 'Exuma',
|
||||
1242337 => 'Long Island',
|
||||
1242338 => 'Long Island',
|
||||
1242339 => 'Inagua/Mayaguana',
|
||||
1242340 => 'New Providence',
|
||||
1242341 => 'New Providence',
|
||||
1242342 => 'Cat Island',
|
||||
1242344 => 'Acklins',
|
||||
1242345 => 'Exuma',
|
||||
1242346 => 'Grand Bahama',
|
||||
1242347 => 'Bimini and Cat Cay',
|
||||
1242348 => 'Grand Bahama',
|
||||
1242349 => 'Grand Bahama',
|
||||
1242350 => 'Grand Bahama',
|
||||
1242351 => 'Grand Bahama',
|
||||
1242352 => 'Grand Bahama',
|
||||
1242353 => 'Grand Bahama',
|
||||
1242354 => 'Cat Island',
|
||||
1242355 => 'Exuma Cays',
|
||||
1242356 => 'New Providence',
|
||||
1242358 => 'Exuma',
|
||||
1242361 => 'New Providence',
|
||||
1242362 => 'New Providence',
|
||||
1242363 => 'New Providence',
|
||||
1242364 => 'New Providence',
|
||||
1242365 => 'Abaco Island',
|
||||
1242366 => 'Abaco Island',
|
||||
1242367 => 'Abaco Island',
|
||||
1242368 => 'Andros',
|
||||
1242369 => 'Andros',
|
||||
1242373 => 'Grand Bahama',
|
||||
1242374 => 'Grand Bahama',
|
||||
1242376 => 'Grand Bahama',
|
||||
1242377 => 'New Providence',
|
||||
1242380 => 'New Providence',
|
||||
1242381 => 'New Providence',
|
||||
1242382 => 'New Providence',
|
||||
1242383 => 'New Providence',
|
||||
1242384 => 'New Providence',
|
||||
1242392 => 'New Providence',
|
||||
1242393 => 'New Providence',
|
||||
1242394 => 'New Providence',
|
||||
1242396 => 'New Providence',
|
||||
1242397 => 'New Providence',
|
||||
1242461 => 'New Providence',
|
||||
1242601 => 'New Providence',
|
||||
1242602 => 'Grand Bahama',
|
||||
1242676 => 'New Providence',
|
||||
1242677 => 'New Providence',
|
||||
1242687 => 'Grand Bahama',
|
||||
1242688 => 'Grand Bahama',
|
||||
1242698 => 'Abaco',
|
||||
1242699 => 'Abaco',
|
||||
1242702 => 'New Providence',
|
||||
);
|
||||
132
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1248.php
vendored
Normal file
132
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1248.php
vendored
Normal file
@@ -0,0 +1,132 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1248 => 'Michigan',
|
||||
1248208 => 'Southfield, MI',
|
||||
1248223 => 'Southfield, MI',
|
||||
1248236 => 'Oxford Charter Township, MI',
|
||||
1248244 => 'Troy, MI',
|
||||
1248246 => 'Royal Oak, MI',
|
||||
1248250 => 'Troy, MI',
|
||||
1248262 => 'Southfield, MI',
|
||||
1248267 => 'Troy, MI',
|
||||
1248269 => 'Troy, MI',
|
||||
1248276 => 'Auburn Hills, MI',
|
||||
1248293 => 'Rochester Hills, MI',
|
||||
1248299 => 'Rochester Hills, MI',
|
||||
1248305 => 'Novi, MI',
|
||||
1248322 => 'Pontiac, MI',
|
||||
1248324 => 'Farmington Hills, MI',
|
||||
1248327 => 'Southfield, MI',
|
||||
1248328 => 'Holly, MI',
|
||||
1248332 => 'Pontiac, MI',
|
||||
1248334 => 'Pontiac, MI',
|
||||
1248338 => 'Pontiac, MI',
|
||||
1248340 => 'Auburn Hills, MI',
|
||||
1248344 => 'Novi, MI',
|
||||
1248347 => 'Novi, MI',
|
||||
1248350 => 'Southfield, MI',
|
||||
1248351 => 'Southfield, MI',
|
||||
1248352 => 'Southfield, MI',
|
||||
1248353 => 'Southfield, MI',
|
||||
1248354 => 'Southfield, MI',
|
||||
1248355 => 'Southfield, MI',
|
||||
1248356 => 'Southfield, MI',
|
||||
1248357 => 'Southfield, MI',
|
||||
1248358 => 'Southfield, MI',
|
||||
1248362 => 'Troy, MI',
|
||||
1248370 => 'Auburn Hills, MI',
|
||||
1248373 => 'Auburn Hills, MI',
|
||||
1248374 => 'Novi, MI',
|
||||
1248375 => 'Rochester Hills, MI',
|
||||
1248377 => 'Auburn Hills, MI',
|
||||
1248380 => 'Novi, MI',
|
||||
1248391 => 'Lake Orion, MI',
|
||||
1248395 => 'Southfield, MI',
|
||||
1248423 => 'Royal Oak, MI',
|
||||
1248424 => 'Southfield, MI',
|
||||
1248437 => 'South Lyon, MI',
|
||||
1248440 => 'Southfield, MI',
|
||||
1248443 => 'Southfield, MI',
|
||||
1248446 => 'South Lyon, MI',
|
||||
1248449 => 'Novi, MI',
|
||||
1248457 => 'Troy, MI',
|
||||
1248465 => 'Novi, MI',
|
||||
1248471 => 'Farmington Hills, MI',
|
||||
1248486 => 'South Lyon, MI',
|
||||
1248489 => 'Farmington Hills, MI',
|
||||
1248524 => 'Troy, MI',
|
||||
1248526 => 'Troy, MI',
|
||||
1248528 => 'Troy, MI',
|
||||
1248549 => 'Royal Oak, MI',
|
||||
1248551 => 'Royal Oak, MI',
|
||||
1248552 => 'Southfield, MI',
|
||||
1248553 => 'Farmington Hills, MI',
|
||||
1248557 => 'Southfield, MI',
|
||||
1248559 => 'Southfield, MI',
|
||||
1248569 => 'Southfield, MI',
|
||||
1248577 => 'Troy, MI',
|
||||
1248592 => 'West Bloomfield Township, MI',
|
||||
1248618 => 'Waterford Township, MI',
|
||||
1248619 => 'Troy, MI',
|
||||
1248620 => 'Clarkston, MI',
|
||||
1248623 => 'Waterford Township, MI',
|
||||
1248625 => 'Clarkston, MI',
|
||||
1248627 => 'Ortonville, MI',
|
||||
1248628 => 'Oxford Charter Township, MI',
|
||||
1248634 => 'Holly, MI',
|
||||
1248641 => 'Troy, MI',
|
||||
1248643 => 'Troy, MI',
|
||||
1248649 => 'Troy, MI',
|
||||
1248661 => 'West Bloomfield Township, MI',
|
||||
1248662 => 'Novi, MI',
|
||||
1248663 => 'Southfield, MI',
|
||||
1248666 => 'Waterford Township, MI',
|
||||
1248673 => 'Waterford Township, MI',
|
||||
1248674 => 'Waterford Township, MI',
|
||||
1248676 => 'Milford, MI',
|
||||
1248680 => 'Troy, MI',
|
||||
1248681 => 'Waterford Township, MI',
|
||||
1248682 => 'Waterford Township, MI',
|
||||
1248683 => 'Waterford Township, MI',
|
||||
1248684 => 'Milford, MI',
|
||||
1248685 => 'Milford, MI',
|
||||
1248689 => 'Troy, MI',
|
||||
1248693 => 'Lake Orion, MI',
|
||||
1248698 => 'White Lake Township, MI',
|
||||
1248738 => 'Waterford Township, MI',
|
||||
1248740 => 'Troy, MI',
|
||||
1248758 => 'Pontiac, MI',
|
||||
1248796 => 'Southfield, MI',
|
||||
1248799 => 'Southfield, MI',
|
||||
1248809 => 'Southfield, MI',
|
||||
1248814 => 'Lake Orion, MI',
|
||||
1248816 => 'Troy, MI',
|
||||
1248827 => 'Southfield, MI',
|
||||
1248828 => 'Troy, MI',
|
||||
1248844 => 'Rochester Hills, MI',
|
||||
1248848 => 'Farmington Hills, MI',
|
||||
1248849 => 'Southfield, MI',
|
||||
1248852 => 'Rochester Hills, MI',
|
||||
1248853 => 'Rochester Hills, MI',
|
||||
1248857 => 'Pontiac, MI',
|
||||
1248858 => 'Pontiac, MI',
|
||||
1248879 => 'Troy, MI',
|
||||
1248886 => 'Waterford Township, MI',
|
||||
1248887 => 'Highland Township, MI',
|
||||
1248889 => 'Highland Township, MI',
|
||||
1248898 => 'Royal Oak, MI',
|
||||
1248922 => 'Clarkston, MI',
|
||||
1248952 => 'Troy, MI',
|
||||
1248964 => 'Troy, MI',
|
||||
1248967 => 'Madison Heights, MI',
|
||||
1248968 => 'Oak Park, MI',
|
||||
1248969 => 'Oxford Charter Township, MI',
|
||||
1248987 => 'Farmington Hills, MI',
|
||||
1248994 => 'Farmington Hills, MI',
|
||||
1248996 => 'Southfield, MI',
|
||||
);
|
||||
234
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1250.php
vendored
Normal file
234
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1250.php
vendored
Normal file
@@ -0,0 +1,234 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1250 => 'British Columbia',
|
||||
1250212 => 'Kelowna, BC',
|
||||
1250215 => 'Kelowna, BC',
|
||||
1250242 => 'Tumbler Ridge, BC',
|
||||
1250245 => 'Ladysmith, BC',
|
||||
1250246 => 'Chemainus, BC',
|
||||
1250247 => 'Gabriola, BC',
|
||||
1250248 => 'Parksville, BC',
|
||||
1250256 => 'Lillooet, BC',
|
||||
1250260 => 'Vernon, BC',
|
||||
1250262 => 'Fort St. John, BC',
|
||||
1250265 => 'Nakusp, BC',
|
||||
1250285 => 'Quadra Island, BC',
|
||||
1250286 => 'Campbell River, BC',
|
||||
1250287 => 'Campbell River, BC',
|
||||
1250295 => 'Princeton, BC',
|
||||
1250314 => 'Kamloops, BC',
|
||||
1250317 => 'Kelowna, BC',
|
||||
1250331 => 'Courtenay, BC',
|
||||
1250334 => 'Courtenay, BC',
|
||||
1250335 => 'Hornby Island, BC',
|
||||
1250336 => 'Cumberland, BC',
|
||||
1250337 => 'Black Creek, BC',
|
||||
1250338 => 'Courtenay, BC',
|
||||
1250339 => 'Comox, BC',
|
||||
1250342 => 'Invermere, BC',
|
||||
1250344 => 'Golden, BC',
|
||||
1250347 => 'Radium Hot Springs, BC',
|
||||
1250352 => 'Nelson, BC',
|
||||
1250353 => 'Kaslo, BC',
|
||||
1250354 => 'Nelson, BC',
|
||||
1250357 => 'Salmo, BC',
|
||||
1250360 => 'Victoria, BC',
|
||||
1250361 => 'Victoria, BC',
|
||||
1250362 => 'Rossland, BC',
|
||||
1250364 => 'Trail, BC',
|
||||
1250365 => 'Castlegar, BC',
|
||||
1250367 => 'Fruitvale, BC',
|
||||
1250368 => 'Trail, BC',
|
||||
1250370 => 'Victoria, BC',
|
||||
1250372 => 'Kamloops, BC',
|
||||
1250374 => 'Kamloops, BC',
|
||||
1250376 => 'Kamloops, BC',
|
||||
1250377 => 'Kamloops, BC',
|
||||
1250378 => 'Merritt, BC',
|
||||
1250380 => 'Victoria, BC',
|
||||
1250381 => 'Victoria, BC',
|
||||
1250382 => 'Victoria, BC',
|
||||
1250383 => 'Victoria, BC',
|
||||
1250384 => 'Victoria, BC',
|
||||
1250385 => 'Victoria, BC',
|
||||
1250386 => 'Victoria, BC',
|
||||
1250388 => 'Victoria, BC',
|
||||
1250389 => 'Victoria, BC',
|
||||
1250390 => 'Nanaimo, BC',
|
||||
1250391 => 'Victoria, BC',
|
||||
1250392 => 'Williams Lake, BC',
|
||||
1250395 => '100 Mile House, BC',
|
||||
1250398 => 'Williams Lake, BC',
|
||||
1250412 => 'Victoria, BC',
|
||||
1250417 => 'Cranbrook, BC',
|
||||
1250423 => 'Fernie, BC',
|
||||
1250425 => 'Sparwood, BC',
|
||||
1250426 => 'Cranbrook, BC',
|
||||
1250427 => 'Kimberley, BC',
|
||||
1250428 => 'Creston, BC',
|
||||
1250442 => 'Grand Forks, BC',
|
||||
1250448 => 'Kelowna, BC',
|
||||
1250468 => 'Nanoose Bay, BC',
|
||||
1250469 => 'Kelowna, BC',
|
||||
1250470 => 'Kelowna, BC',
|
||||
1250472 => 'Victoria, BC',
|
||||
1250475 => 'Victoria, BC',
|
||||
1250477 => 'Victoria, BC',
|
||||
1250478 => 'Victoria, BC',
|
||||
1250479 => 'Victoria, BC',
|
||||
1250480 => 'Victoria, BC',
|
||||
1250483 => 'Victoria, BC',
|
||||
1250487 => 'Penticton, BC',
|
||||
1250489 => 'Cranbrook, BC',
|
||||
1250490 => 'Penticton, BC',
|
||||
1250491 => 'Kelowna, BC',
|
||||
1250492 => 'Penticton, BC',
|
||||
1250493 => 'Penticton, BC',
|
||||
1250494 => 'Summerland, BC',
|
||||
1250495 => 'Osoyoos, BC',
|
||||
1250498 => 'Oliver, BC',
|
||||
1250499 => 'Keremeos, BC',
|
||||
1250503 => 'Vernon, BC',
|
||||
1250505 => 'Nelson, BC',
|
||||
1250537 => 'Salt Spring Island, BC',
|
||||
1250542 => 'Vernon, BC',
|
||||
1250545 => 'Vernon, BC',
|
||||
1250546 => 'Armstrong, BC',
|
||||
1250547 => 'Lumby, BC',
|
||||
1250549 => 'Vernon, BC',
|
||||
1250554 => 'Kamloops, BC',
|
||||
1250558 => 'Vernon, BC',
|
||||
1250559 => 'Queen Charlotte, BC',
|
||||
1250561 => 'Prince George, BC',
|
||||
1250562 => 'Prince George, BC',
|
||||
1250563 => 'Prince George, BC',
|
||||
1250564 => 'Prince George, BC',
|
||||
1250566 => 'Valemount, BC',
|
||||
1250567 => 'Vanderhoof, BC',
|
||||
1250573 => 'Kamloops, BC',
|
||||
1250579 => 'Kamloops, BC',
|
||||
1250585 => 'Nanaimo, BC',
|
||||
1250586 => 'Parksville, BC',
|
||||
1250590 => 'Victoria, BC',
|
||||
1250591 => 'Nanaimo, BC',
|
||||
1250592 => 'Victoria, BC',
|
||||
1250595 => 'Victoria, BC',
|
||||
1250596 => 'Prince George, BC',
|
||||
1250597 => 'Duncan, BC',
|
||||
1250598 => 'Victoria, BC',
|
||||
1250614 => 'Prince George, BC',
|
||||
1250615 => 'Terrace, BC',
|
||||
1250624 => 'Prince Rupert, BC',
|
||||
1250626 => 'Masset, BC',
|
||||
1250627 => 'Prince Rupert, BC',
|
||||
1250629 => 'Pender Island, BC',
|
||||
1250632 => 'Kitimat, BC',
|
||||
1250635 => 'Terrace, BC',
|
||||
1250638 => 'Terrace, BC',
|
||||
1250642 => 'Sooke, BC',
|
||||
1250655 => 'Sidney, BC',
|
||||
1250656 => 'Sidney, BC',
|
||||
1250658 => 'Victoria, BC',
|
||||
1250672 => 'Barrière, BC',
|
||||
1250674 => 'Clearwater, BC',
|
||||
1250675 => 'Sorrento, BC',
|
||||
1250679 => 'Chase, BC',
|
||||
1250686 => 'Victoria, BC',
|
||||
1250692 => 'Burns Lake, BC',
|
||||
1250701 => 'Duncan, BC',
|
||||
1250703 => 'Courtenay, BC',
|
||||
1250707 => 'Westbank, BC',
|
||||
1250709 => 'Duncan, BC',
|
||||
1250712 => 'Kelowna, BC',
|
||||
1250714 => 'Nanaimo, BC',
|
||||
1250715 => 'Duncan, BC',
|
||||
1250716 => 'Nanaimo, BC',
|
||||
1250717 => 'Kelowna, BC',
|
||||
1250718 => 'Kelowna, BC',
|
||||
1250720 => 'Port Alberni, BC',
|
||||
1250721 => 'Victoria, BC',
|
||||
1250722 => 'Nanaimo, BC',
|
||||
1250723 => 'Port Alberni, BC',
|
||||
1250724 => 'Port Alberni, BC',
|
||||
1250725 => 'Tofino, BC',
|
||||
1250726 => 'Ucluelet, BC',
|
||||
1250727 => 'Victoria, BC',
|
||||
1250729 => 'Nanaimo, BC',
|
||||
1250741 => 'Nanaimo, BC',
|
||||
1250744 => 'Victoria, BC',
|
||||
1250746 => 'Duncan, BC',
|
||||
1250747 => 'Quesnel, BC',
|
||||
1250748 => 'Duncan, BC',
|
||||
1250749 => 'Lake Cowichan, BC',
|
||||
1250751 => 'Nanaimo, BC',
|
||||
1250752 => 'Qualicum Beach, BC',
|
||||
1250753 => 'Nanaimo, BC',
|
||||
1250754 => 'Nanaimo, BC',
|
||||
1250755 => 'Nanaimo, BC',
|
||||
1250756 => 'Nanaimo, BC',
|
||||
1250758 => 'Nanaimo, BC',
|
||||
1250762 => 'Kelowna, BC',
|
||||
1250763 => 'Kelowna, BC',
|
||||
1250764 => 'Kelowna, BC',
|
||||
1250765 => 'Kelowna, BC',
|
||||
1250766 => 'Winfield, BC',
|
||||
1250767 => 'Peachland, BC',
|
||||
1250768 => 'Westbank, BC',
|
||||
1250769 => 'Kelowna, BC',
|
||||
1250770 => 'Penticton, BC',
|
||||
1250774 => 'Fort Nelson, BC',
|
||||
1250782 => 'Dawson Creek, BC',
|
||||
1250785 => 'Fort St. John, BC',
|
||||
1250787 => 'Fort St. John, BC',
|
||||
1250788 => 'Chetwynd, BC',
|
||||
1250804 => 'Salmon Arm, BC',
|
||||
1250808 => 'Kelowna, BC',
|
||||
1250812 => 'Victoria, BC',
|
||||
1250818 => 'Victoria, BC',
|
||||
1250828 => 'Kamloops, BC',
|
||||
1250830 => 'Campbell River, BC',
|
||||
1250832 => 'Salmon Arm, BC',
|
||||
1250833 => 'Salmon Arm, BC',
|
||||
1250836 => 'Sicamous, BC',
|
||||
1250837 => 'Revelstoke, BC',
|
||||
1250838 => 'Enderby, BC',
|
||||
1250842 => 'Hazelton, BC',
|
||||
1250845 => 'Houston, BC',
|
||||
1250847 => 'Smithers, BC',
|
||||
1250851 => 'Kamloops, BC',
|
||||
1250858 => 'Victoria, BC',
|
||||
1250860 => 'Kelowna, BC',
|
||||
1250861 => 'Kelowna, BC',
|
||||
1250862 => 'Kelowna, BC',
|
||||
1250863 => 'Kelowna, BC',
|
||||
1250864 => 'Kelowna, BC',
|
||||
1250868 => 'Kelowna, BC',
|
||||
1250869 => 'Kelowna, BC',
|
||||
1250870 => 'Kelowna, BC',
|
||||
1250871 => 'Courtenay, BC',
|
||||
1250877 => 'Smithers, BC',
|
||||
1250878 => 'Kelowna, BC',
|
||||
1250881 => 'Victoria, BC',
|
||||
1250888 => 'Victoria, BC',
|
||||
1250889 => 'Victoria, BC',
|
||||
1250897 => 'Courtenay, BC',
|
||||
1250920 => 'Victoria, BC',
|
||||
1250923 => 'Campbell River, BC',
|
||||
1250949 => 'Port Hardy, BC',
|
||||
1250951 => 'Parksville, BC',
|
||||
1250954 => 'Parksville, BC',
|
||||
1250956 => 'Port McNeill, BC',
|
||||
1250962 => 'Prince George, BC',
|
||||
1250963 => 'Prince George, BC',
|
||||
1250964 => 'Prince George, BC',
|
||||
1250979 => 'Kelowna, BC',
|
||||
1250992 => 'Quesnel, BC',
|
||||
1250995 => 'Victoria, BC',
|
||||
1250996 => 'Fort St James, BC',
|
||||
1250997 => 'Mackenzie, BC',
|
||||
);
|
||||
99
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1251.php
vendored
Normal file
99
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1251.php
vendored
Normal file
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1251 => 'Alabama',
|
||||
1251208 => 'Mobile, AL',
|
||||
1251219 => 'Mobile, AL',
|
||||
1251246 => 'Jackson, AL',
|
||||
1251275 => 'Grove Hill, AL',
|
||||
1251287 => 'Mobile, AL',
|
||||
1251296 => 'Flomaton, AL',
|
||||
1251300 => 'Mobile, AL',
|
||||
1251338 => 'Mobile, AL',
|
||||
1251340 => 'Mobile, AL',
|
||||
1251341 => 'Mobile, AL',
|
||||
1251342 => 'Mobile, AL',
|
||||
1251343 => 'Mobile, AL',
|
||||
1251344 => 'Mobile, AL',
|
||||
1251345 => 'Mobile, AL',
|
||||
1251368 => 'Atmore, AL',
|
||||
1251378 => 'Mobile, AL',
|
||||
1251380 => 'Mobile, AL',
|
||||
1251414 => 'Mobile, AL',
|
||||
1251415 => 'Mobile, AL',
|
||||
1251432 => 'Mobile, AL',
|
||||
1251433 => 'Mobile, AL',
|
||||
1251434 => 'Mobile, AL',
|
||||
1251435 => 'Mobile, AL',
|
||||
1251438 => 'Mobile, AL',
|
||||
1251441 => 'Mobile, AL',
|
||||
1251443 => 'Theodore, AL',
|
||||
1251445 => 'Mobile, AL',
|
||||
1251446 => 'Atmore, AL',
|
||||
1251450 => 'Mobile, AL',
|
||||
1251457 => 'Mobile, AL',
|
||||
1251460 => 'Mobile, AL',
|
||||
1251470 => 'Mobile, AL',
|
||||
1251471 => 'Mobile, AL',
|
||||
1251473 => 'Mobile, AL',
|
||||
1251476 => 'Mobile, AL',
|
||||
1251478 => 'Mobile, AL',
|
||||
1251479 => 'Mobile, AL',
|
||||
1251575 => 'Monroeville, AL',
|
||||
1251578 => 'Evergreen, AL',
|
||||
1251580 => 'Bay Minette, AL',
|
||||
1251602 => 'Mobile, AL',
|
||||
1251607 => 'Mobile, AL',
|
||||
1251621 => 'Daphne, AL',
|
||||
1251625 => 'Daphne, AL',
|
||||
1251626 => 'Daphne, AL',
|
||||
1251633 => 'Mobile, AL',
|
||||
1251634 => 'Mobile, AL',
|
||||
1251639 => 'Mobile, AL',
|
||||
1251653 => 'Theodore, AL',
|
||||
1251660 => 'Mobile, AL',
|
||||
1251661 => 'Mobile, AL',
|
||||
1251662 => 'Mobile, AL',
|
||||
1251665 => 'Mobile, AL',
|
||||
1251666 => 'Mobile, AL',
|
||||
1251675 => 'Saraland, AL',
|
||||
1251679 => 'Saraland, AL',
|
||||
1251690 => 'Mobile, AL',
|
||||
1251694 => 'Mobile, AL',
|
||||
1251725 => 'Mobile, AL',
|
||||
1251743 => 'Monroeville, AL',
|
||||
1251776 => 'Mobile, AL',
|
||||
1251809 => 'Brewton, AL',
|
||||
1251824 => 'Bayou La Batre, AL',
|
||||
1251829 => 'Mount Vernon, AL',
|
||||
1251843 => 'Gilbertown, AL',
|
||||
1251847 => 'Chatom, AL',
|
||||
1251865 => 'Grand Bay, AL',
|
||||
1251866 => 'Citronelle, AL',
|
||||
1251867 => 'Brewton, AL',
|
||||
1251928 => 'Fairhope, AL',
|
||||
1251929 => 'Fairhope, AL',
|
||||
1251937 => 'Bay Minette, AL',
|
||||
1251943 => 'Foley, AL',
|
||||
1251947 => 'Robertsdale, AL',
|
||||
1251948 => 'Gulf Shores, AL',
|
||||
1251955 => 'Foley, AL',
|
||||
1251957 => 'Irvington, AL',
|
||||
1251962 => 'Lillian, AL',
|
||||
1251964 => 'Loxley, AL',
|
||||
1251967 => 'Gulf Shores, AL',
|
||||
1251968 => 'Gulf Shores, AL',
|
||||
1251970 => 'Foley, AL',
|
||||
1251971 => 'Foley, AL',
|
||||
1251973 => 'Theodore, AL',
|
||||
1251974 => 'Orange Beach, AL',
|
||||
1251980 => 'Orange Beach, AL',
|
||||
1251981 => 'Orange Beach, AL',
|
||||
1251986 => 'Elberta, AL',
|
||||
1251989 => 'Summerdale, AL',
|
||||
1251990 => 'Fairhope, AL',
|
||||
);
|
||||
131
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1252.php
vendored
Normal file
131
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1252.php
vendored
Normal file
@@ -0,0 +1,131 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1252 => 'North Carolina',
|
||||
1252206 => 'Wilson, NC',
|
||||
1252208 => 'Kinston, NC',
|
||||
1252209 => 'Ahoskie, NC',
|
||||
1252212 => 'Rocky Mount, NC',
|
||||
1252215 => 'Greenville, NC',
|
||||
1252222 => 'Morehead City, NC',
|
||||
1252223 => 'Newport, NC',
|
||||
1252234 => 'Wilson, NC',
|
||||
1252235 => 'Bailey, NC',
|
||||
1252236 => 'Elm City, NC',
|
||||
1252237 => 'Wilson, NC',
|
||||
1252238 => 'Stantonsburg, NC',
|
||||
1252240 => 'Morehead City, NC',
|
||||
1252243 => 'Wilson, NC',
|
||||
1252244 => 'Vanceboro, NC',
|
||||
1252247 => 'Morehead City, NC',
|
||||
1252249 => 'Oriental, NC',
|
||||
1252255 => 'Kitty Hawk, NC',
|
||||
1252257 => 'Warrenton, NC',
|
||||
1252261 => 'Kitty Hawk, NC',
|
||||
1252291 => 'Wilson, NC',
|
||||
1252293 => 'Wilson, NC',
|
||||
1252308 => 'Roanoke Rapids, NC',
|
||||
1252321 => 'Greenville, NC',
|
||||
1252322 => 'Aurora, NC',
|
||||
1252329 => 'Greenville, NC',
|
||||
1252331 => 'Elizabeth City, NC',
|
||||
1252332 => 'Ahoskie, NC',
|
||||
1252333 => 'Elizabeth City, NC',
|
||||
1252335 => 'Elizabeth City, NC',
|
||||
1252338 => 'Elizabeth City, NC',
|
||||
1252353 => 'Greenville, NC',
|
||||
1252354 => 'Emerald Isle, NC',
|
||||
1252355 => 'Greenville, NC',
|
||||
1252356 => 'Colerain, NC',
|
||||
1252357 => 'Gatesville, NC',
|
||||
1252364 => 'Greenville, NC',
|
||||
1252398 => 'Murfreesboro, NC',
|
||||
1252399 => 'Wilson, NC',
|
||||
1252426 => 'Hertford, NC',
|
||||
1252430 => 'Henderson, NC',
|
||||
1252431 => 'Henderson, NC',
|
||||
1252435 => 'Moyock, NC',
|
||||
1252436 => 'Henderson, NC',
|
||||
1252438 => 'Henderson, NC',
|
||||
1252439 => 'Greenville, NC',
|
||||
1252442 => 'Rocky Mount, NC',
|
||||
1252443 => 'Rocky Mount, NC',
|
||||
1252444 => 'Havelock, NC',
|
||||
1252445 => 'Enfield, NC',
|
||||
1252446 => 'Rocky Mount, NC',
|
||||
1252447 => 'Havelock, NC',
|
||||
1252448 => 'Trenton, NC',
|
||||
1252451 => 'Rocky Mount, NC',
|
||||
1252456 => 'Norlina, NC',
|
||||
1252459 => 'Nashville, NC',
|
||||
1252473 => 'Manteo, NC',
|
||||
1252475 => 'Manteo, NC',
|
||||
1252478 => 'Spring Hope, NC',
|
||||
1252480 => 'Kill Devil Hills, NC',
|
||||
1252482 => 'Edenton, NC',
|
||||
1252492 => 'Henderson, NC',
|
||||
1252504 => 'Beaufort, NC',
|
||||
1252514 => 'New Bern, NC',
|
||||
1252520 => 'Kinston, NC',
|
||||
1252522 => 'Kinston, NC',
|
||||
1252523 => 'Kinston, NC',
|
||||
1252524 => 'Grifton, NC',
|
||||
1252527 => 'Kinston, NC',
|
||||
1252534 => 'Jackson, NC',
|
||||
1252535 => 'Roanoke Rapids, NC',
|
||||
1252537 => 'Roanoke Rapids, NC',
|
||||
1252566 => 'La Grange, NC',
|
||||
1252568 => 'Pink Hill, NC',
|
||||
1252583 => 'Halifax, NC',
|
||||
1252586 => 'Littleton, NC',
|
||||
1252633 => 'New Bern, NC',
|
||||
1252634 => 'New Bern, NC',
|
||||
1252635 => 'New Bern, NC',
|
||||
1252636 => 'New Bern, NC',
|
||||
1252637 => 'New Bern, NC',
|
||||
1252638 => 'New Bern, NC',
|
||||
1252641 => 'Tarboro, NC',
|
||||
1252672 => 'New Bern, NC',
|
||||
1252695 => 'Greenville, NC',
|
||||
1252726 => 'Morehead City, NC',
|
||||
1252727 => 'Morehead City, NC',
|
||||
1252728 => 'Beaufort, NC',
|
||||
1252744 => 'Greenville, NC',
|
||||
1252746 => 'Ayden, NC',
|
||||
1252747 => 'Snow Hill, NC',
|
||||
1252752 => 'Greenville, NC',
|
||||
1252753 => 'Farmville, NC',
|
||||
1252756 => 'Greenville, NC',
|
||||
1252757 => 'Greenville, NC',
|
||||
1252758 => 'Greenville, NC',
|
||||
1252771 => 'South Mills, NC',
|
||||
1252792 => 'Williamston, NC',
|
||||
1252793 => 'Plymouth, NC',
|
||||
1252794 => 'Windsor, NC',
|
||||
1252795 => 'Robersonville, NC',
|
||||
1252796 => 'Columbia, NC',
|
||||
1252808 => 'Morehead City, NC',
|
||||
1252823 => 'Tarboro, NC',
|
||||
1252825 => 'Bethel, NC',
|
||||
1252826 => 'Scotland Neck, NC',
|
||||
1252827 => 'Pinetops, NC',
|
||||
1252830 => 'Greenville, NC',
|
||||
1252847 => 'Greenville, NC',
|
||||
1252926 => 'Swan Quarter, NC',
|
||||
1252928 => 'Ocracoke, NC',
|
||||
1252937 => 'Rocky Mount, NC',
|
||||
1252939 => 'Kinston, NC',
|
||||
1252940 => 'Washington, NC',
|
||||
1252943 => 'Belhaven, NC',
|
||||
1252946 => 'Washington, NC',
|
||||
1252972 => 'Rocky Mount, NC',
|
||||
1252974 => 'Washington, NC',
|
||||
1252975 => 'Washington, NC',
|
||||
1252977 => 'Rocky Mount, NC',
|
||||
1252985 => 'Rocky Mount, NC',
|
||||
1252986 => 'Hatteras, NC',
|
||||
);
|
||||
113
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1253.php
vendored
Normal file
113
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1253.php
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1253 => 'Washington',
|
||||
1253200 => 'Puyallup, WA',
|
||||
1253236 => 'Kent, WA',
|
||||
1253265 => 'Gig Harbor, WA',
|
||||
1253272 => 'Tacoma, WA',
|
||||
1253274 => 'Tacoma, WA',
|
||||
1253277 => 'Kent, WA',
|
||||
1253284 => 'Tacoma, WA',
|
||||
1253288 => 'Auburn, WA',
|
||||
1253292 => 'Tacoma, WA',
|
||||
1253301 => 'Tacoma, WA',
|
||||
1253333 => 'Auburn, WA',
|
||||
1253372 => 'Kent, WA',
|
||||
1253373 => 'Kent, WA',
|
||||
1253383 => 'Tacoma, WA',
|
||||
1253395 => 'Kent, WA',
|
||||
1253396 => 'Tacoma, WA',
|
||||
1253403 => 'Tacoma, WA',
|
||||
1253426 => 'Tacoma, WA',
|
||||
1253435 => 'Puyallup, WA',
|
||||
1253445 => 'Puyallup, WA',
|
||||
1253446 => 'Puyallup, WA',
|
||||
1253459 => 'Tacoma, WA',
|
||||
1253471 => 'Tacoma, WA',
|
||||
1253472 => 'Tacoma, WA',
|
||||
1253473 => 'Tacoma, WA',
|
||||
1253474 => 'Tacoma, WA',
|
||||
1253475 => 'Tacoma, WA',
|
||||
1253476 => 'Tacoma, WA',
|
||||
1253503 => 'Tacoma, WA',
|
||||
1253520 => 'Kent, WA',
|
||||
1253529 => 'Federal Way, WA',
|
||||
1253530 => 'Gig Harbor, WA',
|
||||
1253531 => 'Tacoma, WA',
|
||||
1253535 => 'Tacoma, WA',
|
||||
1253536 => 'Tacoma, WA',
|
||||
1253537 => 'Tacoma, WA',
|
||||
1253538 => 'Tacoma, WA',
|
||||
1253539 => 'Tacoma, WA',
|
||||
1253549 => 'Fox Island, WA',
|
||||
1253571 => 'Tacoma, WA',
|
||||
1253572 => 'Tacoma, WA',
|
||||
1253581 => 'Lakewood, WA',
|
||||
1253583 => 'Tacoma, WA',
|
||||
1253584 => 'Lakewood, WA',
|
||||
1253589 => 'Lakewood, WA',
|
||||
1253591 => 'Tacoma, WA',
|
||||
1253593 => 'Tacoma, WA',
|
||||
1253596 => 'Tacoma, WA',
|
||||
1253597 => 'Tacoma, WA',
|
||||
1253604 => 'Puyallup, WA',
|
||||
1253620 => 'Lakewood, WA',
|
||||
1253627 => 'Tacoma, WA',
|
||||
1253630 => 'Kent, WA',
|
||||
1253631 => 'Kent, WA',
|
||||
1253638 => 'Kent, WA',
|
||||
1253639 => 'Kent, WA',
|
||||
1253661 => 'Federal Way, WA',
|
||||
1253682 => 'Tacoma, WA',
|
||||
1253697 => 'Puyallup, WA',
|
||||
1253735 => 'Auburn, WA',
|
||||
1253737 => 'Auburn, WA',
|
||||
1253752 => 'Tacoma, WA',
|
||||
1253756 => 'Tacoma, WA',
|
||||
1253759 => 'Tacoma, WA',
|
||||
1253761 => 'Tacoma, WA',
|
||||
1253770 => 'Puyallup, WA',
|
||||
1253798 => 'Tacoma, WA',
|
||||
1253804 => 'Auburn, WA',
|
||||
1253813 => 'Kent, WA',
|
||||
1253815 => 'Federal Way, WA',
|
||||
1253830 => 'Tacoma, WA',
|
||||
1253833 => 'Auburn, WA',
|
||||
1253835 => 'Federal Way, WA',
|
||||
1253838 => 'Federal Way, WA',
|
||||
1253839 => 'Federal Way, WA',
|
||||
1253840 => 'Puyallup, WA',
|
||||
1253841 => 'Puyallup, WA',
|
||||
1253843 => 'Roy, WA',
|
||||
1253845 => 'Puyallup, WA',
|
||||
1253848 => 'Puyallup, WA',
|
||||
1253850 => 'Kent, WA',
|
||||
1253851 => 'Gig Harbor, WA',
|
||||
1253852 => 'Kent, WA',
|
||||
1253853 => 'Gig Harbor, WA',
|
||||
1253854 => 'Kent, WA',
|
||||
1253856 => 'Kent, WA',
|
||||
1253857 => 'Gig Harbor, WA',
|
||||
1253858 => 'Gig Harbor, WA',
|
||||
1253859 => 'Kent, WA',
|
||||
1253862 => 'Bonney Lake, WA',
|
||||
1253863 => 'Sumner, WA',
|
||||
1253864 => 'Puyallup, WA',
|
||||
1253872 => 'Kent, WA',
|
||||
1253874 => 'Federal Way, WA',
|
||||
1253876 => 'Auburn, WA',
|
||||
1253887 => 'Auburn, WA',
|
||||
1253922 => 'Fife, WA',
|
||||
1253926 => 'Fife, WA',
|
||||
1253931 => 'Auburn, WA',
|
||||
1253939 => 'Auburn, WA',
|
||||
1253941 => 'Federal Way, WA',
|
||||
1253945 => 'Federal Way, WA',
|
||||
1253946 => 'Federal Way, WA',
|
||||
1253983 => 'Lakewood, WA',
|
||||
);
|
||||
98
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1254.php
vendored
Normal file
98
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1254.php
vendored
Normal file
@@ -0,0 +1,98 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1254 => 'Texas',
|
||||
1254200 => 'Killeen, TX',
|
||||
1254202 => 'Waco, TX',
|
||||
1254213 => 'Killeen, TX',
|
||||
1254215 => 'Temple, TX',
|
||||
1254230 => 'Waco, TX',
|
||||
1254235 => 'Waco, TX',
|
||||
1254248 => 'Gatesville, TX',
|
||||
1254286 => 'Fort Hood, TX',
|
||||
1254288 => 'Fort Hood, TX',
|
||||
1254296 => 'Waco, TX',
|
||||
1254297 => 'Waco, TX',
|
||||
1254298 => 'Temple, TX',
|
||||
1254386 => 'Hamilton, TX',
|
||||
1254399 => 'Waco, TX',
|
||||
1254435 => 'Meridian, TX',
|
||||
1254442 => 'Cisco, TX',
|
||||
1254445 => 'Dublin, TX',
|
||||
1254501 => 'Killeen, TX',
|
||||
1254518 => 'Copperas Cove, TX',
|
||||
1254519 => 'Killeen, TX',
|
||||
1254526 => 'Killeen, TX',
|
||||
1254532 => 'Fort Hood, TX',
|
||||
1254542 => 'Copperas Cove, TX',
|
||||
1254547 => 'Copperas Cove, TX',
|
||||
1254554 => 'Killeen, TX',
|
||||
1254559 => 'Breckenridge, TX',
|
||||
1254562 => 'Mexia, TX',
|
||||
1254580 => 'Hillsboro, TX',
|
||||
1254582 => 'Hillsboro, TX',
|
||||
1254616 => 'Killeen, TX',
|
||||
1254628 => 'Killeen, TX',
|
||||
1254629 => 'Eastland, TX',
|
||||
1254634 => 'Killeen, TX',
|
||||
1254647 => 'Ranger, TX',
|
||||
1254666 => 'Hewitt, TX',
|
||||
1254675 => 'Clifton, TX',
|
||||
1254680 => 'Killeen, TX',
|
||||
1254690 => 'Killeen, TX',
|
||||
1254694 => 'Whitney, TX',
|
||||
1254697 => 'Cameron, TX',
|
||||
1254698 => 'Harker Heights, TX',
|
||||
1254699 => 'Killeen, TX',
|
||||
1254714 => 'Waco, TX',
|
||||
1254724 => 'Temple, TX',
|
||||
1254725 => 'Cross Plains, TX',
|
||||
1254729 => 'Groesbeck, TX',
|
||||
1254732 => 'Waco, TX',
|
||||
1254739 => 'Teague, TX',
|
||||
1254741 => 'Waco, TX',
|
||||
1254742 => 'Temple, TX',
|
||||
1254743 => 'Temple, TX',
|
||||
1254750 => 'Waco, TX',
|
||||
1254751 => 'Waco, TX',
|
||||
1254752 => 'Waco, TX',
|
||||
1254753 => 'Waco, TX',
|
||||
1254754 => 'Waco, TX',
|
||||
1254755 => 'Waco, TX',
|
||||
1254756 => 'Waco, TX',
|
||||
1254757 => 'Waco, TX',
|
||||
1254770 => 'Temple, TX',
|
||||
1254771 => 'Temple, TX',
|
||||
1254772 => 'Waco, TX',
|
||||
1254773 => 'Temple, TX',
|
||||
1254774 => 'Temple, TX',
|
||||
1254776 => 'Waco, TX',
|
||||
1254778 => 'Temple, TX',
|
||||
1254780 => 'Belton, TX',
|
||||
1254791 => 'Temple, TX',
|
||||
1254793 => 'Florence, TX',
|
||||
1254796 => 'Hico, TX',
|
||||
1254799 => 'Waco, TX',
|
||||
1254826 => 'West, TX',
|
||||
1254829 => 'Elm Mott, TX',
|
||||
1254836 => 'China Spring, TX',
|
||||
1254840 => 'McGregor, TX',
|
||||
1254857 => 'Lorena, TX',
|
||||
1254865 => 'Gatesville, TX',
|
||||
1254867 => 'Waco, TX',
|
||||
1254883 => 'Marlin, TX',
|
||||
1254893 => 'De Leon, TX',
|
||||
1254897 => 'Glen Rose, TX',
|
||||
1254898 => 'Glen Rose, TX',
|
||||
1254899 => 'Temple, TX',
|
||||
1254918 => 'Stephenville, TX',
|
||||
1254933 => 'Belton, TX',
|
||||
1254939 => 'Belton, TX',
|
||||
1254947 => 'Salado, TX',
|
||||
1254965 => 'Stephenville, TX',
|
||||
1254968 => 'Stephenville, TX',
|
||||
);
|
||||
164
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1256.php
vendored
Normal file
164
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1256.php
vendored
Normal file
@@ -0,0 +1,164 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1256 => 'Alabama',
|
||||
1256216 => 'Athens, AL',
|
||||
1256217 => 'Huntsville, AL',
|
||||
1256228 => 'Section, AL',
|
||||
1256230 => 'Athens, AL',
|
||||
1256231 => 'Anniston, AL',
|
||||
1256232 => 'Athens, AL',
|
||||
1256233 => 'Athens, AL',
|
||||
1256234 => 'Alexander City, AL',
|
||||
1256235 => 'Anniston, AL',
|
||||
1256236 => 'Anniston, AL',
|
||||
1256237 => 'Anniston, AL',
|
||||
1256238 => 'Anniston, AL',
|
||||
1256241 => 'Anniston, AL',
|
||||
1256245 => 'Sylacauga, AL',
|
||||
1256247 => 'Rogersville, AL',
|
||||
1256249 => 'Sylacauga, AL',
|
||||
1256259 => 'Scottsboro, AL',
|
||||
1256265 => 'Huntsville, AL',
|
||||
1256268 => 'Talladega, AL',
|
||||
1256270 => 'Huntsville, AL',
|
||||
1256301 => 'Decatur, AL',
|
||||
1256306 => 'Decatur, AL',
|
||||
1256308 => 'Decatur, AL',
|
||||
1256314 => 'Muscle Shoals, AL',
|
||||
1256315 => 'Talladega, AL',
|
||||
1256325 => 'Madison, AL',
|
||||
1256327 => 'Huntsville, AL',
|
||||
1256329 => 'Alexander City, AL',
|
||||
1256331 => 'Russellville, AL',
|
||||
1256332 => 'Russellville, AL',
|
||||
1256340 => 'Decatur, AL',
|
||||
1256341 => 'Decatur, AL',
|
||||
1256350 => 'Decatur, AL',
|
||||
1256351 => 'Decatur, AL',
|
||||
1256352 => 'Hanceville, AL',
|
||||
1256353 => 'Decatur, AL',
|
||||
1256354 => 'Ashland, AL',
|
||||
1256355 => 'Decatur, AL',
|
||||
1256356 => 'Red Bay, AL',
|
||||
1256357 => 'Wedowee, AL',
|
||||
1256362 => 'Talladega, AL',
|
||||
1256378 => 'Childersburg, AL',
|
||||
1256379 => 'New Market, AL',
|
||||
1256382 => 'Huntsville, AL',
|
||||
1256389 => 'Muscle Shoals, AL',
|
||||
1256396 => 'Lineville, AL',
|
||||
1256413 => 'Rainbow City, AL',
|
||||
1256423 => 'Ardmore, AL',
|
||||
1256428 => 'Huntsville, AL',
|
||||
1256430 => 'Huntsville, AL',
|
||||
1256435 => 'Jacksonville, AL',
|
||||
1256437 => 'Stevenson, AL',
|
||||
1256442 => 'Rainbow City, AL',
|
||||
1256446 => 'Leighton, AL',
|
||||
1256447 => 'Piedmont, AL',
|
||||
1256461 => 'Madison, AL',
|
||||
1256463 => 'Heflin, AL',
|
||||
1256464 => 'Madison, AL',
|
||||
1256467 => 'Gadsden, AL',
|
||||
1256489 => 'Huntsville, AL',
|
||||
1256492 => 'Gadsden, AL',
|
||||
1256494 => 'Gadsden, AL',
|
||||
1256513 => 'Huntsville, AL',
|
||||
1256519 => 'Huntsville, AL',
|
||||
1256532 => 'Huntsville, AL',
|
||||
1256533 => 'Huntsville, AL',
|
||||
1256534 => 'Huntsville, AL',
|
||||
1256535 => 'Huntsville, AL',
|
||||
1256536 => 'Huntsville, AL',
|
||||
1256538 => 'Attalla, AL',
|
||||
1256539 => 'Huntsville, AL',
|
||||
1256543 => 'Gadsden, AL',
|
||||
1256546 => 'Gadsden, AL',
|
||||
1256547 => 'Gadsden, AL',
|
||||
1256549 => 'Gadsden, AL',
|
||||
1256551 => 'Huntsville, AL',
|
||||
1256571 => 'Guntersville, AL',
|
||||
1256574 => 'Scottsboro, AL',
|
||||
1256582 => 'Guntersville, AL',
|
||||
1256585 => 'Huntsville, AL',
|
||||
1256586 => 'Arab, AL',
|
||||
1256593 => 'Boaz, AL',
|
||||
1256623 => 'Fyffe, AL',
|
||||
1256632 => 'Flat Rock, AL',
|
||||
1256637 => 'Courtland, AL',
|
||||
1256638 => 'Rainsville, AL',
|
||||
1256650 => 'Huntsville, AL',
|
||||
1256656 => 'Huntsville, AL',
|
||||
1256657 => 'Henagar, AL',
|
||||
1256685 => 'Town Creek, AL',
|
||||
1256686 => 'Decatur, AL',
|
||||
1256704 => 'Huntsville, AL',
|
||||
1256705 => 'Huntsville, AL',
|
||||
1256715 => 'Huntsville, AL',
|
||||
1256718 => 'Florence, AL',
|
||||
1256721 => 'Huntsville, AL',
|
||||
1256722 => 'Huntsville, AL',
|
||||
1256723 => 'New Hope, AL',
|
||||
1256726 => 'Huntsville, AL',
|
||||
1256728 => 'Grant, AL',
|
||||
1256729 => 'Athens, AL',
|
||||
1256734 => 'Cullman, AL',
|
||||
1256736 => 'Cullman, AL',
|
||||
1256737 => 'Cullman, AL',
|
||||
1256739 => 'Cullman, AL',
|
||||
1256740 => 'Florence, AL',
|
||||
1256741 => 'Anniston, AL',
|
||||
1256751 => 'Hartselle, AL',
|
||||
1256753 => 'Guntersville, AL',
|
||||
1256757 => 'Killen, AL',
|
||||
1256760 => 'Florence, AL',
|
||||
1256761 => 'Talladega, AL',
|
||||
1256764 => 'Florence, AL',
|
||||
1256765 => 'Florence, AL',
|
||||
1256766 => 'Florence, AL',
|
||||
1256767 => 'Florence, AL',
|
||||
1256768 => 'Florence, AL',
|
||||
1256771 => 'Athens, AL',
|
||||
1256772 => 'Madison, AL',
|
||||
1256773 => 'Hartselle, AL',
|
||||
1256774 => 'Madison, AL',
|
||||
1256775 => 'Cullman, AL',
|
||||
1256776 => 'Gurley, AL',
|
||||
1256778 => 'Somerville, AL',
|
||||
1256782 => 'Jacksonville, AL',
|
||||
1256825 => 'Dadeville, AL',
|
||||
1256828 => 'Hazel Green, AL',
|
||||
1256830 => 'Huntsville, AL',
|
||||
1256831 => 'Oxford, AL',
|
||||
1256832 => 'Oxford, AL',
|
||||
1256835 => 'Oxford, AL',
|
||||
1256837 => 'Huntsville, AL',
|
||||
1256840 => 'Boaz, AL',
|
||||
1256845 => 'Fort Payne, AL',
|
||||
1256851 => 'Huntsville, AL',
|
||||
1256852 => 'Huntsville, AL',
|
||||
1256858 => 'Huntsville, AL',
|
||||
1256859 => 'Huntsville, AL',
|
||||
1256878 => 'Albertville, AL',
|
||||
1256880 => 'Huntsville, AL',
|
||||
1256881 => 'Huntsville, AL',
|
||||
1256882 => 'Huntsville, AL',
|
||||
1256883 => 'Huntsville, AL',
|
||||
1256885 => 'Huntsville, AL',
|
||||
1256890 => 'Huntsville, AL',
|
||||
1256891 => 'Albertville, AL',
|
||||
1256892 => 'Ohatchee, AL',
|
||||
1256894 => 'Albertville, AL',
|
||||
1256895 => 'Huntsville, AL',
|
||||
1256922 => 'Huntsville, AL',
|
||||
1256927 => 'Centre, AL',
|
||||
1256931 => 'Arab, AL',
|
||||
1256971 => 'Huntsville, AL',
|
||||
1256974 => 'Moulton, AL',
|
||||
1256997 => 'Fort Payne, AL',
|
||||
);
|
||||
96
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1260.php
vendored
Normal file
96
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1260.php
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1260 => 'Indiana',
|
||||
1260244 => 'Columbia City, IN',
|
||||
1260248 => 'Columbia City, IN',
|
||||
1260338 => 'Fort Wayne, IN',
|
||||
1260347 => 'Kendallville, IN',
|
||||
1260349 => 'Kendallville, IN',
|
||||
1260355 => 'Huntington, IN',
|
||||
1260356 => 'Huntington, IN',
|
||||
1260357 => 'Garrett, IN',
|
||||
1260358 => 'Huntington, IN',
|
||||
1260359 => 'Huntington, IN',
|
||||
1260373 => 'Fort Wayne, IN',
|
||||
1260375 => 'Warren, IN',
|
||||
1260387 => 'Fort Wayne, IN',
|
||||
1260407 => 'Fort Wayne, IN',
|
||||
1260416 => 'Fort Wayne, IN',
|
||||
1260420 => 'Fort Wayne, IN',
|
||||
1260422 => 'Fort Wayne, IN',
|
||||
1260423 => 'Fort Wayne, IN',
|
||||
1260424 => 'Fort Wayne, IN',
|
||||
1260426 => 'Fort Wayne, IN',
|
||||
1260427 => 'Fort Wayne, IN',
|
||||
1260432 => 'Fort Wayne, IN',
|
||||
1260434 => 'Fort Wayne, IN',
|
||||
1260435 => 'Fort Wayne, IN',
|
||||
1260436 => 'Fort Wayne, IN',
|
||||
1260444 => 'Fort Wayne, IN',
|
||||
1260447 => 'Fort Wayne, IN',
|
||||
1260449 => 'Fort Wayne, IN',
|
||||
1260456 => 'Fort Wayne, IN',
|
||||
1260459 => 'Fort Wayne, IN',
|
||||
1260460 => 'Fort Wayne, IN',
|
||||
1260463 => 'LaGrange, IN',
|
||||
1260469 => 'Fort Wayne, IN',
|
||||
1260471 => 'Fort Wayne, IN',
|
||||
1260478 => 'Fort Wayne, IN',
|
||||
1260481 => 'Fort Wayne, IN',
|
||||
1260482 => 'Fort Wayne, IN',
|
||||
1260483 => 'Fort Wayne, IN',
|
||||
1260484 => 'Fort Wayne, IN',
|
||||
1260485 => 'Fort Wayne, IN',
|
||||
1260486 => 'Fort Wayne, IN',
|
||||
1260488 => 'Hamilton, IN',
|
||||
1260489 => 'Fort Wayne, IN',
|
||||
1260490 => 'Fort Wayne, IN',
|
||||
1260492 => 'Fort Wayne, IN',
|
||||
1260493 => 'New Haven, IN',
|
||||
1260495 => 'Fremont, IN',
|
||||
1260497 => 'Fort Wayne, IN',
|
||||
1260562 => 'Howe, IN',
|
||||
1260563 => 'Wabash, IN',
|
||||
1260569 => 'Wabash, IN',
|
||||
1260589 => 'Berne, IN',
|
||||
1260593 => 'Topeka, IN',
|
||||
1260622 => 'Ossian, IN',
|
||||
1260623 => 'Monroeville, IN',
|
||||
1260624 => 'Angola, IN',
|
||||
1260625 => 'Fort Wayne, IN',
|
||||
1260632 => 'Woodburn, IN',
|
||||
1260636 => 'Albion, IN',
|
||||
1260637 => 'Fort Wayne, IN',
|
||||
1260657 => 'Harlan, IN',
|
||||
1260665 => 'Angola, IN',
|
||||
1260668 => 'Angola, IN',
|
||||
1260672 => 'Roanoke, IN',
|
||||
1260693 => 'Churubusco, IN',
|
||||
1260723 => 'South Whitley, IN',
|
||||
1260724 => 'Decatur, IN',
|
||||
1260726 => 'Portland, IN',
|
||||
1260728 => 'Decatur, IN',
|
||||
1260739 => 'Fort Wayne, IN',
|
||||
1260744 => 'Fort Wayne, IN',
|
||||
1260745 => 'Fort Wayne, IN',
|
||||
1260747 => 'Fort Wayne, IN',
|
||||
1260749 => 'New Haven, IN',
|
||||
1260755 => 'Fort Wayne, IN',
|
||||
1260758 => 'Markle, IN',
|
||||
1260768 => 'Shipshewana, IN',
|
||||
1260824 => 'Bluffton, IN',
|
||||
1260837 => 'Waterloo, IN',
|
||||
1260854 => 'Wolcottville, IN',
|
||||
1260868 => 'Butler, IN',
|
||||
1260894 => 'Ligonier, IN',
|
||||
1260897 => 'Avilla, IN',
|
||||
1260925 => 'Auburn, IN',
|
||||
1260927 => 'Auburn, IN',
|
||||
1260969 => 'Fort Wayne, IN',
|
||||
1260982 => 'North Manchester, IN',
|
||||
);
|
||||
132
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1262.php
vendored
Normal file
132
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1262.php
vendored
Normal file
@@ -0,0 +1,132 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1262 => 'Wisconsin',
|
||||
1262238 => 'Mequon, WI',
|
||||
1262240 => 'Mequon, WI',
|
||||
1262241 => 'Mequon, WI',
|
||||
1262242 => 'Mequon, WI',
|
||||
1262243 => 'Mequon, WI',
|
||||
1262245 => 'Lake Geneva, WI',
|
||||
1262246 => 'Sussex, WI',
|
||||
1262248 => 'Lake Geneva, WI',
|
||||
1262249 => 'Lake Geneva, WI',
|
||||
1262250 => 'Menomonee Falls, WI',
|
||||
1262251 => 'Menomonee Falls, WI',
|
||||
1262252 => 'Menomonee Falls, WI',
|
||||
1262253 => 'Menomonee Falls, WI',
|
||||
1262255 => 'Menomonee Falls, WI',
|
||||
1262268 => 'Port Washington, WI',
|
||||
1262275 => 'Walworth, WI',
|
||||
1262279 => 'Genoa City, WI',
|
||||
1262284 => 'Port Washington, WI',
|
||||
1262285 => 'Belgium, WI',
|
||||
1262306 => 'West Bend, WI',
|
||||
1262334 => 'West Bend, WI',
|
||||
1262335 => 'West Bend, WI',
|
||||
1262338 => 'West Bend, WI',
|
||||
1262363 => 'Mukwonago, WI',
|
||||
1262367 => 'Hartland, WI',
|
||||
1262369 => 'Hartland, WI',
|
||||
1262373 => 'Brookfield, WI',
|
||||
1262375 => 'Grafton, WI',
|
||||
1262376 => 'Cedarburg, WI',
|
||||
1262387 => 'Mequon, WI',
|
||||
1262392 => 'North Prairie, WI',
|
||||
1262446 => 'Waukesha, WI',
|
||||
1262456 => 'Racine, WI',
|
||||
1262472 => 'Whitewater, WI',
|
||||
1262473 => 'Whitewater, WI',
|
||||
1262495 => 'Palmyra, WI',
|
||||
1262513 => 'Waukesha, WI',
|
||||
1262514 => 'Waterford, WI',
|
||||
1262521 => 'Waukesha, WI',
|
||||
1262522 => 'Waukesha, WI',
|
||||
1262524 => 'Waukesha, WI',
|
||||
1262532 => 'Menomonee Falls, WI',
|
||||
1262534 => 'Waterford, WI',
|
||||
1262538 => 'Hartland, WI',
|
||||
1262539 => 'Burlington, WI',
|
||||
1262542 => 'Waukesha, WI',
|
||||
1262544 => 'Waukesha, WI',
|
||||
1262547 => 'Waukesha, WI',
|
||||
1262548 => 'Waukesha, WI',
|
||||
1262549 => 'Waukesha, WI',
|
||||
1262551 => 'Kenosha, WI',
|
||||
1262552 => 'Kenosha, WI',
|
||||
1262554 => 'Racine, WI',
|
||||
1262560 => 'Oconomowoc, WI',
|
||||
1262567 => 'Oconomowoc, WI',
|
||||
1262569 => 'Oconomowoc, WI',
|
||||
1262574 => 'Waukesha, WI',
|
||||
1262593 => 'Sullivan, WI',
|
||||
1262594 => 'Eagle, WI',
|
||||
1262598 => 'Racine, WI',
|
||||
1262605 => 'Kenosha, WI',
|
||||
1262619 => 'Racine, WI',
|
||||
1262626 => 'Kewaskum, WI',
|
||||
1262629 => 'Allenton, WI',
|
||||
1262632 => 'Racine, WI',
|
||||
1262633 => 'Racine, WI',
|
||||
1262634 => 'Racine, WI',
|
||||
1262635 => 'Racine, WI',
|
||||
1262636 => 'Racine, WI',
|
||||
1262637 => 'Racine, WI',
|
||||
1262639 => 'Racine, WI',
|
||||
1262642 => 'East Troy, WI',
|
||||
1262644 => 'Slinger, WI',
|
||||
1262646 => 'Delafield, WI',
|
||||
1262650 => 'Waukesha, WI',
|
||||
1262652 => 'Kenosha, WI',
|
||||
1262653 => 'Kenosha, WI',
|
||||
1262654 => 'Kenosha, WI',
|
||||
1262656 => 'Kenosha, WI',
|
||||
1262657 => 'Kenosha, WI',
|
||||
1262658 => 'Kenosha, WI',
|
||||
1262662 => 'Big Bend, WI',
|
||||
1262670 => 'Hartford, WI',
|
||||
1262673 => 'Hartford, WI',
|
||||
1262675 => 'West Bend, WI',
|
||||
1262677 => 'Jackson, WI',
|
||||
1262679 => 'Muskego, WI',
|
||||
1262681 => 'Racine, WI',
|
||||
1262691 => 'Pewaukee, WI',
|
||||
1262692 => 'Fredonia, WI',
|
||||
1262694 => 'Kenosha, WI',
|
||||
1262695 => 'Pewaukee, WI',
|
||||
1262697 => 'Kenosha, WI',
|
||||
1262717 => 'Waukesha, WI',
|
||||
1262723 => 'Elkhorn, WI',
|
||||
1262728 => 'Delavan, WI',
|
||||
1262740 => 'Delavan, WI',
|
||||
1262741 => 'Elkhorn, WI',
|
||||
1262742 => 'Elkhorn, WI',
|
||||
1262763 => 'Burlington, WI',
|
||||
1262764 => 'Kenosha, WI',
|
||||
1262767 => 'Burlington, WI',
|
||||
1262780 => 'Brookfield, WI',
|
||||
1262781 => 'Brookfield, WI',
|
||||
1262783 => 'Brookfield, WI',
|
||||
1262785 => 'Brookfield, WI',
|
||||
1262787 => 'Brookfield, WI',
|
||||
1262789 => 'Brookfield, WI',
|
||||
1262790 => 'Brookfield, WI',
|
||||
1262798 => 'Waukesha, WI',
|
||||
1262820 => 'Sussex, WI',
|
||||
1262843 => 'Salem, WI',
|
||||
1262862 => 'Trevor, WI',
|
||||
1262877 => 'Twin Lakes, WI',
|
||||
1262878 => 'Union Grove, WI',
|
||||
1262896 => 'Waukesha, WI',
|
||||
1262898 => 'Racine, WI',
|
||||
1262925 => 'Kenosha, WI',
|
||||
1262928 => 'Waukesha, WI',
|
||||
1262942 => 'Kenosha, WI',
|
||||
1262948 => 'Kenosha, WI',
|
||||
1262965 => 'Dousman, WI',
|
||||
1262970 => 'Waukesha, WI',
|
||||
);
|
||||
21
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1267.php
vendored
Normal file
21
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1267.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1267 => 'Pennsylvania',
|
||||
1267292 => 'Philadelphia, PA',
|
||||
1267297 => 'Philadelphia, PA',
|
||||
1267324 => 'Philadelphia, PA',
|
||||
1267331 => 'Philadelphia, PA',
|
||||
1267335 => 'Philadelphia, PA',
|
||||
1267343 => 'Philadelphia, PA',
|
||||
1267388 => 'Philadelphia, PA',
|
||||
1267426 => 'Philadelphia, PA',
|
||||
1267519 => 'Philadelphia, PA',
|
||||
1267639 => 'Philadelphia, PA',
|
||||
1267687 => 'Philadelphia, PA',
|
||||
1267880 => 'Doylestown, PA',
|
||||
);
|
||||
112
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1269.php
vendored
Normal file
112
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1269.php
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1269 => 'Michigan',
|
||||
1269226 => 'Kalamazoo Township, MI',
|
||||
1269244 => 'Three Rivers, MI',
|
||||
1269273 => 'Three Rivers, MI',
|
||||
1269278 => 'Three Rivers, MI',
|
||||
1269279 => 'Three Rivers, MI',
|
||||
1269321 => 'Portage, MI',
|
||||
1269323 => 'Portage, MI',
|
||||
1269324 => 'Portage, MI',
|
||||
1269327 => 'Portage, MI',
|
||||
1269329 => 'Portage, MI',
|
||||
1269337 => 'Kalamazoo, MI',
|
||||
1269341 => 'Kalamazoo, MI',
|
||||
1269342 => 'Kalamazoo, MI',
|
||||
1269343 => 'Kalamazoo, MI',
|
||||
1269344 => 'Kalamazoo, MI',
|
||||
1269345 => 'Kalamazoo, MI',
|
||||
1269353 => 'Kalamazoo, MI',
|
||||
1269372 => 'Kalamazoo, MI',
|
||||
1269373 => 'Kalamazoo, MI',
|
||||
1269375 => 'Kalamazoo, MI',
|
||||
1269382 => 'Kalamazoo, MI',
|
||||
1269383 => 'Kalamazoo, MI',
|
||||
1269385 => 'Kalamazoo, MI',
|
||||
1269387 => 'Kalamazoo, MI',
|
||||
1269388 => 'Kalamazoo, MI',
|
||||
1269408 => 'St. Joseph, MI',
|
||||
1269422 => 'Baroda, MI',
|
||||
1269423 => 'Decatur, MI',
|
||||
1269426 => 'Sawyer, MI',
|
||||
1269427 => 'Bangor, MI',
|
||||
1269428 => 'St. Joseph, MI',
|
||||
1269432 => 'Colon, MI',
|
||||
1269435 => 'Constantine, MI',
|
||||
1269441 => 'Battle Creek, MI',
|
||||
1269445 => 'Cassopolis, MI',
|
||||
1269461 => 'Eau Claire, MI',
|
||||
1269463 => 'Watervliet, MI',
|
||||
1269465 => 'Bridgman, MI',
|
||||
1269467 => 'Centreville, MI',
|
||||
1269468 => 'Coloma, MI',
|
||||
1269469 => 'New Buffalo, MI',
|
||||
1269471 => 'Berrien Springs, MI',
|
||||
1269473 => 'Berrien Springs, MI',
|
||||
1269483 => 'White Pigeon, MI',
|
||||
1269496 => 'Mendon, MI',
|
||||
1269521 => 'Bloomingdale, MI',
|
||||
1269544 => 'Kalamazoo, MI',
|
||||
1269556 => 'St. Joseph, MI',
|
||||
1269561 => 'Fennville, MI',
|
||||
1269621 => 'Hartford, MI',
|
||||
1269623 => 'Delton, MI',
|
||||
1269624 => 'Lawton, MI',
|
||||
1269628 => 'Gobles, MI',
|
||||
1269629 => 'Richland, MI',
|
||||
1269637 => 'South Haven, MI',
|
||||
1269639 => 'South Haven, MI',
|
||||
1269646 => 'Marcellus, MI',
|
||||
1269649 => 'Vicksburg, MI',
|
||||
1269651 => 'Sturgis, MI',
|
||||
1269655 => 'Paw Paw, MI',
|
||||
1269657 => 'Paw Paw, MI',
|
||||
1269659 => 'Sturgis, MI',
|
||||
1269660 => 'Battle Creek, MI',
|
||||
1269663 => 'Edwardsburg, MI',
|
||||
1269665 => 'Galesburg, MI',
|
||||
1269668 => 'Mattawan, MI',
|
||||
1269673 => 'Allegan, MI',
|
||||
1269679 => 'Schoolcraft, MI',
|
||||
1269683 => 'Niles, MI',
|
||||
1269684 => 'Niles, MI',
|
||||
1269685 => 'Plainwell, MI',
|
||||
1269686 => 'Allegan, MI',
|
||||
1269687 => 'Niles, MI',
|
||||
1269692 => 'Otsego, MI',
|
||||
1269694 => 'Otsego, MI',
|
||||
1269695 => 'Buchanan, MI',
|
||||
1269729 => 'Athens, MI',
|
||||
1269731 => 'Augusta, MI',
|
||||
1269751 => 'Hamilton, MI',
|
||||
1269756 => 'Three Oaks, MI',
|
||||
1269781 => 'Marshall, MI',
|
||||
1269782 => 'Dowagiac, MI',
|
||||
1269789 => 'Marshall, MI',
|
||||
1269792 => 'Wayland, MI',
|
||||
1269795 => 'Middleville, MI',
|
||||
1269857 => 'Saugatuck, MI',
|
||||
1269925 => 'Benton Harbor, MI',
|
||||
1269926 => 'Benton Harbor, MI',
|
||||
1269927 => 'Benton Harbor, MI',
|
||||
1269934 => 'Benton Harbor, MI',
|
||||
1269944 => 'Benton Harbor, MI',
|
||||
1269945 => 'Hastings, MI',
|
||||
1269948 => 'Hastings, MI',
|
||||
1269962 => 'Battle Creek, MI',
|
||||
1269963 => 'Battle Creek, MI',
|
||||
1269964 => 'Battle Creek, MI',
|
||||
1269965 => 'Battle Creek, MI',
|
||||
1269966 => 'Battle Creek, MI',
|
||||
1269968 => 'Battle Creek, MI',
|
||||
1269969 => 'Battle Creek, MI',
|
||||
1269979 => 'Battle Creek, MI',
|
||||
1269982 => 'St. Joseph, MI',
|
||||
1269983 => 'St. Joseph, MI',
|
||||
);
|
||||
140
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1270.php
vendored
Normal file
140
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1270.php
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1270 => 'Kentucky',
|
||||
1270230 => 'Leitchfield, KY',
|
||||
1270234 => 'Elizabethtown, KY',
|
||||
1270236 => 'Hickman, KY',
|
||||
1270237 => 'Scottsville, KY',
|
||||
1270242 => 'Clarkson, KY',
|
||||
1270247 => 'Mayfield, KY',
|
||||
1270251 => 'Mayfield, KY',
|
||||
1270259 => 'Leitchfield, KY',
|
||||
1270265 => 'Elkton, KY',
|
||||
1270273 => 'Calhoun, KY',
|
||||
1270274 => 'Beaver Dam, KY',
|
||||
1270298 => 'Hartford, KY',
|
||||
1270333 => 'Sturgis, KY',
|
||||
1270335 => 'Wickliffe, KY',
|
||||
1270338 => 'Greenville, KY',
|
||||
1270343 => 'Jamestown, KY',
|
||||
1270351 => 'Radcliff, KY',
|
||||
1270352 => 'Radcliff, KY',
|
||||
1270358 => 'Hodgenville, KY',
|
||||
1270360 => 'Elizabethtown, KY',
|
||||
1270365 => 'Princeton, KY',
|
||||
1270384 => 'Columbia, KY',
|
||||
1270388 => 'Eddyville, KY',
|
||||
1270389 => 'Morganfield, KY',
|
||||
1270393 => 'Bowling Green, KY',
|
||||
1270395 => 'Calvert City, KY',
|
||||
1270415 => 'Paducah, KY',
|
||||
1270422 => 'Brandenburg, KY',
|
||||
1270432 => 'Edmonton, KY',
|
||||
1270439 => 'Oak Grove, KY',
|
||||
1270441 => 'Paducah, KY',
|
||||
1270442 => 'Paducah, KY',
|
||||
1270443 => 'Paducah, KY',
|
||||
1270444 => 'Paducah, KY',
|
||||
1270465 => 'Campbellsville, KY',
|
||||
1270469 => 'Campbellsville, KY',
|
||||
1270472 => 'Fulton, KY',
|
||||
1270483 => 'Guthrie, KY',
|
||||
1270487 => 'Tompkinsville, KY',
|
||||
1270522 => 'Cadiz, KY',
|
||||
1270524 => 'Munfordville, KY',
|
||||
1270526 => 'Morgantown, KY',
|
||||
1270527 => 'Benton, KY',
|
||||
1270534 => 'Paducah, KY',
|
||||
1270542 => 'Auburn, KY',
|
||||
1270547 => 'Irvington, KY',
|
||||
1270554 => 'Paducah, KY',
|
||||
1270563 => 'Smiths Grove, KY',
|
||||
1270575 => 'Paducah, KY',
|
||||
1270586 => 'Franklin, KY',
|
||||
1270597 => 'Brownsville, KY',
|
||||
1270598 => 'Franklin, KY',
|
||||
1270622 => 'Scottsville, KY',
|
||||
1270629 => 'Glasgow, KY',
|
||||
1270640 => 'Oak Grove, KY',
|
||||
1270646 => 'Glasgow, KY',
|
||||
1270651 => 'Glasgow, KY',
|
||||
1270653 => 'Clinton, KY',
|
||||
1270659 => 'Glasgow, KY',
|
||||
1270665 => 'La Center, KY',
|
||||
1270667 => 'Providence, KY',
|
||||
1270678 => 'Glasgow, KY',
|
||||
1270683 => 'Owensboro, KY',
|
||||
1270684 => 'Owensboro, KY',
|
||||
1270685 => 'Owensboro, KY',
|
||||
1270686 => 'Owensboro, KY',
|
||||
1270687 => 'Owensboro, KY',
|
||||
1270688 => 'Owensboro, KY',
|
||||
1270689 => 'Owensboro, KY',
|
||||
1270691 => 'Owensboro, KY',
|
||||
1270692 => 'Lebanon, KY',
|
||||
1270699 => 'Lebanon, KY',
|
||||
1270707 => 'Hopkinsville, KY',
|
||||
1270725 => 'Russellville, KY',
|
||||
1270726 => 'Russellville, KY',
|
||||
1270735 => 'Elizabethtown, KY',
|
||||
1270737 => 'Elizabethtown, KY',
|
||||
1270745 => 'Bowling Green, KY',
|
||||
1270746 => 'Bowling Green, KY',
|
||||
1270753 => 'Murray, KY',
|
||||
1270754 => 'Central City, KY',
|
||||
1270755 => 'Lewisburg, KY',
|
||||
1270756 => 'Hardinsburg, KY',
|
||||
1270759 => 'Murray, KY',
|
||||
1270761 => 'Murray, KY',
|
||||
1270762 => 'Murray, KY',
|
||||
1270763 => 'Elizabethtown, KY',
|
||||
1270765 => 'Elizabethtown, KY',
|
||||
1270766 => 'Elizabethtown, KY',
|
||||
1270769 => 'Elizabethtown, KY',
|
||||
1270773 => 'Cave City, KY',
|
||||
1270780 => 'Bowling Green, KY',
|
||||
1270781 => 'Bowling Green, KY',
|
||||
1270782 => 'Bowling Green, KY',
|
||||
1270783 => 'Bowling Green, KY',
|
||||
1270786 => 'Horse Cave, KY',
|
||||
1270789 => 'Campbellsville, KY',
|
||||
1270793 => 'Bowling Green, KY',
|
||||
1270796 => 'Bowling Green, KY',
|
||||
1270797 => 'Dawson Springs, KY',
|
||||
1270798 => 'Fort Campbell, KY',
|
||||
1270821 => 'Madisonville, KY',
|
||||
1270824 => 'Madisonville, KY',
|
||||
1270825 => 'Madisonville, KY',
|
||||
1270826 => 'Henderson, KY',
|
||||
1270827 => 'Henderson, KY',
|
||||
1270830 => 'Henderson, KY',
|
||||
1270831 => 'Henderson, KY',
|
||||
1270842 => 'Bowling Green, KY',
|
||||
1270843 => 'Bowling Green, KY',
|
||||
1270846 => 'Bowling Green, KY',
|
||||
1270852 => 'Owensboro, KY',
|
||||
1270862 => 'Cecilia, KY',
|
||||
1270864 => 'Burkesville, KY',
|
||||
1270866 => 'Russell Springs, KY',
|
||||
1270877 => 'Vine Grove, KY',
|
||||
1270879 => 'Caneyville, KY',
|
||||
1270885 => 'Hopkinsville, KY',
|
||||
1270886 => 'Hopkinsville, KY',
|
||||
1270887 => 'Hopkinsville, KY',
|
||||
1270889 => 'Hopkinsville, KY',
|
||||
1270898 => 'Paducah, KY',
|
||||
1270901 => 'Bowling Green, KY',
|
||||
1270904 => 'Bowling Green, KY',
|
||||
1270926 => 'Owensboro, KY',
|
||||
1270927 => 'Hawesville, KY',
|
||||
1270928 => 'Smithland, KY',
|
||||
1270932 => 'Greensburg, KY',
|
||||
1270965 => 'Marion, KY',
|
||||
1270982 => 'Elizabethtown, KY',
|
||||
1270988 => 'Salem, KY',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1272.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1272.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1272 => 'Pennsylvania',
|
||||
);
|
||||
65
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1276.php
vendored
Normal file
65
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1276.php
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1276 => 'Virginia',
|
||||
1276223 => 'Wytheville, VA',
|
||||
1276228 => 'Wytheville, VA',
|
||||
1276236 => 'Galax, VA',
|
||||
1276238 => 'Galax, VA',
|
||||
1276322 => 'Bluefield, VA',
|
||||
1276326 => 'Bluefield, VA',
|
||||
1276328 => 'Wise, VA',
|
||||
1276346 => 'Jonesville, VA',
|
||||
1276386 => 'Gate City, VA',
|
||||
1276395 => 'Coeburn, VA',
|
||||
1276429 => 'Glade Spring, VA',
|
||||
1276431 => 'Duffield, VA',
|
||||
1276466 => 'Bristol, VA',
|
||||
1276475 => 'Damascus, VA',
|
||||
1276496 => 'Saltville, VA',
|
||||
1276498 => 'Oakwood, VA',
|
||||
1276523 => 'Big Stone Gap, VA',
|
||||
1276546 => 'Pennington Gap, VA',
|
||||
1276591 => 'Bristol, VA',
|
||||
1276596 => 'Richlands, VA',
|
||||
1276619 => 'Abingdon, VA',
|
||||
1276623 => 'Abingdon, VA',
|
||||
1276628 => 'Abingdon, VA',
|
||||
1276629 => 'Bassett, VA',
|
||||
1276632 => 'Martinsville, VA',
|
||||
1276634 => 'Martinsville, VA',
|
||||
1276637 => 'Max Meadows, VA',
|
||||
1276638 => 'Martinsville, VA',
|
||||
1276644 => 'Bristol, VA',
|
||||
1276645 => 'Bristol, VA',
|
||||
1276646 => 'Chilhowie, VA',
|
||||
1276647 => 'Collinsville, VA',
|
||||
1276650 => 'Axton, VA',
|
||||
1276656 => 'Martinsville, VA',
|
||||
1276666 => 'Martinsville, VA',
|
||||
1276669 => 'Bristol, VA',
|
||||
1276676 => 'Abingdon, VA',
|
||||
1276679 => 'Norton, VA',
|
||||
1276686 => 'Rural Retreat, VA',
|
||||
1276688 => 'Bland, VA',
|
||||
1276694 => 'Stuart, VA',
|
||||
1276728 => 'Hillsville, VA',
|
||||
1276762 => 'St. Paul, VA',
|
||||
1276773 => 'Independence, VA',
|
||||
1276782 => 'Marion, VA',
|
||||
1276783 => 'Marion, VA',
|
||||
1276796 => 'Pound, VA',
|
||||
1276865 => 'Haysi, VA',
|
||||
1276873 => 'Honaker, VA',
|
||||
1276889 => 'Lebanon, VA',
|
||||
1276926 => 'Clintwood, VA',
|
||||
1276935 => 'Grundy, VA',
|
||||
1276944 => 'Meadowview, VA',
|
||||
1276956 => 'Ridgeway, VA',
|
||||
1276964 => 'Richlands, VA',
|
||||
1276988 => 'Tazewell, VA',
|
||||
);
|
||||
253
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1281.php
vendored
Normal file
253
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1281.php
vendored
Normal file
@@ -0,0 +1,253 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1281 => 'Texas',
|
||||
1281207 => 'Sugar Land, TX',
|
||||
1281208 => 'Missouri City, TX',
|
||||
1281209 => 'Houston, TX',
|
||||
1281213 => 'Cypress, TX',
|
||||
1281218 => 'Houston, TX',
|
||||
1281219 => 'Houston, TX',
|
||||
1281227 => 'Houston, TX',
|
||||
1281238 => 'Richmond, TX',
|
||||
1281242 => 'Sugar Land, TX',
|
||||
1281251 => 'Spring, TX',
|
||||
1281252 => 'Magnolia, TX',
|
||||
1281255 => 'Tomball, TX',
|
||||
1281256 => 'Cypress, TX',
|
||||
1281259 => 'Magnolia, TX',
|
||||
1281260 => 'Houston, TX',
|
||||
1281265 => 'Sugar Land, TX',
|
||||
1281272 => 'Houston, TX',
|
||||
1281277 => 'Sugar Land, TX',
|
||||
1281280 => 'Houston, TX',
|
||||
1281286 => 'Houston, TX',
|
||||
1281288 => 'Spring, TX',
|
||||
1281290 => 'Tomball, TX',
|
||||
1281291 => 'Seabrook, TX',
|
||||
1281292 => 'Spring, TX',
|
||||
1281293 => 'Houston, TX',
|
||||
1281296 => 'Spring, TX',
|
||||
1281298 => 'Spring, TX',
|
||||
1281304 => 'Cypress, TX',
|
||||
1281313 => 'Sugar Land, TX',
|
||||
1281319 => 'Humble, TX',
|
||||
1281320 => 'Spring, TX',
|
||||
1281324 => 'Huffman, TX',
|
||||
1281326 => 'Seabrook, TX',
|
||||
1281328 => 'Crosby, TX',
|
||||
1281331 => 'Alvin, TX',
|
||||
1281333 => 'Houston, TX',
|
||||
1281335 => 'Houston, TX',
|
||||
1281337 => 'Dickinson, TX',
|
||||
1281340 => 'Sugar Land, TX',
|
||||
1281341 => 'Richmond, TX',
|
||||
1281345 => 'Houston, TX',
|
||||
1281346 => 'Fulshear, TX',
|
||||
1281347 => 'Katy, TX',
|
||||
1281350 => 'Spring, TX',
|
||||
1281351 => 'Tomball, TX',
|
||||
1281353 => 'Spring, TX',
|
||||
1281354 => 'Porter, TX',
|
||||
1281355 => 'Spring, TX',
|
||||
1281356 => 'Magnolia, TX',
|
||||
1281357 => 'Tomball, TX',
|
||||
1281358 => 'Kingwood, TX',
|
||||
1281360 => 'Kingwood, TX',
|
||||
1281361 => 'Kingwood, TX',
|
||||
1281367 => 'Spring, TX',
|
||||
1281370 => 'Spring, TX',
|
||||
1281371 => 'Katy, TX',
|
||||
1281372 => 'Houston, TX',
|
||||
1281373 => 'Cypress, TX',
|
||||
1281375 => 'Brookshire, TX',
|
||||
1281376 => 'Spring, TX',
|
||||
1281379 => 'Spring, TX',
|
||||
1281383 => 'Baytown, TX',
|
||||
1281388 => 'Alvin, TX',
|
||||
1281391 => 'Katy, TX',
|
||||
1281392 => 'Katy, TX',
|
||||
1281395 => 'Katy, TX',
|
||||
1281397 => 'Houston, TX',
|
||||
1281398 => 'Katy, TX',
|
||||
1281399 => 'New Caney, TX',
|
||||
1281403 => 'Missouri City, TX',
|
||||
1281405 => 'Houston, TX',
|
||||
1281412 => 'Pearland, TX',
|
||||
1281420 => 'Baytown, TX',
|
||||
1281421 => 'Baytown, TX',
|
||||
1281422 => 'Baytown, TX',
|
||||
1281424 => 'Baytown, TX',
|
||||
1281426 => 'Highlands, TX',
|
||||
1281427 => 'Baytown, TX',
|
||||
1281428 => 'Baytown, TX',
|
||||
1281432 => 'Cleveland, TX',
|
||||
1281436 => 'Houston, TX',
|
||||
1281437 => 'Missouri City, TX',
|
||||
1281438 => 'Missouri City, TX',
|
||||
1281440 => 'Houston, TX',
|
||||
1281441 => 'Humble, TX',
|
||||
1281442 => 'Houston, TX',
|
||||
1281443 => 'Houston, TX',
|
||||
1281444 => 'Houston, TX',
|
||||
1281445 => 'Houston, TX',
|
||||
1281446 => 'Humble, TX',
|
||||
1281447 => 'Houston, TX',
|
||||
1281448 => 'Houston, TX',
|
||||
1281449 => 'Houston, TX',
|
||||
1281452 => 'Channelview, TX',
|
||||
1281454 => 'Houston, TX',
|
||||
1281456 => 'Houston, TX',
|
||||
1281457 => 'Channelview, TX',
|
||||
1281458 => 'Houston, TX',
|
||||
1281459 => 'Houston, TX',
|
||||
1281461 => 'Houston, TX',
|
||||
1281462 => 'Crosby, TX',
|
||||
1281463 => 'Houston, TX',
|
||||
1281464 => 'Houston, TX',
|
||||
1281465 => 'Spring, TX',
|
||||
1281469 => 'Houston, TX',
|
||||
1281470 => 'La Porte, TX',
|
||||
1281471 => 'La Porte, TX',
|
||||
1281474 => 'Seabrook, TX',
|
||||
1281476 => 'Deer Park, TX',
|
||||
1281477 => 'Houston, TX',
|
||||
1281478 => 'Deer Park, TX',
|
||||
1281479 => 'Deer Park, TX',
|
||||
1281480 => 'Houston, TX',
|
||||
1281481 => 'Houston, TX',
|
||||
1281482 => 'Friendswood, TX',
|
||||
1281484 => 'Houston, TX',
|
||||
1281485 => 'Pearland, TX',
|
||||
1281487 => 'Pasadena, TX',
|
||||
1281488 => 'Houston, TX',
|
||||
1281489 => 'Manvel, TX',
|
||||
1281491 => 'Sugar Land, TX',
|
||||
1281493 => 'Houston, TX',
|
||||
1281494 => 'Sugar Land, TX',
|
||||
1281495 => 'Houston, TX',
|
||||
1281496 => 'Houston, TX',
|
||||
1281497 => 'Houston, TX',
|
||||
1281498 => 'Houston, TX',
|
||||
1281501 => 'Houston, TX',
|
||||
1281506 => 'Houston, TX',
|
||||
1281516 => 'Tomball, TX',
|
||||
1281517 => 'Houston, TX',
|
||||
1281528 => 'Spring, TX',
|
||||
1281530 => 'Houston, TX',
|
||||
1281531 => 'Houston, TX',
|
||||
1281533 => 'Fulshear, TX',
|
||||
1281534 => 'Dickinson, TX',
|
||||
1281537 => 'Houston, TX',
|
||||
1281540 => 'Humble, TX',
|
||||
1281545 => 'Richmond, TX',
|
||||
1281548 => 'Humble, TX',
|
||||
1281550 => 'Houston, TX',
|
||||
1281554 => 'League City, TX',
|
||||
1281556 => 'Houston, TX',
|
||||
1281558 => 'Houston, TX',
|
||||
1281559 => 'Bacliff, TX',
|
||||
1281561 => 'Houston, TX',
|
||||
1281564 => 'Houston, TX',
|
||||
1281565 => 'Sugar Land, TX',
|
||||
1281568 => 'Houston, TX',
|
||||
1281573 => 'Baytown, TX',
|
||||
1281574 => 'Katy, TX',
|
||||
1281575 => 'Houston, TX',
|
||||
1281578 => 'Katy, TX',
|
||||
1281579 => 'Katy, TX',
|
||||
1281580 => 'Houston, TX',
|
||||
1281583 => 'Houston, TX',
|
||||
1281585 => 'Alvin, TX',
|
||||
1281586 => 'Houston, TX',
|
||||
1281587 => 'Houston, TX',
|
||||
1281589 => 'Houston, TX',
|
||||
1281590 => 'Houston, TX',
|
||||
1281591 => 'Houston, TX',
|
||||
1281592 => 'Cleveland, TX',
|
||||
1281593 => 'Cleveland, TX',
|
||||
1281596 => 'Houston, TX',
|
||||
1281597 => 'Houston, TX',
|
||||
1281598 => 'Houston, TX',
|
||||
1281599 => 'Katy, TX',
|
||||
1281617 => 'Houston, TX',
|
||||
1281634 => 'Sugar Land, TX',
|
||||
1281644 => 'Katy, TX',
|
||||
1281646 => 'Katy, TX',
|
||||
1281648 => 'Friendswood, TX',
|
||||
1281651 => 'Spring, TX',
|
||||
1281656 => 'Houston, TX',
|
||||
1281659 => 'Cleveland, TX',
|
||||
1281679 => 'Houston, TX',
|
||||
1281693 => 'Katy, TX',
|
||||
1281719 => 'Spring, TX',
|
||||
1281741 => 'Houston, TX',
|
||||
1281752 => 'Houston, TX',
|
||||
1281756 => 'Alvin, TX',
|
||||
1281758 => 'Cypress, TX',
|
||||
1281759 => 'Houston, TX',
|
||||
1281778 => 'Missouri City, TX',
|
||||
1281781 => 'Houston, TX',
|
||||
1281784 => 'Houston, TX',
|
||||
1281807 => 'Houston, TX',
|
||||
1281812 => 'Humble, TX',
|
||||
1281820 => 'Houston, TX',
|
||||
1281821 => 'Houston, TX',
|
||||
1281822 => 'Houston, TX',
|
||||
1281824 => 'Alvin, TX',
|
||||
1281829 => 'Katy, TX',
|
||||
1281835 => 'Missouri City, TX',
|
||||
1281837 => 'Baytown, TX',
|
||||
1281839 => 'Baytown, TX',
|
||||
1281842 => 'La Porte, TX',
|
||||
1281847 => 'Houston, TX',
|
||||
1281852 => 'Humble, TX',
|
||||
1281855 => 'Houston, TX',
|
||||
1281856 => 'Houston, TX',
|
||||
1281858 => 'Houston, TX',
|
||||
1281859 => 'Houston, TX',
|
||||
1281860 => 'Channelview, TX',
|
||||
1281861 => 'Houston, TX',
|
||||
1281866 => 'Houston, TX',
|
||||
1281867 => 'La Porte, TX',
|
||||
1281870 => 'Houston, TX',
|
||||
1281872 => 'Houston, TX',
|
||||
1281873 => 'Houston, TX',
|
||||
1281875 => 'Houston, TX',
|
||||
1281876 => 'Houston, TX',
|
||||
1281879 => 'Houston, TX',
|
||||
1281880 => 'Houston, TX',
|
||||
1281888 => 'Houston, TX',
|
||||
1281890 => 'Houston, TX',
|
||||
1281893 => 'Houston, TX',
|
||||
1281894 => 'Houston, TX',
|
||||
1281895 => 'Houston, TX',
|
||||
1281897 => 'Houston, TX',
|
||||
1281907 => 'Spring, TX',
|
||||
1281919 => 'Houston, TX',
|
||||
1281920 => 'Houston, TX',
|
||||
1281922 => 'Houston, TX',
|
||||
1281930 => 'Deer Park, TX',
|
||||
1281931 => 'Houston, TX',
|
||||
1281933 => 'Houston, TX',
|
||||
1281934 => 'Brookshire, TX',
|
||||
1281955 => 'Houston, TX',
|
||||
1281970 => 'Houston, TX',
|
||||
1281973 => 'Humble, TX',
|
||||
1281974 => 'Houston, TX',
|
||||
1281980 => 'Sugar Land, TX',
|
||||
1281983 => 'Houston, TX',
|
||||
1281987 => 'Houston, TX',
|
||||
1281988 => 'Houston, TX',
|
||||
1281991 => 'Pasadena, TX',
|
||||
1281992 => 'Friendswood, TX',
|
||||
1281993 => 'Friendswood, TX',
|
||||
1281996 => 'Friendswood, TX',
|
||||
1281997 => 'Pearland, TX',
|
||||
1281998 => 'Pasadena, TX',
|
||||
1281999 => 'Houston, TX',
|
||||
);
|
||||
16
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1289.php
vendored
Normal file
16
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1289.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1289 => 'Ontario',
|
||||
1289240 => 'Oshawa, ON',
|
||||
1289296 => 'Niagara Falls, ON',
|
||||
1289337 => 'Burlington, ON',
|
||||
1289362 => 'St. Catharines, ON',
|
||||
1289389 => 'Hamilton, ON',
|
||||
1289396 => 'Hamilton, ON',
|
||||
1289752 => 'Brampton, ON',
|
||||
);
|
||||
247
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1301.php
vendored
Normal file
247
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1301.php
vendored
Normal file
@@ -0,0 +1,247 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1301 => 'Maryland',
|
||||
1301203 => 'Fort Washington, MD',
|
||||
1301208 => 'Gaithersburg, MD',
|
||||
1301210 => 'Beltsville, MD',
|
||||
1301215 => 'Bethesda, MD',
|
||||
1301216 => 'Gaithersburg, MD',
|
||||
1301217 => 'Rockville, MD',
|
||||
1301220 => 'Greenbelt, MD',
|
||||
1301223 => 'Williamsport, MD',
|
||||
1301228 => 'Frederick, MD',
|
||||
1301229 => 'Bethesda, MD',
|
||||
1301230 => 'Rockville, MD',
|
||||
1301231 => 'Rockville, MD',
|
||||
1301248 => 'Fort Washington, MD',
|
||||
1301251 => 'Rockville, MD',
|
||||
1301253 => 'Damascus, MD',
|
||||
1301258 => 'Gaithersburg, MD',
|
||||
1301259 => 'Newburg, MD',
|
||||
1301260 => 'Olney, MD',
|
||||
1301262 => 'Bowie, MD',
|
||||
1301263 => 'Bethesda, MD',
|
||||
1301270 => 'Takoma Park, MD',
|
||||
1301271 => 'Thurmont, MD',
|
||||
1301274 => 'Hughesville, MD',
|
||||
1301279 => 'Rockville, MD',
|
||||
1301283 => 'Accokeek, MD',
|
||||
1301292 => 'Fort Washington, MD',
|
||||
1301293 => 'Myersville, MD',
|
||||
1301294 => 'Rockville, MD',
|
||||
1301295 => 'Bethesda, MD',
|
||||
1301296 => 'Towson, MD',
|
||||
1301297 => 'Clinton, MD',
|
||||
1301299 => 'Potomac, MD',
|
||||
1301306 => 'Lanham, MD',
|
||||
1301309 => 'Rockville, MD',
|
||||
1301315 => 'Rockville, MD',
|
||||
1301316 => 'Temple Hills, MD',
|
||||
1301317 => 'Laurel, MD',
|
||||
1301319 => 'Bethesda, MD',
|
||||
1301320 => 'Bethesda, MD',
|
||||
1301330 => 'Gaithersburg, MD',
|
||||
1301334 => 'Oakland, MD',
|
||||
1301336 => 'Capitol Heights, MD',
|
||||
1301340 => 'Rockville, MD',
|
||||
1301349 => 'Poolesville, MD',
|
||||
1301352 => 'Bowie, MD',
|
||||
1301353 => 'Germantown, MD',
|
||||
1301355 => 'Gaithersburg, MD',
|
||||
1301359 => 'Westernport, MD',
|
||||
1301362 => 'Laurel, MD',
|
||||
1301365 => 'Bethesda, MD',
|
||||
1301371 => 'Middletown, MD',
|
||||
1301372 => 'Brandywine, MD',
|
||||
1301373 => 'Hollywood, MD',
|
||||
1301374 => 'Waldorf, MD',
|
||||
1301375 => 'Bryans Road, MD',
|
||||
1301384 => 'Silver Spring, MD',
|
||||
1301392 => 'La Plata, MD',
|
||||
1301393 => 'Hagerstown, MD',
|
||||
1301396 => 'Waldorf, MD',
|
||||
1301402 => 'Bethesda, MD',
|
||||
1301417 => 'Gaithersburg, MD',
|
||||
1301421 => 'Burtonsville, MD',
|
||||
1301422 => 'Hyattsville, MD',
|
||||
1301423 => 'Temple Hills, MD',
|
||||
1301424 => 'Rockville, MD',
|
||||
1301428 => 'Germantown, MD',
|
||||
1301429 => 'Lanham, MD',
|
||||
1301438 => 'Silver Spring, MD',
|
||||
1301447 => 'Emmitsburg, MD',
|
||||
1301449 => 'Temple Hills, MD',
|
||||
1301459 => 'Lanham, MD',
|
||||
1301463 => 'Lonaconing, MD',
|
||||
1301464 => 'Bowie, MD',
|
||||
1301468 => 'Rockville, MD',
|
||||
1301469 => 'Bethesda, MD',
|
||||
1301473 => 'Frederick, MD',
|
||||
1301475 => 'Leonardtown, MD',
|
||||
1301483 => 'Laurel, MD',
|
||||
1301490 => 'Laurel, MD',
|
||||
1301493 => 'Bethesda, MD',
|
||||
1301495 => 'Silver Spring, MD',
|
||||
1301496 => 'Bethesda, MD',
|
||||
1301497 => 'Laurel, MD',
|
||||
1301498 => 'Laurel, MD',
|
||||
1301515 => 'Germantown, MD',
|
||||
1301519 => 'Gaithersburg, MD',
|
||||
1301527 => 'Gaithersburg, MD',
|
||||
1301528 => 'Germantown, MD',
|
||||
1301530 => 'Bethesda, MD',
|
||||
1301533 => 'Oakland, MD',
|
||||
1301540 => 'Germantown, MD',
|
||||
1301545 => 'Rockville, MD',
|
||||
1301552 => 'Lanham, MD',
|
||||
1301559 => 'Hyattsville, MD',
|
||||
1301562 => 'Silver Spring, MD',
|
||||
1301564 => 'Bethesda, MD',
|
||||
1301565 => 'Silver Spring, MD',
|
||||
1301567 => 'Oxon Hill, MD',
|
||||
1301570 => 'Olney, MD',
|
||||
1301571 => 'Bethesda, MD',
|
||||
1301572 => 'Silver Spring, MD',
|
||||
1301574 => 'Upper Marlboro, MD',
|
||||
1301577 => 'Lanham, MD',
|
||||
1301582 => 'Hagerstown, MD',
|
||||
1301585 => 'Silver Spring, MD',
|
||||
1301587 => 'Silver Spring, MD',
|
||||
1301588 => 'Silver Spring, MD',
|
||||
1301589 => 'Silver Spring, MD',
|
||||
1301590 => 'Gaithersburg, MD',
|
||||
1301592 => 'Silver Spring, MD',
|
||||
1301593 => 'Silver Spring, MD',
|
||||
1301595 => 'Beltsville, MD',
|
||||
1301596 => 'Columbia, MD',
|
||||
1301598 => 'Silver Spring, MD',
|
||||
1301599 => 'Upper Marlboro, MD',
|
||||
1301600 => 'Frederick, MD',
|
||||
1301604 => 'Laurel, MD',
|
||||
1301608 => 'Silver Spring, MD',
|
||||
1301609 => 'La Plata, MD',
|
||||
1301610 => 'Rockville, MD',
|
||||
1301618 => 'Upper Marlboro, MD',
|
||||
1301620 => 'Frederick, MD',
|
||||
1301622 => 'Silver Spring, MD',
|
||||
1301624 => 'Frederick, MD',
|
||||
1301627 => 'Upper Marlboro, MD',
|
||||
1301630 => 'Temple Hills, MD',
|
||||
1301631 => 'Frederick, MD',
|
||||
1301632 => 'Waldorf, MD',
|
||||
1301638 => 'Waldorf, MD',
|
||||
1301645 => 'Waldorf, MD',
|
||||
1301649 => 'Silver Spring, MD',
|
||||
1301654 => 'Bethesda, MD',
|
||||
1301656 => 'Bethesda, MD',
|
||||
1301657 => 'Bethesda, MD',
|
||||
1301662 => 'Frederick, MD',
|
||||
1301663 => 'Frederick, MD',
|
||||
1301665 => 'Hagerstown, MD',
|
||||
1301668 => 'Frederick, MD',
|
||||
1301670 => 'Gaithersburg, MD',
|
||||
1301678 => 'Hancock, MD',
|
||||
1301680 => 'Silver Spring, MD',
|
||||
1301681 => 'Silver Spring, MD',
|
||||
1301682 => 'Frederick, MD',
|
||||
1301686 => 'Oxon Hill, MD',
|
||||
1301689 => 'Frostburg, MD',
|
||||
1301694 => 'Frederick, MD',
|
||||
1301695 => 'Frederick, MD',
|
||||
1301696 => 'Frederick, MD',
|
||||
1301698 => 'Frederick, MD',
|
||||
1301702 => 'Temple Hills, MD',
|
||||
1301705 => 'Waldorf, MD',
|
||||
1301714 => 'Hagerstown, MD',
|
||||
1301718 => 'Bethesda, MD',
|
||||
1301722 => 'Cumberland, MD',
|
||||
1301723 => 'Cumberland, MD',
|
||||
1301724 => 'Cumberland, MD',
|
||||
1301725 => 'Laurel, MD',
|
||||
1301729 => 'Cumberland, MD',
|
||||
1301733 => 'Hagerstown, MD',
|
||||
1301737 => 'California, MD',
|
||||
1301738 => 'Rockville, MD',
|
||||
1301739 => 'Hagerstown, MD',
|
||||
1301740 => 'Gaithersburg, MD',
|
||||
1301743 => 'Indian Head, MD',
|
||||
1301745 => 'Hagerstown, MD',
|
||||
1301749 => 'Oxon Hill, MD',
|
||||
1301754 => 'Silver Spring, MD',
|
||||
1301759 => 'Cumberland, MD',
|
||||
1301762 => 'Rockville, MD',
|
||||
1301765 => 'Potomac, MD',
|
||||
1301766 => 'Hagerstown, MD',
|
||||
1301767 => 'Bethesda, MD',
|
||||
1301770 => 'Rockville, MD',
|
||||
1301774 => 'Olney, MD',
|
||||
1301776 => 'Laurel, MD',
|
||||
1301777 => 'Cumberland, MD',
|
||||
1301780 => 'Upper Marlboro, MD',
|
||||
1301782 => 'Brandywine, MD',
|
||||
1301790 => 'Hagerstown, MD',
|
||||
1301791 => 'Hagerstown, MD',
|
||||
1301797 => 'Hagerstown, MD',
|
||||
1301805 => 'Bowie, MD',
|
||||
1301809 => 'Bowie, MD',
|
||||
1301816 => 'Rockville, MD',
|
||||
1301824 => 'Smithsburg, MD',
|
||||
1301829 => 'Mount Airy, MD',
|
||||
1301834 => 'Brunswick, MD',
|
||||
1301838 => 'Rockville, MD',
|
||||
1301839 => 'Oxon Hill, MD',
|
||||
1301840 => 'Gaithersburg, MD',
|
||||
1301842 => 'Clear Spring, MD',
|
||||
1301843 => 'Waldorf, MD',
|
||||
1301845 => 'Walkersville, MD',
|
||||
1301846 => 'Frederick, MD',
|
||||
1301853 => 'Hyattsville, MD',
|
||||
1301856 => 'Clinton, MD',
|
||||
1301860 => 'Bowie, MD',
|
||||
1301863 => 'Lexington Park, MD',
|
||||
1301868 => 'Clinton, MD',
|
||||
1301869 => 'Gaithersburg, MD',
|
||||
1301877 => 'Clinton, MD',
|
||||
1301879 => 'Silver Spring, MD',
|
||||
1301881 => 'Rockville, MD',
|
||||
1301884 => 'Mechanicsville, MD',
|
||||
1301885 => 'Waldorf, MD',
|
||||
1301890 => 'Silver Spring, MD',
|
||||
1301891 => 'Takoma Park, MD',
|
||||
1301894 => 'Temple Hills, MD',
|
||||
1301895 => 'Grantsville, MD',
|
||||
1301896 => 'Bethesda, MD',
|
||||
1301897 => 'Bethesda, MD',
|
||||
1301899 => 'Temple Hills, MD',
|
||||
1301907 => 'Bethesda, MD',
|
||||
1301913 => 'Bethesda, MD',
|
||||
1301916 => 'Germantown, MD',
|
||||
1301926 => 'Gaithersburg, MD',
|
||||
1301929 => 'Kensington, MD',
|
||||
1301931 => 'Beltsville, MD',
|
||||
1301932 => 'Waldorf, MD',
|
||||
1301934 => 'La Plata, MD',
|
||||
1301937 => 'Beltsville, MD',
|
||||
1301947 => 'Gaithersburg, MD',
|
||||
1301948 => 'Gaithersburg, MD',
|
||||
1301951 => 'Bethesda, MD',
|
||||
1301952 => 'Upper Marlboro, MD',
|
||||
1301953 => 'Laurel, MD',
|
||||
1301961 => 'Bethesda, MD',
|
||||
1301963 => 'Gaithersburg, MD',
|
||||
1301972 => 'Germantown, MD',
|
||||
1301977 => 'Gaithersburg, MD',
|
||||
1301982 => 'Greenbelt, MD',
|
||||
1301983 => 'Potomac, MD',
|
||||
1301984 => 'Rockville, MD',
|
||||
1301986 => 'Bethesda, MD',
|
||||
1301987 => 'Gaithersburg, MD',
|
||||
1301989 => 'Silver Spring, MD',
|
||||
1301990 => 'Gaithersburg, MD',
|
||||
1301997 => 'Leonardtown, MD',
|
||||
);
|
||||
125
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1302.php
vendored
Normal file
125
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1302.php
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1302 => 'Delaware',
|
||||
1302224 => 'Newark, DE',
|
||||
1302225 => 'Wilmington, DE',
|
||||
1302226 => 'Rehoboth Beach, DE',
|
||||
1302227 => 'Rehoboth Beach, DE',
|
||||
1302234 => 'Hockessin, DE',
|
||||
1302235 => 'Hockessin, DE',
|
||||
1302239 => 'Hockessin, DE',
|
||||
1302255 => 'Wilmington, DE',
|
||||
1302266 => 'Newark, DE',
|
||||
1302284 => 'Felton, DE',
|
||||
1302292 => 'Newark, DE',
|
||||
1302322 => 'New Castle, DE',
|
||||
1302323 => 'New Castle, DE',
|
||||
1302324 => 'New Castle, DE',
|
||||
1302325 => 'New Castle, DE',
|
||||
1302326 => 'New Castle, DE',
|
||||
1302328 => 'New Castle, DE',
|
||||
1302337 => 'Bridgeville, DE',
|
||||
1302349 => 'Greenwood, DE',
|
||||
1302366 => 'Newark, DE',
|
||||
1302368 => 'Newark, DE',
|
||||
1302369 => 'Newark, DE',
|
||||
1302376 => 'Middletown, DE',
|
||||
1302378 => 'Middletown, DE',
|
||||
1302384 => 'Wilmington, DE',
|
||||
1302395 => 'New Castle, DE',
|
||||
1302398 => 'Harrington, DE',
|
||||
1302421 => 'Wilmington, DE',
|
||||
1302422 => 'Milford, DE',
|
||||
1302424 => 'Milford, DE',
|
||||
1302425 => 'Wilmington, DE',
|
||||
1302427 => 'Wilmington, DE',
|
||||
1302428 => 'Wilmington, DE',
|
||||
1302429 => 'Wilmington, DE',
|
||||
1302430 => 'Milford, DE',
|
||||
1302436 => 'Selbyville, DE',
|
||||
1302449 => 'Middletown, DE',
|
||||
1302453 => 'Newark, DE',
|
||||
1302454 => 'Newark, DE',
|
||||
1302455 => 'Newark, DE',
|
||||
1302456 => 'Newark, DE',
|
||||
1302472 => 'Wilmington, DE',
|
||||
1302475 => 'Wilmington, DE',
|
||||
1302477 => 'Wilmington, DE',
|
||||
1302478 => 'Wilmington, DE',
|
||||
1302479 => 'Wilmington, DE',
|
||||
1302482 => 'Wilmington, DE',
|
||||
1302492 => 'Hartly, DE',
|
||||
1302529 => 'Wilmington, DE',
|
||||
1302533 => 'Newark, DE',
|
||||
1302543 => 'Wilmington, DE',
|
||||
1302571 => 'Wilmington, DE',
|
||||
1302573 => 'Wilmington, DE',
|
||||
1302575 => 'Wilmington, DE',
|
||||
1302576 => 'Wilmington, DE',
|
||||
1302577 => 'Wilmington, DE',
|
||||
1302623 => 'Newark, DE',
|
||||
1302628 => 'Seaford, DE',
|
||||
1302629 => 'Seaford, DE',
|
||||
1302633 => 'Wilmington, DE',
|
||||
1302636 => 'Wilmington, DE',
|
||||
1302644 => 'Lewes, DE',
|
||||
1302645 => 'Lewes, DE',
|
||||
1302651 => 'Wilmington, DE',
|
||||
1302652 => 'Wilmington, DE',
|
||||
1302653 => 'Smyrna, DE',
|
||||
1302654 => 'Wilmington, DE',
|
||||
1302655 => 'Wilmington, DE',
|
||||
1302656 => 'Wilmington, DE',
|
||||
1302658 => 'Wilmington, DE',
|
||||
1302659 => 'Smyrna, DE',
|
||||
1302661 => 'Wilmington, DE',
|
||||
1302672 => 'Dover, DE',
|
||||
1302674 => 'Dover, DE',
|
||||
1302677 => 'Dover, DE',
|
||||
1302678 => 'Dover, DE',
|
||||
1302684 => 'Milton, DE',
|
||||
1302691 => 'Wilmington, DE',
|
||||
1302730 => 'Dover, DE',
|
||||
1302731 => 'Newark, DE',
|
||||
1302732 => 'Dagsboro, DE',
|
||||
1302733 => 'Newark, DE',
|
||||
1302734 => 'Dover, DE',
|
||||
1302735 => 'Dover, DE',
|
||||
1302736 => 'Dover, DE',
|
||||
1302737 => 'Newark, DE',
|
||||
1302738 => 'Newark, DE',
|
||||
1302739 => 'Dover, DE',
|
||||
1302744 => 'Dover, DE',
|
||||
1302761 => 'Wilmington, DE',
|
||||
1302762 => 'Wilmington, DE',
|
||||
1302764 => 'Wilmington, DE',
|
||||
1302777 => 'Wilmington, DE',
|
||||
1302778 => 'Wilmington, DE',
|
||||
1302792 => 'Claymont, DE',
|
||||
1302798 => 'Claymont, DE',
|
||||
1302832 => 'Bear, DE',
|
||||
1302838 => 'Bear, DE',
|
||||
1302846 => 'Delmar, DE',
|
||||
1302854 => 'Georgetown, DE',
|
||||
1302855 => 'Georgetown, DE',
|
||||
1302856 => 'Georgetown, DE',
|
||||
1302875 => 'Laurel, DE',
|
||||
1302888 => 'Wilmington, DE',
|
||||
1302892 => 'Wilmington, DE',
|
||||
1302894 => 'Newark, DE',
|
||||
1302934 => 'Millsboro, DE',
|
||||
1302945 => 'Millsboro, DE',
|
||||
1302947 => 'Millsboro, DE',
|
||||
1302984 => 'Wilmington, DE',
|
||||
1302992 => 'Wilmington, DE',
|
||||
1302993 => 'Wilmington, DE',
|
||||
1302994 => 'Wilmington, DE',
|
||||
1302995 => 'Wilmington, DE',
|
||||
1302998 => 'Wilmington, DE',
|
||||
1302999 => 'Wilmington, DE',
|
||||
);
|
||||
271
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1303.php
vendored
Normal file
271
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1303.php
vendored
Normal file
@@ -0,0 +1,271 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1303 => 'Colorado',
|
||||
1303205 => 'Lakewood, CO',
|
||||
1303215 => 'Golden, CO',
|
||||
1303216 => 'Golden, CO',
|
||||
1303231 => 'Lakewood, CO',
|
||||
1303232 => 'Lakewood, CO',
|
||||
1303233 => 'Lakewood, CO',
|
||||
1303237 => 'Lakewood, CO',
|
||||
1303238 => 'Lakewood, CO',
|
||||
1303239 => 'Lakewood, CO',
|
||||
1303245 => 'Boulder, CO',
|
||||
1303256 => 'Denver, CO',
|
||||
1303258 => 'Nederland, CO',
|
||||
1303271 => 'Golden, CO',
|
||||
1303273 => 'Golden, CO',
|
||||
1303277 => 'Golden, CO',
|
||||
1303278 => 'Golden, CO',
|
||||
1303279 => 'Golden, CO',
|
||||
1303282 => 'Denver, CO',
|
||||
1303291 => 'Denver, CO',
|
||||
1303292 => 'Denver, CO',
|
||||
1303293 => 'Denver, CO',
|
||||
1303294 => 'Denver, CO',
|
||||
1303295 => 'Denver, CO',
|
||||
1303296 => 'Denver, CO',
|
||||
1303297 => 'Denver, CO',
|
||||
1303298 => 'Denver, CO',
|
||||
1303300 => 'Denver, CO',
|
||||
1303306 => 'Aurora, CO',
|
||||
1303307 => 'Denver, CO',
|
||||
1303308 => 'Denver, CO',
|
||||
1303315 => 'Denver, CO',
|
||||
1303316 => 'Denver, CO',
|
||||
1303318 => 'Denver, CO',
|
||||
1303320 => 'Denver, CO',
|
||||
1303321 => 'Denver, CO',
|
||||
1303322 => 'Denver, CO',
|
||||
1303329 => 'Denver, CO',
|
||||
1303331 => 'Denver, CO',
|
||||
1303333 => 'Denver, CO',
|
||||
1303337 => 'Aurora, CO',
|
||||
1303340 => 'Aurora, CO',
|
||||
1303341 => 'Aurora, CO',
|
||||
1303342 => 'Denver, CO',
|
||||
1303343 => 'Aurora, CO',
|
||||
1303344 => 'Aurora, CO',
|
||||
1303346 => 'Highlands Ranch, CO',
|
||||
1303347 => 'Littleton, CO',
|
||||
1303355 => 'Denver, CO',
|
||||
1303360 => 'Aurora, CO',
|
||||
1303363 => 'Aurora, CO',
|
||||
1303364 => 'Aurora, CO',
|
||||
1303365 => 'Aurora, CO',
|
||||
1303366 => 'Aurora, CO',
|
||||
1303367 => 'Aurora, CO',
|
||||
1303368 => 'Aurora, CO',
|
||||
1303371 => 'Denver, CO',
|
||||
1303372 => 'Denver, CO',
|
||||
1303373 => 'Denver, CO',
|
||||
1303375 => 'Denver, CO',
|
||||
1303376 => 'Denver, CO',
|
||||
1303377 => 'Denver, CO',
|
||||
1303384 => 'Golden, CO',
|
||||
1303388 => 'Denver, CO',
|
||||
1303393 => 'Denver, CO',
|
||||
1303394 => 'Denver, CO',
|
||||
1303398 => 'Denver, CO',
|
||||
1303399 => 'Denver, CO',
|
||||
1303400 => 'Aurora, CO',
|
||||
1303402 => 'Boulder, CO',
|
||||
1303410 => 'Broomfield, CO',
|
||||
1303413 => 'Boulder, CO',
|
||||
1303415 => 'Boulder, CO',
|
||||
1303423 => 'Arvada, CO',
|
||||
1303433 => 'Denver, CO',
|
||||
1303436 => 'Denver, CO',
|
||||
1303438 => 'Broomfield, CO',
|
||||
1303439 => 'Broomfield, CO',
|
||||
1303440 => 'Boulder, CO',
|
||||
1303441 => 'Boulder, CO',
|
||||
1303442 => 'Boulder, CO',
|
||||
1303443 => 'Boulder, CO',
|
||||
1303444 => 'Boulder, CO',
|
||||
1303446 => 'Denver, CO',
|
||||
1303447 => 'Boulder, CO',
|
||||
1303448 => 'Boulder, CO',
|
||||
1303449 => 'Boulder, CO',
|
||||
1303455 => 'Denver, CO',
|
||||
1303458 => 'Denver, CO',
|
||||
1303460 => 'Broomfield, CO',
|
||||
1303464 => 'Broomfield, CO',
|
||||
1303465 => 'Broomfield, CO',
|
||||
1303466 => 'Broomfield, CO',
|
||||
1303469 => 'Broomfield, CO',
|
||||
1303470 => 'Highlands Ranch, CO',
|
||||
1303471 => 'Highlands Ranch, CO',
|
||||
1303477 => 'Denver, CO',
|
||||
1303480 => 'Denver, CO',
|
||||
1303481 => 'Aurora, CO',
|
||||
1303485 => 'Longmont, CO',
|
||||
1303492 => 'Boulder, CO',
|
||||
1303493 => 'Denver, CO',
|
||||
1303494 => 'Boulder, CO',
|
||||
1303498 => 'Brighton, CO',
|
||||
1303499 => 'Boulder, CO',
|
||||
1303504 => 'Denver, CO',
|
||||
1303526 => 'Golden, CO',
|
||||
1303530 => 'Boulder, CO',
|
||||
1303534 => 'Denver, CO',
|
||||
1303536 => 'Hudson, CO',
|
||||
1303541 => 'Boulder, CO',
|
||||
1303543 => 'Boulder, CO',
|
||||
1303544 => 'Boulder, CO',
|
||||
1303545 => 'Boulder, CO',
|
||||
1303546 => 'Boulder, CO',
|
||||
1303554 => 'Boulder, CO',
|
||||
1303567 => 'Idaho Springs, CO',
|
||||
1303569 => 'Georgetown, CO',
|
||||
1303571 => 'Denver, CO',
|
||||
1303572 => 'Denver, CO',
|
||||
1303573 => 'Denver, CO',
|
||||
1303574 => 'Denver, CO',
|
||||
1303576 => 'Denver, CO',
|
||||
1303582 => 'Black Hawk, CO',
|
||||
1303584 => 'Denver, CO',
|
||||
1303590 => 'Lakewood, CO',
|
||||
1303592 => 'Denver, CO',
|
||||
1303595 => 'Denver, CO',
|
||||
1303607 => 'Denver, CO',
|
||||
1303617 => 'Aurora, CO',
|
||||
1303621 => 'Kiowa, CO',
|
||||
1303622 => 'Strasburg, CO',
|
||||
1303623 => 'Denver, CO',
|
||||
1303626 => 'Denver, CO',
|
||||
1303627 => 'Aurora, CO',
|
||||
1303628 => 'Denver, CO',
|
||||
1303629 => 'Denver, CO',
|
||||
1303637 => 'Brighton, CO',
|
||||
1303639 => 'Denver, CO',
|
||||
1303642 => 'Golden, CO',
|
||||
1303644 => 'Bennett, CO',
|
||||
1303646 => 'Elizabeth, CO',
|
||||
1303648 => 'Elbert, CO',
|
||||
1303651 => 'Longmont, CO',
|
||||
1303652 => 'Niwot, CO',
|
||||
1303654 => 'Brighton, CO',
|
||||
1303655 => 'Brighton, CO',
|
||||
1303659 => 'Brighton, CO',
|
||||
1303660 => 'Castle Rock, CO',
|
||||
1303663 => 'Castle Rock, CO',
|
||||
1303670 => 'Evergreen, CO',
|
||||
1303673 => 'Louisville, CO',
|
||||
1303674 => 'Evergreen, CO',
|
||||
1303678 => 'Longmont, CO',
|
||||
1303679 => 'Evergreen, CO',
|
||||
1303680 => 'Aurora, CO',
|
||||
1303681 => 'Larkspur, CO',
|
||||
1303682 => 'Longmont, CO',
|
||||
1303683 => 'Highlands Ranch, CO',
|
||||
1303684 => 'Longmont, CO',
|
||||
1303688 => 'Castle Rock, CO',
|
||||
1303690 => 'Aurora, CO',
|
||||
1303691 => 'Denver, CO',
|
||||
1303692 => 'Denver, CO',
|
||||
1303693 => 'Aurora, CO',
|
||||
1303695 => 'Aurora, CO',
|
||||
1303696 => 'Aurora, CO',
|
||||
1303697 => 'Morrison, CO',
|
||||
1303698 => 'Denver, CO',
|
||||
1303702 => 'Longmont, CO',
|
||||
1303703 => 'Littleton, CO',
|
||||
1303715 => 'Denver, CO',
|
||||
1303716 => 'Lakewood, CO',
|
||||
1303722 => 'Denver, CO',
|
||||
1303724 => 'Aurora, CO',
|
||||
1303730 => 'Littleton, CO',
|
||||
1303732 => 'Keenesburg, CO',
|
||||
1303733 => 'Denver, CO',
|
||||
1303734 => 'Littleton, CO',
|
||||
1303738 => 'Littleton, CO',
|
||||
1303739 => 'Aurora, CO',
|
||||
1303744 => 'Denver, CO',
|
||||
1303745 => 'Aurora, CO',
|
||||
1303750 => 'Aurora, CO',
|
||||
1303751 => 'Aurora, CO',
|
||||
1303752 => 'Aurora, CO',
|
||||
1303753 => 'Denver, CO',
|
||||
1303755 => 'Aurora, CO',
|
||||
1303756 => 'Denver, CO',
|
||||
1303757 => 'Denver, CO',
|
||||
1303758 => 'Denver, CO',
|
||||
1303759 => 'Denver, CO',
|
||||
1303762 => 'Englewood, CO',
|
||||
1303763 => 'Lakewood, CO',
|
||||
1303764 => 'Denver, CO',
|
||||
1303765 => 'Denver, CO',
|
||||
1303772 => 'Longmont, CO',
|
||||
1303774 => 'Longmont, CO',
|
||||
1303776 => 'Longmont, CO',
|
||||
1303777 => 'Denver, CO',
|
||||
1303778 => 'Denver, CO',
|
||||
1303780 => 'Denver, CO',
|
||||
1303781 => 'Englewood, CO',
|
||||
1303782 => 'Denver, CO',
|
||||
1303783 => 'Englewood, CO',
|
||||
1303786 => 'Boulder, CO',
|
||||
1303788 => 'Englewood, CO',
|
||||
1303789 => 'Englewood, CO',
|
||||
1303791 => 'Highlands Ranch, CO',
|
||||
1303794 => 'Littleton, CO',
|
||||
1303795 => 'Littleton, CO',
|
||||
1303797 => 'Littleton, CO',
|
||||
1303798 => 'Littleton, CO',
|
||||
1303805 => 'Parker, CO',
|
||||
1303806 => 'Englewood, CO',
|
||||
1303814 => 'Castle Rock, CO',
|
||||
1303822 => 'Byers, CO',
|
||||
1303823 => 'Lyons, CO',
|
||||
1303825 => 'Denver, CO',
|
||||
1303828 => 'Erie, CO',
|
||||
1303830 => 'Denver, CO',
|
||||
1303831 => 'Denver, CO',
|
||||
1303832 => 'Denver, CO',
|
||||
1303834 => 'Longmont, CO',
|
||||
1303837 => 'Denver, CO',
|
||||
1303839 => 'Denver, CO',
|
||||
1303840 => 'Parker, CO',
|
||||
1303841 => 'Parker, CO',
|
||||
1303856 => 'Aurora, CO',
|
||||
1303857 => 'Fort Lupton, CO',
|
||||
1303860 => 'Denver, CO',
|
||||
1303861 => 'Denver, CO',
|
||||
1303863 => 'Denver, CO',
|
||||
1303866 => 'Denver, CO',
|
||||
1303869 => 'Denver, CO',
|
||||
1303871 => 'Denver, CO',
|
||||
1303892 => 'Denver, CO',
|
||||
1303893 => 'Denver, CO',
|
||||
1303894 => 'Denver, CO',
|
||||
1303904 => 'Littleton, CO',
|
||||
1303914 => 'Lakewood, CO',
|
||||
1303922 => 'Denver, CO',
|
||||
1303932 => 'Littleton, CO',
|
||||
1303933 => 'Littleton, CO',
|
||||
1303934 => 'Denver, CO',
|
||||
1303935 => 'Denver, CO',
|
||||
1303936 => 'Denver, CO',
|
||||
1303937 => 'Denver, CO',
|
||||
1303938 => 'Boulder, CO',
|
||||
1303948 => 'Littleton, CO',
|
||||
1303969 => 'Lakewood, CO',
|
||||
1303972 => 'Littleton, CO',
|
||||
1303973 => 'Littleton, CO',
|
||||
1303975 => 'Denver, CO',
|
||||
1303978 => 'Littleton, CO',
|
||||
1303979 => 'Littleton, CO',
|
||||
1303980 => 'Lakewood, CO',
|
||||
1303984 => 'Lakewood, CO',
|
||||
1303985 => 'Lakewood, CO',
|
||||
1303986 => 'Lakewood, CO',
|
||||
1303987 => 'Lakewood, CO',
|
||||
1303988 => 'Lakewood, CO',
|
||||
1303989 => 'Lakewood, CO',
|
||||
);
|
||||
209
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1304.php
vendored
Normal file
209
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1304.php
vendored
Normal file
@@ -0,0 +1,209 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1304 => 'West Virginia',
|
||||
1304205 => 'Charleston, WV',
|
||||
1304225 => 'Morgantown, WV',
|
||||
1304226 => 'Cowen, WV',
|
||||
1304229 => 'Inwood, WV',
|
||||
1304232 => 'Wheeling, WV',
|
||||
1304233 => 'Wheeling, WV',
|
||||
1304234 => 'Wheeling, WV',
|
||||
1304235 => 'Williamson, WV',
|
||||
1304239 => 'Holden, WV',
|
||||
1304241 => 'Morgantown, WV',
|
||||
1304242 => 'Wheeling, WV',
|
||||
1304243 => 'Wheeling, WV',
|
||||
1304250 => 'Beckley, WV',
|
||||
1304252 => 'Beckley, WV',
|
||||
1304253 => 'Beckley, WV',
|
||||
1304254 => 'Beckley, WV',
|
||||
1304255 => 'Beckley, WV',
|
||||
1304256 => 'Beckley, WV',
|
||||
1304257 => 'Petersburg, WV',
|
||||
1304258 => 'Berkeley Springs, WV',
|
||||
1304260 => 'Martinsburg, WV',
|
||||
1304262 => 'Martinsburg, WV',
|
||||
1304263 => 'Martinsburg, WV',
|
||||
1304264 => 'Martinsburg, WV',
|
||||
1304265 => 'Grafton, WV',
|
||||
1304267 => 'Martinsburg, WV',
|
||||
1304269 => 'Weston, WV',
|
||||
1304272 => 'Wayne, WV',
|
||||
1304273 => 'Ravenswood, WV',
|
||||
1304274 => 'Falling Waters, WV',
|
||||
1304275 => 'Elizabeth, WV',
|
||||
1304277 => 'Wheeling, WV',
|
||||
1304284 => 'Morgantown, WV',
|
||||
1304285 => 'Morgantown, WV',
|
||||
1304291 => 'Morgantown, WV',
|
||||
1304292 => 'Morgantown, WV',
|
||||
1304293 => 'Morgantown, WV',
|
||||
1304294 => 'Mullens, WV',
|
||||
1304295 => 'Vienna, WV',
|
||||
1304296 => 'Morgantown, WV',
|
||||
1304324 => 'Bluefield, WV',
|
||||
1304325 => 'Bluefield, WV',
|
||||
1304326 => 'Clarksburg, WV',
|
||||
1304327 => 'Bluefield, WV',
|
||||
1304329 => 'Kingwood, WV',
|
||||
1304340 => 'Charleston, WV',
|
||||
1304342 => 'Charleston, WV',
|
||||
1304343 => 'Charleston, WV',
|
||||
1304344 => 'Charleston, WV',
|
||||
1304345 => 'Charleston, WV',
|
||||
1304346 => 'Charleston, WV',
|
||||
1304347 => 'Charleston, WV',
|
||||
1304348 => 'Charleston, WV',
|
||||
1304354 => 'Grantsville, WV',
|
||||
1304358 => 'Franklin, WV',
|
||||
1304363 => 'Fairmont, WV',
|
||||
1304364 => 'Gassaway, WV',
|
||||
1304366 => 'Fairmont, WV',
|
||||
1304367 => 'Fairmont, WV',
|
||||
1304368 => 'Fairmont, WV',
|
||||
1304372 => 'Ripley, WV',
|
||||
1304375 => 'Williamstown, WV',
|
||||
1304379 => 'Bruceton Mills, WV',
|
||||
1304387 => 'Chester, WV',
|
||||
1304388 => 'Charleston, WV',
|
||||
1304392 => 'Rupert, WV',
|
||||
1304399 => 'Huntington, WV',
|
||||
1304414 => 'Charleston, WV',
|
||||
1304420 => 'Parkersburg, WV',
|
||||
1304422 => 'Parkersburg, WV',
|
||||
1304424 => 'Parkersburg, WV',
|
||||
1304425 => 'Princeton, WV',
|
||||
1304426 => 'Matewan, WV',
|
||||
1304428 => 'Parkersburg, WV',
|
||||
1304429 => 'Huntington, WV',
|
||||
1304431 => 'Princeton, WV',
|
||||
1304436 => 'Welch, WV',
|
||||
1304438 => 'Rainelle, WV',
|
||||
1304442 => 'Montgomery, WV',
|
||||
1304453 => 'Kenova, WV',
|
||||
1304455 => 'New Martinsville, WV',
|
||||
1304457 => 'Philippi, WV',
|
||||
1304462 => 'Glenville, WV',
|
||||
1304465 => 'Oak Hill, WV',
|
||||
1304466 => 'Hinton, WV',
|
||||
1304469 => 'Oak Hill, WV',
|
||||
1304472 => 'Buckhannon, WV',
|
||||
1304473 => 'Buckhannon, WV',
|
||||
1304475 => 'Delbarton, WV',
|
||||
1304478 => 'Parsons, WV',
|
||||
1304485 => 'Parkersburg, WV',
|
||||
1304487 => 'Princeton, WV',
|
||||
1304489 => 'Mineral Wells, WV',
|
||||
1304496 => 'Augusta, WV',
|
||||
1304522 => 'Huntington, WV',
|
||||
1304523 => 'Huntington, WV',
|
||||
1304525 => 'Huntington, WV',
|
||||
1304526 => 'Huntington, WV',
|
||||
1304527 => 'Follansbee, WV',
|
||||
1304528 => 'Huntington, WV',
|
||||
1304529 => 'Huntington, WV',
|
||||
1304530 => 'Moorefield, WV',
|
||||
1304534 => 'Fairmont, WV',
|
||||
1304535 => 'Harpers Ferry, WV',
|
||||
1304536 => 'White Slphr Spgs, WV',
|
||||
1304538 => 'Moorefield, WV',
|
||||
1304547 => 'Triadelphia, WV',
|
||||
1304548 => 'Clendenin, WV',
|
||||
1304558 => 'Charleston, WV',
|
||||
1304562 => 'Hurricane, WV',
|
||||
1304564 => 'New Cumberland, WV',
|
||||
1304574 => 'Fayetteville, WV',
|
||||
1304583 => 'Man, WV',
|
||||
1304586 => 'Winfield, WV',
|
||||
1304587 => 'Clay, WV',
|
||||
1304592 => 'Shinnston, WV',
|
||||
1304594 => 'Morgantown, WV',
|
||||
1304596 => 'Martinsburg, WV',
|
||||
1304598 => 'Morgantown, WV',
|
||||
1304599 => 'Morgantown, WV',
|
||||
1304622 => 'Clarksburg, WV',
|
||||
1304623 => 'Clarksburg, WV',
|
||||
1304624 => 'Clarksburg, WV',
|
||||
1304636 => 'Elkins, WV',
|
||||
1304637 => 'Elkins, WV',
|
||||
1304643 => 'Harrisville, WV',
|
||||
1304645 => 'Lewisburg, WV',
|
||||
1304647 => 'Lewisburg, WV',
|
||||
1304652 => 'Sistersville, WV',
|
||||
1304658 => 'Ansted, WV',
|
||||
1304664 => 'Gilbert, WV',
|
||||
1304675 => 'Point Pleasant, WV',
|
||||
1304682 => 'Oceana, WV',
|
||||
1304683 => 'Sophia, WV',
|
||||
1304684 => 'St. Marys, WV',
|
||||
1304691 => 'Huntington, WV',
|
||||
1304696 => 'Huntington, WV',
|
||||
1304697 => 'Huntington, WV',
|
||||
1304720 => 'Charleston, WV',
|
||||
1304722 => 'St. Albans, WV',
|
||||
1304723 => 'Weirton, WV',
|
||||
1304725 => 'Charles Town, WV',
|
||||
1304727 => 'St. Albans, WV',
|
||||
1304728 => 'Charles Town, WV',
|
||||
1304732 => 'Pineville, WV',
|
||||
1304733 => 'Barboursville, WV',
|
||||
1304736 => 'Barboursville, WV',
|
||||
1304737 => 'Wellsburg, WV',
|
||||
1304738 => 'Ridgeley, WV',
|
||||
1304742 => 'Craigsville, WV',
|
||||
1304743 => 'Milton, WV',
|
||||
1304745 => 'Lost Creek, WV',
|
||||
1304746 => 'South Charleston, WV',
|
||||
1304748 => 'Weirton, WV',
|
||||
1304752 => 'Logan, WV',
|
||||
1304753 => 'Peterstown, WV',
|
||||
1304754 => 'Hedgesville, WV',
|
||||
1304755 => 'Nitro, WV',
|
||||
1304756 => 'Alum Creek, WV',
|
||||
1304757 => 'Hurricane, WV',
|
||||
1304758 => 'Middlebourne, WV',
|
||||
1304760 => 'Hurricane, WV',
|
||||
1304765 => 'Sutton, WV',
|
||||
1304772 => 'Union, WV',
|
||||
1304776 => 'Cross Lanes, WV',
|
||||
1304781 => 'Huntington, WV',
|
||||
1304782 => 'Salem, WV',
|
||||
1304788 => 'Keyser, WV',
|
||||
1304789 => 'Terra Alta, WV',
|
||||
1304797 => 'Weirton, WV',
|
||||
1304799 => 'Marlinton, WV',
|
||||
1304822 => 'Romney, WV',
|
||||
1304823 => 'Belington, WV',
|
||||
1304824 => 'Hamlin, WV',
|
||||
1304831 => 'Logan, WV',
|
||||
1304842 => 'Bridgeport, WV',
|
||||
1304843 => 'Moundsville, WV',
|
||||
1304845 => 'Moundsville, WV',
|
||||
1304846 => 'Richwood, WV',
|
||||
1304847 => 'Webster Springs, WV',
|
||||
1304848 => 'Bridgeport, WV',
|
||||
1304854 => 'Whitesville, WV',
|
||||
1304855 => 'Chapmanville, WV',
|
||||
1304856 => 'Capon Bridge, WV',
|
||||
1304865 => 'Parkersburg, WV',
|
||||
1304872 => 'Summersville, WV',
|
||||
1304873 => 'West Union, WV',
|
||||
1304876 => 'Shepherdstown, WV',
|
||||
1304877 => 'Mount Hope, WV',
|
||||
1304884 => 'Jane Lew, WV',
|
||||
1304905 => 'Wheeling, WV',
|
||||
1304925 => 'Charleston, WV',
|
||||
1304926 => 'Charleston, WV',
|
||||
1304927 => 'Spencer, WV',
|
||||
1304929 => 'Beckley, WV',
|
||||
1304933 => 'Bridgeport, WV',
|
||||
1304965 => 'Elkview, WV',
|
||||
1304983 => 'Morgantown, WV',
|
||||
1304984 => 'Charleston, WV',
|
||||
1304986 => 'Mannington, WV',
|
||||
);
|
||||
224
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1305.php
vendored
Normal file
224
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1305.php
vendored
Normal file
@@ -0,0 +1,224 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1305 => 'Florida',
|
||||
1305207 => 'Miami, FL',
|
||||
1305220 => 'Miami, FL',
|
||||
1305221 => 'Miami, FL',
|
||||
1305222 => 'Miami, FL',
|
||||
1305223 => 'Miami, FL',
|
||||
1305225 => 'Miami, FL',
|
||||
1305226 => 'Miami, FL',
|
||||
1305227 => 'Miami, FL',
|
||||
1305228 => 'Miami, FL',
|
||||
1305229 => 'Miami, FL',
|
||||
1305231 => 'Hialeah, FL',
|
||||
1305232 => 'Miami, FL',
|
||||
1305233 => 'Miami, FL',
|
||||
1305234 => 'Miami, FL',
|
||||
1305235 => 'Miami, FL',
|
||||
1305238 => 'Miami, FL',
|
||||
1305242 => 'Homestead, FL',
|
||||
1305243 => 'Miami, FL',
|
||||
1305245 => 'Homestead, FL',
|
||||
1305246 => 'Homestead, FL',
|
||||
1305247 => 'Homestead, FL',
|
||||
1305248 => 'Homestead, FL',
|
||||
1305249 => 'Miami, FL',
|
||||
1305251 => 'Miami, FL',
|
||||
1305252 => 'Miami, FL',
|
||||
1305253 => 'Miami, FL',
|
||||
1305254 => 'Miami, FL',
|
||||
1305255 => 'Miami, FL',
|
||||
1305256 => 'Miami, FL',
|
||||
1305257 => 'Homestead, FL',
|
||||
1305258 => 'Homestead, FL',
|
||||
1305259 => 'Miami, FL',
|
||||
1305260 => 'Miami, FL',
|
||||
1305261 => 'Miami, FL',
|
||||
1305262 => 'Miami, FL',
|
||||
1305263 => 'Miami, FL',
|
||||
1305264 => 'Miami, FL',
|
||||
1305265 => 'Miami, FL',
|
||||
1305266 => 'Miami, FL',
|
||||
1305267 => 'Miami, FL',
|
||||
1305269 => 'Miami, FL',
|
||||
1305270 => 'Miami, FL',
|
||||
1305271 => 'Miami, FL',
|
||||
1305273 => 'Miami, FL',
|
||||
1305274 => 'Miami, FL',
|
||||
1305275 => 'Miami, FL',
|
||||
1305278 => 'Miami, FL',
|
||||
1305279 => 'Miami, FL',
|
||||
1305285 => 'Miami, FL',
|
||||
1305289 => 'Marathon, FL',
|
||||
1305292 => 'Key West, FL',
|
||||
1305293 => 'Key West, FL',
|
||||
1305294 => 'Key West, FL',
|
||||
1305295 => 'Key West, FL',
|
||||
1305296 => 'Key West, FL',
|
||||
1305324 => 'Miami, FL',
|
||||
1305325 => 'Miami, FL',
|
||||
1305326 => 'Miami, FL',
|
||||
1305347 => 'Miami, FL',
|
||||
1305349 => 'Miami, FL',
|
||||
1305350 => 'Miami, FL',
|
||||
1305355 => 'Miami, FL',
|
||||
1305358 => 'Miami, FL',
|
||||
1305361 => 'Key Biscayne, FL',
|
||||
1305362 => 'Hialeah, FL',
|
||||
1305364 => 'Hialeah, FL',
|
||||
1305365 => 'Key Biscayne, FL',
|
||||
1305367 => 'Key Largo, FL',
|
||||
1305371 => 'Miami, FL',
|
||||
1305372 => 'Miami, FL',
|
||||
1305373 => 'Miami, FL',
|
||||
1305374 => 'Miami, FL',
|
||||
1305375 => 'Miami, FL',
|
||||
1305377 => 'Miami, FL',
|
||||
1305378 => 'Miami, FL',
|
||||
1305379 => 'Miami, FL',
|
||||
1305380 => 'Miami, FL',
|
||||
1305381 => 'Miami, FL',
|
||||
1305382 => 'Miami, FL',
|
||||
1305383 => 'Miami, FL',
|
||||
1305385 => 'Miami, FL',
|
||||
1305386 => 'Miami, FL',
|
||||
1305387 => 'Miami, FL',
|
||||
1305388 => 'Miami, FL',
|
||||
1305392 => 'Miami, FL',
|
||||
1305397 => 'Miami Beach, FL',
|
||||
1305400 => 'Miami, FL',
|
||||
1305406 => 'Doral, FL',
|
||||
1305408 => 'Miami, FL',
|
||||
1305412 => 'Miami, FL',
|
||||
1305416 => 'Miami, FL',
|
||||
1305436 => 'Doral, FL',
|
||||
1305438 => 'Miami, FL',
|
||||
1305445 => 'Coral Gables, FL',
|
||||
1305451 => 'Key Largo, FL',
|
||||
1305453 => 'Key Largo, FL',
|
||||
1305456 => 'Miami, FL',
|
||||
1305460 => 'Coral Gables, FL',
|
||||
1305480 => 'Miami, FL',
|
||||
1305485 => 'Miami, FL',
|
||||
1305512 => 'Hialeah, FL',
|
||||
1305513 => 'Doral, FL',
|
||||
1305525 => 'Miami, FL',
|
||||
1305530 => 'Miami, FL',
|
||||
1305531 => 'Miami Beach, FL',
|
||||
1305532 => 'Miami Beach, FL',
|
||||
1305534 => 'Miami Beach, FL',
|
||||
1305535 => 'Miami Beach, FL',
|
||||
1305538 => 'Miami Beach, FL',
|
||||
1305541 => 'Miami, FL',
|
||||
1305545 => 'Miami, FL',
|
||||
1305547 => 'Miami, FL',
|
||||
1305548 => 'Miami, FL',
|
||||
1305551 => 'Miami, FL',
|
||||
1305552 => 'Miami, FL',
|
||||
1305553 => 'Miami, FL',
|
||||
1305554 => 'Miami, FL',
|
||||
1305556 => 'Hialeah, FL',
|
||||
1305557 => 'Hialeah, FL',
|
||||
1305558 => 'Hialeah, FL',
|
||||
1305559 => 'Miami, FL',
|
||||
1305571 => 'Miami, FL',
|
||||
1305572 => 'Miami, FL',
|
||||
1305573 => 'Miami, FL',
|
||||
1305575 => 'Miami, FL',
|
||||
1305576 => 'Miami, FL',
|
||||
1305577 => 'Miami, FL',
|
||||
1305579 => 'Miami, FL',
|
||||
1305585 => 'Miami, FL',
|
||||
1305595 => 'Miami, FL',
|
||||
1305596 => 'Miami, FL',
|
||||
1305598 => 'Miami, FL',
|
||||
1305603 => 'Miami, FL',
|
||||
1305604 => 'Miami Beach, FL',
|
||||
1305631 => 'Miami, FL',
|
||||
1305633 => 'Miami, FL',
|
||||
1305634 => 'Miami, FL',
|
||||
1305635 => 'Miami, FL',
|
||||
1305636 => 'Miami, FL',
|
||||
1305637 => 'Miami, FL',
|
||||
1305638 => 'Miami, FL',
|
||||
1305642 => 'Miami, FL',
|
||||
1305643 => 'Miami, FL',
|
||||
1305644 => 'Miami, FL',
|
||||
1305646 => 'Miami, FL',
|
||||
1305649 => 'Miami, FL',
|
||||
1305651 => 'Miami, FL',
|
||||
1305652 => 'Miami, FL',
|
||||
1305653 => 'Miami, FL',
|
||||
1305654 => 'Miami, FL',
|
||||
1305655 => 'Miami, FL',
|
||||
1305664 => 'Islamorada, FL',
|
||||
1305666 => 'Miami, FL',
|
||||
1305668 => 'Miami, FL',
|
||||
1305670 => 'Miami, FL',
|
||||
1305672 => 'Miami Beach, FL',
|
||||
1305673 => 'Miami Beach, FL',
|
||||
1305682 => 'Miami, FL',
|
||||
1305691 => 'Miami, FL',
|
||||
1305693 => 'Miami, FL',
|
||||
1305694 => 'Miami, FL',
|
||||
1305695 => 'Miami Beach, FL',
|
||||
1305696 => 'Miami, FL',
|
||||
1305698 => 'Hialeah, FL',
|
||||
1305718 => 'Doral, FL',
|
||||
1305743 => 'Marathon, FL',
|
||||
1305745 => 'Summerland Key, FL',
|
||||
1305751 => 'Miami, FL',
|
||||
1305752 => 'Miami, FL',
|
||||
1305754 => 'Miami, FL',
|
||||
1305756 => 'Miami, FL',
|
||||
1305757 => 'Miami, FL',
|
||||
1305758 => 'Miami, FL',
|
||||
1305759 => 'Miami, FL',
|
||||
1305770 => 'Miami, FL',
|
||||
1305789 => 'Miami, FL',
|
||||
1305809 => 'Key West, FL',
|
||||
1305817 => 'Hialeah, FL',
|
||||
1305818 => 'Hialeah, FL',
|
||||
1305819 => 'Hialeah, FL',
|
||||
1305820 => 'Hialeah, FL',
|
||||
1305821 => 'Hialeah, FL',
|
||||
1305822 => 'Hialeah, FL',
|
||||
1305823 => 'Hialeah, FL',
|
||||
1305824 => 'Hialeah, FL',
|
||||
1305825 => 'Hialeah, FL',
|
||||
1305826 => 'Hialeah, FL',
|
||||
1305827 => 'Hialeah, FL',
|
||||
1305828 => 'Hialeah, FL',
|
||||
1305829 => 'Hialeah, FL',
|
||||
1305835 => 'Miami, FL',
|
||||
1305836 => 'Miami, FL',
|
||||
1305852 => 'Tavernier, FL',
|
||||
1305853 => 'Tavernier, FL',
|
||||
1305854 => 'Miami, FL',
|
||||
1305856 => 'Miami, FL',
|
||||
1305857 => 'Miami, FL',
|
||||
1305858 => 'Miami, FL',
|
||||
1305859 => 'Miami, FL',
|
||||
1305860 => 'Miami, FL',
|
||||
1305871 => 'Miami, FL',
|
||||
1305872 => 'Big Pine Key, FL',
|
||||
1305876 => 'Miami, FL',
|
||||
1305891 => 'North Miami, FL',
|
||||
1305892 => 'North Miami, FL',
|
||||
1305893 => 'North Miami, FL',
|
||||
1305895 => 'North Miami, FL',
|
||||
1305899 => 'North Miami, FL',
|
||||
1305913 => 'Miami, FL',
|
||||
1305953 => 'Opa-locka, FL',
|
||||
1305960 => 'Miami, FL',
|
||||
1305961 => 'Miami, FL',
|
||||
1305969 => 'Miami, FL',
|
||||
1305971 => 'Miami, FL',
|
||||
1305999 => 'Miami, FL',
|
||||
);
|
||||
119
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1306.php
vendored
Normal file
119
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1306.php
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1306 => 'Saskatchewan',
|
||||
1306205 => 'Regina, SK',
|
||||
1306228 => 'Unity, SK',
|
||||
1306236 => 'Meadow Lake, SK',
|
||||
1306242 => 'Saskatoon, SK',
|
||||
1306244 => 'Saskatoon, SK',
|
||||
1306249 => 'Saskatoon, SK',
|
||||
1306272 => 'Foam Lake, SK',
|
||||
1306297 => 'Shaunavon, SK',
|
||||
1306327 => 'Kelvington, SK',
|
||||
1306332 => 'Fort Qu\'Appelle, SK',
|
||||
1306338 => 'Wadena, SK',
|
||||
1306343 => 'Saskatoon, SK',
|
||||
1306347 => 'Regina, SK',
|
||||
1306352 => 'Regina, SK',
|
||||
1306359 => 'Regina, SK',
|
||||
1306373 => 'Saskatoon, SK',
|
||||
1306374 => 'Saskatoon, SK',
|
||||
1306382 => 'Saskatoon, SK',
|
||||
1306384 => 'Saskatoon, SK',
|
||||
1306425 => 'La Ronge, SK',
|
||||
1306435 => 'Moosomin, SK',
|
||||
1306445 => 'North Battleford, SK',
|
||||
1306446 => 'North Battleford, SK',
|
||||
1306452 => 'Redvers, SK',
|
||||
1306453 => 'Carlyle, SK',
|
||||
1306463 => 'Kindersley, SK',
|
||||
1306477 => 'Saskatoon, SK',
|
||||
1306482 => 'Carnduff, SK',
|
||||
1306483 => 'Oxbow, SK',
|
||||
1306522 => 'Regina, SK',
|
||||
1306525 => 'Regina, SK',
|
||||
1306542 => 'Kamsack, SK',
|
||||
1306543 => 'Regina, SK',
|
||||
1306545 => 'Regina, SK',
|
||||
1306546 => 'Regina, SK',
|
||||
1306547 => 'Preeceville, SK',
|
||||
1306554 => 'Wynyard, SK',
|
||||
1306563 => 'Canora, SK',
|
||||
1306565 => 'Regina, SK',
|
||||
1306567 => 'Davidson, SK',
|
||||
1306569 => 'Regina, SK',
|
||||
1306584 => 'Regina, SK',
|
||||
1306585 => 'Regina, SK',
|
||||
1306586 => 'Regina, SK',
|
||||
1306634 => 'Estevan, SK',
|
||||
1306642 => 'Assiniboia, SK',
|
||||
1306648 => 'Gravelbourg, SK',
|
||||
1306651 => 'Saskatoon, SK',
|
||||
1306652 => 'Saskatoon, SK',
|
||||
1306653 => 'Saskatoon, SK',
|
||||
1306662 => 'Maple Creek, SK',
|
||||
1306664 => 'Saskatoon, SK',
|
||||
1306665 => 'Saskatoon, SK',
|
||||
1306668 => 'Saskatoon, SK',
|
||||
1306682 => 'Humboldt, SK',
|
||||
1306683 => 'Saskatoon, SK',
|
||||
1306691 => 'Moose Jaw, SK',
|
||||
1306692 => 'Moose Jaw, SK',
|
||||
1306693 => 'Moose Jaw, SK',
|
||||
1306694 => 'Moose Jaw, SK',
|
||||
1306695 => 'Indian Head, SK',
|
||||
1306721 => 'Regina, SK',
|
||||
1306728 => 'Melville, SK',
|
||||
1306731 => 'Lumsden, SK',
|
||||
1306745 => 'Esterhazy, SK',
|
||||
1306747 => 'Shellbrook, SK',
|
||||
1306752 => 'Melfort, SK',
|
||||
1306753 => 'Macklin, SK',
|
||||
1306757 => 'Regina, SK',
|
||||
1306763 => 'Prince Albert, SK',
|
||||
1306764 => 'Prince Albert, SK',
|
||||
1306768 => 'Carrot River, SK',
|
||||
1306773 => 'Swift Current, SK',
|
||||
1306775 => 'Regina, SK',
|
||||
1306778 => 'Swift Current, SK',
|
||||
1306780 => 'Regina, SK',
|
||||
1306781 => 'Regina, SK',
|
||||
1306782 => 'Yorkton, SK',
|
||||
1306783 => 'Yorkton, SK',
|
||||
1306786 => 'Yorkton, SK',
|
||||
1306789 => 'Regina, SK',
|
||||
1306790 => 'Regina, SK',
|
||||
1306791 => 'Regina, SK',
|
||||
1306825 => 'Lloydminster, SK',
|
||||
1306834 => 'Kerrobert, SK',
|
||||
1306842 => 'Weyburn, SK',
|
||||
1306845 => 'Turtleford, SK',
|
||||
1306862 => 'Nipawin, SK',
|
||||
1306865 => 'Hudson Bay, SK',
|
||||
1306867 => 'Outlook, SK',
|
||||
1306873 => 'Tisdale, SK',
|
||||
1306882 => 'Rosetown, SK',
|
||||
1306883 => 'Spiritwood, SK',
|
||||
1306893 => 'Maidstone, SK',
|
||||
1306922 => 'Prince Albert, SK',
|
||||
1306924 => 'Regina, SK',
|
||||
1306931 => 'Saskatoon, SK',
|
||||
1306933 => 'Saskatoon, SK',
|
||||
1306934 => 'Saskatoon, SK',
|
||||
1306937 => 'Battleford, SK',
|
||||
1306946 => 'Watrous, SK',
|
||||
1306948 => 'Biggar, SK',
|
||||
1306949 => 'Regina, SK',
|
||||
1306953 => 'Prince Albert, SK',
|
||||
1306955 => 'Saskatoon, SK',
|
||||
1306956 => 'Saskatoon, SK',
|
||||
1306966 => 'Saskatoon, SK',
|
||||
1306975 => 'Saskatoon, SK',
|
||||
1306978 => 'Saskatoon, SK',
|
||||
1306979 => 'Saskatoon, SK',
|
||||
);
|
||||
89
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1307.php
vendored
Normal file
89
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1307.php
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1307 => 'Wyoming',
|
||||
1307232 => 'Casper, WY',
|
||||
1307233 => 'Casper, WY',
|
||||
1307234 => 'Casper, WY',
|
||||
1307235 => 'Casper, WY',
|
||||
1307237 => 'Casper, WY',
|
||||
1307245 => 'Pine Bluffs, WY',
|
||||
1307265 => 'Casper, WY',
|
||||
1307266 => 'Casper, WY',
|
||||
1307276 => 'Big Piney, WY',
|
||||
1307283 => 'Sundance, WY',
|
||||
1307315 => 'Casper, WY',
|
||||
1307322 => 'Wheatland, WY',
|
||||
1307324 => 'Rawlins, WY',
|
||||
1307326 => 'Saratoga, WY',
|
||||
1307328 => 'Rawlins, WY',
|
||||
1307332 => 'Lander, WY',
|
||||
1307334 => 'Lusk, WY',
|
||||
1307335 => 'Lander, WY',
|
||||
1307347 => 'Worland, WY',
|
||||
1307352 => 'Rock Springs, WY',
|
||||
1307358 => 'Douglas, WY',
|
||||
1307362 => 'Rock Springs, WY',
|
||||
1307367 => 'Pinedale, WY',
|
||||
1307382 => 'Rock Springs, WY',
|
||||
1307383 => 'Baggs, WY',
|
||||
1307426 => 'Cheyenne, WY',
|
||||
1307432 => 'Cheyenne, WY',
|
||||
1307433 => 'Cheyenne, WY',
|
||||
1307436 => 'Glenrock, WY',
|
||||
1307455 => 'Dubois, WY',
|
||||
1307472 => 'Casper, WY',
|
||||
1307473 => 'Casper, WY',
|
||||
1307527 => 'Cody, WY',
|
||||
1307532 => 'Torrington, WY',
|
||||
1307548 => 'Lovell, WY',
|
||||
1307568 => 'Basin, WY',
|
||||
1307577 => 'Casper, WY',
|
||||
1307578 => 'Cody, WY',
|
||||
1307587 => 'Cody, WY',
|
||||
1307632 => 'Cheyenne, WY',
|
||||
1307633 => 'Cheyenne, WY',
|
||||
1307634 => 'Cheyenne, WY',
|
||||
1307635 => 'Cheyenne, WY',
|
||||
1307637 => 'Cheyenne, WY',
|
||||
1307638 => 'Cheyenne, WY',
|
||||
1307654 => 'Alpine, WY',
|
||||
1307672 => 'Sheridan, WY',
|
||||
1307673 => 'Sheridan, WY',
|
||||
1307674 => 'Sheridan, WY',
|
||||
1307675 => 'Sheridan, WY',
|
||||
1307682 => 'Gillette, WY',
|
||||
1307684 => 'Buffalo, WY',
|
||||
1307685 => 'Gillette, WY',
|
||||
1307686 => 'Gillette, WY',
|
||||
1307687 => 'Gillette, WY',
|
||||
1307688 => 'Gillette, WY',
|
||||
1307690 => 'Jackson, WY',
|
||||
1307721 => 'Laramie, WY',
|
||||
1307732 => 'Jackson, WY',
|
||||
1307733 => 'Jackson, WY',
|
||||
1307734 => 'Jackson, WY',
|
||||
1307739 => 'Jackson, WY',
|
||||
1307742 => 'Laramie, WY',
|
||||
1307745 => 'Laramie, WY',
|
||||
1307746 => 'Newcastle, WY',
|
||||
1307754 => 'Powell, WY',
|
||||
1307760 => 'Laramie, WY',
|
||||
1307765 => 'Greybull, WY',
|
||||
1307777 => 'Cheyenne, WY',
|
||||
1307778 => 'Cheyenne, WY',
|
||||
1307782 => 'Mountain View, WY',
|
||||
1307789 => 'Evanston, WY',
|
||||
1307856 => 'Riverton, WY',
|
||||
1307857 => 'Riverton, WY',
|
||||
1307864 => 'Thermopolis, WY',
|
||||
1307875 => 'Green River, WY',
|
||||
1307877 => 'Kemmerer, WY',
|
||||
1307883 => 'Thayne, WY',
|
||||
1307885 => 'Afton, WY',
|
||||
1307886 => 'Afton, WY',
|
||||
);
|
||||
65
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1308.php
vendored
Normal file
65
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1308.php
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1308 => 'Nebraska',
|
||||
1308233 => 'Kearney, NE',
|
||||
1308234 => 'Kearney, NE',
|
||||
1308235 => 'Kimball, NE',
|
||||
1308236 => 'Kearney, NE',
|
||||
1308237 => 'Kearney, NE',
|
||||
1308254 => 'Sidney, NE',
|
||||
1308262 => 'Bridgeport, NE',
|
||||
1308282 => 'Gordon, NE',
|
||||
1308284 => 'Ogallala, NE',
|
||||
1308324 => 'Lexington, NE',
|
||||
1308327 => 'Rushville, NE',
|
||||
1308345 => 'McCook, NE',
|
||||
1308346 => 'Burwell, NE',
|
||||
1308352 => 'Grant, NE',
|
||||
1308367 => 'Curtis, NE',
|
||||
1308381 => 'Grand Island, NE',
|
||||
1308382 => 'Grand Island, NE',
|
||||
1308384 => 'Grand Island, NE',
|
||||
1308385 => 'Grand Island, NE',
|
||||
1308389 => 'Grand Island, NE',
|
||||
1308398 => 'Grand Island, NE',
|
||||
1308423 => 'Benkelman, NE',
|
||||
1308425 => 'Franklin, NE',
|
||||
1308432 => 'Chadron, NE',
|
||||
1308436 => 'Gering, NE',
|
||||
1308452 => 'Ravenna, NE',
|
||||
1308468 => 'Gibbon, NE',
|
||||
1308532 => 'North Platte, NE',
|
||||
1308534 => 'North Platte, NE',
|
||||
1308535 => 'North Platte, NE',
|
||||
1308536 => 'Fullerton, NE',
|
||||
1308537 => 'Gothenburg, NE',
|
||||
1308623 => 'Mitchell, NE',
|
||||
1308630 => 'Scottsbluff, NE',
|
||||
1308632 => 'Scottsbluff, NE',
|
||||
1308633 => 'Scottsbluff, NE',
|
||||
1308635 => 'Scottsbluff, NE',
|
||||
1308665 => 'Crawford, NE',
|
||||
1308696 => 'North Platte, NE',
|
||||
1308697 => 'Cambridge, NE',
|
||||
1308728 => 'Ord, NE',
|
||||
1308745 => 'Loup City, NE',
|
||||
1308754 => 'St. Paul, NE',
|
||||
1308762 => 'Alliance, NE',
|
||||
1308772 => 'Oshkosh, NE',
|
||||
1308784 => 'Cozad, NE',
|
||||
1308785 => 'Elwood, NE',
|
||||
1308832 => 'Minden, NE',
|
||||
1308865 => 'Kearney, NE',
|
||||
1308872 => 'Broken Bow, NE',
|
||||
1308874 => 'Chappell, NE',
|
||||
1308882 => 'Imperial, NE',
|
||||
1308928 => 'Alma, NE',
|
||||
1308946 => 'Central City, NE',
|
||||
1308962 => 'Arapahoe, NE',
|
||||
1308995 => 'Holdrege, NE',
|
||||
);
|
||||
123
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1309.php
vendored
Normal file
123
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1309.php
vendored
Normal file
@@ -0,0 +1,123 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1309 => 'Illinois',
|
||||
1309243 => 'Dunlap, IL',
|
||||
1309244 => 'Delavan, IL',
|
||||
1309245 => 'Farmington, IL',
|
||||
1309246 => 'Lacon, IL',
|
||||
1309263 => 'Morton, IL',
|
||||
1309266 => 'Morton, IL',
|
||||
1309268 => 'Normal, IL',
|
||||
1309274 => 'Chillicothe, IL',
|
||||
1309275 => 'Bloomington, IL',
|
||||
1309277 => 'Moline, IL',
|
||||
1309289 => 'Knoxville, IL',
|
||||
1309341 => 'Galesburg, IL',
|
||||
1309342 => 'Galesburg, IL',
|
||||
1309343 => 'Galesburg, IL',
|
||||
1309344 => 'Galesburg, IL',
|
||||
1309345 => 'Galesburg, IL',
|
||||
1309346 => 'Pekin, IL',
|
||||
1309347 => 'Pekin, IL',
|
||||
1309353 => 'Pekin, IL',
|
||||
1309364 => 'Henry, IL',
|
||||
1309365 => 'Lexington, IL',
|
||||
1309367 => 'Metamora, IL',
|
||||
1309383 => 'Germantown Hills, IL',
|
||||
1309385 => 'Princeville, IL',
|
||||
1309432 => 'Minonk, IL',
|
||||
1309444 => 'Washington, IL',
|
||||
1309451 => 'Normal, IL',
|
||||
1309452 => 'Normal, IL',
|
||||
1309454 => 'Normal, IL',
|
||||
1309462 => 'Abingdon, IL',
|
||||
1309467 => 'Eureka, IL',
|
||||
1309473 => 'Heyworth, IL',
|
||||
1309494 => 'Peoria, IL',
|
||||
1309495 => 'Peoria, IL',
|
||||
1309523 => 'Port Byron, IL',
|
||||
1309526 => 'Orion, IL',
|
||||
1309527 => 'El Paso, IL',
|
||||
1309543 => 'Havana, IL',
|
||||
1309547 => 'Lewistown, IL',
|
||||
1309582 => 'Aledo, IL',
|
||||
1309589 => 'Peoria, IL',
|
||||
1309624 => 'Peoria, IL',
|
||||
1309633 => 'Bartonville, IL',
|
||||
1309637 => 'Peoria, IL',
|
||||
1309647 => 'Canton, IL',
|
||||
1309655 => 'Peoria, IL',
|
||||
1309659 => 'Erie, IL',
|
||||
1309661 => 'Bloomington, IL',
|
||||
1309662 => 'Bloomington, IL',
|
||||
1309663 => 'Bloomington, IL',
|
||||
1309664 => 'Bloomington, IL',
|
||||
1309671 => 'Peoria, IL',
|
||||
1309672 => 'Peoria, IL',
|
||||
1309673 => 'Peoria, IL',
|
||||
1309674 => 'Peoria, IL',
|
||||
1309676 => 'Peoria, IL',
|
||||
1309679 => 'Peoria, IL',
|
||||
1309681 => 'Peoria, IL',
|
||||
1309682 => 'Peoria, IL',
|
||||
1309683 => 'Peoria, IL',
|
||||
1309685 => 'Peoria, IL',
|
||||
1309686 => 'Peoria, IL',
|
||||
1309687 => 'Peoria, IL',
|
||||
1309688 => 'Peoria, IL',
|
||||
1309689 => 'Peoria, IL',
|
||||
1309691 => 'Peoria, IL',
|
||||
1309692 => 'Peoria, IL',
|
||||
1309693 => 'Peoria, IL',
|
||||
1309694 => 'East Peoria, IL',
|
||||
1309695 => 'Wyoming, IL',
|
||||
1309697 => 'Bartonville, IL',
|
||||
1309698 => 'East Peoria, IL',
|
||||
1309699 => 'East Peoria, IL',
|
||||
1309732 => 'Rock Island, IL',
|
||||
1309734 => 'Monmouth, IL',
|
||||
1309736 => 'Moline, IL',
|
||||
1309740 => 'Peoria, IL',
|
||||
1309743 => 'Moline, IL',
|
||||
1309745 => 'Washington, IL',
|
||||
1309747 => 'Gridley, IL',
|
||||
1309752 => 'East Moline, IL',
|
||||
1309755 => 'East Moline, IL',
|
||||
1309757 => 'Moline, IL',
|
||||
1309762 => 'Moline, IL',
|
||||
1309764 => 'Moline, IL',
|
||||
1309772 => 'Bushnell, IL',
|
||||
1309776 => 'Colchester, IL',
|
||||
1309786 => 'Rock Island, IL',
|
||||
1309787 => 'Milan, IL',
|
||||
1309788 => 'Rock Island, IL',
|
||||
1309793 => 'Rock Island, IL',
|
||||
1309794 => 'Rock Island, IL',
|
||||
1309797 => 'Moline, IL',
|
||||
1309799 => 'Coal Valley, IL',
|
||||
1309820 => 'Bloomington, IL',
|
||||
1309827 => 'Bloomington, IL',
|
||||
1309828 => 'Bloomington, IL',
|
||||
1309829 => 'Bloomington, IL',
|
||||
1309833 => 'Macomb, IL',
|
||||
1309836 => 'Macomb, IL',
|
||||
1309837 => 'Macomb, IL',
|
||||
1309839 => 'Peoria, IL',
|
||||
1309852 => 'Kewanee, IL',
|
||||
1309853 => 'Kewanee, IL',
|
||||
1309862 => 'Normal, IL',
|
||||
1309888 => 'Normal, IL',
|
||||
1309923 => 'Roanoke, IL',
|
||||
1309925 => 'Tremont, IL',
|
||||
1309928 => 'Farmer City, IL',
|
||||
1309932 => 'Galva, IL',
|
||||
1309937 => 'Cambridge, IL',
|
||||
1309944 => 'Geneseo, IL',
|
||||
1309962 => 'Le Roy, IL',
|
||||
1309968 => 'Manito, IL',
|
||||
);
|
||||
234
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1310.php
vendored
Normal file
234
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1310.php
vendored
Normal file
@@ -0,0 +1,234 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1310 => 'California',
|
||||
1310201 => 'Los Angeles, CA',
|
||||
1310203 => 'Los Angeles, CA',
|
||||
1310205 => 'Beverly Hills, CA',
|
||||
1310206 => 'Los Angeles, CA',
|
||||
1310207 => 'Los Angeles, CA',
|
||||
1310208 => 'Los Angeles, CA',
|
||||
1310209 => 'Los Angeles, CA',
|
||||
1310212 => 'Torrance, CA',
|
||||
1310214 => 'Torrance, CA',
|
||||
1310217 => 'Gardena, CA',
|
||||
1310219 => 'Hawthorne, CA',
|
||||
1310222 => 'Torrance, CA',
|
||||
1310228 => 'Los Angeles, CA',
|
||||
1310229 => 'Los Angeles, CA',
|
||||
1310230 => 'Pacific Palisades, CA',
|
||||
1310231 => 'Los Angeles, CA',
|
||||
1310234 => 'Los Angeles, CA',
|
||||
1310235 => 'Los Angeles, CA',
|
||||
1310246 => 'Beverly Hills, CA',
|
||||
1310247 => 'Beverly Hills, CA',
|
||||
1310248 => 'Beverly Hills, CA',
|
||||
1310253 => 'Culver City, CA',
|
||||
1310255 => 'Santa Monica, CA',
|
||||
1310257 => 'Torrance, CA',
|
||||
1310258 => 'Los Angeles, CA',
|
||||
1310260 => 'Santa Monica, CA',
|
||||
1310263 => 'Hawthorne, CA',
|
||||
1310264 => 'Santa Monica, CA',
|
||||
1310268 => 'Los Angeles, CA',
|
||||
1310271 => 'Beverly Hills, CA',
|
||||
1310273 => 'Beverly Hills, CA',
|
||||
1310274 => 'Beverly Hills, CA',
|
||||
1310275 => 'Beverly Hills, CA',
|
||||
1310276 => 'Beverly Hills, CA',
|
||||
1310277 => 'Los Angeles, CA',
|
||||
1310278 => 'Beverly Hills, CA',
|
||||
1310281 => 'Beverly Hills, CA',
|
||||
1310282 => 'Los Angeles, CA',
|
||||
1310284 => 'Los Angeles, CA',
|
||||
1310285 => 'Beverly Hills, CA',
|
||||
1310286 => 'Los Angeles, CA',
|
||||
1310288 => 'Beverly Hills, CA',
|
||||
1310312 => 'Los Angeles, CA',
|
||||
1310314 => 'Santa Monica, CA',
|
||||
1310315 => 'Santa Monica, CA',
|
||||
1310317 => 'Malibu, CA',
|
||||
1310319 => 'Santa Monica, CA',
|
||||
1310320 => 'Torrance, CA',
|
||||
1310322 => 'El Segundo, CA',
|
||||
1310323 => 'Gardena, CA',
|
||||
1310324 => 'Gardena, CA',
|
||||
1310327 => 'Gardena, CA',
|
||||
1310328 => 'Torrance, CA',
|
||||
1310329 => 'Gardena, CA',
|
||||
1310330 => 'Inglewood, CA',
|
||||
1310335 => 'El Segundo, CA',
|
||||
1310338 => 'Los Angeles, CA',
|
||||
1310342 => 'Los Angeles, CA',
|
||||
1310348 => 'Los Angeles, CA',
|
||||
1310349 => 'Hawthorne, CA',
|
||||
1310355 => 'Hawthorne, CA',
|
||||
1310371 => 'Torrance, CA',
|
||||
1310373 => 'Torrance, CA',
|
||||
1310375 => 'Torrance, CA',
|
||||
1310378 => 'Torrance, CA',
|
||||
1310385 => 'Beverly Hills, CA',
|
||||
1310393 => 'Santa Monica, CA',
|
||||
1310394 => 'Santa Monica, CA',
|
||||
1310395 => 'Santa Monica, CA',
|
||||
1310407 => 'Los Angeles, CA',
|
||||
1310410 => 'Los Angeles, CA',
|
||||
1310412 => 'Inglewood, CA',
|
||||
1310414 => 'El Segundo, CA',
|
||||
1310417 => 'Los Angeles, CA',
|
||||
1310419 => 'Inglewood, CA',
|
||||
1310423 => 'West Hollywood, CA',
|
||||
1310426 => 'El Segundo, CA',
|
||||
1310440 => 'Los Angeles, CA',
|
||||
1310441 => 'Los Angeles, CA',
|
||||
1310442 => 'Los Angeles, CA',
|
||||
1310443 => 'Los Angeles, CA',
|
||||
1310444 => 'Los Angeles, CA',
|
||||
1310445 => 'Los Angeles, CA',
|
||||
1310446 => 'Los Angeles, CA',
|
||||
1310447 => 'Los Angeles, CA',
|
||||
1310449 => 'Santa Monica, CA',
|
||||
1310450 => 'Santa Monica, CA',
|
||||
1310451 => 'Santa Monica, CA',
|
||||
1310452 => 'Santa Monica, CA',
|
||||
1310453 => 'Santa Monica, CA',
|
||||
1310454 => 'Pacific Palisades, CA',
|
||||
1310455 => 'Topanga, CA',
|
||||
1310456 => 'Malibu, CA',
|
||||
1310457 => 'Malibu, CA',
|
||||
1310458 => 'Santa Monica, CA',
|
||||
1310459 => 'Pacific Palisades, CA',
|
||||
1310470 => 'Los Angeles, CA',
|
||||
1310471 => 'Los Angeles, CA',
|
||||
1310472 => 'Los Angeles, CA',
|
||||
1310473 => 'Los Angeles, CA',
|
||||
1310474 => 'Los Angeles, CA',
|
||||
1310475 => 'Los Angeles, CA',
|
||||
1310476 => 'Los Angeles, CA',
|
||||
1310477 => 'Los Angeles, CA',
|
||||
1310478 => 'Los Angeles, CA',
|
||||
1310479 => 'Los Angeles, CA',
|
||||
1310481 => 'Los Angeles, CA',
|
||||
1310510 => 'Avalon, CA',
|
||||
1310514 => 'San Pedro, CA',
|
||||
1310515 => 'Gardena, CA',
|
||||
1310516 => 'Gardena, CA',
|
||||
1310517 => 'Harbor City, CA',
|
||||
1310519 => 'San Pedro, CA',
|
||||
1310521 => 'San Pedro, CA',
|
||||
1310523 => 'Gardena, CA',
|
||||
1310527 => 'Gardena, CA',
|
||||
1310532 => 'Gardena, CA',
|
||||
1310533 => 'Torrance, CA',
|
||||
1310535 => 'El Segundo, CA',
|
||||
1310537 => 'Compton, CA',
|
||||
1310538 => 'Gardena, CA',
|
||||
1310542 => 'Torrance, CA',
|
||||
1310545 => 'Manhattan Beach, CA',
|
||||
1310546 => 'Manhattan Beach, CA',
|
||||
1310547 => 'San Pedro, CA',
|
||||
1310548 => 'San Pedro, CA',
|
||||
1310550 => 'Beverly Hills, CA',
|
||||
1310551 => 'Los Angeles, CA',
|
||||
1310552 => 'Los Angeles, CA',
|
||||
1310553 => 'Los Angeles, CA',
|
||||
1310556 => 'Los Angeles, CA',
|
||||
1310557 => 'Los Angeles, CA',
|
||||
1310571 => 'Los Angeles, CA',
|
||||
1310573 => 'Pacific Palisades, CA',
|
||||
1310575 => 'Los Angeles, CA',
|
||||
1310576 => 'Santa Monica, CA',
|
||||
1310581 => 'Santa Monica, CA',
|
||||
1310582 => 'Santa Monica, CA',
|
||||
1310586 => 'Santa Monica, CA',
|
||||
1310587 => 'Santa Monica, CA',
|
||||
1310589 => 'Malibu, CA',
|
||||
1310604 => 'Compton, CA',
|
||||
1310605 => 'Compton, CA',
|
||||
1310608 => 'Compton, CA',
|
||||
1310609 => 'Compton, CA',
|
||||
1310618 => 'Torrance, CA',
|
||||
1310631 => 'Compton, CA',
|
||||
1310632 => 'Compton, CA',
|
||||
1310635 => 'Compton, CA',
|
||||
1310637 => 'Compton, CA',
|
||||
1310638 => 'Compton, CA',
|
||||
1310639 => 'Compton, CA',
|
||||
1310640 => 'El Segundo, CA',
|
||||
1310641 => 'Los Angeles, CA',
|
||||
1310642 => 'Los Angeles, CA',
|
||||
1310644 => 'Hawthorne, CA',
|
||||
1310645 => 'Los Angeles, CA',
|
||||
1310649 => 'Los Angeles, CA',
|
||||
1310656 => 'Santa Monica, CA',
|
||||
1310664 => 'Santa Monica, CA',
|
||||
1310665 => 'Los Angeles, CA',
|
||||
1310668 => 'Los Angeles, CA',
|
||||
1310669 => 'Compton, CA',
|
||||
1310670 => 'Los Angeles, CA',
|
||||
1310671 => 'Inglewood, CA',
|
||||
1310672 => 'Inglewood, CA',
|
||||
1310673 => 'Inglewood, CA',
|
||||
1310674 => 'Inglewood, CA',
|
||||
1310675 => 'Hawthorne, CA',
|
||||
1310676 => 'Hawthorne, CA',
|
||||
1310677 => 'Inglewood, CA',
|
||||
1310679 => 'Hawthorne, CA',
|
||||
1310680 => 'Inglewood, CA',
|
||||
1310715 => 'Gardena, CA',
|
||||
1310719 => 'Gardena, CA',
|
||||
1310762 => 'Compton, CA',
|
||||
1310763 => 'Compton, CA',
|
||||
1310764 => 'Compton, CA',
|
||||
1310768 => 'Gardena, CA',
|
||||
1310769 => 'Gardena, CA',
|
||||
1310772 => 'Los Angeles, CA',
|
||||
1310777 => 'Beverly Hills, CA',
|
||||
1310781 => 'Torrance, CA',
|
||||
1310782 => 'Torrance, CA',
|
||||
1310783 => 'Torrance, CA',
|
||||
1310784 => 'Torrance, CA',
|
||||
1310785 => 'Los Angeles, CA',
|
||||
1310787 => 'Torrance, CA',
|
||||
1310788 => 'Los Angeles, CA',
|
||||
1310791 => 'Torrance, CA',
|
||||
1310792 => 'Torrance, CA',
|
||||
1310793 => 'Torrance, CA',
|
||||
1310794 => 'Los Angeles, CA',
|
||||
1310820 => 'Los Angeles, CA',
|
||||
1310824 => 'Los Angeles, CA',
|
||||
1310825 => 'Los Angeles, CA',
|
||||
1310826 => 'Los Angeles, CA',
|
||||
1310828 => 'Santa Monica, CA',
|
||||
1310829 => 'Santa Monica, CA',
|
||||
1310831 => 'San Pedro, CA',
|
||||
1310832 => 'San Pedro, CA',
|
||||
1310833 => 'San Pedro, CA',
|
||||
1310836 => 'Los Angeles, CA',
|
||||
1310858 => 'Beverly Hills, CA',
|
||||
1310859 => 'Beverly Hills, CA',
|
||||
1310860 => 'Beverly Hills, CA',
|
||||
1310868 => 'Compton, CA',
|
||||
1310885 => 'Compton, CA',
|
||||
1310886 => 'Compton, CA',
|
||||
1310888 => 'Beverly Hills, CA',
|
||||
1310891 => 'Torrance, CA',
|
||||
1310898 => 'Compton, CA',
|
||||
1310899 => 'Santa Monica, CA',
|
||||
1310900 => 'Lynwood, CA',
|
||||
1310914 => 'Los Angeles, CA',
|
||||
1310915 => 'Los Angeles, CA',
|
||||
1310917 => 'Santa Monica, CA',
|
||||
1310945 => 'Culver City, CA',
|
||||
1310965 => 'Gardena, CA',
|
||||
1310966 => 'Los Angeles, CA',
|
||||
1310970 => 'Hawthorne, CA',
|
||||
1310973 => 'Hawthorne, CA',
|
||||
1310978 => 'Hawthorne, CA',
|
||||
1310979 => 'Los Angeles, CA',
|
||||
1310998 => 'Santa Monica, CA',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1312.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1312.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1312 => 'Chicago, IL',
|
||||
);
|
||||
131
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1313.php
vendored
Normal file
131
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1313.php
vendored
Normal file
@@ -0,0 +1,131 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1313 => 'Michigan',
|
||||
1313223 => 'Detroit, MI',
|
||||
1313224 => 'Detroit, MI',
|
||||
1313245 => 'Detroit, MI',
|
||||
1313255 => 'Detroit, MI',
|
||||
1313259 => 'Detroit, MI',
|
||||
1313270 => 'Detroit, MI',
|
||||
1313271 => 'Dearborn, MI',
|
||||
1313272 => 'Detroit, MI',
|
||||
1313273 => 'Detroit, MI',
|
||||
1313285 => 'Detroit, MI',
|
||||
1313291 => 'Taylor, MI',
|
||||
1313292 => 'Taylor, MI',
|
||||
1313295 => 'Taylor, MI',
|
||||
1313297 => 'Detroit, MI',
|
||||
1313299 => 'Taylor, MI',
|
||||
1313331 => 'Detroit, MI',
|
||||
1313336 => 'Dearborn, MI',
|
||||
1313340 => 'Detroit, MI',
|
||||
1313341 => 'Detroit, MI',
|
||||
1313342 => 'Detroit, MI',
|
||||
1313345 => 'Detroit, MI',
|
||||
1313359 => 'Dearborn, MI',
|
||||
1313366 => 'Detroit, MI',
|
||||
1313368 => 'Detroit, MI',
|
||||
1313369 => 'Detroit, MI',
|
||||
1313371 => 'Detroit, MI',
|
||||
1313372 => 'Detroit, MI',
|
||||
1313387 => 'Redford Charter Township, MI',
|
||||
1313389 => 'Lincoln Park, MI',
|
||||
1313393 => 'Detroit, MI',
|
||||
1313397 => 'Detroit, MI',
|
||||
1313436 => 'Dearborn, MI',
|
||||
1313441 => 'Dearborn, MI',
|
||||
1313465 => 'Detroit, MI',
|
||||
1313469 => 'Detroit, MI',
|
||||
1313491 => 'Detroit, MI',
|
||||
1313493 => 'Detroit, MI',
|
||||
1313494 => 'Detroit, MI',
|
||||
1313499 => 'Detroit, MI',
|
||||
1313521 => 'Detroit, MI',
|
||||
1313526 => 'Detroit, MI',
|
||||
1313527 => 'Detroit, MI',
|
||||
1313531 => 'Detroit, MI',
|
||||
1313532 => 'Redford Charter Township, MI',
|
||||
1313533 => 'Detroit, MI',
|
||||
1313534 => 'Detroit, MI',
|
||||
1313537 => 'Detroit, MI',
|
||||
1313538 => 'Detroit, MI',
|
||||
1313541 => 'Redford Charter Township, MI',
|
||||
1313554 => 'Detroit, MI',
|
||||
1313562 => 'Dearborn, MI',
|
||||
1313565 => 'Dearborn, MI',
|
||||
1313567 => 'Detroit, MI',
|
||||
1313568 => 'Detroit, MI',
|
||||
1313571 => 'Detroit, MI',
|
||||
1313576 => 'Detroit, MI',
|
||||
1313577 => 'Detroit, MI',
|
||||
1313579 => 'Detroit, MI',
|
||||
1313581 => 'Dearborn, MI',
|
||||
1313582 => 'Dearborn, MI',
|
||||
1313584 => 'Dearborn, MI',
|
||||
1313593 => 'Dearborn, MI',
|
||||
1313638 => 'Detroit, MI',
|
||||
1313653 => 'Detroit, MI',
|
||||
1313745 => 'Detroit, MI',
|
||||
1313766 => 'Detroit, MI',
|
||||
1313821 => 'Detroit, MI',
|
||||
1313822 => 'Detroit, MI',
|
||||
1313824 => 'Detroit, MI',
|
||||
1313831 => 'Detroit, MI',
|
||||
1313832 => 'Detroit, MI',
|
||||
1313833 => 'Detroit, MI',
|
||||
1313834 => 'Detroit, MI',
|
||||
1313835 => 'Detroit, MI',
|
||||
1313836 => 'Detroit, MI',
|
||||
1313837 => 'Detroit, MI',
|
||||
1313838 => 'Detroit, MI',
|
||||
1313839 => 'Detroit, MI',
|
||||
1313841 => 'Detroit, MI',
|
||||
1313842 => 'Detroit, MI',
|
||||
1313843 => 'Detroit, MI',
|
||||
1313846 => 'Dearborn, MI',
|
||||
1313849 => 'Detroit, MI',
|
||||
1313861 => 'Detroit, MI',
|
||||
1313862 => 'Detroit, MI',
|
||||
1313863 => 'Detroit, MI',
|
||||
1313864 => 'Detroit, MI',
|
||||
1313867 => 'Detroit, MI',
|
||||
1313868 => 'Highland Park, MI',
|
||||
1313869 => 'Detroit, MI',
|
||||
1313871 => 'Detroit, MI',
|
||||
1313872 => 'Detroit, MI',
|
||||
1313873 => 'Detroit, MI',
|
||||
1313874 => 'Detroit, MI',
|
||||
1313875 => 'Detroit, MI',
|
||||
1313876 => 'Detroit, MI',
|
||||
1313891 => 'Detroit, MI',
|
||||
1313892 => 'Detroit, MI',
|
||||
1313893 => 'Detroit, MI',
|
||||
1313894 => 'Detroit, MI',
|
||||
1313895 => 'Detroit, MI',
|
||||
1313897 => 'Detroit, MI',
|
||||
1313898 => 'Detroit, MI',
|
||||
1313916 => 'Detroit, MI',
|
||||
1313921 => 'Detroit, MI',
|
||||
1313922 => 'Detroit, MI',
|
||||
1313923 => 'Detroit, MI',
|
||||
1313924 => 'Detroit, MI',
|
||||
1313925 => 'Detroit, MI',
|
||||
1313931 => 'Detroit, MI',
|
||||
1313933 => 'Detroit, MI',
|
||||
1313934 => 'Detroit, MI',
|
||||
1313937 => 'Redford Charter Township, MI',
|
||||
1313945 => 'Dearborn, MI',
|
||||
1313961 => 'Detroit, MI',
|
||||
1313962 => 'Detroit, MI',
|
||||
1313963 => 'Detroit, MI',
|
||||
1313964 => 'Detroit, MI',
|
||||
1313965 => 'Detroit, MI',
|
||||
1313966 => 'Detroit, MI',
|
||||
1313982 => 'Dearborn, MI',
|
||||
1313993 => 'Detroit, MI',
|
||||
);
|
||||
140
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1314.php
vendored
Normal file
140
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1314.php
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1314 => 'Missouri',
|
||||
1314226 => 'St. Louis, MO',
|
||||
1314231 => 'St. Louis, MO',
|
||||
1314241 => 'St. Louis, MO',
|
||||
1314251 => 'St. Louis, MO',
|
||||
1314256 => 'St. Louis, MO',
|
||||
1314261 => 'St. Louis, MO',
|
||||
1314268 => 'St. Louis, MO',
|
||||
1314286 => 'St. Louis, MO',
|
||||
1314289 => 'St. Louis, MO',
|
||||
1314344 => 'Bridgeton, MO',
|
||||
1314345 => 'St. Louis, MO',
|
||||
1314351 => 'St. Louis, MO',
|
||||
1314352 => 'St. Louis, MO',
|
||||
1314353 => 'St. Louis, MO',
|
||||
1314355 => 'St. Louis, MO',
|
||||
1314361 => 'St. Louis, MO',
|
||||
1314362 => 'St. Louis, MO',
|
||||
1314367 => 'St. Louis, MO',
|
||||
1314371 => 'St. Louis, MO',
|
||||
1314381 => 'St. Louis, MO',
|
||||
1314382 => 'St. Louis, MO',
|
||||
1314383 => 'St. Louis, MO',
|
||||
1314385 => 'St. Louis, MO',
|
||||
1314388 => 'St. Louis, MO',
|
||||
1314389 => 'St. Louis, MO',
|
||||
1314395 => 'St. Louis, MO',
|
||||
1314416 => 'St. Louis, MO',
|
||||
1314421 => 'St. Louis, MO',
|
||||
1314423 => 'St. Louis, MO',
|
||||
1314426 => 'St. Louis, MO',
|
||||
1314427 => 'St. Louis, MO',
|
||||
1314428 => 'St. Louis, MO',
|
||||
1314432 => 'St. Louis, MO',
|
||||
1314436 => 'St. Louis, MO',
|
||||
1314444 => 'St. Louis, MO',
|
||||
1314446 => 'St. Louis, MO',
|
||||
1314454 => 'St. Louis, MO',
|
||||
1314480 => 'St. Louis, MO',
|
||||
1314481 => 'St. Louis, MO',
|
||||
1314487 => 'St. Louis, MO',
|
||||
1314516 => 'St. Louis, MO',
|
||||
1314521 => 'St. Louis, MO',
|
||||
1314522 => 'St. Louis, MO',
|
||||
1314524 => 'St. Louis, MO',
|
||||
1314525 => 'St. Louis, MO',
|
||||
1314531 => 'St. Louis, MO',
|
||||
1314533 => 'St. Louis, MO',
|
||||
1314534 => 'St. Louis, MO',
|
||||
1314535 => 'St. Louis, MO',
|
||||
1314543 => 'St. Louis, MO',
|
||||
1314544 => 'St. Louis, MO',
|
||||
1314552 => 'St. Louis, MO',
|
||||
1314567 => 'St. Louis, MO',
|
||||
1314569 => 'St. Louis, MO',
|
||||
1314577 => 'St. Louis, MO',
|
||||
1314588 => 'St. Louis, MO',
|
||||
1314615 => 'St. Louis, MO',
|
||||
1314621 => 'St. Louis, MO',
|
||||
1314622 => 'St. Louis, MO',
|
||||
1314631 => 'St. Louis, MO',
|
||||
1314638 => 'St. Louis, MO',
|
||||
1314644 => 'St. Louis, MO',
|
||||
1314645 => 'St. Louis, MO',
|
||||
1314646 => 'St. Louis, MO',
|
||||
1314647 => 'St. Louis, MO',
|
||||
1314652 => 'St. Louis, MO',
|
||||
1314653 => 'St. Louis, MO',
|
||||
1314664 => 'St. Louis, MO',
|
||||
1314692 => 'St. Louis, MO',
|
||||
1314721 => 'St. Louis, MO',
|
||||
1314725 => 'St. Louis, MO',
|
||||
1314726 => 'St. Louis, MO',
|
||||
1314727 => 'St. Louis, MO',
|
||||
1314729 => 'St. Louis, MO',
|
||||
1314731 => 'Hazelwood, MO',
|
||||
1314747 => 'St. Louis, MO',
|
||||
1314752 => 'St. Louis, MO',
|
||||
1314768 => 'St. Louis, MO',
|
||||
1314771 => 'St. Louis, MO',
|
||||
1314772 => 'St. Louis, MO',
|
||||
1314773 => 'St. Louis, MO',
|
||||
1314776 => 'St. Louis, MO',
|
||||
1314781 => 'St. Louis, MO',
|
||||
1314802 => 'St. Louis, MO',
|
||||
1314814 => 'St. Louis, MO',
|
||||
1314821 => 'St. Louis, MO',
|
||||
1314822 => 'St. Louis, MO',
|
||||
1314830 => 'Florissant, MO',
|
||||
1314831 => 'Florissant, MO',
|
||||
1314832 => 'St. Louis, MO',
|
||||
1314835 => 'St. Louis, MO',
|
||||
1314837 => 'Florissant, MO',
|
||||
1314838 => 'Florissant, MO',
|
||||
1314839 => 'Florissant, MO',
|
||||
1314842 => 'St. Louis, MO',
|
||||
1314843 => 'St. Louis, MO',
|
||||
1314845 => 'St. Louis, MO',
|
||||
1314846 => 'St. Louis, MO',
|
||||
1314849 => 'St. Louis, MO',
|
||||
1314862 => 'St. Louis, MO',
|
||||
1314863 => 'St. Louis, MO',
|
||||
1314865 => 'St. Louis, MO',
|
||||
1314867 => 'St. Louis, MO',
|
||||
1314868 => 'St. Louis, MO',
|
||||
1314869 => 'St. Louis, MO',
|
||||
1314872 => 'St. Louis, MO',
|
||||
1314890 => 'St. Louis, MO',
|
||||
1314892 => 'St. Louis, MO',
|
||||
1314894 => 'St. Louis, MO',
|
||||
1314895 => 'Hazelwood, MO',
|
||||
1314909 => 'St. Louis, MO',
|
||||
1314918 => 'St. Louis, MO',
|
||||
1314921 => 'Florissant, MO',
|
||||
1314932 => 'St. Louis, MO',
|
||||
1314935 => 'St. Louis, MO',
|
||||
1314961 => 'St. Louis, MO',
|
||||
1314962 => 'St. Louis, MO',
|
||||
1314963 => 'St. Louis, MO',
|
||||
1314965 => 'St. Louis, MO',
|
||||
1314966 => 'St. Louis, MO',
|
||||
1314968 => 'St. Louis, MO',
|
||||
1314972 => 'Florissant, MO',
|
||||
1314977 => 'St. Louis, MO',
|
||||
1314983 => 'St. Louis, MO',
|
||||
1314989 => 'St. Louis, MO',
|
||||
1314991 => 'St. Louis, MO',
|
||||
1314993 => 'St. Louis, MO',
|
||||
1314994 => 'St. Louis, MO',
|
||||
1314995 => 'St. Louis, MO',
|
||||
1314996 => 'St. Louis, MO',
|
||||
1314997 => 'St. Louis, MO',
|
||||
);
|
||||
167
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1315.php
vendored
Normal file
167
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1315.php
vendored
Normal file
@@ -0,0 +1,167 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1315 => 'New York',
|
||||
1315214 => 'Syracuse, NY',
|
||||
1315218 => 'Syracuse, NY',
|
||||
1315232 => 'Adams, NY',
|
||||
1315245 => 'Camden, NY',
|
||||
1315251 => 'Syracuse, NY',
|
||||
1315252 => 'Auburn, NY',
|
||||
1315253 => 'Auburn, NY',
|
||||
1315255 => 'Auburn, NY',
|
||||
1315258 => 'Auburn, NY',
|
||||
1315265 => 'Potsdam, NY',
|
||||
1315266 => 'Utica, NY',
|
||||
1315287 => 'Gouverneur, NY',
|
||||
1315298 => 'Pulaski, NY',
|
||||
1315299 => 'Syracuse, NY',
|
||||
1315314 => 'Syracuse, NY',
|
||||
1315329 => 'Fayetteville, NY',
|
||||
1315331 => 'Newark, NY',
|
||||
1315334 => 'Rome, NY',
|
||||
1315336 => 'Rome, NY',
|
||||
1315337 => 'Rome, NY',
|
||||
1315338 => 'Rome, NY',
|
||||
1315339 => 'Rome, NY',
|
||||
1315342 => 'Oswego, NY',
|
||||
1315343 => 'Oswego, NY',
|
||||
1315346 => 'Croghan, NY',
|
||||
1315349 => 'Oswego, NY',
|
||||
1315357 => 'Inlet, NY',
|
||||
1315361 => 'Oneida, NY',
|
||||
1315363 => 'Oneida, NY',
|
||||
1315366 => 'Wampsville, NY',
|
||||
1315369 => 'Old Forge, NY',
|
||||
1315376 => 'Lowville, NY',
|
||||
1315379 => 'Canton, NY',
|
||||
1315386 => 'Canton, NY',
|
||||
1315393 => 'Ogdensburg, NY',
|
||||
1315394 => 'Ogdensburg, NY',
|
||||
1315422 => 'Syracuse, NY',
|
||||
1315423 => 'Syracuse, NY',
|
||||
1315424 => 'Syracuse, NY',
|
||||
1315425 => 'Syracuse, NY',
|
||||
1315426 => 'Syracuse, NY',
|
||||
1315428 => 'Syracuse, NY',
|
||||
1315429 => 'Dolgeville, NY',
|
||||
1315435 => 'Syracuse, NY',
|
||||
1315443 => 'Syracuse, NY',
|
||||
1315446 => 'Syracuse, NY',
|
||||
1315448 => 'Syracuse, NY',
|
||||
1315451 => 'Liverpool, NY',
|
||||
1315453 => 'Liverpool, NY',
|
||||
1315454 => 'Syracuse, NY',
|
||||
1315455 => 'Syracuse, NY',
|
||||
1315457 => 'Liverpool, NY',
|
||||
1315462 => 'Clifton Springs, NY',
|
||||
1315464 => 'Syracuse, NY',
|
||||
1315466 => 'Syracuse, NY',
|
||||
1315468 => 'Syracuse, NY',
|
||||
1315469 => 'Syracuse, NY',
|
||||
1315470 => 'Syracuse, NY',
|
||||
1315471 => 'Syracuse, NY',
|
||||
1315472 => 'Syracuse, NY',
|
||||
1315473 => 'Syracuse, NY',
|
||||
1315474 => 'Syracuse, NY',
|
||||
1315475 => 'Syracuse, NY',
|
||||
1315476 => 'Syracuse, NY',
|
||||
1315478 => 'Syracuse, NY',
|
||||
1315479 => 'Syracuse, NY',
|
||||
1315482 => 'Alexandria Bay, NY',
|
||||
1315483 => 'Sodus, NY',
|
||||
1315488 => 'Syracuse, NY',
|
||||
1315492 => 'Syracuse, NY',
|
||||
1315493 => 'Carthage, NY',
|
||||
1315497 => 'Moravia, NY',
|
||||
1315498 => 'Syracuse, NY',
|
||||
1315507 => 'Utica, NY',
|
||||
1315524 => 'Ontario, NY',
|
||||
1315536 => 'Penn Yan, NY',
|
||||
1315539 => 'Waterloo, NY',
|
||||
1315548 => 'Phelps, NY',
|
||||
1315564 => 'Hannibal, NY',
|
||||
1315568 => 'Seneca Falls, NY',
|
||||
1315589 => 'Williamson, NY',
|
||||
1315592 => 'Fulton, NY',
|
||||
1315593 => 'Fulton, NY',
|
||||
1315594 => 'Wolcott, NY',
|
||||
1315597 => 'Palmyra, NY',
|
||||
1315598 => 'Fulton, NY',
|
||||
1315622 => 'Liverpool, NY',
|
||||
1315624 => 'Utica, NY',
|
||||
1315625 => 'Parish, NY',
|
||||
1315626 => 'Cato, NY',
|
||||
1315629 => 'Evans Mills, NY',
|
||||
1315633 => 'Bridgeport, NY',
|
||||
1315635 => 'Baldwinsville, NY',
|
||||
1315637 => 'Fayetteville, NY',
|
||||
1315638 => 'Baldwinsville, NY',
|
||||
1315652 => 'Liverpool, NY',
|
||||
1315654 => 'Cape Vincent, NY',
|
||||
1315655 => 'Cazenovia, NY',
|
||||
1315668 => 'Central Square, NY',
|
||||
1315671 => 'Syracuse, NY',
|
||||
1315672 => 'Camillus, NY',
|
||||
1315673 => 'Marcellus, NY',
|
||||
1315677 => 'LaFayette, NY',
|
||||
1315682 => 'Manlius, NY',
|
||||
1315684 => 'Morrisville, NY',
|
||||
1315685 => 'Skaneateles, NY',
|
||||
1315686 => 'Clayton, NY',
|
||||
1315687 => 'Chittenango, NY',
|
||||
1315695 => 'Phoenix, NY',
|
||||
1315696 => 'Tully, NY',
|
||||
1315697 => 'Canastota, NY',
|
||||
1315698 => 'Cicero, NY',
|
||||
1315699 => 'Cicero, NY',
|
||||
1315701 => 'Syracuse, NY',
|
||||
1315724 => 'Utica, NY',
|
||||
1315732 => 'Utica, NY',
|
||||
1315733 => 'Utica, NY',
|
||||
1315734 => 'Utica, NY',
|
||||
1315735 => 'Utica, NY',
|
||||
1315738 => 'Utica, NY',
|
||||
1315764 => 'Massena, NY',
|
||||
1315769 => 'Massena, NY',
|
||||
1315772 => 'Fort Drum, NY',
|
||||
1315776 => 'Port Byron, NY',
|
||||
1315779 => 'Watertown, NY',
|
||||
1315781 => 'Geneva, NY',
|
||||
1315782 => 'Watertown, NY',
|
||||
1315785 => 'Watertown, NY',
|
||||
1315786 => 'Watertown, NY',
|
||||
1315787 => 'Geneva, NY',
|
||||
1315788 => 'Watertown, NY',
|
||||
1315789 => 'Geneva, NY',
|
||||
1315792 => 'Utica, NY',
|
||||
1315793 => 'Utica, NY',
|
||||
1315797 => 'Utica, NY',
|
||||
1315798 => 'Utica, NY',
|
||||
1315822 => 'West Winfield, NY',
|
||||
1315823 => 'Little Falls, NY',
|
||||
1315824 => 'Hamilton, NY',
|
||||
1315826 => 'Poland, NY',
|
||||
1315829 => 'Vernon, NY',
|
||||
1315834 => 'Weedsport, NY',
|
||||
1315841 => 'Waterville, NY',
|
||||
1315845 => 'Newport, NY',
|
||||
1315853 => 'Clinton, NY',
|
||||
1315858 => 'Richfield Spgs, NY',
|
||||
1315866 => 'Herkimer, NY',
|
||||
1315867 => 'Herkimer, NY',
|
||||
1315893 => 'Madison, NY',
|
||||
1315894 => 'Ilion, NY',
|
||||
1315895 => 'Ilion, NY',
|
||||
1315896 => 'Barneveld, NY',
|
||||
1315923 => 'Clyde, NY',
|
||||
1315926 => 'Marion, NY',
|
||||
1315942 => 'Boonville, NY',
|
||||
1315946 => 'Lyons, NY',
|
||||
1315963 => 'Mexico, NY',
|
||||
1315986 => 'Macedon, NY',
|
||||
);
|
||||
81
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1316.php
vendored
Normal file
81
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1316.php
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1316 => 'Kansas',
|
||||
1316201 => 'Wichita, KS',
|
||||
1316260 => 'Wichita, KS',
|
||||
1316262 => 'Wichita, KS',
|
||||
1316263 => 'Wichita, KS',
|
||||
1316264 => 'Wichita, KS',
|
||||
1316265 => 'Wichita, KS',
|
||||
1316267 => 'Wichita, KS',
|
||||
1316268 => 'Wichita, KS',
|
||||
1316269 => 'Wichita, KS',
|
||||
1316283 => 'Newton, KS',
|
||||
1316284 => 'Newton, KS',
|
||||
1316293 => 'Wichita, KS',
|
||||
1316295 => 'Wichita, KS',
|
||||
1316303 => 'Wichita, KS',
|
||||
1316320 => 'El Dorado, KS',
|
||||
1316321 => 'El Dorado, KS',
|
||||
1316322 => 'El Dorado, KS',
|
||||
1316383 => 'Wichita, KS',
|
||||
1316425 => 'Wichita, KS',
|
||||
1316440 => 'Wichita, KS',
|
||||
1316462 => 'Wichita, KS',
|
||||
1316522 => 'Wichita, KS',
|
||||
1316524 => 'Wichita, KS',
|
||||
1316529 => 'Wichita, KS',
|
||||
1316554 => 'Wichita, KS',
|
||||
1316558 => 'Wichita, KS',
|
||||
1316612 => 'Wichita, KS',
|
||||
1316613 => 'Wichita, KS',
|
||||
1316618 => 'Wichita, KS',
|
||||
1316630 => 'Wichita, KS',
|
||||
1316634 => 'Wichita, KS',
|
||||
1316636 => 'Wichita, KS',
|
||||
1316651 => 'Wichita, KS',
|
||||
1316652 => 'Wichita, KS',
|
||||
1316660 => 'Wichita, KS',
|
||||
1316681 => 'Wichita, KS',
|
||||
1316682 => 'Wichita, KS',
|
||||
1316683 => 'Wichita, KS',
|
||||
1316684 => 'Wichita, KS',
|
||||
1316685 => 'Wichita, KS',
|
||||
1316686 => 'Wichita, KS',
|
||||
1316687 => 'Wichita, KS',
|
||||
1316688 => 'Wichita, KS',
|
||||
1316689 => 'Wichita, KS',
|
||||
1316691 => 'Wichita, KS',
|
||||
1316721 => 'Wichita, KS',
|
||||
1316722 => 'Wichita, KS',
|
||||
1316729 => 'Wichita, KS',
|
||||
1316733 => 'Andover, KS',
|
||||
1316755 => 'Valley Center, KS',
|
||||
1316772 => 'Sedgwick, KS',
|
||||
1316773 => 'Wichita, KS',
|
||||
1316775 => 'Augusta, KS',
|
||||
1316776 => 'Rose Hill, KS',
|
||||
1316777 => 'Mulvane, KS',
|
||||
1316788 => 'Derby, KS',
|
||||
1316789 => 'Derby, KS',
|
||||
1316794 => 'Goddard, KS',
|
||||
1316796 => 'Colwich, KS',
|
||||
1316799 => 'Whitewater, KS',
|
||||
1316832 => 'Wichita, KS',
|
||||
1316835 => 'Halstead, KS',
|
||||
1316838 => 'Wichita, KS',
|
||||
1316858 => 'Wichita, KS',
|
||||
1316941 => 'Wichita, KS',
|
||||
1316942 => 'Wichita, KS',
|
||||
1316943 => 'Wichita, KS',
|
||||
1316944 => 'Wichita, KS',
|
||||
1316945 => 'Wichita, KS',
|
||||
1316946 => 'Wichita, KS',
|
||||
1316962 => 'Wichita, KS',
|
||||
1316973 => 'Wichita, KS',
|
||||
);
|
||||
205
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1317.php
vendored
Normal file
205
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1317.php
vendored
Normal file
@@ -0,0 +1,205 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1317 => 'Indiana',
|
||||
1317202 => 'Indianapolis, IN',
|
||||
1317205 => 'Indianapolis, IN',
|
||||
1317216 => 'Indianapolis, IN',
|
||||
1317219 => 'Noblesville, IN',
|
||||
1317222 => 'Indianapolis, IN',
|
||||
1317226 => 'Indianapolis, IN',
|
||||
1317228 => 'Indianapolis, IN',
|
||||
1317231 => 'Indianapolis, IN',
|
||||
1317232 => 'Indianapolis, IN',
|
||||
1317236 => 'Indianapolis, IN',
|
||||
1317237 => 'Indianapolis, IN',
|
||||
1317241 => 'Indianapolis, IN',
|
||||
1317243 => 'Indianapolis, IN',
|
||||
1317244 => 'Indianapolis, IN',
|
||||
1317247 => 'Indianapolis, IN',
|
||||
1317248 => 'Indianapolis, IN',
|
||||
1317251 => 'Indianapolis, IN',
|
||||
1317253 => 'Indianapolis, IN',
|
||||
1317254 => 'Indianapolis, IN',
|
||||
1317255 => 'Indianapolis, IN',
|
||||
1317257 => 'Indianapolis, IN',
|
||||
1317259 => 'Indianapolis, IN',
|
||||
1317271 => 'Indianapolis, IN',
|
||||
1317272 => 'Avon, IN',
|
||||
1317274 => 'Indianapolis, IN',
|
||||
1317278 => 'Indianapolis, IN',
|
||||
1317280 => 'Indianapolis, IN',
|
||||
1317283 => 'Indianapolis, IN',
|
||||
1317290 => 'Indianapolis, IN',
|
||||
1317291 => 'Indianapolis, IN',
|
||||
1317293 => 'Indianapolis, IN',
|
||||
1317295 => 'Indianapolis, IN',
|
||||
1317297 => 'Indianapolis, IN',
|
||||
1317298 => 'Indianapolis, IN',
|
||||
1317299 => 'Indianapolis, IN',
|
||||
1317300 => 'Greenwood, IN',
|
||||
1317322 => 'Indianapolis, IN',
|
||||
1317326 => 'Greenfield, IN',
|
||||
1317327 => 'Indianapolis, IN',
|
||||
1317328 => 'Indianapolis, IN',
|
||||
1317329 => 'Indianapolis, IN',
|
||||
1317334 => 'Indianapolis, IN',
|
||||
1317335 => 'McCordsville, IN',
|
||||
1317337 => 'Indianapolis, IN',
|
||||
1317338 => 'Indianapolis, IN',
|
||||
1317346 => 'Franklin, IN',
|
||||
1317347 => 'Indianapolis, IN',
|
||||
1317351 => 'Indianapolis, IN',
|
||||
1317352 => 'Indianapolis, IN',
|
||||
1317353 => 'Indianapolis, IN',
|
||||
1317355 => 'Indianapolis, IN',
|
||||
1317356 => 'Indianapolis, IN',
|
||||
1317357 => 'Indianapolis, IN',
|
||||
1317359 => 'Indianapolis, IN',
|
||||
1317375 => 'Indianapolis, IN',
|
||||
1317377 => 'Indianapolis, IN',
|
||||
1317388 => 'Indianapolis, IN',
|
||||
1317392 => 'Shelbyville, IN',
|
||||
1317396 => 'Indianapolis, IN',
|
||||
1317398 => 'Shelbyville, IN',
|
||||
1317415 => 'Indianapolis, IN',
|
||||
1317422 => 'Bargersville, IN',
|
||||
1317423 => 'Indianapolis, IN',
|
||||
1317426 => 'Indianapolis, IN',
|
||||
1317462 => 'Greenfield, IN',
|
||||
1317464 => 'Indianapolis, IN',
|
||||
1317467 => 'Greenfield, IN',
|
||||
1317468 => 'Greenfield, IN',
|
||||
1317471 => 'Indianapolis, IN',
|
||||
1317472 => 'Indianapolis, IN',
|
||||
1317475 => 'Indianapolis, IN',
|
||||
1317477 => 'Greenfield, IN',
|
||||
1317481 => 'Indianapolis, IN',
|
||||
1317485 => 'Fortville, IN',
|
||||
1317528 => 'Indianapolis, IN',
|
||||
1317535 => 'Whiteland, IN',
|
||||
1317536 => 'Indianapolis, IN',
|
||||
1317539 => 'Clayton, IN',
|
||||
1317541 => 'Indianapolis, IN',
|
||||
1317542 => 'Indianapolis, IN',
|
||||
1317543 => 'Indianapolis, IN',
|
||||
1317545 => 'Indianapolis, IN',
|
||||
1317546 => 'Indianapolis, IN',
|
||||
1317547 => 'Indianapolis, IN',
|
||||
1317549 => 'Indianapolis, IN',
|
||||
1317554 => 'Indianapolis, IN',
|
||||
1317558 => 'Indianapolis, IN',
|
||||
1317564 => 'Carmel, IN',
|
||||
1317566 => 'Carmel, IN',
|
||||
1317567 => 'Indianapolis, IN',
|
||||
1317571 => 'Carmel, IN',
|
||||
1317573 => 'Carmel, IN',
|
||||
1317579 => 'Indianapolis, IN',
|
||||
1317582 => 'Carmel, IN',
|
||||
1317587 => 'Carmel, IN',
|
||||
1317596 => 'Indianapolis, IN',
|
||||
1317602 => 'Indianapolis, IN',
|
||||
1317621 => 'Indianapolis, IN',
|
||||
1317630 => 'Indianapolis, IN',
|
||||
1317631 => 'Indianapolis, IN',
|
||||
1317632 => 'Indianapolis, IN',
|
||||
1317633 => 'Indianapolis, IN',
|
||||
1317634 => 'Indianapolis, IN',
|
||||
1317635 => 'Indianapolis, IN',
|
||||
1317636 => 'Indianapolis, IN',
|
||||
1317637 => 'Indianapolis, IN',
|
||||
1317638 => 'Indianapolis, IN',
|
||||
1317639 => 'Indianapolis, IN',
|
||||
1317684 => 'Indianapolis, IN',
|
||||
1317686 => 'Indianapolis, IN',
|
||||
1317713 => 'Indianapolis, IN',
|
||||
1317718 => 'Danville, IN',
|
||||
1317722 => 'Indianapolis, IN',
|
||||
1317731 => 'Indianapolis, IN',
|
||||
1317733 => 'Zionsville, IN',
|
||||
1317736 => 'Franklin, IN',
|
||||
1317738 => 'Franklin, IN',
|
||||
1317745 => 'Danville, IN',
|
||||
1317755 => 'Indianapolis, IN',
|
||||
1317758 => 'Sheridan, IN',
|
||||
1317770 => 'Noblesville, IN',
|
||||
1317773 => 'Noblesville, IN',
|
||||
1317774 => 'Noblesville, IN',
|
||||
1317776 => 'Noblesville, IN',
|
||||
1317780 => 'Indianapolis, IN',
|
||||
1317781 => 'Indianapolis, IN',
|
||||
1317782 => 'Indianapolis, IN',
|
||||
1317783 => 'Indianapolis, IN',
|
||||
1317784 => 'Indianapolis, IN',
|
||||
1317786 => 'Indianapolis, IN',
|
||||
1317787 => 'Indianapolis, IN',
|
||||
1317788 => 'Indianapolis, IN',
|
||||
1317791 => 'Indianapolis, IN',
|
||||
1317802 => 'Indianapolis, IN',
|
||||
1317804 => 'Westfield, IN',
|
||||
1317805 => 'Indianapolis, IN',
|
||||
1317814 => 'Carmel, IN',
|
||||
1317815 => 'Carmel, IN',
|
||||
1317822 => 'Indianapolis, IN',
|
||||
1317823 => 'Indianapolis, IN',
|
||||
1317826 => 'Indianapolis, IN',
|
||||
1317831 => 'Mooresville, IN',
|
||||
1317834 => 'Mooresville, IN',
|
||||
1317835 => 'Fairland, IN',
|
||||
1317837 => 'Plainfield, IN',
|
||||
1317838 => 'Plainfield, IN',
|
||||
1317839 => 'Plainfield, IN',
|
||||
1317842 => 'Indianapolis, IN',
|
||||
1317843 => 'Carmel, IN',
|
||||
1317844 => 'Carmel, IN',
|
||||
1317845 => 'Indianapolis, IN',
|
||||
1317846 => 'Carmel, IN',
|
||||
1317848 => 'Carmel, IN',
|
||||
1317849 => 'Indianapolis, IN',
|
||||
1317852 => 'Brownsburg, IN',
|
||||
1317856 => 'Indianapolis, IN',
|
||||
1317858 => 'Brownsburg, IN',
|
||||
1317859 => 'Greenwood, IN',
|
||||
1317861 => 'New Palestine, IN',
|
||||
1317862 => 'Indianapolis, IN',
|
||||
1317867 => 'Westfield, IN',
|
||||
1317870 => 'Indianapolis, IN',
|
||||
1317872 => 'Indianapolis, IN',
|
||||
1317873 => 'Zionsville, IN',
|
||||
1317875 => 'Indianapolis, IN',
|
||||
1317876 => 'Indianapolis, IN',
|
||||
1317878 => 'Trafalgar, IN',
|
||||
1317879 => 'Indianapolis, IN',
|
||||
1317881 => 'Greenwood, IN',
|
||||
1317883 => 'Greenwood, IN',
|
||||
1317885 => 'Greenwood, IN',
|
||||
1317888 => 'Greenwood, IN',
|
||||
1317889 => 'Greenwood, IN',
|
||||
1317890 => 'Indianapolis, IN',
|
||||
1317892 => 'Pittsboro, IN',
|
||||
1317895 => 'Indianapolis, IN',
|
||||
1317896 => 'Westfield, IN',
|
||||
1317897 => 'Indianapolis, IN',
|
||||
1317898 => 'Indianapolis, IN',
|
||||
1317899 => 'Indianapolis, IN',
|
||||
1317916 => 'Indianapolis, IN',
|
||||
1317917 => 'Indianapolis, IN',
|
||||
1317920 => 'Indianapolis, IN',
|
||||
1317921 => 'Indianapolis, IN',
|
||||
1317923 => 'Indianapolis, IN',
|
||||
1317924 => 'Indianapolis, IN',
|
||||
1317925 => 'Indianapolis, IN',
|
||||
1317926 => 'Indianapolis, IN',
|
||||
1317931 => 'Indianapolis, IN',
|
||||
1317944 => 'Indianapolis, IN',
|
||||
1317955 => 'Indianapolis, IN',
|
||||
1317962 => 'Indianapolis, IN',
|
||||
1317972 => 'Indianapolis, IN',
|
||||
1317984 => 'Cicero, IN',
|
||||
1317988 => 'Indianapolis, IN',
|
||||
1317996 => 'Monrovia, IN',
|
||||
);
|
||||
149
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1318.php
vendored
Normal file
149
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1318.php
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1318 => 'Louisiana',
|
||||
1318213 => 'Shreveport, LA',
|
||||
1318219 => 'Shreveport, LA',
|
||||
1318220 => 'Shreveport, LA',
|
||||
1318221 => 'Shreveport, LA',
|
||||
1318222 => 'Shreveport, LA',
|
||||
1318226 => 'Shreveport, LA',
|
||||
1318227 => 'Shreveport, LA',
|
||||
1318238 => 'Natchitoches, LA',
|
||||
1318240 => 'Marksville, LA',
|
||||
1318247 => 'Grambling, LA',
|
||||
1318248 => 'Mangham, LA',
|
||||
1318251 => 'Ruston, LA',
|
||||
1318253 => 'Marksville, LA',
|
||||
1318254 => 'Ruston, LA',
|
||||
1318255 => 'Ruston, LA',
|
||||
1318256 => 'Many, LA',
|
||||
1318259 => 'Jonesboro, LA',
|
||||
1318263 => 'Arcadia, LA',
|
||||
1318281 => 'Bastrop, LA',
|
||||
1318283 => 'Bastrop, LA',
|
||||
1318322 => 'Monroe, LA',
|
||||
1318323 => 'Monroe, LA',
|
||||
1318324 => 'Monroe, LA',
|
||||
1318325 => 'Monroe, LA',
|
||||
1318326 => 'Plain Dealing, LA',
|
||||
1318329 => 'Monroe, LA',
|
||||
1318330 => 'Monroe, LA',
|
||||
1318335 => 'Oakdale, LA',
|
||||
1318336 => 'Vidalia, LA',
|
||||
1318339 => 'Jonesville, LA',
|
||||
1318340 => 'Monroe, LA',
|
||||
1318343 => 'Monroe, LA',
|
||||
1318345 => 'Monroe, LA',
|
||||
1318346 => 'Bunkie, LA',
|
||||
1318352 => 'Natchitoches, LA',
|
||||
1318354 => 'Natchitoches, LA',
|
||||
1318356 => 'Natchitoches, LA',
|
||||
1318357 => 'Natchitoches, LA',
|
||||
1318361 => 'Monroe, LA',
|
||||
1318362 => 'Monroe, LA',
|
||||
1318368 => 'Farmerville, LA',
|
||||
1318371 => 'Minden, LA',
|
||||
1318375 => 'Vivian, LA',
|
||||
1318377 => 'Minden, LA',
|
||||
1318382 => 'Minden, LA',
|
||||
1318387 => 'Monroe, LA',
|
||||
1318388 => 'Monroe, LA',
|
||||
1318396 => 'West Monroe, LA',
|
||||
1318397 => 'West Monroe, LA',
|
||||
1318398 => 'Monroe, LA',
|
||||
1318410 => 'Monroe, LA',
|
||||
1318424 => 'Shreveport, LA',
|
||||
1318425 => 'Shreveport, LA',
|
||||
1318428 => 'Oak Grove, LA',
|
||||
1318429 => 'Shreveport, LA',
|
||||
1318435 => 'Winnsboro, LA',
|
||||
1318442 => 'Alexandria, LA',
|
||||
1318443 => 'Alexandria, LA',
|
||||
1318445 => 'Alexandria, LA',
|
||||
1318448 => 'Alexandria, LA',
|
||||
1318449 => 'Alexandria, LA',
|
||||
1318466 => 'Deville, LA',
|
||||
1318473 => 'Alexandria, LA',
|
||||
1318484 => 'Alexandria, LA',
|
||||
1318487 => 'Alexandria, LA',
|
||||
1318495 => 'Olla, LA',
|
||||
1318524 => 'Shreveport, LA',
|
||||
1318539 => 'Springhill, LA',
|
||||
1318549 => 'Bossier City, LA',
|
||||
1318550 => 'Shreveport, LA',
|
||||
1318559 => 'Lake Providence, LA',
|
||||
1318561 => 'Alexandria, LA',
|
||||
1318574 => 'Tallulah, LA',
|
||||
1318603 => 'Shreveport, LA',
|
||||
1318621 => 'Shreveport, LA',
|
||||
1318624 => 'Haynesville, LA',
|
||||
1318627 => 'Colfax, LA',
|
||||
1318628 => 'Winnfield, LA',
|
||||
1318629 => 'Shreveport, LA',
|
||||
1318631 => 'Shreveport, LA',
|
||||
1318632 => 'Shreveport, LA',
|
||||
1318635 => 'Shreveport, LA',
|
||||
1318636 => 'Shreveport, LA',
|
||||
1318640 => 'Pineville, LA',
|
||||
1318641 => 'Pineville, LA',
|
||||
1318644 => 'Calhoun, LA',
|
||||
1318645 => 'Zwolle, LA',
|
||||
1318648 => 'Winnfield, LA',
|
||||
1318649 => 'Columbia, LA',
|
||||
1318651 => 'Monroe, LA',
|
||||
1318654 => 'Monroe, LA',
|
||||
1318665 => 'Sterlington, LA',
|
||||
1318670 => 'Shreveport, LA',
|
||||
1318671 => 'Shreveport, LA',
|
||||
1318673 => 'Shreveport, LA',
|
||||
1318675 => 'Shreveport, LA',
|
||||
1318676 => 'Shreveport, LA',
|
||||
1318681 => 'Shreveport, LA',
|
||||
1318683 => 'Shreveport, LA',
|
||||
1318686 => 'Shreveport, LA',
|
||||
1318687 => 'Shreveport, LA',
|
||||
1318688 => 'Shreveport, LA',
|
||||
1318697 => 'Logansport, LA',
|
||||
1318728 => 'Rayville, LA',
|
||||
1318741 => 'Bossier City, LA',
|
||||
1318742 => 'Bossier City, LA',
|
||||
1318746 => 'Bossier City, LA',
|
||||
1318747 => 'Bossier City, LA',
|
||||
1318748 => 'Forest Hill, LA',
|
||||
1318752 => 'Bossier City, LA',
|
||||
1318757 => 'Ferriday, LA',
|
||||
1318766 => 'St. Joseph, LA',
|
||||
1318767 => 'Alexandria, LA',
|
||||
1318787 => 'Alexandria, LA',
|
||||
1318793 => 'Boyce, LA',
|
||||
1318795 => 'Shreveport, LA',
|
||||
1318797 => 'Shreveport, LA',
|
||||
1318798 => 'Shreveport, LA',
|
||||
1318813 => 'Shreveport, LA',
|
||||
1318828 => 'Shreveport, LA',
|
||||
1318841 => 'Shreveport, LA',
|
||||
1318855 => 'Monroe, LA',
|
||||
1318861 => 'Shreveport, LA',
|
||||
1318865 => 'Shreveport, LA',
|
||||
1318868 => 'Shreveport, LA',
|
||||
1318869 => 'Shreveport, LA',
|
||||
1318871 => 'Mansfield, LA',
|
||||
1318872 => 'Mansfield, LA',
|
||||
1318876 => 'Cottonport, LA',
|
||||
1318878 => 'Delhi, LA',
|
||||
1318894 => 'Ringgold, LA',
|
||||
1318925 => 'Keithville, LA',
|
||||
1318927 => 'Homer, LA',
|
||||
1318929 => 'Shreveport, LA',
|
||||
1318932 => 'Coushatta, LA',
|
||||
1318938 => 'Greenwood, LA',
|
||||
1318949 => 'Haughton, LA',
|
||||
1318965 => 'Benton, LA',
|
||||
1318966 => 'Monroe, LA',
|
||||
1318992 => 'Jena, LA',
|
||||
);
|
||||
109
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1319.php
vendored
Normal file
109
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1319.php
vendored
Normal file
@@ -0,0 +1,109 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1319 => 'Iowa',
|
||||
1319232 => 'Waterloo, IA',
|
||||
1319233 => 'Waterloo, IA',
|
||||
1319234 => 'Waterloo, IA',
|
||||
1319235 => 'Waterloo, IA',
|
||||
1319236 => 'Waterloo, IA',
|
||||
1319247 => 'Cedar Rapids, IA',
|
||||
1319256 => 'Wayland, IA',
|
||||
1319261 => 'Cedar Rapids, IA',
|
||||
1319266 => 'Cedar Falls, IA',
|
||||
1319267 => 'Allison, IA',
|
||||
1319268 => 'Cedar Falls, IA',
|
||||
1319272 => 'Waterloo, IA',
|
||||
1319273 => 'Cedar Falls, IA',
|
||||
1319277 => 'Cedar Falls, IA',
|
||||
1319283 => 'Oelwein, IA',
|
||||
1319286 => 'Cedar Rapids, IA',
|
||||
1319287 => 'Waterloo, IA',
|
||||
1319291 => 'Waterloo, IA',
|
||||
1319293 => 'Keosauqua, IA',
|
||||
1319294 => 'Cedar Rapids, IA',
|
||||
1319296 => 'Waterloo, IA',
|
||||
1319334 => 'Independence, IA',
|
||||
1319335 => 'Iowa City, IA',
|
||||
1319337 => 'Iowa City, IA',
|
||||
1319338 => 'Iowa City, IA',
|
||||
1319339 => 'Iowa City, IA',
|
||||
1319341 => 'Iowa City, IA',
|
||||
1319342 => 'La Porte City, IA',
|
||||
1319346 => 'Parkersburg, IA',
|
||||
1319351 => 'Iowa City, IA',
|
||||
1319352 => 'Waverly, IA',
|
||||
1319353 => 'Iowa City, IA',
|
||||
1319354 => 'Iowa City, IA',
|
||||
1319356 => 'Iowa City, IA',
|
||||
1319358 => 'Iowa City, IA',
|
||||
1319362 => 'Cedar Rapids, IA',
|
||||
1319363 => 'Cedar Rapids, IA',
|
||||
1319364 => 'Cedar Rapids, IA',
|
||||
1319365 => 'Cedar Rapids, IA',
|
||||
1319366 => 'Cedar Rapids, IA',
|
||||
1319367 => 'New London, IA',
|
||||
1319368 => 'Cedar Rapids, IA',
|
||||
1319369 => 'Cedar Rapids, IA',
|
||||
1319372 => 'Fort Madison, IA',
|
||||
1319373 => 'Marion, IA',
|
||||
1319377 => 'Marion, IA',
|
||||
1319378 => 'Cedar Rapids, IA',
|
||||
1319384 => 'Iowa City, IA',
|
||||
1319385 => 'Mount Pleasant, IA',
|
||||
1319390 => 'Cedar Rapids, IA',
|
||||
1319393 => 'Cedar Rapids, IA',
|
||||
1319394 => 'Mediapolis, IA',
|
||||
1319395 => 'Cedar Rapids, IA',
|
||||
1319396 => 'Cedar Rapids, IA',
|
||||
1319398 => 'Cedar Rapids, IA',
|
||||
1319433 => 'Waterloo, IA',
|
||||
1319444 => 'Belle Plaine, IA',
|
||||
1319447 => 'Marion, IA',
|
||||
1319455 => 'Lisbon, IA',
|
||||
1319462 => 'Anamosa, IA',
|
||||
1319465 => 'Monticello, IA',
|
||||
1319472 => 'Vinton, IA',
|
||||
1319476 => 'Dysart, IA',
|
||||
1319478 => 'Traer, IA',
|
||||
1319523 => 'Wapello, IA',
|
||||
1319524 => 'Keokuk, IA',
|
||||
1319622 => 'Amana, IA',
|
||||
1319624 => 'Solon, IA',
|
||||
1319626 => 'North Liberty, IA',
|
||||
1319627 => 'West Liberty, IA',
|
||||
1319642 => 'Marengo, IA',
|
||||
1319643 => 'West Branch, IA',
|
||||
1319646 => 'Wellman, IA',
|
||||
1319647 => 'Victor, IA',
|
||||
1319648 => 'Riverside, IA',
|
||||
1319653 => 'Washington, IA',
|
||||
1319656 => 'Kalona, IA',
|
||||
1319665 => 'North Liberty, IA',
|
||||
1319668 => 'Williamsburg, IA',
|
||||
1319728 => 'Columbus Jct, IA',
|
||||
1319743 => 'Cedar Rapids, IA',
|
||||
1319752 => 'Burlington, IA',
|
||||
1319753 => 'Burlington, IA',
|
||||
1319754 => 'Burlington, IA',
|
||||
1319758 => 'Burlington, IA',
|
||||
1319768 => 'West Burlington, IA',
|
||||
1319824 => 'Grundy Center, IA',
|
||||
1319827 => 'Jesup, IA',
|
||||
1319833 => 'Waterloo, IA',
|
||||
1319835 => 'Donnellson, IA',
|
||||
1319837 => 'West Point, IA',
|
||||
1319846 => 'Fairfax, IA',
|
||||
1319849 => 'Center Point, IA',
|
||||
1319882 => 'Tripoli, IA',
|
||||
1319885 => 'Shell Rock, IA',
|
||||
1319887 => 'Iowa City, IA',
|
||||
1319895 => 'Mount Vernon, IA',
|
||||
1319984 => 'Denver, IA',
|
||||
1319986 => 'Mount Pleasant, IA',
|
||||
1319988 => 'Hudson, IA',
|
||||
);
|
||||
86
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1320.php
vendored
Normal file
86
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1320.php
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1320 => 'Minnesota',
|
||||
1320202 => 'Saint Cloud, MN',
|
||||
1320203 => 'Saint Cloud, MN',
|
||||
1320214 => 'Willmar, MN',
|
||||
1320222 => 'Willmar, MN',
|
||||
1320229 => 'Saint Cloud, MN',
|
||||
1320231 => 'Willmar, MN',
|
||||
1320234 => 'Hutchinson, MN',
|
||||
1320235 => 'Willmar, MN',
|
||||
1320239 => 'Starbuck, MN',
|
||||
1320240 => 'Saint Cloud, MN',
|
||||
1320243 => 'Paynesville, MN',
|
||||
1320245 => 'Sandstone, MN',
|
||||
1320251 => 'Saint Cloud, MN',
|
||||
1320252 => 'Saint Cloud, MN',
|
||||
1320253 => 'Saint Cloud, MN',
|
||||
1320255 => 'Saint Cloud, MN',
|
||||
1320256 => 'Melrose, MN',
|
||||
1320258 => 'Saint Cloud, MN',
|
||||
1320259 => 'Saint Cloud, MN',
|
||||
1320269 => 'Montevideo, MN',
|
||||
1320274 => 'Annandale, MN',
|
||||
1320275 => 'Dassel, MN',
|
||||
1320286 => 'Cokato, MN',
|
||||
1320289 => 'Appleton, MN',
|
||||
1320352 => 'Sauk Centre, MN',
|
||||
1320354 => 'New London, MN',
|
||||
1320356 => 'Avon, MN',
|
||||
1320358 => 'Rush City, MN',
|
||||
1320363 => 'St. Joseph, MN',
|
||||
1320365 => 'Bird Island, MN',
|
||||
1320384 => 'Hinckley, MN',
|
||||
1320392 => 'Hancock, MN',
|
||||
1320393 => 'Rice, MN',
|
||||
1320396 => 'Braham, MN',
|
||||
1320398 => 'Kimball, MN',
|
||||
1320453 => 'Eden Valley, MN',
|
||||
1320468 => 'Pierz, MN',
|
||||
1320485 => 'Winsted, MN',
|
||||
1320523 => 'Olivia, MN',
|
||||
1320529 => 'Saint Cloud, MN',
|
||||
1320532 => 'Onamia, MN',
|
||||
1320543 => 'Howard Lake, MN',
|
||||
1320558 => 'Clearwater, MN',
|
||||
1320563 => 'Wheaton, MN',
|
||||
1320564 => 'Granite Falls, MN',
|
||||
1320587 => 'Hutchinson, MN',
|
||||
1320589 => 'Morris, MN',
|
||||
1320593 => 'Litchfield, MN',
|
||||
1320597 => 'Richmond, MN',
|
||||
1320598 => 'Madison, MN',
|
||||
1320629 => 'Pine City, MN',
|
||||
1320632 => 'Little Falls, MN',
|
||||
1320634 => 'Glenwood, MN',
|
||||
1320654 => 'Saint Cloud, MN',
|
||||
1320656 => 'Saint Cloud, MN',
|
||||
1320676 => 'Isle, MN',
|
||||
1320679 => 'Mora, MN',
|
||||
1320685 => 'Cold Spring, MN',
|
||||
1320693 => 'Litchfield, MN',
|
||||
1320732 => 'Long Prairie, MN',
|
||||
1320743 => 'Clear Lake, MN',
|
||||
1320759 => 'Alexandria, MN',
|
||||
1320762 => 'Alexandria, MN',
|
||||
1320763 => 'Alexandria, MN',
|
||||
1320769 => 'Dawson, MN',
|
||||
1320796 => 'Spicer, MN',
|
||||
1320839 => 'Ortonville, MN',
|
||||
1320843 => 'Benson, MN',
|
||||
1320845 => 'Albany, MN',
|
||||
1320847 => 'Clara City, MN',
|
||||
1320848 => 'Hector, MN',
|
||||
1320859 => 'Osakis, MN',
|
||||
1320864 => 'Glencoe, MN',
|
||||
1320963 => 'Maple Lake, MN',
|
||||
1320968 => 'Foley, MN',
|
||||
1320974 => 'Atwater, MN',
|
||||
1320983 => 'Milaca, MN',
|
||||
);
|
||||
50
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1321.php
vendored
Normal file
50
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1321.php
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1321 => 'Florida',
|
||||
1321235 => 'Orlando, FL',
|
||||
1321242 => 'Melbourne, FL',
|
||||
1321253 => 'Melbourne, FL',
|
||||
1321254 => 'Melbourne, FL',
|
||||
1321255 => 'Melbourne, FL',
|
||||
1321259 => 'Melbourne, FL',
|
||||
1321264 => 'Titusville, FL',
|
||||
1321267 => 'Titusville, FL',
|
||||
1321268 => 'Titusville, FL',
|
||||
1321269 => 'Titusville, FL',
|
||||
1321308 => 'Melbourne, FL',
|
||||
1321383 => 'Titusville, FL',
|
||||
1321385 => 'Titusville, FL',
|
||||
1321434 => 'Melbourne, FL',
|
||||
1321449 => 'Merritt Island, FL',
|
||||
1321452 => 'Merritt Island, FL',
|
||||
1321453 => 'Merritt Island, FL',
|
||||
1321454 => 'Merritt Island, FL',
|
||||
1321459 => 'Merritt Island, FL',
|
||||
1321473 => 'Melbourne, FL',
|
||||
1321610 => 'Melbourne, FL',
|
||||
1321622 => 'Melbourne, FL',
|
||||
1321631 => 'Cocoa, FL',
|
||||
1321632 => 'Cocoa, FL',
|
||||
1321636 => 'Cocoa, FL',
|
||||
1321638 => 'Cocoa, FL',
|
||||
1321639 => 'Cocoa, FL',
|
||||
1321674 => 'Melbourne, FL',
|
||||
1321725 => 'Melbourne, FL',
|
||||
1321733 => 'Melbourne, FL',
|
||||
1321751 => 'Melbourne, FL',
|
||||
1321752 => 'Melbourne, FL',
|
||||
1321757 => 'Melbourne, FL',
|
||||
1321783 => 'Cocoa Beach, FL',
|
||||
1321784 => 'Cocoa Beach, FL',
|
||||
1321799 => 'Cocoa Beach, FL',
|
||||
1321841 => 'Orlando, FL',
|
||||
1321843 => 'Orlando, FL',
|
||||
1321868 => 'Cocoa Beach, FL',
|
||||
1321939 => 'Kissimmee, FL',
|
||||
1321953 => 'Melbourne, FL',
|
||||
);
|
||||
160
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1323.php
vendored
Normal file
160
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1323.php
vendored
Normal file
@@ -0,0 +1,160 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1323 => 'California',
|
||||
1323221 => 'Los Angeles, CA',
|
||||
1323222 => 'Los Angeles, CA',
|
||||
1323223 => 'Los Angeles, CA',
|
||||
1323224 => 'Los Angeles, CA',
|
||||
1323225 => 'Los Angeles, CA',
|
||||
1323226 => 'Los Angeles, CA',
|
||||
1323227 => 'Los Angeles, CA',
|
||||
1323231 => 'Los Angeles, CA',
|
||||
1323232 => 'Los Angeles, CA',
|
||||
1323233 => 'Los Angeles, CA',
|
||||
1323234 => 'Los Angeles, CA',
|
||||
1323235 => 'Los Angeles, CA',
|
||||
1323238 => 'Los Angeles, CA',
|
||||
1323242 => 'Los Angeles, CA',
|
||||
1323249 => 'South Gate, CA',
|
||||
1323254 => 'Los Angeles, CA',
|
||||
1323255 => 'Los Angeles, CA',
|
||||
1323256 => 'Los Angeles, CA',
|
||||
1323257 => 'Los Angeles, CA',
|
||||
1323258 => 'Los Angeles, CA',
|
||||
1323259 => 'Los Angeles, CA',
|
||||
1323260 => 'Los Angeles, CA',
|
||||
1323261 => 'Los Angeles, CA',
|
||||
1323262 => 'Los Angeles, CA',
|
||||
1323263 => 'Los Angeles, CA',
|
||||
1323264 => 'Los Angeles, CA',
|
||||
1323265 => 'Los Angeles, CA',
|
||||
1323266 => 'Los Angeles, CA',
|
||||
1323267 => 'Los Angeles, CA',
|
||||
1323268 => 'Los Angeles, CA',
|
||||
1323269 => 'Los Angeles, CA',
|
||||
1323272 => 'Los Angeles, CA',
|
||||
1323290 => 'Los Angeles, CA',
|
||||
1323291 => 'Los Angeles, CA',
|
||||
1323292 => 'Los Angeles, CA',
|
||||
1323293 => 'Los Angeles, CA',
|
||||
1323294 => 'Los Angeles, CA',
|
||||
1323295 => 'Los Angeles, CA',
|
||||
1323296 => 'Los Angeles, CA',
|
||||
1323298 => 'Los Angeles, CA',
|
||||
1323299 => 'Los Angeles, CA',
|
||||
1323343 => 'Los Angeles, CA',
|
||||
1323344 => 'Los Angeles, CA',
|
||||
1323357 => 'South Gate, CA',
|
||||
1323361 => 'Los Angeles, CA',
|
||||
1323373 => 'Los Angeles, CA',
|
||||
1323409 => 'Los Angeles, CA',
|
||||
1323418 => 'Los Angeles, CA',
|
||||
1323441 => 'Los Angeles, CA',
|
||||
1323442 => 'Los Angeles, CA',
|
||||
1323460 => 'Los Angeles, CA',
|
||||
1323461 => 'Los Angeles, CA',
|
||||
1323462 => 'Los Angeles, CA',
|
||||
1323463 => 'Los Angeles, CA',
|
||||
1323464 => 'Los Angeles, CA',
|
||||
1323465 => 'Los Angeles, CA',
|
||||
1323466 => 'Los Angeles, CA',
|
||||
1323467 => 'Los Angeles, CA',
|
||||
1323469 => 'Los Angeles, CA',
|
||||
1323478 => 'Los Angeles, CA',
|
||||
1323512 => 'Los Angeles, CA',
|
||||
1323525 => 'Los Angeles, CA',
|
||||
1323526 => 'Los Angeles, CA',
|
||||
1323541 => 'Los Angeles, CA',
|
||||
1323549 => 'Los Angeles, CA',
|
||||
1323550 => 'Los Angeles, CA',
|
||||
1323556 => 'Beverly Hills, CA',
|
||||
1323563 => 'South Gate, CA',
|
||||
1323564 => 'South Gate, CA',
|
||||
1323566 => 'South Gate, CA',
|
||||
1323567 => 'South Gate, CA',
|
||||
1323569 => 'South Gate, CA',
|
||||
1323634 => 'Los Angeles, CA',
|
||||
1323644 => 'Los Angeles, CA',
|
||||
1323651 => 'Los Angeles, CA',
|
||||
1323653 => 'Los Angeles, CA',
|
||||
1323655 => 'Los Angeles, CA',
|
||||
1323656 => 'West Hollywood, CA',
|
||||
1323658 => 'Los Angeles, CA',
|
||||
1323660 => 'Los Angeles, CA',
|
||||
1323661 => 'Los Angeles, CA',
|
||||
1323662 => 'Los Angeles, CA',
|
||||
1323663 => 'Los Angeles, CA',
|
||||
1323664 => 'Los Angeles, CA',
|
||||
1323665 => 'Los Angeles, CA',
|
||||
1323666 => 'Los Angeles, CA',
|
||||
1323667 => 'Los Angeles, CA',
|
||||
1323668 => 'Los Angeles, CA',
|
||||
1323669 => 'Los Angeles, CA',
|
||||
1323692 => 'Los Angeles, CA',
|
||||
1323724 => 'Montebello, CA',
|
||||
1323728 => 'Montebello, CA',
|
||||
1323730 => 'Los Angeles, CA',
|
||||
1323731 => 'Los Angeles, CA',
|
||||
1323732 => 'Los Angeles, CA',
|
||||
1323733 => 'Los Angeles, CA',
|
||||
1323734 => 'Los Angeles, CA',
|
||||
1323735 => 'Los Angeles, CA',
|
||||
1323737 => 'Los Angeles, CA',
|
||||
1323750 => 'Los Angeles, CA',
|
||||
1323751 => 'Los Angeles, CA',
|
||||
1323752 => 'Los Angeles, CA',
|
||||
1323753 => 'Los Angeles, CA',
|
||||
1323754 => 'Los Angeles, CA',
|
||||
1323755 => 'Los Angeles, CA',
|
||||
1323756 => 'Los Angeles, CA',
|
||||
1323757 => 'Los Angeles, CA',
|
||||
1323758 => 'Los Angeles, CA',
|
||||
1323759 => 'Los Angeles, CA',
|
||||
1323766 => 'Los Angeles, CA',
|
||||
1323777 => 'Los Angeles, CA',
|
||||
1323778 => 'Los Angeles, CA',
|
||||
1323779 => 'Los Angeles, CA',
|
||||
1323780 => 'Los Angeles, CA',
|
||||
1323782 => 'Los Angeles, CA',
|
||||
1323783 => 'Los Angeles, CA',
|
||||
1323846 => 'Los Angeles, CA',
|
||||
1323850 => 'Los Angeles, CA',
|
||||
1323851 => 'Los Angeles, CA',
|
||||
1323852 => 'Los Angeles, CA',
|
||||
1323857 => 'Los Angeles, CA',
|
||||
1323860 => 'Los Angeles, CA',
|
||||
1323865 => 'Los Angeles, CA',
|
||||
1323871 => 'Los Angeles, CA',
|
||||
1323874 => 'Los Angeles, CA',
|
||||
1323876 => 'Los Angeles, CA',
|
||||
1323881 => 'Los Angeles, CA',
|
||||
1323906 => 'Los Angeles, CA',
|
||||
1323913 => 'Los Angeles, CA',
|
||||
1323930 => 'Los Angeles, CA',
|
||||
1323931 => 'Los Angeles, CA',
|
||||
1323932 => 'Los Angeles, CA',
|
||||
1323933 => 'Los Angeles, CA',
|
||||
1323934 => 'Los Angeles, CA',
|
||||
1323935 => 'Los Angeles, CA',
|
||||
1323936 => 'Los Angeles, CA',
|
||||
1323937 => 'Los Angeles, CA',
|
||||
1323938 => 'Los Angeles, CA',
|
||||
1323939 => 'Los Angeles, CA',
|
||||
1323944 => 'Los Angeles, CA',
|
||||
1323951 => 'Los Angeles, CA',
|
||||
1323953 => 'Los Angeles, CA',
|
||||
1323954 => 'Los Angeles, CA',
|
||||
1323957 => 'Los Angeles, CA',
|
||||
1323960 => 'Los Angeles, CA',
|
||||
1323962 => 'Los Angeles, CA',
|
||||
1323965 => 'Los Angeles, CA',
|
||||
1323969 => 'Los Angeles, CA',
|
||||
1323971 => 'Los Angeles, CA',
|
||||
1323980 => 'Los Angeles, CA',
|
||||
1323982 => 'Los Angeles, CA',
|
||||
);
|
||||
73
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1325.php
vendored
Normal file
73
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1325.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1325 => 'Texas',
|
||||
1325223 => 'San Angelo, TX',
|
||||
1325224 => 'San Angelo, TX',
|
||||
1325227 => 'San Angelo, TX',
|
||||
1325232 => 'Abilene, TX',
|
||||
1325235 => 'Sweetwater, TX',
|
||||
1325236 => 'Sweetwater, TX',
|
||||
1325247 => 'Llano, TX',
|
||||
1325347 => 'Mason, TX',
|
||||
1325356 => 'Comanche, TX',
|
||||
1325365 => 'Ballinger, TX',
|
||||
1325372 => 'San Saba, TX',
|
||||
1325387 => 'Sonora, TX',
|
||||
1325388 => 'Kingsland, TX',
|
||||
1325392 => 'Ozona, TX',
|
||||
1325396 => 'Menard, TX',
|
||||
1325437 => 'Abilene, TX',
|
||||
1325446 => 'Junction, TX',
|
||||
1325481 => 'San Angelo, TX',
|
||||
1325486 => 'San Angelo, TX',
|
||||
1325529 => 'Abilene, TX',
|
||||
1325572 => 'Buffalo Gap, TX',
|
||||
1325573 => 'Snyder, TX',
|
||||
1325574 => 'Snyder, TX',
|
||||
1325576 => 'Hamlin, TX',
|
||||
1325597 => 'Brady, TX',
|
||||
1325617 => 'San Angelo, TX',
|
||||
1325625 => 'Coleman, TX',
|
||||
1325641 => 'Brownwood, TX',
|
||||
1325643 => 'Brownwood, TX',
|
||||
1325646 => 'Brownwood, TX',
|
||||
1325648 => 'Goldthwaite, TX',
|
||||
1325651 => 'San Angelo, TX',
|
||||
1325653 => 'San Angelo, TX',
|
||||
1325655 => 'San Angelo, TX',
|
||||
1325657 => 'San Angelo, TX',
|
||||
1325658 => 'San Angelo, TX',
|
||||
1325659 => 'San Angelo, TX',
|
||||
1325670 => 'Abilene, TX',
|
||||
1325672 => 'Abilene, TX',
|
||||
1325673 => 'Abilene, TX',
|
||||
1325675 => 'Abilene, TX',
|
||||
1325676 => 'Abilene, TX',
|
||||
1325677 => 'Abilene, TX',
|
||||
1325690 => 'Abilene, TX',
|
||||
1325691 => 'Abilene, TX',
|
||||
1325692 => 'Abilene, TX',
|
||||
1325695 => 'Abilene, TX',
|
||||
1325698 => 'Abilene, TX',
|
||||
1325728 => 'Colorado City, TX',
|
||||
1325754 => 'Winters, TX',
|
||||
1325762 => 'Albany, TX',
|
||||
1325773 => 'Stamford, TX',
|
||||
1325793 => 'Abilene, TX',
|
||||
1325795 => 'Abilene, TX',
|
||||
1325823 => 'Anson, TX',
|
||||
1325853 => 'Eldorado, TX',
|
||||
1325854 => 'Baird, TX',
|
||||
1325884 => 'Big Lake, TX',
|
||||
1325893 => 'Clyde, TX',
|
||||
1325928 => 'Merkel, TX',
|
||||
1325942 => 'San Angelo, TX',
|
||||
1325944 => 'San Angelo, TX',
|
||||
1325947 => 'San Angelo, TX',
|
||||
1325949 => 'San Angelo, TX',
|
||||
);
|
||||
228
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1330.php
vendored
Normal file
228
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1330.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1330 => 'Ohio',
|
||||
1330220 => 'Brunswick, OH',
|
||||
1330225 => 'Brunswick, OH',
|
||||
1330239 => 'Medina, OH',
|
||||
1330244 => 'North Canton, OH',
|
||||
1330247 => 'Akron, OH',
|
||||
1330252 => 'Akron, OH',
|
||||
1330253 => 'Akron, OH',
|
||||
1330259 => 'Youngstown, OH',
|
||||
1330262 => 'Wooster, OH',
|
||||
1330263 => 'Wooster, OH',
|
||||
1330264 => 'Wooster, OH',
|
||||
1330270 => 'Youngstown, OH',
|
||||
1330273 => 'Brunswick, OH',
|
||||
1330274 => 'Mantua, OH',
|
||||
1330286 => 'Canfield, OH',
|
||||
1330287 => 'Wooster, OH',
|
||||
1330296 => 'Ravenna, OH',
|
||||
1330297 => 'Ravenna, OH',
|
||||
1330305 => 'North Canton, OH',
|
||||
1330308 => 'New Philadelphia, OH',
|
||||
1330325 => 'Rootstown, OH',
|
||||
1330331 => 'Wadsworth, OH',
|
||||
1330332 => 'Salem, OH',
|
||||
1330334 => 'Wadsworth, OH',
|
||||
1330335 => 'Wadsworth, OH',
|
||||
1330336 => 'Wadsworth, OH',
|
||||
1330337 => 'Salem, OH',
|
||||
1330339 => 'New Philadelphia, OH',
|
||||
1330342 => 'Hudson, OH',
|
||||
1330343 => 'Dover, OH',
|
||||
1330344 => 'Akron, OH',
|
||||
1330345 => 'Wooster, OH',
|
||||
1330363 => 'Canton, OH',
|
||||
1330364 => 'Dover, OH',
|
||||
1330369 => 'Warren, OH',
|
||||
1330372 => 'Warren, OH',
|
||||
1330373 => 'Warren, OH',
|
||||
1330374 => 'Akron, OH',
|
||||
1330375 => 'Akron, OH',
|
||||
1330376 => 'Akron, OH',
|
||||
1330379 => 'Akron, OH',
|
||||
1330384 => 'Akron, OH',
|
||||
1330385 => 'East Liverpool, OH',
|
||||
1330386 => 'East Liverpool, OH',
|
||||
1330392 => 'Warren, OH',
|
||||
1330393 => 'Warren, OH',
|
||||
1330394 => 'Warren, OH',
|
||||
1330395 => 'Warren, OH',
|
||||
1330399 => 'Warren, OH',
|
||||
1330405 => 'Twinsburg, OH',
|
||||
1330422 => 'Streetsboro, OH',
|
||||
1330424 => 'Lisbon, OH',
|
||||
1330425 => 'Twinsburg, OH',
|
||||
1330426 => 'East Palestine, OH',
|
||||
1330427 => 'Leetonia, OH',
|
||||
1330433 => 'North Canton, OH',
|
||||
1330434 => 'Akron, OH',
|
||||
1330435 => 'Creston, OH',
|
||||
1330438 => 'Canton, OH',
|
||||
1330448 => 'Brookfield, OH',
|
||||
1330451 => 'Canton, OH',
|
||||
1330452 => 'Canton, OH',
|
||||
1330453 => 'Canton, OH',
|
||||
1330454 => 'Canton, OH',
|
||||
1330455 => 'Canton, OH',
|
||||
1330456 => 'Canton, OH',
|
||||
1330467 => 'Northfield, OH',
|
||||
1330477 => 'Canton, OH',
|
||||
1330478 => 'Canton, OH',
|
||||
1330479 => 'Canton, OH',
|
||||
1330480 => 'Youngstown, OH',
|
||||
1330482 => 'Columbiana, OH',
|
||||
1330483 => 'Valley City, OH',
|
||||
1330484 => 'Canton, OH',
|
||||
1330487 => 'Twinsburg, OH',
|
||||
1330488 => 'Canton, OH',
|
||||
1330489 => 'Canton, OH',
|
||||
1330491 => 'Canton, OH',
|
||||
1330492 => 'Canton, OH',
|
||||
1330493 => 'Canton, OH',
|
||||
1330494 => 'North Canton, OH',
|
||||
1330497 => 'North Canton, OH',
|
||||
1330498 => 'North Canton, OH',
|
||||
1330499 => 'North Canton, OH',
|
||||
1330505 => 'Niles, OH',
|
||||
1330527 => 'Garrettsville, OH',
|
||||
1330532 => 'Wellsville, OH',
|
||||
1330533 => 'Canfield, OH',
|
||||
1330534 => 'Hubbard, OH',
|
||||
1330535 => 'Akron, OH',
|
||||
1330536 => 'Lowellville, OH',
|
||||
1330538 => 'North Jackson, OH',
|
||||
1330539 => 'Girard, OH',
|
||||
1330542 => 'New Middletown, OH',
|
||||
1330543 => 'Akron, OH',
|
||||
1330544 => 'Niles, OH',
|
||||
1330545 => 'Girard, OH',
|
||||
1330549 => 'North Lima, OH',
|
||||
1330562 => 'Aurora, OH',
|
||||
1330567 => 'Shreve, OH',
|
||||
1330602 => 'Dover, OH',
|
||||
1330609 => 'Warren, OH',
|
||||
1330626 => 'Streetsboro, OH',
|
||||
1330627 => 'Carrollton, OH',
|
||||
1330628 => 'Mogadore, OH',
|
||||
1330629 => 'Youngstown, OH',
|
||||
1330633 => 'Tallmadge, OH',
|
||||
1330637 => 'Cortland, OH',
|
||||
1330638 => 'Cortland, OH',
|
||||
1330644 => 'Akron, OH',
|
||||
1330645 => 'Akron, OH',
|
||||
1330650 => 'Hudson, OH',
|
||||
1330652 => 'Niles, OH',
|
||||
1330653 => 'Hudson, OH',
|
||||
1330655 => 'Hudson, OH',
|
||||
1330656 => 'Hudson, OH',
|
||||
1330658 => 'Doylestown, OH',
|
||||
1330659 => 'Richfield, OH',
|
||||
1330669 => 'Smithville, OH',
|
||||
1330670 => 'Akron, OH',
|
||||
1330673 => 'Kent, OH',
|
||||
1330674 => 'Millersburg, OH',
|
||||
1330676 => 'Kent, OH',
|
||||
1330677 => 'Kent, OH',
|
||||
1330678 => 'Kent, OH',
|
||||
1330682 => 'Orrville, OH',
|
||||
1330683 => 'Orrville, OH',
|
||||
1330684 => 'Orrville, OH',
|
||||
1330686 => 'Stow, OH',
|
||||
1330688 => 'Stow, OH',
|
||||
1330698 => 'Apple Creek, OH',
|
||||
1330699 => 'Uniontown, OH',
|
||||
1330702 => 'Canfield, OH',
|
||||
1330721 => 'Medina, OH',
|
||||
1330722 => 'Medina, OH',
|
||||
1330723 => 'Medina, OH',
|
||||
1330724 => 'Akron, OH',
|
||||
1330725 => 'Medina, OH',
|
||||
1330726 => 'Youngstown, OH',
|
||||
1330729 => 'Youngstown, OH',
|
||||
1330733 => 'Akron, OH',
|
||||
1330740 => 'Youngstown, OH',
|
||||
1330742 => 'Youngstown, OH',
|
||||
1330743 => 'Youngstown, OH',
|
||||
1330744 => 'Youngstown, OH',
|
||||
1330745 => 'Barberton, OH',
|
||||
1330746 => 'Youngstown, OH',
|
||||
1330747 => 'Youngstown, OH',
|
||||
1330752 => 'Akron, OH',
|
||||
1330755 => 'Struthers, OH',
|
||||
1330757 => 'Youngstown, OH',
|
||||
1330758 => 'Youngstown, OH',
|
||||
1330759 => 'Youngstown, OH',
|
||||
1330762 => 'Akron, OH',
|
||||
1330764 => 'Medina, OH',
|
||||
1330769 => 'Seville, OH',
|
||||
1330773 => 'Akron, OH',
|
||||
1330782 => 'Youngstown, OH',
|
||||
1330783 => 'Youngstown, OH',
|
||||
1330784 => 'Akron, OH',
|
||||
1330785 => 'Akron, OH',
|
||||
1330788 => 'Youngstown, OH',
|
||||
1330792 => 'Youngstown, OH',
|
||||
1330793 => 'Youngstown, OH',
|
||||
1330794 => 'Akron, OH',
|
||||
1330797 => 'Youngstown, OH',
|
||||
1330798 => 'Akron, OH',
|
||||
1330799 => 'Youngstown, OH',
|
||||
1330821 => 'Alliance, OH',
|
||||
1330823 => 'Alliance, OH',
|
||||
1330825 => 'Norton, OH',
|
||||
1330828 => 'Dalton, OH',
|
||||
1330829 => 'Alliance, OH',
|
||||
1330830 => 'Massillon, OH',
|
||||
1330832 => 'Massillon, OH',
|
||||
1330833 => 'Massillon, OH',
|
||||
1330834 => 'Massillon, OH',
|
||||
1330835 => 'Akron, OH',
|
||||
1330836 => 'Akron, OH',
|
||||
1330837 => 'Massillon, OH',
|
||||
1330841 => 'Warren, OH',
|
||||
1330847 => 'Warren, OH',
|
||||
1330852 => 'Sugarcreek, OH',
|
||||
1330854 => 'Canal Fulton, OH',
|
||||
1330856 => 'Warren, OH',
|
||||
1330863 => 'Malvern, OH',
|
||||
1330864 => 'Akron, OH',
|
||||
1330865 => 'Akron, OH',
|
||||
1330867 => 'Akron, OH',
|
||||
1330868 => 'Minerva, OH',
|
||||
1330869 => 'Akron, OH',
|
||||
1330872 => 'Newton Falls, OH',
|
||||
1330874 => 'Bolivar, OH',
|
||||
1330875 => 'Louisville, OH',
|
||||
1330876 => 'Kinsman, OH',
|
||||
1330877 => 'Hartville, OH',
|
||||
1330878 => 'Strasburg, OH',
|
||||
1330879 => 'Navarre, OH',
|
||||
1330884 => 'Youngstown, OH',
|
||||
1330889 => 'Bristolville, OH',
|
||||
1330897 => 'Baltic, OH',
|
||||
1330898 => 'Warren, OH',
|
||||
1330920 => 'Cuyahoga Falls, OH',
|
||||
1330922 => 'Cuyahoga Falls, OH',
|
||||
1330923 => 'Cuyahoga Falls, OH',
|
||||
1330925 => 'Rittman, OH',
|
||||
1330926 => 'Cuyahoga Falls, OH',
|
||||
1330928 => 'Cuyahoga Falls, OH',
|
||||
1330929 => 'Cuyahoga Falls, OH',
|
||||
1330938 => 'Sebring, OH',
|
||||
1330945 => 'Cuyahoga Falls, OH',
|
||||
1330948 => 'Lodi, OH',
|
||||
1330952 => 'Medina, OH',
|
||||
1330953 => 'Youngstown, OH',
|
||||
1330963 => 'Twinsburg, OH',
|
||||
1330965 => 'Youngstown, OH',
|
||||
1330966 => 'North Canton, OH',
|
||||
1330971 => 'Cuyahoga Falls, OH',
|
||||
1330995 => 'Aurora, OH',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1331.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1331.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1331 => 'Illinois',
|
||||
);
|
||||
133
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1334.php
vendored
Normal file
133
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1334.php
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1334 => 'Alabama',
|
||||
1334209 => 'Auburn, AL',
|
||||
1334213 => 'Montgomery, AL',
|
||||
1334215 => 'Montgomery, AL',
|
||||
1334222 => 'Andalusia, AL',
|
||||
1334239 => 'Montgomery, AL',
|
||||
1334240 => 'Montgomery, AL',
|
||||
1334241 => 'Montgomery, AL',
|
||||
1334242 => 'Montgomery, AL',
|
||||
1334244 => 'Montgomery, AL',
|
||||
1334260 => 'Montgomery, AL',
|
||||
1334262 => 'Montgomery, AL',
|
||||
1334263 => 'Montgomery, AL',
|
||||
1334264 => 'Montgomery, AL',
|
||||
1334265 => 'Montgomery, AL',
|
||||
1334269 => 'Montgomery, AL',
|
||||
1334270 => 'Montgomery, AL',
|
||||
1334271 => 'Montgomery, AL',
|
||||
1334272 => 'Montgomery, AL',
|
||||
1334273 => 'Montgomery, AL',
|
||||
1334277 => 'Montgomery, AL',
|
||||
1334279 => 'Montgomery, AL',
|
||||
1334280 => 'Montgomery, AL',
|
||||
1334281 => 'Montgomery, AL',
|
||||
1334283 => 'Tallassee, AL',
|
||||
1334284 => 'Montgomery, AL',
|
||||
1334285 => 'Millbrook, AL',
|
||||
1334286 => 'Montgomery, AL',
|
||||
1334287 => 'Demopolis, AL',
|
||||
1334288 => 'Montgomery, AL',
|
||||
1334289 => 'Demopolis, AL',
|
||||
1334290 => 'Millbrook, AL',
|
||||
1334291 => 'Phenix City, AL',
|
||||
1334293 => 'Montgomery, AL',
|
||||
1334295 => 'Linden, AL',
|
||||
1334297 => 'Phenix City, AL',
|
||||
1334298 => 'Phenix City, AL',
|
||||
1334308 => 'Enterprise, AL',
|
||||
1334335 => 'Luverne, AL',
|
||||
1334347 => 'Enterprise, AL',
|
||||
1334356 => 'Montgomery, AL',
|
||||
1334358 => 'Prattville, AL',
|
||||
1334361 => 'Prattville, AL',
|
||||
1334365 => 'Prattville, AL',
|
||||
1334366 => 'Maplesville, AL',
|
||||
1334371 => 'Greenville, AL',
|
||||
1334376 => 'Georgiana, AL',
|
||||
1334382 => 'Greenville, AL',
|
||||
1334386 => 'Montgomery, AL',
|
||||
1334393 => 'Enterprise, AL',
|
||||
1334395 => 'Montgomery, AL',
|
||||
1334396 => 'Montgomery, AL',
|
||||
1334409 => 'Montgomery, AL',
|
||||
1334427 => 'Andalusia, AL',
|
||||
1334445 => 'Ozark, AL',
|
||||
1334448 => 'Phenix City, AL',
|
||||
1334480 => 'Phenix City, AL',
|
||||
1334491 => 'Prattville, AL',
|
||||
1334493 => 'Opp, AL',
|
||||
1334501 => 'Auburn, AL',
|
||||
1334502 => 'Auburn, AL',
|
||||
1334514 => 'Wetumpka, AL',
|
||||
1334541 => 'Eclectic, AL',
|
||||
1334548 => 'Hayneville, AL',
|
||||
1334566 => 'Troy, AL',
|
||||
1334567 => 'Wetumpka, AL',
|
||||
1334576 => 'Lanett, AL',
|
||||
1334585 => 'Abbeville, AL',
|
||||
1334588 => 'Hartford, AL',
|
||||
1334593 => 'Montgomery, AL',
|
||||
1334598 => 'Daleville, AL',
|
||||
1334613 => 'Montgomery, AL',
|
||||
1334624 => 'Greensboro, AL',
|
||||
1334628 => 'Uniontown, AL',
|
||||
1334636 => 'Thomasville, AL',
|
||||
1334644 => 'Lanett, AL',
|
||||
1334649 => 'Montgomery, AL',
|
||||
1334670 => 'Troy, AL',
|
||||
1334671 => 'Dothan, AL',
|
||||
1334673 => 'Dothan, AL',
|
||||
1334677 => 'Dothan, AL',
|
||||
1334678 => 'Dothan, AL',
|
||||
1334682 => 'Camden, AL',
|
||||
1334683 => 'Marion, AL',
|
||||
1334684 => 'Geneva, AL',
|
||||
1334687 => 'Eufaula, AL',
|
||||
1334692 => 'Newton, AL',
|
||||
1334693 => 'Headland, AL',
|
||||
1334699 => 'Dothan, AL',
|
||||
1334702 => 'Dothan, AL',
|
||||
1334705 => 'Opelika, AL',
|
||||
1334712 => 'Dothan, AL',
|
||||
1334727 => 'Tuskegee, AL',
|
||||
1334735 => 'Brundidge, AL',
|
||||
1334737 => 'Opelika, AL',
|
||||
1334738 => 'Union Springs, AL',
|
||||
1334741 => 'Opelika, AL',
|
||||
1334742 => 'Opelika, AL',
|
||||
1334745 => 'Opelika, AL',
|
||||
1334749 => 'Opelika, AL',
|
||||
1334756 => 'Valley, AL',
|
||||
1334768 => 'Valley, AL',
|
||||
1334774 => 'Ozark, AL',
|
||||
1334775 => 'Clayton, AL',
|
||||
1334792 => 'Dothan, AL',
|
||||
1334793 => 'Dothan, AL',
|
||||
1334794 => 'Dothan, AL',
|
||||
1334819 => 'Montgomery, AL',
|
||||
1334821 => 'Auburn, AL',
|
||||
1334826 => 'Auburn, AL',
|
||||
1334832 => 'Montgomery, AL',
|
||||
1334834 => 'Montgomery, AL',
|
||||
1334844 => 'Auburn, AL',
|
||||
1334858 => 'Florala, AL',
|
||||
1334863 => 'Roanoke, AL',
|
||||
1334864 => 'La Fayette, AL',
|
||||
1334872 => 'Selma, AL',
|
||||
1334874 => 'Selma, AL',
|
||||
1334875 => 'Selma, AL',
|
||||
1334886 => 'Slocomb, AL',
|
||||
1334887 => 'Auburn, AL',
|
||||
1334894 => 'New Brockton, AL',
|
||||
1334897 => 'Elba, AL',
|
||||
1334898 => 'Samson, AL',
|
||||
1334899 => 'Ashford, AL',
|
||||
);
|
||||
206
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1336.php
vendored
Normal file
206
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1336.php
vendored
Normal file
@@ -0,0 +1,206 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1336 => 'North Carolina',
|
||||
1336218 => 'Greensboro, NC',
|
||||
1336222 => 'Burlington, NC',
|
||||
1336224 => 'Lexington, NC',
|
||||
1336226 => 'Burlington, NC',
|
||||
1336227 => 'Burlington, NC',
|
||||
1336228 => 'Burlington, NC',
|
||||
1336229 => 'Burlington, NC',
|
||||
1336230 => 'Greensboro, NC',
|
||||
1336235 => 'Greensboro, NC',
|
||||
1336236 => 'Lexington, NC',
|
||||
1336242 => 'Lexington, NC',
|
||||
1336243 => 'Lexington, NC',
|
||||
1336245 => 'Winston-Salem, NC',
|
||||
1336246 => 'West Jefferson, NC',
|
||||
1336248 => 'Lexington, NC',
|
||||
1336249 => 'Lexington, NC',
|
||||
1336251 => 'Winston-Salem, NC',
|
||||
1336270 => 'Burlington, NC',
|
||||
1336271 => 'Greensboro, NC',
|
||||
1336272 => 'Greensboro, NC',
|
||||
1336273 => 'Greensboro, NC',
|
||||
1336274 => 'Greensboro, NC',
|
||||
1336275 => 'Greensboro, NC',
|
||||
1336277 => 'Winston-Salem, NC',
|
||||
1336282 => 'Greensboro, NC',
|
||||
1336284 => 'Mocksville, NC',
|
||||
1336285 => 'Greensboro, NC',
|
||||
1336286 => 'Greensboro, NC',
|
||||
1336288 => 'Greensboro, NC',
|
||||
1336292 => 'Greensboro, NC',
|
||||
1336293 => 'Winston-Salem, NC',
|
||||
1336294 => 'Greensboro, NC',
|
||||
1336297 => 'Greensboro, NC',
|
||||
1336299 => 'Greensboro, NC',
|
||||
1336310 => 'Kernersville, NC',
|
||||
1336315 => 'Greensboro, NC',
|
||||
1336316 => 'Greensboro, NC',
|
||||
1336318 => 'Asheboro, NC',
|
||||
1336322 => 'Roxboro, NC',
|
||||
1336333 => 'Greensboro, NC',
|
||||
1336334 => 'Greensboro, NC',
|
||||
1336342 => 'Reidsville, NC',
|
||||
1336349 => 'Reidsville, NC',
|
||||
1336357 => 'Lexington, NC',
|
||||
1336358 => 'Greensboro, NC',
|
||||
1336368 => 'Pilot Mountain, NC',
|
||||
1336370 => 'Greensboro, NC',
|
||||
1336372 => 'Sparta, NC',
|
||||
1336373 => 'Greensboro, NC',
|
||||
1336375 => 'Greensboro, NC',
|
||||
1336377 => 'Winston-Salem, NC',
|
||||
1336378 => 'Greensboro, NC',
|
||||
1336379 => 'Greensboro, NC',
|
||||
1336384 => 'Lansing, NC',
|
||||
1336386 => 'Dobson, NC',
|
||||
1336387 => 'Greensboro, NC',
|
||||
1336389 => 'Greensboro, NC',
|
||||
1336427 => 'Madison, NC',
|
||||
1336454 => 'Jamestown, NC',
|
||||
1336463 => 'Yadkinville, NC',
|
||||
1336468 => 'Hamptonville, NC',
|
||||
1336472 => 'Thomasville, NC',
|
||||
1336474 => 'Thomasville, NC',
|
||||
1336475 => 'Thomasville, NC',
|
||||
1336476 => 'Thomasville, NC',
|
||||
1336492 => 'Mocksville, NC',
|
||||
1336495 => 'Randleman, NC',
|
||||
1336498 => 'Randleman, NC',
|
||||
1336499 => 'Winston-Salem, NC',
|
||||
1336510 => 'Greensboro, NC',
|
||||
1336526 => 'Elkin, NC',
|
||||
1336538 => 'Burlington, NC',
|
||||
1336540 => 'Greensboro, NC',
|
||||
1336545 => 'Greensboro, NC',
|
||||
1336547 => 'Greensboro, NC',
|
||||
1336548 => 'Madison, NC',
|
||||
1336570 => 'Burlington, NC',
|
||||
1336573 => 'Stoneville, NC',
|
||||
1336574 => 'Greensboro, NC',
|
||||
1336584 => 'Burlington, NC',
|
||||
1336585 => 'Burlington, NC',
|
||||
1336586 => 'Burlington, NC',
|
||||
1336591 => 'Walnut Cove, NC',
|
||||
1336593 => 'Danbury, NC',
|
||||
1336595 => 'Walkertown, NC',
|
||||
1336597 => 'Roxboro, NC',
|
||||
1336599 => 'Roxboro, NC',
|
||||
1336605 => 'Greensboro, NC',
|
||||
1336617 => 'Greensboro, NC',
|
||||
1336621 => 'Greensboro, NC',
|
||||
1336622 => 'Liberty, NC',
|
||||
1336623 => 'Eden, NC',
|
||||
1336625 => 'Asheboro, NC',
|
||||
1336626 => 'Asheboro, NC',
|
||||
1336627 => 'Eden, NC',
|
||||
1336629 => 'Asheboro, NC',
|
||||
1336631 => 'Winston-Salem, NC',
|
||||
1336632 => 'Greensboro, NC',
|
||||
1336633 => 'Asheboro, NC',
|
||||
1336634 => 'Reidsville, NC',
|
||||
1336635 => 'Eden, NC',
|
||||
1336641 => 'Greensboro, NC',
|
||||
1336651 => 'North Wilkesboro, NC',
|
||||
1336656 => 'Browns Summit, NC',
|
||||
1336659 => 'Winston-Salem, NC',
|
||||
1336661 => 'Winston-Salem, NC',
|
||||
1336665 => 'Greensboro, NC',
|
||||
1336667 => 'North Wilkesboro, NC',
|
||||
1336668 => 'Greensboro, NC',
|
||||
1336672 => 'Asheboro, NC',
|
||||
1336676 => 'Greensboro, NC',
|
||||
1336677 => 'Yadkinville, NC',
|
||||
1336679 => 'Yadkinville, NC',
|
||||
1336691 => 'Greensboro, NC',
|
||||
1336694 => 'Yanceyville, NC',
|
||||
1336696 => 'North Wilkesboro, NC',
|
||||
1336699 => 'East Bend, NC',
|
||||
1336703 => 'Winston-Salem, NC',
|
||||
1336712 => 'Clemmons, NC',
|
||||
1336713 => 'Winston-Salem, NC',
|
||||
1336716 => 'Winston-Salem, NC',
|
||||
1336718 => 'Winston-Salem, NC',
|
||||
1336719 => 'Mount Airy, NC',
|
||||
1336721 => 'Winston-Salem, NC',
|
||||
1336722 => 'Winston-Salem, NC',
|
||||
1336723 => 'Winston-Salem, NC',
|
||||
1336724 => 'Winston-Salem, NC',
|
||||
1336725 => 'Winston-Salem, NC',
|
||||
1336727 => 'Winston-Salem, NC',
|
||||
1336731 => 'Lexington, NC',
|
||||
1336744 => 'Winston-Salem, NC',
|
||||
1336748 => 'Winston-Salem, NC',
|
||||
1336751 => 'Mocksville, NC',
|
||||
1336753 => 'Mocksville, NC',
|
||||
1336759 => 'Winston-Salem, NC',
|
||||
1336760 => 'Winston-Salem, NC',
|
||||
1336761 => 'Winston-Salem, NC',
|
||||
1336764 => 'Winston-Salem, NC',
|
||||
1336765 => 'Winston-Salem, NC',
|
||||
1336766 => 'Clemmons, NC',
|
||||
1336767 => 'Winston-Salem, NC',
|
||||
1336768 => 'Winston-Salem, NC',
|
||||
1336769 => 'Winston-Salem, NC',
|
||||
1336771 => 'Winston-Salem, NC',
|
||||
1336774 => 'Winston-Salem, NC',
|
||||
1336777 => 'Winston-Salem, NC',
|
||||
1336778 => 'Clemmons, NC',
|
||||
1336784 => 'Winston-Salem, NC',
|
||||
1336785 => 'Winston-Salem, NC',
|
||||
1336786 => 'Mount Airy, NC',
|
||||
1336787 => 'Lexington, NC',
|
||||
1336788 => 'Winston-Salem, NC',
|
||||
1336789 => 'Mount Airy, NC',
|
||||
1336790 => 'Greensboro, NC',
|
||||
1336793 => 'Winston-Salem, NC',
|
||||
1336794 => 'Winston-Salem, NC',
|
||||
1336798 => 'Lexington, NC',
|
||||
1336802 => 'High Point, NC',
|
||||
1336812 => 'High Point, NC',
|
||||
1336824 => 'Ramseur, NC',
|
||||
1336832 => 'Greensboro, NC',
|
||||
1336834 => 'Greensboro, NC',
|
||||
1336835 => 'Elkin, NC',
|
||||
1336838 => 'North Wilkesboro, NC',
|
||||
1336841 => 'High Point, NC',
|
||||
1336846 => 'West Jefferson, NC',
|
||||
1336851 => 'Greensboro, NC',
|
||||
1336852 => 'Greensboro, NC',
|
||||
1336854 => 'Greensboro, NC',
|
||||
1336855 => 'Greensboro, NC',
|
||||
1336856 => 'Greensboro, NC',
|
||||
1336859 => 'Denton, NC',
|
||||
1336869 => 'High Point, NC',
|
||||
1336873 => 'Seagrove, NC',
|
||||
1336878 => 'High Point, NC',
|
||||
1336882 => 'High Point, NC',
|
||||
1336883 => 'High Point, NC',
|
||||
1336884 => 'High Point, NC',
|
||||
1336885 => 'High Point, NC',
|
||||
1336886 => 'High Point, NC',
|
||||
1336887 => 'High Point, NC',
|
||||
1336889 => 'High Point, NC',
|
||||
1336896 => 'Winston-Salem, NC',
|
||||
1336903 => 'North Wilkesboro, NC',
|
||||
1336922 => 'Winston-Salem, NC',
|
||||
1336924 => 'Winston-Salem, NC',
|
||||
1336940 => 'Advance, NC',
|
||||
1336945 => 'Lewisville, NC',
|
||||
1336956 => 'Lexington, NC',
|
||||
1336969 => 'Rural Hall, NC',
|
||||
1336973 => 'Wilkesboro, NC',
|
||||
1336983 => 'King, NC',
|
||||
1336985 => 'King, NC',
|
||||
1336992 => 'Kernersville, NC',
|
||||
1336993 => 'Kernersville, NC',
|
||||
1336996 => 'Kernersville, NC',
|
||||
1336998 => 'Advance, NC',
|
||||
);
|
||||
118
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1337.php
vendored
Normal file
118
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1337.php
vendored
Normal file
@@ -0,0 +1,118 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1337 => 'Louisiana',
|
||||
1337205 => 'Lafayette, LA',
|
||||
1337216 => 'Lafayette, LA',
|
||||
1337217 => 'Lake Charles, LA',
|
||||
1337229 => 'Loreauville, LA',
|
||||
1337232 => 'Lafayette, LA',
|
||||
1337233 => 'Lafayette, LA',
|
||||
1337234 => 'Lafayette, LA',
|
||||
1337235 => 'Lafayette, LA',
|
||||
1337236 => 'Lafayette, LA',
|
||||
1337237 => 'Lafayette, LA',
|
||||
1337238 => 'Leesville, LA',
|
||||
1337239 => 'Leesville, LA',
|
||||
1337261 => 'Lafayette, LA',
|
||||
1337262 => 'Lafayette, LA',
|
||||
1337264 => 'Lafayette, LA',
|
||||
1337266 => 'Lafayette, LA',
|
||||
1337267 => 'Lafayette, LA',
|
||||
1337269 => 'Lafayette, LA',
|
||||
1337276 => 'Jeanerette, LA',
|
||||
1337289 => 'Lafayette, LA',
|
||||
1337291 => 'Lafayette, LA',
|
||||
1337310 => 'Lake Charles, LA',
|
||||
1337332 => 'Breaux Bridge, LA',
|
||||
1337334 => 'Rayne, LA',
|
||||
1337363 => 'Ville Platte, LA',
|
||||
1337364 => 'New Iberia, LA',
|
||||
1337365 => 'New Iberia, LA',
|
||||
1337367 => 'New Iberia, LA',
|
||||
1337369 => 'New Iberia, LA',
|
||||
1337392 => 'Leesville, LA',
|
||||
1337394 => 'Saint Martinville, LA',
|
||||
1337406 => 'Lafayette, LA',
|
||||
1337407 => 'Opelousas, LA',
|
||||
1337433 => 'Lake Charles, LA',
|
||||
1337436 => 'Lake Charles, LA',
|
||||
1337437 => 'Lake Charles, LA',
|
||||
1337439 => 'Lake Charles, LA',
|
||||
1337456 => 'Lafayette, LA',
|
||||
1337457 => 'Eunice, LA',
|
||||
1337462 => 'DeRidder, LA',
|
||||
1337463 => 'DeRidder, LA',
|
||||
1337468 => 'Mamou, LA',
|
||||
1337474 => 'Lake Charles, LA',
|
||||
1337475 => 'Lake Charles, LA',
|
||||
1337477 => 'Lake Charles, LA',
|
||||
1337478 => 'Lake Charles, LA',
|
||||
1337479 => 'Lake Charles, LA',
|
||||
1337480 => 'Lake Charles, LA',
|
||||
1337491 => 'Lake Charles, LA',
|
||||
1337494 => 'Lake Charles, LA',
|
||||
1337504 => 'Lafayette, LA',
|
||||
1337521 => 'Lafayette, LA',
|
||||
1337527 => 'Sulphur, LA',
|
||||
1337528 => 'Sulphur, LA',
|
||||
1337531 => 'Fort Polk, LA',
|
||||
1337534 => 'Lafayette, LA',
|
||||
1337536 => 'Gueydan, LA',
|
||||
1337537 => 'Leesville, LA',
|
||||
1337546 => 'Eunice, LA',
|
||||
1337560 => 'New Iberia, LA',
|
||||
1337562 => 'Lake Charles, LA',
|
||||
1337564 => 'Lake Charles, LA',
|
||||
1337582 => 'Iowa, LA',
|
||||
1337583 => 'Sulphur, LA',
|
||||
1337585 => 'Port Barre, LA',
|
||||
1337589 => 'Vinton, LA',
|
||||
1337593 => 'Lafayette, LA',
|
||||
1337625 => 'Sulphur, LA',
|
||||
1337626 => 'Sulphur, LA',
|
||||
1337639 => 'Oberlin, LA',
|
||||
1337643 => 'Kaplan, LA',
|
||||
1337662 => 'Sunset, LA',
|
||||
1337684 => 'Church Point, LA',
|
||||
1337685 => 'Delcambre, LA',
|
||||
1337706 => 'Lafayette, LA',
|
||||
1337721 => 'Lake Charles, LA',
|
||||
1337725 => 'Ragley, LA',
|
||||
1337734 => 'Welsh, LA',
|
||||
1337738 => 'Kinder, LA',
|
||||
1337754 => 'Arnaudville, LA',
|
||||
1337769 => 'Lafayette, LA',
|
||||
1337774 => 'Lake Arthur, LA',
|
||||
1337775 => 'Cameron, LA',
|
||||
1337783 => 'Crowley, LA',
|
||||
1337786 => 'DeQuincy, LA',
|
||||
1337788 => 'Crowley, LA',
|
||||
1337824 => 'Jennings, LA',
|
||||
1337828 => 'Franklin, LA',
|
||||
1337837 => 'Broussard, LA',
|
||||
1337839 => 'Broussard, LA',
|
||||
1337855 => 'Lake Charles, LA',
|
||||
1337856 => 'Youngsville, LA',
|
||||
1337857 => 'Youngsville, LA',
|
||||
1337873 => 'Duson, LA',
|
||||
1337882 => 'Westlake, LA',
|
||||
1337886 => 'Carencro, LA',
|
||||
1337893 => 'Abbeville, LA',
|
||||
1337896 => 'Carencro, LA',
|
||||
1337898 => 'Abbeville, LA',
|
||||
1337923 => 'Baldwin, LA',
|
||||
1337937 => 'Erath, LA',
|
||||
1337942 => 'Opelousas, LA',
|
||||
1337948 => 'Opelousas, LA',
|
||||
1337981 => 'Lafayette, LA',
|
||||
1337984 => 'Lafayette, LA',
|
||||
1337988 => 'Lafayette, LA',
|
||||
1337989 => 'Lafayette, LA',
|
||||
1337991 => 'Lafayette, LA',
|
||||
1337993 => 'Lafayette, LA',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1339.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1339.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1339 => 'Massachusetts',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1345.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1345.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1345949 => 'George Town',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1346.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1346.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1346 => 'Texas',
|
||||
);
|
||||
41
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1347.php
vendored
Normal file
41
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1347.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1347 => 'New York',
|
||||
1347221 => 'Brooklyn, NY',
|
||||
1347240 => 'Brooklyn, NY',
|
||||
1347270 => 'Bronx, NY',
|
||||
1347271 => 'Bronx, NY',
|
||||
1347281 => 'Bronx, NY',
|
||||
1347295 => 'Brooklyn, NY',
|
||||
1347346 => 'Bronx, NY',
|
||||
1347350 => 'Brooklyn, NY',
|
||||
1347365 => 'Brooklyn, NY',
|
||||
1347406 => 'Brooklyn, NY',
|
||||
1347425 => 'Brooklyn, NY',
|
||||
1347442 => 'Brooklyn, NY',
|
||||
1347462 => 'Brooklyn, NY',
|
||||
1347492 => 'Brooklyn, NY',
|
||||
1347529 => 'Brooklyn, NY',
|
||||
1347533 => 'Brooklyn, NY',
|
||||
1347577 => 'Bronx, NY',
|
||||
1347587 => 'Brooklyn, NY',
|
||||
1347590 => 'Bronx, NY',
|
||||
1347627 => 'Brooklyn, NY',
|
||||
1347663 => 'Brooklyn, NY',
|
||||
1347689 => 'Brooklyn, NY',
|
||||
1347702 => 'Brooklyn, NY',
|
||||
1347715 => 'Brooklyn, NY',
|
||||
1347763 => 'Brooklyn, NY',
|
||||
1347770 => 'Brooklyn, NY',
|
||||
1347787 => 'Brooklyn, NY',
|
||||
1347789 => 'Brooklyn, NY',
|
||||
1347810 => 'Bronx, NY',
|
||||
1347843 => 'Bronx, NY',
|
||||
1347862 => 'Bronx, NY',
|
||||
1347915 => 'Brooklyn, NY',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1351.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1351.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1351 => 'Massachusetts',
|
||||
);
|
||||
160
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1352.php
vendored
Normal file
160
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1352.php
vendored
Normal file
@@ -0,0 +1,160 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1352 => 'Florida',
|
||||
1352205 => 'Lady Lake, FL',
|
||||
1352236 => 'Ocala, FL',
|
||||
1352237 => 'Ocala, FL',
|
||||
1352241 => 'Clermont, FL',
|
||||
1352242 => 'Clermont, FL',
|
||||
1352243 => 'Clermont, FL',
|
||||
1352245 => 'Belleview, FL',
|
||||
1352253 => 'Tavares, FL',
|
||||
1352259 => 'Lady Lake, FL',
|
||||
1352264 => 'Gainesville, FL',
|
||||
1352265 => 'Gainesville, FL',
|
||||
1352266 => 'Ocala, FL',
|
||||
1352271 => 'Gainesville, FL',
|
||||
1352273 => 'Gainesville, FL',
|
||||
1352288 => 'Ocklawaha, FL',
|
||||
1352291 => 'Ocala, FL',
|
||||
1352304 => 'Ocala, FL',
|
||||
1352314 => 'Leesburg, FL',
|
||||
1352315 => 'Leesburg, FL',
|
||||
1352323 => 'Leesburg, FL',
|
||||
1352324 => 'Howey In Hills, FL',
|
||||
1352326 => 'Leesburg, FL',
|
||||
1352330 => 'Wildwood, FL',
|
||||
1352331 => 'Gainesville, FL',
|
||||
1352332 => 'Gainesville, FL',
|
||||
1352333 => 'Gainesville, FL',
|
||||
1352334 => 'Gainesville, FL',
|
||||
1352335 => 'Gainesville, FL',
|
||||
1352336 => 'Gainesville, FL',
|
||||
1352337 => 'Gainesville, FL',
|
||||
1352338 => 'Gainesville, FL',
|
||||
1352341 => 'Inverness, FL',
|
||||
1352343 => 'Tavares, FL',
|
||||
1352344 => 'Inverness, FL',
|
||||
1352351 => 'Ocala, FL',
|
||||
1352357 => 'Eustis, FL',
|
||||
1352360 => 'Leesburg, FL',
|
||||
1352365 => 'Leesburg, FL',
|
||||
1352367 => 'Gainesville, FL',
|
||||
1352368 => 'Ocala, FL',
|
||||
1352369 => 'Ocala, FL',
|
||||
1352371 => 'Gainesville, FL',
|
||||
1352372 => 'Gainesville, FL',
|
||||
1352373 => 'Gainesville, FL',
|
||||
1352374 => 'Gainesville, FL',
|
||||
1352375 => 'Gainesville, FL',
|
||||
1352376 => 'Gainesville, FL',
|
||||
1352377 => 'Gainesville, FL',
|
||||
1352378 => 'Gainesville, FL',
|
||||
1352379 => 'Gainesville, FL',
|
||||
1352382 => 'Homosassa, FL',
|
||||
1352383 => 'Mount Dora, FL',
|
||||
1352385 => 'Mount Dora, FL',
|
||||
1352390 => 'Ocala, FL',
|
||||
1352392 => 'Gainesville, FL',
|
||||
1352394 => 'Clermont, FL',
|
||||
1352401 => 'Ocala, FL',
|
||||
1352404 => 'Clermont, FL',
|
||||
1352419 => 'Inverness, FL',
|
||||
1352427 => 'Ocala, FL',
|
||||
1352429 => 'Groveland, FL',
|
||||
1352432 => 'Clermont, FL',
|
||||
1352433 => 'Ocala, FL',
|
||||
1352435 => 'Leesburg, FL',
|
||||
1352447 => 'Inglis, FL',
|
||||
1352463 => 'Trenton, FL',
|
||||
1352465 => 'Dunnellon, FL',
|
||||
1352466 => 'Micanopy, FL',
|
||||
1352468 => 'Waldo, FL',
|
||||
1352472 => 'Newberry, FL',
|
||||
1352473 => 'Keystone Heights, FL',
|
||||
1352475 => 'Melrose, FL',
|
||||
1352481 => 'Hawthorne, FL',
|
||||
1352483 => 'Eustis, FL',
|
||||
1352486 => 'Bronson, FL',
|
||||
1352489 => 'Dunnellon, FL',
|
||||
1352490 => 'Chiefland, FL',
|
||||
1352493 => 'Chiefland, FL',
|
||||
1352495 => 'Archer, FL',
|
||||
1352498 => 'Cross City, FL',
|
||||
1352503 => 'Homosassa, FL',
|
||||
1352505 => 'Gainesville, FL',
|
||||
1352508 => 'Tavares, FL',
|
||||
1352518 => 'Dade City, FL',
|
||||
1352521 => 'Dade City, FL',
|
||||
1352523 => 'Dade City, FL',
|
||||
1352528 => 'Williston, FL',
|
||||
1352536 => 'Clermont, FL',
|
||||
1352540 => 'Brooksville, FL',
|
||||
1352542 => 'Old Town, FL',
|
||||
1352543 => 'Cedar Key, FL',
|
||||
1352544 => 'Brooksville, FL',
|
||||
1352556 => 'Spring Hill, FL',
|
||||
1352563 => 'Crystal River, FL',
|
||||
1352564 => 'Crystal River, FL',
|
||||
1352567 => 'Dade City, FL',
|
||||
1352568 => 'Bushnell, FL',
|
||||
1352569 => 'Bushnell, FL',
|
||||
1352583 => 'Dade City, FL',
|
||||
1352588 => 'San Antonio, FL',
|
||||
1352589 => 'Eustis, FL',
|
||||
1352593 => 'Brooksville, FL',
|
||||
1352595 => 'Citra, FL',
|
||||
1352610 => 'Spring Hill, FL',
|
||||
1352620 => 'Ocala, FL',
|
||||
1352621 => 'Homosassa, FL',
|
||||
1352622 => 'Ocala, FL',
|
||||
1352624 => 'Ocala, FL',
|
||||
1352625 => 'Silver Springs, FL',
|
||||
1352628 => 'Homosassa, FL',
|
||||
1352629 => 'Ocala, FL',
|
||||
1352637 => 'Inverness, FL',
|
||||
1352666 => 'Spring Hill, FL',
|
||||
1352669 => 'Umatilla, FL',
|
||||
1352671 => 'Ocala, FL',
|
||||
1352672 => 'Gainesville, FL',
|
||||
1352683 => 'Spring Hill, FL',
|
||||
1352684 => 'Spring Hill, FL',
|
||||
1352686 => 'Spring Hill, FL',
|
||||
1352687 => 'Ocala, FL',
|
||||
1352688 => 'Spring Hill, FL',
|
||||
1352690 => 'Ocala, FL',
|
||||
1352694 => 'Ocala, FL',
|
||||
1352726 => 'Inverness, FL',
|
||||
1352728 => 'Leesburg, FL',
|
||||
1352732 => 'Ocala, FL',
|
||||
1352735 => 'Mount Dora, FL',
|
||||
1352742 => 'Tavares, FL',
|
||||
1352748 => 'Wildwood, FL',
|
||||
1352750 => 'Lady Lake, FL',
|
||||
1352751 => 'Lady Lake, FL',
|
||||
1352753 => 'Lady Lake, FL',
|
||||
1352754 => 'Brooksville, FL',
|
||||
1352787 => 'Leesburg, FL',
|
||||
1352789 => 'Ocala, FL',
|
||||
1352793 => 'Bushnell, FL',
|
||||
1352794 => 'Crystal River, FL',
|
||||
1352795 => 'Crystal River, FL',
|
||||
1352796 => 'Brooksville, FL',
|
||||
1352797 => 'Brooksville, FL',
|
||||
1352799 => 'Brooksville, FL',
|
||||
1352821 => 'Weirsdale, FL',
|
||||
1352835 => 'Spring Hill, FL',
|
||||
1352840 => 'Ocala, FL',
|
||||
1352854 => 'Ocala, FL',
|
||||
1352860 => 'Inverness, FL',
|
||||
1352861 => 'Ocala, FL',
|
||||
1352867 => 'Ocala, FL',
|
||||
1352872 => 'Gainesville, FL',
|
||||
1352873 => 'Ocala, FL',
|
||||
1352955 => 'Gainesville, FL',
|
||||
);
|
||||
273
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1360.php
vendored
Normal file
273
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1360.php
vendored
Normal file
@@ -0,0 +1,273 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1360 => 'Washington',
|
||||
1360210 => 'Camas, WA',
|
||||
1360213 => 'Vancouver, WA',
|
||||
1360221 => 'Langley, WA',
|
||||
1360225 => 'Woodland, WA',
|
||||
1360236 => 'Olympia, WA',
|
||||
1360240 => 'Oak Harbor, WA',
|
||||
1360249 => 'Montesano, WA',
|
||||
1360253 => 'Vancouver, WA',
|
||||
1360254 => 'Vancouver, WA',
|
||||
1360256 => 'Vancouver, WA',
|
||||
1360257 => 'Oak Harbor, WA',
|
||||
1360258 => 'Vancouver, WA',
|
||||
1360259 => 'Olympia, WA',
|
||||
1360260 => 'Vancouver, WA',
|
||||
1360262 => 'Chehalis, WA',
|
||||
1360263 => 'La Center, WA',
|
||||
1360264 => 'Tenino, WA',
|
||||
1360268 => 'Westport, WA',
|
||||
1360273 => 'Rochester, WA',
|
||||
1360274 => 'Castle Rock, WA',
|
||||
1360275 => 'Belfair, WA',
|
||||
1360279 => 'Oak Harbor, WA',
|
||||
1360281 => 'Vancouver, WA',
|
||||
1360289 => 'Ocean Shores, WA',
|
||||
1360292 => 'Olympia, WA',
|
||||
1360293 => 'Anacortes, WA',
|
||||
1360297 => 'Kingston, WA',
|
||||
1360299 => 'Anacortes, WA',
|
||||
1360306 => 'Bellingham, WA',
|
||||
1360307 => 'Silverdale, WA',
|
||||
1360314 => 'Vancouver, WA',
|
||||
1360318 => 'Lynden, WA',
|
||||
1360321 => 'Langley, WA',
|
||||
1360326 => 'Vancouver, WA',
|
||||
1360330 => 'Centralia, WA',
|
||||
1360331 => 'Freeland, WA',
|
||||
1360332 => 'Blaine, WA',
|
||||
1360335 => 'Washougal, WA',
|
||||
1360336 => 'Mount Vernon, WA',
|
||||
1360341 => 'Clinton, WA',
|
||||
1360350 => 'Olympia, WA',
|
||||
1360352 => 'Olympia, WA',
|
||||
1360354 => 'Lynden, WA',
|
||||
1360357 => 'Olympia, WA',
|
||||
1360371 => 'Blaine, WA',
|
||||
1360373 => 'Bremerton, WA',
|
||||
1360374 => 'Forks, WA',
|
||||
1360376 => 'Eastsound, WA',
|
||||
1360377 => 'Bremerton, WA',
|
||||
1360378 => 'Friday Harbor, WA',
|
||||
1360379 => 'Port Townsend, WA',
|
||||
1360380 => 'Ferndale, WA',
|
||||
1360384 => 'Ferndale, WA',
|
||||
1360385 => 'Port Townsend, WA',
|
||||
1360387 => 'Camano Island, WA',
|
||||
1360392 => 'Bellingham, WA',
|
||||
1360394 => 'Poulsbo, WA',
|
||||
1360397 => 'Vancouver, WA',
|
||||
1360398 => 'Bellingham, WA',
|
||||
1360400 => 'Yelm, WA',
|
||||
1360402 => 'Olympia, WA',
|
||||
1360403 => 'Arlington, WA',
|
||||
1360412 => 'Lacey, WA',
|
||||
1360413 => 'Olympia, WA',
|
||||
1360414 => 'Longview, WA',
|
||||
1360416 => 'Mount Vernon, WA',
|
||||
1360417 => 'Port Angeles, WA',
|
||||
1360418 => 'Vancouver, WA',
|
||||
1360419 => 'Mount Vernon, WA',
|
||||
1360423 => 'Longview, WA',
|
||||
1360424 => 'Mount Vernon, WA',
|
||||
1360425 => 'Longview, WA',
|
||||
1360426 => 'Shelton, WA',
|
||||
1360427 => 'Shelton, WA',
|
||||
1360428 => 'Mount Vernon, WA',
|
||||
1360432 => 'Shelton, WA',
|
||||
1360433 => 'Vancouver, WA',
|
||||
1360435 => 'Arlington, WA',
|
||||
1360436 => 'Darrington, WA',
|
||||
1360437 => 'Port Ludlow, WA',
|
||||
1360438 => 'Olympia, WA',
|
||||
1360446 => 'Rainier, WA',
|
||||
1360448 => 'Vancouver, WA',
|
||||
1360449 => 'Vancouver, WA',
|
||||
1360450 => 'Vancouver, WA',
|
||||
1360452 => 'Port Angeles, WA',
|
||||
1360457 => 'Port Angeles, WA',
|
||||
1360458 => 'Yelm, WA',
|
||||
1360459 => 'Olympia, WA',
|
||||
1360460 => 'Port Angeles, WA',
|
||||
1360466 => 'La Conner, WA',
|
||||
1360468 => 'Lopez Island, WA',
|
||||
1360474 => 'Arlington, WA',
|
||||
1360475 => 'Bremerton, WA',
|
||||
1360477 => 'Port Angeles, WA',
|
||||
1360479 => 'Bremerton, WA',
|
||||
1360482 => 'Elma, WA',
|
||||
1360487 => 'Vancouver, WA',
|
||||
1360491 => 'Olympia, WA',
|
||||
1360493 => 'Olympia, WA',
|
||||
1360496 => 'Morton, WA',
|
||||
1360501 => 'Longview, WA',
|
||||
1360513 => 'Vancouver, WA',
|
||||
1360514 => 'Vancouver, WA',
|
||||
1360521 => 'Vancouver, WA',
|
||||
1360524 => 'Vancouver, WA',
|
||||
1360527 => 'Bellingham, WA',
|
||||
1360528 => 'Olympia, WA',
|
||||
1360532 => 'Aberdeen, WA',
|
||||
1360533 => 'Aberdeen, WA',
|
||||
1360537 => 'Aberdeen, WA',
|
||||
1360538 => 'Aberdeen, WA',
|
||||
1360546 => 'Vancouver, WA',
|
||||
1360563 => 'Snohomish, WA',
|
||||
1360566 => 'Vancouver, WA',
|
||||
1360567 => 'Vancouver, WA',
|
||||
1360568 => 'Snohomish, WA',
|
||||
1360570 => 'Olympia, WA',
|
||||
1360571 => 'Vancouver, WA',
|
||||
1360573 => 'Vancouver, WA',
|
||||
1360574 => 'Vancouver, WA',
|
||||
1360575 => 'Longview, WA',
|
||||
1360576 => 'Vancouver, WA',
|
||||
1360577 => 'Longview, WA',
|
||||
1360578 => 'Longview, WA',
|
||||
1360579 => 'Clinton, WA',
|
||||
1360582 => 'Sequim, WA',
|
||||
1360584 => 'Olympia, WA',
|
||||
1360588 => 'Anacortes, WA',
|
||||
1360597 => 'Vancouver, WA',
|
||||
1360598 => 'Poulsbo, WA',
|
||||
1360599 => 'Maple Falls, WA',
|
||||
1360604 => 'Vancouver, WA',
|
||||
1360613 => 'Silverdale, WA',
|
||||
1360629 => 'Stanwood, WA',
|
||||
1360635 => 'Vancouver, WA',
|
||||
1360636 => 'Longview, WA',
|
||||
1360642 => 'Long Beach, WA',
|
||||
1360647 => 'Bellingham, WA',
|
||||
1360650 => 'Bellingham, WA',
|
||||
1360651 => 'Marysville, WA',
|
||||
1360653 => 'Marysville, WA',
|
||||
1360657 => 'Marysville, WA',
|
||||
1360658 => 'Marysville, WA',
|
||||
1360659 => 'Marysville, WA',
|
||||
1360665 => 'Ocean Park, WA',
|
||||
1360666 => 'Battle Ground, WA',
|
||||
1360668 => 'Snohomish, WA',
|
||||
1360671 => 'Bellingham, WA',
|
||||
1360673 => 'Kalama, WA',
|
||||
1360675 => 'Oak Harbor, WA',
|
||||
1360676 => 'Bellingham, WA',
|
||||
1360678 => 'Coupeville, WA',
|
||||
1360679 => 'Oak Harbor, WA',
|
||||
1360681 => 'Sequim, WA',
|
||||
1360683 => 'Sequim, WA',
|
||||
1360686 => 'Yacolt, WA',
|
||||
1360687 => 'Battle Ground, WA',
|
||||
1360691 => 'Granite Falls, WA',
|
||||
1360692 => 'Silverdale, WA',
|
||||
1360693 => 'Vancouver, WA',
|
||||
1360694 => 'Vancouver, WA',
|
||||
1360695 => 'Vancouver, WA',
|
||||
1360696 => 'Vancouver, WA',
|
||||
1360697 => 'Poulsbo, WA',
|
||||
1360698 => 'Silverdale, WA',
|
||||
1360699 => 'Vancouver, WA',
|
||||
1360701 => 'Olympia, WA',
|
||||
1360704 => 'Olympia, WA',
|
||||
1360705 => 'Olympia, WA',
|
||||
1360707 => 'Burlington, WA',
|
||||
1360709 => 'Olympia, WA',
|
||||
1360713 => 'Vancouver, WA',
|
||||
1360714 => 'Bellingham, WA',
|
||||
1360715 => 'Bellingham, WA',
|
||||
1360716 => 'Tulalip, WA',
|
||||
1360718 => 'Vancouver, WA',
|
||||
1360733 => 'Bellingham, WA',
|
||||
1360734 => 'Bellingham, WA',
|
||||
1360735 => 'Vancouver, WA',
|
||||
1360736 => 'Centralia, WA',
|
||||
1360737 => 'Vancouver, WA',
|
||||
1360738 => 'Bellingham, WA',
|
||||
1360739 => 'Bellingham, WA',
|
||||
1360740 => 'Chehalis, WA',
|
||||
1360748 => 'Chehalis, WA',
|
||||
1360750 => 'Vancouver, WA',
|
||||
1360752 => 'Bellingham, WA',
|
||||
1360753 => 'Olympia, WA',
|
||||
1360754 => 'Olympia, WA',
|
||||
1360755 => 'Burlington, WA',
|
||||
1360756 => 'Bellingham, WA',
|
||||
1360757 => 'Burlington, WA',
|
||||
1360765 => 'Quilcene, WA',
|
||||
1360769 => 'Port Orchard, WA',
|
||||
1360773 => 'Vancouver, WA',
|
||||
1360778 => 'Bellingham, WA',
|
||||
1360779 => 'Poulsbo, WA',
|
||||
1360782 => 'Bremerton, WA',
|
||||
1360785 => 'Winlock, WA',
|
||||
1360786 => 'Olympia, WA',
|
||||
1360789 => 'Olympia, WA',
|
||||
1360791 => 'Olympia, WA',
|
||||
1360792 => 'Bremerton, WA',
|
||||
1360793 => 'Sultan, WA',
|
||||
1360794 => 'Monroe, WA',
|
||||
1360795 => 'Cathlamet, WA',
|
||||
1360802 => 'Enumclaw, WA',
|
||||
1360805 => 'Monroe, WA',
|
||||
1360807 => 'Centralia, WA',
|
||||
1360816 => 'Vancouver, WA',
|
||||
1360823 => 'Vancouver, WA',
|
||||
1360825 => 'Enumclaw, WA',
|
||||
1360828 => 'Vancouver, WA',
|
||||
1360829 => 'Buckley, WA',
|
||||
1360832 => 'Eatonville, WA',
|
||||
1360833 => 'Camas, WA',
|
||||
1360834 => 'Camas, WA',
|
||||
1360835 => 'Washougal, WA',
|
||||
1360848 => 'Mount Vernon, WA',
|
||||
1360852 => 'Vancouver, WA',
|
||||
1360853 => 'Concrete, WA',
|
||||
1360855 => 'Sedro-Woolley, WA',
|
||||
1360856 => 'Sedro-Woolley, WA',
|
||||
1360863 => 'Monroe, WA',
|
||||
1360864 => 'Toledo, WA',
|
||||
1360866 => 'Olympia, WA',
|
||||
1360867 => 'Olympia, WA',
|
||||
1360870 => 'Olympia, WA',
|
||||
1360871 => 'Port Orchard, WA',
|
||||
1360874 => 'Port Orchard, WA',
|
||||
1360875 => 'South Bend, WA',
|
||||
1360876 => 'Port Orchard, WA',
|
||||
1360877 => 'Hoodsport, WA',
|
||||
1360878 => 'Olympia, WA',
|
||||
1360882 => 'Vancouver, WA',
|
||||
1360883 => 'Vancouver, WA',
|
||||
1360885 => 'Vancouver, WA',
|
||||
1360886 => 'Black Diamond, WA',
|
||||
1360887 => 'Ridgefield, WA',
|
||||
1360891 => 'Vancouver, WA',
|
||||
1360892 => 'Vancouver, WA',
|
||||
1360893 => 'Orting, WA',
|
||||
1360894 => 'Yelm, WA',
|
||||
1360895 => 'Port Orchard, WA',
|
||||
1360896 => 'Vancouver, WA',
|
||||
1360901 => 'Vancouver, WA',
|
||||
1360902 => 'Olympia, WA',
|
||||
1360904 => 'Vancouver, WA',
|
||||
1360906 => 'Vancouver, WA',
|
||||
1360909 => 'Vancouver, WA',
|
||||
1360910 => 'Vancouver, WA',
|
||||
1360915 => 'Olympia, WA',
|
||||
1360923 => 'Olympia, WA',
|
||||
1360930 => 'Poulsbo, WA',
|
||||
1360942 => 'Raymond, WA',
|
||||
1360943 => 'Olympia, WA',
|
||||
1360944 => 'Vancouver, WA',
|
||||
1360945 => 'Point Roberts, WA',
|
||||
1360956 => 'Olympia, WA',
|
||||
1360966 => 'Everson, WA',
|
||||
1360988 => 'Sumas, WA',
|
||||
1360991 => 'Vancouver, WA',
|
||||
1360993 => 'Vancouver, WA',
|
||||
);
|
||||
98
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1361.php
vendored
Normal file
98
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1361.php
vendored
Normal file
@@ -0,0 +1,98 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1361 => 'Texas',
|
||||
1361225 => 'Corpus Christi, TX',
|
||||
1361241 => 'Corpus Christi, TX',
|
||||
1361242 => 'Corpus Christi, TX',
|
||||
1361275 => 'Cuero, TX',
|
||||
1361279 => 'San Diego, TX',
|
||||
1361288 => 'Corpus Christi, TX',
|
||||
1361289 => 'Corpus Christi, TX',
|
||||
1361293 => 'Yoakum, TX',
|
||||
1361299 => 'Corpus Christi, TX',
|
||||
1361325 => 'Falfurrias, TX',
|
||||
1361334 => 'Corpus Christi, TX',
|
||||
1361348 => 'Premont, TX',
|
||||
1361358 => 'Beeville, TX',
|
||||
1361362 => 'Beeville, TX',
|
||||
1361364 => 'Sinton, TX',
|
||||
1361384 => 'Orange Grove, TX',
|
||||
1361387 => 'Robstown, TX',
|
||||
1361394 => 'Freer, TX',
|
||||
1361396 => 'Alice, TX',
|
||||
1361449 => 'George West, TX',
|
||||
1361485 => 'Victoria, TX',
|
||||
1361516 => 'Kingsville, TX',
|
||||
1361526 => 'Refugio, TX',
|
||||
1361527 => 'Hebbronville, TX',
|
||||
1361528 => 'Taft, TX',
|
||||
1361547 => 'Mathis, TX',
|
||||
1361552 => 'Port Lavaca, TX',
|
||||
1361561 => 'Corpus Christi, TX',
|
||||
1361564 => 'Yorktown, TX',
|
||||
1361570 => 'Victoria, TX',
|
||||
1361572 => 'Victoria, TX',
|
||||
1361573 => 'Victoria, TX',
|
||||
1361574 => 'Victoria, TX',
|
||||
1361575 => 'Victoria, TX',
|
||||
1361576 => 'Victoria, TX',
|
||||
1361578 => 'Victoria, TX',
|
||||
1361579 => 'Victoria, TX',
|
||||
1361582 => 'Victoria, TX',
|
||||
1361592 => 'Kingsville, TX',
|
||||
1361594 => 'Shiner, TX',
|
||||
1361595 => 'Kingsville, TX',
|
||||
1361643 => 'Portland, TX',
|
||||
1361645 => 'Goliad, TX',
|
||||
1361661 => 'Alice, TX',
|
||||
1361664 => 'Alice, TX',
|
||||
1361668 => 'Alice, TX',
|
||||
1361694 => 'Corpus Christi, TX',
|
||||
1361727 => 'Rockport, TX',
|
||||
1361729 => 'Rockport, TX',
|
||||
1361749 => 'Port Aransas, TX',
|
||||
1361758 => 'Aransas Pass, TX',
|
||||
1361767 => 'Robstown, TX',
|
||||
1361771 => 'Ganado, TX',
|
||||
1361776 => 'Ingleside, TX',
|
||||
1361777 => 'Portland, TX',
|
||||
1361782 => 'Edna, TX',
|
||||
1361786 => 'Three Rivers, TX',
|
||||
1361790 => 'Rockport, TX',
|
||||
1361798 => 'Hallettsville, TX',
|
||||
1361806 => 'Corpus Christi, TX',
|
||||
1361814 => 'Corpus Christi, TX',
|
||||
1361851 => 'Corpus Christi, TX',
|
||||
1361852 => 'Corpus Christi, TX',
|
||||
1361853 => 'Corpus Christi, TX',
|
||||
1361854 => 'Corpus Christi, TX',
|
||||
1361855 => 'Corpus Christi, TX',
|
||||
1361857 => 'Corpus Christi, TX',
|
||||
1361865 => 'Flatonia, TX',
|
||||
1361880 => 'Corpus Christi, TX',
|
||||
1361881 => 'Corpus Christi, TX',
|
||||
1361882 => 'Corpus Christi, TX',
|
||||
1361883 => 'Corpus Christi, TX',
|
||||
1361884 => 'Corpus Christi, TX',
|
||||
1361885 => 'Corpus Christi, TX',
|
||||
1361887 => 'Corpus Christi, TX',
|
||||
1361888 => 'Corpus Christi, TX',
|
||||
1361902 => 'Corpus Christi, TX',
|
||||
1361906 => 'Corpus Christi, TX',
|
||||
1361937 => 'Corpus Christi, TX',
|
||||
1361939 => 'Corpus Christi, TX',
|
||||
1361949 => 'Corpus Christi, TX',
|
||||
1361972 => 'Palacios, TX',
|
||||
1361980 => 'Corpus Christi, TX',
|
||||
1361985 => 'Corpus Christi, TX',
|
||||
1361986 => 'Corpus Christi, TX',
|
||||
1361991 => 'Corpus Christi, TX',
|
||||
1361992 => 'Corpus Christi, TX',
|
||||
1361993 => 'Corpus Christi, TX',
|
||||
1361994 => 'Corpus Christi, TX',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1364.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1364.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1364 => 'Kentucky',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1365.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1365.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1365 => 'Ontario',
|
||||
);
|
||||
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1385.php
vendored
Normal file
9
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1385.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1385 => 'Utah',
|
||||
);
|
||||
92
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1386.php
vendored
Normal file
92
code/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1386.php
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is automatically @generated by {@link GeneratePhonePrefixData}.
|
||||
* Please don't modify it directly.
|
||||
*/
|
||||
|
||||
return array (
|
||||
1386 => 'Florida',
|
||||
1386218 => 'Orange City, FL',
|
||||
1386226 => 'Daytona Beach, FL',
|
||||
1386228 => 'Lake Helen, FL',
|
||||
1386236 => 'Daytona Beach, FL',
|
||||
1386238 => 'Daytona Beach, FL',
|
||||
1386239 => 'Daytona Beach, FL',
|
||||
1386246 => 'Palm Coast, FL',
|
||||
1386248 => 'Daytona Beach, FL',
|
||||
1386252 => 'Daytona Beach, FL',
|
||||
1386253 => 'Daytona Beach, FL',
|
||||
1386254 => 'Daytona Beach, FL',
|
||||
1386255 => 'Daytona Beach, FL',
|
||||
1386257 => 'Daytona Beach, FL',
|
||||
1386258 => 'Daytona Beach, FL',
|
||||
1386274 => 'Daytona Beach, FL',
|
||||
1386294 => 'Mayo, FL',
|
||||
1386313 => 'Bunnell, FL',
|
||||
1386322 => 'Port Orange, FL',
|
||||
1386323 => 'Daytona Beach, FL',
|
||||
1386325 => 'Palatka, FL',
|
||||
1386326 => 'Palatka, FL',
|
||||
1386328 => 'Palatka, FL',
|
||||
1386329 => 'Palatka, FL',
|
||||
1386362 => 'Live Oak, FL',
|
||||
1386364 => 'Live Oak, FL',
|
||||
1386385 => 'Palatka, FL',
|
||||
1386409 => 'New Smyrna Beach, FL',
|
||||
1386418 => 'Alachua, FL',
|
||||
1386423 => 'New Smyrna Beach, FL',
|
||||
1386424 => 'New Smyrna Beach, FL',
|
||||
1386426 => 'New Smyrna Beach, FL',
|
||||
1386427 => 'New Smyrna Beach, FL',
|
||||
1386428 => 'New Smyrna Beach, FL',
|
||||
1386437 => 'Bunnell, FL',
|
||||
1386438 => 'Lake City, FL',
|
||||
1386439 => 'Flagler Beach, FL',
|
||||
1386441 => 'Ormond Beach, FL',
|
||||
1386445 => 'Palm Coast, FL',
|
||||
1386446 => 'Palm Coast, FL',
|
||||
1386447 => 'Palm Coast, FL',
|
||||
1386454 => 'High Springs, FL',
|
||||
1386462 => 'Alachua, FL',
|
||||
1386467 => 'Welaka, FL',
|
||||
1386496 => 'Lake Butler, FL',
|
||||
1386497 => 'Fort White, FL',
|
||||
1386532 => 'Deltona, FL',
|
||||
1386574 => 'Deltona, FL',
|
||||
1386586 => 'Palm Coast, FL',
|
||||
1386597 => 'Palm Coast, FL',
|
||||
1386615 => 'Ormond Beach, FL',
|
||||
1386668 => 'DeBary, FL',
|
||||
1386671 => 'Ormond Beach, FL',
|
||||
1386672 => 'Ormond Beach, FL',
|
||||
1386673 => 'Ormond Beach, FL',
|
||||
1386676 => 'Ormond Beach, FL',
|
||||
1386677 => 'Ormond Beach, FL',
|
||||
1386684 => 'Interlachen, FL',
|
||||
1386698 => 'Crescent City, FL',
|
||||
1386719 => 'Lake City, FL',
|
||||
1386734 => 'DeLand, FL',
|
||||
1386736 => 'DeLand, FL',
|
||||
1386738 => 'DeLand, FL',
|
||||
1386740 => 'DeLand, FL',
|
||||
1386749 => 'Pierson, FL',
|
||||
1386752 => 'Lake City, FL',
|
||||
1386754 => 'Lake City, FL',
|
||||
1386755 => 'Lake City, FL',
|
||||
1386756 => 'Port Orange, FL',
|
||||
1386758 => 'Lake City, FL',
|
||||
1386774 => 'Orange City, FL',
|
||||
1386775 => 'Orange City, FL',
|
||||
1386789 => 'Deltona, FL',
|
||||
1386792 => 'Jasper, FL',
|
||||
1386822 => 'DeLand, FL',
|
||||
1386860 => 'Deltona, FL',
|
||||
1386873 => 'DeLand, FL',
|
||||
1386931 => 'Palm Coast, FL',
|
||||
1386935 => 'Branford, FL',
|
||||
1386943 => 'DeLand, FL',
|
||||
1386947 => 'Daytona Beach, FL',
|
||||
1386957 => 'New Smyrna Beach, FL',
|
||||
1386985 => 'De Leon Springs, FL',
|
||||
1386986 => 'Palm Coast, FL',
|
||||
);
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user