pointblank 0.18.0__py3-none-any.whl → 0.20.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pointblank/__init__.py +44 -1
- pointblank/_constants.py +258 -166
- pointblank/_constants_translations.py +378 -0
- pointblank/_interrogation.py +204 -0
- pointblank/_utils_llms_txt.py +20 -0
- pointblank/data/api-docs.txt +793 -1
- pointblank/field.py +1507 -0
- pointblank/generate/__init__.py +17 -0
- pointblank/generate/base.py +49 -0
- pointblank/generate/generators.py +573 -0
- pointblank/generate/regex.py +217 -0
- pointblank/locales/__init__.py +1476 -0
- pointblank/locales/data/AR/address.json +73 -0
- pointblank/locales/data/AR/company.json +60 -0
- pointblank/locales/data/AR/internet.json +19 -0
- pointblank/locales/data/AR/misc.json +7 -0
- pointblank/locales/data/AR/person.json +39 -0
- pointblank/locales/data/AR/text.json +38 -0
- pointblank/locales/data/AT/address.json +84 -0
- pointblank/locales/data/AT/company.json +65 -0
- pointblank/locales/data/AT/internet.json +20 -0
- pointblank/locales/data/AT/misc.json +8 -0
- pointblank/locales/data/AT/person.json +17 -0
- pointblank/locales/data/AT/text.json +35 -0
- pointblank/locales/data/AU/address.json +83 -0
- pointblank/locales/data/AU/company.json +65 -0
- pointblank/locales/data/AU/internet.json +20 -0
- pointblank/locales/data/AU/misc.json +8 -0
- pointblank/locales/data/AU/person.json +17 -0
- pointblank/locales/data/AU/text.json +35 -0
- pointblank/locales/data/BE/address.json +225 -0
- pointblank/locales/data/BE/company.json +129 -0
- pointblank/locales/data/BE/internet.json +36 -0
- pointblank/locales/data/BE/misc.json +6 -0
- pointblank/locales/data/BE/person.json +62 -0
- pointblank/locales/data/BE/text.json +38 -0
- pointblank/locales/data/BG/address.json +75 -0
- pointblank/locales/data/BG/company.json +60 -0
- pointblank/locales/data/BG/internet.json +19 -0
- pointblank/locales/data/BG/misc.json +7 -0
- pointblank/locales/data/BG/person.json +40 -0
- pointblank/locales/data/BG/text.json +38 -0
- pointblank/locales/data/BR/address.json +98 -0
- pointblank/locales/data/BR/company.json +65 -0
- pointblank/locales/data/BR/internet.json +20 -0
- pointblank/locales/data/BR/misc.json +8 -0
- pointblank/locales/data/BR/person.json +17 -0
- pointblank/locales/data/BR/text.json +35 -0
- pointblank/locales/data/CA/address.json +747 -0
- pointblank/locales/data/CA/company.json +120 -0
- pointblank/locales/data/CA/internet.json +24 -0
- pointblank/locales/data/CA/misc.json +11 -0
- pointblank/locales/data/CA/person.json +1033 -0
- pointblank/locales/data/CA/text.json +58 -0
- pointblank/locales/data/CH/address.json +184 -0
- pointblank/locales/data/CH/company.json +112 -0
- pointblank/locales/data/CH/internet.json +20 -0
- pointblank/locales/data/CH/misc.json +10 -0
- pointblank/locales/data/CH/person.json +64 -0
- pointblank/locales/data/CH/text.json +45 -0
- pointblank/locales/data/CL/address.json +71 -0
- pointblank/locales/data/CL/company.json +60 -0
- pointblank/locales/data/CL/internet.json +19 -0
- pointblank/locales/data/CL/misc.json +7 -0
- pointblank/locales/data/CL/person.json +38 -0
- pointblank/locales/data/CL/text.json +38 -0
- pointblank/locales/data/CN/address.json +124 -0
- pointblank/locales/data/CN/company.json +76 -0
- pointblank/locales/data/CN/internet.json +20 -0
- pointblank/locales/data/CN/misc.json +8 -0
- pointblank/locales/data/CN/person.json +50 -0
- pointblank/locales/data/CN/text.json +38 -0
- pointblank/locales/data/CO/address.json +76 -0
- pointblank/locales/data/CO/company.json +60 -0
- pointblank/locales/data/CO/internet.json +19 -0
- pointblank/locales/data/CO/misc.json +7 -0
- pointblank/locales/data/CO/person.json +38 -0
- pointblank/locales/data/CO/text.json +38 -0
- pointblank/locales/data/CY/address.json +62 -0
- pointblank/locales/data/CY/company.json +60 -0
- pointblank/locales/data/CY/internet.json +19 -0
- pointblank/locales/data/CY/misc.json +7 -0
- pointblank/locales/data/CY/person.json +38 -0
- pointblank/locales/data/CY/text.json +38 -0
- pointblank/locales/data/CZ/address.json +70 -0
- pointblank/locales/data/CZ/company.json +61 -0
- pointblank/locales/data/CZ/internet.json +19 -0
- pointblank/locales/data/CZ/misc.json +7 -0
- pointblank/locales/data/CZ/person.json +40 -0
- pointblank/locales/data/CZ/text.json +38 -0
- pointblank/locales/data/DE/address.json +756 -0
- pointblank/locales/data/DE/company.json +101 -0
- pointblank/locales/data/DE/internet.json +22 -0
- pointblank/locales/data/DE/misc.json +11 -0
- pointblank/locales/data/DE/person.json +1026 -0
- pointblank/locales/data/DE/text.json +50 -0
- pointblank/locales/data/DK/address.json +231 -0
- pointblank/locales/data/DK/company.json +65 -0
- pointblank/locales/data/DK/internet.json +20 -0
- pointblank/locales/data/DK/misc.json +7 -0
- pointblank/locales/data/DK/person.json +45 -0
- pointblank/locales/data/DK/text.json +43 -0
- pointblank/locales/data/EE/address.json +69 -0
- pointblank/locales/data/EE/company.json +60 -0
- pointblank/locales/data/EE/internet.json +19 -0
- pointblank/locales/data/EE/misc.json +7 -0
- pointblank/locales/data/EE/person.json +39 -0
- pointblank/locales/data/EE/text.json +38 -0
- pointblank/locales/data/ES/address.json +3086 -0
- pointblank/locales/data/ES/company.json +644 -0
- pointblank/locales/data/ES/internet.json +25 -0
- pointblank/locales/data/ES/misc.json +11 -0
- pointblank/locales/data/ES/person.json +488 -0
- pointblank/locales/data/ES/text.json +49 -0
- pointblank/locales/data/FI/address.json +93 -0
- pointblank/locales/data/FI/company.json +65 -0
- pointblank/locales/data/FI/internet.json +20 -0
- pointblank/locales/data/FI/misc.json +8 -0
- pointblank/locales/data/FI/person.json +17 -0
- pointblank/locales/data/FI/text.json +35 -0
- pointblank/locales/data/FR/address.json +619 -0
- pointblank/locales/data/FR/company.json +111 -0
- pointblank/locales/data/FR/internet.json +22 -0
- pointblank/locales/data/FR/misc.json +11 -0
- pointblank/locales/data/FR/person.json +1066 -0
- pointblank/locales/data/FR/text.json +50 -0
- pointblank/locales/data/GB/address.json +5759 -0
- pointblank/locales/data/GB/company.json +131 -0
- pointblank/locales/data/GB/internet.json +24 -0
- pointblank/locales/data/GB/misc.json +45 -0
- pointblank/locales/data/GB/person.json +578 -0
- pointblank/locales/data/GB/text.json +61 -0
- pointblank/locales/data/GR/address.json +68 -0
- pointblank/locales/data/GR/company.json +61 -0
- pointblank/locales/data/GR/internet.json +19 -0
- pointblank/locales/data/GR/misc.json +7 -0
- pointblank/locales/data/GR/person.json +39 -0
- pointblank/locales/data/GR/text.json +38 -0
- pointblank/locales/data/HK/address.json +79 -0
- pointblank/locales/data/HK/company.json +69 -0
- pointblank/locales/data/HK/internet.json +19 -0
- pointblank/locales/data/HK/misc.json +7 -0
- pointblank/locales/data/HK/person.json +42 -0
- pointblank/locales/data/HK/text.json +38 -0
- pointblank/locales/data/HR/address.json +73 -0
- pointblank/locales/data/HR/company.json +60 -0
- pointblank/locales/data/HR/internet.json +19 -0
- pointblank/locales/data/HR/misc.json +7 -0
- pointblank/locales/data/HR/person.json +38 -0
- pointblank/locales/data/HR/text.json +38 -0
- pointblank/locales/data/HU/address.json +70 -0
- pointblank/locales/data/HU/company.json +61 -0
- pointblank/locales/data/HU/internet.json +19 -0
- pointblank/locales/data/HU/misc.json +7 -0
- pointblank/locales/data/HU/person.json +40 -0
- pointblank/locales/data/HU/text.json +38 -0
- pointblank/locales/data/ID/address.json +68 -0
- pointblank/locales/data/ID/company.json +61 -0
- pointblank/locales/data/ID/internet.json +19 -0
- pointblank/locales/data/ID/misc.json +7 -0
- pointblank/locales/data/ID/person.json +40 -0
- pointblank/locales/data/ID/text.json +38 -0
- pointblank/locales/data/IE/address.json +643 -0
- pointblank/locales/data/IE/company.json +140 -0
- pointblank/locales/data/IE/internet.json +24 -0
- pointblank/locales/data/IE/misc.json +44 -0
- pointblank/locales/data/IE/person.json +55 -0
- pointblank/locales/data/IE/text.json +60 -0
- pointblank/locales/data/IN/address.json +92 -0
- pointblank/locales/data/IN/company.json +65 -0
- pointblank/locales/data/IN/internet.json +20 -0
- pointblank/locales/data/IN/misc.json +8 -0
- pointblank/locales/data/IN/person.json +52 -0
- pointblank/locales/data/IN/text.json +39 -0
- pointblank/locales/data/IS/address.json +63 -0
- pointblank/locales/data/IS/company.json +61 -0
- pointblank/locales/data/IS/internet.json +19 -0
- pointblank/locales/data/IS/misc.json +7 -0
- pointblank/locales/data/IS/person.json +44 -0
- pointblank/locales/data/IS/text.json +38 -0
- pointblank/locales/data/IT/address.json +192 -0
- pointblank/locales/data/IT/company.json +137 -0
- pointblank/locales/data/IT/internet.json +20 -0
- pointblank/locales/data/IT/misc.json +10 -0
- pointblank/locales/data/IT/person.json +70 -0
- pointblank/locales/data/IT/text.json +44 -0
- pointblank/locales/data/JP/address.json +713 -0
- pointblank/locales/data/JP/company.json +113 -0
- pointblank/locales/data/JP/internet.json +22 -0
- pointblank/locales/data/JP/misc.json +10 -0
- pointblank/locales/data/JP/person.json +1057 -0
- pointblank/locales/data/JP/text.json +51 -0
- pointblank/locales/data/KR/address.json +77 -0
- pointblank/locales/data/KR/company.json +68 -0
- pointblank/locales/data/KR/internet.json +19 -0
- pointblank/locales/data/KR/misc.json +7 -0
- pointblank/locales/data/KR/person.json +40 -0
- pointblank/locales/data/KR/text.json +38 -0
- pointblank/locales/data/LT/address.json +66 -0
- pointblank/locales/data/LT/company.json +60 -0
- pointblank/locales/data/LT/internet.json +19 -0
- pointblank/locales/data/LT/misc.json +7 -0
- pointblank/locales/data/LT/person.json +42 -0
- pointblank/locales/data/LT/text.json +38 -0
- pointblank/locales/data/LU/address.json +66 -0
- pointblank/locales/data/LU/company.json +60 -0
- pointblank/locales/data/LU/internet.json +19 -0
- pointblank/locales/data/LU/misc.json +7 -0
- pointblank/locales/data/LU/person.json +38 -0
- pointblank/locales/data/LU/text.json +38 -0
- pointblank/locales/data/LV/address.json +62 -0
- pointblank/locales/data/LV/company.json +60 -0
- pointblank/locales/data/LV/internet.json +19 -0
- pointblank/locales/data/LV/misc.json +7 -0
- pointblank/locales/data/LV/person.json +40 -0
- pointblank/locales/data/LV/text.json +38 -0
- pointblank/locales/data/MT/address.json +61 -0
- pointblank/locales/data/MT/company.json +60 -0
- pointblank/locales/data/MT/internet.json +19 -0
- pointblank/locales/data/MT/misc.json +7 -0
- pointblank/locales/data/MT/person.json +38 -0
- pointblank/locales/data/MT/text.json +38 -0
- pointblank/locales/data/MX/address.json +100 -0
- pointblank/locales/data/MX/company.json +65 -0
- pointblank/locales/data/MX/internet.json +20 -0
- pointblank/locales/data/MX/misc.json +8 -0
- pointblank/locales/data/MX/person.json +18 -0
- pointblank/locales/data/MX/text.json +39 -0
- pointblank/locales/data/NL/address.json +1517 -0
- pointblank/locales/data/NL/company.json +133 -0
- pointblank/locales/data/NL/internet.json +44 -0
- pointblank/locales/data/NL/misc.json +55 -0
- pointblank/locales/data/NL/person.json +365 -0
- pointblank/locales/data/NL/text.json +210 -0
- pointblank/locales/data/NO/address.json +86 -0
- pointblank/locales/data/NO/company.json +66 -0
- pointblank/locales/data/NO/internet.json +20 -0
- pointblank/locales/data/NO/misc.json +8 -0
- pointblank/locales/data/NO/person.json +17 -0
- pointblank/locales/data/NO/text.json +35 -0
- pointblank/locales/data/NZ/address.json +90 -0
- pointblank/locales/data/NZ/company.json +65 -0
- pointblank/locales/data/NZ/internet.json +20 -0
- pointblank/locales/data/NZ/misc.json +8 -0
- pointblank/locales/data/NZ/person.json +17 -0
- pointblank/locales/data/NZ/text.json +39 -0
- pointblank/locales/data/PH/address.json +67 -0
- pointblank/locales/data/PH/company.json +61 -0
- pointblank/locales/data/PH/internet.json +19 -0
- pointblank/locales/data/PH/misc.json +7 -0
- pointblank/locales/data/PH/person.json +40 -0
- pointblank/locales/data/PH/text.json +38 -0
- pointblank/locales/data/PL/address.json +91 -0
- pointblank/locales/data/PL/company.json +65 -0
- pointblank/locales/data/PL/internet.json +20 -0
- pointblank/locales/data/PL/misc.json +8 -0
- pointblank/locales/data/PL/person.json +17 -0
- pointblank/locales/data/PL/text.json +35 -0
- pointblank/locales/data/PT/address.json +90 -0
- pointblank/locales/data/PT/company.json +65 -0
- pointblank/locales/data/PT/internet.json +20 -0
- pointblank/locales/data/PT/misc.json +8 -0
- pointblank/locales/data/PT/person.json +17 -0
- pointblank/locales/data/PT/text.json +35 -0
- pointblank/locales/data/RO/address.json +73 -0
- pointblank/locales/data/RO/company.json +61 -0
- pointblank/locales/data/RO/internet.json +19 -0
- pointblank/locales/data/RO/misc.json +7 -0
- pointblank/locales/data/RO/person.json +40 -0
- pointblank/locales/data/RO/text.json +38 -0
- pointblank/locales/data/RU/address.json +74 -0
- pointblank/locales/data/RU/company.json +60 -0
- pointblank/locales/data/RU/internet.json +19 -0
- pointblank/locales/data/RU/misc.json +7 -0
- pointblank/locales/data/RU/person.json +38 -0
- pointblank/locales/data/RU/text.json +38 -0
- pointblank/locales/data/SE/address.json +247 -0
- pointblank/locales/data/SE/company.json +65 -0
- pointblank/locales/data/SE/internet.json +20 -0
- pointblank/locales/data/SE/misc.json +7 -0
- pointblank/locales/data/SE/person.json +45 -0
- pointblank/locales/data/SE/text.json +43 -0
- pointblank/locales/data/SI/address.json +67 -0
- pointblank/locales/data/SI/company.json +60 -0
- pointblank/locales/data/SI/internet.json +19 -0
- pointblank/locales/data/SI/misc.json +7 -0
- pointblank/locales/data/SI/person.json +38 -0
- pointblank/locales/data/SI/text.json +38 -0
- pointblank/locales/data/SK/address.json +64 -0
- pointblank/locales/data/SK/company.json +60 -0
- pointblank/locales/data/SK/internet.json +19 -0
- pointblank/locales/data/SK/misc.json +7 -0
- pointblank/locales/data/SK/person.json +38 -0
- pointblank/locales/data/SK/text.json +38 -0
- pointblank/locales/data/TR/address.json +105 -0
- pointblank/locales/data/TR/company.json +65 -0
- pointblank/locales/data/TR/internet.json +20 -0
- pointblank/locales/data/TR/misc.json +8 -0
- pointblank/locales/data/TR/person.json +17 -0
- pointblank/locales/data/TR/text.json +35 -0
- pointblank/locales/data/TW/address.json +86 -0
- pointblank/locales/data/TW/company.json +69 -0
- pointblank/locales/data/TW/internet.json +19 -0
- pointblank/locales/data/TW/misc.json +7 -0
- pointblank/locales/data/TW/person.json +42 -0
- pointblank/locales/data/TW/text.json +38 -0
- pointblank/locales/data/US/address.json +996 -0
- pointblank/locales/data/US/company.json +131 -0
- pointblank/locales/data/US/internet.json +22 -0
- pointblank/locales/data/US/misc.json +11 -0
- pointblank/locales/data/US/person.json +1092 -0
- pointblank/locales/data/US/text.json +56 -0
- pointblank/locales/data/_shared/misc.json +42 -0
- pointblank/schema.py +339 -2
- pointblank/validate.py +1263 -11
- {pointblank-0.18.0.dist-info → pointblank-0.20.0.dist-info}/METADATA +45 -1
- pointblank-0.20.0.dist-info/RECORD +366 -0
- {pointblank-0.18.0.dist-info → pointblank-0.20.0.dist-info}/WHEEL +1 -1
- pointblank-0.18.0.dist-info/RECORD +0 -59
- {pointblank-0.18.0.dist-info → pointblank-0.20.0.dist-info}/entry_points.txt +0 -0
- {pointblank-0.18.0.dist-info → pointblank-0.20.0.dist-info}/licenses/LICENSE +0 -0
- {pointblank-0.18.0.dist-info → pointblank-0.20.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"suffixes": ["Ltd", "Limited", "NZ Ltd", "Group", "Holdings"],
|
|
3
|
+
"formats": [
|
|
4
|
+
"{last_name} {suffix}",
|
|
5
|
+
"{adjective} {noun} {suffix}",
|
|
6
|
+
"{noun} {suffix}",
|
|
7
|
+
"{last_name} & {last_name} {suffix}"
|
|
8
|
+
],
|
|
9
|
+
"adjectives": [
|
|
10
|
+
"Kiwi", "Pacific", "Southern", "New Zealand", "National",
|
|
11
|
+
"Modern", "International", "Regional", "Global", "Digital",
|
|
12
|
+
"Innovative", "Green", "Premium", "Elite", "Professional",
|
|
13
|
+
"Smart", "Creative", "Dynamic", "Strategic", "Coastal"
|
|
14
|
+
],
|
|
15
|
+
"nouns": [
|
|
16
|
+
"Technology", "Industries", "Trading", "Construction", "Property",
|
|
17
|
+
"Energy", "Finance", "Insurance", "Consulting", "Logistics",
|
|
18
|
+
"Pharmaceuticals", "Media", "IT", "Services", "Solutions",
|
|
19
|
+
"Systems", "Investments", "Holdings", "Partners", "Group"
|
|
20
|
+
],
|
|
21
|
+
"well_known_companies": [
|
|
22
|
+
{"name": "Fonterra", "cities": ["Auckland"]},
|
|
23
|
+
{"name": "Fisher & Paykel Healthcare", "cities": ["Auckland"]},
|
|
24
|
+
{"name": "Fletcher Building", "cities": ["Auckland"]},
|
|
25
|
+
{"name": "Spark New Zealand", "cities": ["Wellington"]},
|
|
26
|
+
{"name": "Air New Zealand", "cities": ["Auckland"]},
|
|
27
|
+
{"name": "Meridian Energy", "cities": ["Wellington"]},
|
|
28
|
+
{"name": "Mercury NZ", "cities": ["Auckland"]},
|
|
29
|
+
{"name": "Contact Energy", "cities": ["Wellington"]},
|
|
30
|
+
{"name": "Genesis Energy", "cities": ["Auckland"]},
|
|
31
|
+
{"name": "a2 Milk Company", "cities": ["Auckland"]},
|
|
32
|
+
{"name": "Mainfreight", "cities": ["Auckland"]},
|
|
33
|
+
{"name": "Ryman Healthcare", "cities": ["Auckland"]},
|
|
34
|
+
{"name": "Auckland International Airport", "cities": ["Auckland"]},
|
|
35
|
+
{"name": "Xero", "cities": ["Wellington"]},
|
|
36
|
+
{"name": "Pushpay", "cities": ["Auckland"]},
|
|
37
|
+
{"name": "Vista Group", "cities": ["Auckland"]},
|
|
38
|
+
{"name": "Rocket Lab", "cities": ["Auckland"]},
|
|
39
|
+
{"name": "Zespri", "cities": ["Tauranga"]},
|
|
40
|
+
{"name": "Silver Fern Farms", "cities": ["Dunedin"]},
|
|
41
|
+
{"name": "Countdown", "cities": ["Auckland"]}
|
|
42
|
+
],
|
|
43
|
+
"jobs": [
|
|
44
|
+
"Software Developer", "Engineer", "Teacher", "Nurse", "Doctor",
|
|
45
|
+
"Lawyer", "Architect", "Designer", "Journalist", "Consultant",
|
|
46
|
+
"Accountant", "Sales Representative", "Project Manager", "Director", "Real Estate Agent",
|
|
47
|
+
"Electrician", "Carpenter", "Mechanic", "Chef", "Waiter",
|
|
48
|
+
"Police Officer", "Firefighter", "Hairdresser", "Dentist", "Physiotherapist"
|
|
49
|
+
],
|
|
50
|
+
"catch_phrase_adjectives": [
|
|
51
|
+
"innovative", "sustainable", "professional", "dynamic", "creative",
|
|
52
|
+
"efficient", "reliable", "modern", "kiwi", "green",
|
|
53
|
+
"quality", "global", "local", "smart", "digital"
|
|
54
|
+
],
|
|
55
|
+
"catch_phrase_nouns": [
|
|
56
|
+
"solutions", "services", "quality", "innovation", "growth",
|
|
57
|
+
"partnership", "results", "values", "collaboration", "future",
|
|
58
|
+
"technology", "design", "strategy", "development", "success"
|
|
59
|
+
],
|
|
60
|
+
"catch_phrase_verbs": [
|
|
61
|
+
"creates", "delivers", "develops", "drives", "builds",
|
|
62
|
+
"shapes", "inspires", "connects", "strengthens", "transforms",
|
|
63
|
+
"optimises", "achieves", "enables", "ensures", "promotes"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"free_email_domains": [
|
|
3
|
+
"gmail.com", "outlook.com", "hotmail.com", "yahoo.co.nz", "icloud.com",
|
|
4
|
+
"xtra.co.nz", "vodafone.co.nz", "spark.co.nz", "slingshot.co.nz", "orcon.net.nz",
|
|
5
|
+
"2degrees.nz", "protonmail.com", "mail.com", "fastmail.co.nz", "clear.net.nz"
|
|
6
|
+
],
|
|
7
|
+
"tlds": ["nz", "co.nz", "com", "net.nz", "org.nz"],
|
|
8
|
+
"domain_words": [
|
|
9
|
+
"kiwi", "nz", "pacific", "tech", "digital",
|
|
10
|
+
"web", "net", "online", "data", "cloud",
|
|
11
|
+
"smart", "auckland", "wellington", "christchurch", "southern"
|
|
12
|
+
],
|
|
13
|
+
"user_agent_browsers": [
|
|
14
|
+
"Chrome", "Firefox", "Safari", "Edge", "Opera"
|
|
15
|
+
],
|
|
16
|
+
"user_agent_os": [
|
|
17
|
+
"Windows NT 10.0", "Windows NT 11.0", "Macintosh; Intel Mac OS X 10_15_7",
|
|
18
|
+
"Macintosh; Intel Mac OS X 11_6", "X11; Linux x86_64", "X11; Ubuntu; Linux x86_64"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"first_names": {
|
|
3
|
+
"male": ["James", "Jack", "Oliver", "William", "Noah", "Leo", "Lucas", "Charlie", "Liam", "Henry", "Thomas", "Mason", "Ethan", "Hunter", "George", "Max", "Archer", "Oscar", "Theo", "Benjamin", "Nikau", "Wiremu", "Rawiri", "Tane", "Kauri", "Ari", "Manaaki", "Koa", "Matiu", "Ihaia"],
|
|
4
|
+
"female": ["Olivia", "Charlotte", "Isla", "Amelia", "Ava", "Sophie", "Mia", "Emily", "Ella", "Grace", "Lily", "Chloe", "Harper", "Ruby", "Isabella", "Zoe", "Willow", "Aria", "Mila", "Lucy", "Aroha", "Maia", "Kaia", "Anahera", "Manaia", "Tia", "Moana", "Ngaire", "Kapua", "Awhina"],
|
|
5
|
+
"neutral": ["Alex", "Jordan", "Taylor", "Riley", "Casey", "Jamie", "Morgan", "Quinn", "Avery", "Hayden"]
|
|
6
|
+
},
|
|
7
|
+
"last_names": ["Smith", "Williams", "Brown", "Taylor", "Wilson", "Anderson", "Thomas", "Walker", "Harris", "Robinson", "Thompson", "Lee", "Martin", "White", "Clark", "Lewis", "Young", "Hall", "Wright", "King", "Scott", "Green", "Adams", "Mitchell", "Campbell", "Singh", "Patel", "Nguyen", "Chen", "Wang", "Te Puni", "Wiremu", "Taufa", "Heke", "Tamati"],
|
|
8
|
+
"name_formats": [
|
|
9
|
+
"{first_name} {last_name}"
|
|
10
|
+
],
|
|
11
|
+
"prefixes": {
|
|
12
|
+
"male": ["Mr", "Dr"],
|
|
13
|
+
"female": ["Ms", "Mrs", "Dr"],
|
|
14
|
+
"neutral": ["Dr"]
|
|
15
|
+
},
|
|
16
|
+
"suffixes": ["Jr", "Sr", "QSO", "ONZM", "MNZM", "CNZM", "DCNZM"]
|
|
17
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"words": [
|
|
3
|
+
"the", "be", "to", "of", "and", "a", "in", "that", "have", "I",
|
|
4
|
+
"it", "for", "not", "on", "with", "he", "as", "you", "do", "at",
|
|
5
|
+
"this", "but", "his", "by", "from", "they", "we", "say", "her", "she",
|
|
6
|
+
"or", "an", "will", "my", "one", "all", "would", "there", "their", "what",
|
|
7
|
+
"so", "up", "out", "if", "about", "who", "get", "which", "go", "me",
|
|
8
|
+
"when", "make", "can", "like", "time", "no", "just", "him", "know", "take",
|
|
9
|
+
"people", "into", "year", "your", "good", "some", "could", "them", "see", "other",
|
|
10
|
+
"than", "then", "now", "look", "only", "come", "its", "over", "think", "also"
|
|
11
|
+
],
|
|
12
|
+
"sentence_patterns": [
|
|
13
|
+
"{noun} {verb} {adverb}.",
|
|
14
|
+
"The {adjective} {noun} {verb}.",
|
|
15
|
+
"{noun} and {noun} {verb} {adverb}.",
|
|
16
|
+
"The {noun} {verb} the {adjective} {noun}.",
|
|
17
|
+
"{adverb}, the {noun} {verb}."
|
|
18
|
+
],
|
|
19
|
+
"adjectives": [
|
|
20
|
+
"good", "new", "first", "last", "long", "great", "little", "own", "other", "old",
|
|
21
|
+
"right", "big", "high", "different", "small", "large", "next", "early", "young", "important",
|
|
22
|
+
"few", "public", "bad", "same", "able", "local", "sure", "free", "better", "special"
|
|
23
|
+
],
|
|
24
|
+
"nouns": [
|
|
25
|
+
"time", "year", "people", "way", "day", "man", "thing", "woman", "life", "child",
|
|
26
|
+
"world", "school", "state", "family", "student", "group", "country", "problem", "hand", "part",
|
|
27
|
+
"place", "case", "week", "company", "system", "program", "question", "work", "government", "number"
|
|
28
|
+
],
|
|
29
|
+
"verbs": [
|
|
30
|
+
"be", "have", "do", "say", "go", "get", "make", "know", "think", "take",
|
|
31
|
+
"see", "come", "want", "look", "use", "find", "give", "tell", "work", "call",
|
|
32
|
+
"try", "ask", "need", "feel", "become", "leave", "put", "mean", "keep", "let"
|
|
33
|
+
],
|
|
34
|
+
"adverbs": [
|
|
35
|
+
"up", "so", "out", "just", "now", "how", "then", "more", "also", "here",
|
|
36
|
+
"well", "only", "very", "even", "back", "there", "down", "still", "in", "as",
|
|
37
|
+
"too", "when", "never", "really", "most", "often", "always", "sometimes", "quickly", "slowly"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"locations": [
|
|
3
|
+
{"city": "Manila", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "10", "lat_min": 14.58, "lat_max": 14.62, "lon_min": 120.97, "lon_max": 121.01},
|
|
4
|
+
{"city": "Quezon City", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "11", "lat_min": 14.62, "lat_max": 14.72, "lon_min": 121.02, "lon_max": 121.12},
|
|
5
|
+
{"city": "Makati", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "12", "lat_min": 14.54, "lat_max": 14.58, "lon_min": 121.01, "lon_max": 121.05},
|
|
6
|
+
{"city": "Taguig", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "16", "lat_min": 14.50, "lat_max": 14.54, "lon_min": 121.04, "lon_max": 121.08},
|
|
7
|
+
{"city": "Pasig", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "16", "lat_min": 14.56, "lat_max": 14.60, "lon_min": 121.06, "lon_max": 121.10},
|
|
8
|
+
{"city": "Mandaluyong", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "15", "lat_min": 14.57, "lat_max": 14.60, "lon_min": 121.03, "lon_max": 121.06},
|
|
9
|
+
{"city": "Parañaque", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "17", "lat_min": 14.46, "lat_max": 14.50, "lon_min": 121.00, "lon_max": 121.04},
|
|
10
|
+
{"city": "Pasay", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "13", "lat_min": 14.53, "lat_max": 14.56, "lon_min": 120.99, "lon_max": 121.02},
|
|
11
|
+
{"city": "Cebu City", "state": "Cebu", "state_abbr": "CEB", "postcode_prefix": "60", "lat_min": 10.29, "lat_max": 10.33, "lon_min": 123.88, "lon_max": 123.92},
|
|
12
|
+
{"city": "Davao City", "state": "Davao del Sur", "state_abbr": "DVO", "postcode_prefix": "80", "lat_min": 7.05, "lat_max": 7.12, "lon_min": 125.58, "lon_max": 125.65},
|
|
13
|
+
{"city": "Zamboanga City", "state": "Zamboanga del Sur", "state_abbr": "ZDS", "postcode_prefix": "70", "lat_min": 6.90, "lat_max": 6.94, "lon_min": 122.06, "lon_max": 122.10},
|
|
14
|
+
{"city": "Cagayan de Oro", "state": "Misamis Oriental", "state_abbr": "MSR", "postcode_prefix": "90", "lat_min": 8.46, "lat_max": 8.50, "lon_min": 124.64, "lon_max": 124.68},
|
|
15
|
+
{"city": "Iloilo City", "state": "Iloilo", "state_abbr": "ILO", "postcode_prefix": "50", "lat_min": 10.69, "lat_max": 10.72, "lon_min": 122.55, "lon_max": 122.58},
|
|
16
|
+
{"city": "Bacolod", "state": "Negros Occidental", "state_abbr": "NEC", "postcode_prefix": "61", "lat_min": 10.67, "lat_max": 10.70, "lon_min": 122.95, "lon_max": 122.98},
|
|
17
|
+
{"city": "General Santos", "state": "South Cotabato", "state_abbr": "SCO", "postcode_prefix": "95", "lat_min": 6.10, "lat_max": 6.14, "lon_min": 125.16, "lon_max": 125.20},
|
|
18
|
+
{"city": "Baguio", "state": "Benguet", "state_abbr": "BEN", "postcode_prefix": "26", "lat_min": 16.40, "lat_max": 16.43, "lon_min": 120.59, "lon_max": 120.62},
|
|
19
|
+
{"city": "Angeles", "state": "Pampanga", "state_abbr": "PAM", "postcode_prefix": "20", "lat_min": 15.14, "lat_max": 15.17, "lon_min": 120.58, "lon_max": 120.61},
|
|
20
|
+
{"city": "Antipolo", "state": "Rizal", "state_abbr": "RIZ", "postcode_prefix": "19", "lat_min": 14.58, "lat_max": 14.62, "lon_min": 121.17, "lon_max": 121.21},
|
|
21
|
+
{"city": "San Juan", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "15", "lat_min": 14.60, "lat_max": 14.62, "lon_min": 121.03, "lon_max": 121.05},
|
|
22
|
+
{"city": "Alabang", "state": "Metro Manila", "state_abbr": "NCR", "postcode_prefix": "17", "lat_min": 14.42, "lat_max": 14.44, "lon_min": 121.02, "lon_max": 121.05}
|
|
23
|
+
],
|
|
24
|
+
"streets_by_city": {
|
|
25
|
+
"Manila": ["Rizal Avenue", "Taft Avenue", "España Boulevard", "Quezon Boulevard", "Recto Avenue", "Avenida Rizal", "Padre Faura Street", "United Nations Avenue", "Roxas Boulevard", "Quirino Avenue", "Mabini Street", "A. Flores Street", "M.H. del Pilar Street", "Adriatico Street", "Pedro Gil Street", "Vito Cruz Street", "Pablo Ocampo Street", "San Marcelino Street", "Lepanto Street", "Gen. Luna Street"],
|
|
26
|
+
"Quezon City": ["EDSA", "Commonwealth Avenue", "Quezon Avenue", "Aurora Boulevard", "Timog Avenue", "Tomas Morato Avenue", "Scout Borromeo Street", "Scout Tuason Street", "Mother Ignacia Avenue", "Examiner Street", "E. Rodriguez Avenue", "Banawe Street", "N. Domingo Street", "Sgt. Rivera Street", "Roces Avenue", "Congressional Avenue", "Visayas Avenue", "Mindanao Avenue", "Katipunan Avenue", "C.P. Garcia Avenue"],
|
|
27
|
+
"Makati": ["Ayala Avenue", "Paseo de Roxas", "Gil Puyat Avenue", "Makati Avenue", "Dela Rosa Street", "Legazpi Street", "Salcedo Street", "Amorsolo Street", "Chino Roces Avenue", "Jupiter Street", "Kalayaan Avenue", "Buendia Avenue", "Pasong Tamo", "Rufino Street", "Arnaiz Avenue", "Leviste Street", "Valero Street", "H.V. Dela Costa Street", "Tordesillas Street", "Bel-Air Drive"],
|
|
28
|
+
"Taguig": ["Bonifacio Global City", "C5 Road", "Lawton Avenue", "McKinley Parkway", "26th Street", "32nd Street", "5th Avenue", "7th Avenue", "9th Avenue", "11th Avenue", "High Street", "Rizal Drive", "Bayani Road", "Gen. Luna Street", "Napindan Road", "Taguig-Pateros Road", "Market Market Drive", "Serendra", "Uptown Parade", "Burgos Circle"],
|
|
29
|
+
"Pasig": ["Ortigas Avenue", "C5 Road", "Julia Vargas Avenue", "Meralco Avenue", "Shaw Boulevard", "F. Ortigas Jr. Road", "Exchange Road", "San Miguel Avenue", "ADB Avenue", "Pearl Drive", "Garnet Road", "Sapphire Road", "Emerald Avenue", "Ruby Road", "Onyx Road", "Amethyst Street", "Topaz Road", "Capitol Commons", "Frontera Verde", "Tiendesitas"],
|
|
30
|
+
"Mandaluyong": ["EDSA", "Shaw Boulevard", "Boni Avenue", "Pioneer Street", "Barangka Drive", "Mayflower Street", "Domingo Guevara Street", "Sierra Madre Street", "Connecticut Street", "Connecticut", "California Street", "New York Street", "San Francisco Street", "Madison Street", "Jupiter Street", "Venus Street", "Neptune Street", "Maysilo Circle", "Rockwell Drive", "Estrella Street"],
|
|
31
|
+
"Parañaque": ["Sucat Road", "Dr. A. Santos Avenue", "Ninoy Aquino Avenue", "NAIA Road", "Quirino Avenue", "Diosdado Macapagal Boulevard", "E. Rodriguez Avenue", "San Antonio Valley Road", "BF Homes", "Aguirre Avenue", "President's Avenue", "Multinational Avenue", "Coastal Road", "C5 Extension", "Don Galo Street", "Doña Soledad Avenue", "Kabihasnan Street", "Gen. Santos Avenue", "La Huerta Street", "Baclaran Road"],
|
|
32
|
+
"Pasay": ["EDSA", "Taft Avenue", "Roxas Boulevard", "F.B. Harrison Street", "Pablo Ocampo Street", "Libertad Street", "Arnaiz Avenue", "Diosdado Macapagal Boulevard", "Buendia Avenue", "Gil Puyat Avenue", "Andrews Avenue", "Domestic Road", "Newport Boulevard", "Sunrise Drive", "Airport Road", "MIA Road", "Sen. Gil Puyat Avenue", "Aurora Boulevard", "Tramo Street", "Padre Diego Cera Avenue"],
|
|
33
|
+
"Cebu City": ["Osmeña Boulevard", "Colon Street", "Mango Avenue", "General Maxilom Avenue", "N. Bacalso Avenue", "Archbishop Reyes Avenue", "Pope John Paul II Avenue", "Escario Street", "Gorordo Avenue", "Salinas Drive", "A.S. Fortuna Street", "M.J. Cuenco Avenue", "F. Ramos Street", "Junquera Street", "Sanciangko Street", "V. Rama Avenue", "M.L. Quezon Boulevard", "Cardinal Rosales Avenue", "Lahug Road", "Banilad Road"],
|
|
34
|
+
"Davao City": ["J.P. Laurel Avenue", "C.M. Recto Street", "San Pedro Street", "Elpidio Quirino Avenue", "Rizal Street", "Bonifacio Street", "Pelayo Street", "Ilustre Street", "Sta. Ana Avenue", "McArthur Highway", "Buhangin Road", "Quimpo Boulevard", "Ma-a Road", "Bajada Street", "Matina Aplaya Road", "Panacan Road", "Gen. Malvar Street", "Mabini Street", "Jacinto Street", "Monteverde Avenue"],
|
|
35
|
+
"Zamboanga City": ["Gov. Camins Road", "Mayor Jaldon Street", "Rizal Avenue", "Pilar Street", "San Jose Road", "Veterans Avenue", "N.S. Valderosa Street", "Corcuera Street", "Sta. Barbara Street", "Don Alfaro Street", "La Purisima Street", "Tomas Claudio Street", "Santa Maria Road", "Pasonanca Road", "San Roque Road", "Putik Road", "Canelar Street", "Tugbungan Road", "Mayor Climaco Drive", "Nuñez Extension"],
|
|
36
|
+
"Cagayan de Oro": ["Corrales Avenue", "J.R. Borja Street", "Claro M. Recto Avenue", "Tiano Brothers Street", "Capistrano Street", "Hayes Street", "Gomez Street", "Velez Street", "Burgos Street", "Osmeña Street", "Chavez Street", "Yacapin Street", "Cruz-Taal Street", "Daugan Road", "Masterson Avenue", "Limketkai Drive", "Centrio Mall Drive", "Xavier University Drive", "Kauswagan Road", "Bulua Highway"],
|
|
37
|
+
"Iloilo City": ["J.M. Basa Street", "General Luna Street", "Iznart Street", "Delgado Street", "Quezon Street", "Ledesma Street", "Jalandoni Street", "Rizal Street", "Aldeguer Street", "Mabini Street", "Bonifacio Drive", "Diversion Road", "Benigno Aquino Avenue", "Sen. Benigno Aquino Jr. Avenue", "E. Lopez Street", "De Leon Street", "Infante Street", "Fuentes Street", "Solis Street", "Valeria Street"],
|
|
38
|
+
"Bacolod": ["Lacson Street", "Araneta Street", "Gonzaga Street", "Gatuslao Street", "Luzuriaga Street", "San Juan Street", "Rizal Street", "Burgos Street", "San Sebastian Street", "Hilado Street", "Lopez Jaena Street", "Hernaez Street", "Galo Street", "B.S. Aquino Drive", "Circumferential Road", "Mandalagan Road", "Singcang Road", "Airport Access Road", "Libertad Extension", "Taculing Road"],
|
|
39
|
+
"General Santos": ["Pioneer Avenue", "Santiago Boulevard", "Pendatun Avenue", "National Highway", "Magsaysay Avenue", "J. Catolico Avenue", "Aparente Street", "Roxas Avenue", "Mabini Street", "Quirino Avenue", "Rizal Street", "Gen. Santos Drive", "Tiongson Street", "San Jose Road", "Labangal Road", "Bula Road", "Calumpang Road", "Fatima Road", "Apopong Road", "Dadiangas Highway"],
|
|
40
|
+
"Baguio": ["Session Road", "Harrison Road", "Leonard Wood Road", "Gov. Pack Road", "Abanao Street", "Magsaysay Avenue", "Shuntug Street", "Kayang Street", "Bonifacio Street", "Bokawkan Road", "Upper Session Road", "South Drive", "North Drive", "Camp John Hay Road", "Loakan Road", "Outlook Drive", "Dominican Hill Road", "Assumption Road", "Gibraltar Road", "Naguilian Road"],
|
|
41
|
+
"Angeles": ["MacArthur Highway", "Miranda Street", "Rizal Street", "Sto. Rosario Street", "Don Juico Avenue", "Fields Avenue", "Arayat Boulevard", "A. Santos Street", "Plaridel Street", "Abad Santos Street", "Burgos Street", "Lakandula Street", "Henson Street", "Teresa Avenue", "Malabañas Road", "Nepo Mart Complex", "Marquee Mall Road", "SM City Clark Drive", "Gil Fernando Avenue", "Perimeter Road"],
|
|
42
|
+
"Antipolo": ["Sumulong Highway", "Marcos Highway", "Circumferential Road", "ML Quezon Street", "P. Oliveros Street", "Daang Bakal", "A. Mabini Street", "J.P. Rizal Street", "Doña Justa Subdivision", "Filinvest East Avenue", "Cogeo Road", "Beverly Hills Drive", "Cloud 9 Road", "Sta. Cruz Road", "Marikina-Infanta Road", "San Roque Road", "Cupang Road", "Mambugan Road", "Mayamot Road", "Taktak Road"],
|
|
43
|
+
"San Juan": ["N. Domingo Street", "Pinaglabanan Street", "F. Blumentritt Street", "Pedro Cruz Street", "V. Mapa Street", "P. Guevarra Street", "Wilson Street", "Eisenhower Street", "Madison Street", "Connecticut Street", "J. Abad Santos Street", "Santolan Road", "F. Manalo Street", "R. Magsaysay Boulevard", "Leon Guinto Street", "Ortigas Avenue Extension", "Rivera Street", "Shaw Boulevard", "Addition Hills", "Xavier Street"],
|
|
44
|
+
"Alabang": ["Alabang-Zapote Road", "Commerce Avenue", "Filinvest Avenue", "Corporate Avenue", "Research Drive", "Parkway Drive", "Spectrum Boulevard", "Northgate Drive", "Westgate Drive", "Madrigal Avenue", "Acacia Avenue", "Montillano Street", "Tropical Avenue", "Festival Mall Drive", "Alabang Town Center Drive", "Don Jesus Boulevard", "Molito Drive", "Laguna Boulevard", "Daang Hari Road", "South Station Drive"]
|
|
45
|
+
},
|
|
46
|
+
"postcode_format": "####",
|
|
47
|
+
"address_formats": [
|
|
48
|
+
"{building_number} {street}, {city}, {state} {postcode}",
|
|
49
|
+
"{street} {building_number}, {city} {postcode}",
|
|
50
|
+
"{building_number} {street}, Brgy. {city}, {state}"
|
|
51
|
+
],
|
|
52
|
+
"country": "Philippines",
|
|
53
|
+
"country_code": "PH",
|
|
54
|
+
"phone_area_codes": {
|
|
55
|
+
"Metro Manila": ["2"],
|
|
56
|
+
"Cebu": ["32"],
|
|
57
|
+
"Davao del Sur": ["82"],
|
|
58
|
+
"Zamboanga del Sur": ["62"],
|
|
59
|
+
"Misamis Oriental": ["88"],
|
|
60
|
+
"Iloilo": ["33"],
|
|
61
|
+
"Negros Occidental": ["34"],
|
|
62
|
+
"South Cotabato": ["83"],
|
|
63
|
+
"Benguet": ["74"],
|
|
64
|
+
"Pampanga": ["45"],
|
|
65
|
+
"Rizal": ["2"]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"suffixes": [
|
|
3
|
+
"Inc.", "Corp.", "Corporation", "Co.", "Ltd.", "Philippines", "Group", "Holdings", "International",
|
|
4
|
+
"Industries", "Enterprises", "Trading", "Services", "Solutions", "Technologies"
|
|
5
|
+
],
|
|
6
|
+
"formats": [
|
|
7
|
+
"{last_name} {suffix}",
|
|
8
|
+
"{adjective} {noun} {suffix}",
|
|
9
|
+
"{adjective} {noun}",
|
|
10
|
+
"{noun} {suffix}"
|
|
11
|
+
],
|
|
12
|
+
"adjectives": [
|
|
13
|
+
"Philippine", "Filipino", "Metro", "Global", "United", "National", "Premier", "Dynamic", "First", "Prime",
|
|
14
|
+
"Pacific", "Asia", "Island", "Golden", "Royal", "Grand", "Elite", "Supreme", "Universal", "Central"
|
|
15
|
+
],
|
|
16
|
+
"nouns": [
|
|
17
|
+
"Bank", "Telecom", "Energy", "Power", "Holdings", "Properties", "Realty", "Foods", "Beverages", "Retail",
|
|
18
|
+
"Manufacturing", "Construction", "Mining", "Shipping", "Airlines", "Insurance", "Finance", "Cement", "Steel", "Water"
|
|
19
|
+
],
|
|
20
|
+
"well_known_companies": [
|
|
21
|
+
{"name": "SM Investments Corporation", "cities": ["Pasay", "Makati", "Quezon City", "Cebu City"]},
|
|
22
|
+
{"name": "Ayala Corporation", "cities": ["Makati", "Taguig", "Cebu City"]},
|
|
23
|
+
{"name": "San Miguel Corporation", "cities": ["Mandaluyong", "Manila", "Cebu City"]},
|
|
24
|
+
{"name": "JG Summit Holdings", "cities": ["Pasig", "Makati", "Cebu City"]},
|
|
25
|
+
{"name": "Jollibee Foods Corporation", "cities": ["Pasig", "Makati", "Quezon City"]},
|
|
26
|
+
{"name": "BDO Unibank", "cities": ["Makati", "Mandaluyong", "Cebu City", "Davao City"]},
|
|
27
|
+
{"name": "Bank of the Philippine Islands", "cities": ["Makati", "Manila", "Cebu City"]},
|
|
28
|
+
{"name": "PLDT Inc.", "cities": ["Makati", "Mandaluyong", "Cebu City"]},
|
|
29
|
+
{"name": "Globe Telecom", "cities": ["Taguig", "Makati", "Cebu City"]},
|
|
30
|
+
{"name": "Meralco", "cities": ["Pasig", "Makati", "Manila"]},
|
|
31
|
+
{"name": "Aboitiz Equity Ventures", "cities": ["Cebu City", "Makati", "Taguig"]},
|
|
32
|
+
{"name": "Metro Pacific Investments", "cities": ["Makati", "Manila", "Taguig"]},
|
|
33
|
+
{"name": "Philippine Airlines", "cities": ["Pasay", "Manila", "Cebu City"]},
|
|
34
|
+
{"name": "Cebu Pacific Air", "cities": ["Pasay", "Manila", "Cebu City"]},
|
|
35
|
+
{"name": "GMA Network", "cities": ["Quezon City", "Makati"]},
|
|
36
|
+
{"name": "ABS-CBN Corporation", "cities": ["Quezon City", "Makati"]},
|
|
37
|
+
{"name": "Megaworld Corporation", "cities": ["Taguig", "Makati", "Pasig"]},
|
|
38
|
+
{"name": "Robinsons Land Corporation", "cities": ["Pasig", "Makati", "Cebu City"]},
|
|
39
|
+
{"name": "UnionBank of the Philippines", "cities": ["Pasig", "Makati", "Taguig"]},
|
|
40
|
+
{"name": "Security Bank Corporation", "cities": ["Makati", "Taguig", "Pasig"]}
|
|
41
|
+
],
|
|
42
|
+
"jobs": [
|
|
43
|
+
"Software Engineer", "Product Manager", "Data Analyst", "Marketing Manager", "Sales Executive",
|
|
44
|
+
"HR Manager", "Financial Analyst", "Project Manager", "Operations Manager", "UI/UX Designer",
|
|
45
|
+
"Frontend Developer", "Backend Developer", "DevOps Engineer", "QA Engineer", "Data Scientist",
|
|
46
|
+
"Accountant", "Business Analyst", "Customer Service Representative", "Call Center Agent", "Virtual Assistant",
|
|
47
|
+
"Civil Engineer", "Architect", "Nurse", "Teacher", "Seaman"
|
|
48
|
+
],
|
|
49
|
+
"catch_phrase_adjectives": [
|
|
50
|
+
"Innovative", "Reliable", "Professional", "Dynamic", "Trusted", "Leading", "Modern", "Sustainable",
|
|
51
|
+
"Customer-focused", "Quality-driven", "Excellent", "Advanced", "Strategic", "Premium"
|
|
52
|
+
],
|
|
53
|
+
"catch_phrase_nouns": [
|
|
54
|
+
"solutions", "services", "quality", "excellence", "innovation", "value", "partnership", "growth",
|
|
55
|
+
"performance", "reliability", "integrity", "success", "results", "commitment"
|
|
56
|
+
],
|
|
57
|
+
"catch_phrase_verbs": [
|
|
58
|
+
"deliver", "create", "build", "provide", "enable", "achieve", "drive", "transform", "empower",
|
|
59
|
+
"connect", "innovate", "lead", "develop", "optimize", "enhance"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"free_email_domains": [
|
|
3
|
+
"gmail.com", "yahoo.com", "yahoo.com.ph", "hotmail.com", "outlook.com",
|
|
4
|
+
"icloud.com", "mail.com", "ymail.com", "rocketmail.com", "live.com"
|
|
5
|
+
],
|
|
6
|
+
"tlds": [
|
|
7
|
+
"ph", "com.ph", "net.ph", "org.ph", "edu.ph", "gov.ph", "com", "net", "org", "io"
|
|
8
|
+
],
|
|
9
|
+
"domain_words": [
|
|
10
|
+
"philippines", "filipino", "pinoy", "manila", "metro", "cebu", "davao", "luzon", "visayas", "mindanao",
|
|
11
|
+
"pacific", "island", "tech", "digital", "online", "web", "media"
|
|
12
|
+
],
|
|
13
|
+
"user_agent_browsers": [
|
|
14
|
+
"Chrome", "Firefox", "Safari", "Edge", "Opera"
|
|
15
|
+
],
|
|
16
|
+
"user_agent_os": [
|
|
17
|
+
"Windows NT 10.0", "Macintosh; Intel Mac OS X 10_15_7", "X11; Linux x86_64", "iPhone; CPU iPhone OS 15_0", "Android 12"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
"Red", "Blue", "Green", "Yellow", "Orange", "Purple", "Pink", "Brown", "Black", "White",
|
|
4
|
+
"Gray", "Gold", "Silver", "Maroon", "Navy", "Olive", "Teal", "Aqua", "Coral", "Salmon",
|
|
5
|
+
"Turquoise", "Indigo", "Violet", "Crimson", "Burgundy", "Lavender", "Beige", "Ivory", "Tan", "Khaki"
|
|
6
|
+
]
|
|
7
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"first_names": {
|
|
3
|
+
"male": [
|
|
4
|
+
"Jose", "Juan", "Pedro", "Antonio", "Manuel", "Francisco", "Rafael", "Miguel", "Carlos", "Fernando",
|
|
5
|
+
"Ricardo", "Eduardo", "Roberto", "Alfredo", "Ernesto", "Reynaldo", "Rolando", "Rodolfo", "Romeo", "Ramon",
|
|
6
|
+
"Mark", "John", "Michael", "Christian", "James", "Joshua", "Daniel", "David", "Kevin", "Ryan",
|
|
7
|
+
"Jayson", "Jomar", "Jonel", "Jhon", "Jerome", "Jeffrey", "Joel", "Jonathan", "Joseph", "Jericho",
|
|
8
|
+
"Angelo", "Ariel", "Bryan", "Carlo", "Dennis", "Emmanuel", "Francis", "Gerald", "Harold", "Ian",
|
|
9
|
+
"Kenneth", "Lester", "Neil", "Oliver", "Patrick", "Renz", "Sherwin", "Vincent", "William", "Zach"
|
|
10
|
+
],
|
|
11
|
+
"female": [
|
|
12
|
+
"Maria", "Ana", "Rosa", "Carmen", "Teresa", "Josefa", "Luz", "Gloria", "Elena", "Isabel",
|
|
13
|
+
"Patricia", "Elizabeth", "Catherine", "Christine", "Michelle", "Jennifer", "Nicole", "Angela", "Jessica", "Stephanie",
|
|
14
|
+
"Grace", "Faith", "Joy", "Hope", "Charity", "Precious", "Princess", "Angel", "Divine", "Lovely",
|
|
15
|
+
"Kristine", "Kathleen", "Karen", "Kim", "Kimberly", "Kristen", "Kelly", "Karla", "Kate", "Katherine",
|
|
16
|
+
"Mary Jane", "Mae", "Maricel", "Maricris", "Marilou", "Marissa", "Marian", "Marianne", "Marjorie", "Marlene",
|
|
17
|
+
"Cherry", "Daisy", "Jasmine", "Rose", "Lily", "Iris", "Violet", "Ruby", "Pearl", "Jade"
|
|
18
|
+
],
|
|
19
|
+
"neutral": ["Alex", "Sam", "Jordan", "Angel", "Pat", "Chris", "Jamie", "Jess", "Casey", "Riley"]
|
|
20
|
+
},
|
|
21
|
+
"last_names": [
|
|
22
|
+
"Santos", "Reyes", "Cruz", "Bautista", "Ocampo", "Garcia", "Mendoza", "Torres", "Tomas", "Andrade",
|
|
23
|
+
"Castillo", "Rivera", "Flores", "Gonzales", "Ramos", "Aquino", "Fernandez", "Lopez", "Martinez", "Perez",
|
|
24
|
+
"Rodriguez", "Hernandez", "Villanueva", "De Leon", "Del Rosario", "De Guzman", "De La Cruz", "De Los Santos", "Dela Cruz", "Delos Reyes",
|
|
25
|
+
"Soriano", "Salazar", "Santiago", "Pascual", "Navarro", "Morales", "Miranda", "Mercado", "Marquez", "Manalang",
|
|
26
|
+
"Luna", "Lim", "Liwanag", "Lagman", "Lacson", "Jimenez", "Ignacio", "Ilagan", "Hidalgo", "Gutierrez",
|
|
27
|
+
"Gomez", "Francisco", "Estrada", "Enriquez", "Espiritu", "Diaz", "David", "Corpuz", "Concepcion", "Chua",
|
|
28
|
+
"Castro", "Cabrera", "Bonifacio", "Bernardino", "Bello", "Baluyot", "Aguilar", "Abalos", "Tan", "Sy",
|
|
29
|
+
"Co", "Ong", "Go", "Yu", "Lee", "Dy", "Ang", "Lao", "Yap", "Uy"
|
|
30
|
+
],
|
|
31
|
+
"name_formats": [
|
|
32
|
+
"{first_name} {last_name}"
|
|
33
|
+
],
|
|
34
|
+
"prefixes": {
|
|
35
|
+
"male": ["Mr.", "Dr.", "Atty.", "Engr.", "Prof.", "Hon."],
|
|
36
|
+
"female": ["Ms.", "Mrs.", "Dr.", "Atty.", "Engr.", "Prof.", "Hon."],
|
|
37
|
+
"neutral": ["Dr.", "Atty.", "Engr.", "Prof.", "Hon."]
|
|
38
|
+
},
|
|
39
|
+
"suffixes": ["Jr.", "Sr.", "III", "IV", "M.D.", "Ph.D.", "CPA", "MBA"]
|
|
40
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"words": [
|
|
3
|
+
"the", "and", "for", "are", "but", "not", "you", "all", "can", "had", "her", "was", "one", "our",
|
|
4
|
+
"out", "day", "get", "has", "him", "his", "how", "its", "may", "new", "now", "old", "see", "two",
|
|
5
|
+
"way", "who", "boy", "did", "own", "say", "she", "too", "use", "time", "very", "when", "come",
|
|
6
|
+
"could", "make", "like", "back", "only", "over", "such", "year", "into", "just", "most", "also",
|
|
7
|
+
"been", "call", "from", "have", "more", "made", "find", "long", "down", "look", "many", "then",
|
|
8
|
+
"them", "well", "would", "about", "after", "being", "could", "first", "great", "little", "might",
|
|
9
|
+
"never", "other", "right", "still", "their", "there", "these", "thing", "think", "those", "three",
|
|
10
|
+
"today", "under", "water", "where", "which", "while", "world", "write", "years"
|
|
11
|
+
],
|
|
12
|
+
"sentence_patterns": [
|
|
13
|
+
"The {adjective} {noun} {verb} the {adjective} {noun}.",
|
|
14
|
+
"A {noun} {verb} {adverb} in the {noun}.",
|
|
15
|
+
"{noun} {verb} {adverb}."
|
|
16
|
+
],
|
|
17
|
+
"adjectives": [
|
|
18
|
+
"quick", "brown", "lazy", "fast", "slow", "big", "small", "old", "new", "young",
|
|
19
|
+
"bright", "dark", "loud", "quiet", "hot", "cold", "warm", "cool", "soft", "hard",
|
|
20
|
+
"smooth", "rough", "clean", "dirty", "happy", "sad", "angry", "calm", "brave", "shy",
|
|
21
|
+
"clever", "kind", "rich", "poor", "strong", "weak", "tall", "short", "wide", "narrow"
|
|
22
|
+
],
|
|
23
|
+
"nouns": [
|
|
24
|
+
"dog", "cat", "bird", "fish", "tree", "house", "car", "book", "table", "chair",
|
|
25
|
+
"door", "window", "road", "river", "mountain", "ocean", "sky", "sun", "moon", "star",
|
|
26
|
+
"cloud", "rain", "wind", "fire", "water", "earth", "stone", "wood", "paper", "money",
|
|
27
|
+
"time", "place", "person", "child", "man", "woman", "friend", "family", "school", "work"
|
|
28
|
+
],
|
|
29
|
+
"verbs": [
|
|
30
|
+
"runs", "jumps", "walks", "talks", "sees", "hears", "feels", "thinks", "knows", "wants",
|
|
31
|
+
"needs", "likes", "loves", "finds", "gives", "takes", "makes", "says", "tells", "asks",
|
|
32
|
+
"helps", "works", "plays", "reads", "writes", "draws", "sings", "eats", "drinks", "sleeps"
|
|
33
|
+
],
|
|
34
|
+
"adverbs": [
|
|
35
|
+
"quickly", "slowly", "carefully", "happily", "sadly", "loudly", "quietly", "easily",
|
|
36
|
+
"hardly", "always", "never", "often", "sometimes", "usually", "really", "very", "quite"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"locations": [
|
|
3
|
+
{"city": "Warszawa", "exonym": "Warsaw", "state": "Mazowieckie", "state_abbr": "MZ", "postcode_prefix": "00", "lat_min": 52.18, "lat_max": 52.30, "lon_min": 20.90, "lon_max": 21.10},
|
|
4
|
+
{"city": "Kraków", "exonym": "Krakow", "state": "Małopolskie", "state_abbr": "MA", "postcode_prefix": "30", "lat_min": 50.02, "lat_max": 50.10, "lon_min": 19.88, "lon_max": 20.00},
|
|
5
|
+
{"city": "Łódź", "state": "Łódzkie", "state_abbr": "LD", "postcode_prefix": "90", "lat_min": 51.72, "lat_max": 51.82, "lon_min": 19.40, "lon_max": 19.52},
|
|
6
|
+
{"city": "Wrocław", "state": "Dolnośląskie", "state_abbr": "DS", "postcode_prefix": "50", "lat_min": 51.08, "lat_max": 51.15, "lon_min": 16.95, "lon_max": 17.10},
|
|
7
|
+
{"city": "Poznań", "state": "Wielkopolskie", "state_abbr": "WP", "postcode_prefix": "60", "lat_min": 52.38, "lat_max": 52.45, "lon_min": 16.88, "lon_max": 17.00},
|
|
8
|
+
{"city": "Gdańsk", "state": "Pomorskie", "state_abbr": "PM", "postcode_prefix": "80", "lat_min": 54.33, "lat_max": 54.42, "lon_min": 18.58, "lon_max": 18.70},
|
|
9
|
+
{"city": "Szczecin", "state": "Zachodniopomorskie", "state_abbr": "ZP", "postcode_prefix": "70", "lat_min": 53.40, "lat_max": 53.48, "lon_min": 14.52, "lon_max": 14.62},
|
|
10
|
+
{"city": "Bydgoszcz", "state": "Kujawsko-Pomorskie", "state_abbr": "KP", "postcode_prefix": "85", "lat_min": 53.10, "lat_max": 53.16, "lon_min": 17.98, "lon_max": 18.08},
|
|
11
|
+
{"city": "Lublin", "state": "Lubelskie", "state_abbr": "LU", "postcode_prefix": "20", "lat_min": 51.22, "lat_max": 51.28, "lon_min": 22.52, "lon_max": 22.60},
|
|
12
|
+
{"city": "Białystok", "state": "Podlaskie", "state_abbr": "PD", "postcode_prefix": "15", "lat_min": 53.12, "lat_max": 53.18, "lon_min": 23.14, "lon_max": 23.22},
|
|
13
|
+
{"city": "Katowice", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "40", "lat_min": 50.24, "lat_max": 50.28, "lon_min": 18.98, "lon_max": 19.06},
|
|
14
|
+
{"city": "Gdynia", "state": "Pomorskie", "state_abbr": "PM", "postcode_prefix": "81", "lat_min": 54.50, "lat_max": 54.55, "lon_min": 18.52, "lon_max": 18.58},
|
|
15
|
+
{"city": "Częstochowa", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "42", "lat_min": 50.80, "lat_max": 50.84, "lon_min": 19.10, "lon_max": 19.16},
|
|
16
|
+
{"city": "Radom", "state": "Mazowieckie", "state_abbr": "MZ", "postcode_prefix": "26", "lat_min": 51.40, "lat_max": 51.44, "lon_min": 21.14, "lon_max": 21.20},
|
|
17
|
+
{"city": "Sosnowiec", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "41", "lat_min": 50.28, "lat_max": 50.32, "lon_min": 19.12, "lon_max": 19.18},
|
|
18
|
+
{"city": "Toruń", "state": "Kujawsko-Pomorskie", "state_abbr": "KP", "postcode_prefix": "87", "lat_min": 53.00, "lat_max": 53.04, "lon_min": 18.58, "lon_max": 18.64},
|
|
19
|
+
{"city": "Kielce", "state": "Świętokrzyskie", "state_abbr": "SK", "postcode_prefix": "25", "lat_min": 50.86, "lat_max": 50.90, "lon_min": 20.62, "lon_max": 20.68},
|
|
20
|
+
{"city": "Rzeszów", "state": "Podkarpackie", "state_abbr": "PK", "postcode_prefix": "35", "lat_min": 50.02, "lat_max": 50.06, "lon_min": 21.98, "lon_max": 22.04},
|
|
21
|
+
{"city": "Gliwice", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "44", "lat_min": 50.28, "lat_max": 50.32, "lon_min": 18.66, "lon_max": 18.72},
|
|
22
|
+
{"city": "Zabrze", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "41", "lat_min": 50.30, "lat_max": 50.34, "lon_min": 18.78, "lon_max": 18.84},
|
|
23
|
+
{"city": "Olsztyn", "state": "Warmińsko-Mazurskie", "state_abbr": "WM", "postcode_prefix": "10", "lat_min": 53.76, "lat_max": 53.80, "lon_min": 20.46, "lon_max": 20.52},
|
|
24
|
+
{"city": "Bielsko-Biała", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "43", "lat_min": 49.82, "lat_max": 49.86, "lon_min": 19.02, "lon_max": 19.08},
|
|
25
|
+
{"city": "Bytom", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "41", "lat_min": 50.34, "lat_max": 50.38, "lon_min": 18.90, "lon_max": 18.96},
|
|
26
|
+
{"city": "Zielona Góra", "state": "Lubuskie", "state_abbr": "LB", "postcode_prefix": "65", "lat_min": 51.93, "lat_max": 51.97, "lon_min": 15.50, "lon_max": 15.56},
|
|
27
|
+
{"city": "Rybnik", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "44", "lat_min": 50.10, "lat_max": 50.14, "lon_min": 18.54, "lon_max": 18.60},
|
|
28
|
+
{"city": "Ruda Śląska", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "41", "lat_min": 50.26, "lat_max": 50.30, "lon_min": 18.84, "lon_max": 18.90},
|
|
29
|
+
{"city": "Opole", "state": "Opolskie", "state_abbr": "OP", "postcode_prefix": "45", "lat_min": 50.66, "lat_max": 50.70, "lon_min": 17.92, "lon_max": 17.98},
|
|
30
|
+
{"city": "Tychy", "state": "Śląskie", "state_abbr": "SL", "postcode_prefix": "43", "lat_min": 50.12, "lat_max": 50.16, "lon_min": 18.98, "lon_max": 19.04},
|
|
31
|
+
{"city": "Gorzów Wielkopolski", "state": "Lubuskie", "state_abbr": "LB", "postcode_prefix": "66", "lat_min": 52.73, "lat_max": 52.77, "lon_min": 15.22, "lon_max": 15.28},
|
|
32
|
+
{"city": "Elbląg", "state": "Warmińsko-Mazurskie", "state_abbr": "WM", "postcode_prefix": "82", "lat_min": 54.15, "lat_max": 54.19, "lon_min": 19.40, "lon_max": 19.46}
|
|
33
|
+
],
|
|
34
|
+
"streets_by_city": {
|
|
35
|
+
"Warszawa": ["Marszałkowska", "Nowy Świat", "Krakowskie Przedmieście", "Aleje Jerozolimskie", "Świętokrzyska", "Puławska", "Żelazna", "Grójecka", "Targowa", "Wołoska"],
|
|
36
|
+
"Kraków": ["Floriańska", "Grodzka", "Szewska", "Długa", "Starowiślna", "Dietla", "Karmelicka", "Krowoderska", "Pawia", "Wielopole"],
|
|
37
|
+
"Łódź": ["Piotrkowska", "Narutowicza", "Kilińskiego", "Sienkiewicza", "Zachodnia", "Pomorska", "Legionów", "Zielona", "Wólczańska", "Kościuszki"],
|
|
38
|
+
"Wrocław": ["Świdnicka", "Oławska", "Ruska", "Krupnicza", "Podwale", "Szewska", "Kuźnicza", "Ofiar Oświęcimskich", "Piłsudskiego", "Kazimierza Wielkiego"],
|
|
39
|
+
"Poznań": ["Święty Marcin", "Półwiejska", "Ratajczaka", "27 Grudnia", "Garbary", "Wrocławska", "Głogowska", "Roosevelta", "Bukowska", "Dąbrowskiego"],
|
|
40
|
+
"Gdańsk": ["Długa", "Długi Targ", "Mariacka", "Piwna", "Ogarna", "Chlebnicka", "Tkacka", "Św. Ducha", "Podwale Grodzkie", "Wały Jagiellońskie"],
|
|
41
|
+
"Szczecin": ["Aleja Wojska Polskiego", "Bogusława", "Monte Cassino", "Niepodległości", "Jagiellońska", "Rayskiego", "Piłsudskiego", "Potulicka", "Wojska Polskiego", "Matejki"],
|
|
42
|
+
"Bydgoszcz": ["Gdańska", "Dworcowa", "Długa", "Mostowa", "Cieszkowskiego", "Jagiellońska", "Focha", "Nakielska", "Kościuszki", "Śniadeckich"],
|
|
43
|
+
"Lublin": ["Krakowskie Przedmieście", "Lipowa", "Narutowicza", "Chopina", "Racławickie", "Zana", "Głęboka", "Lubartowska", "Zamojska", "Unicka"],
|
|
44
|
+
"Białystok": ["Lipowa", "Sienkiewicza", "Rynek Kościuszki", "Malmeda", "Suraska", "Legionowa", "Branickiego", "Kilińskiego", "Krakowska", "Warszawska"],
|
|
45
|
+
"Katowice": ["3 Maja", "Mariacka", "Stawowa", "Mickiewicza", "Kościuszki", "Warszawska", "Chorzowska", "Sokolska", "Pułaskiego", "Józefowska"],
|
|
46
|
+
"Gdynia": ["Świętojańska", "Starowiejska", "10 Lutego", "Abrahama", "Władysława IV", "Piłsudskiego", "Morska", "Portowa", "Śląska", "Waszyngtona"],
|
|
47
|
+
"Częstochowa": ["Aleja Najświętszej Maryi Panny", "Piłsudskiego", "Kościuszki", "Wolności", "Śląska", "Dekabrystów", "Jasnogórska", "Okulickiego", "Krakowska", "Warszawska"],
|
|
48
|
+
"Radom": ["Żeromskiego", "Piłsudskiego", "Malczewskiego", "Słowackiego", "25 Czerwca", "Sienkiewicza", "Kościuszki", "Planty", "Traugutta", "Moniuszki"],
|
|
49
|
+
"Sosnowiec": ["3 Maja", "Modrzejowska", "Piłsudskiego", "Małachowskiego", "Kościelna", "Sienkiewicza", "Sobieskiego", "Wojska Polskiego", "Ostrogórska", "Będzińska"],
|
|
50
|
+
"Toruń": ["Szeroka", "Żeglarska", "Mostowa", "Piekary", "Chełmińska", "Podmurna", "Królowej Jadwigi", "Grudziądzka", "Szosa Chełmińska", "Legionów"],
|
|
51
|
+
"Kielce": ["Sienkiewicza", "Bodzentyńska", "Żelazna", "Paderewskiego", "Krakowska", "Wojska Polskiego", "IX Wieków Kielc", "Warszawska", "Źródłowa", "Massalskiego"],
|
|
52
|
+
"Rzeszów": ["3 Maja", "Kościuszki", "Piłsudskiego", "Grunwaldzka", "Dąbrowskiego", "Podwisłocze", "Rejtana", "Lisa-Kuli", "Cieplińskiego", "Kopisto"],
|
|
53
|
+
"Gliwice": ["Zwycięstwa", "Dolnych Wałów", "Górnych Wałów", "Zygmunta Starego", "Jagiellońska", "Śródmiejska", "Wyszyńskiego", "Kozielska", "Toszecka", "Chorzowska"],
|
|
54
|
+
"Zabrze": ["Wolności", "3 Maja", "Roosevelta", "Bytomska", "Grunwaldzka", "Piłsudskiego", "Dworcowa", "Sobieskiego", "Powstańców Śląskich", "De Gaulle'a"],
|
|
55
|
+
"Olsztyn": ["Staromiejska", "Prosta", "Dąbrowszczaków", "Partyzantów", "Pieniężnego", "Kościuszki", "Niepodległości", "Jagiellońska", "Piłsudskiego", "Limanowskiego"],
|
|
56
|
+
"Bielsko-Biała": ["11 Listopada", "Cieszyńska", "3 Maja", "Żywiecka", "Piastowska", "Partyzantów", "Dmowskiego", "Sobieskiego", "Legionów", "Krakowska"],
|
|
57
|
+
"Bytom": ["Dworcowa", "Podgórna", "Gliwicka", "Katowicka", "Wrocławska", "Miarki", "Piłsudskiego", "Strzelców Bytomskich", "Powstańców Śląskich", "Chorzowska"],
|
|
58
|
+
"Zielona Góra": ["Bohaterów Westerplatte", "Kupiecka", "Żeromskiego", "Niepodległości", "Jedności", "Batorego", "Wyszyńskiego", "Podgórna", "Reja", "Sienkiewicza"],
|
|
59
|
+
"Rybnik": ["3 Maja", "Sobieskiego", "Chrobrego", "Piłsudskiego", "Gliwicka", "Żorska", "Wodzisławska", "Raciborska", "Kościuszki", "Budowlanych"],
|
|
60
|
+
"Ruda Śląska": ["1 Maja", "Niedurnego", "Czarnoleśna", "Piastowska", "Goduli", "Katowicka", "Bytomska", "Wolności", "Zabrzańska", "Chorzowska"],
|
|
61
|
+
"Opole": ["Krakowska", "Książąt Opolskich", "Ozimska", "Reymonta", "Piastowska", "Damrota", "Koraszewskiego", "Katowicka", "Oleska", "Nyska"],
|
|
62
|
+
"Tychy": ["Jana Pawła II", "Grota-Roweckiego", "Piłsudskiego", "Budowlanych", "Dmowskiego", "Niepodległości", "Armii Krajowej", "Sikorskiego", "Edukacji", "Beskidzka"],
|
|
63
|
+
"Gorzów Wielkopolski": ["Sikorskiego", "Chrobrego", "Hawelańska", "Walczaka", "Mieszka I", "Jagiełły", "Kosynierów Gdyńskich", "Kombatantów", "Słowiańska", "Teatralna"],
|
|
64
|
+
"Elbląg": ["Stary Rynek", "Hetmańska", "1 Maja", "Królewiecka", "Giermków", "Nowowiejska", "Płk. Dąbka", "Robotnicza", "Grunwaldzka", "Lotnicza"]
|
|
65
|
+
},
|
|
66
|
+
"postcode_format": "##-###",
|
|
67
|
+
"address_formats": [
|
|
68
|
+
"ul. {street} {building_number}, {postcode} {city}",
|
|
69
|
+
"ul. {street} {building_number}/{unit}, {postcode} {city}"
|
|
70
|
+
],
|
|
71
|
+
"country": "Polska",
|
|
72
|
+
"country_code": "PL",
|
|
73
|
+
"phone_area_codes": {
|
|
74
|
+
"Mazowieckie": ["22", "24", "25", "29"],
|
|
75
|
+
"Małopolskie": ["12", "14", "15", "18"],
|
|
76
|
+
"Łódzkie": ["42", "43", "44", "46"],
|
|
77
|
+
"Dolnośląskie": ["71", "74", "75", "76"],
|
|
78
|
+
"Wielkopolskie": ["61", "62", "63", "65"],
|
|
79
|
+
"Pomorskie": ["58", "59"],
|
|
80
|
+
"Zachodniopomorskie": ["91", "94", "95"],
|
|
81
|
+
"Kujawsko-Pomorskie": ["52", "54", "56"],
|
|
82
|
+
"Lubelskie": ["81", "82", "83", "84"],
|
|
83
|
+
"Podlaskie": ["85", "86", "87"],
|
|
84
|
+
"Śląskie": ["32", "33", "34"],
|
|
85
|
+
"Świętokrzyskie": ["41"],
|
|
86
|
+
"Podkarpackie": ["13", "16", "17"],
|
|
87
|
+
"Warmińsko-Mazurskie": ["55", "89"],
|
|
88
|
+
"Lubuskie": ["68", "95"],
|
|
89
|
+
"Opolskie": ["77"]
|
|
90
|
+
}
|
|
91
|
+
}
|