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,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"first_names": {
|
|
3
|
+
"male": [
|
|
4
|
+
"Aarav", "Vivaan", "Aditya", "Vihaan", "Arjun", "Sai", "Reyansh", "Ayaan", "Krishna", "Ishaan",
|
|
5
|
+
"Shaurya", "Atharva", "Advik", "Pranav", "Advaith", "Aarush", "Kabir", "Ritvik", "Anirudh", "Dhruv",
|
|
6
|
+
"Raj", "Rohan", "Amit", "Rahul", "Vikram", "Suresh", "Rajesh", "Sanjay", "Anil", "Vijay",
|
|
7
|
+
"Ravi", "Manoj", "Deepak", "Ashok", "Mukesh", "Rakesh", "Sandeep", "Naveen", "Pankaj", "Gaurav",
|
|
8
|
+
"Nikhil", "Sachin", "Ajay", "Vishal", "Manish", "Karan", "Akash", "Varun", "Sahil", "Mohit",
|
|
9
|
+
"Harsh", "Yash", "Tarun", "Kunal", "Saurabh", "Ankit", "Sumit", "Vinod", "Prakash", "Ramesh",
|
|
10
|
+
"Ganesh", "Mahesh", "Dinesh", "Yogesh", "Lokesh", "Hitesh", "Jitesh", "Naresh", "Sunil", "Kapil",
|
|
11
|
+
"Nilesh", "Paresh", "Umesh", "Bharat", "Mohan", "Sohan", "Kishan", "Gopal", "Shyam", "Ghanshyam",
|
|
12
|
+
"Hari", "Narayan", "Lakshman", "Balram", "Dev", "Om", "Shiv", "Rudra", "Aakash", "Chirag",
|
|
13
|
+
"Darshan", "Hemant", "Jayesh", "Ketan", "Lalit", "Mayank", "Neeraj", "Parag", "Tushar", "Uday"
|
|
14
|
+
],
|
|
15
|
+
"female": [
|
|
16
|
+
"Aanya", "Saanvi", "Aadhya", "Aaradhya", "Ananya", "Pari", "Anika", "Navya", "Angel", "Diya",
|
|
17
|
+
"Myra", "Sara", "Ira", "Ahana", "Anvi", "Prisha", "Riya", "Aarohi", "Anaya", "Kavya",
|
|
18
|
+
"Priya", "Neha", "Pooja", "Shreya", "Divya", "Anjali", "Sunita", "Deepika", "Lakshmi", "Meera",
|
|
19
|
+
"Suman", "Rekha", "Asha", "Usha", "Nisha", "Sneha", "Swati", "Preeti", "Mamta", "Seema",
|
|
20
|
+
"Geeta", "Sita", "Radha", "Parvati", "Durga", "Kali", "Sarita", "Savita", "Kavita", "Anita",
|
|
21
|
+
"Vandana", "Archana", "Rachana", "Kalpana", "Sapna", "Swapna", "Renu", "Manju", "Anju", "Sanju",
|
|
22
|
+
"Pinki", "Rinki", "Minki", "Dolly", "Polly", "Shanti", "Kranti", "Bharti", "Aarti", "Jyoti",
|
|
23
|
+
"Kirti", "Reema", "Smriti", "Shruti", "Stuti", "Garima", "Karuna", "Varuna", "Taruna", "Aruna",
|
|
24
|
+
"Arundhati", "Gayatri", "Savitri", "Saraswati", "Bhavani", "Yamini", "Rohini", "Mohini", "Ragini", "Nandini",
|
|
25
|
+
"Padmini", "Kamini", "Damini", "Saloni", "Mansi", "Tanvi", "Janvi", "Khushi", "Trisha", "Isha"
|
|
26
|
+
],
|
|
27
|
+
"neutral": ["Arya", "Kiran", "Jyoti", "Noor", "Sasha", "Rishi", "Avni", "Angel", "Prem", "Amar"]
|
|
28
|
+
},
|
|
29
|
+
"last_names": [
|
|
30
|
+
"Sharma", "Verma", "Gupta", "Singh", "Kumar", "Patel", "Shah", "Joshi", "Reddy", "Rao",
|
|
31
|
+
"Nair", "Menon", "Iyer", "Pillai", "Naidu", "Choudhary", "Banerjee", "Chatterjee", "Mukherjee", "Das",
|
|
32
|
+
"Ghosh", "Bose", "Sen", "Kapoor", "Malhotra", "Khanna", "Mehta", "Desai", "Thakur", "Agarwal",
|
|
33
|
+
"Mishra", "Tiwari", "Pandey", "Dubey", "Srivastava", "Saxena", "Mathur", "Rastogi", "Tandon", "Bhatia",
|
|
34
|
+
"Chopra", "Arora", "Sethi", "Luthra", "Sodhi", "Dhawan", "Bajaj", "Garg", "Mittal", "Singhal",
|
|
35
|
+
"Jain", "Goyal", "Bansal", "Aggarwal", "Jindal", "Khurana", "Anand", "Kohli", "Bhalla", "Sehgal",
|
|
36
|
+
"Ahuja", "Chawla", "Grover", "Walia", "Bedi", "Saini", "Yadav", "Chauhan", "Rathore", "Rajput",
|
|
37
|
+
"Shekhawat", "Solanki", "Parmar", "Jadeja", "Gohil", "Vaghela", "Bhatt", "Trivedi", "Dave", "Shukla",
|
|
38
|
+
"Dwivedi", "Tripathi", "Chaturvedi", "Upadhyay", "Bajpai", "Awasthi", "Sinha", "Roy", "Dutta", "Sarkar",
|
|
39
|
+
"Chakraborty", "Bhattacharya", "Ganguly", "Mitra", "Kar", "Dey", "Nandi", "Biswas", "Mondal", "Halder",
|
|
40
|
+
"Krishnamurthy", "Subramaniam", "Venkatesh", "Raghavan", "Natarajan", "Sundaram", "Ramachandran", "Govindan", "Balakrishnan", "Padmanabhan",
|
|
41
|
+
"Krishnan", "Srinivasan", "Raman", "Swaminathan", "Ranganathan", "Chandrasekhar", "Ananthanarayanan", "Parthasarathy", "Ramaswamy", "Seshadri"
|
|
42
|
+
],
|
|
43
|
+
"name_formats": [
|
|
44
|
+
"{first_name} {last_name}"
|
|
45
|
+
],
|
|
46
|
+
"prefixes": {
|
|
47
|
+
"male": ["Mr", "Shri", "Dr", "Prof"],
|
|
48
|
+
"female": ["Ms", "Mrs", "Smt", "Dr", "Prof", "Kumari"],
|
|
49
|
+
"neutral": ["Dr", "Prof"]
|
|
50
|
+
},
|
|
51
|
+
"suffixes": ["Jr", "Sr"]
|
|
52
|
+
}
|
|
@@ -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,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"locations": [
|
|
3
|
+
{"city": "Reykjavík", "state": "Capital Region", "state_abbr": "RVK", "postcode_prefix": "10", "lat_min": 64.12, "lat_max": 64.16, "lon_min": -22.00, "lon_max": -21.80},
|
|
4
|
+
{"city": "Kópavogur", "state": "Capital Region", "state_abbr": "RVK", "postcode_prefix": "20", "lat_min": 64.08, "lat_max": 64.12, "lon_min": -21.95, "lon_max": -21.85},
|
|
5
|
+
{"city": "Hafnarfjörður", "state": "Capital Region", "state_abbr": "RVK", "postcode_prefix": "22", "lat_min": 64.04, "lat_max": 64.08, "lon_min": -22.00, "lon_max": -21.90},
|
|
6
|
+
{"city": "Garðabær", "state": "Capital Region", "state_abbr": "RVK", "postcode_prefix": "21", "lat_min": 64.08, "lat_max": 64.10, "lon_min": -21.95, "lon_max": -21.90},
|
|
7
|
+
{"city": "Mosfellsbær", "state": "Capital Region", "state_abbr": "RVK", "postcode_prefix": "27", "lat_min": 64.15, "lat_max": 64.20, "lon_min": -21.75, "lon_max": -21.65},
|
|
8
|
+
{"city": "Seltjarnarnes", "state": "Capital Region", "state_abbr": "RVK", "postcode_prefix": "17", "lat_min": 64.15, "lat_max": 64.17, "lon_min": -22.02, "lon_max": -21.98},
|
|
9
|
+
{"city": "Akureyri", "state": "Northeastern Region", "state_abbr": "AKU", "postcode_prefix": "60", "lat_min": 65.66, "lat_max": 65.70, "lon_min": -18.12, "lon_max": -18.05},
|
|
10
|
+
{"city": "Akranes", "state": "Western Region", "state_abbr": "AKR", "postcode_prefix": "30", "lat_min": 64.30, "lat_max": 64.35, "lon_min": -22.10, "lon_max": -22.00},
|
|
11
|
+
{"city": "Keflavík", "state": "Southern Peninsula", "state_abbr": "KEF", "postcode_prefix": "23", "lat_min": 63.98, "lat_max": 64.02, "lon_min": -22.60, "lon_max": -22.50},
|
|
12
|
+
{"city": "Selfoss", "state": "Southern Region", "state_abbr": "SEL", "postcode_prefix": "80", "lat_min": 63.93, "lat_max": 63.95, "lon_min": -21.00, "lon_max": -20.95},
|
|
13
|
+
{"city": "Vestmannaeyjar", "state": "Southern Region", "state_abbr": "VEY", "postcode_prefix": "90", "lat_min": 63.42, "lat_max": 63.45, "lon_min": -20.30, "lon_max": -20.25},
|
|
14
|
+
{"city": "Ísafjörður", "state": "Westfjords", "state_abbr": "ISA", "postcode_prefix": "40", "lat_min": 66.05, "lat_max": 66.08, "lon_min": -23.15, "lon_max": -23.10},
|
|
15
|
+
{"city": "Húsavík", "state": "Northeastern Region", "state_abbr": "HUS", "postcode_prefix": "64", "lat_min": 66.04, "lat_max": 66.06, "lon_min": -17.35, "lon_max": -17.30},
|
|
16
|
+
{"city": "Egilsstaðir", "state": "Eastern Region", "state_abbr": "EGS", "postcode_prefix": "70", "lat_min": 65.26, "lat_max": 65.28, "lon_min": -14.42, "lon_max": -14.38},
|
|
17
|
+
{"city": "Borgarnes", "state": "Western Region", "state_abbr": "BOR", "postcode_prefix": "31", "lat_min": 64.53, "lat_max": 64.56, "lon_min": -21.95, "lon_max": -21.90},
|
|
18
|
+
{"city": "Höfn", "state": "Eastern Region", "state_abbr": "HOF", "postcode_prefix": "78", "lat_min": 64.25, "lat_max": 64.27, "lon_min": -15.22, "lon_max": -15.18},
|
|
19
|
+
{"city": "Vík", "state": "Southern Region", "state_abbr": "VIK", "postcode_prefix": "87", "lat_min": 63.41, "lat_max": 63.43, "lon_min": -19.02, "lon_max": -18.98},
|
|
20
|
+
{"city": "Hveragerði", "state": "Southern Region", "state_abbr": "HVE", "postcode_prefix": "81", "lat_min": 63.99, "lat_max": 64.01, "lon_min": -21.20, "lon_max": -21.15},
|
|
21
|
+
{"city": "Grindavík", "state": "Southern Peninsula", "state_abbr": "GRV", "postcode_prefix": "24", "lat_min": 63.83, "lat_max": 63.85, "lon_min": -22.45, "lon_max": -22.40},
|
|
22
|
+
{"city": "Stykkishólmur", "state": "Western Region", "state_abbr": "STY", "postcode_prefix": "34", "lat_min": 65.07, "lat_max": 65.09, "lon_min": -22.75, "lon_max": -22.70}
|
|
23
|
+
],
|
|
24
|
+
"streets_by_city": {
|
|
25
|
+
"Reykjavík": ["Laugavegur", "Skólavörðustígur", "Bankastræti", "Hverfisgata", "Austurstræti", "Aðalstræti", "Tryggvagata", "Lækjargata", "Ingólfsstræti", "Þingholtsstræti", "Barónsstígur", "Frakkastígur", "Vitastígur", "Grettisgata", "Njálsgata", "Baldursgata", "Eiríksgata", "Snorrabraut", "Miklabraut", "Kringlumýrarbraut"],
|
|
26
|
+
"Kópavogur": ["Hamraborg", "Smáralind", "Hlíðarsmári", "Nýbýlavegur", "Smiðjuvegur", "Dalvegur", "Borgarholtsbraut", "Digranesvegur", "Kársnesvegur", "Fífuhvammsvegur", "Linnetsstígur", "Arnarsmári", "Bakkasmári", "Hrauntunga", "Kópavogsbraut", "Lækjarsmári", "Menntavegur", "Skálaheiði", "Vatnsendavegur", "Þingmannaleið"],
|
|
27
|
+
"Hafnarfjörður": ["Strandgata", "Reykjavíkurvegur", "Linnetsstígur", "Flatahraun", "Hlíðarbraut", "Vesturgata", "Austurgata", "Suðurgata", "Norðurgata", "Bæjargata", "Kirkjubraut", "Hjallavegur", "Víðimelur", "Ásvellir", "Hraunbrún", "Kjósarhreppur", "Lækjarbotnar", "Miðvangur", "Sólvangur", "Tunguvangur"],
|
|
28
|
+
"Garðabær": ["Garðatorg", "Arnarnesvegur", "Austurströnd", "Brúnavegur", "Engihjalli", "Flétturimi", "Garðaholt", "Hnoðrabraut", "Íslandsbraut", "Kaldárselsvegur", "Lambhagavegur", "Mávahlíð", "Neðstagarður", "Öldugrandi", "Prestastígur", "Reykjanesbraut", "Skógarlind", "Urðarbraut", "Vatnsendagarðar", "Álftanesvegur"],
|
|
29
|
+
"Mosfellsbær": ["Háholt", "Þverholti", "Álafoss", "Vesturlandsvegur", "Mosfellsdalur", "Reykjalundur", "Varmárbraut", "Lágmúli", "Hátún", "Skeiðarvogur", "Blikastaðir", "Dalshöfði", "Eyjarás", "Flugvallavegur", "Gljúfrasteinn", "Hrísbraut", "Innrihlíð", "Kjóahverfi", "Laxnes", "Mosó"],
|
|
30
|
+
"Seltjarnarnes": ["Eiðistorg", "Austurströnd", "Gróttuviti", "Mýrargata", "Nesvegur", "Norðurströnd", "Suðurströnd", "Vesturströnd", "Bakkagrandi", "Eiðisgrandi", "Fagrabakki", "Gróttuvogar", "Hólmatún", "Katrínarlind", "Lindargata", "Meltún", "Nesstofa", "Seltjarnarnestorg", "Strandvegur", "Valhúsahæð"],
|
|
31
|
+
"Akureyri": ["Hafnarstræti", "Kaupvangsstræti", "Ráðhústorg", "Glerárgata", "Þingvallastræti", "Skipagata", "Oddeyri", "Brekkugata", "Eyrarlandsvegur", "Fáskrúðsfjörður", "Geislagata", "Hrafnagilsstræti", "Innri-Njörður", "Krossanes", "Lyngháls", "Melabraut", "Norðurvegur", "Ósland", "Skjaldarvík", "Vaðlaheiði"],
|
|
32
|
+
"Akranes": ["Innnesvegur", "Kirkjubraut", "Merkigata", "Skagabraut", "Suðurgata", "Vesturgata", "Ytra-Hraun", "Bitruhálsar", "Dalbraut", "Esjugrund", "Faxabraut", "Garðabraut", "Hafnarstræti", "Ísafjörður", "Kalmansbraut", "Langisandur", "Miðbraut", "Norðurströnd", "Oddaflöt", "Strandgata"],
|
|
33
|
+
"Keflavík": ["Hafnargata", "Tjarnargata", "Fitjar", "Hringbraut", "Keflavíkurflugvöllur", "Njarðarbraut", "Reykjanesbær", "Suðurnesjabær", "Úlfarsbraut", "Vatnsnesvegur", "Bláfjallafoss", "Duusgata", "Eiðsgrandi", "Faxabyggð", "Garðskagi", "Hlíðarvegur", "Íþróttamiðstöð", "Jónsbraut", "Knarrarvogur", "Leifsstöð"],
|
|
34
|
+
"Selfoss": ["Austurvegur", "Eyravegur", "Fljótshöfði", "Garðvegur", "Hveragerði", "Ingólfshvoll", "Jörundarholt", "Kirkjuvegur", "Laugardælir", "Miðhraun", "Nýheimar", "Ölfusá", "Prestsvegur", "Rauðhólar", "Selfossvegur", "Tryggvagata", "Urriðaholt", "Vallholt", "Ytri-Rangá", "Þorlákshöfn"],
|
|
35
|
+
"Vestmannaeyjar": ["Vestmannabraut", "Bárustígur", "Faxastígur", "Heiðarvegur", "Hlíðarvegur", "Illugagata", "Kirkjuvegur", "Landakotsvegur", "Miðstræti", "Norðurgata", "Óseyri", "Ránarbraut", "Skansinn", "Strandvegur", "Suðurvegur", "Tangagata", "Urðarvegur", "Vesturgata", "Víkurvegur", "Völlur"],
|
|
36
|
+
"Ísafjörður": ["Aðalstræti", "Búðargata", "Eyrargata", "Hafnarstræti", "Innri-Bær", "Kirkjuból", "Mjallargata", "Nýbýlavegur", "Pollgata", "Silfurgata", "Suðurgata", "Tangagata", "Útsýn", "Vesturgata", "Ytri-Bær", "Arnardalur", "Bolungarvík", "Flateyri", "Súðavík", "Þingeyri"],
|
|
37
|
+
"Húsavík": ["Garðarsbraut", "Ketilsbraut", "Laugarbrekka", "Stórutjarnir", "Túngata", "Víkurbraut", "Ásbúð", "Dalakot", "Fjólugata", "Göltur", "Hólsgata", "Jónsgata", "Kirkjugata", "Lundur", "Nesbúð", "Rángá", "Staður", "Tangagata", "Urðarás", "Vallanes"],
|
|
38
|
+
"Egilsstaðir": ["Kaupvangur", "Lagarfljót", "Miðvangur", "Norðurgata", "Skógarlönd", "Suðurgata", "Tjarnarás", "Vallanes", "Völlur", "Bifröst", "Egilsstaðavegur", "Fellabær", "Hérað", "Héraðsflói", "Miðhúsavegur", "Múlavegur", "Reyðarfjörður", "Seyðisfjörður", "Skjöldólfsstaðir", "Skriðuklaustur"],
|
|
39
|
+
"Borgarnes": ["Brákarbraut", "Brákarsund", "Digranesgata", "Einkunnir", "Grundargata", "Krossnes", "Kveldúlfsgata", "Lundur", "Mýrargata", "Norðurbraut", "Skúlagata", "Snorralaug", "Suðurgata", "Sölvhólsgata", "Tún", "Vesturgata", "Borgarvegur", "Eiríksstaðir", "Reykholt", "Varmahlíð"],
|
|
40
|
+
"Höfn": ["Hafnarbraut", "Hraunlaut", "Lindartún", "Litlibær", "Lónsvegur", "Ráðhússtræti", "Skriðuklaustur", "Strandgata", "Víkurbraut", "Fljótsdalshérað", "Glacierworld", "Hornafjörður", "Jökuldalur", "Jökulsárlón", "Nesjaskóli", "Skaftafell", "Stokksnes", "Svínafell", "Vestrahorn", "Þjóðvegur"],
|
|
41
|
+
"Vík": ["Austurvegur", "Kirkjubæjarklaustur", "Mýrdalur", "Norðurljósavegur", "Reynisfjara", "Skógar", "Suðurlandsvegur", "Vesturgata", "Vikurbraut", "Þjóðvegur", "Dyrhólaey", "Fjaðrárgljúfur", "Háfell", "Katla", "Laufskálavarða", "Mýrdalsandur", "Reynisdrangar", "Sólheimajökull", "Vikurfjara", "Þakgil"],
|
|
42
|
+
"Hveragerði": ["Breiðamörk", "Dalbraut", "Frumskógar", "Grænamörk", "Hamraborg", "Hraunbraut", "Laugarskarð", "Reykjamörk", "Sunnumörk", "Varmahlíð", "Austurströnd", "Básaskersvegur", "Eikarbraut", "Ferstikla", "Garðheimar", "Helluvað", "Innri-Ás", "Kambar", "Landmannalaugar", "Þjóðvegur"],
|
|
43
|
+
"Grindavík": ["Austurvegur", "Bláa Lónið", "Hafnargata", "Hópsnes", "Miðgarður", "Norðurbraut", "Staðarfell", "Suðurstrandarvegur", "Vesturgata", "Vikurbraut", "Eldvörp", "Fagradalsfjall", "Gunnuhver", "Keilir", "Miðnesheiði", "Reykjanesviti", "Sandvík", "Þórlákshöfn", "Vogar", "Krýsuvík"],
|
|
44
|
+
"Stykkishólmur": ["Aðalgata", "Borgarbraut", "Hafnargata", "Höfðagata", "Nesvegur", "Norðurtangi", "Sæbólsstígur", "Suðurgata", "Súgandisey", "Vesturgata", "Helgafell", "Hraunsfjarðarvatn", "Kirkjuból", "Leynisker", "Melrakkaey", "Snæfellsjökull", "Þúfubjarg", "Ólafsvík", "Grundarfjörður", "Flatey"]
|
|
45
|
+
},
|
|
46
|
+
"postcode_format": "###",
|
|
47
|
+
"address_formats": [
|
|
48
|
+
"{street} {building_number}, {postcode} {city}",
|
|
49
|
+
"{street} {building_number}, {city}",
|
|
50
|
+
"{building_number} {street}, {postcode} {city}"
|
|
51
|
+
],
|
|
52
|
+
"country": "Iceland",
|
|
53
|
+
"country_code": "IS",
|
|
54
|
+
"phone_area_codes": {
|
|
55
|
+
"Capital Region": ["5"],
|
|
56
|
+
"Northeastern Region": ["4"],
|
|
57
|
+
"Western Region": ["4"],
|
|
58
|
+
"Southern Peninsula": ["4"],
|
|
59
|
+
"Southern Region": ["4"],
|
|
60
|
+
"Westfjords": ["4"],
|
|
61
|
+
"Eastern Region": ["4"]
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"suffixes": [
|
|
3
|
+
"hf.", "ehf.", "slf.", "ses.", "sf.", "ohf.", "bs.", "Ltd", "Corporation", "Group"
|
|
4
|
+
],
|
|
5
|
+
"formats": [
|
|
6
|
+
"{last_name} {suffix}",
|
|
7
|
+
"{adjective} {noun} {suffix}",
|
|
8
|
+
"{adjective} {noun}",
|
|
9
|
+
"{noun} {suffix}"
|
|
10
|
+
],
|
|
11
|
+
"adjectives": [
|
|
12
|
+
"Icelandic", "Nordic", "Arctic", "Atlantic", "Northern", "Polar", "Viking", "Blue", "Golden", "Green",
|
|
13
|
+
"Pure", "Natural", "Fresh", "Wild", "Modern", "Smart", "Global", "United", "Premier", "Leading"
|
|
14
|
+
],
|
|
15
|
+
"nouns": [
|
|
16
|
+
"Energy", "Power", "Fishing", "Seafood", "Tourism", "Technology", "Solutions", "Services", "Trading",
|
|
17
|
+
"Shipping", "Transport", "Finance", "Investment", "Holdings", "Development", "Construction", "Engineering",
|
|
18
|
+
"Aluminum", "Geothermal", "Renewable"
|
|
19
|
+
],
|
|
20
|
+
"well_known_companies": [
|
|
21
|
+
{"name": "Landsvirkjun", "cities": ["Reykjavík"]},
|
|
22
|
+
{"name": "Icelandair", "cities": ["Reykjavík", "Keflavík"]},
|
|
23
|
+
{"name": "Marel", "cities": ["Garðabær", "Reykjavík"]},
|
|
24
|
+
{"name": "Össur", "cities": ["Reykjavík", "Kópavogur"]},
|
|
25
|
+
{"name": "Eimskip", "cities": ["Reykjavík", "Akureyri"]},
|
|
26
|
+
{"name": "Samherji", "cities": ["Akureyri", "Reykjavík"]},
|
|
27
|
+
{"name": "Brim", "cities": ["Reykjavík", "Akureyri"]},
|
|
28
|
+
{"name": "Arion Bank", "cities": ["Reykjavík", "Akureyri", "Kópavogur"]},
|
|
29
|
+
{"name": "Íslandsbanki", "cities": ["Reykjavík", "Akureyri", "Hafnarfjörður"]},
|
|
30
|
+
{"name": "Landsbankinn", "cities": ["Reykjavík", "Akureyri", "Selfoss"]},
|
|
31
|
+
{"name": "Vodafone Iceland", "cities": ["Reykjavík", "Garðabær"]},
|
|
32
|
+
{"name": "Siminn", "cities": ["Reykjavík", "Kópavogur"]},
|
|
33
|
+
{"name": "Origo", "cities": ["Reykjavík"]},
|
|
34
|
+
{"name": "CCP Games", "cities": ["Reykjavík"]},
|
|
35
|
+
{"name": "Actavis", "cities": ["Hafnarfjörður", "Reykjavík"]},
|
|
36
|
+
{"name": "Blue Lagoon", "cities": ["Grindavík", "Reykjavík"]},
|
|
37
|
+
{"name": "Icelandic Group", "cities": ["Reykjavík", "Akureyri"]},
|
|
38
|
+
{"name": "Fjarðaál", "cities": ["Reykjavík", "Egilsstaðir"]},
|
|
39
|
+
{"name": "Norðurál", "cities": ["Akranes", "Reykjavík"]},
|
|
40
|
+
{"name": "Olís", "cities": ["Reykjavík", "Akureyri", "Selfoss"]}
|
|
41
|
+
],
|
|
42
|
+
"jobs": [
|
|
43
|
+
"Software Engineer", "Product Manager", "Data Analyst", "Marketing Manager", "Sales Representative",
|
|
44
|
+
"HR Manager", "Financial Analyst", "Project Manager", "Operations Manager", "UI/UX Designer",
|
|
45
|
+
"Fisheries Manager", "Tourism Guide", "Geothermal Engineer", "Marine Biologist", "Environmental Scientist",
|
|
46
|
+
"Ship Captain", "Pilot", "Chef", "Hotel Manager", "Tour Operator",
|
|
47
|
+
"Renewable Energy Engineer", "Aluminum Production Worker", "Healthcare Professional", "Teacher", "Researcher"
|
|
48
|
+
],
|
|
49
|
+
"catch_phrase_adjectives": [
|
|
50
|
+
"Innovative", "Sustainable", "Natural", "Pure", "Reliable", "Nordic", "Trusted", "Leading",
|
|
51
|
+
"Arctic", "Premium", "World-class", "Eco-friendly", "Renewable", "Fresh"
|
|
52
|
+
],
|
|
53
|
+
"catch_phrase_nouns": [
|
|
54
|
+
"solutions", "services", "quality", "excellence", "innovation", "sustainability", "nature", "purity",
|
|
55
|
+
"energy", "resources", "opportunities", "partnerships", "growth", "value"
|
|
56
|
+
],
|
|
57
|
+
"catch_phrase_verbs": [
|
|
58
|
+
"deliver", "create", "harness", "preserve", "innovate", "sustain", "protect", "provide", "build",
|
|
59
|
+
"power", "connect", "explore", "discover", "transform", "enable"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"free_email_domains": [
|
|
3
|
+
"gmail.com", "hotmail.com", "outlook.com", "simnet.is", "internet.is",
|
|
4
|
+
"visir.is", "islandia.is", "yahoo.com", "icloud.com", "protonmail.com"
|
|
5
|
+
],
|
|
6
|
+
"tlds": [
|
|
7
|
+
"is", "com", "net", "org", "eu", "io", "co"
|
|
8
|
+
],
|
|
9
|
+
"domain_words": [
|
|
10
|
+
"iceland", "nordic", "arctic", "viking", "polar", "northern", "island", "fire", "ice", "glacier",
|
|
11
|
+
"geysir", "blue", "green", "pure", "wild", "saga", "edda", "thor", "freya", "odin"
|
|
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,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"first_names": {
|
|
3
|
+
"male": [
|
|
4
|
+
"Jón", "Sigurður", "Guðmundur", "Gunnar", "Ólafur", "Einar", "Kristján", "Magnús", "Stefán", "Jóhann",
|
|
5
|
+
"Helgi", "Bjarni", "Árni", "Þór", "Ragnar", "Eiríkur", "Pétur", "Páll", "Halldór", "Sveinn",
|
|
6
|
+
"Björn", "Ásgeir", "Haraldur", "Ingvar", "Friðrik", "Gísli", "Haukur", "Baldur", "Leifur", "Snorri",
|
|
7
|
+
"Viktor", "Daníel", "Alexander", "Aron", "Emil", "Kári", "Andri", "Davíð", "Róbert", "Kristinn",
|
|
8
|
+
"Guðjón", "Sigurjón", "Þorsteinn", "Vilhjálmur", "Agnar", "Bragi", "Fannar", "Geir", "Hlynur", "Ívar",
|
|
9
|
+
"Jakob", "Karl", "Lárus", "Marteinn", "Níels", "Oddur", "Reynir", "Sigmundur", "Tómas", "Úlfur"
|
|
10
|
+
],
|
|
11
|
+
"female": [
|
|
12
|
+
"Guðrún", "Sigríður", "Kristín", "Margrét", "Ingibjörg", "Sigrún", "Helga", "Jóhanna", "Anna", "María",
|
|
13
|
+
"Katrín", "Elín", "Þóra", "Ragnheiður", "Ásta", "Hildur", "Birna", "Erla", "Lilja", "Sólveig",
|
|
14
|
+
"Hanna", "Eva", "Sara", "Inga", "Steinunn", "Bryndís", "Ragna", "Valgerður", "Þórunn", "Ólöf",
|
|
15
|
+
"Guðný", "Edda", "Unnur", "Vigdís", "Auður", "Dagný", "Elísabet", "Fjóla", "Gunnhildur", "Harpa",
|
|
16
|
+
"Ísabella", "Jónína", "Kolbrún", "Lára", "Málfríður", "Nanna", "Oddný", "Rannveig", "Svanhildur", "Þorbjörg",
|
|
17
|
+
"Alexandra", "Emma", "Íris", "Karen", "Linda", "Nina", "Rakel", "Sandra", "Tinna", "Vala"
|
|
18
|
+
],
|
|
19
|
+
"neutral": ["Alex", "Árni", "Dagur", "Kim", "Sindri", "Snær", "Val", "Chris", "Sam", "Robin"]
|
|
20
|
+
},
|
|
21
|
+
"last_names": [
|
|
22
|
+
"Jónsson", "Sigurðsson", "Guðmundsson", "Gunnarsson", "Ólafsson", "Einarsson", "Kristjánsson", "Magnússon",
|
|
23
|
+
"Stefánsson", "Jóhannsson", "Helgason", "Bjarnason", "Árnason", "Þórsson", "Ragnarsson", "Eiríksson",
|
|
24
|
+
"Pétursson", "Pálsson", "Halldórsson", "Sveinsson", "Björnsson", "Ásgeírsson", "Haraldsson", "Ingvarsson",
|
|
25
|
+
"Jónsdóttir", "Sigurðardóttir", "Guðmundsdóttir", "Gunnarsdóttir", "Ólafsdóttir", "Einarsdóttir",
|
|
26
|
+
"Kristjánsdóttir", "Magnúsdóttir", "Stefánsdóttir", "Jóhannsdóttir", "Helgadóttir", "Bjarnardóttir",
|
|
27
|
+
"Árnardóttir", "Þórsdóttir", "Ragnarsdóttir", "Eiríksdóttir", "Pétursdóttir", "Pálsdóttir",
|
|
28
|
+
"Halldórsdóttir", "Sveinsdóttir", "Björnsdóttir", "Ásgeírsdóttir", "Haraldsdóttir", "Ingvarsdóttir",
|
|
29
|
+
"Friðriksson", "Gíslason", "Hauksson", "Baldursson", "Leifsson", "Snorrason", "Viktorsson", "Daníelsson",
|
|
30
|
+
"Friðriksdóttir", "Gísladóttir", "Hauksdóttir", "Baldursdóttir", "Leifsdóttir", "Snorradóttir",
|
|
31
|
+
"Karlsson", "Lárusson", "Sigurjónsson", "Þorsteinsson", "Karlsdóttir", "Lárusdóttir", "Sigurjónsdóttir",
|
|
32
|
+
"Andrésson", "Benediktsson", "Davíðsson", "Egilsson", "Filippusson", "Grétarsson", "Hjálmarsson",
|
|
33
|
+
"Andrésdóttir", "Benediktsdóttir", "Davíðsdóttir", "Egilsdóttir", "Filippusdóttir", "Grétarsdóttir"
|
|
34
|
+
],
|
|
35
|
+
"name_formats": [
|
|
36
|
+
"{first_name} {last_name}"
|
|
37
|
+
],
|
|
38
|
+
"prefixes": {
|
|
39
|
+
"male": ["Hr.", "Dr.", "Prof."],
|
|
40
|
+
"female": ["Frú", "Fröken", "Dr.", "Prof."],
|
|
41
|
+
"neutral": ["Dr.", "Prof."]
|
|
42
|
+
},
|
|
43
|
+
"suffixes": []
|
|
44
|
+
}
|
|
@@ -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
|
+
}
|