pointblank 0.19.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/_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-0.19.0.dist-info → pointblank-0.20.0.dist-info}/METADATA +45 -1
- pointblank-0.20.0.dist-info/RECORD +366 -0
- {pointblank-0.19.0.dist-info → pointblank-0.20.0.dist-info}/WHEEL +1 -1
- pointblank-0.19.0.dist-info/RECORD +0 -59
- {pointblank-0.19.0.dist-info → pointblank-0.20.0.dist-info}/entry_points.txt +0 -0
- {pointblank-0.19.0.dist-info → pointblank-0.20.0.dist-info}/licenses/LICENSE +0 -0
- {pointblank-0.19.0.dist-info → pointblank-0.20.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"locations": [
|
|
3
|
+
{"city": "Buenos Aires", "state": "Ciudad Autónoma de Buenos Aires", "state_abbr": "CABA", "postcode_prefix": "C1", "lat_min": -34.65, "lat_max": -34.55, "lon_min": -58.50, "lon_max": -58.35},
|
|
4
|
+
{"city": "Córdoba", "state": "Córdoba", "state_abbr": "CBA", "postcode_prefix": "X5", "lat_min": -31.45, "lat_max": -31.38, "lon_min": -64.22, "lon_max": -64.15},
|
|
5
|
+
{"city": "Rosario", "state": "Santa Fe", "state_abbr": "SF", "postcode_prefix": "S2", "lat_min": -32.98, "lat_max": -32.90, "lon_min": -60.70, "lon_max": -60.62},
|
|
6
|
+
{"city": "Mendoza", "state": "Mendoza", "state_abbr": "MZA", "postcode_prefix": "M5", "lat_min": -32.92, "lat_max": -32.86, "lon_min": -68.88, "lon_max": -68.80},
|
|
7
|
+
{"city": "San Miguel de Tucumán", "state": "Tucumán", "state_abbr": "TUC", "postcode_prefix": "T4", "lat_min": -26.85, "lat_max": -26.80, "lon_min": -65.25, "lon_max": -65.18},
|
|
8
|
+
{"city": "La Plata", "state": "Buenos Aires", "state_abbr": "BA", "postcode_prefix": "B1", "lat_min": -34.95, "lat_max": -34.88, "lon_min": -57.98, "lon_max": -57.92},
|
|
9
|
+
{"city": "Mar del Plata", "state": "Buenos Aires", "state_abbr": "BA", "postcode_prefix": "B7", "lat_min": -38.05, "lat_max": -37.98, "lon_min": -57.58, "lon_max": -57.52},
|
|
10
|
+
{"city": "Salta", "state": "Salta", "state_abbr": "SAL", "postcode_prefix": "A4", "lat_min": -24.82, "lat_max": -24.76, "lon_min": -65.45, "lon_max": -65.38},
|
|
11
|
+
{"city": "Santa Fe", "state": "Santa Fe", "state_abbr": "SF", "postcode_prefix": "S3", "lat_min": -31.68, "lat_max": -31.60, "lon_min": -60.75, "lon_max": -60.68},
|
|
12
|
+
{"city": "San Juan", "state": "San Juan", "state_abbr": "SJ", "postcode_prefix": "J5", "lat_min": -31.55, "lat_max": -31.50, "lon_min": -68.55, "lon_max": -68.50},
|
|
13
|
+
{"city": "Resistencia", "state": "Chaco", "state_abbr": "CHA", "postcode_prefix": "H3", "lat_min": -27.48, "lat_max": -27.42, "lon_min": -59.02, "lon_max": -58.96},
|
|
14
|
+
{"city": "Neuquén", "state": "Neuquén", "state_abbr": "NQN", "postcode_prefix": "Q8", "lat_min": -38.98, "lat_max": -38.92, "lon_min": -68.10, "lon_max": -68.02},
|
|
15
|
+
{"city": "Corrientes", "state": "Corrientes", "state_abbr": "COR", "postcode_prefix": "W3", "lat_min": -27.50, "lat_max": -27.44, "lon_min": -58.86, "lon_max": -58.80},
|
|
16
|
+
{"city": "Posadas", "state": "Misiones", "state_abbr": "MIS", "postcode_prefix": "N3", "lat_min": -27.40, "lat_max": -27.34, "lon_min": -55.92, "lon_max": -55.86},
|
|
17
|
+
{"city": "San Salvador de Jujuy", "state": "Jujuy", "state_abbr": "JUJ", "postcode_prefix": "Y4", "lat_min": -24.20, "lat_max": -24.16, "lon_min": -65.32, "lon_max": -65.28},
|
|
18
|
+
{"city": "Paraná", "state": "Entre Ríos", "state_abbr": "ER", "postcode_prefix": "E3", "lat_min": -31.78, "lat_max": -31.72, "lon_min": -60.55, "lon_max": -60.48},
|
|
19
|
+
{"city": "Formosa", "state": "Formosa", "state_abbr": "FOR", "postcode_prefix": "P3", "lat_min": -26.20, "lat_max": -26.16, "lon_min": -58.20, "lon_max": -58.14},
|
|
20
|
+
{"city": "San Luis", "state": "San Luis", "state_abbr": "SL", "postcode_prefix": "D5", "lat_min": -33.32, "lat_max": -33.28, "lon_min": -66.38, "lon_max": -66.32},
|
|
21
|
+
{"city": "Santiago del Estero", "state": "Santiago del Estero", "state_abbr": "SGO", "postcode_prefix": "G4", "lat_min": -27.82, "lat_max": -27.76, "lon_min": -64.28, "lon_max": -64.22},
|
|
22
|
+
{"city": "Bahía Blanca", "state": "Buenos Aires", "state_abbr": "BA", "postcode_prefix": "B8", "lat_min": -38.75, "lat_max": -38.68, "lon_min": -62.30, "lon_max": -62.22}
|
|
23
|
+
],
|
|
24
|
+
"streets_by_city": {
|
|
25
|
+
"Buenos Aires": ["Avenida 9 de Julio", "Avenida Corrientes", "Avenida Santa Fe", "Calle Florida", "Avenida de Mayo", "Avenida Rivadavia", "Avenida Callao", "Defensa", "San Martín", "Lavalle", "Sarmiento", "Belgrano", "Reconquista", "25 de Mayo", "Balcarce", "Bolívar", "Perú", "Chacabuco", "Piedras", "Tacuarí"],
|
|
26
|
+
"Córdoba": ["Avenida Colón", "Avenida General Paz", "Boulevard San Juan", "Calle Obispo Trejo", "Avenida Vélez Sársfield", "San Martín", "Dean Funes", "Rivera Indarte", "27 de Abril", "Caseros", "Chacabuco", "Buenos Aires", "Entre Ríos", "Santa Rosa", "Belgrano", "Duarte Quirós", "Rosario de Santa Fe", "Ituzaingó", "La Rioja", "Corrientes"],
|
|
27
|
+
"Rosario": ["Calle Córdoba", "Boulevard Oroño", "Avenida Pellegrini", "San Lorenzo", "San Martín", "Santa Fe", "Entre Ríos", "Corrientes", "Mitre", "Sarmiento", "Maipú", "Mendoza", "Rioja", "San Juan", "Tucumán", "Paraguay", "Urquiza", "San Luis", "Buenos Aires", "Presidente Roca"],
|
|
28
|
+
"Mendoza": ["Avenida San Martín", "Calle Sarmiento", "Las Heras", "Avenida Colón", "San Juan", "9 de Julio", "Gutiérrez", "Patricias Mendocinas", "España", "Chile", "Perú", "Montevideo", "Lavalle", "Rivadavia", "Necochea", "Garibaldi", "Godoy Cruz", "Belgrano", "San Lorenzo", "Mitre"],
|
|
29
|
+
"San Miguel de Tucumán": ["Calle San Martín", "24 de Septiembre", "Avenida Mate de Luna", "Mendoza", "Maipú", "Muñecas", "Las Piedras", "Congreso", "Junín", "Santiago", "Córdoba", "Entre Ríos", "Buenos Aires", "Crisóstomo Álvarez", "San Juan", "Rivadavia", "Laprida", "Lamadrid", "General Paz", "Corrientes"],
|
|
30
|
+
"La Plata": ["Avenida 7", "Calle 50", "Diagonal 73", "Avenida 13", "Calle 47", "Avenida 44", "Calle 8", "Avenida 1", "Diagonal 74", "Calle 12", "Avenida 53", "Calle 6", "Avenida 60", "Calle 4", "Avenida 51", "Calle 10", "Avenida 32", "Diagonal 80", "Calle 48", "Avenida 38"],
|
|
31
|
+
"Mar del Plata": ["Avenida Colón", "San Martín", "Avenida Luro", "Rivadavia", "Córdoba", "Corrientes", "Buenos Aires", "Independencia", "Mitre", "Belgrano", "La Rioja", "Entre Ríos", "Catamarca", "San Luis", "Moreno", "Brown", "Santa Fe", "Rawson", "Güemes", "Salta"],
|
|
32
|
+
"Salta": ["Calle Caseros", "Avenida San Martín", "Balcarce", "España", "Buenos Aires", "Mitre", "Alvarado", "Zuviría", "Florida", "Córdoba", "Mendoza", "Dean Funes", "Urquiza", "Necochea", "San Juan", "Entre Ríos", "Santa Fe", "Rivadavia", "Belgrano", "Güemes"],
|
|
33
|
+
"Santa Fe": ["San Martín", "25 de Mayo", "San Jerónimo", "Avenida Freyre", "Rivadavia", "Tucumán", "Mendoza", "San Luis", "Crespo", "Primera Junta", "General López", "Salta", "9 de Julio", "Obispo Gelabert", "Urquiza", "San Juan", "Entre Ríos", "Corrientes", "Catamarca", "La Rioja"],
|
|
34
|
+
"San Juan": ["Avenida José Ignacio de la Roza", "Calle Mendoza", "Avenida Libertador", "General Acha", "Rivadavia", "Entre Ríos", "Mitre", "San Luis", "Tucumán", "Catamarca", "Sarmiento", "25 de Mayo", "Laprida", "San Martín", "España", "Chile", "Córdoba", "Santa Fe", "Caseros", "Rawson"],
|
|
35
|
+
"Resistencia": ["Avenida 9 de Julio", "Avenida 25 de Mayo", "Juan B. Justo", "Arturo Illia", "San Martín", "Colón", "Sarmiento", "Perón", "Mitre", "Necochea", "Belgrano", "Güemes", "French", "Brown", "Santa Fe", "Córdoba", "Corrientes", "Mendoza", "Santiago del Estero", "Tucumán"],
|
|
36
|
+
"Neuquén": ["Avenida Argentina", "San Martín", "Avenida Olascoaga", "Roca", "Santa Fe", "Rivadavia", "Alderete", "Alberdi", "Sarmiento", "Mitre", "Córdoba", "Tucumán", "Entre Ríos", "Corrientes", "Mendoza", "Jujuy", "Catamarca", "San Luis", "La Rioja", "Santiago del Estero"],
|
|
37
|
+
"Corrientes": ["Junín", "9 de Julio", "San Juan", "Avenida Costanera", "Mendoza", "Córdoba", "Catamarca", "Entre Ríos", "San Martín", "Salta", "La Rioja", "Pellegrini", "Placido Martínez", "Fray José de la Quintana", "Carlos Pellegrini", "Hipólito Yrigoyen", "Buenos Aires", "Santa Fe", "Tucumán", "San Luis"],
|
|
38
|
+
"Posadas": ["Calle Bolívar", "San Martín", "Avenida Roque Sáenz Peña", "Félix de Azara", "Colón", "Junín", "San Lorenzo", "Ayacucho", "Buenos Aires", "Córdoba", "Entre Ríos", "Corrientes", "Rivadavia", "La Rioja", "Santa Fe", "Tucumán", "Salta", "Catamarca", "Mendoza", "San Juan"],
|
|
39
|
+
"San Salvador de Jujuy": ["Belgrano", "Avenida El Éxodo", "Balcarce", "Gorriti", "Lavalle", "San Martín", "Necochea", "Lamadrid", "Güemes", "Alvear", "Otero", "Independencia", "Sarmiento", "Mitre", "Alem", "Senador Pérez", "Patricias Argentinas", "19 de Abril", "Ramirez de Velazco", "Ascasubi"],
|
|
40
|
+
"Paraná": ["San Martín", "25 de Mayo", "Urquiza", "San Juan", "Corrientes", "Buenos Aires", "Monte Caseros", "Cervantes", "España", "Gualeguaychú", "Entre Ríos", "La Paz", "Victoria", "Villaguay", "Diamante", "Gualeguay", "Nogoyá", "Concordia", "Colón", "Uruguay"],
|
|
41
|
+
"Formosa": ["Avenida 25 de Mayo", "San Martín", "Belgrano", "Padre Patiño", "Saavedra", "Moreno", "Brandsen", "Fotheringham", "España", "San Luis", "Córdoba", "Rivadavia", "Mitre", "Güemes", "Dean Funes", "Pringles", "Tucumán", "Santa Fe", "Entre Ríos", "Corrientes"],
|
|
42
|
+
"San Luis": ["Avenida Illia", "San Martín", "Rivadavia", "Colón", "Bolívar", "Belgrano", "Pringles", "Chacabuco", "Junín", "9 de Julio", "Ayacucho", "Falucho", "Pedernera", "Lavalle", "San Lorenzo", "25 de Mayo", "España", "Tomás Jofré", "Caseros", "General Paz"],
|
|
43
|
+
"Santiago del Estero": ["Avenida Belgrano", "Libertad", "24 de Septiembre", "Independencia", "Buenos Aires", "Tucumán", "Mitre", "Sarmiento", "Moreno", "San Martín", "Rivadavia", "Alsina", "Roca", "Pellegrini", "Entre Ríos", "Córdoba", "Corrientes", "Mendoza", "San Juan", "Santa Fe"],
|
|
44
|
+
"Bahía Blanca": ["Avenida Colón", "San Martín", "Alsina", "O'Higgins", "Chiclana", "Brown", "Estomba", "Sarmiento", "Moreno", "Zelarrayán", "Mitre", "Belgrano", "Soler", "Rodríguez", "Dorrego", "Vieytes", "Lavalle", "Rondeau", "España", "19 de Mayo"]
|
|
45
|
+
},
|
|
46
|
+
"postcode_format": "####",
|
|
47
|
+
"address_formats": [
|
|
48
|
+
"{street} {building_number}, {city}, {state_abbr} {postcode}",
|
|
49
|
+
"{street} {building_number}, {postcode} {city}",
|
|
50
|
+
"{city}, {street} {building_number}"
|
|
51
|
+
],
|
|
52
|
+
"country": "Argentina",
|
|
53
|
+
"country_code": "AR",
|
|
54
|
+
"phone_area_codes": {
|
|
55
|
+
"Ciudad Autónoma de Buenos Aires": ["11"],
|
|
56
|
+
"Córdoba": ["351"],
|
|
57
|
+
"Santa Fe": ["341", "342"],
|
|
58
|
+
"Mendoza": ["261"],
|
|
59
|
+
"Tucumán": ["381"],
|
|
60
|
+
"Buenos Aires": ["221", "223"],
|
|
61
|
+
"Salta": ["387"],
|
|
62
|
+
"San Juan": ["264"],
|
|
63
|
+
"Chaco": ["362"],
|
|
64
|
+
"Neuquén": ["299"],
|
|
65
|
+
"Corrientes": ["379"],
|
|
66
|
+
"Misiones": ["376"],
|
|
67
|
+
"Jujuy": ["388"],
|
|
68
|
+
"Entre Ríos": ["343"],
|
|
69
|
+
"Formosa": ["370"],
|
|
70
|
+
"San Luis": ["266"],
|
|
71
|
+
"Santiago del Estero": ["385"]
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"suffixes": [
|
|
3
|
+
"S.A.", "S.R.L.", "S.A.S.", "S.C.A.", "Coop.", "Ltda.", "Group", "Argentina", "AR", "Holdings"
|
|
4
|
+
],
|
|
5
|
+
"formats": [
|
|
6
|
+
"{last_name} {suffix}",
|
|
7
|
+
"{adjective} {noun} {suffix}",
|
|
8
|
+
"{adjective} {noun}",
|
|
9
|
+
"{noun} {suffix}"
|
|
10
|
+
],
|
|
11
|
+
"adjectives": [
|
|
12
|
+
"Argentina", "Austral", "Pampa", "Río", "Sur", "Norte", "Nacional", "Federal", "United", "Global",
|
|
13
|
+
"Premier", "First", "Modern", "Digital", "Smart", "Dynamic", "Latin", "Advanced", "New", "Gran"
|
|
14
|
+
],
|
|
15
|
+
"nouns": [
|
|
16
|
+
"Bank", "Telecom", "Energy", "Power", "Gas", "Pharma", "Agro", "Electronics", "Engineering",
|
|
17
|
+
"Manufacturing", "Logistics", "Transport", "Trading", "Insurance", "Finance", "Construction", "Foods", "Retail", "Steel", "Shipping"
|
|
18
|
+
],
|
|
19
|
+
"well_known_companies": [
|
|
20
|
+
{"name": "YPF", "cities": ["Buenos Aires"]},
|
|
21
|
+
{"name": "Mercado Libre", "cities": ["Buenos Aires"]},
|
|
22
|
+
{"name": "Techint Group", "cities": ["Buenos Aires"]},
|
|
23
|
+
{"name": "Banco Galicia", "cities": ["Buenos Aires", "Córdoba", "Rosario"]},
|
|
24
|
+
{"name": "Banco Santander Río", "cities": ["Buenos Aires", "Mendoza"]},
|
|
25
|
+
{"name": "Banco Macro", "cities": ["Buenos Aires", "Salta"]},
|
|
26
|
+
{"name": "Telecom Argentina", "cities": ["Buenos Aires"]},
|
|
27
|
+
{"name": "Claro Argentina", "cities": ["Buenos Aires", "Córdoba"]},
|
|
28
|
+
{"name": "Movistar Argentina", "cities": ["Buenos Aires", "Rosario"]},
|
|
29
|
+
{"name": "Aerolíneas Argentinas", "cities": ["Buenos Aires"]},
|
|
30
|
+
{"name": "Arcor", "cities": ["Córdoba", "Buenos Aires"]},
|
|
31
|
+
{"name": "Molinos Río de la Plata", "cities": ["Buenos Aires"]},
|
|
32
|
+
{"name": "Quilmes", "cities": ["Buenos Aires"]},
|
|
33
|
+
{"name": "Tenaris", "cities": ["Buenos Aires"]},
|
|
34
|
+
{"name": "Ternium Argentina", "cities": ["Buenos Aires", "Rosario"]},
|
|
35
|
+
{"name": "Pan American Energy", "cities": ["Buenos Aires", "Neuquén"]},
|
|
36
|
+
{"name": "Pampa Energía", "cities": ["Buenos Aires"]},
|
|
37
|
+
{"name": "Globant", "cities": ["Buenos Aires", "Rosario", "Córdoba"]},
|
|
38
|
+
{"name": "Despegar", "cities": ["Buenos Aires"]},
|
|
39
|
+
{"name": "Grupo Clarín", "cities": ["Buenos Aires"]}
|
|
40
|
+
],
|
|
41
|
+
"jobs": [
|
|
42
|
+
"Software Engineer", "Product Manager", "Data Analyst", "Marketing Manager", "Sales Representative",
|
|
43
|
+
"HR Manager", "Financial Analyst", "Project Manager", "Operations Manager", "UI/UX Designer",
|
|
44
|
+
"Frontend Developer", "Backend Developer", "DevOps Engineer", "QA Engineer", "Data Scientist",
|
|
45
|
+
"Accountant", "Business Analyst", "Customer Service Representative", "Logistics Coordinator", "Procurement Specialist",
|
|
46
|
+
"Agronomist", "Industrial Engineer", "Production Manager", "Quality Manager", "IT Administrator"
|
|
47
|
+
],
|
|
48
|
+
"catch_phrase_adjectives": [
|
|
49
|
+
"Innovative", "Reliable", "Professional", "Dynamic", "Trusted", "Leading", "Modern", "Sustainable",
|
|
50
|
+
"Customer-focused", "Quality-driven", "Latin American", "Regional"
|
|
51
|
+
],
|
|
52
|
+
"catch_phrase_nouns": [
|
|
53
|
+
"solutions", "services", "quality", "excellence", "innovation", "value", "partnership", "growth",
|
|
54
|
+
"performance", "reliability", "integrity", "success"
|
|
55
|
+
],
|
|
56
|
+
"catch_phrase_verbs": [
|
|
57
|
+
"deliver", "create", "build", "provide", "enable", "achieve", "drive", "transform", "empower",
|
|
58
|
+
"connect", "innovate", "lead"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"free_email_domains": [
|
|
3
|
+
"gmail.com", "hotmail.com", "yahoo.com.ar", "outlook.com", "live.com.ar",
|
|
4
|
+
"fibertel.com.ar", "arnet.com.ar", "speedy.com.ar", "ciudad.com.ar", "uol.com.ar"
|
|
5
|
+
],
|
|
6
|
+
"tlds": [
|
|
7
|
+
"ar", "com.ar", "com", "net", "org", "io", "gob.ar"
|
|
8
|
+
],
|
|
9
|
+
"domain_words": [
|
|
10
|
+
"argentina", "argentino", "buenosaires", "pampa", "tango", "gaucho", "andes", "plata",
|
|
11
|
+
"tech", "digital", "online", "web", "sur", "austral"
|
|
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,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"first_names": {
|
|
3
|
+
"male": [
|
|
4
|
+
"Juan", "Carlos", "Jorge", "Luis", "José", "Miguel", "Daniel", "Pablo", "Martín", "Alejandro",
|
|
5
|
+
"Fernando", "Ricardo", "Eduardo", "Sergio", "Diego", "Andrés", "Marcelo", "Gustavo", "Roberto", "Raúl",
|
|
6
|
+
"Nicolás", "Matías", "Lucas", "Facundo", "Tomás", "Agustín", "Sebastián", "Leandro", "Maximiliano", "Franco",
|
|
7
|
+
"Gonzalo", "Ignacio", "Federico", "Santiago", "Joaquín", "Ezequiel", "Rodrigo", "Hernán", "Mauricio", "Cristian",
|
|
8
|
+
"Gabriel", "Javier", "Oscar", "Ramón", "Alberto", "Víctor", "Julio", "César", "Rubén", "Mario",
|
|
9
|
+
"Emiliano", "Lautaro", "Thiago", "Benjamín", "Valentín", "Bruno", "Axel", "Kevin", "Brian", "Iván"
|
|
10
|
+
],
|
|
11
|
+
"female": [
|
|
12
|
+
"María", "Ana", "Laura", "Claudia", "Silvia", "Patricia", "Graciela", "Mónica", "Adriana", "Marta",
|
|
13
|
+
"Gabriela", "Verónica", "Mariana", "Carolina", "Florencia", "Luciana", "Romina", "Valeria", "Daniela", "Vanesa",
|
|
14
|
+
"Julieta", "Camila", "Sofía", "Martina", "Micaela", "Agustina", "Victoria", "Lucía", "Paula", "Natalia",
|
|
15
|
+
"Mercedes", "Susana", "Rosa", "Elena", "Teresa", "Carmen", "Alicia", "Beatriz", "Norma", "Liliana",
|
|
16
|
+
"Soledad", "Celeste", "Milagros", "Rocío", "Belén", "Candela", "Antonella", "Aldana", "Brenda", "Yamila",
|
|
17
|
+
"Macarena", "Gisela", "Andrea", "Sandra", "Viviana", "Cecilia", "Alejandra", "Silvana", "Lorena", "Paola"
|
|
18
|
+
],
|
|
19
|
+
"neutral": ["Alex", "Ariel", "Andrea", "René", "Guadalupe", "Jesús", "Cruz", "Dominique", "Noel", "Ángel"]
|
|
20
|
+
},
|
|
21
|
+
"last_names": [
|
|
22
|
+
"González", "Rodríguez", "Gómez", "Fernández", "López", "Díaz", "Martínez", "Pérez", "García", "Sánchez",
|
|
23
|
+
"Romero", "Sosa", "Álvarez", "Torres", "Ruiz", "Ramírez", "Flores", "Acosta", "Benítez", "Medina",
|
|
24
|
+
"Suárez", "Herrera", "Aguirre", "Pereyra", "Gutiérrez", "Giménez", "Molina", "Silva", "Castro", "Rojas",
|
|
25
|
+
"Ortiz", "Moreno", "Núñez", "Iglesias", "Domínguez", "Méndez", "Vargas", "Cabrera", "Ríos", "Peralta",
|
|
26
|
+
"Luna", "Vega", "Córdoba", "Figueroa", "Contreras", "Ledesma", "Muñoz", "Ojeda", "Ponce", "Quiroga",
|
|
27
|
+
"Ramos", "Navarro", "Campos", "Vera", "Vidal", "Godoy", "Bravo", "Espinoza", "Páez", "Carrizo",
|
|
28
|
+
"Bustos", "Lucero", "Miranda", "Duarte", "Arias", "Villalba", "Cardozo", "Mansilla", "Ibáñez", "Cáceres"
|
|
29
|
+
],
|
|
30
|
+
"name_formats": [
|
|
31
|
+
"{first_name} {last_name}"
|
|
32
|
+
],
|
|
33
|
+
"prefixes": {
|
|
34
|
+
"male": ["Sr.", "Don", "Dr.", "Lic.", "Ing.", "Prof."],
|
|
35
|
+
"female": ["Sra.", "Srta.", "Doña", "Dra.", "Lic.", "Ing.", "Prof."],
|
|
36
|
+
"neutral": ["Dr.", "Lic.", "Ing.", "Prof."]
|
|
37
|
+
},
|
|
38
|
+
"suffixes": ["Jr.", "PhD", "MBA"]
|
|
39
|
+
}
|
|
@@ -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,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"locations": [
|
|
3
|
+
{"city": "Wien", "exonym": "Vienna", "state": "Wien", "state_abbr": "W", "postcode_prefix": "10", "lat_min": 48.15, "lat_max": 48.31, "lon_min": 16.18, "lon_max": 16.58},
|
|
4
|
+
{"city": "Graz", "state": "Steiermark", "state_abbr": "ST", "postcode_prefix": "80", "lat_min": 47.04, "lat_max": 47.10, "lon_min": 15.40, "lon_max": 15.48},
|
|
5
|
+
{"city": "Linz", "state": "Oberösterreich", "state_abbr": "OÖ", "postcode_prefix": "40", "lat_min": 48.26, "lat_max": 48.32, "lon_min": 14.26, "lon_max": 14.34},
|
|
6
|
+
{"city": "Salzburg", "state": "Salzburg", "state_abbr": "S", "postcode_prefix": "50", "lat_min": 47.78, "lat_max": 47.82, "lon_min": 13.02, "lon_max": 13.08},
|
|
7
|
+
{"city": "Innsbruck", "state": "Tirol", "state_abbr": "T", "postcode_prefix": "60", "lat_min": 47.25, "lat_max": 47.28, "lon_min": 11.38, "lon_max": 11.42},
|
|
8
|
+
{"city": "Klagenfurt", "state": "Kärnten", "state_abbr": "K", "postcode_prefix": "90", "lat_min": 46.61, "lat_max": 46.65, "lon_min": 14.28, "lon_max": 14.34},
|
|
9
|
+
{"city": "Villach", "state": "Kärnten", "state_abbr": "K", "postcode_prefix": "95", "lat_min": 46.60, "lat_max": 46.63, "lon_min": 13.84, "lon_max": 13.88},
|
|
10
|
+
{"city": "Wels", "state": "Oberösterreich", "state_abbr": "OÖ", "postcode_prefix": "46", "lat_min": 48.14, "lat_max": 48.18, "lon_min": 14.02, "lon_max": 14.06},
|
|
11
|
+
{"city": "Sankt Pölten", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "31", "lat_min": 48.20, "lat_max": 48.22, "lon_min": 15.62, "lon_max": 15.66},
|
|
12
|
+
{"city": "Dornbirn", "state": "Vorarlberg", "state_abbr": "V", "postcode_prefix": "68", "lat_min": 47.40, "lat_max": 47.43, "lon_min": 9.73, "lon_max": 9.77},
|
|
13
|
+
{"city": "Steyr", "state": "Oberösterreich", "state_abbr": "OÖ", "postcode_prefix": "44", "lat_min": 48.03, "lat_max": 48.06, "lon_min": 14.41, "lon_max": 14.44},
|
|
14
|
+
{"city": "Wiener Neustadt", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "27", "lat_min": 47.80, "lat_max": 47.83, "lon_min": 16.23, "lon_max": 16.27},
|
|
15
|
+
{"city": "Feldkirch", "state": "Vorarlberg", "state_abbr": "V", "postcode_prefix": "68", "lat_min": 47.23, "lat_max": 47.26, "lon_min": 9.58, "lon_max": 9.62},
|
|
16
|
+
{"city": "Bregenz", "state": "Vorarlberg", "state_abbr": "V", "postcode_prefix": "69", "lat_min": 47.50, "lat_max": 47.52, "lon_min": 9.73, "lon_max": 9.76},
|
|
17
|
+
{"city": "Leonding", "state": "Oberösterreich", "state_abbr": "OÖ", "postcode_prefix": "40", "lat_min": 48.27, "lat_max": 48.29, "lon_min": 14.24, "lon_max": 14.27},
|
|
18
|
+
{"city": "Klosterneuburg", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "34", "lat_min": 48.30, "lat_max": 48.32, "lon_min": 16.32, "lon_max": 16.35},
|
|
19
|
+
{"city": "Baden", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "25", "lat_min": 48.00, "lat_max": 48.02, "lon_min": 16.22, "lon_max": 16.25},
|
|
20
|
+
{"city": "Wolfsberg", "state": "Kärnten", "state_abbr": "K", "postcode_prefix": "94", "lat_min": 46.83, "lat_max": 46.85, "lon_min": 14.83, "lon_max": 14.86},
|
|
21
|
+
{"city": "Leoben", "state": "Steiermark", "state_abbr": "ST", "postcode_prefix": "87", "lat_min": 47.37, "lat_max": 47.39, "lon_min": 15.08, "lon_max": 15.11},
|
|
22
|
+
{"city": "Krems", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "35", "lat_min": 48.40, "lat_max": 48.42, "lon_min": 15.60, "lon_max": 15.63},
|
|
23
|
+
{"city": "Traun", "state": "Oberösterreich", "state_abbr": "OÖ", "postcode_prefix": "40", "lat_min": 48.22, "lat_max": 48.24, "lon_min": 14.23, "lon_max": 14.26},
|
|
24
|
+
{"city": "Amstetten", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "33", "lat_min": 48.11, "lat_max": 48.13, "lon_min": 14.86, "lon_max": 14.89},
|
|
25
|
+
{"city": "Lustenau", "state": "Vorarlberg", "state_abbr": "V", "postcode_prefix": "69", "lat_min": 47.42, "lat_max": 47.44, "lon_min": 9.65, "lon_max": 9.68},
|
|
26
|
+
{"city": "Kapfenberg", "state": "Steiermark", "state_abbr": "ST", "postcode_prefix": "86", "lat_min": 47.43, "lat_max": 47.45, "lon_min": 15.28, "lon_max": 15.31},
|
|
27
|
+
{"city": "Mödling", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "23", "lat_min": 48.08, "lat_max": 48.10, "lon_min": 16.28, "lon_max": 16.31},
|
|
28
|
+
{"city": "Hallein", "state": "Salzburg", "state_abbr": "S", "postcode_prefix": "54", "lat_min": 47.67, "lat_max": 47.69, "lon_min": 13.08, "lon_max": 13.11},
|
|
29
|
+
{"city": "Kufstein", "state": "Tirol", "state_abbr": "T", "postcode_prefix": "63", "lat_min": 47.58, "lat_max": 47.60, "lon_min": 12.16, "lon_max": 12.19},
|
|
30
|
+
{"city": "Traiskirchen", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "25", "lat_min": 48.01, "lat_max": 48.03, "lon_min": 16.29, "lon_max": 16.32},
|
|
31
|
+
{"city": "Schwechat", "state": "Niederösterreich", "state_abbr": "NÖ", "postcode_prefix": "23", "lat_min": 48.13, "lat_max": 48.15, "lon_min": 16.47, "lon_max": 16.50},
|
|
32
|
+
{"city": "Bruck an der Mur", "state": "Steiermark", "state_abbr": "ST", "postcode_prefix": "86", "lat_min": 47.40, "lat_max": 47.42, "lon_min": 15.26, "lon_max": 15.29}
|
|
33
|
+
],
|
|
34
|
+
"streets_by_city": {
|
|
35
|
+
"Wien": ["Kärntner Straße", "Mariahilfer Straße", "Ringstraße", "Graben", "Stephansplatz", "Praterstraße", "Landstraßer Hauptstraße", "Favoritenstraße", "Währinger Straße", "Neubaugasse"],
|
|
36
|
+
"Graz": ["Herrengasse", "Sporgasse", "Hauptplatz", "Annenstraße", "Sackstraße", "Murgasse", "Schmiedgasse", "Kaiserfeldgasse", "Jakominiplatz", "Neutorgasse"],
|
|
37
|
+
"Linz": ["Landstraße", "Hauptplatz", "Herrenstraße", "Promenade", "Klosterstraße", "Bischofstraße", "Domgasse", "Altstadt", "Hofgasse", "Spittelwiese"],
|
|
38
|
+
"Salzburg": ["Getreidegasse", "Linzer Gasse", "Alter Markt", "Residenzplatz", "Mozartplatz", "Sigmund-Haffner-Gasse", "Judengasse", "Steingasse", "Kaigasse", "Goldgasse"],
|
|
39
|
+
"Innsbruck": ["Maria-Theresien-Straße", "Herzog-Friedrich-Straße", "Universitätsstraße", "Maximilianstraße", "Museumstraße", "Anichstraße", "Bürgerstraße", "Leopoldstraße", "Innrain", "Templstraße"],
|
|
40
|
+
"Klagenfurt": ["Alter Platz", "Neuer Platz", "Kramergasse", "Burggasse", "Wiener Gasse", "Bahnhofstraße", "Villacher Straße", "St. Veiter Straße", "Domgasse", "Lidmanskygasse"],
|
|
41
|
+
"Villach": ["Hauptplatz", "Bahnhofstraße", "Italiener Straße", "Widmanngasse", "Klagenfurter Straße", "Ossiacher Zeile", "Hans-Gasser-Platz", "Ringmauergasse", "Gerbergasse", "Postgasse"],
|
|
42
|
+
"Wels": ["Ringstraße", "Bäckergasse", "Schmidtgasse", "Kaiser-Josef-Platz", "Stadtplatz", "Traungasse", "Pollheimerstraße", "Vogelweiderstraße", "Salzburger Straße", "Linzer Straße"],
|
|
43
|
+
"Sankt Pölten": ["Kremsergasse", "Wiener Straße", "Linzer Straße", "Rathausplatz", "Domgasse", "Herrenplatz", "Franziskanergasse", "Josefstraße", "Fuhrmannsgasse", "Heßstraße"],
|
|
44
|
+
"Dornbirn": ["Marktstraße", "Bahnhofstraße", "Schulgasse", "Marktplatz", "Eisengasse", "Moosmahdstraße", "Rohrbach", "Hatlerstraße", "Lustenauerstraße", "Höchsterstraße"],
|
|
45
|
+
"Steyr": ["Stadtplatz", "Enge Gasse", "Grünmarkt", "Pfarrgasse", "Berggasse", "Michaelerplatz", "Fabrikstraße", "Sierninger Straße", "Leopold-Werndl-Straße", "Haratzmüllerstraße"],
|
|
46
|
+
"Wiener Neustadt": ["Hauptplatz", "Herzog-Leopold-Straße", "Wiener Straße", "Neunkirchner Straße", "Bahngasse", "Grazer Straße", "Ungargasse", "Domplatz", "Brodtischgasse", "Lange Gasse"],
|
|
47
|
+
"Feldkirch": ["Marktgasse", "Vorstadt", "Neustadt", "Schlossergasse", "Kreuzgasse", "Montfortgasse", "Schmiedgasse", "Gymnasiumgasse", "Hirschgraben", "Churerstraße"],
|
|
48
|
+
"Bregenz": ["Kaiserstraße", "Kornmarktstraße", "Römerstraße", "Kirchstraße", "Belruptstraße", "Bahnhofstraße", "Anton-Schneider-Straße", "Seestraße", "Rathausstraße", "Maurachgasse"],
|
|
49
|
+
"Leonding": ["Stadtplatz", "Michaelsbergstraße", "Ruflingerstraße", "Paschinger Straße", "Limesstraße", "Wegscheider Straße", "Daffingerstraße", "Haidfeldstraße", "Bergstraße", "Kornstraße"],
|
|
50
|
+
"Klosterneuburg": ["Rathausplatz", "Stadtplatz", "Leopoldstraße", "Niedermarkt", "Hundskehle", "Agnesstraße", "Martinstraße", "Albrechtstraße", "Buchberggasse", "Kierlingergasse"],
|
|
51
|
+
"Baden": ["Hauptplatz", "Wassergasse", "Antonsgasse", "Theaterplatz", "Renngasse", "Frauengasse", "Pfarrgasse", "Josefsplatz", "Vöslauer Straße", "Kaiser-Franz-Ring"],
|
|
52
|
+
"Wolfsberg": ["Hoher Platz", "Hermann-Fischer-Straße", "Wiener Straße", "Minoritenplatz", "Johann-Offner-Straße", "Klagenfurter Straße", "Grazer Straße", "Bahnhofstraße", "Am Weiher", "Gerichtsgasse"],
|
|
53
|
+
"Leoben": ["Hauptplatz", "Kärntner Straße", "Langgasse", "Erzherzog-Johann-Straße", "Homanngasse", "Kirchgasse", "Timmersdorfer Straße", "Schießstattstraße", "Roseggerstraße", "Peter-Tunner-Straße"],
|
|
54
|
+
"Krems": ["Untere Landstraße", "Obere Landstraße", "Hoher Markt", "Täglicher Markt", "Hafnerplatz", "Dreifaltigkeitsplatz", "Schürerplatz", "Ringstraße", "Wiener Straße", "Göglstraße"],
|
|
55
|
+
"Traun": ["Hauptplatz", "Bahnhofstraße", "Linzer Straße", "Welser Straße", "Kremstalstraße", "Neubauerstraße", "Schulstraße", "Schloßstraße", "Moosstraße", "Gartenstraße"],
|
|
56
|
+
"Amstetten": ["Hauptplatz", "Wiener Straße", "Bahnhofstraße", "Preinsbacher Straße", "Ardaggerer Straße", "Krankenhausstraße", "Graben", "Waidhofner Straße", "Ybbser Straße", "Allersdorfer Straße"],
|
|
57
|
+
"Lustenau": ["Kaiser-Franz-Josef-Straße", "Hofsteigstraße", "Kirchstraße", "Bahnhofstraße", "Maria-Theresien-Straße", "Pontenstraße", "Rotkreuzstraße", "Rheinstraße", "Grenzstraße", "Reichsstraße"],
|
|
58
|
+
"Kapfenberg": ["Wiener Straße", "Grazer Straße", "Mariazellerstraße", "Hugo-Wolf-Gasse", "Koloman-Wallisch-Platz", "Friedrich-Böhler-Straße", "Hauptstraße", "Schirmitzbühel", "Werk-VI-Straße", "Buchenstraße"],
|
|
59
|
+
"Mödling": ["Hauptstraße", "Elisabethstraße", "Schrannenplatz", "Babenbergergasse", "Freiheitsplatz", "Badstraße", "Pfarrgasse", "Neusiedler Straße", "Grenzgasse", "Technikerstraße"],
|
|
60
|
+
"Hallein": ["Unterer Markt", "Oberer Markt", "Salzachgasse", "Griesplatz", "Davisstraße", "Thunstraße", "Raitenhaslachstraße", "Bürgermeisterstraße", "Wiestal Landesstraße", "Neumayrstraße"],
|
|
61
|
+
"Kufstein": ["Unterer Stadtplatz", "Oberer Stadtplatz", "Römerhofgasse", "Franz-Josef-Platz", "Kaiserbergstraße", "Feldgasse", "Maderspergerstraße", "Maximilianstraße", "Oskar-Pirlo-Straße", "Arkadenplatz"],
|
|
62
|
+
"Traiskirchen": ["Hauptplatz", "Wiener Straße", "Badener Straße", "Gumpoldskirchner Straße", "Wiener Neustädter Straße", "Aspangstraße", "Oeynhausener Straße", "Bahnstraße", "Schubertgasse", "Parkstraße"],
|
|
63
|
+
"Schwechat": ["Hauptplatz", "Wiener Straße", "Himberger Straße", "Sendnergasse", "Brauhausstraße", "Ehrenbrunngasse", "Mannswörther Straße", "Rannersdorfer Straße", "Bruck-Hainburger-Straße", "Am Concorde Park"],
|
|
64
|
+
"Bruck an der Mur": ["Koloman-Wallisch-Platz", "Herzog-Ernst-Gasse", "Mittergasse", "Schillerstraße", "Dr.-Theodor-Körner-Straße", "Grazer Straße", "Leobner Straße", "Hochschwabstraße", "Kirchplatz", "Roseggerstraße"]
|
|
65
|
+
},
|
|
66
|
+
"postcode_format": "####",
|
|
67
|
+
"address_formats": [
|
|
68
|
+
"{street} {building_number}, {postcode} {city}",
|
|
69
|
+
"{street} {building_number}/{unit}, {postcode} {city}"
|
|
70
|
+
],
|
|
71
|
+
"country": "Österreich",
|
|
72
|
+
"country_code": "AT",
|
|
73
|
+
"phone_area_codes": {
|
|
74
|
+
"Wien": ["01"],
|
|
75
|
+
"Steiermark": ["0316", "03842", "03862"],
|
|
76
|
+
"Oberösterreich": ["0732", "07242", "07252"],
|
|
77
|
+
"Salzburg": ["0662", "06245"],
|
|
78
|
+
"Tirol": ["0512", "05372"],
|
|
79
|
+
"Kärnten": ["0463", "04242"],
|
|
80
|
+
"Vorarlberg": ["05572", "05574", "05522"],
|
|
81
|
+
"Niederösterreich": ["02742", "02622", "02732", "02252"],
|
|
82
|
+
"Burgenland": ["02682"]
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"suffixes": ["GmbH", "AG", "KG", "OG", "e.U.", "GesbR", "SE", "Holding"],
|
|
3
|
+
"formats": [
|
|
4
|
+
"{last_name} {suffix}",
|
|
5
|
+
"{adjective} {noun} {suffix}",
|
|
6
|
+
"{noun} {suffix}",
|
|
7
|
+
"{last_name} & {last_name} {suffix}"
|
|
8
|
+
],
|
|
9
|
+
"adjectives": [
|
|
10
|
+
"Österreichische", "Wiener", "Alpen", "Erste", "Neue",
|
|
11
|
+
"Moderne", "Internationale", "Zentral", "Europäische", "Regional",
|
|
12
|
+
"Global", "Digital", "Innovative", "Grüne", "Premium",
|
|
13
|
+
"Elite", "Professional", "Smart", "Kreative", "Dynamische"
|
|
14
|
+
],
|
|
15
|
+
"nouns": [
|
|
16
|
+
"Technik", "Industrie", "Handel", "Bau", "Immobilien",
|
|
17
|
+
"Energie", "Finanz", "Versicherung", "Consulting", "Logistik",
|
|
18
|
+
"Pharma", "Medien", "IT", "Service", "Solutions",
|
|
19
|
+
"Systems", "Invest", "Holding", "Partner", "Gruppe"
|
|
20
|
+
],
|
|
21
|
+
"well_known_companies": [
|
|
22
|
+
{"name": "OMV", "cities": ["Wien"]},
|
|
23
|
+
{"name": "Erste Group", "cities": ["Wien"]},
|
|
24
|
+
{"name": "Voestalpine", "cities": ["Linz"]},
|
|
25
|
+
{"name": "Raiffeisen Bank International", "cities": ["Wien"]},
|
|
26
|
+
{"name": "Verbund", "cities": ["Wien"]},
|
|
27
|
+
{"name": "A1 Telekom Austria", "cities": ["Wien"]},
|
|
28
|
+
{"name": "BAWAG", "cities": ["Wien"]},
|
|
29
|
+
{"name": "Wienerberger", "cities": ["Wien"]},
|
|
30
|
+
{"name": "Andritz", "cities": ["Graz"]},
|
|
31
|
+
{"name": "Mayr-Melnhof", "cities": ["Wien"]},
|
|
32
|
+
{"name": "UNIQA", "cities": ["Wien"]},
|
|
33
|
+
{"name": "Vienna Insurance Group", "cities": ["Wien"]},
|
|
34
|
+
{"name": "Lenzing", "cities": ["Lenzing"]},
|
|
35
|
+
{"name": "ÖBB", "cities": ["Wien"]},
|
|
36
|
+
{"name": "Austrian Airlines", "cities": ["Wien", "Schwechat"]},
|
|
37
|
+
{"name": "Red Bull", "cities": ["Salzburg", "Fuschl"]},
|
|
38
|
+
{"name": "Swarovski", "cities": ["Innsbruck", "Wattens"]},
|
|
39
|
+
{"name": "Manner", "cities": ["Wien"]},
|
|
40
|
+
{"name": "SPAR Österreich", "cities": ["Salzburg"]},
|
|
41
|
+
{"name": "Strabag", "cities": ["Wien"]}
|
|
42
|
+
],
|
|
43
|
+
"jobs": [
|
|
44
|
+
"Softwareentwickler", "Ingenieur", "Lehrer", "Krankenschwester", "Arzt",
|
|
45
|
+
"Rechtsanwalt", "Architekt", "Designer", "Journalist", "Berater",
|
|
46
|
+
"Buchhalter", "Verkäufer", "Projektleiter", "Geschäftsführer", "Immobilienmakler",
|
|
47
|
+
"Elektriker", "Tischler", "Mechaniker", "Koch", "Kellner",
|
|
48
|
+
"Polizist", "Feuerwehrmann", "Friseur", "Zahnarzt", "Physiotherapeut"
|
|
49
|
+
],
|
|
50
|
+
"catch_phrase_adjectives": [
|
|
51
|
+
"innovativ", "nachhaltig", "professionell", "dynamisch", "kreativ",
|
|
52
|
+
"effizient", "zuverlässig", "modern", "österreichisch", "grün",
|
|
53
|
+
"qualitätsbewusst", "global", "lokal", "smart", "digital"
|
|
54
|
+
],
|
|
55
|
+
"catch_phrase_nouns": [
|
|
56
|
+
"Lösungen", "Service", "Qualität", "Innovation", "Wachstum",
|
|
57
|
+
"Zusammenarbeit", "Ergebnisse", "Werte", "Partnerschaft", "Zukunft",
|
|
58
|
+
"Technologie", "Design", "Strategie", "Entwicklung", "Erfolg"
|
|
59
|
+
],
|
|
60
|
+
"catch_phrase_verbs": [
|
|
61
|
+
"schafft", "liefert", "entwickelt", "treibt", "baut",
|
|
62
|
+
"formt", "inspiriert", "verbindet", "stärkt", "transformiert",
|
|
63
|
+
"optimiert", "realisiert", "ermöglicht", "sichert", "fördert"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"free_email_domains": [
|
|
3
|
+
"gmail.com", "gmx.at", "aon.at", "chello.at", "a1.net",
|
|
4
|
+
"hotmail.at", "outlook.at", "yahoo.at", "inode.at", "drei.at",
|
|
5
|
+
"hotmail.com", "outlook.com", "yahoo.com", "icloud.com", "protonmail.com"
|
|
6
|
+
],
|
|
7
|
+
"tlds": ["at", "com", "net", "eu", "org", "co.at"],
|
|
8
|
+
"domain_words": [
|
|
9
|
+
"wien", "austria", "alpen", "euro", "tech",
|
|
10
|
+
"digital", "web", "online", "net", "data",
|
|
11
|
+
"cloud", "smart", "graz", "salzburg", "tirol"
|
|
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": ["Lukas", "Florian", "Tobias", "David", "Alexander", "Maximilian", "Sebastian", "Paul", "Felix", "Julian", "Dominik", "Michael", "Daniel", "Thomas", "Stefan", "Markus", "Andreas", "Christian", "Patrick", "Manuel", "Christoph", "Matthias", "Martin", "Bernhard", "Wolfgang", "Peter", "Franz", "Johann", "Josef", "Helmut", "Karl", "Walter", "Herbert", "Friedrich", "Leopold", "Anton", "Gerhard", "Rudolf", "Manfred", "Robert"],
|
|
4
|
+
"female": ["Anna", "Sarah", "Laura", "Julia", "Lena", "Lisa", "Katharina", "Sophie", "Maria", "Hannah", "Leonie", "Emma", "Johanna", "Nina", "Christina", "Stefanie", "Sandra", "Claudia", "Sabine", "Petra", "Andrea", "Martina", "Monika", "Elisabeth", "Michaela", "Birgit", "Silvia", "Barbara", "Karin", "Ingrid", "Renate", "Christine", "Eva", "Helga", "Brigitte", "Theresia", "Margarete", "Rosa", "Gertrude", "Edeltraud"],
|
|
5
|
+
"neutral": ["Kim", "Sascha", "Alex", "Robin", "Andrea", "Toni", "Dominique", "Charlie", "Jo", "Michi"]
|
|
6
|
+
},
|
|
7
|
+
"last_names": ["Gruber", "Huber", "Bauer", "Wagner", "Müller", "Pichler", "Steiner", "Moser", "Mayer", "Hofer", "Leitner", "Berger", "Fuchs", "Eder", "Fischer", "Schmid", "Winkler", "Weber", "Schwarz", "Maier", "Schneider", "Reiter", "Mayr", "Schmidt", "Wimmer", "Egger", "Brunner", "Lang", "Baumgartner", "Auer", "Binder", "Wolf", "Wallner", "Aigner", "Ebner", "Koller", "Lehner", "Haas", "Schuster", "Hackl"],
|
|
8
|
+
"name_formats": [
|
|
9
|
+
"{first_name} {last_name}"
|
|
10
|
+
],
|
|
11
|
+
"prefixes": {
|
|
12
|
+
"male": ["Herr", "Dr.", "Mag.", "Ing.", "DI"],
|
|
13
|
+
"female": ["Frau", "Dr.", "Mag.", "Ing.", "DI"],
|
|
14
|
+
"neutral": ["Dr.", "Mag.", "Ing.", "DI"]
|
|
15
|
+
},
|
|
16
|
+
"suffixes": ["BSc", "MSc", "MBA", "PhD", "jun.", "sen."]
|
|
17
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"words": [
|
|
3
|
+
"und", "in", "das", "ist", "auf", "ein", "zu", "als", "mit", "von",
|
|
4
|
+
"für", "hat", "der", "dass", "um", "aus", "war", "die", "ein", "er",
|
|
5
|
+
"sie", "wir", "ich", "du", "kann", "will", "soll", "muss", "nicht", "so",
|
|
6
|
+
"aber", "wenn", "hier", "dort", "jetzt", "alle", "viele", "einige", "keine", "jeder"
|
|
7
|
+
],
|
|
8
|
+
"sentence_patterns": [
|
|
9
|
+
"Das {adjective} {noun} {verb} {adverb}.",
|
|
10
|
+
"{noun} ist {adjective}.",
|
|
11
|
+
"Wir {verb} {adverb} zum {noun}.",
|
|
12
|
+
"Er {verb} ein {adjective} {noun}.",
|
|
13
|
+
"Sie {verb} {adverb}."
|
|
14
|
+
],
|
|
15
|
+
"adjectives": [
|
|
16
|
+
"gut", "groß", "klein", "neu", "alt", "jung", "hoch", "lang", "kurz", "breit",
|
|
17
|
+
"schmal", "dick", "dünn", "schwer", "leicht", "schnell", "langsam", "früh", "spät", "warm",
|
|
18
|
+
"kalt", "nass", "trocken", "hart", "weich", "stark", "schwach", "reich", "arm", "glücklich"
|
|
19
|
+
],
|
|
20
|
+
"nouns": [
|
|
21
|
+
"Haus", "Auto", "Boot", "Berg", "See", "Wald", "Stadt", "Land", "Weg", "Straße",
|
|
22
|
+
"Mann", "Frau", "Kind", "Zeit", "Tag", "Jahr", "Woche", "Monat", "Arbeit", "Job",
|
|
23
|
+
"Schule", "Buch", "Tisch", "Stuhl", "Tür", "Fenster", "Dach", "Boden", "Wand", "Zimmer"
|
|
24
|
+
],
|
|
25
|
+
"verbs": [
|
|
26
|
+
"sein", "haben", "machen", "sagen", "gehen", "kommen", "sehen", "nehmen", "geben", "finden",
|
|
27
|
+
"wissen", "denken", "glauben", "werden", "bekommen", "wollen", "sollen", "können", "müssen", "halten",
|
|
28
|
+
"stehen", "sitzen", "liegen", "kochen", "essen", "trinken", "schlafen", "sprechen", "hören", "lesen"
|
|
29
|
+
],
|
|
30
|
+
"adverbs": [
|
|
31
|
+
"gut", "schlecht", "schnell", "langsam", "früh", "spät", "immer", "nie", "oft", "selten",
|
|
32
|
+
"manchmal", "hier", "dort", "zuhause", "draußen", "drinnen", "oben", "unten", "vor", "zurück",
|
|
33
|
+
"zusammen", "allein", "jetzt", "bald", "sofort", "gerade", "schon", "noch", "vielleicht", "sicher"
|
|
34
|
+
]
|
|
35
|
+
}
|